
    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_764cfd619e4ffefde05cb2fb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.016113;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_c15263ada5cf9ea9cfa280e0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_50e04ed69ede09ccbe414f8e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_e9bdb5227fdb692bd832a160.woff')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_ef187fd7a908a7b973eaf05b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_753d482a03bfda8e8e3c7381.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_836925927dbfa932e21df071.woff')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_d46ba30092a82253b3b39510.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_95f066aa6bbee086dd6f72d8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_9add76c42cadc9fe2a8b6f52.woff')format("woff");}.ffa{font-family:ffa;line-height:0.957031;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_2708fd9fd160649447b04223.woff')format("woff");}.ffb{font-family:ffb;line-height:1.035156;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_5864bbd13eabdc829f67d01d.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_08cba42ca700bfed5b906bdc.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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;}
.m2{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);}
.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);}
.v5{vertical-align:-27.540000px;}
.v1{vertical-align:-5.760000px;}
.v6{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.440000px;}
.v3{vertical-align:5.760000px;}
.v2{vertical-align:21.600000px;}
.v4{vertical-align:27.540000px;}
.ls34{letter-spacing:-3.600000px;}
.ls12{letter-spacing:-2.736000px;}
.lsf{letter-spacing:-1.746000px;}
.ls54{letter-spacing:-1.728000px;}
.ls5f{letter-spacing:-1.656000px;}
.ls1f{letter-spacing:-1.440000px;}
.ls45{letter-spacing:-1.422000px;}
.ls1e{letter-spacing:-1.296000px;}
.ls1c{letter-spacing:-1.152000px;}
.lsb{letter-spacing:-1.134000px;}
.ls2e{letter-spacing:-0.972000px;}
.ls36{letter-spacing:-0.936000px;}
.ls44{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.720000px;}
.ls52{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.570000px;}
.ls2c{letter-spacing:-0.466800px;}
.lsd{letter-spacing:-0.457800px;}
.ls20{letter-spacing:-0.288000px;}
.ls43{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.181200px;}
.ls65{letter-spacing:-0.144000px;}
.lsa{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.012000px;}
.ls2d{letter-spacing:0.020160px;}
.ls3e{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.120000px;}
.ls39{letter-spacing:0.132480px;}
.ls21{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.152400px;}
.ls25{letter-spacing:0.180000px;}
.ls49{letter-spacing:0.288000px;}
.ls5d{letter-spacing:0.324000px;}
.ls2a{letter-spacing:0.423360px;}
.ls7{letter-spacing:0.457920px;}
.ls69{letter-spacing:0.466560px;}
.ls35{letter-spacing:0.466800px;}
.ls8{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.610560px;}
.ls63{letter-spacing:0.624000px;}
.ls57{letter-spacing:0.648000px;}
.ls56{letter-spacing:0.684000px;}
.ls4{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.732000px;}
.ls3a{letter-spacing:0.768000px;}
.ls30{letter-spacing:0.792000px;}
.ls50{letter-spacing:0.828000px;}
.ls26{letter-spacing:0.840000px;}
.ls22{letter-spacing:0.864000px;}
.ls70{letter-spacing:0.900000px;}
.ls4b{letter-spacing:0.912000px;}
.ls46{letter-spacing:0.936000px;}
.ls3f{letter-spacing:0.938880px;}
.lsc{letter-spacing:0.984000px;}
.ls7b{letter-spacing:1.105920px;}
.ls58{letter-spacing:1.116000px;}
.ls3d{letter-spacing:1.118880px;}
.ls2f{letter-spacing:1.152000px;}
.ls4f{letter-spacing:1.272000px;}
.ls59{letter-spacing:1.296000px;}
.ls13{letter-spacing:1.440000px;}
.ls68{letter-spacing:1.560000px;}
.ls11{letter-spacing:1.584000px;}
.ls40{letter-spacing:1.944000px;}
.ls1{letter-spacing:2.160000px;}
.ls27{letter-spacing:2.280000px;}
.ls6a{letter-spacing:2.309760px;}
.ls4e{letter-spacing:2.340000px;}
.ls3c{letter-spacing:2.520000px;}
.ls28{letter-spacing:2.592000px;}
.ls53{letter-spacing:2.880000px;}
.ls17{letter-spacing:3.600000px;}
.ls55{letter-spacing:3.720000px;}
.ls3{letter-spacing:5.040000px;}
.ls51{letter-spacing:5.160000px;}
.ls5a{letter-spacing:5.220000px;}
.ls19{letter-spacing:6.480000px;}
.ls62{letter-spacing:6.600000px;}
.ls18{letter-spacing:6.660000px;}
.ls2b{letter-spacing:7.920000px;}
.ls2{letter-spacing:9.360000px;}
.ls24{letter-spacing:9.540000px;}
.ls6c{letter-spacing:10.224000px;}
.ls15{letter-spacing:10.800000px;}
.ls16{letter-spacing:12.240000px;}
.ls64{letter-spacing:12.360000px;}
.ls76{letter-spacing:12.840000px;}
.ls1a{letter-spacing:13.680000px;}
.ls73{letter-spacing:13.740000px;}
.ls78{letter-spacing:13.829760px;}
.ls66{letter-spacing:13.860000px;}
.ls72{letter-spacing:13.896000px;}
.ls75{letter-spacing:13.920000px;}
.ls5{letter-spacing:14.040000px;}
.ls7c{letter-spacing:14.100000px;}
.ls77{letter-spacing:14.280000px;}
.ls7a{letter-spacing:14.700000px;}
.ls23{letter-spacing:15.120000px;}
.ls74{letter-spacing:16.344000px;}
.ls33{letter-spacing:16.560000px;}
.ls1b{letter-spacing:18.000000px;}
.ls31{letter-spacing:19.440000px;}
.ls32{letter-spacing:20.880000px;}
.ls4a{letter-spacing:22.320000px;}
.ls3b{letter-spacing:22.500000px;}
.ls67{letter-spacing:23.760000px;}
.ls5c{letter-spacing:23.940000px;}
.ls48{letter-spacing:25.200000px;}
.ls47{letter-spacing:26.640000px;}
.ls79{letter-spacing:28.080000px;}
.ls60{letter-spacing:29.520000px;}
.ls5e{letter-spacing:30.960000px;}
.ls6f{letter-spacing:33.840000px;}
.ls4c{letter-spacing:35.280000px;}
.ls5b{letter-spacing:36.720000px;}
.ls41{letter-spacing:39.600000px;}
.ls42{letter-spacing:41.040000px;}
.ls6e{letter-spacing:41.904000px;}
.ls6b{letter-spacing:51.984000px;}
.ls4d{letter-spacing:74.160000px;}
.ls6d{letter-spacing:83.664000px;}
.ls71{letter-spacing:84.240000px;}
.ls37{letter-spacing:198.156000px;}
.ls0{letter-spacing:220.605120px;}
.ls61{letter-spacing:427.140000px;}
.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;}
}
.ws2c{word-spacing:-32.700000px;}
.ws29{word-spacing:-32.280000px;}
.ws27{word-spacing:-31.920000px;}
.ws25{word-spacing:-31.740000px;}
.ws28{word-spacing:-30.840000px;}
.ws18{word-spacing:-20.880000px;}
.ws26{word-spacing:-20.232000px;}
.ws19{word-spacing:-19.944000px;}
.ws5{word-spacing:-19.584000px;}
.ws7{word-spacing:-19.440000px;}
.ws1c{word-spacing:-19.296000px;}
.ws17{word-spacing:-19.152000px;}
.ws20{word-spacing:-18.648000px;}
.wsa{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws1f{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws13{word-spacing:-17.208000px;}
.ws1a{word-spacing:-17.064000px;}
.ws16{word-spacing:-16.704000px;}
.ws1{word-spacing:-16.560000px;}
.ws1e{word-spacing:-16.344000px;}
.ws1d{word-spacing:-16.272000px;}
.ws10{word-spacing:-15.586800px;}
.ws2{word-spacing:-15.426000px;}
.ws6{word-spacing:-15.264000px;}
.wse{word-spacing:-15.140160px;}
.wsb{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.814000px;}
.wsd{word-spacing:-14.653200px;}
.ws11{word-spacing:-14.184000px;}
.wsf{word-spacing:-14.148000px;}
.ws15{word-spacing:-13.698000px;}
.ws1b{word-spacing:-12.600000px;}
.ws14{word-spacing:-11.880000px;}
.ws3{word-spacing:-10.440000px;}
.ws21{word-spacing:-9.720000px;}
.ws22{word-spacing:-4.968000px;}
.ws23{word-spacing:-3.780000px;}
.ws2a{word-spacing:-3.672000px;}
.ws2b{word-spacing:-3.528000px;}
.ws2d{word-spacing:-3.312000px;}
.ws24{word-spacing:-2.520000px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-5.332320px;}
._b{margin-left:-4.232640px;}
._5{margin-left:-2.974080px;}
._0{margin-left:-1.935360px;}
._1{width:1.383360px;}
._3{width:2.439360px;}
._10{width:3.498720px;}
._4{width:4.635360px;}
._13{width:5.783040px;}
._7{width:7.508160px;}
._15{width:8.636160px;}
._6{width:9.641280px;}
._a{width:11.011680px;}
._16{width:12.713280px;}
._d{width:13.826400px;}
._e{width:15.592320px;}
._14{width:16.912800px;}
._c{width:18.357600px;}
._11{width:19.608000px;}
._12{width:21.222720px;}
._f{width:22.486080px;}
._8{width:23.932800px;}
._9{width:25.537440px;}
._1e{width:26.566080px;}
._20{width:27.582240px;}
._1f{width:28.791360px;}
._21{width:29.856000px;}
._34{width:30.929280px;}
._1b{width:31.966080px;}
._1a{width:33.613440px;}
._2d{width:34.726080px;}
._26{width:35.986560px;}
._2a{width:37.574880px;}
._25{width:38.588160px;}
._24{width:40.092000px;}
._23{width:41.160000px;}
._2f{width:42.966720px;}
._45{width:44.640000px;}
._40{width:45.774720px;}
._41{width:46.923840px;}
._2b{width:48.279360px;}
._2c{width:49.764000px;}
._3d{width:51.012000px;}
._37{width:54.726720px;}
._3a{width:56.688000px;}
._3b{width:57.759360px;}
._32{width:58.800000px;}
._33{width:59.804160px;}
._46{width:61.733280px;}
._19{width:64.961280px;}
._17{width:66.006720px;}
._18{width:67.405440px;}
._31{width:69.135360px;}
._4a{width:70.315200px;}
._3f{width:71.832000px;}
._29{width:73.882080px;}
._4c{width:76.207680px;}
._4b{width:77.643360px;}
._3e{width:79.602720px;}
._43{width:83.496000px;}
._39{width:84.528000px;}
._44{width:85.836000px;}
._28{width:98.694720px;}
._27{width:100.702080px;}
._1c{width:116.316000px;}
._30{width:148.878720px;}
._36{width:175.839360px;}
._47{width:184.536000px;}
._48{width:185.955360px;}
._49{width:187.537440px;}
._22{width:198.156000px;}
._3c{width:201.185760px;}
._4e{width:237.036000px;}
._2e{width:253.273440px;}
._35{width:360.348000px;}
._38{width:376.097280px;}
._2{width:457.284000px;}
._42{width:846.456000px;}
._4d{width:849.485760px;}
.fc5{color:rgb(0,112,192);}
.fc4{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs5{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs8{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y15b{bottom:-22.680000px;}
.y100{bottom:-22.320000px;}
.yc3{bottom:-21.240000px;}
.y161{bottom:-13.320000px;}
.y0{bottom:0.000000px;}
.y96{bottom:4.320000px;}
.y9d{bottom:4.350000px;}
.ye0{bottom:4.674000px;}
.y98{bottom:4.680000px;}
.y10b{bottom:4.710000px;}
.y89{bottom:7.200000px;}
.y87{bottom:7.560000px;}
.y15a{bottom:8.280000px;}
.yff{bottom:8.640000px;}
.yc2{bottom:10.080000px;}
.y83{bottom:12.240000px;}
.ybd{bottom:12.600000px;}
.ydf{bottom:15.114000px;}
.y8b{bottom:16.995000px;}
.y160{bottom:18.000000px;}
.y143{bottom:19.110000px;}
.yfa{bottom:21.954000px;}
.ya1{bottom:25.200000px;}
.y9b{bottom:25.230000px;}
.ya9{bottom:25.245000px;}
.y85{bottom:27.360000px;}
.ybc{bottom:34.920000px;}
.y145{bottom:37.794000px;}
.y159{bottom:39.270000px;}
.yfe{bottom:39.600000px;}
.yc1{bottom:41.040000px;}
.y142{bottom:42.870000px;}
.yf9{bottom:44.994000px;}
.y15f{bottom:48.990000px;}
.y4{bottom:56.880000px;}
.y144{bottom:60.834000px;}
.y158{bottom:70.590000px;}
.yfd{bottom:70.950000px;}
.yc0{bottom:72.000000px;}
.y3{bottom:78.120000px;}
.y15e{bottom:79.950000px;}
.y2{bottom:99.756000px;}
.y157{bottom:101.550000px;}
.y15d{bottom:110.910000px;}
.y1{bottom:123.876000px;}
.y29{bottom:145.116000px;}
.y141{bottom:147.636000px;}
.yde{bottom:148.716000px;}
.y120{bottom:156.630000px;}
.yb6{bottom:157.350000px;}
.y155{bottom:158.070000px;}
.y17d{bottom:159.150000px;}
.y28{bottom:162.390000px;}
.y27{bottom:167.790000px;}
.ydd{bottom:169.590000px;}
.yba{bottom:174.630000px;}
.y19a{bottom:175.710000px;}
.y121{bottom:177.150000px;}
.y140{bottom:178.950000px;}
.y57{bottom:179.670000px;}
.y26{bottom:180.390000px;}
.y17f{bottom:185.070000px;}
.y81{bottom:188.310000px;}
.y154{bottom:189.030000px;}
.y17c{bottom:190.110000px;}
.ydc{bottom:190.830000px;}
.y56{bottom:196.950000px;}
.y11f{bottom:198.030000px;}
.yb9{bottom:205.590000px;}
.y199{bottom:206.670000px;}
.yfb{bottom:209.190000px;}
.y13f{bottom:209.955000px;}
.yda{bottom:212.475000px;}
.y25{bottom:213.915000px;}
.y55{bottom:214.275000px;}
.y80{bottom:219.315000px;}
.y54{bottom:219.675000px;}
.y153{bottom:220.035000px;}
.y17e{bottom:220.395000px;}
.y17b{bottom:221.115000px;}
.yb5{bottom:228.675000px;}
.ybf{bottom:231.195000px;}
.y53{bottom:231.555000px;}
.ydb{bottom:232.995000px;}
.y6a{bottom:236.235000px;}
.yb8{bottom:236.595000px;}
.y65{bottom:236.955000px;}
.y198{bottom:237.675000px;}
.y11d{bottom:240.915000px;}
.y24{bottom:244.875000px;}
.yb4{bottom:245.955000px;}
.y52{bottom:248.475000px;}
.y7f{bottom:250.275000px;}
.y152{bottom:251.355000px;}
.y17a{bottom:252.435000px;}
.yd9{bottom:253.875000px;}
.yb3{bottom:260.355000px;}
.y11e{bottom:261.435000px;}
.y51{bottom:265.755000px;}
.y69{bottom:266.835000px;}
.yb7{bottom:267.555000px;}
.y197{bottom:268.635000px;}
.y64{bottom:271.155000px;}
.y13e{bottom:271.875000px;}
.ybe{bottom:274.395000px;}
.yd8{bottom:275.475000px;}
.y23{bottom:275.835000px;}
.y7e{bottom:281.235000px;}
.yb1{bottom:281.955000px;}
.y11c{bottom:282.315000px;}
.y50{bottom:283.035000px;}
.y179{bottom:283.395000px;}
.y5e{bottom:288.435000px;}
.yd7{bottom:296.715000px;}
.y68{bottom:298.875000px;}
.y196{bottom:299.955000px;}
.y4f{bottom:300.315000px;}
.yb2{bottom:302.475000px;}
.y13d{bottom:303.195000px;}
.y11b{bottom:303.555000px;}
.y22{bottom:307.155000px;}
.y7d{bottom:312.195000px;}
.y151{bottom:313.275000px;}
.y178{bottom:314.355000px;}
.y4e{bottom:317.595000px;}
.y5d{bottom:322.995000px;}
.yb0{bottom:323.355000px;}
.y11a{bottom:325.155000px;}
.y67{bottom:329.835000px;}
.y195{bottom:330.915000px;}
.y13c{bottom:334.185000px;}
.y4d{bottom:334.905000px;}
.y5c{bottom:335.625000px;}
.y21{bottom:338.145000px;}
.y63{bottom:340.305000px;}
.y7c{bottom:343.545000px;}
.y150{bottom:344.265000px;}
.yaf{bottom:344.625000px;}
.y177{bottom:345.345000px;}
.y4c{bottom:352.185000px;}
.y62{bottom:352.905000px;}
.yd6{bottom:359.745000px;}
.y66{bottom:360.825000px;}
.y119{bottom:361.545000px;}
.y194{bottom:361.905000px;}
.y13b{bottom:365.145000px;}
.yad{bottom:366.225000px;}
.y1f{bottom:369.105000px;}
.y4b{bottom:369.465000px;}
.y7b{bottom:374.505000px;}
.y4a{bottom:374.865000px;}
.y14f{bottom:375.585000px;}
.y20{bottom:375.945000px;}
.y176{bottom:376.665000px;}
.yd4{bottom:380.985000px;}
.y49{bottom:386.745000px;}
.yae{bottom:387.105000px;}
.y5b{bottom:391.785000px;}
.y118{bottom:392.505000px;}
.y193{bottom:392.865000px;}
.y13a{bottom:396.105000px;}
.y1e{bottom:400.065000px;}
.yd5{bottom:401.865000px;}
.y48{bottom:404.025000px;}
.y7a{bottom:405.465000px;}
.y14e{bottom:406.545000px;}
.yac{bottom:407.625000px;}
.y47{bottom:409.425000px;}
.yf8{bottom:419.865000px;}
.y46{bottom:422.025000px;}
.yd3{bottom:422.385000px;}
.y5a{bottom:423.105000px;}
.y117{bottom:423.465000px;}
.y192{bottom:424.185000px;}
.y139{bottom:427.425000px;}
.y1d{bottom:428.505000px;}
.yab{bottom:429.225000px;}
.y79{bottom:436.425000px;}
.y14d{bottom:437.505000px;}
.y175{bottom:438.585000px;}
.yd2{bottom:443.985000px;}
.ya8{bottom:450.465000px;}
.yf7{bottom:451.185000px;}
.y44{bottom:454.065000px;}
.y116{bottom:454.785000px;}
.y191{bottom:455.145000px;}
.y1c{bottom:456.945000px;}
.y138{bottom:458.430000px;}
.y45{bottom:460.950000px;}
.y78{bottom:462.750000px;}
.yd0{bottom:465.270000px;}
.y14c{bottom:468.510000px;}
.y174{bottom:469.590000px;}
.yaa{bottom:471.390000px;}
.y115{bottom:471.750000px;}
.yf6{bottom:482.190000px;}
.y43{bottom:485.070000px;}
.yd1{bottom:486.150000px;}
.y1b{bottom:488.310000px;}
.y137{bottom:489.390000px;}
.y59{bottom:491.910000px;}
.y113{bottom:492.990000px;}
.y14b{bottom:499.830000px;}
.y173{bottom:500.910000px;}
.ycf{bottom:506.670000px;}
.yf5{bottom:513.150000px;}
.ya7{bottom:513.510000px;}
.y114{bottom:513.870000px;}
.y77{bottom:514.590000px;}
.y42{bottom:516.030000px;}
.y190{bottom:517.110000px;}
.y1a{bottom:517.830000px;}
.y136{bottom:520.350000px;}
.yce{bottom:528.270000px;}
.y14a{bottom:530.790000px;}
.y172{bottom:531.870000px;}
.y112{bottom:534.390000px;}
.ya5{bottom:534.750000px;}
.y76{bottom:540.150000px;}
.yf4{bottom:544.110000px;}
.y19{bottom:546.270000px;}
.y41{bottom:547.350000px;}
.y18f{bottom:548.430000px;}
.ycd{bottom:549.870000px;}
.y135{bottom:551.670000px;}
.ya6{bottom:555.630000px;}
.y111{bottom:555.990000px;}
.y149{bottom:561.750000px;}
.y171{bottom:562.830000px;}
.y75{bottom:571.110000px;}
.y18{bottom:574.710000px;}
.yf3{bottom:575.070000px;}
.ya4{bottom:576.150000px;}
.y10f{bottom:577.230000px;}
.y40{bottom:578.310000px;}
.y18e{bottom:579.390000px;}
.y134{bottom:582.660000px;}
.ycc{bottom:585.900000px;}
.y148{bottom:592.740000px;}
.y170{bottom:593.820000px;}
.ya3{bottom:597.780000px;}
.y110{bottom:598.140000px;}
.y74{bottom:602.100000px;}
.y17{bottom:603.180000px;}
.yf2{bottom:606.420000px;}
.y3f{bottom:609.300000px;}
.y18d{bottom:610.380000px;}
.y133{bottom:613.620000px;}
.ycb{bottom:617.220000px;}
.y10e{bottom:618.660000px;}
.ya0{bottom:619.020000px;}
.y147{bottom:624.060000px;}
.y16f{bottom:625.140000px;}
.y1a0{bottom:627.300000px;}
.y16{bottom:631.620000px;}
.y73{bottom:633.420000px;}
.yf1{bottom:637.380000px;}
.yfc{bottom:639.540000px;}
.ya2{bottom:639.900000px;}
.y3e{bottom:640.260000px;}
.y18c{bottom:641.340000px;}
.y132{bottom:644.580000px;}
.yca{bottom:648.180000px;}
.y146{bottom:655.020000px;}
.y16e{bottom:656.100000px;}
.y19f{bottom:658.260000px;}
.y15{bottom:660.060000px;}
.y9f{bottom:660.420000px;}
.y10c{bottom:661.500000px;}
.y72{bottom:664.380000px;}
.yf0{bottom:668.340000px;}
.y3d{bottom:671.580000px;}
.y18b{bottom:672.660000px;}
.y15c{bottom:675.180000px;}
.y131{bottom:675.900000px;}
.yc9{bottom:679.140000px;}
.y9e{bottom:682.020000px;}
.y10d{bottom:682.380000px;}
.y156{bottom:683.460000px;}
.y16d{bottom:687.060000px;}
.y14{bottom:688.500000px;}
.y19e{bottom:689.220000px;}
.y71{bottom:695.340000px;}
.yef{bottom:699.300000px;}
.y3c{bottom:702.540000px;}
.y10a{bottom:702.900000px;}
.y9a{bottom:703.620000px;}
.y130{bottom:706.890000px;}
.yc8{bottom:710.130000px;}
.y13{bottom:716.970000px;}
.y16c{bottom:718.050000px;}
.y19d{bottom:720.210000px;}
.y70{bottom:723.810000px;}
.y9c{bottom:724.170000px;}
.y109{bottom:724.530000px;}
.yee{bottom:730.650000px;}
.y3b{bottom:733.530000px;}
.y18a{bottom:734.610000px;}
.y12f{bottom:737.850000px;}
.y58{bottom:740.370000px;}
.yc7{bottom:741.450000px;}
.y86{bottom:742.890000px;}
.y99{bottom:745.050000px;}
.y12{bottom:745.410000px;}
.y107{bottom:746.130000px;}
.y16b{bottom:749.370000px;}
.y6f{bottom:752.250000px;}
.y19c{bottom:754.770000px;}
.yed{bottom:761.610000px;}
.y3a{bottom:764.490000px;}
.y189{bottom:765.570000px;}
.y97{bottom:766.290000px;}
.y108{bottom:766.650000px;}
.y12e{bottom:768.810000px;}
.yc6{bottom:772.410000px;}
.y11{bottom:773.850000px;}
.y16a{bottom:780.330000px;}
.y6e{bottom:783.570000px;}
.y106{bottom:787.530000px;}
.y95{bottom:787.890000px;}
.y19b{bottom:788.970000px;}
.yec{bottom:792.570000px;}
.y39{bottom:795.810000px;}
.y188{bottom:796.530000px;}
.yc5{bottom:799.410000px;}
.y12d{bottom:800.130000px;}
.y10{bottom:802.290000px;}
.y105{bottom:808.770000px;}
.y169{bottom:811.290000px;}
.y6d{bottom:814.530000px;}
.yeb{bottom:823.530000px;}
.y94{bottom:824.250000px;}
.yc4{bottom:826.410000px;}
.y38{bottom:826.770000px;}
.y187{bottom:827.850000px;}
.y103{bottom:830.415000px;}
.yf{bottom:830.775000px;}
.y12c{bottom:831.135000px;}
.y61{bottom:833.655000px;}
.y168{bottom:842.295000px;}
.y12b{bottom:848.055000px;}
.y104{bottom:850.935000px;}
.yea{bottom:854.895000px;}
.y93{bottom:855.255000px;}
.y37{bottom:857.775000px;}
.y186{bottom:858.855000px;}
.ye{bottom:859.215000px;}
.y84{bottom:867.855000px;}
.y129{bottom:869.295000px;}
.y102{bottom:871.815000px;}
.y167{bottom:873.615000px;}
.y8a{bottom:878.760000px;}
.y92{bottom:881.175000px;}
.ye9{bottom:885.855000px;}
.yd{bottom:887.655000px;}
.y35{bottom:888.735000px;}
.y185{bottom:889.815000px;}
.y12a{bottom:890.175000px;}
.y101{bottom:893.055000px;}
.y36{bottom:895.575000px;}
.y166{bottom:904.575000px;}
.y91{bottom:907.095000px;}
.y128{bottom:910.695000px;}
.yc{bottom:914.655000px;}
.ye8{bottom:916.815000px;}
.y34{bottom:919.695000px;}
.y184{bottom:920.775000px;}
.y127{bottom:932.295000px;}
.y165{bottom:935.535000px;}
.y90{bottom:938.055000px;}
.yb{bottom:943.815000px;}
.ye7{bottom:947.775000px;}
.y33{bottom:951.015000px;}
.y183{bottom:952.095000px;}
.y126{bottom:953.925000px;}
.y6c{bottom:961.485000px;}
.ybb{bottom:966.525000px;}
.y8f{bottom:969.045000px;}
.ya{bottom:974.445000px;}
.ye6{bottom:979.125000px;}
.y32{bottom:982.005000px;}
.y182{bottom:986.325000px;}
.y6b{bottom:992.445000px;}
.y125{bottom:995.325000px;}
.y8e{bottom:996.045000px;}
.y164{bottom:997.845000px;}
.y9{bottom:1007.925000px;}
.y31{bottom:1012.965000px;}
.y124{bottom:1016.565000px;}
.ye4{bottom:1017.285000px;}
.y60{bottom:1019.805000px;}
.y8d{bottom:1023.045000px;}
.y88{bottom:1027.005000px;}
.y163{bottom:1028.805000px;}
.y181{bottom:1029.165000px;}
.y82{bottom:1032.405000px;}
.ye5{bottom:1038.165000px;}
.y30{bottom:1043.925000px;}
.y8{bottom:1044.285000px;}
.y8c{bottom:1049.325000px;}
.ye3{bottom:1058.685000px;}
.y162{bottom:1062.645000px;}
.y180{bottom:1072.005000px;}
.y2f{bottom:1075.245000px;}
.y7{bottom:1077.810000px;}
.y123{bottom:1079.610000px;}
.ye2{bottom:1080.330000px;}
.y5f{bottom:1082.130000px;}
.y122{bottom:1100.850000px;}
.ye1{bottom:1101.570000px;}
.y2d{bottom:1106.250000px;}
.y6{bottom:1109.490000px;}
.y2e{bottom:1113.090000px;}
.y2c{bottom:1126.770000px;}
.y5{bottom:1140.450000px;}
.y2b{bottom:1159.890000px;}
.y2a{bottom:1192.290000px;}
.h17{height:20.520000px;}
.h1c{height:20.556000px;}
.h19{height:20.880000px;}
.h1e{height:20.916000px;}
.h14{height:23.400000px;}
.h13{height:23.760000px;}
.h11{height:28.440000px;}
.hb{height:38.158594px;}
.h15{height:38.160000px;}
.h22{height:40.985156px;}
.h24{height:41.400000px;}
.h18{height:42.120000px;}
.h27{height:42.156000px;}
.h12{height:44.280000px;}
.h9{height:46.638281px;}
.h2{height:47.368125px;}
.h21{height:51.120000px;}
.he{height:52.949531px;}
.h16{height:55.147500px;}
.h2d{height:56.390625px;}
.h28{height:59.076000px;}
.h8{height:59.357813px;}
.hd{height:59.758594px;}
.h6{height:60.952500px;}
.h25{height:61.236000px;}
.h20{height:61.920000px;}
.h1b{height:61.956000px;}
.h1d{height:62.280000px;}
.h1f{height:62.316000px;}
.hc{height:63.035156px;}
.h7{height:65.010937px;}
.ha{height:65.884219px;}
.h1a{height:70.628906px;}
.h3{height:70.664062px;}
.h4{height:72.562500px;}
.h10{height:73.998281px;}
.h2c{height:74.004654px;}
.hf{height:74.178281px;}
.h29{height:77.076000px;}
.h5{height:81.970312px;}
.h26{height:87.156000px;}
.h23{height:88.200000px;}
.h2a{height:117.756000px;}
.h2b{height:127.116000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.636000px;}
.w6{width:21.996000px;}
.w7{width:28.440000px;}
.w4{width:45.036000px;}
.w5{width:48.276000px;}
.w14{width:52.200000px;}
.w10{width:59.076000px;}
.w11{width:59.400000px;}
.w12{width:59.796000px;}
.w13{width:60.516000px;}
.w19{width:63.000000px;}
.wd{width:65.160000px;}
.we{width:65.196000px;}
.wf{width:65.556000px;}
.w8{width:74.160000px;}
.wa{width:84.636000px;}
.w15{width:95.796000px;}
.w18{width:193.755000px;}
.wb{width:195.915000px;}
.wc{width:290.985000px;}
.w1a{width:333.510000px;}
.w1d{width:335.670000px;}
.w1c{width:340.350000px;}
.w16{width:341.790000px;}
.w1f{width:345.030000px;}
.w1e{width:351.870000px;}
.w17{width:484.410000px;}
.w1b{width:488.370000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x24{left:8.280000px;}
.x3c{left:9.360000px;}
.x1e{left:10.800000px;}
.x38{left:12.240000px;}
.x58{left:13.716000px;}
.x37{left:14.790000px;}
.x35{left:16.203000px;}
.x22{left:17.640000px;}
.x36{left:18.720000px;}
.x34{left:20.880000px;}
.x2b{left:22.320000px;}
.x2e{left:23.400000px;}
.x30{left:24.840000px;}
.x49{left:25.956000px;}
.x3d{left:27.360000px;}
.x3b{left:28.800000px;}
.x63{left:29.880000px;}
.x3e{left:30.960000px;}
.x5b{left:32.040000px;}
.x48{left:33.876000px;}
.x64{left:35.280000px;}
.x3a{left:38.883000px;}
.x4f{left:39.960000px;}
.x28{left:41.040000px;}
.x39{left:42.123000px;}
.x43{left:43.599000px;}
.x65{left:83.565000px;}
.x61{left:87.159000px;}
.x1{left:106.235987px;}
.x2a{left:114.885000px;}
.x57{left:116.316000px;}
.x23{left:134.352000px;}
.x4b{left:135.432000px;}
.x4a{left:153.429000px;}
.x5a{left:155.229000px;}
.x3{left:160.274987px;}
.x7{left:164.594987px;}
.x1b{left:169.634987px;}
.xf{left:201.314973px;}
.x10{left:207.434987px;}
.x25{left:208.515000px;}
.x4c{left:209.595000px;}
.x9{left:218.264973px;}
.xa{left:224.384987px;}
.x4{left:226.904973px;}
.x26{left:230.145000px;}
.x4d{left:231.225000px;}
.x5{left:233.024987px;}
.x27{left:314.790000px;}
.x4e{left:315.870000px;}
.x6{left:322.349987px;}
.x1c{left:336.749987px;}
.x17{left:369.509973px;}
.x18{left:375.629987px;}
.x51{left:378.870000px;}
.x2c{left:379.950000px;}
.x5f{left:419.939973px;}
.x60{left:432.179987px;}
.x2d{left:445.140000px;}
.x5e{left:457.379987px;}
.x41{left:459.539987px;}
.x40{left:462.779987px;}
.x2{left:467.819987px;}
.x62{left:483.330000px;}
.x66{left:494.849987px;}
.x11{left:499.169973px;}
.x12{left:505.289987px;}
.x50{left:509.610000px;}
.x29{left:510.690000px;}
.x56{left:513.569987px;}
.x42{left:515.729987px;}
.x3f{left:516.809987px;}
.x5d{left:521.489987px;}
.x5c{left:523.649987px;}
.x20{left:551.370000px;}
.x6a{left:559.334987px;}
.x52{left:568.695000px;}
.x2f{left:569.775000px;}
.x8{left:603.974987px;}
.x46{left:606.134987px;}
.x45{left:608.294987px;}
.x59{left:609.374987px;}
.x21{left:617.760000px;}
.x6b{left:627.014987px;}
.x53{left:628.095000px;}
.x31{left:629.175000px;}
.x44{left:640.724987px;}
.x69{left:647.204987px;}
.x19{left:650.444973px;}
.xd{left:653.684973px;}
.x68{left:658.364987px;}
.xe{left:659.804987px;}
.x1a{left:662.684987px;}
.x54{left:687.885000px;}
.x32{left:688.965000px;}
.x67{left:699.044987px;}
.x13{left:738.329973px;}
.x14{left:744.449987px;}
.x55{left:748.410000px;}
.x33{left:749.490000px;}
.xb{left:753.809973px;}
.xc{left:759.929987px;}
.x1f{left:777.210000px;}
.x1d{left:784.050000px;}
.x47{left:814.679973px;}
.x15{left:818.999973px;}
.x16{left:825.119987px;}
.x6c{left:829.439987px;}
@media print{
.v5{vertical-align:-24.480000pt;}
.v1{vertical-align:-5.120000pt;}
.v6{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.280000pt;}
.v3{vertical-align:5.120000pt;}
.v2{vertical-align:19.200000pt;}
.v4{vertical-align:24.480000pt;}
.ls34{letter-spacing:-3.200000pt;}
.ls12{letter-spacing:-2.432000pt;}
.lsf{letter-spacing:-1.552000pt;}
.ls54{letter-spacing:-1.536000pt;}
.ls5f{letter-spacing:-1.472000pt;}
.ls1f{letter-spacing:-1.280000pt;}
.ls45{letter-spacing:-1.264000pt;}
.ls1e{letter-spacing:-1.152000pt;}
.ls1c{letter-spacing:-1.024000pt;}
.lsb{letter-spacing:-1.008000pt;}
.ls2e{letter-spacing:-0.864000pt;}
.ls36{letter-spacing:-0.832000pt;}
.ls44{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls52{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.506667pt;}
.ls2c{letter-spacing:-0.414933pt;}
.lsd{letter-spacing:-0.406933pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls43{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.161067pt;}
.ls65{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.010667pt;}
.ls2d{letter-spacing:0.017920pt;}
.ls3e{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls39{letter-spacing:0.117760pt;}
.ls21{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.135467pt;}
.ls25{letter-spacing:0.160000pt;}
.ls49{letter-spacing:0.256000pt;}
.ls5d{letter-spacing:0.288000pt;}
.ls2a{letter-spacing:0.376320pt;}
.ls7{letter-spacing:0.407040pt;}
.ls69{letter-spacing:0.414720pt;}
.ls35{letter-spacing:0.414933pt;}
.ls8{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.542720pt;}
.ls63{letter-spacing:0.554667pt;}
.ls57{letter-spacing:0.576000pt;}
.ls56{letter-spacing:0.608000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.650667pt;}
.ls3a{letter-spacing:0.682667pt;}
.ls30{letter-spacing:0.704000pt;}
.ls50{letter-spacing:0.736000pt;}
.ls26{letter-spacing:0.746667pt;}
.ls22{letter-spacing:0.768000pt;}
.ls70{letter-spacing:0.800000pt;}
.ls4b{letter-spacing:0.810667pt;}
.ls46{letter-spacing:0.832000pt;}
.ls3f{letter-spacing:0.834560pt;}
.lsc{letter-spacing:0.874667pt;}
.ls7b{letter-spacing:0.983040pt;}
.ls58{letter-spacing:0.992000pt;}
.ls3d{letter-spacing:0.994560pt;}
.ls2f{letter-spacing:1.024000pt;}
.ls4f{letter-spacing:1.130667pt;}
.ls59{letter-spacing:1.152000pt;}
.ls13{letter-spacing:1.280000pt;}
.ls68{letter-spacing:1.386667pt;}
.ls11{letter-spacing:1.408000pt;}
.ls40{letter-spacing:1.728000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls27{letter-spacing:2.026667pt;}
.ls6a{letter-spacing:2.053120pt;}
.ls4e{letter-spacing:2.080000pt;}
.ls3c{letter-spacing:2.240000pt;}
.ls28{letter-spacing:2.304000pt;}
.ls53{letter-spacing:2.560000pt;}
.ls17{letter-spacing:3.200000pt;}
.ls55{letter-spacing:3.306667pt;}
.ls3{letter-spacing:4.480000pt;}
.ls51{letter-spacing:4.586667pt;}
.ls5a{letter-spacing:4.640000pt;}
.ls19{letter-spacing:5.760000pt;}
.ls62{letter-spacing:5.866667pt;}
.ls18{letter-spacing:5.920000pt;}
.ls2b{letter-spacing:7.040000pt;}
.ls2{letter-spacing:8.320000pt;}
.ls24{letter-spacing:8.480000pt;}
.ls6c{letter-spacing:9.088000pt;}
.ls15{letter-spacing:9.600000pt;}
.ls16{letter-spacing:10.880000pt;}
.ls64{letter-spacing:10.986667pt;}
.ls76{letter-spacing:11.413333pt;}
.ls1a{letter-spacing:12.160000pt;}
.ls73{letter-spacing:12.213333pt;}
.ls78{letter-spacing:12.293120pt;}
.ls66{letter-spacing:12.320000pt;}
.ls72{letter-spacing:12.352000pt;}
.ls75{letter-spacing:12.373333pt;}
.ls5{letter-spacing:12.480000pt;}
.ls7c{letter-spacing:12.533333pt;}
.ls77{letter-spacing:12.693333pt;}
.ls7a{letter-spacing:13.066667pt;}
.ls23{letter-spacing:13.440000pt;}
.ls74{letter-spacing:14.528000pt;}
.ls33{letter-spacing:14.720000pt;}
.ls1b{letter-spacing:16.000000pt;}
.ls31{letter-spacing:17.280000pt;}
.ls32{letter-spacing:18.560000pt;}
.ls4a{letter-spacing:19.840000pt;}
.ls3b{letter-spacing:20.000000pt;}
.ls67{letter-spacing:21.120000pt;}
.ls5c{letter-spacing:21.280000pt;}
.ls48{letter-spacing:22.400000pt;}
.ls47{letter-spacing:23.680000pt;}
.ls79{letter-spacing:24.960000pt;}
.ls60{letter-spacing:26.240000pt;}
.ls5e{letter-spacing:27.520000pt;}
.ls6f{letter-spacing:30.080000pt;}
.ls4c{letter-spacing:31.360000pt;}
.ls5b{letter-spacing:32.640000pt;}
.ls41{letter-spacing:35.200000pt;}
.ls42{letter-spacing:36.480000pt;}
.ls6e{letter-spacing:37.248000pt;}
.ls6b{letter-spacing:46.208000pt;}
.ls4d{letter-spacing:65.920000pt;}
.ls6d{letter-spacing:74.368000pt;}
.ls71{letter-spacing:74.880000pt;}
.ls37{letter-spacing:176.138667pt;}
.ls0{letter-spacing:196.093440pt;}
.ls61{letter-spacing:379.680000pt;}
.ws2c{word-spacing:-29.066667pt;}
.ws29{word-spacing:-28.693333pt;}
.ws27{word-spacing:-28.373333pt;}
.ws25{word-spacing:-28.213333pt;}
.ws28{word-spacing:-27.413333pt;}
.ws18{word-spacing:-18.560000pt;}
.ws26{word-spacing:-17.984000pt;}
.ws19{word-spacing:-17.728000pt;}
.ws5{word-spacing:-17.408000pt;}
.ws7{word-spacing:-17.280000pt;}
.ws1c{word-spacing:-17.152000pt;}
.ws17{word-spacing:-17.024000pt;}
.ws20{word-spacing:-16.576000pt;}
.wsa{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1f{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws13{word-spacing:-15.296000pt;}
.ws1a{word-spacing:-15.168000pt;}
.ws16{word-spacing:-14.848000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws1e{word-spacing:-14.528000pt;}
.ws1d{word-spacing:-14.464000pt;}
.ws10{word-spacing:-13.854933pt;}
.ws2{word-spacing:-13.712000pt;}
.ws6{word-spacing:-13.568000pt;}
.wse{word-spacing:-13.457920pt;}
.wsb{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.168000pt;}
.wsd{word-spacing:-13.025067pt;}
.ws11{word-spacing:-12.608000pt;}
.wsf{word-spacing:-12.576000pt;}
.ws15{word-spacing:-12.176000pt;}
.ws1b{word-spacing:-11.200000pt;}
.ws14{word-spacing:-10.560000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws21{word-spacing:-8.640000pt;}
.ws22{word-spacing:-4.416000pt;}
.ws23{word-spacing:-3.360000pt;}
.ws2a{word-spacing:-3.264000pt;}
.ws2b{word-spacing:-3.136000pt;}
.ws2d{word-spacing:-2.944000pt;}
.ws24{word-spacing:-2.240000pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-4.739840pt;}
._b{margin-left:-3.762347pt;}
._5{margin-left:-2.643627pt;}
._0{margin-left:-1.720320pt;}
._1{width:1.229653pt;}
._3{width:2.168320pt;}
._10{width:3.109973pt;}
._4{width:4.120320pt;}
._13{width:5.140480pt;}
._7{width:6.673920pt;}
._15{width:7.676587pt;}
._6{width:8.570027pt;}
._a{width:9.788160pt;}
._16{width:11.300693pt;}
._d{width:12.290133pt;}
._e{width:13.859840pt;}
._14{width:15.033600pt;}
._c{width:16.317867pt;}
._11{width:17.429333pt;}
._12{width:18.864640pt;}
._f{width:19.987627pt;}
._8{width:21.273600pt;}
._9{width:22.699947pt;}
._1e{width:23.614293pt;}
._20{width:24.517547pt;}
._1f{width:25.592320pt;}
._21{width:26.538667pt;}
._34{width:27.492693pt;}
._1b{width:28.414293pt;}
._1a{width:29.878613pt;}
._2d{width:30.867627pt;}
._26{width:31.988053pt;}
._2a{width:33.399893pt;}
._25{width:34.300587pt;}
._24{width:35.637333pt;}
._23{width:36.586667pt;}
._2f{width:38.192640pt;}
._45{width:39.680000pt;}
._40{width:40.688640pt;}
._41{width:41.710080pt;}
._2b{width:42.914987pt;}
._2c{width:44.234667pt;}
._3d{width:45.344000pt;}
._37{width:48.645973pt;}
._3a{width:50.389333pt;}
._3b{width:51.341653pt;}
._32{width:52.266667pt;}
._33{width:53.159253pt;}
._46{width:54.874027pt;}
._19{width:57.743360pt;}
._17{width:58.672640pt;}
._18{width:59.915947pt;}
._31{width:61.453653pt;}
._4a{width:62.502400pt;}
._3f{width:63.850667pt;}
._29{width:65.672960pt;}
._4c{width:67.740160pt;}
._4b{width:69.016320pt;}
._3e{width:70.757973pt;}
._43{width:74.218667pt;}
._39{width:75.136000pt;}
._44{width:76.298667pt;}
._28{width:87.728640pt;}
._27{width:89.512960pt;}
._1c{width:103.392000pt;}
._30{width:132.336640pt;}
._36{width:156.301653pt;}
._47{width:164.032000pt;}
._48{width:165.293653pt;}
._49{width:166.699947pt;}
._22{width:176.138667pt;}
._3c{width:178.831787pt;}
._4e{width:210.698667pt;}
._2e{width:225.131947pt;}
._35{width:320.309333pt;}
._38{width:334.308693pt;}
._2{width:406.474667pt;}
._42{width:752.405333pt;}
._4d{width:755.098453pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs8{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y15b{bottom:-20.160000pt;}
.y100{bottom:-19.840000pt;}
.yc3{bottom:-18.880000pt;}
.y161{bottom:-11.840000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:3.840000pt;}
.y9d{bottom:3.866667pt;}
.ye0{bottom:4.154667pt;}
.y98{bottom:4.160000pt;}
.y10b{bottom:4.186667pt;}
.y89{bottom:6.400000pt;}
.y87{bottom:6.720000pt;}
.y15a{bottom:7.360000pt;}
.yff{bottom:7.680000pt;}
.yc2{bottom:8.960000pt;}
.y83{bottom:10.880000pt;}
.ybd{bottom:11.200000pt;}
.ydf{bottom:13.434667pt;}
.y8b{bottom:15.106667pt;}
.y160{bottom:16.000000pt;}
.y143{bottom:16.986667pt;}
.yfa{bottom:19.514667pt;}
.ya1{bottom:22.400000pt;}
.y9b{bottom:22.426667pt;}
.ya9{bottom:22.440000pt;}
.y85{bottom:24.320000pt;}
.ybc{bottom:31.040000pt;}
.y145{bottom:33.594667pt;}
.y159{bottom:34.906667pt;}
.yfe{bottom:35.200000pt;}
.yc1{bottom:36.480000pt;}
.y142{bottom:38.106667pt;}
.yf9{bottom:39.994667pt;}
.y15f{bottom:43.546667pt;}
.y4{bottom:50.560000pt;}
.y144{bottom:54.074667pt;}
.y158{bottom:62.746667pt;}
.yfd{bottom:63.066667pt;}
.yc0{bottom:64.000000pt;}
.y3{bottom:69.440000pt;}
.y15e{bottom:71.066667pt;}
.y2{bottom:88.672000pt;}
.y157{bottom:90.266667pt;}
.y15d{bottom:98.586667pt;}
.y1{bottom:110.112000pt;}
.y29{bottom:128.992000pt;}
.y141{bottom:131.232000pt;}
.yde{bottom:132.192000pt;}
.y120{bottom:139.226667pt;}
.yb6{bottom:139.866667pt;}
.y155{bottom:140.506667pt;}
.y17d{bottom:141.466667pt;}
.y28{bottom:144.346667pt;}
.y27{bottom:149.146667pt;}
.ydd{bottom:150.746667pt;}
.yba{bottom:155.226667pt;}
.y19a{bottom:156.186667pt;}
.y121{bottom:157.466667pt;}
.y140{bottom:159.066667pt;}
.y57{bottom:159.706667pt;}
.y26{bottom:160.346667pt;}
.y17f{bottom:164.506667pt;}
.y81{bottom:167.386667pt;}
.y154{bottom:168.026667pt;}
.y17c{bottom:168.986667pt;}
.ydc{bottom:169.626667pt;}
.y56{bottom:175.066667pt;}
.y11f{bottom:176.026667pt;}
.yb9{bottom:182.746667pt;}
.y199{bottom:183.706667pt;}
.yfb{bottom:185.946667pt;}
.y13f{bottom:186.626667pt;}
.yda{bottom:188.866667pt;}
.y25{bottom:190.146667pt;}
.y55{bottom:190.466667pt;}
.y80{bottom:194.946667pt;}
.y54{bottom:195.266667pt;}
.y153{bottom:195.586667pt;}
.y17e{bottom:195.906667pt;}
.y17b{bottom:196.546667pt;}
.yb5{bottom:203.266667pt;}
.ybf{bottom:205.506667pt;}
.y53{bottom:205.826667pt;}
.ydb{bottom:207.106667pt;}
.y6a{bottom:209.986667pt;}
.yb8{bottom:210.306667pt;}
.y65{bottom:210.626667pt;}
.y198{bottom:211.266667pt;}
.y11d{bottom:214.146667pt;}
.y24{bottom:217.666667pt;}
.yb4{bottom:218.626667pt;}
.y52{bottom:220.866667pt;}
.y7f{bottom:222.466667pt;}
.y152{bottom:223.426667pt;}
.y17a{bottom:224.386667pt;}
.yd9{bottom:225.666667pt;}
.yb3{bottom:231.426667pt;}
.y11e{bottom:232.386667pt;}
.y51{bottom:236.226667pt;}
.y69{bottom:237.186667pt;}
.yb7{bottom:237.826667pt;}
.y197{bottom:238.786667pt;}
.y64{bottom:241.026667pt;}
.y13e{bottom:241.666667pt;}
.ybe{bottom:243.906667pt;}
.yd8{bottom:244.866667pt;}
.y23{bottom:245.186667pt;}
.y7e{bottom:249.986667pt;}
.yb1{bottom:250.626667pt;}
.y11c{bottom:250.946667pt;}
.y50{bottom:251.586667pt;}
.y179{bottom:251.906667pt;}
.y5e{bottom:256.386667pt;}
.yd7{bottom:263.746667pt;}
.y68{bottom:265.666667pt;}
.y196{bottom:266.626667pt;}
.y4f{bottom:266.946667pt;}
.yb2{bottom:268.866667pt;}
.y13d{bottom:269.506667pt;}
.y11b{bottom:269.826667pt;}
.y22{bottom:273.026667pt;}
.y7d{bottom:277.506667pt;}
.y151{bottom:278.466667pt;}
.y178{bottom:279.426667pt;}
.y4e{bottom:282.306667pt;}
.y5d{bottom:287.106667pt;}
.yb0{bottom:287.426667pt;}
.y11a{bottom:289.026667pt;}
.y67{bottom:293.186667pt;}
.y195{bottom:294.146667pt;}
.y13c{bottom:297.053333pt;}
.y4d{bottom:297.693333pt;}
.y5c{bottom:298.333333pt;}
.y21{bottom:300.573333pt;}
.y63{bottom:302.493333pt;}
.y7c{bottom:305.373333pt;}
.y150{bottom:306.013333pt;}
.yaf{bottom:306.333333pt;}
.y177{bottom:306.973333pt;}
.y4c{bottom:313.053333pt;}
.y62{bottom:313.693333pt;}
.yd6{bottom:319.773333pt;}
.y66{bottom:320.733333pt;}
.y119{bottom:321.373333pt;}
.y194{bottom:321.693333pt;}
.y13b{bottom:324.573333pt;}
.yad{bottom:325.533333pt;}
.y1f{bottom:328.093333pt;}
.y4b{bottom:328.413333pt;}
.y7b{bottom:332.893333pt;}
.y4a{bottom:333.213333pt;}
.y14f{bottom:333.853333pt;}
.y20{bottom:334.173333pt;}
.y176{bottom:334.813333pt;}
.yd4{bottom:338.653333pt;}
.y49{bottom:343.773333pt;}
.yae{bottom:344.093333pt;}
.y5b{bottom:348.253333pt;}
.y118{bottom:348.893333pt;}
.y193{bottom:349.213333pt;}
.y13a{bottom:352.093333pt;}
.y1e{bottom:355.613333pt;}
.yd5{bottom:357.213333pt;}
.y48{bottom:359.133333pt;}
.y7a{bottom:360.413333pt;}
.y14e{bottom:361.373333pt;}
.yac{bottom:362.333333pt;}
.y47{bottom:363.933333pt;}
.yf8{bottom:373.213333pt;}
.y46{bottom:375.133333pt;}
.yd3{bottom:375.453333pt;}
.y5a{bottom:376.093333pt;}
.y117{bottom:376.413333pt;}
.y192{bottom:377.053333pt;}
.y139{bottom:379.933333pt;}
.y1d{bottom:380.893333pt;}
.yab{bottom:381.533333pt;}
.y79{bottom:387.933333pt;}
.y14d{bottom:388.893333pt;}
.y175{bottom:389.853333pt;}
.yd2{bottom:394.653333pt;}
.ya8{bottom:400.413333pt;}
.yf7{bottom:401.053333pt;}
.y44{bottom:403.613333pt;}
.y116{bottom:404.253333pt;}
.y191{bottom:404.573333pt;}
.y1c{bottom:406.173333pt;}
.y138{bottom:407.493333pt;}
.y45{bottom:409.733333pt;}
.y78{bottom:411.333333pt;}
.yd0{bottom:413.573333pt;}
.y14c{bottom:416.453333pt;}
.y174{bottom:417.413333pt;}
.yaa{bottom:419.013333pt;}
.y115{bottom:419.333333pt;}
.yf6{bottom:428.613333pt;}
.y43{bottom:431.173333pt;}
.yd1{bottom:432.133333pt;}
.y1b{bottom:434.053333pt;}
.y137{bottom:435.013333pt;}
.y59{bottom:437.253333pt;}
.y113{bottom:438.213333pt;}
.y14b{bottom:444.293333pt;}
.y173{bottom:445.253333pt;}
.ycf{bottom:450.373333pt;}
.yf5{bottom:456.133333pt;}
.ya7{bottom:456.453333pt;}
.y114{bottom:456.773333pt;}
.y77{bottom:457.413333pt;}
.y42{bottom:458.693333pt;}
.y190{bottom:459.653333pt;}
.y1a{bottom:460.293333pt;}
.y136{bottom:462.533333pt;}
.yce{bottom:469.573333pt;}
.y14a{bottom:471.813333pt;}
.y172{bottom:472.773333pt;}
.y112{bottom:475.013333pt;}
.ya5{bottom:475.333333pt;}
.y76{bottom:480.133333pt;}
.yf4{bottom:483.653333pt;}
.y19{bottom:485.573333pt;}
.y41{bottom:486.533333pt;}
.y18f{bottom:487.493333pt;}
.ycd{bottom:488.773333pt;}
.y135{bottom:490.373333pt;}
.ya6{bottom:493.893333pt;}
.y111{bottom:494.213333pt;}
.y149{bottom:499.333333pt;}
.y171{bottom:500.293333pt;}
.y75{bottom:507.653333pt;}
.y18{bottom:510.853333pt;}
.yf3{bottom:511.173333pt;}
.ya4{bottom:512.133333pt;}
.y10f{bottom:513.093333pt;}
.y40{bottom:514.053333pt;}
.y18e{bottom:515.013333pt;}
.y134{bottom:517.920000pt;}
.ycc{bottom:520.800000pt;}
.y148{bottom:526.880000pt;}
.y170{bottom:527.840000pt;}
.ya3{bottom:531.360000pt;}
.y110{bottom:531.680000pt;}
.y74{bottom:535.200000pt;}
.y17{bottom:536.160000pt;}
.yf2{bottom:539.040000pt;}
.y3f{bottom:541.600000pt;}
.y18d{bottom:542.560000pt;}
.y133{bottom:545.440000pt;}
.ycb{bottom:548.640000pt;}
.y10e{bottom:549.920000pt;}
.ya0{bottom:550.240000pt;}
.y147{bottom:554.720000pt;}
.y16f{bottom:555.680000pt;}
.y1a0{bottom:557.600000pt;}
.y16{bottom:561.440000pt;}
.y73{bottom:563.040000pt;}
.yf1{bottom:566.560000pt;}
.yfc{bottom:568.480000pt;}
.ya2{bottom:568.800000pt;}
.y3e{bottom:569.120000pt;}
.y18c{bottom:570.080000pt;}
.y132{bottom:572.960000pt;}
.yca{bottom:576.160000pt;}
.y146{bottom:582.240000pt;}
.y16e{bottom:583.200000pt;}
.y19f{bottom:585.120000pt;}
.y15{bottom:586.720000pt;}
.y9f{bottom:587.040000pt;}
.y10c{bottom:588.000000pt;}
.y72{bottom:590.560000pt;}
.yf0{bottom:594.080000pt;}
.y3d{bottom:596.960000pt;}
.y18b{bottom:597.920000pt;}
.y15c{bottom:600.160000pt;}
.y131{bottom:600.800000pt;}
.yc9{bottom:603.680000pt;}
.y9e{bottom:606.240000pt;}
.y10d{bottom:606.560000pt;}
.y156{bottom:607.520000pt;}
.y16d{bottom:610.720000pt;}
.y14{bottom:612.000000pt;}
.y19e{bottom:612.640000pt;}
.y71{bottom:618.080000pt;}
.yef{bottom:621.600000pt;}
.y3c{bottom:624.480000pt;}
.y10a{bottom:624.800000pt;}
.y9a{bottom:625.440000pt;}
.y130{bottom:628.346667pt;}
.yc8{bottom:631.226667pt;}
.y13{bottom:637.306667pt;}
.y16c{bottom:638.266667pt;}
.y19d{bottom:640.186667pt;}
.y70{bottom:643.386667pt;}
.y9c{bottom:643.706667pt;}
.y109{bottom:644.026667pt;}
.yee{bottom:649.466667pt;}
.y3b{bottom:652.026667pt;}
.y18a{bottom:652.986667pt;}
.y12f{bottom:655.866667pt;}
.y58{bottom:658.106667pt;}
.yc7{bottom:659.066667pt;}
.y86{bottom:660.346667pt;}
.y99{bottom:662.266667pt;}
.y12{bottom:662.586667pt;}
.y107{bottom:663.226667pt;}
.y16b{bottom:666.106667pt;}
.y6f{bottom:668.666667pt;}
.y19c{bottom:670.906667pt;}
.yed{bottom:676.986667pt;}
.y3a{bottom:679.546667pt;}
.y189{bottom:680.506667pt;}
.y97{bottom:681.146667pt;}
.y108{bottom:681.466667pt;}
.y12e{bottom:683.386667pt;}
.yc6{bottom:686.586667pt;}
.y11{bottom:687.866667pt;}
.y16a{bottom:693.626667pt;}
.y6e{bottom:696.506667pt;}
.y106{bottom:700.026667pt;}
.y95{bottom:700.346667pt;}
.y19b{bottom:701.306667pt;}
.yec{bottom:704.506667pt;}
.y39{bottom:707.386667pt;}
.y188{bottom:708.026667pt;}
.yc5{bottom:710.586667pt;}
.y12d{bottom:711.226667pt;}
.y10{bottom:713.146667pt;}
.y105{bottom:718.906667pt;}
.y169{bottom:721.146667pt;}
.y6d{bottom:724.026667pt;}
.yeb{bottom:732.026667pt;}
.y94{bottom:732.666667pt;}
.yc4{bottom:734.586667pt;}
.y38{bottom:734.906667pt;}
.y187{bottom:735.866667pt;}
.y103{bottom:738.146667pt;}
.yf{bottom:738.466667pt;}
.y12c{bottom:738.786667pt;}
.y61{bottom:741.026667pt;}
.y168{bottom:748.706667pt;}
.y12b{bottom:753.826667pt;}
.y104{bottom:756.386667pt;}
.yea{bottom:759.906667pt;}
.y93{bottom:760.226667pt;}
.y37{bottom:762.466667pt;}
.y186{bottom:763.426667pt;}
.ye{bottom:763.746667pt;}
.y84{bottom:771.426667pt;}
.y129{bottom:772.706667pt;}
.y102{bottom:774.946667pt;}
.y167{bottom:776.546667pt;}
.y8a{bottom:781.120000pt;}
.y92{bottom:783.266667pt;}
.ye9{bottom:787.426667pt;}
.yd{bottom:789.026667pt;}
.y35{bottom:789.986667pt;}
.y185{bottom:790.946667pt;}
.y12a{bottom:791.266667pt;}
.y101{bottom:793.826667pt;}
.y36{bottom:796.066667pt;}
.y166{bottom:804.066667pt;}
.y91{bottom:806.306667pt;}
.y128{bottom:809.506667pt;}
.yc{bottom:813.026667pt;}
.ye8{bottom:814.946667pt;}
.y34{bottom:817.506667pt;}
.y184{bottom:818.466667pt;}
.y127{bottom:828.706667pt;}
.y165{bottom:831.586667pt;}
.y90{bottom:833.826667pt;}
.yb{bottom:838.946667pt;}
.ye7{bottom:842.466667pt;}
.y33{bottom:845.346667pt;}
.y183{bottom:846.306667pt;}
.y126{bottom:847.933333pt;}
.y6c{bottom:854.653333pt;}
.ybb{bottom:859.133333pt;}
.y8f{bottom:861.373333pt;}
.ya{bottom:866.173333pt;}
.ye6{bottom:870.333333pt;}
.y32{bottom:872.893333pt;}
.y182{bottom:876.733333pt;}
.y6b{bottom:882.173333pt;}
.y125{bottom:884.733333pt;}
.y8e{bottom:885.373333pt;}
.y164{bottom:886.973333pt;}
.y9{bottom:895.933333pt;}
.y31{bottom:900.413333pt;}
.y124{bottom:903.613333pt;}
.ye4{bottom:904.253333pt;}
.y60{bottom:906.493333pt;}
.y8d{bottom:909.373333pt;}
.y88{bottom:912.893333pt;}
.y163{bottom:914.493333pt;}
.y181{bottom:914.813333pt;}
.y82{bottom:917.693333pt;}
.ye5{bottom:922.813333pt;}
.y30{bottom:927.933333pt;}
.y8{bottom:928.253333pt;}
.y8c{bottom:932.733333pt;}
.ye3{bottom:941.053333pt;}
.y162{bottom:944.573333pt;}
.y180{bottom:952.893333pt;}
.y2f{bottom:955.773333pt;}
.y7{bottom:958.053333pt;}
.y123{bottom:959.653333pt;}
.ye2{bottom:960.293333pt;}
.y5f{bottom:961.893333pt;}
.y122{bottom:978.533333pt;}
.ye1{bottom:979.173333pt;}
.y2d{bottom:983.333333pt;}
.y6{bottom:986.213333pt;}
.y2e{bottom:989.413333pt;}
.y2c{bottom:1001.573333pt;}
.y5{bottom:1013.733333pt;}
.y2b{bottom:1031.013333pt;}
.y2a{bottom:1059.813333pt;}
.h17{height:18.240000pt;}
.h1c{height:18.272000pt;}
.h19{height:18.560000pt;}
.h1e{height:18.592000pt;}
.h14{height:20.800000pt;}
.h13{height:21.120000pt;}
.h11{height:25.280000pt;}
.hb{height:33.918750pt;}
.h15{height:33.920000pt;}
.h22{height:36.431250pt;}
.h24{height:36.800000pt;}
.h18{height:37.440000pt;}
.h27{height:37.472000pt;}
.h12{height:39.360000pt;}
.h9{height:41.456250pt;}
.h2{height:42.105000pt;}
.h21{height:45.440000pt;}
.he{height:47.066250pt;}
.h16{height:49.020000pt;}
.h2d{height:50.125000pt;}
.h28{height:52.512000pt;}
.h8{height:52.762500pt;}
.hd{height:53.118750pt;}
.h6{height:54.180000pt;}
.h25{height:54.432000pt;}
.h20{height:55.040000pt;}
.h1b{height:55.072000pt;}
.h1d{height:55.360000pt;}
.h1f{height:55.392000pt;}
.hc{height:56.031250pt;}
.h7{height:57.787500pt;}
.ha{height:58.563750pt;}
.h1a{height:62.781250pt;}
.h3{height:62.812500pt;}
.h4{height:64.500000pt;}
.h10{height:65.776250pt;}
.h2c{height:65.781915pt;}
.hf{height:65.936250pt;}
.h29{height:68.512000pt;}
.h5{height:72.862500pt;}
.h26{height:77.472000pt;}
.h23{height:78.400000pt;}
.h2a{height:104.672000pt;}
.h2b{height:112.992000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:19.232000pt;}
.w6{width:19.552000pt;}
.w7{width:25.280000pt;}
.w4{width:40.032000pt;}
.w5{width:42.912000pt;}
.w14{width:46.400000pt;}
.w10{width:52.512000pt;}
.w11{width:52.800000pt;}
.w12{width:53.152000pt;}
.w13{width:53.792000pt;}
.w19{width:56.000000pt;}
.wd{width:57.920000pt;}
.we{width:57.952000pt;}
.wf{width:58.272000pt;}
.w8{width:65.920000pt;}
.wa{width:75.232000pt;}
.w15{width:85.152000pt;}
.w18{width:172.226667pt;}
.wb{width:174.146667pt;}
.wc{width:258.653333pt;}
.w1a{width:296.453333pt;}
.w1d{width:298.373333pt;}
.w1c{width:302.533333pt;}
.w16{width:303.813333pt;}
.w1f{width:306.693333pt;}
.w1e{width:312.773333pt;}
.w17{width:430.586667pt;}
.w1b{width:434.106667pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x24{left:7.360000pt;}
.x3c{left:8.320000pt;}
.x1e{left:9.600000pt;}
.x38{left:10.880000pt;}
.x58{left:12.192000pt;}
.x37{left:13.146667pt;}
.x35{left:14.402667pt;}
.x22{left:15.680000pt;}
.x36{left:16.640000pt;}
.x34{left:18.560000pt;}
.x2b{left:19.840000pt;}
.x2e{left:20.800000pt;}
.x30{left:22.080000pt;}
.x49{left:23.072000pt;}
.x3d{left:24.320000pt;}
.x3b{left:25.600000pt;}
.x63{left:26.560000pt;}
.x3e{left:27.520000pt;}
.x5b{left:28.480000pt;}
.x48{left:30.112000pt;}
.x64{left:31.360000pt;}
.x3a{left:34.562667pt;}
.x4f{left:35.520000pt;}
.x28{left:36.480000pt;}
.x39{left:37.442667pt;}
.x43{left:38.754667pt;}
.x65{left:74.280000pt;}
.x61{left:77.474667pt;}
.x1{left:94.431988pt;}
.x2a{left:102.120000pt;}
.x57{left:103.392000pt;}
.x23{left:119.424000pt;}
.x4b{left:120.384000pt;}
.x4a{left:136.381333pt;}
.x5a{left:137.981333pt;}
.x3{left:142.466655pt;}
.x7{left:146.306655pt;}
.x1b{left:150.786655pt;}
.xf{left:178.946643pt;}
.x10{left:184.386655pt;}
.x25{left:185.346667pt;}
.x4c{left:186.306667pt;}
.x9{left:194.013310pt;}
.xa{left:199.453322pt;}
.x4{left:201.693310pt;}
.x26{left:204.573333pt;}
.x4d{left:205.533333pt;}
.x5{left:207.133322pt;}
.x27{left:279.813333pt;}
.x4e{left:280.773333pt;}
.x6{left:286.533322pt;}
.x1c{left:299.333322pt;}
.x17{left:328.453310pt;}
.x18{left:333.893322pt;}
.x51{left:336.773333pt;}
.x2c{left:337.733333pt;}
.x5f{left:373.279976pt;}
.x60{left:384.159988pt;}
.x2d{left:395.680000pt;}
.x5e{left:406.559988pt;}
.x41{left:408.479988pt;}
.x40{left:411.359988pt;}
.x2{left:415.839988pt;}
.x62{left:429.626667pt;}
.x66{left:439.866655pt;}
.x11{left:443.706643pt;}
.x12{left:449.146655pt;}
.x50{left:452.986667pt;}
.x29{left:453.946667pt;}
.x56{left:456.506655pt;}
.x42{left:458.426655pt;}
.x3f{left:459.386655pt;}
.x5d{left:463.546655pt;}
.x5c{left:465.466655pt;}
.x20{left:490.106667pt;}
.x6a{left:497.186655pt;}
.x52{left:505.506667pt;}
.x2f{left:506.466667pt;}
.x8{left:536.866655pt;}
.x46{left:538.786655pt;}
.x45{left:540.706655pt;}
.x59{left:541.666655pt;}
.x21{left:549.120000pt;}
.x6b{left:557.346655pt;}
.x53{left:558.306667pt;}
.x31{left:559.266667pt;}
.x44{left:569.533322pt;}
.x69{left:575.293322pt;}
.x19{left:578.173310pt;}
.xd{left:581.053310pt;}
.x68{left:585.213322pt;}
.xe{left:586.493322pt;}
.x1a{left:589.053322pt;}
.x54{left:611.453333pt;}
.x32{left:612.413333pt;}
.x67{left:621.373322pt;}
.x13{left:656.293310pt;}
.x14{left:661.733322pt;}
.x55{left:665.253333pt;}
.x33{left:666.213333pt;}
.xb{left:670.053310pt;}
.xc{left:675.493322pt;}
.x1f{left:690.853333pt;}
.x1d{left:696.933333pt;}
.x47{left:724.159976pt;}
.x15{left:727.999976pt;}
.x16{left:733.439988pt;}
.x6c{left:737.279988pt;}
}




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