
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_d2ebf35949114aeb57b0cfa9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.076000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_27001f6efa6ff97aeb0b1e9b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984333;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7e30ad141de80d0948e1a528.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.721000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_291f16191fb868ff89336e92.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dcd182b70ad3bd0c7537a192.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f1636293352617450c01609b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ad2edeeccf68c9cd0895ac71.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4fad278779e8061fc0665838.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.131000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_95587de214688b2f2217394b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9178b872ca59f3db2ec548b5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7cb244399560a0b6cfa407f2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.154000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_55956fcde98697e6a5b6b279.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e414ccfae000fd107dc2f4a6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.121000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6bc26b1208902545f3ab8134.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0629d7bb6a369bdcd0f593f2.woff2')format("woff");}.fff{font-family:fff;line-height:1.106000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0629d7bb6a369bdcd0f593f2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.106000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9178b872ca59f3db2ec548b5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_31812a4ac4da41838b9a252c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.976000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.968000px;}
.ls16{letter-spacing:-8.160000px;}
.ls1{letter-spacing:-3.876000px;}
.ls2{letter-spacing:-3.420000px;}
.ls3{letter-spacing:-3.192000px;}
.ls18{letter-spacing:-3.120000px;}
.ls0{letter-spacing:-2.964000px;}
.ls26{letter-spacing:-2.400000px;}
.lsb{letter-spacing:-1.980000px;}
.ls17{letter-spacing:-1.872000px;}
.ls27{letter-spacing:-1.536000px;}
.ls25{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.386000px;}
.ls4a{letter-spacing:-1.344000px;}
.ls2e{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.726000px;}
.ls9{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.660000px;}
.lsf{letter-spacing:-0.594000px;}
.ls15{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.528000px;}
.ls4{letter-spacing:-0.450000px;}
.ls59{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.330000px;}
.ls58{letter-spacing:-0.300000px;}
.ls5{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.264000px;}
.ls39{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.132000px;}
.ls2f{letter-spacing:-0.066000px;}
.ls7{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.033000px;}
.ls54{letter-spacing:0.060000px;}
.ls22{letter-spacing:0.066000px;}
.ls3b{letter-spacing:0.099000px;}
.ls13{letter-spacing:0.108000px;}
.ls55{letter-spacing:0.120000px;}
.ls2a{letter-spacing:0.132000px;}
.ls19{letter-spacing:0.144000px;}
.ls56{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.198000px;}
.ls3c{letter-spacing:0.231000px;}
.ls33{letter-spacing:0.264000px;}
.ls51{letter-spacing:0.300000px;}
.ls21{letter-spacing:0.330000px;}
.ls1f{letter-spacing:0.363000px;}
.ls35{letter-spacing:0.396000px;}
.ls5a{letter-spacing:0.420000px;}
.ls2c{letter-spacing:0.462000px;}
.ls57{letter-spacing:0.480000px;}
.ls47{letter-spacing:0.495000px;}
.ls23{letter-spacing:0.528000px;}
.ls5c{letter-spacing:0.540000px;}
.ls41{letter-spacing:0.561000px;}
.ls1d{letter-spacing:0.594000px;}
.ls5d{letter-spacing:0.600000px;}
.ls1a{letter-spacing:0.648000px;}
.ls29{letter-spacing:0.660000px;}
.ls53{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.726000px;}
.ls38{letter-spacing:0.759000px;}
.ls20{letter-spacing:0.792000px;}
.ls49{letter-spacing:0.825000px;}
.ls28{letter-spacing:0.858000px;}
.ls30{letter-spacing:0.924000px;}
.ls4e{letter-spacing:0.957000px;}
.ls4f{letter-spacing:0.960000px;}
.ls8{letter-spacing:0.990000px;}
.ls3f{letter-spacing:1.023000px;}
.ls32{letter-spacing:1.056000px;}
.ls6{letter-spacing:1.080000px;}
.ls31{letter-spacing:1.122000px;}
.ls42{letter-spacing:1.155000px;}
.ls34{letter-spacing:1.188000px;}
.ls45{letter-spacing:1.254000px;}
.ls36{letter-spacing:1.320000px;}
.ls52{letter-spacing:1.380000px;}
.ls37{letter-spacing:1.386000px;}
.ls1e{letter-spacing:1.452000px;}
.ls40{letter-spacing:1.518000px;}
.ls44{letter-spacing:1.584000px;}
.ls1c{letter-spacing:1.647360px;}
.ls1b{letter-spacing:1.650000px;}
.ls4c{letter-spacing:1.689600px;}
.ls4d{letter-spacing:1.782000px;}
.ls46{letter-spacing:1.848000px;}
.ls43{letter-spacing:1.914000px;}
.ls3a{letter-spacing:2.046000px;}
.ls3d{letter-spacing:2.244000px;}
.ls4b{letter-spacing:2.343000px;}
.ls5b{letter-spacing:2.460000px;}
.ls48{letter-spacing:2.706000px;}
.ls50{letter-spacing:3.240000px;}
.ls2b{letter-spacing:3.498000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-51.528000px;}
.ws1{word-spacing:-23.040000px;}
.ws7b{word-spacing:-18.876000px;}
.ws32{word-spacing:-16.704000px;}
.ws3{word-spacing:-15.972000px;}
.ws51{word-spacing:-14.208000px;}
.ws35{word-spacing:-12.576000px;}
.ws5a{word-spacing:-12.432000px;}
.wsb{word-spacing:-2.574000px;}
.ws12{word-spacing:-2.508000px;}
.wsd{word-spacing:-2.046000px;}
.ws6b{word-spacing:-1.716000px;}
.ws37{word-spacing:-1.700160px;}
.ws62{word-spacing:-1.650000px;}
.ws79{word-spacing:-1.584000px;}
.ws89{word-spacing:-1.560000px;}
.ws2d{word-spacing:-1.518000px;}
.ws2b{word-spacing:-1.452000px;}
.ws8c{word-spacing:-1.380000px;}
.ws44{word-spacing:-1.320000px;}
.ws7e{word-spacing:-1.254000px;}
.ws8e{word-spacing:-1.200000px;}
.ws5d{word-spacing:-1.188000px;}
.wsf{word-spacing:-1.122000px;}
.ws9{word-spacing:-1.080000px;}
.ws73{word-spacing:-1.056000px;}
.ws40{word-spacing:-0.990000px;}
.ws3d{word-spacing:-0.924000px;}
.ws4f{word-spacing:-0.858000px;}
.ws60{word-spacing:-0.792000px;}
.ws56{word-spacing:-0.726000px;}
.ws87{word-spacing:-0.720000px;}
.ws2a{word-spacing:-0.660000px;}
.ws2f{word-spacing:-0.648000px;}
.ws76{word-spacing:-0.594000px;}
.ws97{word-spacing:-0.540000px;}
.ws2e{word-spacing:-0.528000px;}
.ws63{word-spacing:-0.462000px;}
.ws7a{word-spacing:-0.396000px;}
.ws4d{word-spacing:-0.330000px;}
.ws48{word-spacing:-0.264000px;}
.ws6e{word-spacing:-0.198000px;}
.ws54{word-spacing:-0.132000px;}
.ws2{word-spacing:-0.078000px;}
.ws58{word-spacing:-0.066000px;}
.ws36{word-spacing:-0.052800px;}
.wsa{word-spacing:0.000000px;}
.ws52{word-spacing:0.066000px;}
.ws69{word-spacing:0.132000px;}
.ws77{word-spacing:0.198000px;}
.ws93{word-spacing:0.240000px;}
.ws20{word-spacing:0.264000px;}
.ws8{word-spacing:0.270000px;}
.ws25{word-spacing:0.330000px;}
.ws8f{word-spacing:0.360000px;}
.ws55{word-spacing:0.396000px;}
.ws90{word-spacing:0.420000px;}
.ws7{word-spacing:0.450000px;}
.ws80{word-spacing:0.462000px;}
.ws91{word-spacing:0.480000px;}
.ws30{word-spacing:0.576000px;}
.ws47{word-spacing:0.594000px;}
.ws17{word-spacing:0.660000px;}
.ws31{word-spacing:0.720000px;}
.ws21{word-spacing:0.726000px;}
.ws3f{word-spacing:0.792000px;}
.ws46{word-spacing:0.858000px;}
.ws4b{word-spacing:0.864000px;}
.ws92{word-spacing:0.900000px;}
.ws82{word-spacing:0.990000px;}
.ws95{word-spacing:1.020000px;}
.ws65{word-spacing:1.056000px;}
.ws42{word-spacing:1.122000px;}
.ws96{word-spacing:1.140000px;}
.ws2c{word-spacing:1.188000px;}
.ws64{word-spacing:1.248000px;}
.ws41{word-spacing:1.254000px;}
.ws75{word-spacing:1.320000px;}
.ws83{word-spacing:1.344000px;}
.ws61{word-spacing:1.386000px;}
.ws38{word-spacing:1.440000px;}
.ws5b{word-spacing:1.452000px;}
.ws45{word-spacing:1.518000px;}
.ws3a{word-spacing:1.536000px;}
.ws88{word-spacing:1.560000px;}
.ws19{word-spacing:1.584000px;}
.ws8d{word-spacing:1.620000px;}
.ws1a{word-spacing:1.650000px;}
.ws86{word-spacing:1.680000px;}
.ws3b{word-spacing:1.716000px;}
.ws94{word-spacing:1.740000px;}
.ws6d{word-spacing:1.782000px;}
.ws4c{word-spacing:1.848000px;}
.ws33{word-spacing:1.872000px;}
.ws4a{word-spacing:1.914000px;}
.ws13{word-spacing:1.980000px;}
.ws3c{word-spacing:2.046000px;}
.ws3e{word-spacing:2.178000px;}
.ws50{word-spacing:2.244000px;}
.ws72{word-spacing:2.310000px;}
.ws49{word-spacing:2.376000px;}
.ws39{word-spacing:2.400000px;}
.ws1f{word-spacing:2.442000px;}
.ws57{word-spacing:2.508000px;}
.ws6f{word-spacing:2.574000px;}
.ws5c{word-spacing:2.640000px;}
.ws27{word-spacing:2.706000px;}
.ws5{word-spacing:2.736000px;}
.ws71{word-spacing:2.772000px;}
.ws6a{word-spacing:2.838000px;}
.ws53{word-spacing:2.904000px;}
.ws4{word-spacing:2.964000px;}
.ws59{word-spacing:3.036000px;}
.ws34{word-spacing:3.120000px;}
.ws7f{word-spacing:3.168000px;}
.ws7c{word-spacing:3.234000px;}
.ws8a{word-spacing:3.240000px;}
.ws5e{word-spacing:3.300000px;}
.ws66{word-spacing:3.366000px;}
.ws6{word-spacing:3.420000px;}
.ws5f{word-spacing:3.432000px;}
.ws8b{word-spacing:3.480000px;}
.ws1c{word-spacing:3.498000px;}
.ws22{word-spacing:3.564000px;}
.ws23{word-spacing:3.630000px;}
.ws6c{word-spacing:3.828000px;}
.ws78{word-spacing:3.894000px;}
.ws74{word-spacing:3.960000px;}
.ws67{word-spacing:4.158000px;}
.ws85{word-spacing:4.224000px;}
.wsc{word-spacing:4.356000px;}
.wse{word-spacing:4.422000px;}
.ws70{word-spacing:4.752000px;}
.ws7d{word-spacing:4.818000px;}
.ws16{word-spacing:4.884000px;}
.ws1e{word-spacing:5.082000px;}
.ws68{word-spacing:5.214000px;}
.ws1b{word-spacing:5.544000px;}
.ws26{word-spacing:5.676000px;}
.ws84{word-spacing:5.808000px;}
.ws10{word-spacing:6.270000px;}
.ws81{word-spacing:6.732000px;}
.ws18{word-spacing:6.996000px;}
.ws15{word-spacing:7.524000px;}
.ws28{word-spacing:7.656000px;}
.ws29{word-spacing:8.250000px;}
.ws11{word-spacing:8.646000px;}
.ws4e{word-spacing:8.976000px;}
.ws1d{word-spacing:10.032000px;}
.ws24{word-spacing:10.164000px;}
.ws14{word-spacing:11.946000px;}
.ws43{word-spacing:43.068600px;}
._d{margin-left:-1609.566000px;}
._f{margin-left:-20.130000px;}
._e{margin-left:-18.810000px;}
._1{margin-left:-13.566000px;}
._5{margin-left:-6.819000px;}
._6{margin-left:-5.589000px;}
._8{margin-left:-4.500000px;}
._4{margin-left:-3.254400px;}
._0{margin-left:-1.254000px;}
._3{width:1.550400px;}
._2{width:2.941200px;}
._a{width:4.177200px;}
._7{width:5.841600px;}
._b{width:8.601600px;}
._c{width:9.811200px;}
._9{width:4505.272800px;}
.fc5{color:rgb(121,118,119);}
.fc4{color:transparent;}
.fc3{color:rgb(112,113,114);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:36.000000px;}
.fsb{font-size:48.000000px;}
.fse{font-size:52.800000px;}
.fs5{font-size:54.000000px;}
.fsf{font-size:55.968000px;}
.fs10{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.fs8{font-size:96.000000px;}
.fsa{font-size:108.000000px;}
.fsd{font-size:120.000000px;}
.fs6{font-size:144.000000px;}
.fs9{font-size:156.000000px;}
.fsc{font-size:168.000000px;}
.fs0{font-size:228.000000px;}
.y37{bottom:-34.759800px;}
.y0{bottom:0.000000px;}
.ya{bottom:18.024150px;}
.yb{bottom:19.389150px;}
.y77{bottom:62.043300px;}
.y57{bottom:62.078700px;}
.y33{bottom:86.767800px;}
.y31{bottom:99.912450px;}
.y30{bottom:119.415450px;}
.yc8{bottom:120.330750px;}
.y53{bottom:120.348750px;}
.yac{bottom:120.416700px;}
.yd7{bottom:120.492600px;}
.y9c{bottom:120.502650px;}
.ydb{bottom:120.533550px;}
.yed{bottom:120.535650px;}
.y74{bottom:120.612750px;}
.yc7{bottom:135.330750px;}
.y2f{bottom:138.918450px;}
.yab{bottom:139.919700px;}
.yd6{bottom:139.995600px;}
.y9b{bottom:140.005650px;}
.yec{bottom:140.035650px;}
.yda{bottom:140.036550px;}
.y73{bottom:140.115750px;}
.y52{bottom:153.342750px;}
.y2e{bottom:158.421450px;}
.yaa{bottom:159.422700px;}
.yd5{bottom:159.498600px;}
.y9a{bottom:159.508650px;}
.yeb{bottom:159.535650px;}
.y72{bottom:159.618750px;}
.y51{bottom:169.839750px;}
.ya9{bottom:178.925700px;}
.yc6{bottom:178.963650px;}
.yd4{bottom:179.001600px;}
.y99{bottom:179.011650px;}
.yea{bottom:179.035650px;}
.y71{bottom:179.121750px;}
.yd9{bottom:185.785350px;}
.y2d{bottom:190.678950px;}
.ya8{bottom:198.428700px;}
.yc5{bottom:198.466650px;}
.yd3{bottom:198.504600px;}
.y98{bottom:198.514650px;}
.ye9{bottom:198.535650px;}
.y70{bottom:198.624750px;}
.y50{bottom:202.833750px;}
.y2c{bottom:210.181950px;}
.yd8{bottom:212.785350px;}
.ya7{bottom:217.931700px;}
.yc4{bottom:217.969650px;}
.yd2{bottom:218.007600px;}
.y97{bottom:218.017650px;}
.ye8{bottom:218.035650px;}
.y6f{bottom:218.127750px;}
.y4f{bottom:219.330750px;}
.y2b{bottom:229.684950px;}
.ya6{bottom:237.434700px;}
.yc3{bottom:237.472650px;}
.yd1{bottom:237.510600px;}
.y96{bottom:237.520650px;}
.ye7{bottom:237.535650px;}
.y6e{bottom:237.630750px;}
.y2a{bottom:249.187950px;}
.ya5{bottom:256.937700px;}
.yc2{bottom:256.975650px;}
.y95{bottom:257.023650px;}
.ye6{bottom:257.035650px;}
.y6d{bottom:257.133750px;}
.ya4{bottom:276.440700px;}
.yc1{bottom:276.478650px;}
.yd0{bottom:276.516600px;}
.y94{bottom:276.526650px;}
.ye5{bottom:276.535650px;}
.y6c{bottom:276.636750px;}
.y29{bottom:281.445450px;}
.ya3{bottom:295.943700px;}
.yc0{bottom:295.981650px;}
.ycf{bottom:296.019600px;}
.y93{bottom:296.029650px;}
.ye4{bottom:296.035650px;}
.y6b{bottom:296.139750px;}
.y28{bottom:300.948450px;}
.y4e{bottom:301.830750px;}
.ya2{bottom:315.446700px;}
.ybf{bottom:315.484650px;}
.yce{bottom:315.522600px;}
.y92{bottom:315.532650px;}
.ye3{bottom:315.535650px;}
.y6a{bottom:315.642750px;}
.y4d{bottom:316.830750px;}
.y27{bottom:320.451450px;}
.y4c{bottom:331.830750px;}
.ya1{bottom:334.949700px;}
.ybe{bottom:334.987650px;}
.ycd{bottom:335.025600px;}
.y91{bottom:335.035650px;}
.y69{bottom:335.145750px;}
.y4b{bottom:346.830750px;}
.y26{bottom:352.708950px;}
.ya0{bottom:354.452700px;}
.ybd{bottom:354.490650px;}
.ycc{bottom:354.528600px;}
.ye2{bottom:354.535650px;}
.y68{bottom:354.648750px;}
.y36{bottom:357.847350px;}
.y90{bottom:369.535050px;}
.y25{bottom:372.211950px;}
.y9f{bottom:373.955700px;}
.ybc{bottom:373.993650px;}
.ycb{bottom:374.031600px;}
.ye1{bottom:374.035650px;}
.y67{bottom:374.151750px;}
.y4a{bottom:376.866750px;}
.y24{bottom:391.714950px;}
.y49{bottom:393.363750px;}
.y9e{bottom:393.458700px;}
.ybb{bottom:393.496650px;}
.yca{bottom:393.534600px;}
.ye0{bottom:393.535650px;}
.y66{bottom:393.654750px;}
.y35{bottom:396.835350px;}
.y48{bottom:409.860750px;}
.y9d{bottom:412.961700px;}
.ydf{bottom:413.035650px;}
.y65{bottom:413.157750px;}
.y47{bottom:426.357750px;}
.y23{bottom:430.720950px;}
.yc9{bottom:431.034150px;}
.y8f{bottom:432.464700px;}
.yba{bottom:432.502650px;}
.yde{bottom:432.535650px;}
.y64{bottom:432.660750px;}
.y34{bottom:435.823350px;}
.y46{bottom:442.854750px;}
.y22{bottom:450.223950px;}
.y8e{bottom:451.967700px;}
.yb9{bottom:452.005650px;}
.ydd{bottom:452.035650px;}
.y63{bottom:452.163750px;}
.y45{bottom:459.351750px;}
.y21{bottom:469.726950px;}
.y8d{bottom:471.470700px;}
.yb8{bottom:471.508650px;}
.y62{bottom:471.666750px;}
.ydc{bottom:486.535050px;}
.y20{bottom:489.229950px;}
.y8c{bottom:490.973700px;}
.yb7{bottom:491.011650px;}
.y61{bottom:491.169750px;}
.y44{bottom:492.345750px;}
.y4{bottom:499.240500px;}
.y40{bottom:501.844500px;}
.y1f{bottom:508.732950px;}
.y43{bottom:508.842750px;}
.y8b{bottom:510.476700px;}
.yb6{bottom:510.514650px;}
.y60{bottom:510.672750px;}
.y1e{bottom:528.235950px;}
.y8a{bottom:529.979700px;}
.yb5{bottom:530.017650px;}
.y3f{bottom:534.838500px;}
.y42{bottom:541.836750px;}
.y5f{bottom:545.172750px;}
.y1d{bottom:547.738950px;}
.y89{bottom:549.482700px;}
.yb4{bottom:549.520650px;}
.y3{bottom:559.261500px;}
.y1c{bottom:567.241950px;}
.y88{bottom:568.985700px;}
.yb3{bottom:569.023650px;}
.y41{bottom:574.830750px;}
.y32{bottom:584.681550px;}
.y3e{bottom:584.837400px;}
.y1b{bottom:586.744950px;}
.y87{bottom:588.488700px;}
.yb2{bottom:588.526650px;}
.y1a{bottom:606.247950px;}
.y86{bottom:607.991700px;}
.yb1{bottom:608.029650px;}
.y2{bottom:619.282500px;}
.y19{bottom:625.750950px;}
.y5e{bottom:626.172750px;}
.y85{bottom:627.494700px;}
.yb0{bottom:627.532650px;}
.yfb{bottom:628.613700px;}
.y3d{bottom:632.846400px;}
.y18{bottom:645.253950px;}
.y5d{bottom:645.672750px;}
.y84{bottom:646.997700px;}
.yaf{bottom:647.035650px;}
.yfa{bottom:648.113700px;}
.y17{bottom:664.756950px;}
.y83{bottom:666.500700px;}
.yf9{bottom:667.613700px;}
.y1{bottom:679.303500px;}
.y16{bottom:684.259950px;}
.y82{bottom:686.003700px;}
.yae{bottom:686.035650px;}
.yf8{bottom:687.113700px;}
.y15{bottom:703.762950px;}
.y81{bottom:705.506700px;}
.yf7{bottom:706.613700px;}
.y5c{bottom:707.172750px;}
.yad{bottom:720.535200px;}
.y14{bottom:723.265950px;}
.y80{bottom:725.009700px;}
.yf6{bottom:726.113700px;}
.y5b{bottom:737.172750px;}
.y13{bottom:742.768950px;}
.y7f{bottom:744.512700px;}
.yf5{bottom:745.613700px;}
.y3c{bottom:761.681850px;}
.y12{bottom:762.271950px;}
.y7e{bottom:764.015700px;}
.yf4{bottom:765.113700px;}
.y9{bottom:766.397850px;}
.y5a{bottom:767.172750px;}
.y11{bottom:781.774950px;}
.y7d{bottom:783.518700px;}
.yf3{bottom:784.613700px;}
.y3b{bottom:790.169850px;}
.y8{bottom:790.405350px;}
.y59{bottom:797.172750px;}
.y10{bottom:801.277950px;}
.y7c{bottom:803.021700px;}
.yf2{bottom:804.113700px;}
.y7{bottom:814.412850px;}
.y3a{bottom:818.657850px;}
.yf{bottom:820.780950px;}
.y7b{bottom:822.524700px;}
.yf1{bottom:823.613700px;}
.y6{bottom:838.420350px;}
.ye{bottom:840.283950px;}
.y7a{bottom:842.027700px;}
.yf0{bottom:843.113700px;}
.y39{bottom:847.145850px;}
.y56{bottom:850.212750px;}
.y58{bottom:851.482500px;}
.y76{bottom:861.530550px;}
.y79{bottom:861.530700px;}
.y5{bottom:862.427850px;}
.yef{bottom:862.613700px;}
.y55{bottom:866.709750px;}
.y38{bottom:875.633850px;}
.yd{bottom:879.283950px;}
.y75{bottom:881.033550px;}
.y78{bottom:881.033700px;}
.yee{bottom:882.113700px;}
.y54{bottom:883.206750px;}
.yc{bottom:900.036000px;}
.he{height:26.525391px;}
.hc{height:38.628000px;}
.h14{height:39.690000px;}
.h13{height:42.432000px;}
.h15{height:45.120000px;}
.h8{height:47.190000px;}
.h9{height:47.193143px;}
.ha{height:47.212000px;}
.h12{height:47.736000px;}
.h1c{height:48.510000px;}
.hb{height:48.600000px;}
.h7{height:51.480000px;}
.h1d{height:53.040000px;}
.h5{height:55.380000px;}
.h6{height:55.770000px;}
.h1a{height:58.344000px;}
.h18{height:59.862000px;}
.h3{height:64.380000px;}
.h1b{height:70.746000px;}
.hf{height:84.864000px;}
.h19{height:87.072000px;}
.h11{height:95.472000px;}
.h17{height:108.840000px;}
.h16{height:117.600000px;}
.hd{height:129.600000px;}
.h10{height:137.904000px;}
.h2{height:205.200000px;}
.h4{height:977.952000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x9{left:-669.567000px;}
.x5{left:-651.534600px;}
.x6{left:-634.523100px;}
.x3{left:-195.387600px;}
.x8{left:-20.542950px;}
.x7{left:-18.566250px;}
.x0{left:0.000000px;}
.x4{left:56.844900px;}
.x21{left:72.714150px;}
.x1d{left:85.039350px;}
.x13{left:93.543300px;}
.x10{left:97.834500px;}
.x14{left:103.789800px;}
.x1e{left:106.291350px;}
.x22{left:114.795300px;}
.xf{left:139.993500px;}
.x11{left:155.402550px;}
.x18{left:160.301250px;}
.xa{left:169.416150px;}
.x17{left:170.771250px;}
.xc{left:171.960150px;}
.x12{left:185.642550px;}
.xd{left:192.936150px;}
.xb{left:216.408150px;}
.x19{left:233.111250px;}
.x1{left:238.968150px;}
.x2{left:243.427950px;}
.xe{left:269.400150px;}
.x1a{left:290.141250px;}
.x1c{left:360.461400px;}
.x1b{left:413.698650px;}
.x16{left:504.375750px;}
.x15{left:552.193350px;}
.x1f{left:703.942800px;}
.x20{left:806.638800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.416000pt;}
.ls16{letter-spacing:-7.253333pt;}
.ls1{letter-spacing:-3.445333pt;}
.ls2{letter-spacing:-3.040000pt;}
.ls3{letter-spacing:-2.837333pt;}
.ls18{letter-spacing:-2.773333pt;}
.ls0{letter-spacing:-2.634667pt;}
.ls26{letter-spacing:-2.133333pt;}
.lsb{letter-spacing:-1.760000pt;}
.ls17{letter-spacing:-1.664000pt;}
.ls27{letter-spacing:-1.365333pt;}
.ls25{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.232000pt;}
.ls4a{letter-spacing:-1.194667pt;}
.ls2e{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.645333pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.586667pt;}
.lsf{letter-spacing:-0.528000pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.469333pt;}
.ls4{letter-spacing:-0.400000pt;}
.ls59{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.293333pt;}
.ls58{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.234667pt;}
.ls39{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.117333pt;}
.ls2f{letter-spacing:-0.058667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.029333pt;}
.ls54{letter-spacing:0.053333pt;}
.ls22{letter-spacing:0.058667pt;}
.ls3b{letter-spacing:0.088000pt;}
.ls13{letter-spacing:0.096000pt;}
.ls55{letter-spacing:0.106667pt;}
.ls2a{letter-spacing:0.117333pt;}
.ls19{letter-spacing:0.128000pt;}
.ls56{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.176000pt;}
.ls3c{letter-spacing:0.205333pt;}
.ls33{letter-spacing:0.234667pt;}
.ls51{letter-spacing:0.266667pt;}
.ls21{letter-spacing:0.293333pt;}
.ls1f{letter-spacing:0.322667pt;}
.ls35{letter-spacing:0.352000pt;}
.ls5a{letter-spacing:0.373333pt;}
.ls2c{letter-spacing:0.410667pt;}
.ls57{letter-spacing:0.426667pt;}
.ls47{letter-spacing:0.440000pt;}
.ls23{letter-spacing:0.469333pt;}
.ls5c{letter-spacing:0.480000pt;}
.ls41{letter-spacing:0.498667pt;}
.ls1d{letter-spacing:0.528000pt;}
.ls5d{letter-spacing:0.533333pt;}
.ls1a{letter-spacing:0.576000pt;}
.ls29{letter-spacing:0.586667pt;}
.ls53{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.645333pt;}
.ls38{letter-spacing:0.674667pt;}
.ls20{letter-spacing:0.704000pt;}
.ls49{letter-spacing:0.733333pt;}
.ls28{letter-spacing:0.762667pt;}
.ls30{letter-spacing:0.821333pt;}
.ls4e{letter-spacing:0.850667pt;}
.ls4f{letter-spacing:0.853333pt;}
.ls8{letter-spacing:0.880000pt;}
.ls3f{letter-spacing:0.909333pt;}
.ls32{letter-spacing:0.938667pt;}
.ls6{letter-spacing:0.960000pt;}
.ls31{letter-spacing:0.997333pt;}
.ls42{letter-spacing:1.026667pt;}
.ls34{letter-spacing:1.056000pt;}
.ls45{letter-spacing:1.114667pt;}
.ls36{letter-spacing:1.173333pt;}
.ls52{letter-spacing:1.226667pt;}
.ls37{letter-spacing:1.232000pt;}
.ls1e{letter-spacing:1.290667pt;}
.ls40{letter-spacing:1.349333pt;}
.ls44{letter-spacing:1.408000pt;}
.ls1c{letter-spacing:1.464320pt;}
.ls1b{letter-spacing:1.466667pt;}
.ls4c{letter-spacing:1.501867pt;}
.ls4d{letter-spacing:1.584000pt;}
.ls46{letter-spacing:1.642667pt;}
.ls43{letter-spacing:1.701333pt;}
.ls3a{letter-spacing:1.818667pt;}
.ls3d{letter-spacing:1.994667pt;}
.ls4b{letter-spacing:2.082667pt;}
.ls5b{letter-spacing:2.186667pt;}
.ls48{letter-spacing:2.405333pt;}
.ls50{letter-spacing:2.880000pt;}
.ls2b{letter-spacing:3.109333pt;}
.ws0{word-spacing:-45.802667pt;}
.ws1{word-spacing:-20.480000pt;}
.ws7b{word-spacing:-16.778667pt;}
.ws32{word-spacing:-14.848000pt;}
.ws3{word-spacing:-14.197333pt;}
.ws51{word-spacing:-12.629333pt;}
.ws35{word-spacing:-11.178667pt;}
.ws5a{word-spacing:-11.050667pt;}
.wsb{word-spacing:-2.288000pt;}
.ws12{word-spacing:-2.229333pt;}
.wsd{word-spacing:-1.818667pt;}
.ws6b{word-spacing:-1.525333pt;}
.ws37{word-spacing:-1.511253pt;}
.ws62{word-spacing:-1.466667pt;}
.ws79{word-spacing:-1.408000pt;}
.ws89{word-spacing:-1.386667pt;}
.ws2d{word-spacing:-1.349333pt;}
.ws2b{word-spacing:-1.290667pt;}
.ws8c{word-spacing:-1.226667pt;}
.ws44{word-spacing:-1.173333pt;}
.ws7e{word-spacing:-1.114667pt;}
.ws8e{word-spacing:-1.066667pt;}
.ws5d{word-spacing:-1.056000pt;}
.wsf{word-spacing:-0.997333pt;}
.ws9{word-spacing:-0.960000pt;}
.ws73{word-spacing:-0.938667pt;}
.ws40{word-spacing:-0.880000pt;}
.ws3d{word-spacing:-0.821333pt;}
.ws4f{word-spacing:-0.762667pt;}
.ws60{word-spacing:-0.704000pt;}
.ws56{word-spacing:-0.645333pt;}
.ws87{word-spacing:-0.640000pt;}
.ws2a{word-spacing:-0.586667pt;}
.ws2f{word-spacing:-0.576000pt;}
.ws76{word-spacing:-0.528000pt;}
.ws97{word-spacing:-0.480000pt;}
.ws2e{word-spacing:-0.469333pt;}
.ws63{word-spacing:-0.410667pt;}
.ws7a{word-spacing:-0.352000pt;}
.ws4d{word-spacing:-0.293333pt;}
.ws48{word-spacing:-0.234667pt;}
.ws6e{word-spacing:-0.176000pt;}
.ws54{word-spacing:-0.117333pt;}
.ws2{word-spacing:-0.069333pt;}
.ws58{word-spacing:-0.058667pt;}
.ws36{word-spacing:-0.046933pt;}
.wsa{word-spacing:0.000000pt;}
.ws52{word-spacing:0.058667pt;}
.ws69{word-spacing:0.117333pt;}
.ws77{word-spacing:0.176000pt;}
.ws93{word-spacing:0.213333pt;}
.ws20{word-spacing:0.234667pt;}
.ws8{word-spacing:0.240000pt;}
.ws25{word-spacing:0.293333pt;}
.ws8f{word-spacing:0.320000pt;}
.ws55{word-spacing:0.352000pt;}
.ws90{word-spacing:0.373333pt;}
.ws7{word-spacing:0.400000pt;}
.ws80{word-spacing:0.410667pt;}
.ws91{word-spacing:0.426667pt;}
.ws30{word-spacing:0.512000pt;}
.ws47{word-spacing:0.528000pt;}
.ws17{word-spacing:0.586667pt;}
.ws31{word-spacing:0.640000pt;}
.ws21{word-spacing:0.645333pt;}
.ws3f{word-spacing:0.704000pt;}
.ws46{word-spacing:0.762667pt;}
.ws4b{word-spacing:0.768000pt;}
.ws92{word-spacing:0.800000pt;}
.ws82{word-spacing:0.880000pt;}
.ws95{word-spacing:0.906667pt;}
.ws65{word-spacing:0.938667pt;}
.ws42{word-spacing:0.997333pt;}
.ws96{word-spacing:1.013333pt;}
.ws2c{word-spacing:1.056000pt;}
.ws64{word-spacing:1.109333pt;}
.ws41{word-spacing:1.114667pt;}
.ws75{word-spacing:1.173333pt;}
.ws83{word-spacing:1.194667pt;}
.ws61{word-spacing:1.232000pt;}
.ws38{word-spacing:1.280000pt;}
.ws5b{word-spacing:1.290667pt;}
.ws45{word-spacing:1.349333pt;}
.ws3a{word-spacing:1.365333pt;}
.ws88{word-spacing:1.386667pt;}
.ws19{word-spacing:1.408000pt;}
.ws8d{word-spacing:1.440000pt;}
.ws1a{word-spacing:1.466667pt;}
.ws86{word-spacing:1.493333pt;}
.ws3b{word-spacing:1.525333pt;}
.ws94{word-spacing:1.546667pt;}
.ws6d{word-spacing:1.584000pt;}
.ws4c{word-spacing:1.642667pt;}
.ws33{word-spacing:1.664000pt;}
.ws4a{word-spacing:1.701333pt;}
.ws13{word-spacing:1.760000pt;}
.ws3c{word-spacing:1.818667pt;}
.ws3e{word-spacing:1.936000pt;}
.ws50{word-spacing:1.994667pt;}
.ws72{word-spacing:2.053333pt;}
.ws49{word-spacing:2.112000pt;}
.ws39{word-spacing:2.133333pt;}
.ws1f{word-spacing:2.170667pt;}
.ws57{word-spacing:2.229333pt;}
.ws6f{word-spacing:2.288000pt;}
.ws5c{word-spacing:2.346667pt;}
.ws27{word-spacing:2.405333pt;}
.ws5{word-spacing:2.432000pt;}
.ws71{word-spacing:2.464000pt;}
.ws6a{word-spacing:2.522667pt;}
.ws53{word-spacing:2.581333pt;}
.ws4{word-spacing:2.634667pt;}
.ws59{word-spacing:2.698667pt;}
.ws34{word-spacing:2.773333pt;}
.ws7f{word-spacing:2.816000pt;}
.ws7c{word-spacing:2.874667pt;}
.ws8a{word-spacing:2.880000pt;}
.ws5e{word-spacing:2.933333pt;}
.ws66{word-spacing:2.992000pt;}
.ws6{word-spacing:3.040000pt;}
.ws5f{word-spacing:3.050667pt;}
.ws8b{word-spacing:3.093333pt;}
.ws1c{word-spacing:3.109333pt;}
.ws22{word-spacing:3.168000pt;}
.ws23{word-spacing:3.226667pt;}
.ws6c{word-spacing:3.402667pt;}
.ws78{word-spacing:3.461333pt;}
.ws74{word-spacing:3.520000pt;}
.ws67{word-spacing:3.696000pt;}
.ws85{word-spacing:3.754667pt;}
.wsc{word-spacing:3.872000pt;}
.wse{word-spacing:3.930667pt;}
.ws70{word-spacing:4.224000pt;}
.ws7d{word-spacing:4.282667pt;}
.ws16{word-spacing:4.341333pt;}
.ws1e{word-spacing:4.517333pt;}
.ws68{word-spacing:4.634667pt;}
.ws1b{word-spacing:4.928000pt;}
.ws26{word-spacing:5.045333pt;}
.ws84{word-spacing:5.162667pt;}
.ws10{word-spacing:5.573333pt;}
.ws81{word-spacing:5.984000pt;}
.ws18{word-spacing:6.218667pt;}
.ws15{word-spacing:6.688000pt;}
.ws28{word-spacing:6.805333pt;}
.ws29{word-spacing:7.333333pt;}
.ws11{word-spacing:7.685333pt;}
.ws4e{word-spacing:7.978667pt;}
.ws1d{word-spacing:8.917333pt;}
.ws24{word-spacing:9.034667pt;}
.ws14{word-spacing:10.618667pt;}
.ws43{word-spacing:38.283200pt;}
._d{margin-left:-1430.725333pt;}
._f{margin-left:-17.893333pt;}
._e{margin-left:-16.720000pt;}
._1{margin-left:-12.058667pt;}
._5{margin-left:-6.061333pt;}
._6{margin-left:-4.968000pt;}
._8{margin-left:-4.000000pt;}
._4{margin-left:-2.892800pt;}
._0{margin-left:-1.114667pt;}
._3{width:1.378133pt;}
._2{width:2.614400pt;}
._a{width:3.713067pt;}
._7{width:5.192533pt;}
._b{width:7.645867pt;}
._c{width:8.721067pt;}
._9{width:4004.686933pt;}
.fs7{font-size:32.000000pt;}
.fsb{font-size:42.666667pt;}
.fse{font-size:46.933333pt;}
.fs5{font-size:48.000000pt;}
.fsf{font-size:49.749333pt;}
.fs10{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.fs8{font-size:85.333333pt;}
.fsa{font-size:96.000000pt;}
.fsd{font-size:106.666667pt;}
.fs6{font-size:128.000000pt;}
.fs9{font-size:138.666667pt;}
.fsc{font-size:149.333333pt;}
.fs0{font-size:202.666667pt;}
.y37{bottom:-30.897600pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:16.021467pt;}
.yb{bottom:17.234800pt;}
.y77{bottom:55.149600pt;}
.y57{bottom:55.181067pt;}
.y33{bottom:77.126933pt;}
.y31{bottom:88.811067pt;}
.y30{bottom:106.147067pt;}
.yc8{bottom:106.960667pt;}
.y53{bottom:106.976667pt;}
.yac{bottom:107.037067pt;}
.yd7{bottom:107.104533pt;}
.y9c{bottom:107.113467pt;}
.ydb{bottom:107.140933pt;}
.yed{bottom:107.142800pt;}
.y74{bottom:107.211333pt;}
.yc7{bottom:120.294000pt;}
.y2f{bottom:123.483067pt;}
.yab{bottom:124.373067pt;}
.yd6{bottom:124.440533pt;}
.y9b{bottom:124.449467pt;}
.yec{bottom:124.476133pt;}
.yda{bottom:124.476933pt;}
.y73{bottom:124.547333pt;}
.y52{bottom:136.304667pt;}
.y2e{bottom:140.819067pt;}
.yaa{bottom:141.709067pt;}
.yd5{bottom:141.776533pt;}
.y9a{bottom:141.785467pt;}
.yeb{bottom:141.809467pt;}
.y72{bottom:141.883333pt;}
.y51{bottom:150.968667pt;}
.ya9{bottom:159.045067pt;}
.yc6{bottom:159.078800pt;}
.yd4{bottom:159.112533pt;}
.y99{bottom:159.121467pt;}
.yea{bottom:159.142800pt;}
.y71{bottom:159.219333pt;}
.yd9{bottom:165.142533pt;}
.y2d{bottom:169.492400pt;}
.ya8{bottom:176.381067pt;}
.yc5{bottom:176.414800pt;}
.yd3{bottom:176.448533pt;}
.y98{bottom:176.457467pt;}
.ye9{bottom:176.476133pt;}
.y70{bottom:176.555333pt;}
.y50{bottom:180.296667pt;}
.y2c{bottom:186.828400pt;}
.yd8{bottom:189.142533pt;}
.ya7{bottom:193.717067pt;}
.yc4{bottom:193.750800pt;}
.yd2{bottom:193.784533pt;}
.y97{bottom:193.793467pt;}
.ye8{bottom:193.809467pt;}
.y6f{bottom:193.891333pt;}
.y4f{bottom:194.960667pt;}
.y2b{bottom:204.164400pt;}
.ya6{bottom:211.053067pt;}
.yc3{bottom:211.086800pt;}
.yd1{bottom:211.120533pt;}
.y96{bottom:211.129467pt;}
.ye7{bottom:211.142800pt;}
.y6e{bottom:211.227333pt;}
.y2a{bottom:221.500400pt;}
.ya5{bottom:228.389067pt;}
.yc2{bottom:228.422800pt;}
.y95{bottom:228.465467pt;}
.ye6{bottom:228.476133pt;}
.y6d{bottom:228.563333pt;}
.ya4{bottom:245.725067pt;}
.yc1{bottom:245.758800pt;}
.yd0{bottom:245.792533pt;}
.y94{bottom:245.801467pt;}
.ye5{bottom:245.809467pt;}
.y6c{bottom:245.899333pt;}
.y29{bottom:250.173733pt;}
.ya3{bottom:263.061067pt;}
.yc0{bottom:263.094800pt;}
.ycf{bottom:263.128533pt;}
.y93{bottom:263.137467pt;}
.ye4{bottom:263.142800pt;}
.y6b{bottom:263.235333pt;}
.y28{bottom:267.509733pt;}
.y4e{bottom:268.294000pt;}
.ya2{bottom:280.397067pt;}
.ybf{bottom:280.430800pt;}
.yce{bottom:280.464533pt;}
.y92{bottom:280.473467pt;}
.ye3{bottom:280.476133pt;}
.y6a{bottom:280.571333pt;}
.y4d{bottom:281.627333pt;}
.y27{bottom:284.845733pt;}
.y4c{bottom:294.960667pt;}
.ya1{bottom:297.733067pt;}
.ybe{bottom:297.766800pt;}
.ycd{bottom:297.800533pt;}
.y91{bottom:297.809467pt;}
.y69{bottom:297.907333pt;}
.y4b{bottom:308.294000pt;}
.y26{bottom:313.519067pt;}
.ya0{bottom:315.069067pt;}
.ybd{bottom:315.102800pt;}
.ycc{bottom:315.136533pt;}
.ye2{bottom:315.142800pt;}
.y68{bottom:315.243333pt;}
.y36{bottom:318.086533pt;}
.y90{bottom:328.475600pt;}
.y25{bottom:330.855067pt;}
.y9f{bottom:332.405067pt;}
.ybc{bottom:332.438800pt;}
.ycb{bottom:332.472533pt;}
.ye1{bottom:332.476133pt;}
.y67{bottom:332.579333pt;}
.y4a{bottom:334.992667pt;}
.y24{bottom:348.191067pt;}
.y49{bottom:349.656667pt;}
.y9e{bottom:349.741067pt;}
.ybb{bottom:349.774800pt;}
.yca{bottom:349.808533pt;}
.ye0{bottom:349.809467pt;}
.y66{bottom:349.915333pt;}
.y35{bottom:352.742533pt;}
.y48{bottom:364.320667pt;}
.y9d{bottom:367.077067pt;}
.ydf{bottom:367.142800pt;}
.y65{bottom:367.251333pt;}
.y47{bottom:378.984667pt;}
.y23{bottom:382.863067pt;}
.yc9{bottom:383.141467pt;}
.y8f{bottom:384.413067pt;}
.yba{bottom:384.446800pt;}
.yde{bottom:384.476133pt;}
.y64{bottom:384.587333pt;}
.y34{bottom:387.398533pt;}
.y46{bottom:393.648667pt;}
.y22{bottom:400.199067pt;}
.y8e{bottom:401.749067pt;}
.yb9{bottom:401.782800pt;}
.ydd{bottom:401.809467pt;}
.y63{bottom:401.923333pt;}
.y45{bottom:408.312667pt;}
.y21{bottom:417.535067pt;}
.y8d{bottom:419.085067pt;}
.yb8{bottom:419.118800pt;}
.y62{bottom:419.259333pt;}
.ydc{bottom:432.475600pt;}
.y20{bottom:434.871067pt;}
.y8c{bottom:436.421067pt;}
.yb7{bottom:436.454800pt;}
.y61{bottom:436.595333pt;}
.y44{bottom:437.640667pt;}
.y4{bottom:443.769333pt;}
.y40{bottom:446.084000pt;}
.y1f{bottom:452.207067pt;}
.y43{bottom:452.304667pt;}
.y8b{bottom:453.757067pt;}
.yb6{bottom:453.790800pt;}
.y60{bottom:453.931333pt;}
.y1e{bottom:469.543067pt;}
.y8a{bottom:471.093067pt;}
.yb5{bottom:471.126800pt;}
.y3f{bottom:475.412000pt;}
.y42{bottom:481.632667pt;}
.y5f{bottom:484.598000pt;}
.y1d{bottom:486.879067pt;}
.y89{bottom:488.429067pt;}
.yb4{bottom:488.462800pt;}
.y3{bottom:497.121333pt;}
.y1c{bottom:504.215067pt;}
.y88{bottom:505.765067pt;}
.yb3{bottom:505.798800pt;}
.y41{bottom:510.960667pt;}
.y32{bottom:519.716933pt;}
.y3e{bottom:519.855467pt;}
.y1b{bottom:521.551067pt;}
.y87{bottom:523.101067pt;}
.yb2{bottom:523.134800pt;}
.y1a{bottom:538.887067pt;}
.y86{bottom:540.437067pt;}
.yb1{bottom:540.470800pt;}
.y2{bottom:550.473333pt;}
.y19{bottom:556.223067pt;}
.y5e{bottom:556.598000pt;}
.y85{bottom:557.773067pt;}
.yb0{bottom:557.806800pt;}
.yfb{bottom:558.767733pt;}
.y3d{bottom:562.530133pt;}
.y18{bottom:573.559067pt;}
.y5d{bottom:573.931333pt;}
.y84{bottom:575.109067pt;}
.yaf{bottom:575.142800pt;}
.yfa{bottom:576.101067pt;}
.y17{bottom:590.895067pt;}
.y83{bottom:592.445067pt;}
.yf9{bottom:593.434400pt;}
.y1{bottom:603.825333pt;}
.y16{bottom:608.231067pt;}
.y82{bottom:609.781067pt;}
.yae{bottom:609.809467pt;}
.yf8{bottom:610.767733pt;}
.y15{bottom:625.567067pt;}
.y81{bottom:627.117067pt;}
.yf7{bottom:628.101067pt;}
.y5c{bottom:628.598000pt;}
.yad{bottom:640.475733pt;}
.y14{bottom:642.903067pt;}
.y80{bottom:644.453067pt;}
.yf6{bottom:645.434400pt;}
.y5b{bottom:655.264667pt;}
.y13{bottom:660.239067pt;}
.y7f{bottom:661.789067pt;}
.yf5{bottom:662.767733pt;}
.y3c{bottom:677.050533pt;}
.y12{bottom:677.575067pt;}
.y7e{bottom:679.125067pt;}
.yf4{bottom:680.101067pt;}
.y9{bottom:681.242533pt;}
.y5a{bottom:681.931333pt;}
.y11{bottom:694.911067pt;}
.y7d{bottom:696.461067pt;}
.yf3{bottom:697.434400pt;}
.y3b{bottom:702.373200pt;}
.y8{bottom:702.582533pt;}
.y59{bottom:708.598000pt;}
.y10{bottom:712.247067pt;}
.y7c{bottom:713.797067pt;}
.yf2{bottom:714.767733pt;}
.y7{bottom:723.922533pt;}
.y3a{bottom:727.695867pt;}
.yf{bottom:729.583067pt;}
.y7b{bottom:731.133067pt;}
.yf1{bottom:732.101067pt;}
.y6{bottom:745.262533pt;}
.ye{bottom:746.919067pt;}
.y7a{bottom:748.469067pt;}
.yf0{bottom:749.434400pt;}
.y39{bottom:753.018533pt;}
.y56{bottom:755.744667pt;}
.y58{bottom:756.873333pt;}
.y76{bottom:765.804933pt;}
.y79{bottom:765.805067pt;}
.y5{bottom:766.602533pt;}
.yef{bottom:766.767733pt;}
.y55{bottom:770.408667pt;}
.y38{bottom:778.341200pt;}
.yd{bottom:781.585733pt;}
.y75{bottom:783.140933pt;}
.y78{bottom:783.141067pt;}
.yee{bottom:784.101067pt;}
.y54{bottom:785.072667pt;}
.yc{bottom:800.032000pt;}
.he{height:23.578125pt;}
.hc{height:34.336000pt;}
.h14{height:35.280000pt;}
.h13{height:37.717333pt;}
.h15{height:40.106667pt;}
.h8{height:41.946667pt;}
.h9{height:41.949460pt;}
.ha{height:41.966222pt;}
.h12{height:42.432000pt;}
.h1c{height:43.120000pt;}
.hb{height:43.200000pt;}
.h7{height:45.760000pt;}
.h1d{height:47.146667pt;}
.h5{height:49.226667pt;}
.h6{height:49.573333pt;}
.h1a{height:51.861333pt;}
.h18{height:53.210667pt;}
.h3{height:57.226667pt;}
.h1b{height:62.885333pt;}
.hf{height:75.434667pt;}
.h19{height:77.397333pt;}
.h11{height:84.864000pt;}
.h17{height:96.746667pt;}
.h16{height:104.533333pt;}
.hd{height:115.200000pt;}
.h10{height:122.581333pt;}
.h2{height:182.400000pt;}
.h4{height:869.290667pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x9{left:-595.170667pt;}
.x5{left:-579.141867pt;}
.x6{left:-564.020533pt;}
.x3{left:-173.677867pt;}
.x8{left:-18.260400pt;}
.x7{left:-16.503333pt;}
.x0{left:0.000000pt;}
.x4{left:50.528800pt;}
.x21{left:64.634800pt;}
.x1d{left:75.590533pt;}
.x13{left:83.149600pt;}
.x10{left:86.964000pt;}
.x14{left:92.257600pt;}
.x1e{left:94.481200pt;}
.x22{left:102.040267pt;}
.xf{left:124.438667pt;}
.x11{left:138.135600pt;}
.x18{left:142.490000pt;}
.xa{left:150.592133pt;}
.x17{left:151.796667pt;}
.xc{left:152.853467pt;}
.x12{left:165.015600pt;}
.xd{left:171.498800pt;}
.xb{left:192.362800pt;}
.x19{left:207.210000pt;}
.x1{left:212.416133pt;}
.x2{left:216.380400pt;}
.xe{left:239.466800pt;}
.x1a{left:257.903333pt;}
.x1c{left:320.410133pt;}
.x1b{left:367.732133pt;}
.x16{left:448.334000pt;}
.x15{left:490.838533pt;}
.x1f{left:625.726933pt;}
.x20{left:717.012267pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  