
    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_045b0a73c09f0b205b071ff1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ad39e0ada9800ae5137a9092.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_34e24a02eaad778e29b1f802.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_b09d7127f919733f5fb9878c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_700df3a260bd9d51849d1f1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_463bcde075aaa07a24810af6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_486a51e5488b3fd5bef1af67.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_82304868957b8a0cb9282184.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_aec8e53441af0d7eb92eacbd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942000;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_0ce04c697e03b9bf83d10b63.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_944db359a8d8f5091419a95f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.930000;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_9c9ddab5cc76e95a608727ef.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.943000;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;}
.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);}
.m1{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;}
.ls8{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.ls6{letter-spacing:7.602600px;}
.lsd{letter-spacing:9.157200px;}
.lsc{letter-spacing:9.157800px;}
.lsf{letter-spacing:11.077200px;}
.lse{letter-spacing:12.840000px;}
.ls7{letter-spacing:67.526400px;}
.lsb{letter-spacing:1265.026800px;}
.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;}
}
.ws1{word-spacing:-13.986000px;}
.ws39{word-spacing:-13.620000px;}
.wsc0{word-spacing:-13.332000px;}
.ws38{word-spacing:-13.020000px;}
.ws4{word-spacing:-12.720000px;}
.wsc1{word-spacing:-11.448000px;}
.wsd6{word-spacing:-9.828000px;}
.ws8{word-spacing:-9.810000px;}
.ws5{word-spacing:-9.696000px;}
.wsa6{word-spacing:-9.408000px;}
.ws2{word-spacing:-9.360000px;}
.ws6{word-spacing:-8.820000px;}
.ws7{word-spacing:-8.232000px;}
.ws3{word-spacing:-2.666400px;}
.ws5c{word-spacing:-0.900000px;}
.ws59{word-spacing:-0.450000px;}
.ws52{word-spacing:-0.300000px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:4.482000px;}
.ws85{word-spacing:4.620000px;}
.wsf9{word-spacing:4.644000px;}
.wsf2{word-spacing:4.752000px;}
.ws103{word-spacing:4.968000px;}
.wsef{word-spacing:5.022000px;}
.wsa1{word-spacing:5.160000px;}
.ws18{word-spacing:5.184000px;}
.ws26{word-spacing:5.220000px;}
.wsac{word-spacing:5.664000px;}
.ws102{word-spacing:5.778000px;}
.wsd4{word-spacing:5.832000px;}
.wsf3{word-spacing:5.886000px;}
.wsbc{word-spacing:5.940000px;}
.ws7a{word-spacing:6.000000px;}
.wse3{word-spacing:6.102000px;}
.ws2b{word-spacing:6.420000px;}
.wsd0{word-spacing:6.480000px;}
.wsb7{word-spacing:6.540000px;}
.ws31{word-spacing:6.594000px;}
.wsa{word-spacing:6.615000px;}
.ws35{word-spacing:6.660000px;}
.ws90{word-spacing:6.780000px;}
.wsad{word-spacing:6.840000px;}
.ws46{word-spacing:6.900000px;}
.wsd1{word-spacing:6.966000px;}
.wsb{word-spacing:7.065000px;}
.wse2{word-spacing:7.074000px;}
.ws11{word-spacing:7.128000px;}
.ws9c{word-spacing:7.140000px;}
.wsbf{word-spacing:7.200000px;}
.wsd5{word-spacing:7.236000px;}
.ws93{word-spacing:7.260000px;}
.wsd2{word-spacing:7.290000px;}
.ws4e{word-spacing:7.320000px;}
.ws68{word-spacing:7.380000px;}
.wsd7{word-spacing:7.398000px;}
.ws42{word-spacing:7.440000px;}
.ws2e{word-spacing:7.500000px;}
.ws32{word-spacing:7.536000px;}
.ws45{word-spacing:7.560000px;}
.ws7b{word-spacing:7.620000px;}
.wsca{word-spacing:7.680000px;}
.ws37{word-spacing:7.776000px;}
.ws75{word-spacing:7.800000px;}
.ws5f{word-spacing:7.860000px;}
.wse1{word-spacing:7.884000px;}
.wsdb{word-spacing:7.938000px;}
.wsc9{word-spacing:8.040000px;}
.wsfd{word-spacing:8.046000px;}
.wse4{word-spacing:8.154000px;}
.ws36{word-spacing:8.160000px;}
.ws8a{word-spacing:8.220000px;}
.wsba{word-spacing:8.280000px;}
.ws49{word-spacing:8.400000px;}
.wse{word-spacing:8.442000px;}
.ws8d{word-spacing:8.460000px;}
.wsf{word-spacing:8.478000px;}
.ws34{word-spacing:8.484000px;}
.ws62{word-spacing:8.520000px;}
.wsd8{word-spacing:8.532000px;}
.ws6d{word-spacing:8.580000px;}
.ws94{word-spacing:8.700000px;}
.ws86{word-spacing:8.778000px;}
.ws53{word-spacing:8.940000px;}
.ws87{word-spacing:8.949000px;}
.ws41{word-spacing:9.000000px;}
.wse5{word-spacing:9.018000px;}
.ws66{word-spacing:9.060000px;}
.wsa3{word-spacing:9.120000px;}
.wsfb{word-spacing:9.126000px;}
.ws22{word-spacing:9.180000px;}
.wsdc{word-spacing:9.234000px;}
.wscb{word-spacing:9.240000px;}
.ws1e{word-spacing:9.342000px;}
.wsfc{word-spacing:9.396000px;}
.ws95{word-spacing:9.420000px;}
.ws48{word-spacing:9.480000px;}
.wsf6{word-spacing:9.504000px;}
.ws77{word-spacing:9.540000px;}
.ws9{word-spacing:9.600000px;}
.ws7e{word-spacing:9.660000px;}
.ws88{word-spacing:9.720000px;}
.wseb{word-spacing:9.774000px;}
.ws7d{word-spacing:9.840000px;}
.ws101{word-spacing:9.882000px;}
.ws25{word-spacing:9.900000px;}
.ws14{word-spacing:9.936000px;}
.wsb5{word-spacing:9.960000px;}
.ws91{word-spacing:10.020000px;}
.ws92{word-spacing:10.080000px;}
.ws96{word-spacing:10.140000px;}
.ws2d{word-spacing:10.200000px;}
.ws4b{word-spacing:10.260000px;}
.ws6f{word-spacing:10.320000px;}
.wsda{word-spacing:10.368000px;}
.ws89{word-spacing:10.440000px;}
.ws51{word-spacing:10.560000px;}
.ws23{word-spacing:10.620000px;}
.wsde{word-spacing:10.638000px;}
.ws4d{word-spacing:10.692000px;}
.wsd{word-spacing:10.710000px;}
.ws44{word-spacing:10.740000px;}
.ws6b{word-spacing:10.800000px;}
.ws3c{word-spacing:10.860000px;}
.wsfe{word-spacing:10.908000px;}
.ws4f{word-spacing:10.920000px;}
.wscd{word-spacing:10.962000px;}
.wsea{word-spacing:11.016000px;}
.ws6a{word-spacing:11.040000px;}
.wsf5{word-spacing:11.070000px;}
.wsb1{word-spacing:11.100000px;}
.ws5d{word-spacing:11.160000px;}
.ws24{word-spacing:11.220000px;}
.ws9d{word-spacing:11.280000px;}
.ws33{word-spacing:11.298000px;}
.ws4c{word-spacing:11.340000px;}
.wsec{word-spacing:11.394000px;}
.ws43{word-spacing:11.400000px;}
.ws1c{word-spacing:11.448000px;}
.ws3f{word-spacing:11.460000px;}
.wse0{word-spacing:11.502000px;}
.wsae{word-spacing:11.520000px;}
.ws7c{word-spacing:11.580000px;}
.ws27{word-spacing:11.640000px;}
.ws84{word-spacing:11.700000px;}
.ws72{word-spacing:11.760000px;}
.wsc8{word-spacing:11.820000px;}
.ws74{word-spacing:11.880000px;}
.wsee{word-spacing:11.934000px;}
.ws81{word-spacing:11.940000px;}
.ws8e{word-spacing:12.120000px;}
.ws3e{word-spacing:12.180000px;}
.wsa4{word-spacing:12.240000px;}
.ws71{word-spacing:12.300000px;}
.ws12{word-spacing:12.312000px;}
.ws7f{word-spacing:12.420000px;}
.ws50{word-spacing:12.600000px;}
.ws2c{word-spacing:12.660000px;}
.ws28{word-spacing:12.720000px;}
.wscc{word-spacing:12.780000px;}
.wsdf{word-spacing:12.852000px;}
.ws54{word-spacing:12.900000px;}
.wsb6{word-spacing:12.960000px;}
.wsf0{word-spacing:13.014000px;}
.wsf1{word-spacing:13.068000px;}
.ws99{word-spacing:13.080000px;}
.ws1b{word-spacing:13.176000px;}
.ws3a{word-spacing:13.200000px;}
.ws70{word-spacing:13.260000px;}
.ws80{word-spacing:13.320000px;}
.ws10{word-spacing:13.338000px;}
.ws2a{word-spacing:13.380000px;}
.ws17{word-spacing:13.392000px;}
.ws3d{word-spacing:13.440000px;}
.ws20{word-spacing:13.500000px;}
.wsc5{word-spacing:13.560000px;}
.ws9e{word-spacing:13.620000px;}
.wsa2{word-spacing:13.680000px;}
.ws3b{word-spacing:13.740000px;}
.ws104{word-spacing:13.770000px;}
.ws5a{word-spacing:13.800000px;}
.ws57{word-spacing:13.860000px;}
.wsed{word-spacing:13.878000px;}
.wsf4{word-spacing:13.932000px;}
.wsc{word-spacing:13.944000px;}
.ws6e{word-spacing:14.040000px;}
.wse7{word-spacing:14.094000px;}
.ws8c{word-spacing:14.280000px;}
.ws8f{word-spacing:14.340000px;}
.wsd9{word-spacing:14.472000px;}
.ws47{word-spacing:14.520000px;}
.wsb8{word-spacing:14.580000px;}
.ws29{word-spacing:14.640000px;}
.ws40{word-spacing:14.700000px;}
.wsbd{word-spacing:14.760000px;}
.wsaf{word-spacing:14.880000px;}
.ws4a{word-spacing:14.940000px;}
.ws55{word-spacing:15.060000px;}
.ws63{word-spacing:15.120000px;}
.wscf{word-spacing:15.228000px;}
.ws30{word-spacing:15.360000px;}
.ws100{word-spacing:15.390000px;}
.ws9b{word-spacing:15.420000px;}
.ws2f{word-spacing:15.480000px;}
.ws8b{word-spacing:15.540000px;}
.wsb2{word-spacing:15.660000px;}
.wsc7{word-spacing:15.960000px;}
.ws76{word-spacing:16.020000px;}
.wsd3{word-spacing:16.038000px;}
.ws64{word-spacing:16.080000px;}
.ws21{word-spacing:16.146000px;}
.ws9f{word-spacing:16.260000px;}
.ws61{word-spacing:16.500000px;}
.ws5e{word-spacing:16.560000px;}
.wsb9{word-spacing:16.740000px;}
.ws6c{word-spacing:16.800000px;}
.wsc3{word-spacing:16.860000px;}
.wsc6{word-spacing:16.920000px;}
.wsfa{word-spacing:17.010000px;}
.wsc2{word-spacing:17.040000px;}
.wsdd{word-spacing:17.118000px;}
.ws69{word-spacing:17.160000px;}
.ws65{word-spacing:17.280000px;}
.ws82{word-spacing:17.340000px;}
.ws1f{word-spacing:17.388000px;}
.ws1d{word-spacing:17.550000px;}
.ws60{word-spacing:17.700000px;}
.wsbb{word-spacing:17.760000px;}
.wsff{word-spacing:17.928000px;}
.wsbe{word-spacing:17.940000px;}
.wsb3{word-spacing:18.000000px;}
.ws83{word-spacing:18.060000px;}
.wsf7{word-spacing:18.144000px;}
.ws78{word-spacing:18.360000px;}
.wse6{word-spacing:18.792000px;}
.ws67{word-spacing:18.840000px;}
.ws13{word-spacing:18.846000px;}
.wsa0{word-spacing:19.020000px;}
.ws56{word-spacing:19.080000px;}
.ws16{word-spacing:19.440000px;}
.wsb0{word-spacing:19.500000px;}
.wsc4{word-spacing:19.980000px;}
.wsb4{word-spacing:20.220000px;}
.wsf8{word-spacing:21.168000px;}
.ws79{word-spacing:21.780000px;}
.ws73{word-spacing:22.920000px;}
.ws19{word-spacing:24.192000px;}
.wse9{word-spacing:25.812000px;}
.wsce{word-spacing:27.162000px;}
.ws9a{word-spacing:29.640000px;}
.ws15{word-spacing:29.916000px;}
.wse8{word-spacing:30.078000px;}
.ws58{word-spacing:35.820000px;}
.ws5b{word-spacing:38.160000px;}
.wsaa{word-spacing:273.360000px;}
.wsa9{word-spacing:278.976000px;}
.wsa5{word-spacing:303.840600px;}
.wsa8{word-spacing:306.096000px;}
.wsa7{word-spacing:448.080000px;}
.wsab{word-spacing:467.188800px;}
.ws97{word-spacing:1182.802800px;}
.ws98{word-spacing:1255.618800px;}
._10{margin-left:-16.080015px;}
._11{margin-left:-14.874029px;}
._3c{margin-left:-8.452244px;}
._b{margin-left:-6.300000px;}
._3a{margin-left:-5.178000px;}
._1{margin-left:-4.140000px;}
._8{margin-left:-2.945415px;}
._0{margin-left:-1.919985px;}
._4{width:1.074000px;}
._5{width:2.226000px;}
._2{width:6.180000px;}
._3{width:7.799985px;}
._d{width:9.870000px;}
._c{width:10.925941px;}
._9{width:12.786000px;}
._3d{width:14.705956px;}
._e{width:15.857971px;}
._3b{width:19.460371px;}
._29{width:29.711985px;}
._1a{width:50.141985px;}
._23{width:54.287985px;}
._6{width:59.756985px;}
._7{width:62.506185px;}
._1d{width:65.088000px;}
._1c{width:72.816000px;}
._1f{width:90.527985px;}
._14{width:95.183985px;}
._32{width:100.367985px;}
._21{width:109.632000px;}
._20{width:111.695985px;}
._16{width:127.728000px;}
._1e{width:129.258000px;}
._f{width:131.698171px;}
._a{width:133.679400px;}
._37{width:163.632000px;}
._15{width:168.942000px;}
._22{width:176.879985px;}
._27{width:180.096000px;}
._28{width:191.232000px;}
._33{width:203.904000px;}
._19{width:207.792000px;}
._1b{width:210.239985px;}
._2c{width:213.408000px;}
._17{width:221.424000px;}
._31{width:258.240000px;}
._30{width:274.781985px;}
._2a{width:281.615985px;}
._2e{width:322.607985px;}
._2d{width:325.901985px;}
._25{width:330.912000px;}
._38{width:357.360000px;}
._18{width:369.264000px;}
._24{width:372.911985px;}
._39{width:389.135985px;}
._35{width:390.191985px;}
._34{width:394.157985px;}
._2b{width:399.792000px;}
._12{width:401.958000px;}
._36{width:414.479985px;}
._2f{width:428.544000px;}
._26{width:473.856000px;}
._13{width:752.333400px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y38{bottom:67.597501px;}
.y37{bottom:84.097501px;}
.ye0{bottom:84.677700px;}
.y113{bottom:85.275000px;}
.y1c1{bottom:88.801200px;}
.yae{bottom:93.374850px;}
.y4{bottom:97.125005px;}
.ydf{bottom:104.177700px;}
.y1c0{bottom:105.301200px;}
.y6a{bottom:106.815600px;}
.yf2{bottom:107.249850px;}
.yad{bottom:112.874850px;}
.y18c{bottom:117.749400px;}
.y164{bottom:118.238700px;}
.y69{bottom:118.815600px;}
.y1bf{bottom:121.801200px;}
.yde{bottom:123.677700px;}
.yf1{bottom:126.749850px;}
.y68{bottom:130.815600px;}
.y163{bottom:131.738700px;}
.yac{bottom:132.374850px;}
.y18b{bottom:134.249400px;}
.y1be{bottom:138.301200px;}
.y22{bottom:139.264499px;}
.ydd{bottom:143.177700px;}
.y65{bottom:143.190600px;}
.y162{bottom:145.238700px;}
.yf0{bottom:146.249850px;}
.y18a{bottom:150.749400px;}
.yab{bottom:151.874850px;}
.y66{bottom:154.065600px;}
.y1bd{bottom:154.801200px;}
.y161{bottom:158.738700px;}
.ydc{bottom:162.677700px;}
.yef{bottom:165.749850px;}
.y1bc{bottom:171.301200px;}
.yaa{bottom:171.374850px;}
.y160{bottom:172.238700px;}
.y189{bottom:177.749400px;}
.ydb{bottom:182.177700px;}
.yee{bottom:185.249850px;}
.y15f{bottom:185.738700px;}
.y1bb{bottom:187.801200px;}
.ya9{bottom:190.874850px;}
.y178{bottom:192.677700px;}
.y19{bottom:196.933500px;}
.y15e{bottom:199.238700px;}
.y64{bottom:199.650600px;}
.yda{bottom:201.677700px;}
.y1ba{bottom:204.301200px;}
.yed{bottom:204.749850px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.ya8{bottom:210.374850px;}
.y15d{bottom:212.738700px;}
.y63{bottom:219.150600px;}
.y1b9{bottom:220.801200px;}
.yd9{bottom:221.177700px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.yec{bottom:224.249850px;}
.y15c{bottom:226.238700px;}
.y188{bottom:228.749400px;}
.ya7{bottom:229.874850px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y36{bottom:236.926501px;}
.y1b8{bottom:237.301200px;}
.y62{bottom:238.650600px;}
.y15b{bottom:239.738700px;}
.yd8{bottom:240.677700px;}
.y177{bottom:241.426200px;}
.yeb{bottom:243.749850px;}
.ya6{bottom:249.374850px;}
.y15a{bottom:253.238700px;}
.y1b7{bottom:253.801200px;}
.y187{bottom:255.749400px;}
.y61{bottom:258.150600px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.yd7{bottom:260.177700px;}
.y176{bottom:260.926200px;}
.yea{bottom:263.249850px;}
.y159{bottom:266.738700px;}
.ya5{bottom:268.874850px;}
.y1b6{bottom:270.301200px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y60{bottom:277.650600px;}
.yd6{bottom:279.677700px;}
.y158{bottom:280.238700px;}
.y175{bottom:280.426200px;}
.ye9{bottom:282.749850px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1b5{bottom:286.801200px;}
.ya4{bottom:288.374850px;}
.y157{bottom:293.738700px;}
.y5f{bottom:297.150600px;}
.yd5{bottom:299.177700px;}
.y174{bottom:299.926200px;}
.y35{bottom:301.276501px;}
.ye8{bottom:302.249850px;}
.y1b4{bottom:303.301200px;}
.y186{bottom:306.749400px;}
.y156{bottom:307.238700px;}
.ya3{bottom:307.874850px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y5e{bottom:316.650600px;}
.yd4{bottom:318.677700px;}
.y173{bottom:319.426200px;}
.y1b3{bottom:319.801200px;}
.y155{bottom:320.738700px;}
.ye7{bottom:321.749850px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y185{bottom:323.249400px;}
.ya2{bottom:327.374850px;}
.y154{bottom:334.238700px;}
.y5d{bottom:336.150600px;}
.y1b2{bottom:336.301200px;}
.yd3{bottom:338.177700px;}
.y172{bottom:338.926200px;}
.y184{bottom:339.749400px;}
.ye6{bottom:341.249850px;}
.ya1{bottom:346.874850px;}
.y153{bottom:347.738700px;}
.y10{bottom:348.133500px;}
.y1b1{bottom:352.801200px;}
.y5c{bottom:355.650600px;}
.y183{bottom:356.249550px;}
.yd2{bottom:357.677700px;}
.y171{bottom:358.426200px;}
.ye5{bottom:360.749850px;}
.y152{bottom:361.238700px;}
.y34{bottom:365.626501px;}
.ya0{bottom:366.374850px;}
.y1b0{bottom:369.301200px;}
.y182{bottom:372.749550px;}
.y151{bottom:374.738700px;}
.y5b{bottom:375.150600px;}
.yd1{bottom:377.177700px;}
.y170{bottom:377.926200px;}
.ye4{bottom:380.249850px;}
.y1af{bottom:385.801200px;}
.y9f{bottom:385.874850px;}
.yf{bottom:386.785499px;}
.y150{bottom:388.238700px;}
.y181{bottom:389.249550px;}
.y5a{bottom:394.650600px;}
.yd0{bottom:396.677700px;}
.y16f{bottom:397.426200px;}
.ye3{bottom:399.749850px;}
.y14f{bottom:401.738700px;}
.y1ae{bottom:402.301200px;}
.y9e{bottom:405.374850px;}
.y180{bottom:405.749550px;}
.ye{bottom:408.044999px;}
.y59{bottom:414.150600px;}
.y14e{bottom:415.238700px;}
.ycf{bottom:416.177700px;}
.y16e{bottom:416.926200px;}
.y1ad{bottom:418.801200px;}
.ye2{bottom:419.249850px;}
.y17f{bottom:422.249550px;}
.y9d{bottom:424.874850px;}
.y14d{bottom:428.738700px;}
.y33{bottom:432.907500px;}
.y58{bottom:433.650600px;}
.y1ac{bottom:435.301200px;}
.yce{bottom:435.677700px;}
.y16d{bottom:436.426200px;}
.ye1{bottom:438.749850px;}
.y14c{bottom:442.238700px;}
.y11b{bottom:442.245000px;}
.y17e{bottom:449.249550px;}
.y1ab{bottom:451.801200px;}
.y57{bottom:453.150600px;}
.y9c{bottom:454.874850px;}
.ycd{bottom:455.177700px;}
.y14b{bottom:455.738700px;}
.y11a{bottom:455.745000px;}
.y16c{bottom:455.926200px;}
.y1aa{bottom:468.301200px;}
.y14a{bottom:469.238700px;}
.y119{bottom:469.245000px;}
.y56{bottom:472.650600px;}
.ycc{bottom:474.677700px;}
.y16b{bottom:475.426200px;}
.y149{bottom:482.738700px;}
.y118{bottom:482.745000px;}
.yf4{bottom:482.836200px;}
.y1a9{bottom:484.801200px;}
.yd{bottom:484.864502px;}
.ycb{bottom:494.177700px;}
.y32{bottom:494.326501px;}
.y16a{bottom:494.926200px;}
.y148{bottom:496.238700px;}
.y117{bottom:496.245000px;}
.y1a8{bottom:501.301200px;}
.y17d{bottom:501.563400px;}
.y55{bottom:502.650600px;}
.yc{bottom:502.864502px;}
.y147{bottom:509.738700px;}
.y9b{bottom:511.426200px;}
.yca{bottom:513.677700px;}
.y116{bottom:514.245000px;}
.y169{bottom:514.426200px;}
.y1a7{bottom:517.801200px;}
.y17c{bottom:518.063400px;}
.yb{bottom:520.864502px;}
.y112{bottom:522.301200px;}
.y146{bottom:523.238700px;}
.y9a{bottom:530.926200px;}
.y115{bottom:532.995000px;}
.yc9{bottom:533.177700px;}
.y168{bottom:533.926200px;}
.y1a6{bottom:534.301200px;}
.y17b{bottom:534.563400px;}
.y145{bottom:536.738700px;}
.ya{bottom:538.864499px;}
.y111{bottom:541.801200px;}
.y144{bottom:550.238700px;}
.y99{bottom:550.426200px;}
.y1a5{bottom:550.801200px;}
.y17a{bottom:551.063400px;}
.y167{bottom:553.426200px;}
.y9{bottom:556.864499px;}
.y110{bottom:561.301200px;}
.y31{bottom:561.607500px;}
.yc8{bottom:563.177700px;}
.y143{bottom:563.738700px;}
.y1a4{bottom:567.301200px;}
.y98{bottom:569.926200px;}
.y54{bottom:571.650600px;}
.y166{bottom:572.926200px;}
.y142{bottom:577.238700px;}
.y179{bottom:578.063400px;}
.y10f{bottom:580.801200px;}
.y1a3{bottom:583.801200px;}
.y53{bottom:586.650600px;}
.y97{bottom:589.426200px;}
.y141{bottom:590.738700px;}
.y165{bottom:592.426200px;}
.y30{bottom:595.957501px;}
.y10e{bottom:600.301200px;}
.y52{bottom:601.650600px;}
.y140{bottom:604.238700px;}
.y96{bottom:608.926200px;}
.y2f{bottom:610.957501px;}
.yc7{bottom:611.926200px;}
.y51{bottom:616.650600px;}
.y1a2{bottom:616.801200px;}
.y7d{bottom:617.338050px;}
.y13f{bottom:617.738700px;}
.y10d{bottom:619.801200px;}
.y2e{bottom:625.957500px;}
.y95{bottom:628.426200px;}
.y7c{bottom:630.838050px;}
.y13e{bottom:631.238700px;}
.yc6{bottom:631.426200px;}
.y50{bottom:631.650600px;}
.y1a1{bottom:633.301200px;}
.y10c{bottom:639.301200px;}
.y13d{bottom:644.738700px;}
.y8{bottom:645.510000px;}
.y4f{bottom:646.650600px;}
.y94{bottom:647.926200px;}
.y7b{bottom:649.395300px;}
.y1a0{bottom:649.801200px;}
.yc5{bottom:650.926200px;}
.y13c{bottom:658.238700px;}
.y10b{bottom:658.801200px;}
.y4e{bottom:661.650600px;}
.y7a{bottom:662.895300px;}
.y19f{bottom:666.301200px;}
.y7{bottom:666.771000px;}
.y93{bottom:667.426200px;}
.yc4{bottom:670.426200px;}
.y13b{bottom:671.738700px;}
.y79{bottom:676.395300px;}
.y4d{bottom:676.650600px;}
.y10a{bottom:678.301200px;}
.y19e{bottom:682.801200px;}
.y13a{bottom:685.238700px;}
.y92{bottom:686.926200px;}
.y78{bottom:689.895300px;}
.yc3{bottom:689.926200px;}
.y4c{bottom:691.650600px;}
.y109{bottom:697.801200px;}
.y139{bottom:698.738700px;}
.y19d{bottom:699.301200px;}
.y77{bottom:703.395300px;}
.y91{bottom:706.426200px;}
.y4b{bottom:706.650600px;}
.y2d{bottom:707.317498px;}
.yc2{bottom:709.426200px;}
.y138{bottom:712.238700px;}
.y19c{bottom:715.801200px;}
.y108{bottom:717.301200px;}
.y4a{bottom:721.650600px;}
.y76{bottom:725.476200px;}
.y137{bottom:725.738700px;}
.y90{bottom:725.926200px;}
.y6{bottom:726.298500px;}
.yc1{bottom:728.926200px;}
.y49{bottom:736.650600px;}
.y107{bottom:736.801200px;}
.y2c{bottom:737.317498px;}
.y75{bottom:738.976200px;}
.y136{bottom:739.238700px;}
.y19b{bottom:742.801200px;}
.y8f{bottom:745.426200px;}
.yc0{bottom:748.426200px;}
.y48{bottom:751.650600px;}
.y74{bottom:752.476200px;}
.y3{bottom:752.599495px;}
.y135{bottom:752.738700px;}
.y2b{bottom:755.317498px;}
.y106{bottom:756.301200px;}
.y8e{bottom:764.926200px;}
.y73{bottom:765.976200px;}
.y134{bottom:766.238700px;}
.y47{bottom:766.650600px;}
.ybf{bottom:767.926200px;}
.y2a{bottom:773.317498px;}
.y114{bottom:775.426200px;}
.y105{bottom:775.801200px;}
.y72{bottom:779.476200px;}
.y133{bottom:779.738700px;}
.y46{bottom:781.650600px;}
.y8d{bottom:784.426200px;}
.ybe{bottom:787.426200px;}
.y29{bottom:791.317498px;}
.y71{bottom:792.976200px;}
.y132{bottom:793.238700px;}
.y19a{bottom:793.801200px;}
.y104{bottom:795.301200px;}
.y45{bottom:796.650600px;}
.y8c{bottom:803.926200px;}
.y131{bottom:806.738700px;}
.ybd{bottom:806.926200px;}
.y199{bottom:810.301200px;}
.y44{bottom:811.650600px;}
.y103{bottom:814.801200px;}
.y70{bottom:815.738700px;}
.y130{bottom:820.238700px;}
.y8b{bottom:823.426200px;}
.ybc{bottom:826.426200px;}
.y43{bottom:826.650600px;}
.y6f{bottom:829.238700px;}
.y12f{bottom:833.738700px;}
.y102{bottom:834.301200px;}
.y198{bottom:837.301200px;}
.y42{bottom:841.650600px;}
.y6e{bottom:842.738700px;}
.y8a{bottom:842.926200px;}
.y28{bottom:843.789002px;}
.ybb{bottom:845.926200px;}
.y12e{bottom:847.238700px;}
.yf3{bottom:852.736200px;}
.y101{bottom:853.801200px;}
.y6d{bottom:856.238700px;}
.y41{bottom:856.650600px;}
.y12d{bottom:860.738700px;}
.y89{bottom:862.426200px;}
.yba{bottom:865.426200px;}
.y6c{bottom:869.738700px;}
.y100{bottom:873.301200px;}
.y12c{bottom:874.238700px;}
.y2{bottom:879.369000px;}
.y88{bottom:881.926200px;}
.y6b{bottom:883.238700px;}
.yb9{bottom:884.926200px;}
.y12b{bottom:887.738700px;}
.y197{bottom:888.301200px;}
.yff{bottom:892.801200px;}
.y12a{bottom:901.238700px;}
.y87{bottom:901.426200px;}
.y40{bottom:903.525600px;}
.yb8{bottom:904.426200px;}
.y196{bottom:904.801200px;}
.y27{bottom:907.440000px;}
.yfe{bottom:912.301200px;}
.y129{bottom:914.738700px;}
.y86{bottom:920.926200px;}
.y195{bottom:921.301200px;}
.yb7{bottom:923.926200px;}
.y128{bottom:928.238700px;}
.y3f{bottom:930.525600px;}
.yfd{bottom:931.801200px;}
.y26{bottom:938.940000px;}
.y85{bottom:940.426200px;}
.y127{bottom:941.738700px;}
.yb6{bottom:943.426200px;}
.y194{bottom:946.801200px;}
.yfc{bottom:951.301200px;}
.y126{bottom:955.238700px;}
.y84{bottom:959.926200px;}
.yb5{bottom:962.926200px;}
.y193{bottom:963.301200px;}
.y1{bottom:966.726000px;}
.y125{bottom:968.738700px;}
.y3e{bottom:969.525600px;}
.y25{bottom:970.440000px;}
.yfb{bottom:970.801200px;}
.y83{bottom:979.426200px;}
.y192{bottom:979.801200px;}
.y124{bottom:982.238700px;}
.yb4{bottom:982.426200px;}
.y1c9{bottom:985.051200px;}
.yfa{bottom:990.301200px;}
.y3d{bottom:993.525600px;}
.y123{bottom:995.738700px;}
.y191{bottom:996.301200px;}
.y82{bottom:998.926200px;}
.y1c8{bottom:1001.551200px;}
.yb3{bottom:1001.926200px;}
.y122{bottom:1009.238700px;}
.yf9{bottom:1009.801200px;}
.y1c7{bottom:1018.051200px;}
.yb2{bottom:1021.426200px;}
.y190{bottom:1021.801200px;}
.y121{bottom:1022.738700px;}
.y3a{bottom:1028.851200px;}
.y81{bottom:1028.926200px;}
.yf8{bottom:1029.301200px;}
.y1c6{bottom:1034.551200px;}
.y24{bottom:1035.546001px;}
.y120{bottom:1036.238700px;}
.y18f{bottom:1038.301200px;}
.yb1{bottom:1040.926200px;}
.y39{bottom:1046.851200px;}
.yf7{bottom:1048.801200px;}
.y11f{bottom:1049.738700px;}
.y1c5{bottom:1051.051200px;}
.y18e{bottom:1054.801200px;}
.yb0{bottom:1060.426200px;}
.y11e{bottom:1063.238700px;}
.y1c4{bottom:1067.551200px;}
.yf6{bottom:1068.301200px;}
.y18d{bottom:1071.301200px;}
.y80{bottom:1079.926200px;}
.y11d{bottom:1081.238700px;}
.y67{bottom:1083.782250px;}
.y1c3{bottom:1084.051200px;}
.y3c{bottom:1097.407950px;}
.yf5{bottom:1098.301200px;}
.y7f{bottom:1099.426200px;}
.y11c{bottom:1099.988700px;}
.y1c2{bottom:1100.551200px;}
.y3b{bottom:1110.907950px;}
.yaf{bottom:1141.238100px;}
.y7e{bottom:1141.313100px;}
.y23{bottom:1165.122003px;}
.h1a{height:30.030000px;}
.h17{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1d{height:33.750000px;}
.h1f{height:34.320000px;}
.h1b{height:34.608000px;}
.h1c{height:36.000000px;}
.hb{height:36.726562px;}
.h16{height:38.610000px;}
.h18{height:40.500000px;}
.h1e{height:40.755000px;}
.hf{height:41.317383px;}
.h12{height:45.000000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h15{height:47.250000px;}
.h19{height:47.586000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h14{height:60.564000px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x12{left:123.000000px;}
.xb{left:126.112500px;}
.x6{left:145.650000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x9{left:228.743990px;}
.x8{left:293.590494px;}
.x11{left:315.000000px;}
.xe{left:330.000000px;}
.x3{left:454.959000px;}
.xf{left:487.500000px;}
.x10{left:502.500000px;}
.x13{left:565.175550px;}
.xd{left:570.946500px;}
.xc{left:650.025750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls6{letter-spacing:6.757867pt;}
.lsd{letter-spacing:8.139733pt;}
.lsc{letter-spacing:8.140267pt;}
.lsf{letter-spacing:9.846400pt;}
.lse{letter-spacing:11.413333pt;}
.ls7{letter-spacing:60.023467pt;}
.lsb{letter-spacing:1124.468267pt;}
.ws1{word-spacing:-12.432000pt;}
.ws39{word-spacing:-12.106667pt;}
.wsc0{word-spacing:-11.850667pt;}
.ws38{word-spacing:-11.573333pt;}
.ws4{word-spacing:-11.306667pt;}
.wsc1{word-spacing:-10.176000pt;}
.wsd6{word-spacing:-8.736000pt;}
.ws8{word-spacing:-8.720000pt;}
.ws5{word-spacing:-8.618667pt;}
.wsa6{word-spacing:-8.362667pt;}
.ws2{word-spacing:-8.320000pt;}
.ws6{word-spacing:-7.840000pt;}
.ws7{word-spacing:-7.317333pt;}
.ws3{word-spacing:-2.370133pt;}
.ws5c{word-spacing:-0.800000pt;}
.ws59{word-spacing:-0.400000pt;}
.ws52{word-spacing:-0.266667pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:3.984000pt;}
.ws85{word-spacing:4.106667pt;}
.wsf9{word-spacing:4.128000pt;}
.wsf2{word-spacing:4.224000pt;}
.ws103{word-spacing:4.416000pt;}
.wsef{word-spacing:4.464000pt;}
.wsa1{word-spacing:4.586667pt;}
.ws18{word-spacing:4.608000pt;}
.ws26{word-spacing:4.640000pt;}
.wsac{word-spacing:5.034667pt;}
.ws102{word-spacing:5.136000pt;}
.wsd4{word-spacing:5.184000pt;}
.wsf3{word-spacing:5.232000pt;}
.wsbc{word-spacing:5.280000pt;}
.ws7a{word-spacing:5.333333pt;}
.wse3{word-spacing:5.424000pt;}
.ws2b{word-spacing:5.706667pt;}
.wsd0{word-spacing:5.760000pt;}
.wsb7{word-spacing:5.813333pt;}
.ws31{word-spacing:5.861333pt;}
.wsa{word-spacing:5.880000pt;}
.ws35{word-spacing:5.920000pt;}
.ws90{word-spacing:6.026667pt;}
.wsad{word-spacing:6.080000pt;}
.ws46{word-spacing:6.133333pt;}
.wsd1{word-spacing:6.192000pt;}
.wsb{word-spacing:6.280000pt;}
.wse2{word-spacing:6.288000pt;}
.ws11{word-spacing:6.336000pt;}
.ws9c{word-spacing:6.346667pt;}
.wsbf{word-spacing:6.400000pt;}
.wsd5{word-spacing:6.432000pt;}
.ws93{word-spacing:6.453333pt;}
.wsd2{word-spacing:6.480000pt;}
.ws4e{word-spacing:6.506667pt;}
.ws68{word-spacing:6.560000pt;}
.wsd7{word-spacing:6.576000pt;}
.ws42{word-spacing:6.613333pt;}
.ws2e{word-spacing:6.666667pt;}
.ws32{word-spacing:6.698667pt;}
.ws45{word-spacing:6.720000pt;}
.ws7b{word-spacing:6.773333pt;}
.wsca{word-spacing:6.826667pt;}
.ws37{word-spacing:6.912000pt;}
.ws75{word-spacing:6.933333pt;}
.ws5f{word-spacing:6.986667pt;}
.wse1{word-spacing:7.008000pt;}
.wsdb{word-spacing:7.056000pt;}
.wsc9{word-spacing:7.146667pt;}
.wsfd{word-spacing:7.152000pt;}
.wse4{word-spacing:7.248000pt;}
.ws36{word-spacing:7.253333pt;}
.ws8a{word-spacing:7.306667pt;}
.wsba{word-spacing:7.360000pt;}
.ws49{word-spacing:7.466667pt;}
.wse{word-spacing:7.504000pt;}
.ws8d{word-spacing:7.520000pt;}
.wsf{word-spacing:7.536000pt;}
.ws34{word-spacing:7.541333pt;}
.ws62{word-spacing:7.573333pt;}
.wsd8{word-spacing:7.584000pt;}
.ws6d{word-spacing:7.626667pt;}
.ws94{word-spacing:7.733333pt;}
.ws86{word-spacing:7.802667pt;}
.ws53{word-spacing:7.946667pt;}
.ws87{word-spacing:7.954667pt;}
.ws41{word-spacing:8.000000pt;}
.wse5{word-spacing:8.016000pt;}
.ws66{word-spacing:8.053333pt;}
.wsa3{word-spacing:8.106667pt;}
.wsfb{word-spacing:8.112000pt;}
.ws22{word-spacing:8.160000pt;}
.wsdc{word-spacing:8.208000pt;}
.wscb{word-spacing:8.213333pt;}
.ws1e{word-spacing:8.304000pt;}
.wsfc{word-spacing:8.352000pt;}
.ws95{word-spacing:8.373333pt;}
.ws48{word-spacing:8.426667pt;}
.wsf6{word-spacing:8.448000pt;}
.ws77{word-spacing:8.480000pt;}
.ws9{word-spacing:8.533333pt;}
.ws7e{word-spacing:8.586667pt;}
.ws88{word-spacing:8.640000pt;}
.wseb{word-spacing:8.688000pt;}
.ws7d{word-spacing:8.746667pt;}
.ws101{word-spacing:8.784000pt;}
.ws25{word-spacing:8.800000pt;}
.ws14{word-spacing:8.832000pt;}
.wsb5{word-spacing:8.853333pt;}
.ws91{word-spacing:8.906667pt;}
.ws92{word-spacing:8.960000pt;}
.ws96{word-spacing:9.013333pt;}
.ws2d{word-spacing:9.066667pt;}
.ws4b{word-spacing:9.120000pt;}
.ws6f{word-spacing:9.173333pt;}
.wsda{word-spacing:9.216000pt;}
.ws89{word-spacing:9.280000pt;}
.ws51{word-spacing:9.386667pt;}
.ws23{word-spacing:9.440000pt;}
.wsde{word-spacing:9.456000pt;}
.ws4d{word-spacing:9.504000pt;}
.wsd{word-spacing:9.520000pt;}
.ws44{word-spacing:9.546667pt;}
.ws6b{word-spacing:9.600000pt;}
.ws3c{word-spacing:9.653333pt;}
.wsfe{word-spacing:9.696000pt;}
.ws4f{word-spacing:9.706667pt;}
.wscd{word-spacing:9.744000pt;}
.wsea{word-spacing:9.792000pt;}
.ws6a{word-spacing:9.813333pt;}
.wsf5{word-spacing:9.840000pt;}
.wsb1{word-spacing:9.866667pt;}
.ws5d{word-spacing:9.920000pt;}
.ws24{word-spacing:9.973333pt;}
.ws9d{word-spacing:10.026667pt;}
.ws33{word-spacing:10.042667pt;}
.ws4c{word-spacing:10.080000pt;}
.wsec{word-spacing:10.128000pt;}
.ws43{word-spacing:10.133333pt;}
.ws1c{word-spacing:10.176000pt;}
.ws3f{word-spacing:10.186667pt;}
.wse0{word-spacing:10.224000pt;}
.wsae{word-spacing:10.240000pt;}
.ws7c{word-spacing:10.293333pt;}
.ws27{word-spacing:10.346667pt;}
.ws84{word-spacing:10.400000pt;}
.ws72{word-spacing:10.453333pt;}
.wsc8{word-spacing:10.506667pt;}
.ws74{word-spacing:10.560000pt;}
.wsee{word-spacing:10.608000pt;}
.ws81{word-spacing:10.613333pt;}
.ws8e{word-spacing:10.773333pt;}
.ws3e{word-spacing:10.826667pt;}
.wsa4{word-spacing:10.880000pt;}
.ws71{word-spacing:10.933333pt;}
.ws12{word-spacing:10.944000pt;}
.ws7f{word-spacing:11.040000pt;}
.ws50{word-spacing:11.200000pt;}
.ws2c{word-spacing:11.253333pt;}
.ws28{word-spacing:11.306667pt;}
.wscc{word-spacing:11.360000pt;}
.wsdf{word-spacing:11.424000pt;}
.ws54{word-spacing:11.466667pt;}
.wsb6{word-spacing:11.520000pt;}
.wsf0{word-spacing:11.568000pt;}
.wsf1{word-spacing:11.616000pt;}
.ws99{word-spacing:11.626667pt;}
.ws1b{word-spacing:11.712000pt;}
.ws3a{word-spacing:11.733333pt;}
.ws70{word-spacing:11.786667pt;}
.ws80{word-spacing:11.840000pt;}
.ws10{word-spacing:11.856000pt;}
.ws2a{word-spacing:11.893333pt;}
.ws17{word-spacing:11.904000pt;}
.ws3d{word-spacing:11.946667pt;}
.ws20{word-spacing:12.000000pt;}
.wsc5{word-spacing:12.053333pt;}
.ws9e{word-spacing:12.106667pt;}
.wsa2{word-spacing:12.160000pt;}
.ws3b{word-spacing:12.213333pt;}
.ws104{word-spacing:12.240000pt;}
.ws5a{word-spacing:12.266667pt;}
.ws57{word-spacing:12.320000pt;}
.wsed{word-spacing:12.336000pt;}
.wsf4{word-spacing:12.384000pt;}
.wsc{word-spacing:12.394667pt;}
.ws6e{word-spacing:12.480000pt;}
.wse7{word-spacing:12.528000pt;}
.ws8c{word-spacing:12.693333pt;}
.ws8f{word-spacing:12.746667pt;}
.wsd9{word-spacing:12.864000pt;}
.ws47{word-spacing:12.906667pt;}
.wsb8{word-spacing:12.960000pt;}
.ws29{word-spacing:13.013333pt;}
.ws40{word-spacing:13.066667pt;}
.wsbd{word-spacing:13.120000pt;}
.wsaf{word-spacing:13.226667pt;}
.ws4a{word-spacing:13.280000pt;}
.ws55{word-spacing:13.386667pt;}
.ws63{word-spacing:13.440000pt;}
.wscf{word-spacing:13.536000pt;}
.ws30{word-spacing:13.653333pt;}
.ws100{word-spacing:13.680000pt;}
.ws9b{word-spacing:13.706667pt;}
.ws2f{word-spacing:13.760000pt;}
.ws8b{word-spacing:13.813333pt;}
.wsb2{word-spacing:13.920000pt;}
.wsc7{word-spacing:14.186667pt;}
.ws76{word-spacing:14.240000pt;}
.wsd3{word-spacing:14.256000pt;}
.ws64{word-spacing:14.293333pt;}
.ws21{word-spacing:14.352000pt;}
.ws9f{word-spacing:14.453333pt;}
.ws61{word-spacing:14.666667pt;}
.ws5e{word-spacing:14.720000pt;}
.wsb9{word-spacing:14.880000pt;}
.ws6c{word-spacing:14.933333pt;}
.wsc3{word-spacing:14.986667pt;}
.wsc6{word-spacing:15.040000pt;}
.wsfa{word-spacing:15.120000pt;}
.wsc2{word-spacing:15.146667pt;}
.wsdd{word-spacing:15.216000pt;}
.ws69{word-spacing:15.253333pt;}
.ws65{word-spacing:15.360000pt;}
.ws82{word-spacing:15.413333pt;}
.ws1f{word-spacing:15.456000pt;}
.ws1d{word-spacing:15.600000pt;}
.ws60{word-spacing:15.733333pt;}
.wsbb{word-spacing:15.786667pt;}
.wsff{word-spacing:15.936000pt;}
.wsbe{word-spacing:15.946667pt;}
.wsb3{word-spacing:16.000000pt;}
.ws83{word-spacing:16.053333pt;}
.wsf7{word-spacing:16.128000pt;}
.ws78{word-spacing:16.320000pt;}
.wse6{word-spacing:16.704000pt;}
.ws67{word-spacing:16.746667pt;}
.ws13{word-spacing:16.752000pt;}
.wsa0{word-spacing:16.906667pt;}
.ws56{word-spacing:16.960000pt;}
.ws16{word-spacing:17.280000pt;}
.wsb0{word-spacing:17.333333pt;}
.wsc4{word-spacing:17.760000pt;}
.wsb4{word-spacing:17.973333pt;}
.wsf8{word-spacing:18.816000pt;}
.ws79{word-spacing:19.360000pt;}
.ws73{word-spacing:20.373333pt;}
.ws19{word-spacing:21.504000pt;}
.wse9{word-spacing:22.944000pt;}
.wsce{word-spacing:24.144000pt;}
.ws9a{word-spacing:26.346667pt;}
.ws15{word-spacing:26.592000pt;}
.wse8{word-spacing:26.736000pt;}
.ws58{word-spacing:31.840000pt;}
.ws5b{word-spacing:33.920000pt;}
.wsaa{word-spacing:242.986667pt;}
.wsa9{word-spacing:247.978667pt;}
.wsa5{word-spacing:270.080533pt;}
.wsa8{word-spacing:272.085333pt;}
.wsa7{word-spacing:398.293333pt;}
.wsab{word-spacing:415.278933pt;}
.ws97{word-spacing:1051.380267pt;}
.ws98{word-spacing:1116.105600pt;}
._10{margin-left:-14.293346pt;}
._11{margin-left:-13.221359pt;}
._3c{margin-left:-7.513106pt;}
._b{margin-left:-5.600000pt;}
._3a{margin-left:-4.602667pt;}
._1{margin-left:-3.680000pt;}
._8{margin-left:-2.618146pt;}
._0{margin-left:-1.706654pt;}
._4{width:0.954667pt;}
._5{width:1.978667pt;}
._2{width:5.493333pt;}
._3{width:6.933320pt;}
._d{width:8.773333pt;}
._c{width:9.711948pt;}
._9{width:11.365333pt;}
._3d{width:13.071961pt;}
._e{width:14.095974pt;}
._3b{width:17.298107pt;}
._29{width:26.410654pt;}
._1a{width:44.570654pt;}
._23{width:48.255987pt;}
._6{width:53.117320pt;}
._7{width:55.561054pt;}
._1d{width:57.856000pt;}
._1c{width:64.725333pt;}
._1f{width:80.469320pt;}
._14{width:84.607987pt;}
._32{width:89.215987pt;}
._21{width:97.450667pt;}
._20{width:99.285320pt;}
._16{width:113.536000pt;}
._1e{width:114.896000pt;}
._f{width:117.065041pt;}
._a{width:118.826133pt;}
._37{width:145.450667pt;}
._15{width:150.170667pt;}
._22{width:157.226654pt;}
._27{width:160.085333pt;}
._28{width:169.984000pt;}
._33{width:181.248000pt;}
._19{width:184.704000pt;}
._1b{width:186.879987pt;}
._2c{width:189.696000pt;}
._17{width:196.821333pt;}
._31{width:229.546667pt;}
._30{width:244.250654pt;}
._2a{width:250.325320pt;}
._2e{width:286.762654pt;}
._2d{width:289.690654pt;}
._25{width:294.144000pt;}
._38{width:317.653333pt;}
._18{width:328.234667pt;}
._24{width:331.477320pt;}
._39{width:345.898654pt;}
._35{width:346.837320pt;}
._34{width:350.362654pt;}
._2b{width:355.370667pt;}
._12{width:357.296000pt;}
._36{width:368.426654pt;}
._2f{width:380.928000pt;}
._26{width:421.205333pt;}
._13{width:668.740800pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y38{bottom:60.086668pt;}
.y37{bottom:74.753335pt;}
.ye0{bottom:75.269067pt;}
.y113{bottom:75.800000pt;}
.y1c1{bottom:78.934400pt;}
.yae{bottom:82.999867pt;}
.y4{bottom:86.333337pt;}
.ydf{bottom:92.602400pt;}
.y1c0{bottom:93.601067pt;}
.y6a{bottom:94.947200pt;}
.yf2{bottom:95.333200pt;}
.yad{bottom:100.333200pt;}
.y18c{bottom:104.666133pt;}
.y164{bottom:105.101067pt;}
.y69{bottom:105.613867pt;}
.y1bf{bottom:108.267733pt;}
.yde{bottom:109.935733pt;}
.yf1{bottom:112.666533pt;}
.y68{bottom:116.280533pt;}
.y163{bottom:117.101067pt;}
.yac{bottom:117.666533pt;}
.y18b{bottom:119.332800pt;}
.y1be{bottom:122.934400pt;}
.y22{bottom:123.790666pt;}
.ydd{bottom:127.269067pt;}
.y65{bottom:127.280533pt;}
.y162{bottom:129.101067pt;}
.yf0{bottom:129.999867pt;}
.y18a{bottom:133.999467pt;}
.yab{bottom:134.999867pt;}
.y66{bottom:136.947200pt;}
.y1bd{bottom:137.601067pt;}
.y161{bottom:141.101067pt;}
.ydc{bottom:144.602400pt;}
.yef{bottom:147.333200pt;}
.y1bc{bottom:152.267733pt;}
.yaa{bottom:152.333200pt;}
.y160{bottom:153.101067pt;}
.y189{bottom:157.999467pt;}
.ydb{bottom:161.935733pt;}
.yee{bottom:164.666533pt;}
.y15f{bottom:165.101067pt;}
.y1bb{bottom:166.934400pt;}
.ya9{bottom:169.666533pt;}
.y178{bottom:171.269067pt;}
.y19{bottom:175.052000pt;}
.y15e{bottom:177.101067pt;}
.y64{bottom:177.467200pt;}
.yda{bottom:179.269067pt;}
.y1ba{bottom:181.601067pt;}
.yed{bottom:181.999867pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.ya8{bottom:186.999867pt;}
.y15d{bottom:189.101067pt;}
.y63{bottom:194.800533pt;}
.y1b9{bottom:196.267733pt;}
.yd9{bottom:196.602400pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.yec{bottom:199.333200pt;}
.y15c{bottom:201.101067pt;}
.y188{bottom:203.332800pt;}
.ya7{bottom:204.333200pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y36{bottom:210.601334pt;}
.y1b8{bottom:210.934400pt;}
.y62{bottom:212.133867pt;}
.y15b{bottom:213.101067pt;}
.yd8{bottom:213.935733pt;}
.y177{bottom:214.601067pt;}
.yeb{bottom:216.666533pt;}
.ya6{bottom:221.666533pt;}
.y15a{bottom:225.101067pt;}
.y1b7{bottom:225.601067pt;}
.y187{bottom:227.332800pt;}
.y61{bottom:229.467200pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.yd7{bottom:231.269067pt;}
.y176{bottom:231.934400pt;}
.yea{bottom:233.999867pt;}
.y159{bottom:237.101067pt;}
.ya5{bottom:238.999867pt;}
.y1b6{bottom:240.267733pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y60{bottom:246.800533pt;}
.yd6{bottom:248.602400pt;}
.y158{bottom:249.101067pt;}
.y175{bottom:249.267733pt;}
.ye9{bottom:251.333200pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1b5{bottom:254.934400pt;}
.ya4{bottom:256.333200pt;}
.y157{bottom:261.101067pt;}
.y5f{bottom:264.133867pt;}
.yd5{bottom:265.935733pt;}
.y174{bottom:266.601067pt;}
.y35{bottom:267.801334pt;}
.ye8{bottom:268.666533pt;}
.y1b4{bottom:269.601067pt;}
.y186{bottom:272.666133pt;}
.y156{bottom:273.101067pt;}
.ya3{bottom:273.666533pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y5e{bottom:281.467200pt;}
.yd4{bottom:283.269067pt;}
.y173{bottom:283.934400pt;}
.y1b3{bottom:284.267733pt;}
.y155{bottom:285.101067pt;}
.ye7{bottom:285.999867pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y185{bottom:287.332800pt;}
.ya2{bottom:290.999867pt;}
.y154{bottom:297.101067pt;}
.y5d{bottom:298.800533pt;}
.y1b2{bottom:298.934400pt;}
.yd3{bottom:300.602400pt;}
.y172{bottom:301.267733pt;}
.y184{bottom:301.999467pt;}
.ye6{bottom:303.333200pt;}
.ya1{bottom:308.333200pt;}
.y153{bottom:309.101067pt;}
.y10{bottom:309.452000pt;}
.y1b1{bottom:313.601067pt;}
.y5c{bottom:316.133867pt;}
.y183{bottom:316.666267pt;}
.yd2{bottom:317.935733pt;}
.y171{bottom:318.601067pt;}
.ye5{bottom:320.666533pt;}
.y152{bottom:321.101067pt;}
.y34{bottom:325.001334pt;}
.ya0{bottom:325.666533pt;}
.y1b0{bottom:328.267733pt;}
.y182{bottom:331.332933pt;}
.y151{bottom:333.101067pt;}
.y5b{bottom:333.467200pt;}
.yd1{bottom:335.269067pt;}
.y170{bottom:335.934400pt;}
.ye4{bottom:337.999867pt;}
.y1af{bottom:342.934400pt;}
.y9f{bottom:342.999867pt;}
.yf{bottom:343.809333pt;}
.y150{bottom:345.101067pt;}
.y181{bottom:345.999600pt;}
.y5a{bottom:350.800533pt;}
.yd0{bottom:352.602400pt;}
.y16f{bottom:353.267733pt;}
.ye3{bottom:355.333200pt;}
.y14f{bottom:357.101067pt;}
.y1ae{bottom:357.601067pt;}
.y9e{bottom:360.333200pt;}
.y180{bottom:360.666267pt;}
.ye{bottom:362.706666pt;}
.y59{bottom:368.133867pt;}
.y14e{bottom:369.101067pt;}
.ycf{bottom:369.935733pt;}
.y16e{bottom:370.601067pt;}
.y1ad{bottom:372.267733pt;}
.ye2{bottom:372.666533pt;}
.y17f{bottom:375.332933pt;}
.y9d{bottom:377.666533pt;}
.y14d{bottom:381.101067pt;}
.y33{bottom:384.806667pt;}
.y58{bottom:385.467200pt;}
.y1ac{bottom:386.934400pt;}
.yce{bottom:387.269067pt;}
.y16d{bottom:387.934400pt;}
.ye1{bottom:389.999867pt;}
.y14c{bottom:393.101067pt;}
.y11b{bottom:393.106667pt;}
.y17e{bottom:399.332933pt;}
.y1ab{bottom:401.601067pt;}
.y57{bottom:402.800533pt;}
.y9c{bottom:404.333200pt;}
.ycd{bottom:404.602400pt;}
.y14b{bottom:405.101067pt;}
.y11a{bottom:405.106667pt;}
.y16c{bottom:405.267733pt;}
.y1aa{bottom:416.267733pt;}
.y14a{bottom:417.101067pt;}
.y119{bottom:417.106667pt;}
.y56{bottom:420.133867pt;}
.ycc{bottom:421.935733pt;}
.y16b{bottom:422.601067pt;}
.y149{bottom:429.101067pt;}
.y118{bottom:429.106667pt;}
.yf4{bottom:429.187733pt;}
.y1a9{bottom:430.934400pt;}
.yd{bottom:430.990669pt;}
.ycb{bottom:439.269067pt;}
.y32{bottom:439.401334pt;}
.y16a{bottom:439.934400pt;}
.y148{bottom:441.101067pt;}
.y117{bottom:441.106667pt;}
.y1a8{bottom:445.601067pt;}
.y17d{bottom:445.834133pt;}
.y55{bottom:446.800533pt;}
.yc{bottom:446.990669pt;}
.y147{bottom:453.101067pt;}
.y9b{bottom:454.601067pt;}
.yca{bottom:456.602400pt;}
.y116{bottom:457.106667pt;}
.y169{bottom:457.267733pt;}
.y1a7{bottom:460.267733pt;}
.y17c{bottom:460.500800pt;}
.yb{bottom:462.990669pt;}
.y112{bottom:464.267733pt;}
.y146{bottom:465.101067pt;}
.y9a{bottom:471.934400pt;}
.y115{bottom:473.773333pt;}
.yc9{bottom:473.935733pt;}
.y168{bottom:474.601067pt;}
.y1a6{bottom:474.934400pt;}
.y17b{bottom:475.167467pt;}
.y145{bottom:477.101067pt;}
.ya{bottom:478.990666pt;}
.y111{bottom:481.601067pt;}
.y144{bottom:489.101067pt;}
.y99{bottom:489.267733pt;}
.y1a5{bottom:489.601067pt;}
.y17a{bottom:489.834133pt;}
.y167{bottom:491.934400pt;}
.y9{bottom:494.990666pt;}
.y110{bottom:498.934400pt;}
.y31{bottom:499.206667pt;}
.yc8{bottom:500.602400pt;}
.y143{bottom:501.101067pt;}
.y1a4{bottom:504.267733pt;}
.y98{bottom:506.601067pt;}
.y54{bottom:508.133867pt;}
.y166{bottom:509.267733pt;}
.y142{bottom:513.101067pt;}
.y179{bottom:513.834133pt;}
.y10f{bottom:516.267733pt;}
.y1a3{bottom:518.934400pt;}
.y53{bottom:521.467200pt;}
.y97{bottom:523.934400pt;}
.y141{bottom:525.101067pt;}
.y165{bottom:526.601067pt;}
.y30{bottom:529.740001pt;}
.y10e{bottom:533.601067pt;}
.y52{bottom:534.800533pt;}
.y140{bottom:537.101067pt;}
.y96{bottom:541.267733pt;}
.y2f{bottom:543.073335pt;}
.yc7{bottom:543.934400pt;}
.y51{bottom:548.133867pt;}
.y1a2{bottom:548.267733pt;}
.y7d{bottom:548.744933pt;}
.y13f{bottom:549.101067pt;}
.y10d{bottom:550.934400pt;}
.y2e{bottom:556.406667pt;}
.y95{bottom:558.601067pt;}
.y7c{bottom:560.744933pt;}
.y13e{bottom:561.101067pt;}
.yc6{bottom:561.267733pt;}
.y50{bottom:561.467200pt;}
.y1a1{bottom:562.934400pt;}
.y10c{bottom:568.267733pt;}
.y13d{bottom:573.101067pt;}
.y8{bottom:573.786667pt;}
.y4f{bottom:574.800533pt;}
.y94{bottom:575.934400pt;}
.y7b{bottom:577.240267pt;}
.y1a0{bottom:577.601067pt;}
.yc5{bottom:578.601067pt;}
.y13c{bottom:585.101067pt;}
.y10b{bottom:585.601067pt;}
.y4e{bottom:588.133867pt;}
.y7a{bottom:589.240267pt;}
.y19f{bottom:592.267733pt;}
.y7{bottom:592.685334pt;}
.y93{bottom:593.267733pt;}
.yc4{bottom:595.934400pt;}
.y13b{bottom:597.101067pt;}
.y79{bottom:601.240267pt;}
.y4d{bottom:601.467200pt;}
.y10a{bottom:602.934400pt;}
.y19e{bottom:606.934400pt;}
.y13a{bottom:609.101067pt;}
.y92{bottom:610.601067pt;}
.y78{bottom:613.240267pt;}
.yc3{bottom:613.267733pt;}
.y4c{bottom:614.800533pt;}
.y109{bottom:620.267733pt;}
.y139{bottom:621.101067pt;}
.y19d{bottom:621.601067pt;}
.y77{bottom:625.240267pt;}
.y91{bottom:627.934400pt;}
.y4b{bottom:628.133867pt;}
.y2d{bottom:628.726665pt;}
.yc2{bottom:630.601067pt;}
.y138{bottom:633.101067pt;}
.y19c{bottom:636.267733pt;}
.y108{bottom:637.601067pt;}
.y4a{bottom:641.467200pt;}
.y76{bottom:644.867733pt;}
.y137{bottom:645.101067pt;}
.y90{bottom:645.267733pt;}
.y6{bottom:645.598667pt;}
.yc1{bottom:647.934400pt;}
.y49{bottom:654.800533pt;}
.y107{bottom:654.934400pt;}
.y2c{bottom:655.393332pt;}
.y75{bottom:656.867733pt;}
.y136{bottom:657.101067pt;}
.y19b{bottom:660.267733pt;}
.y8f{bottom:662.601067pt;}
.yc0{bottom:665.267733pt;}
.y48{bottom:668.133867pt;}
.y74{bottom:668.867733pt;}
.y3{bottom:668.977329pt;}
.y135{bottom:669.101067pt;}
.y2b{bottom:671.393332pt;}
.y106{bottom:672.267733pt;}
.y8e{bottom:679.934400pt;}
.y73{bottom:680.867733pt;}
.y134{bottom:681.101067pt;}
.y47{bottom:681.467200pt;}
.ybf{bottom:682.601067pt;}
.y2a{bottom:687.393332pt;}
.y114{bottom:689.267733pt;}
.y105{bottom:689.601067pt;}
.y72{bottom:692.867733pt;}
.y133{bottom:693.101067pt;}
.y46{bottom:694.800533pt;}
.y8d{bottom:697.267733pt;}
.ybe{bottom:699.934400pt;}
.y29{bottom:703.393332pt;}
.y71{bottom:704.867733pt;}
.y132{bottom:705.101067pt;}
.y19a{bottom:705.601067pt;}
.y104{bottom:706.934400pt;}
.y45{bottom:708.133867pt;}
.y8c{bottom:714.601067pt;}
.y131{bottom:717.101067pt;}
.ybd{bottom:717.267733pt;}
.y199{bottom:720.267733pt;}
.y44{bottom:721.467200pt;}
.y103{bottom:724.267733pt;}
.y70{bottom:725.101067pt;}
.y130{bottom:729.101067pt;}
.y8b{bottom:731.934400pt;}
.ybc{bottom:734.601067pt;}
.y43{bottom:734.800533pt;}
.y6f{bottom:737.101067pt;}
.y12f{bottom:741.101067pt;}
.y102{bottom:741.601067pt;}
.y198{bottom:744.267733pt;}
.y42{bottom:748.133867pt;}
.y6e{bottom:749.101067pt;}
.y8a{bottom:749.267733pt;}
.y28{bottom:750.034669pt;}
.ybb{bottom:751.934400pt;}
.y12e{bottom:753.101067pt;}
.yf3{bottom:757.987733pt;}
.y101{bottom:758.934400pt;}
.y6d{bottom:761.101067pt;}
.y41{bottom:761.467200pt;}
.y12d{bottom:765.101067pt;}
.y89{bottom:766.601067pt;}
.yba{bottom:769.267733pt;}
.y6c{bottom:773.101067pt;}
.y100{bottom:776.267733pt;}
.y12c{bottom:777.101067pt;}
.y2{bottom:781.661334pt;}
.y88{bottom:783.934400pt;}
.y6b{bottom:785.101067pt;}
.yb9{bottom:786.601067pt;}
.y12b{bottom:789.101067pt;}
.y197{bottom:789.601067pt;}
.yff{bottom:793.601067pt;}
.y12a{bottom:801.101067pt;}
.y87{bottom:801.267733pt;}
.y40{bottom:803.133867pt;}
.yb8{bottom:803.934400pt;}
.y196{bottom:804.267733pt;}
.y27{bottom:806.613333pt;}
.yfe{bottom:810.934400pt;}
.y129{bottom:813.101067pt;}
.y86{bottom:818.601067pt;}
.y195{bottom:818.934400pt;}
.yb7{bottom:821.267733pt;}
.y128{bottom:825.101067pt;}
.y3f{bottom:827.133867pt;}
.yfd{bottom:828.267733pt;}
.y26{bottom:834.613333pt;}
.y85{bottom:835.934400pt;}
.y127{bottom:837.101067pt;}
.yb6{bottom:838.601067pt;}
.y194{bottom:841.601067pt;}
.yfc{bottom:845.601067pt;}
.y126{bottom:849.101067pt;}
.y84{bottom:853.267733pt;}
.yb5{bottom:855.934400pt;}
.y193{bottom:856.267733pt;}
.y1{bottom:859.312000pt;}
.y125{bottom:861.101067pt;}
.y3e{bottom:861.800533pt;}
.y25{bottom:862.613333pt;}
.yfb{bottom:862.934400pt;}
.y83{bottom:870.601067pt;}
.y192{bottom:870.934400pt;}
.y124{bottom:873.101067pt;}
.yb4{bottom:873.267733pt;}
.y1c9{bottom:875.601067pt;}
.yfa{bottom:880.267733pt;}
.y3d{bottom:883.133867pt;}
.y123{bottom:885.101067pt;}
.y191{bottom:885.601067pt;}
.y82{bottom:887.934400pt;}
.y1c8{bottom:890.267733pt;}
.yb3{bottom:890.601067pt;}
.y122{bottom:897.101067pt;}
.yf9{bottom:897.601067pt;}
.y1c7{bottom:904.934400pt;}
.yb2{bottom:907.934400pt;}
.y190{bottom:908.267733pt;}
.y121{bottom:909.101067pt;}
.y3a{bottom:914.534400pt;}
.y81{bottom:914.601067pt;}
.yf8{bottom:914.934400pt;}
.y1c6{bottom:919.601067pt;}
.y24{bottom:920.485335pt;}
.y120{bottom:921.101067pt;}
.y18f{bottom:922.934400pt;}
.yb1{bottom:925.267733pt;}
.y39{bottom:930.534400pt;}
.yf7{bottom:932.267733pt;}
.y11f{bottom:933.101067pt;}
.y1c5{bottom:934.267733pt;}
.y18e{bottom:937.601067pt;}
.yb0{bottom:942.601067pt;}
.y11e{bottom:945.101067pt;}
.y1c4{bottom:948.934400pt;}
.yf6{bottom:949.601067pt;}
.y18d{bottom:952.267733pt;}
.y80{bottom:959.934400pt;}
.y11d{bottom:961.101067pt;}
.y67{bottom:963.362000pt;}
.y1c3{bottom:963.601067pt;}
.y3c{bottom:975.473733pt;}
.yf5{bottom:976.267733pt;}
.y7f{bottom:977.267733pt;}
.y11c{bottom:977.767733pt;}
.y1c2{bottom:978.267733pt;}
.y3b{bottom:987.473733pt;}
.yaf{bottom:1014.433867pt;}
.y7e{bottom:1014.500533pt;}
.y23{bottom:1035.664002pt;}
.h1a{height:26.693333pt;}
.h17{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1d{height:30.000000pt;}
.h1f{height:30.506667pt;}
.h1b{height:30.762667pt;}
.h1c{height:32.000000pt;}
.hb{height:32.645833pt;}
.h16{height:34.320000pt;}
.h18{height:36.000000pt;}
.h1e{height:36.226667pt;}
.hf{height:36.726562pt;}
.h12{height:40.000000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h15{height:42.000000pt;}
.h19{height:42.298667pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h14{height:53.834667pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x12{left:109.333333pt;}
.xb{left:112.100000pt;}
.x6{left:129.466667pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x9{left:203.327991pt;}
.x8{left:260.969328pt;}
.x11{left:280.000000pt;}
.xe{left:293.333333pt;}
.x3{left:404.408000pt;}
.xf{left:433.333333pt;}
.x10{left:446.666667pt;}
.x13{left:502.378267pt;}
.xd{left:507.508000pt;}
.xc{left:577.800667pt;}
}




    .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; }
  