
    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_8fb9ca7bfd012ba88818efe1.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_0b6b6e56ef67cc3c789894b8.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_110d3db6e813887df7191ac2.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_db184b076bfac10fffc9dade.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_9e255bebbd464bcdbe402745.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.077000;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_68eac4221b5ea4620fe49185.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_606c6e04c94279c2a0acb6c0.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_a64866290b677e486f22d6c7.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_6da763752ffb26ddf8f396fb.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_b541458f040834841f0fdb3d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936000;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_c674b7d2ba6e1b6e8a7b7177.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c1f114eabd7ffb90290ebb5e.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;}
.ls12{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.528000px;}
.ls10{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.630000px;}
.ls9{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.779400px;}
.lsa{letter-spacing:0.780000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.ls6{letter-spacing:8.129400px;}
.ls11{letter-spacing:9.157200px;}
.ls7{letter-spacing:68.047200px;}
.lsc{letter-spacing:420.330600px;}
.lsf{letter-spacing:522.113400px;}
.lse{letter-spacing:594.113400px;}
.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;}
.ws62{word-spacing:-13.440000px;}
.ws3{word-spacing:-13.332000px;}
.wscb{word-spacing:-12.726000px;}
.ws4{word-spacing:-12.720000px;}
.wscc{word-spacing:-11.448000px;}
.ws9{word-spacing:-10.176000px;}
.wsdc{word-spacing:-9.936000px;}
.wsdb{word-spacing:-9.828000px;}
.ws8{word-spacing:-9.810000px;}
.ws5{word-spacing:-9.696000px;}
.wsc0{word-spacing:-9.408000px;}
.ws2{word-spacing:-9.360000px;}
.ws6{word-spacing:-8.820000px;}
.wsaa{word-spacing:-8.736000px;}
.ws7{word-spacing:-8.232000px;}
.ws3b{word-spacing:-0.900000px;}
.ws86{word-spacing:-0.780000px;}
.ws63{word-spacing:-0.450000px;}
.ws0{word-spacing:0.000000px;}
.wseb{word-spacing:2.592000px;}
.ws82{word-spacing:2.700000px;}
.wsea{word-spacing:2.970000px;}
.wse5{word-spacing:4.698000px;}
.ws7e{word-spacing:5.280000px;}
.ws1f{word-spacing:5.292000px;}
.wse4{word-spacing:5.454000px;}
.wsca{word-spacing:5.664000px;}
.wse9{word-spacing:5.778000px;}
.ws71{word-spacing:5.880000px;}
.ws4e{word-spacing:6.000000px;}
.wsf0{word-spacing:6.156000px;}
.ws10{word-spacing:6.264000px;}
.ws50{word-spacing:6.300000px;}
.wsc8{word-spacing:6.420000px;}
.wsd9{word-spacing:6.426000px;}
.ws30{word-spacing:6.480000px;}
.ws97{word-spacing:6.540000px;}
.ws35{word-spacing:6.594000px;}
.ws9d{word-spacing:6.600000px;}
.wsb{word-spacing:6.615000px;}
.ws3a{word-spacing:6.660000px;}
.wsd8{word-spacing:6.750000px;}
.ws42{word-spacing:6.960000px;}
.ws52{word-spacing:7.020000px;}
.wsc{word-spacing:7.065000px;}
.wse3{word-spacing:7.074000px;}
.ws5b{word-spacing:7.140000px;}
.ws22{word-spacing:7.182000px;}
.wsa2{word-spacing:7.200000px;}
.ws2c{word-spacing:7.260000px;}
.ws25{word-spacing:7.380000px;}
.ws90{word-spacing:7.440000px;}
.wse0{word-spacing:7.452000px;}
.wsb0{word-spacing:7.500000px;}
.ws37{word-spacing:7.536000px;}
.ws28{word-spacing:7.560000px;}
.ws57{word-spacing:7.620000px;}
.ws53{word-spacing:7.680000px;}
.wsa3{word-spacing:7.740000px;}
.ws33{word-spacing:7.800000px;}
.ws56{word-spacing:7.860000px;}
.wsdd{word-spacing:7.884000px;}
.ws89{word-spacing:7.920000px;}
.ws44{word-spacing:8.040000px;}
.ws36{word-spacing:8.064000px;}
.ws7f{word-spacing:8.100000px;}
.ws2a{word-spacing:8.160000px;}
.ws74{word-spacing:8.220000px;}
.ws9e{word-spacing:8.280000px;}
.wse2{word-spacing:8.370000px;}
.ws3d{word-spacing:8.400000px;}
.ws65{word-spacing:8.460000px;}
.wsf{word-spacing:8.478000px;}
.ws39{word-spacing:8.484000px;}
.ws9c{word-spacing:8.520000px;}
.ws95{word-spacing:8.580000px;}
.ws2b{word-spacing:8.640000px;}
.wsdf{word-spacing:8.694000px;}
.ws75{word-spacing:8.700000px;}
.ws18{word-spacing:8.748000px;}
.wsb1{word-spacing:8.760000px;}
.ws7b{word-spacing:8.778000px;}
.ws54{word-spacing:8.820000px;}
.wsd3{word-spacing:8.880000px;}
.ws21{word-spacing:8.910000px;}
.ws61{word-spacing:8.940000px;}
.ws7c{word-spacing:8.949000px;}
.wsb5{word-spacing:9.000000px;}
.ws45{word-spacing:9.060000px;}
.ws17{word-spacing:9.072000px;}
.wsde{word-spacing:9.126000px;}
.ws24{word-spacing:9.180000px;}
.ws76{word-spacing:9.240000px;}
.ws49{word-spacing:9.261000px;}
.wsd7{word-spacing:9.288000px;}
.ws66{word-spacing:9.300000px;}
.ws47{word-spacing:9.360000px;}
.ws96{word-spacing:9.420000px;}
.wsd2{word-spacing:9.480000px;}
.ws1c{word-spacing:9.504000px;}
.wsa{word-spacing:9.600000px;}
.wsda{word-spacing:9.612000px;}
.ws2d{word-spacing:9.660000px;}
.ws1d{word-spacing:9.720000px;}
.ws58{word-spacing:9.780000px;}
.wsb2{word-spacing:9.840000px;}
.wsd6{word-spacing:9.936000px;}
.wse8{word-spacing:10.098000px;}
.ws5e{word-spacing:10.140000px;}
.ws31{word-spacing:10.200000px;}
.ws15{word-spacing:10.260000px;}
.wsd4{word-spacing:10.320000px;}
.ws98{word-spacing:10.440000px;}
.ws67{word-spacing:10.500000px;}
.ws8b{word-spacing:10.560000px;}
.wsf1{word-spacing:10.584000px;}
.ws70{word-spacing:10.620000px;}
.ws3f{word-spacing:10.680000px;}
.ws7d{word-spacing:10.692000px;}
.wse{word-spacing:10.710000px;}
.ws4a{word-spacing:10.740000px;}
.ws4c{word-spacing:10.800000px;}
.ws4d{word-spacing:10.860000px;}
.wsf6{word-spacing:10.908000px;}
.wsac{word-spacing:10.920000px;}
.ws91{word-spacing:10.980000px;}
.ws6b{word-spacing:11.040000px;}
.ws6a{word-spacing:11.100000px;}
.ws6d{word-spacing:11.160000px;}
.ws83{word-spacing:11.220000px;}
.ws51{word-spacing:11.280000px;}
.ws38{word-spacing:11.298000px;}
.wsb7{word-spacing:11.340000px;}
.ws94{word-spacing:11.400000px;}
.ws43{word-spacing:11.460000px;}
.ws6f{word-spacing:11.520000px;}
.ws72{word-spacing:11.640000px;}
.wsf2{word-spacing:11.664000px;}
.ws34{word-spacing:11.700000px;}
.ws2f{word-spacing:11.760000px;}
.wsb4{word-spacing:11.880000px;}
.ws80{word-spacing:11.940000px;}
.ws8e{word-spacing:12.060000px;}
.wsd1{word-spacing:12.120000px;}
.ws29{word-spacing:12.180000px;}
.ws99{word-spacing:12.240000px;}
.ws14{word-spacing:12.258000px;}
.ws5c{word-spacing:12.300000px;}
.ws64{word-spacing:12.420000px;}
.wsd0{word-spacing:12.480000px;}
.ws60{word-spacing:12.540000px;}
.ws23{word-spacing:12.582000px;}
.ws8c{word-spacing:12.600000px;}
.wsed{word-spacing:12.690000px;}
.ws27{word-spacing:12.720000px;}
.ws79{word-spacing:12.840000px;}
.ws2e{word-spacing:12.900000px;}
.ws92{word-spacing:12.960000px;}
.wsc9{word-spacing:13.020000px;}
.ws26{word-spacing:13.080000px;}
.ws3e{word-spacing:13.440000px;}
.ws11{word-spacing:13.446000px;}
.wsad{word-spacing:13.620000px;}
.ws8d{word-spacing:13.680000px;}
.ws13{word-spacing:13.878000px;}
.ws9a{word-spacing:13.920000px;}
.wsd{word-spacing:13.944000px;}
.wsc2{word-spacing:13.980000px;}
.ws5f{word-spacing:14.040000px;}
.wsf5{word-spacing:14.094000px;}
.wsb3{word-spacing:14.160000px;}
.ws8a{word-spacing:14.220000px;}
.wsa0{word-spacing:14.340000px;}
.wsc1{word-spacing:14.400000px;}
.ws7a{word-spacing:14.520000px;}
.ws1a{word-spacing:14.580000px;}
.ws88{word-spacing:14.640000px;}
.wscf{word-spacing:14.700000px;}
.ws59{word-spacing:14.880000px;}
.ws5d{word-spacing:14.940000px;}
.wsc3{word-spacing:15.000000px;}
.wsb6{word-spacing:15.120000px;}
.wsc4{word-spacing:15.300000px;}
.ws85{word-spacing:15.360000px;}
.ws77{word-spacing:15.480000px;}
.ws87{word-spacing:15.600000px;}
.ws5a{word-spacing:15.720000px;}
.ws55{word-spacing:15.780000px;}
.wsae{word-spacing:15.840000px;}
.ws6c{word-spacing:15.900000px;}
.ws41{word-spacing:16.020000px;}
.wsa1{word-spacing:16.140000px;}
.ws93{word-spacing:16.380000px;}
.ws1b{word-spacing:16.416000px;}
.ws78{word-spacing:16.500000px;}
.wsce{word-spacing:16.740000px;}
.wscd{word-spacing:16.860000px;}
.ws40{word-spacing:16.980000px;}
.ws4b{word-spacing:17.100000px;}
.wsab{word-spacing:17.280000px;}
.ws68{word-spacing:17.340000px;}
.wsaf{word-spacing:17.400000px;}
.ws3c{word-spacing:17.520000px;}
.ws4f{word-spacing:17.580000px;}
.wsd5{word-spacing:17.604000px;}
.wse1{word-spacing:17.712000px;}
.ws6e{word-spacing:18.000000px;}
.ws69{word-spacing:18.540000px;}
.ws48{word-spacing:18.600000px;}
.ws73{word-spacing:18.660000px;}
.wsec{word-spacing:19.764000px;}
.ws9f{word-spacing:19.980000px;}
.ws12{word-spacing:20.142000px;}
.ws32{word-spacing:21.060000px;}
.wsc7{word-spacing:21.180000px;}
.ws1e{word-spacing:21.762000px;}
.ws46{word-spacing:22.680000px;}
.ws84{word-spacing:23.700000px;}
.ws8f{word-spacing:23.880000px;}
.ws81{word-spacing:24.120000px;}
.ws16{word-spacing:24.840000px;}
.wsc6{word-spacing:26.160000px;}
.ws20{word-spacing:26.406000px;}
.ws19{word-spacing:27.486000px;}
.ws9b{word-spacing:27.720000px;}
.wsc5{word-spacing:27.960000px;}
.wsee{word-spacing:28.890000px;}
.wse7{word-spacing:29.862000px;}
.wsef{word-spacing:33.642000px;}
.wse6{word-spacing:34.776000px;}
.wsf4{word-spacing:35.748000px;}
.wsf3{word-spacing:41.634000px;}
.wsa6{word-spacing:285.222000px;}
.wsbb{word-spacing:294.558000px;}
.wsa8{word-spacing:410.922600px;}
.wsbd{word-spacing:416.656800px;}
.wsa7{word-spacing:416.922600px;}
.wsa9{word-spacing:439.722000px;}
.wsa5{word-spacing:447.092400px;}
.wsbc{word-spacing:469.122600px;}
.wsbe{word-spacing:483.237000px;}
.wsb8{word-spacing:550.985400px;}
.wsb9{word-spacing:624.904800px;}
.wsba{word-spacing:624.905400px;}
.wsa4{word-spacing:632.272200px;}
.wsbf{word-spacing:636.306000px;}
._11{margin-left:-20.460015px;}
._13{margin-left:-18.000000px;}
._a{margin-left:-16.674029px;}
._d{margin-left:-12.534015px;}
._8{margin-left:-9.672015px;}
._5{margin-left:-8.075429px;}
._7{margin-left:-5.682000px;}
._1{margin-left:-4.140000px;}
._9{margin-left:-3.000000px;}
._0{margin-left:-1.919985px;}
._4{width:1.074000px;}
._6{width:2.135985px;}
._12{width:3.479985px;}
._2{width:6.299985px;}
._3{width:7.799985px;}
._14{width:9.129000px;}
._f{width:11.141956px;}
._e{width:16.973971px;}
._33{width:32.974785px;}
._32{width:34.800000px;}
._34{width:41.102371px;}
._b{width:60.764971px;}
._10{width:131.698171px;}
._c{width:133.679400px;}
._1b{width:371.512785px;}
._15{width:381.066015px;}
._28{width:398.106000px;}
._27{width:405.595200px;}
._19{width:426.330600px;}
._17{width:455.731200px;}
._16{width:461.032800px;}
._2f{width:477.810600px;}
._2c{width:481.504800px;}
._1a{width:501.928785px;}
._2b{width:505.530600px;}
._2d{width:508.672800px;}
._2e{width:510.400800px;}
._2a{width:534.928800px;}
._31{width:543.953400px;}
._1c{width:564.161400px;}
._26{width:587.704800px;}
._29{width:655.530600px;}
._18{width:691.192800px;}
._1f{width:694.538985px;}
._21{width:731.127000px;}
._23{width:732.578400px;}
._25{width:734.840985px;}
._24{width:738.171000px;}
._20{width:744.411000px;}
._30{width:774.364200px;}
._1e{width:777.194985px;}
._22{width:823.563000px;}
._1d{width:832.539000px;}
.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;}
.y35{bottom:67.597501px;}
.y69{bottom:73.065600px;}
.y189{bottom:82.163100px;}
.y34{bottom:84.097501px;}
.y68{bottom:85.065600px;}
.yc0{bottom:85.275000px;}
.ye3{bottom:89.460600px;}
.y10f{bottom:90.625350px;}
.y143{bottom:90.891000px;}
.y12d{bottom:92.569350px;}
.y10a{bottom:94.786200px;}
.y67{bottom:97.065600px;}
.y4{bottom:97.125005px;}
.yaf{bottom:98.926200px;}
.ye2{bottom:108.960600px;}
.y188{bottom:109.163100px;}
.y63{bottom:109.440600px;}
.y10e{bottom:110.125350px;}
.y142{bottom:110.391000px;}
.y12c{bottom:112.069350px;}
.y109{bottom:114.286200px;}
.yae{bottom:118.426200px;}
.y65{bottom:120.315600px;}
.y10d{bottom:129.625350px;}
.y12b{bottom:131.569350px;}
.y108{bottom:133.786200px;}
.y64{bottom:133.815600px;}
.yad{bottom:137.926200px;}
.ye1{bottom:138.960600px;}
.y21{bottom:139.264499px;}
.y141{bottom:140.391000px;}
.y10c{bottom:149.125350px;}
.y12a{bottom:151.069350px;}
.y107{bottom:153.286200px;}
.yac{bottom:157.426200px;}
.y187{bottom:160.163100px;}
.y129{bottom:170.569350px;}
.y106{bottom:172.786200px;}
.y186{bottom:176.663100px;}
.yab{bottom:176.926200px;}
.ye0{bottom:180.960600px;}
.y62{bottom:181.426200px;}
.y128{bottom:190.069350px;}
.y140{bottom:190.631850px;}
.y105{bottom:192.286200px;}
.y112{bottom:192.725850px;}
.y185{bottom:193.163100px;}
.yaa{bottom:196.426200px;}
.y18{bottom:196.933500px;}
.ydf{bottom:200.460600px;}
.y61{bottom:200.926200px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y127{bottom:209.569350px;}
.y184{bottom:209.663100px;}
.y13f{bottom:210.131850px;}
.y104{bottom:211.786200px;}
.ya9{bottom:215.926200px;}
.yde{bottom:219.960600px;}
.y60{bottom:220.426200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y183{bottom:226.163100px;}
.y126{bottom:229.069350px;}
.y13e{bottom:229.631850px;}
.y103{bottom:231.286200px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.ya8{bottom:235.426200px;}
.ydd{bottom:239.460600px;}
.y5f{bottom:239.926200px;}
.y182{bottom:242.663100px;}
.y125{bottom:248.569350px;}
.y13d{bottom:249.131850px;}
.y102{bottom:250.786200px;}
.ya7{bottom:254.926200px;}
.ydc{bottom:258.960600px;}
.y181{bottom:259.163100px;}
.y5e{bottom:259.426200px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y124{bottom:268.069350px;}
.y13c{bottom:268.631850px;}
.y101{bottom:270.286200px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.ya6{bottom:274.426200px;}
.ydb{bottom:278.460600px;}
.y5d{bottom:278.926200px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y180{bottom:286.163100px;}
.y33{bottom:286.426501px;}
.y123{bottom:287.569350px;}
.y13b{bottom:288.131850px;}
.y100{bottom:289.786200px;}
.ya5{bottom:293.926200px;}
.yda{bottom:297.960600px;}
.y5c{bottom:298.426200px;}
.y122{bottom:307.069350px;}
.y13a{bottom:307.631850px;}
.yff{bottom:309.286200px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yd9{bottom:317.460600px;}
.y5b{bottom:317.926200px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.ya4{bottom:323.926200px;}
.y121{bottom:326.569350px;}
.y139{bottom:327.131850px;}
.yfe{bottom:328.786200px;}
.y17f{bottom:337.163100px;}
.y5a{bottom:337.426200px;}
.y1b6{bottom:345.301200px;}
.y120{bottom:346.069350px;}
.y138{bottom:346.631850px;}
.yf{bottom:348.133500px;}
.yfd{bottom:348.286200px;}
.y32{bottom:350.776501px;}
.ye6{bottom:353.303400px;}
.y59{bottom:356.926200px;}
.y1b5{bottom:361.801200px;}
.y17e{bottom:364.163100px;}
.y11f{bottom:365.569350px;}
.y137{bottom:366.131850px;}
.yfc{bottom:367.786200px;}
.ya3{bottom:374.926200px;}
.y58{bottom:376.426200px;}
.y1b4{bottom:378.301200px;}
.y11e{bottom:385.069350px;}
.ye{bottom:386.785499px;}
.yfb{bottom:387.286200px;}
.yd8{bottom:389.650350px;}
.ya2{bottom:394.426200px;}
.y1b3{bottom:394.801200px;}
.y57{bottom:395.926200px;}
.y16e{bottom:403.622700px;}
.y11d{bottom:404.569350px;}
.yfa{bottom:406.786200px;}
.yd{bottom:408.044999px;}
.y1b2{bottom:411.301200px;}
.ya1{bottom:413.926200px;}
.y31{bottom:415.126501px;}
.y56{bottom:415.426200px;}
.y17d{bottom:418.294650px;}
.y16d{bottom:421.622700px;}
.y11c{bottom:424.069350px;}
.yf9{bottom:426.286200px;}
.y1b1{bottom:427.801200px;}
.ya0{bottom:433.426200px;}
.y17c{bottom:434.794650px;}
.y55{bottom:434.926200px;}
.y16c{bottom:435.122700px;}
.y11b{bottom:443.569350px;}
.y1b0{bottom:444.301200px;}
.yf8{bottom:445.786200px;}
.y16b{bottom:448.622700px;}
.y111{bottom:451.925850px;}
.y9f{bottom:452.926200px;}
.y54{bottom:454.426200px;}
.y1af{bottom:460.801200px;}
.y17b{bottom:461.794650px;}
.y16a{bottom:462.122700px;}
.y11a{bottom:463.069350px;}
.yf7{bottom:465.286200px;}
.y9e{bottom:472.426200px;}
.y53{bottom:473.926200px;}
.y169{bottom:475.622700px;}
.y1ae{bottom:477.301200px;}
.y30{bottom:482.407500px;}
.y119{bottom:482.569350px;}
.yf6{bottom:484.786200px;}
.y168{bottom:489.122700px;}
.y9d{bottom:491.926200px;}
.y1ad{bottom:493.801200px;}
.y118{bottom:502.069350px;}
.y167{bottom:502.622700px;}
.yc{bottom:502.864502px;}
.y52{bottom:503.926200px;}
.yf5{bottom:504.286200px;}
.y1ac{bottom:510.301200px;}
.y9c{bottom:511.426200px;}
.y17a{bottom:514.426200px;}
.y166{bottom:516.122700px;}
.yb{bottom:520.864502px;}
.y117{bottom:521.569350px;}
.yf4{bottom:523.786200px;}
.y1ab{bottom:526.801200px;}
.y165{bottom:529.622700px;}
.y9b{bottom:530.926200px;}
.y179{bottom:533.926200px;}
.ya{bottom:538.864499px;}
.y116{bottom:541.069350px;}
.y164{bottom:543.122700px;}
.yf3{bottom:543.286200px;}
.y1aa{bottom:543.301200px;}
.y2f{bottom:543.826501px;}
.y9a{bottom:550.426200px;}
.y178{bottom:553.426200px;}
.y9{bottom:556.864499px;}
.y1a9{bottom:559.801200px;}
.y115{bottom:560.569350px;}
.y163{bottom:561.122700px;}
.ye5{bottom:561.203400px;}
.yf2{bottom:562.786200px;}
.y99{bottom:569.926200px;}
.y177{bottom:572.926200px;}
.y1a8{bottom:576.301200px;}
.y162{bottom:579.872700px;}
.y114{bottom:580.069350px;}
.yf1{bottom:582.286200px;}
.y7f{bottom:588.832800px;}
.y98{bottom:589.426200px;}
.y51{bottom:590.926200px;}
.y176{bottom:592.426200px;}
.y1a7{bottom:592.801200px;}
.y113{bottom:599.569350px;}
.yf0{bottom:601.786200px;}
.y7e{bottom:602.332800px;}
.y50{bottom:605.926200px;}
.y97{bottom:608.926200px;}
.y1a6{bottom:609.301200px;}
.y2e{bottom:611.107500px;}
.y175{bottom:611.926200px;}
.yd7{bottom:613.565850px;}
.y4f{bottom:620.926200px;}
.yef{bottom:621.286200px;}
.y7d{bottom:621.645300px;}
.y1a5{bottom:625.801200px;}
.y161{bottom:626.935200px;}
.y96{bottom:628.426200px;}
.y174{bottom:631.426200px;}
.yd6{bottom:633.065850px;}
.y7c{bottom:635.145300px;}
.y4e{bottom:635.926200px;}
.yee{bottom:640.786200px;}
.y1a4{bottom:642.301200px;}
.y160{bottom:644.935200px;}
.y2d{bottom:645.457501px;}
.y8{bottom:645.510000px;}
.y95{bottom:647.926200px;}
.y7b{bottom:648.645300px;}
.y4d{bottom:650.926200px;}
.yd5{bottom:652.565850px;}
.y136{bottom:654.319350px;}
.y15f{bottom:658.435200px;}
.y1a3{bottom:658.801200px;}
.yed{bottom:660.286200px;}
.y2c{bottom:660.457501px;}
.y4c{bottom:665.926200px;}
.y7{bottom:666.771000px;}
.y94{bottom:667.426200px;}
.y173{bottom:670.426200px;}
.y15e{bottom:671.935200px;}
.yd4{bottom:672.065850px;}
.y135{bottom:672.319350px;}
.y7a{bottom:672.713700px;}
.y1a2{bottom:675.301200px;}
.y2b{bottom:675.457500px;}
.yec{bottom:679.786200px;}
.y4b{bottom:680.926200px;}
.y15d{bottom:685.435200px;}
.y134{bottom:685.819350px;}
.y79{bottom:686.213700px;}
.y93{bottom:686.926200px;}
.y172{bottom:689.926200px;}
.yd3{bottom:691.565850px;}
.y1a1{bottom:691.801200px;}
.y4a{bottom:695.926200px;}
.y15c{bottom:698.935200px;}
.yeb{bottom:699.286200px;}
.y133{bottom:699.319350px;}
.y78{bottom:699.713700px;}
.ybf{bottom:706.426200px;}
.y1a0{bottom:708.301200px;}
.y171{bottom:709.426200px;}
.y49{bottom:710.926200px;}
.yd2{bottom:711.065850px;}
.y15b{bottom:712.435200px;}
.y132{bottom:712.819350px;}
.y77{bottom:713.213700px;}
.y92{bottom:716.926200px;}
.yea{bottom:718.786200px;}
.y19f{bottom:724.801200px;}
.y48{bottom:725.926200px;}
.y6{bottom:726.298500px;}
.y131{bottom:726.319350px;}
.y76{bottom:726.713700px;}
.y170{bottom:728.926200px;}
.yd1{bottom:730.565850px;}
.y15a{bottom:730.810200px;}
.ye9{bottom:738.286200px;}
.y47{bottom:740.926200px;}
.y19e{bottom:741.301200px;}
.y130{bottom:744.319350px;}
.ybe{bottom:745.426200px;}
.y16f{bottom:748.426200px;}
.y75{bottom:749.476200px;}
.y159{bottom:749.560200px;}
.yd0{bottom:750.065850px;}
.y3{bottom:752.599495px;}
.y46{bottom:755.926200px;}
.y2a{bottom:756.817498px;}
.ye8{bottom:757.786200px;}
.y19d{bottom:757.801200px;}
.y74{bottom:762.976200px;}
.y158{bottom:763.060200px;}
.y12f{bottom:763.069350px;}
.ybd{bottom:764.926200px;}
.y91{bottom:767.926200px;}
.ycf{bottom:769.565850px;}
.y45{bottom:770.926200px;}
.y19c{bottom:774.301200px;}
.y73{bottom:776.476200px;}
.y157{bottom:776.560200px;}
.ye7{bottom:777.286200px;}
.ybc{bottom:784.426200px;}
.y44{bottom:785.926200px;}
.y110{bottom:785.956200px;}
.y29{bottom:786.817498px;}
.y90{bottom:787.426200px;}
.yce{bottom:789.065850px;}
.y72{bottom:789.976200px;}
.y156{bottom:790.060200px;}
.y19b{bottom:790.801200px;}
.y43{bottom:800.926200px;}
.y71{bottom:803.476200px;}
.y155{bottom:803.560200px;}
.ybb{bottom:803.926200px;}
.y28{bottom:804.817498px;}
.y8f{bottom:806.926200px;}
.y19a{bottom:807.301200px;}
.ycd{bottom:808.565850px;}
.y12e{bottom:813.676200px;}
.y42{bottom:815.926200px;}
.y70{bottom:816.976200px;}
.y154{bottom:817.060200px;}
.y27{bottom:822.817498px;}
.yba{bottom:823.426200px;}
.y199{bottom:823.801200px;}
.y8e{bottom:826.426200px;}
.ycc{bottom:828.065850px;}
.y6f{bottom:830.476200px;}
.y41{bottom:830.926200px;}
.y153{bottom:835.060200px;}
.y198{bottom:840.301200px;}
.yb9{bottom:842.926200px;}
.y10b{bottom:845.536200px;}
.y40{bottom:845.926200px;}
.ycb{bottom:847.565850px;}
.y6e{bottom:853.238700px;}
.y152{bottom:853.810200px;}
.y197{bottom:856.801200px;}
.ye4{bottom:860.116200px;}
.y3f{bottom:860.926200px;}
.yb8{bottom:862.426200px;}
.y8d{bottom:865.426200px;}
.y6d{bottom:866.738700px;}
.yca{bottom:867.065850px;}
.y196{bottom:873.301200px;}
.y26{bottom:875.289002px;}
.y3e{bottom:875.926200px;}
.y2{bottom:879.369000px;}
.y6c{bottom:880.238700px;}
.yb7{bottom:881.926200px;}
.y8c{bottom:884.926200px;}
.yc9{bottom:886.565850px;}
.y195{bottom:889.801200px;}
.y3d{bottom:890.926200px;}
.y6b{bottom:893.738700px;}
.y151{bottom:900.113700px;}
.yb6{bottom:901.426200px;}
.y8b{bottom:904.426200px;}
.y3c{bottom:905.926200px;}
.y194{bottom:906.301200px;}
.y6a{bottom:907.238700px;}
.yc8{bottom:916.565850px;}
.y150{bottom:918.113700px;}
.yb5{bottom:920.926200px;}
.y193{bottom:922.801200px;}
.y8a{bottom:923.926200px;}
.y14f{bottom:931.613700px;}
.y25{bottom:938.940000px;}
.y192{bottom:939.301200px;}
.yb4{bottom:940.426200px;}
.y89{bottom:943.426200px;}
.y14e{bottom:945.113700px;}
.y3b{bottom:952.801200px;}
.y191{bottom:955.801200px;}
.y14d{bottom:958.613700px;}
.yb3{bottom:959.926200px;}
.y88{bottom:962.926200px;}
.y1{bottom:966.726000px;}
.y24{bottom:970.440000px;}
.yc7{bottom:970.801200px;}
.y14c{bottom:972.113700px;}
.y190{bottom:972.301200px;}
.yb2{bottom:979.426200px;}
.y3a{bottom:979.801200px;}
.y87{bottom:982.426200px;}
.y18f{bottom:988.801200px;}
.yc6{bottom:990.301200px;}
.y14b{bottom:990.488700px;}
.y86{bottom:1001.926200px;}
.y18e{bottom:1005.301200px;}
.y14a{bottom:1009.238700px;}
.yb1{bottom:1009.426200px;}
.yc5{bottom:1009.801200px;}
.y39{bottom:1018.801200px;}
.y85{bottom:1021.426200px;}
.y18d{bottom:1021.801200px;}
.y149{bottom:1022.738700px;}
.yc4{bottom:1029.301200px;}
.y23{bottom:1035.546001px;}
.y148{bottom:1036.238700px;}
.y18c{bottom:1038.301200px;}
.y84{bottom:1040.926200px;}
.y36{bottom:1047.511200px;}
.yc3{bottom:1048.801200px;}
.y147{bottom:1049.738700px;}
.y18b{bottom:1054.801200px;}
.y83{bottom:1060.426200px;}
.y146{bottom:1063.238700px;}
.yc2{bottom:1068.301200px;}
.y18a{bottom:1071.301200px;}
.y82{bottom:1079.926200px;}
.y145{bottom:1081.238700px;}
.y66{bottom:1083.782250px;}
.y38{bottom:1097.407950px;}
.yc1{bottom:1098.301200px;}
.y81{bottom:1099.426200px;}
.y144{bottom:1099.988700px;}
.y37{bottom:1110.907950px;}
.yb0{bottom:1141.238100px;}
.y80{bottom:1141.313100px;}
.y22{bottom:1165.122003px;}
.h1a{height:30.030000px;}
.h17{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1c{height:34.320000px;}
.h1b{height:34.608000px;}
.hb{height:36.726562px;}
.h1e{height:37.215000px;}
.h16{height:38.610000px;}
.h1d{height:39.696000px;}
.h20{height:40.755000px;}
.hf{height:41.317383px;}
.h18{height:44.658000px;}
.h1f{height:44.730000px;}
.h21{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h19{height:47.586000px;}
.h3{height:48.195000px;}
.h12{height:49.620000px;}
.h15{height:52.101000px;}
.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;}
.x11{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;}
.xe{left:260.728350px;}
.x8{left:293.590494px;}
.x3{left:454.959000px;}
.xf{left:534.220950px;}
.x10{left:565.175550px;}
.xd{left:570.946500px;}
.xc{left:650.025750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.469333pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.560000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.692800pt;}
.lsa{letter-spacing:0.693333pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls6{letter-spacing:7.226133pt;}
.ls11{letter-spacing:8.139733pt;}
.ls7{letter-spacing:60.486400pt;}
.lsc{letter-spacing:373.627200pt;}
.lsf{letter-spacing:464.100800pt;}
.lse{letter-spacing:528.100800pt;}
.ws1{word-spacing:-12.432000pt;}
.ws62{word-spacing:-11.946667pt;}
.ws3{word-spacing:-11.850667pt;}
.wscb{word-spacing:-11.312000pt;}
.ws4{word-spacing:-11.306667pt;}
.wscc{word-spacing:-10.176000pt;}
.ws9{word-spacing:-9.045333pt;}
.wsdc{word-spacing:-8.832000pt;}
.wsdb{word-spacing:-8.736000pt;}
.ws8{word-spacing:-8.720000pt;}
.ws5{word-spacing:-8.618667pt;}
.wsc0{word-spacing:-8.362667pt;}
.ws2{word-spacing:-8.320000pt;}
.ws6{word-spacing:-7.840000pt;}
.wsaa{word-spacing:-7.765333pt;}
.ws7{word-spacing:-7.317333pt;}
.ws3b{word-spacing:-0.800000pt;}
.ws86{word-spacing:-0.693333pt;}
.ws63{word-spacing:-0.400000pt;}
.ws0{word-spacing:0.000000pt;}
.wseb{word-spacing:2.304000pt;}
.ws82{word-spacing:2.400000pt;}
.wsea{word-spacing:2.640000pt;}
.wse5{word-spacing:4.176000pt;}
.ws7e{word-spacing:4.693333pt;}
.ws1f{word-spacing:4.704000pt;}
.wse4{word-spacing:4.848000pt;}
.wsca{word-spacing:5.034667pt;}
.wse9{word-spacing:5.136000pt;}
.ws71{word-spacing:5.226667pt;}
.ws4e{word-spacing:5.333333pt;}
.wsf0{word-spacing:5.472000pt;}
.ws10{word-spacing:5.568000pt;}
.ws50{word-spacing:5.600000pt;}
.wsc8{word-spacing:5.706667pt;}
.wsd9{word-spacing:5.712000pt;}
.ws30{word-spacing:5.760000pt;}
.ws97{word-spacing:5.813333pt;}
.ws35{word-spacing:5.861333pt;}
.ws9d{word-spacing:5.866667pt;}
.wsb{word-spacing:5.880000pt;}
.ws3a{word-spacing:5.920000pt;}
.wsd8{word-spacing:6.000000pt;}
.ws42{word-spacing:6.186667pt;}
.ws52{word-spacing:6.240000pt;}
.wsc{word-spacing:6.280000pt;}
.wse3{word-spacing:6.288000pt;}
.ws5b{word-spacing:6.346667pt;}
.ws22{word-spacing:6.384000pt;}
.wsa2{word-spacing:6.400000pt;}
.ws2c{word-spacing:6.453333pt;}
.ws25{word-spacing:6.560000pt;}
.ws90{word-spacing:6.613333pt;}
.wse0{word-spacing:6.624000pt;}
.wsb0{word-spacing:6.666667pt;}
.ws37{word-spacing:6.698667pt;}
.ws28{word-spacing:6.720000pt;}
.ws57{word-spacing:6.773333pt;}
.ws53{word-spacing:6.826667pt;}
.wsa3{word-spacing:6.880000pt;}
.ws33{word-spacing:6.933333pt;}
.ws56{word-spacing:6.986667pt;}
.wsdd{word-spacing:7.008000pt;}
.ws89{word-spacing:7.040000pt;}
.ws44{word-spacing:7.146667pt;}
.ws36{word-spacing:7.168000pt;}
.ws7f{word-spacing:7.200000pt;}
.ws2a{word-spacing:7.253333pt;}
.ws74{word-spacing:7.306667pt;}
.ws9e{word-spacing:7.360000pt;}
.wse2{word-spacing:7.440000pt;}
.ws3d{word-spacing:7.466667pt;}
.ws65{word-spacing:7.520000pt;}
.wsf{word-spacing:7.536000pt;}
.ws39{word-spacing:7.541333pt;}
.ws9c{word-spacing:7.573333pt;}
.ws95{word-spacing:7.626667pt;}
.ws2b{word-spacing:7.680000pt;}
.wsdf{word-spacing:7.728000pt;}
.ws75{word-spacing:7.733333pt;}
.ws18{word-spacing:7.776000pt;}
.wsb1{word-spacing:7.786667pt;}
.ws7b{word-spacing:7.802667pt;}
.ws54{word-spacing:7.840000pt;}
.wsd3{word-spacing:7.893333pt;}
.ws21{word-spacing:7.920000pt;}
.ws61{word-spacing:7.946667pt;}
.ws7c{word-spacing:7.954667pt;}
.wsb5{word-spacing:8.000000pt;}
.ws45{word-spacing:8.053333pt;}
.ws17{word-spacing:8.064000pt;}
.wsde{word-spacing:8.112000pt;}
.ws24{word-spacing:8.160000pt;}
.ws76{word-spacing:8.213333pt;}
.ws49{word-spacing:8.232000pt;}
.wsd7{word-spacing:8.256000pt;}
.ws66{word-spacing:8.266667pt;}
.ws47{word-spacing:8.320000pt;}
.ws96{word-spacing:8.373333pt;}
.wsd2{word-spacing:8.426667pt;}
.ws1c{word-spacing:8.448000pt;}
.wsa{word-spacing:8.533333pt;}
.wsda{word-spacing:8.544000pt;}
.ws2d{word-spacing:8.586667pt;}
.ws1d{word-spacing:8.640000pt;}
.ws58{word-spacing:8.693333pt;}
.wsb2{word-spacing:8.746667pt;}
.wsd6{word-spacing:8.832000pt;}
.wse8{word-spacing:8.976000pt;}
.ws5e{word-spacing:9.013333pt;}
.ws31{word-spacing:9.066667pt;}
.ws15{word-spacing:9.120000pt;}
.wsd4{word-spacing:9.173333pt;}
.ws98{word-spacing:9.280000pt;}
.ws67{word-spacing:9.333333pt;}
.ws8b{word-spacing:9.386667pt;}
.wsf1{word-spacing:9.408000pt;}
.ws70{word-spacing:9.440000pt;}
.ws3f{word-spacing:9.493333pt;}
.ws7d{word-spacing:9.504000pt;}
.wse{word-spacing:9.520000pt;}
.ws4a{word-spacing:9.546667pt;}
.ws4c{word-spacing:9.600000pt;}
.ws4d{word-spacing:9.653333pt;}
.wsf6{word-spacing:9.696000pt;}
.wsac{word-spacing:9.706667pt;}
.ws91{word-spacing:9.760000pt;}
.ws6b{word-spacing:9.813333pt;}
.ws6a{word-spacing:9.866667pt;}
.ws6d{word-spacing:9.920000pt;}
.ws83{word-spacing:9.973333pt;}
.ws51{word-spacing:10.026667pt;}
.ws38{word-spacing:10.042667pt;}
.wsb7{word-spacing:10.080000pt;}
.ws94{word-spacing:10.133333pt;}
.ws43{word-spacing:10.186667pt;}
.ws6f{word-spacing:10.240000pt;}
.ws72{word-spacing:10.346667pt;}
.wsf2{word-spacing:10.368000pt;}
.ws34{word-spacing:10.400000pt;}
.ws2f{word-spacing:10.453333pt;}
.wsb4{word-spacing:10.560000pt;}
.ws80{word-spacing:10.613333pt;}
.ws8e{word-spacing:10.720000pt;}
.wsd1{word-spacing:10.773333pt;}
.ws29{word-spacing:10.826667pt;}
.ws99{word-spacing:10.880000pt;}
.ws14{word-spacing:10.896000pt;}
.ws5c{word-spacing:10.933333pt;}
.ws64{word-spacing:11.040000pt;}
.wsd0{word-spacing:11.093333pt;}
.ws60{word-spacing:11.146667pt;}
.ws23{word-spacing:11.184000pt;}
.ws8c{word-spacing:11.200000pt;}
.wsed{word-spacing:11.280000pt;}
.ws27{word-spacing:11.306667pt;}
.ws79{word-spacing:11.413333pt;}
.ws2e{word-spacing:11.466667pt;}
.ws92{word-spacing:11.520000pt;}
.wsc9{word-spacing:11.573333pt;}
.ws26{word-spacing:11.626667pt;}
.ws3e{word-spacing:11.946667pt;}
.ws11{word-spacing:11.952000pt;}
.wsad{word-spacing:12.106667pt;}
.ws8d{word-spacing:12.160000pt;}
.ws13{word-spacing:12.336000pt;}
.ws9a{word-spacing:12.373333pt;}
.wsd{word-spacing:12.394667pt;}
.wsc2{word-spacing:12.426667pt;}
.ws5f{word-spacing:12.480000pt;}
.wsf5{word-spacing:12.528000pt;}
.wsb3{word-spacing:12.586667pt;}
.ws8a{word-spacing:12.640000pt;}
.wsa0{word-spacing:12.746667pt;}
.wsc1{word-spacing:12.800000pt;}
.ws7a{word-spacing:12.906667pt;}
.ws1a{word-spacing:12.960000pt;}
.ws88{word-spacing:13.013333pt;}
.wscf{word-spacing:13.066667pt;}
.ws59{word-spacing:13.226667pt;}
.ws5d{word-spacing:13.280000pt;}
.wsc3{word-spacing:13.333333pt;}
.wsb6{word-spacing:13.440000pt;}
.wsc4{word-spacing:13.600000pt;}
.ws85{word-spacing:13.653333pt;}
.ws77{word-spacing:13.760000pt;}
.ws87{word-spacing:13.866667pt;}
.ws5a{word-spacing:13.973333pt;}
.ws55{word-spacing:14.026667pt;}
.wsae{word-spacing:14.080000pt;}
.ws6c{word-spacing:14.133333pt;}
.ws41{word-spacing:14.240000pt;}
.wsa1{word-spacing:14.346667pt;}
.ws93{word-spacing:14.560000pt;}
.ws1b{word-spacing:14.592000pt;}
.ws78{word-spacing:14.666667pt;}
.wsce{word-spacing:14.880000pt;}
.wscd{word-spacing:14.986667pt;}
.ws40{word-spacing:15.093333pt;}
.ws4b{word-spacing:15.200000pt;}
.wsab{word-spacing:15.360000pt;}
.ws68{word-spacing:15.413333pt;}
.wsaf{word-spacing:15.466667pt;}
.ws3c{word-spacing:15.573333pt;}
.ws4f{word-spacing:15.626667pt;}
.wsd5{word-spacing:15.648000pt;}
.wse1{word-spacing:15.744000pt;}
.ws6e{word-spacing:16.000000pt;}
.ws69{word-spacing:16.480000pt;}
.ws48{word-spacing:16.533333pt;}
.ws73{word-spacing:16.586667pt;}
.wsec{word-spacing:17.568000pt;}
.ws9f{word-spacing:17.760000pt;}
.ws12{word-spacing:17.904000pt;}
.ws32{word-spacing:18.720000pt;}
.wsc7{word-spacing:18.826667pt;}
.ws1e{word-spacing:19.344000pt;}
.ws46{word-spacing:20.160000pt;}
.ws84{word-spacing:21.066667pt;}
.ws8f{word-spacing:21.226667pt;}
.ws81{word-spacing:21.440000pt;}
.ws16{word-spacing:22.080000pt;}
.wsc6{word-spacing:23.253333pt;}
.ws20{word-spacing:23.472000pt;}
.ws19{word-spacing:24.432000pt;}
.ws9b{word-spacing:24.640000pt;}
.wsc5{word-spacing:24.853333pt;}
.wsee{word-spacing:25.680000pt;}
.wse7{word-spacing:26.544000pt;}
.wsef{word-spacing:29.904000pt;}
.wse6{word-spacing:30.912000pt;}
.wsf4{word-spacing:31.776000pt;}
.wsf3{word-spacing:37.008000pt;}
.wsa6{word-spacing:253.530667pt;}
.wsbb{word-spacing:261.829333pt;}
.wsa8{word-spacing:365.264533pt;}
.wsbd{word-spacing:370.361600pt;}
.wsa7{word-spacing:370.597867pt;}
.wsa9{word-spacing:390.864000pt;}
.wsa5{word-spacing:397.415467pt;}
.wsbc{word-spacing:416.997867pt;}
.wsbe{word-spacing:429.544000pt;}
.wsb8{word-spacing:489.764800pt;}
.wsb9{word-spacing:555.470933pt;}
.wsba{word-spacing:555.471467pt;}
.wsa4{word-spacing:562.019733pt;}
.wsbf{word-spacing:565.605333pt;}
._11{margin-left:-18.186680pt;}
._13{margin-left:-16.000000pt;}
._a{margin-left:-14.821359pt;}
._d{margin-left:-11.141346pt;}
._8{margin-left:-8.597346pt;}
._5{margin-left:-7.178159pt;}
._7{margin-left:-5.050667pt;}
._1{margin-left:-3.680000pt;}
._9{margin-left:-2.666667pt;}
._0{margin-left:-1.706654pt;}
._4{width:0.954667pt;}
._6{width:1.898654pt;}
._12{width:3.093320pt;}
._2{width:5.599987pt;}
._3{width:6.933320pt;}
._14{width:8.114667pt;}
._f{width:9.903961pt;}
._e{width:15.087974pt;}
._33{width:29.310920pt;}
._32{width:30.933333pt;}
._34{width:36.535441pt;}
._b{width:54.013307pt;}
._10{width:117.065041pt;}
._c{width:118.826133pt;}
._1b{width:330.233587pt;}
._15{width:338.725346pt;}
._28{width:353.872000pt;}
._27{width:360.529067pt;}
._19{width:378.960533pt;}
._17{width:405.094400pt;}
._16{width:409.806933pt;}
._2f{width:424.720533pt;}
._2c{width:428.004267pt;}
._1a{width:446.158920pt;}
._2b{width:449.360533pt;}
._2d{width:452.153600pt;}
._2e{width:453.689600pt;}
._2a{width:475.492267pt;}
._31{width:483.514133pt;}
._1c{width:501.476800pt;}
._26{width:522.404267pt;}
._29{width:582.693867pt;}
._18{width:614.393600pt;}
._1f{width:617.367987pt;}
._21{width:649.890667pt;}
._23{width:651.180800pt;}
._25{width:653.191987pt;}
._24{width:656.152000pt;}
._20{width:661.698667pt;}
._30{width:688.323733pt;}
._1e{width:690.839987pt;}
._22{width:732.056000pt;}
._1d{width:740.034667pt;}
.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;}
.y35{bottom:60.086668pt;}
.y69{bottom:64.947200pt;}
.y189{bottom:73.033867pt;}
.y34{bottom:74.753335pt;}
.y68{bottom:75.613867pt;}
.yc0{bottom:75.800000pt;}
.ye3{bottom:79.520533pt;}
.y10f{bottom:80.555867pt;}
.y143{bottom:80.792000pt;}
.y12d{bottom:82.283867pt;}
.y10a{bottom:84.254400pt;}
.y67{bottom:86.280533pt;}
.y4{bottom:86.333337pt;}
.yaf{bottom:87.934400pt;}
.ye2{bottom:96.853867pt;}
.y188{bottom:97.033867pt;}
.y63{bottom:97.280533pt;}
.y10e{bottom:97.889200pt;}
.y142{bottom:98.125333pt;}
.y12c{bottom:99.617200pt;}
.y109{bottom:101.587733pt;}
.yae{bottom:105.267733pt;}
.y65{bottom:106.947200pt;}
.y10d{bottom:115.222533pt;}
.y12b{bottom:116.950533pt;}
.y108{bottom:118.921067pt;}
.y64{bottom:118.947200pt;}
.yad{bottom:122.601067pt;}
.ye1{bottom:123.520533pt;}
.y21{bottom:123.790666pt;}
.y141{bottom:124.792000pt;}
.y10c{bottom:132.555867pt;}
.y12a{bottom:134.283867pt;}
.y107{bottom:136.254400pt;}
.yac{bottom:139.934400pt;}
.y187{bottom:142.367200pt;}
.y129{bottom:151.617200pt;}
.y106{bottom:153.587733pt;}
.y186{bottom:157.033867pt;}
.yab{bottom:157.267733pt;}
.ye0{bottom:160.853867pt;}
.y62{bottom:161.267733pt;}
.y128{bottom:168.950533pt;}
.y140{bottom:169.450533pt;}
.y105{bottom:170.921067pt;}
.y112{bottom:171.311867pt;}
.y185{bottom:171.700533pt;}
.yaa{bottom:174.601067pt;}
.y18{bottom:175.052000pt;}
.ydf{bottom:178.187200pt;}
.y61{bottom:178.601067pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y127{bottom:186.283867pt;}
.y184{bottom:186.367200pt;}
.y13f{bottom:186.783867pt;}
.y104{bottom:188.254400pt;}
.ya9{bottom:191.934400pt;}
.yde{bottom:195.520533pt;}
.y60{bottom:195.934400pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y183{bottom:201.033867pt;}
.y126{bottom:203.617200pt;}
.y13e{bottom:204.117200pt;}
.y103{bottom:205.587733pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.ya8{bottom:209.267733pt;}
.ydd{bottom:212.853867pt;}
.y5f{bottom:213.267733pt;}
.y182{bottom:215.700533pt;}
.y125{bottom:220.950533pt;}
.y13d{bottom:221.450533pt;}
.y102{bottom:222.921067pt;}
.ya7{bottom:226.601067pt;}
.ydc{bottom:230.187200pt;}
.y181{bottom:230.367200pt;}
.y5e{bottom:230.601067pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y124{bottom:238.283867pt;}
.y13c{bottom:238.783867pt;}
.y101{bottom:240.254400pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.ya6{bottom:243.934400pt;}
.ydb{bottom:247.520533pt;}
.y5d{bottom:247.934400pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y180{bottom:254.367200pt;}
.y33{bottom:254.601334pt;}
.y123{bottom:255.617200pt;}
.y13b{bottom:256.117200pt;}
.y100{bottom:257.587733pt;}
.ya5{bottom:261.267733pt;}
.yda{bottom:264.853867pt;}
.y5c{bottom:265.267733pt;}
.y122{bottom:272.950533pt;}
.y13a{bottom:273.450533pt;}
.yff{bottom:274.921067pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yd9{bottom:282.187200pt;}
.y5b{bottom:282.601067pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.ya4{bottom:287.934400pt;}
.y121{bottom:290.283867pt;}
.y139{bottom:290.783867pt;}
.yfe{bottom:292.254400pt;}
.y17f{bottom:299.700533pt;}
.y5a{bottom:299.934400pt;}
.y1b6{bottom:306.934400pt;}
.y120{bottom:307.617200pt;}
.y138{bottom:308.117200pt;}
.yf{bottom:309.452000pt;}
.yfd{bottom:309.587733pt;}
.y32{bottom:311.801334pt;}
.ye6{bottom:314.047467pt;}
.y59{bottom:317.267733pt;}
.y1b5{bottom:321.601067pt;}
.y17e{bottom:323.700533pt;}
.y11f{bottom:324.950533pt;}
.y137{bottom:325.450533pt;}
.yfc{bottom:326.921067pt;}
.ya3{bottom:333.267733pt;}
.y58{bottom:334.601067pt;}
.y1b4{bottom:336.267733pt;}
.y11e{bottom:342.283867pt;}
.ye{bottom:343.809333pt;}
.yfb{bottom:344.254400pt;}
.yd8{bottom:346.355867pt;}
.ya2{bottom:350.601067pt;}
.y1b3{bottom:350.934400pt;}
.y57{bottom:351.934400pt;}
.y16e{bottom:358.775733pt;}
.y11d{bottom:359.617200pt;}
.yfa{bottom:361.587733pt;}
.yd{bottom:362.706666pt;}
.y1b2{bottom:365.601067pt;}
.ya1{bottom:367.934400pt;}
.y31{bottom:369.001334pt;}
.y56{bottom:369.267733pt;}
.y17d{bottom:371.817467pt;}
.y16d{bottom:374.775733pt;}
.y11c{bottom:376.950533pt;}
.yf9{bottom:378.921067pt;}
.y1b1{bottom:380.267733pt;}
.ya0{bottom:385.267733pt;}
.y17c{bottom:386.484133pt;}
.y55{bottom:386.601067pt;}
.y16c{bottom:386.775733pt;}
.y11b{bottom:394.283867pt;}
.y1b0{bottom:394.934400pt;}
.yf8{bottom:396.254400pt;}
.y16b{bottom:398.775733pt;}
.y111{bottom:401.711867pt;}
.y9f{bottom:402.601067pt;}
.y54{bottom:403.934400pt;}
.y1af{bottom:409.601067pt;}
.y17b{bottom:410.484133pt;}
.y16a{bottom:410.775733pt;}
.y11a{bottom:411.617200pt;}
.yf7{bottom:413.587733pt;}
.y9e{bottom:419.934400pt;}
.y53{bottom:421.267733pt;}
.y169{bottom:422.775733pt;}
.y1ae{bottom:424.267733pt;}
.y30{bottom:428.806667pt;}
.y119{bottom:428.950533pt;}
.yf6{bottom:430.921067pt;}
.y168{bottom:434.775733pt;}
.y9d{bottom:437.267733pt;}
.y1ad{bottom:438.934400pt;}
.y118{bottom:446.283867pt;}
.y167{bottom:446.775733pt;}
.yc{bottom:446.990669pt;}
.y52{bottom:447.934400pt;}
.yf5{bottom:448.254400pt;}
.y1ac{bottom:453.601067pt;}
.y9c{bottom:454.601067pt;}
.y17a{bottom:457.267733pt;}
.y166{bottom:458.775733pt;}
.yb{bottom:462.990669pt;}
.y117{bottom:463.617200pt;}
.yf4{bottom:465.587733pt;}
.y1ab{bottom:468.267733pt;}
.y165{bottom:470.775733pt;}
.y9b{bottom:471.934400pt;}
.y179{bottom:474.601067pt;}
.ya{bottom:478.990666pt;}
.y116{bottom:480.950533pt;}
.y164{bottom:482.775733pt;}
.yf3{bottom:482.921067pt;}
.y1aa{bottom:482.934400pt;}
.y2f{bottom:483.401334pt;}
.y9a{bottom:489.267733pt;}
.y178{bottom:491.934400pt;}
.y9{bottom:494.990666pt;}
.y1a9{bottom:497.601067pt;}
.y115{bottom:498.283867pt;}
.y163{bottom:498.775733pt;}
.ye5{bottom:498.847467pt;}
.yf2{bottom:500.254400pt;}
.y99{bottom:506.601067pt;}
.y177{bottom:509.267733pt;}
.y1a8{bottom:512.267733pt;}
.y162{bottom:515.442400pt;}
.y114{bottom:515.617200pt;}
.yf1{bottom:517.587733pt;}
.y7f{bottom:523.406933pt;}
.y98{bottom:523.934400pt;}
.y51{bottom:525.267733pt;}
.y176{bottom:526.601067pt;}
.y1a7{bottom:526.934400pt;}
.y113{bottom:532.950533pt;}
.yf0{bottom:534.921067pt;}
.y7e{bottom:535.406933pt;}
.y50{bottom:538.601067pt;}
.y97{bottom:541.267733pt;}
.y1a6{bottom:541.601067pt;}
.y2e{bottom:543.206667pt;}
.y175{bottom:543.934400pt;}
.yd7{bottom:545.391867pt;}
.y4f{bottom:551.934400pt;}
.yef{bottom:552.254400pt;}
.y7d{bottom:552.573600pt;}
.y1a5{bottom:556.267733pt;}
.y161{bottom:557.275733pt;}
.y96{bottom:558.601067pt;}
.y174{bottom:561.267733pt;}
.yd6{bottom:562.725200pt;}
.y7c{bottom:564.573600pt;}
.y4e{bottom:565.267733pt;}
.yee{bottom:569.587733pt;}
.y1a4{bottom:570.934400pt;}
.y160{bottom:573.275733pt;}
.y2d{bottom:573.740001pt;}
.y8{bottom:573.786667pt;}
.y95{bottom:575.934400pt;}
.y7b{bottom:576.573600pt;}
.y4d{bottom:578.601067pt;}
.yd5{bottom:580.058533pt;}
.y136{bottom:581.617200pt;}
.y15f{bottom:585.275733pt;}
.y1a3{bottom:585.601067pt;}
.yed{bottom:586.921067pt;}
.y2c{bottom:587.073335pt;}
.y4c{bottom:591.934400pt;}
.y7{bottom:592.685334pt;}
.y94{bottom:593.267733pt;}
.y173{bottom:595.934400pt;}
.y15e{bottom:597.275733pt;}
.yd4{bottom:597.391867pt;}
.y135{bottom:597.617200pt;}
.y7a{bottom:597.967733pt;}
.y1a2{bottom:600.267733pt;}
.y2b{bottom:600.406667pt;}
.yec{bottom:604.254400pt;}
.y4b{bottom:605.267733pt;}
.y15d{bottom:609.275733pt;}
.y134{bottom:609.617200pt;}
.y79{bottom:609.967733pt;}
.y93{bottom:610.601067pt;}
.y172{bottom:613.267733pt;}
.yd3{bottom:614.725200pt;}
.y1a1{bottom:614.934400pt;}
.y4a{bottom:618.601067pt;}
.y15c{bottom:621.275733pt;}
.yeb{bottom:621.587733pt;}
.y133{bottom:621.617200pt;}
.y78{bottom:621.967733pt;}
.ybf{bottom:627.934400pt;}
.y1a0{bottom:629.601067pt;}
.y171{bottom:630.601067pt;}
.y49{bottom:631.934400pt;}
.yd2{bottom:632.058533pt;}
.y15b{bottom:633.275733pt;}
.y132{bottom:633.617200pt;}
.y77{bottom:633.967733pt;}
.y92{bottom:637.267733pt;}
.yea{bottom:638.921067pt;}
.y19f{bottom:644.267733pt;}
.y48{bottom:645.267733pt;}
.y6{bottom:645.598667pt;}
.y131{bottom:645.617200pt;}
.y76{bottom:645.967733pt;}
.y170{bottom:647.934400pt;}
.yd1{bottom:649.391867pt;}
.y15a{bottom:649.609067pt;}
.ye9{bottom:656.254400pt;}
.y47{bottom:658.601067pt;}
.y19e{bottom:658.934400pt;}
.y130{bottom:661.617200pt;}
.ybe{bottom:662.601067pt;}
.y16f{bottom:665.267733pt;}
.y75{bottom:666.201067pt;}
.y159{bottom:666.275733pt;}
.yd0{bottom:666.725200pt;}
.y3{bottom:668.977329pt;}
.y46{bottom:671.934400pt;}
.y2a{bottom:672.726665pt;}
.ye8{bottom:673.587733pt;}
.y19d{bottom:673.601067pt;}
.y74{bottom:678.201067pt;}
.y158{bottom:678.275733pt;}
.y12f{bottom:678.283867pt;}
.ybd{bottom:679.934400pt;}
.y91{bottom:682.601067pt;}
.ycf{bottom:684.058533pt;}
.y45{bottom:685.267733pt;}
.y19c{bottom:688.267733pt;}
.y73{bottom:690.201067pt;}
.y157{bottom:690.275733pt;}
.ye7{bottom:690.921067pt;}
.ybc{bottom:697.267733pt;}
.y44{bottom:698.601067pt;}
.y110{bottom:698.627733pt;}
.y29{bottom:699.393332pt;}
.y90{bottom:699.934400pt;}
.yce{bottom:701.391867pt;}
.y72{bottom:702.201067pt;}
.y156{bottom:702.275733pt;}
.y19b{bottom:702.934400pt;}
.y43{bottom:711.934400pt;}
.y71{bottom:714.201067pt;}
.y155{bottom:714.275733pt;}
.ybb{bottom:714.601067pt;}
.y28{bottom:715.393332pt;}
.y8f{bottom:717.267733pt;}
.y19a{bottom:717.601067pt;}
.ycd{bottom:718.725200pt;}
.y12e{bottom:723.267733pt;}
.y42{bottom:725.267733pt;}
.y70{bottom:726.201067pt;}
.y154{bottom:726.275733pt;}
.y27{bottom:731.393332pt;}
.yba{bottom:731.934400pt;}
.y199{bottom:732.267733pt;}
.y8e{bottom:734.601067pt;}
.ycc{bottom:736.058533pt;}
.y6f{bottom:738.201067pt;}
.y41{bottom:738.601067pt;}
.y153{bottom:742.275733pt;}
.y198{bottom:746.934400pt;}
.yb9{bottom:749.267733pt;}
.y10b{bottom:751.587733pt;}
.y40{bottom:751.934400pt;}
.ycb{bottom:753.391867pt;}
.y6e{bottom:758.434400pt;}
.y152{bottom:758.942400pt;}
.y197{bottom:761.601067pt;}
.ye4{bottom:764.547733pt;}
.y3f{bottom:765.267733pt;}
.yb8{bottom:766.601067pt;}
.y8d{bottom:769.267733pt;}
.y6d{bottom:770.434400pt;}
.yca{bottom:770.725200pt;}
.y196{bottom:776.267733pt;}
.y26{bottom:778.034669pt;}
.y3e{bottom:778.601067pt;}
.y2{bottom:781.661334pt;}
.y6c{bottom:782.434400pt;}
.yb7{bottom:783.934400pt;}
.y8c{bottom:786.601067pt;}
.yc9{bottom:788.058533pt;}
.y195{bottom:790.934400pt;}
.y3d{bottom:791.934400pt;}
.y6b{bottom:794.434400pt;}
.y151{bottom:800.101067pt;}
.yb6{bottom:801.267733pt;}
.y8b{bottom:803.934400pt;}
.y3c{bottom:805.267733pt;}
.y194{bottom:805.601067pt;}
.y6a{bottom:806.434400pt;}
.yc8{bottom:814.725200pt;}
.y150{bottom:816.101067pt;}
.yb5{bottom:818.601067pt;}
.y193{bottom:820.267733pt;}
.y8a{bottom:821.267733pt;}
.y14f{bottom:828.101067pt;}
.y25{bottom:834.613333pt;}
.y192{bottom:834.934400pt;}
.yb4{bottom:835.934400pt;}
.y89{bottom:838.601067pt;}
.y14e{bottom:840.101067pt;}
.y3b{bottom:846.934400pt;}
.y191{bottom:849.601067pt;}
.y14d{bottom:852.101067pt;}
.yb3{bottom:853.267733pt;}
.y88{bottom:855.934400pt;}
.y1{bottom:859.312000pt;}
.y24{bottom:862.613333pt;}
.yc7{bottom:862.934400pt;}
.y14c{bottom:864.101067pt;}
.y190{bottom:864.267733pt;}
.yb2{bottom:870.601067pt;}
.y3a{bottom:870.934400pt;}
.y87{bottom:873.267733pt;}
.y18f{bottom:878.934400pt;}
.yc6{bottom:880.267733pt;}
.y14b{bottom:880.434400pt;}
.y86{bottom:890.601067pt;}
.y18e{bottom:893.601067pt;}
.y14a{bottom:897.101067pt;}
.yb1{bottom:897.267733pt;}
.yc5{bottom:897.601067pt;}
.y39{bottom:905.601067pt;}
.y85{bottom:907.934400pt;}
.y18d{bottom:908.267733pt;}
.y149{bottom:909.101067pt;}
.yc4{bottom:914.934400pt;}
.y23{bottom:920.485335pt;}
.y148{bottom:921.101067pt;}
.y18c{bottom:922.934400pt;}
.y84{bottom:925.267733pt;}
.y36{bottom:931.121067pt;}
.yc3{bottom:932.267733pt;}
.y147{bottom:933.101067pt;}
.y18b{bottom:937.601067pt;}
.y83{bottom:942.601067pt;}
.y146{bottom:945.101067pt;}
.yc2{bottom:949.601067pt;}
.y18a{bottom:952.267733pt;}
.y82{bottom:959.934400pt;}
.y145{bottom:961.101067pt;}
.y66{bottom:963.362000pt;}
.y38{bottom:975.473733pt;}
.yc1{bottom:976.267733pt;}
.y81{bottom:977.267733pt;}
.y144{bottom:977.767733pt;}
.y37{bottom:987.473733pt;}
.yb0{bottom:1014.433867pt;}
.y80{bottom:1014.500533pt;}
.y22{bottom:1035.664002pt;}
.h1a{height:26.693333pt;}
.h17{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1c{height:30.506667pt;}
.h1b{height:30.762667pt;}
.hb{height:32.645833pt;}
.h1e{height:33.080000pt;}
.h16{height:34.320000pt;}
.h1d{height:35.285333pt;}
.h20{height:36.226667pt;}
.hf{height:36.726562pt;}
.h18{height:39.696000pt;}
.h1f{height:39.760000pt;}
.h21{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h19{height:42.298667pt;}
.h3{height:42.840000pt;}
.h12{height:44.106667pt;}
.h15{height:46.312000pt;}
.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;}
.x11{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;}
.xe{left:231.758533pt;}
.x8{left:260.969328pt;}
.x3{left:404.408000pt;}
.xf{left:474.863067pt;}
.x10{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; }
  