
    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_369b2beed7b1470846c60646.woff')format("woff");}.ff1{font-family:ff1;line-height:0.985352;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f2eeeeb5d23774f2814ccda8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_f9e7004ac80fe14d812f151a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.953613;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_5623dad7355e0b13e16edd81.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f95cd3b198f5e417e45cfc49.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_d36a629cbd76b3aa26408b1c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_27d87cb89e2347aff7d600a3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_4b0eb9478324d51a4bf95237.woff')format("woff");}.ff9{font-family:ff9;line-height:0.960449;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_3fafd33bb9bc13eebb46a9af.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_c0061799803dbf96aef1aed8.woff')format("woff");}.ffb{font-family:ffb;line-height:1.153320;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_851551ed0ba0381e65e02c6b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.153320;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_7a2b252d31ca2521363dd72e.woff')format("woff");}.ffd{font-family:ffd;line-height:1.506836;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_97f4a2a28a9ebdd300733b93.woff')format("woff");}.ffe{font-family:ffe;line-height:1.036133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f258fad270bf970661e977e3.woff')format("woff");}.fff{font-family:fff;line-height:1.036133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_dffb4f01c40dea1443348505.woff')format("woff");}.ff10{font-family:ff10;line-height:1.036133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_99e8f819729ed896840dbf12.woff')format("woff");}.ff12{font-family:ff12;line-height:1.506836;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:ff13;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;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:ff14;src:url('chunks/assets/font_9fa9b370f2e5bd179333110b.woff')format("woff");}.ff14{font-family:ff14;line-height:0.850586;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v7{vertical-align:-22.320000px;}
.v5{vertical-align:-18.720000px;}
.v1{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.v6{vertical-align:5.040000px;}
.v4{vertical-align:9.360000px;}
.v8{vertical-align:22.320000px;}
.ls1a{letter-spacing:-23.520000px;}
.ls7{letter-spacing:-19.140000px;}
.ls8{letter-spacing:-18.240000px;}
.ls9{letter-spacing:-17.520000px;}
.lsa{letter-spacing:-15.360000px;}
.lsb{letter-spacing:-14.640000px;}
.ls20{letter-spacing:-4.824000px;}
.ls16{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000001px;}
.lsf{letter-spacing:0.000003px;}
.ls11{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.144720px;}
.ls5{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.936000px;}
.ls1e{letter-spacing:1.656000px;}
.ls1d{letter-spacing:3.816000px;}
.ls19{letter-spacing:4.536000px;}
.ls18{letter-spacing:7.416000px;}
.ls14{letter-spacing:10.296000px;}
.ls17{letter-spacing:14.616000px;}
.ls1f{letter-spacing:24.600000px;}
.ls10{letter-spacing:27.480000px;}
.ls0{letter-spacing:2203.781280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-72.000000px;}
.ws1{word-spacing:-66.496200px;}
.ws0{word-spacing:-66.240000px;}
.wsa{word-spacing:-26.560080px;}
.wsb{word-spacing:-23.112000px;}
.wsf{word-spacing:-23.040000px;}
.wse{word-spacing:-22.896000px;}
.wsc{word-spacing:-22.824003px;}
.ws10{word-spacing:-22.824001px;}
.wsd{word-spacing:-22.824000px;}
.ws11{word-spacing:-22.680000px;}
.ws12{word-spacing:-22.176000px;}
.ws3{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws7{word-spacing:-19.087920px;}
.ws6{word-spacing:-18.943920px;}
.ws8{word-spacing:-16.560000px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-12.060000px;}
.ws9{word-spacing:0.000000px;}
._1b{margin-left:-2435.847360px;}
._20{margin-left:-2391.612480px;}
._2a{margin-left:-2365.467120px;}
._27{margin-left:-1854.195840px;}
._3{margin-left:-1821.250080px;}
._1{margin-left:-1736.220480px;}
._2e{margin-left:-1732.992480px;}
._41{margin-left:-1691.090640px;}
._24{margin-left:-1489.611360px;}
._33{margin-left:-1349.436000px;}
._32{margin-left:-1339.605360px;}
._15{margin-left:-1267.940160px;}
._35{margin-left:-1241.999040px;}
._40{margin-left:-1194.823920px;}
._3c{margin-left:-1193.467440px;}
._3d{margin-left:-1190.538720px;}
._36{margin-left:-1129.298400px;}
._3e{margin-left:-937.159920px;}
._23{margin-left:-871.096320px;}
._39{margin-left:-861.254640px;}
._30{margin-left:-832.443840px;}
._38{margin-left:-762.627840px;}
._3f{margin-left:-635.672160px;}
._29{margin-left:-557.223840px;}
._42{margin-left:-545.325840px;}
._28{margin-left:-537.428880px;}
._3b{margin-left:-437.303520px;}
._1a{margin-left:-317.987280px;}
._a{margin-left:-297.773760px;}
._3a{margin-left:-259.912800px;}
._10{margin-left:-256.175040px;}
._6{margin-left:-248.399760px;}
._f{margin-left:-242.408640px;}
._7{margin-left:-215.735040px;}
._37{margin-left:-201.403440px;}
._17{margin-left:-199.018800px;}
._2b{margin-left:-195.734880px;}
._5{margin-left:-183.533760px;}
._2f{margin-left:-180.902880px;}
._9{margin-left:-162.709440px;}
._e{margin-left:-156.384000px;}
._b{margin-left:-153.054720px;}
._11{margin-left:-151.200000px;}
._21{margin-left:-146.160000px;}
._0{margin-left:-130.271040px;}
._12{margin-left:-104.328000px;}
._14{margin-left:-83.232000px;}
._d{margin-left:-79.344000px;}
._c{margin-left:-58.014720px;}
._8{margin-left:-51.583680px;}
._18{margin-left:-30.927840px;}
._13{margin-left:-20.736000px;}
._4{margin-left:-19.143360px;}
._25{margin-left:-17.509680px;}
._26{margin-left:-15.725520px;}
._1d{margin-left:-14.518080px;}
._19{margin-left:-12.708720px;}
._5e{margin-left:-11.616000px;}
._1e{margin-left:-9.933840px;}
._2c{margin-left:-8.383680px;}
._44{margin-left:-7.021440px;}
._31{margin-left:-5.867280px;}
._4c{margin-left:-4.784400px;}
._22{margin-left:-3.712320px;}
._43{margin-left:-2.397120px;}
._2{margin-left:-1.059840px;}
._16{width:1.135440px;}
._1f{width:2.399040px;}
._1c{width:3.456000px;}
._2d{width:4.507200px;}
._47{width:6.402240px;}
._48{width:7.834320px;}
._4d{width:9.106560px;}
._57{width:10.111680px;}
._34{width:11.152080px;}
._45{width:12.551760px;}
._46{width:13.698720px;}
._4f{width:14.850720px;}
._54{width:16.462080px;}
._4a{width:17.774640px;}
._4b{width:18.913680px;}
._5c{width:20.088000px;}
._58{width:21.096000px;}
._51{width:22.323600px;}
._50{width:23.755680px;}
._4e{width:25.608960px;}
._56{width:26.784000px;}
._52{width:28.304640px;}
._53{width:29.869920px;}
._55{width:31.674240px;}
._49{width:33.864480px;}
._59{width:39.744000px;}
._5d{width:41.184000px;}
._5f{width:61.344000px;}
._5b{width:116.472000px;}
._5a{width:143.712000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.240000px;}
.y1f{bottom:7.380000px;}
.yf{bottom:8.460000px;}
.y131{bottom:8.640000px;}
.y139{bottom:8.820000px;}
.y6{bottom:12.060000px;}
.y35{bottom:20.376000px;}
.y178{bottom:22.860000px;}
.y19c{bottom:23.034000px;}
.y144{bottom:23.040000px;}
.y1bf{bottom:23.070000px;}
.y14f{bottom:23.220000px;}
.y12f{bottom:23.580000px;}
.y137{bottom:23.760000px;}
.y174{bottom:24.480000px;}
.y142{bottom:24.660000px;}
.y199{bottom:25.380000px;}
.y15e{bottom:25.560000px;}
.ye{bottom:28.260000px;}
.y145{bottom:29.910000px;}
.y1e{bottom:32.220000px;}
.y3{bottom:34.200000px;}
.y15b{bottom:34.560000px;}
.y34{bottom:37.650000px;}
.y130{bottom:38.520000px;}
.y135{bottom:38.700000px;}
.y14c{bottom:39.060000px;}
.y19d{bottom:39.234000px;}
.y149{bottom:39.240000px;}
.y140{bottom:39.810000px;}
.y15c{bottom:41.580000px;}
.y5{bottom:44.490000px;}
.y1ba{bottom:47.340000px;}
.y136{bottom:53.640000px;}
.y2{bottom:54.360000px;}
.y33{bottom:54.930000px;}
.y177{bottom:55.080000px;}
.y19e{bottom:55.254000px;}
.y14a{bottom:55.260000px;}
.y158{bottom:55.305000px;}
.y19b{bottom:55.434000px;}
.y148{bottom:55.440000px;}
.y181{bottom:55.470000px;}
.y157{bottom:55.485000px;}
.y1d{bottom:57.060000px;}
.y15d{bottom:57.780000px;}
.y146{bottom:57.990000px;}
.y172{bottom:58.140000px;}
.y196{bottom:61.380000px;}
.y134{bottom:68.580000px;}
.y1a0{bottom:71.280000px;}
.y1a4{bottom:71.325000px;}
.y155{bottom:71.460000px;}
.y32{bottom:72.210000px;}
.y1b7{bottom:73.440000px;}
.y176{bottom:76.320000px;}
.y1c{bottom:81.900000px;}
.y13f{bottom:84.090000px;}
.y154{bottom:87.660000px;}
.y1be{bottom:87.690000px;}
.y17d{bottom:87.705000px;}
.y31{bottom:89.490000px;}
.y1bb{bottom:93.060000px;}
.y171{bottom:102.420000px;}
.y195{bottom:105.660000px;}
.y30{bottom:106.770000px;}
.y1b{bottom:106.950000px;}
.y212{bottom:115.380000px;}
.y24{bottom:116.100000px;}
.y18c{bottom:116.280000px;}
.y1b6{bottom:117.720000px;}
.y204{bottom:119.700000px;}
.y1a8{bottom:122.760000px;}
.y2f{bottom:123.870000px;}
.y16c{bottom:125.820000px;}
.yc1{bottom:127.116000px;}
.y223{bottom:127.476000px;}
.y13e{bottom:128.370000px;}
.y87{bottom:130.536000px;}
.y1a{bottom:131.790000px;}
.y19a{bottom:131.796000px;}
.yeb{bottom:132.336000px;}
.y1f2{bottom:132.876000px;}
.y52{bottom:133.776000px;}
.y13a{bottom:136.116000px;}
.y121{bottom:136.476000px;}
.y1b3{bottom:140.256000px;}
.y2e{bottom:141.150000px;}
.ya2{bottom:144.216000px;}
.yfb{bottom:144.396000px;}
.y211{bottom:145.116000px;}
.y170{bottom:146.700000px;}
.y18b{bottom:148.536000px;}
.y194{bottom:149.940000px;}
.y151{bottom:150.870000px;}
.y6c{bottom:151.950000px;}
.y19{bottom:156.630000px;}
.yc0{bottom:156.990000px;}
.y16b{bottom:158.070000px;}
.y2d{bottom:158.430000px;}
.y138{bottom:159.690000px;}
.y1dd{bottom:159.870000px;}
.y1b5{bottom:162.000000px;}
.y86{bottom:162.750000px;}
.yea{bottom:164.550000px;}
.y1f1{bottom:165.090000px;}
.y1a7{bottom:167.070000px;}
.y10b{bottom:167.790000px;}
.y51{bottom:168.510000px;}
.yd2{bottom:170.310000px;}
.y17b{bottom:171.390000px;}
.y210{bottom:174.990000px;}
.y2c{bottom:175.710000px;}
.y1d2{bottom:176.250000px;}
.yfa{bottom:176.610000px;}
.y236{bottom:180.390000px;}
.y18a{bottom:180.750000px;}
.y18{bottom:181.470000px;}
.y1b2{bottom:184.530000px;}
.ybf{bottom:186.870000px;}
.ya1{bottom:188.490000px;}
.y16a{bottom:190.290000px;}
.y133{bottom:190.650000px;}
.y222{bottom:191.730000px;}
.y1dc{bottom:192.090000px;}
.y2b{bottom:192.990000px;}
.y85{bottom:194.970000px;}
.y203{bottom:196.230000px;}
.ye9{bottom:196.590000px;}
.y1f0{bottom:197.310000px;}
.y10a{bottom:200.010000px;}
.y120{bottom:200.730000px;}
.y6b{bottom:201.630000px;}
.yd1{bottom:202.530000px;}
.y50{bottom:203.250000px;}
.y20f{bottom:204.870000px;}
.y17{bottom:206.310000px;}
.y1d1{bottom:208.470000px;}
.yf9{bottom:208.830000px;}
.y193{bottom:209.190000px;}
.y2a{bottom:210.090000px;}
.y1a6{bottom:211.350000px;}
.y235{bottom:212.610000px;}
.y189{bottom:212.970000px;}
.y1c1{bottom:216.390000px;}
.ybe{bottom:216.570000px;}
.y1b1{bottom:216.750000px;}
.ya0{bottom:220.710000px;}
.y169{bottom:222.510000px;}
.y221{bottom:223.950000px;}
.y29{bottom:227.370000px;}
.y150{bottom:228.090000px;}
.y202{bottom:228.450000px;}
.ye8{bottom:228.810000px;}
.y16{bottom:231.150000px;}
.y109{bottom:232.230000px;}
.y1a5{bottom:233.310000px;}
.yd0{bottom:234.750000px;}
.y1db{bottom:236.550000px;}
.y4f{bottom:238.170000px;}
.y6a{bottom:239.070000px;}
.y1d0{bottom:240.690000px;}
.yf8{bottom:241.050000px;}
.y1ef{bottom:241.410000px;}
.y28{bottom:244.650000px;}
.y234{bottom:244.830000px;}
.y11f{bottom:245.010000px;}
.y188{bottom:245.190000px;}
.ybd{bottom:246.450000px;}
.y17a{bottom:248.610000px;}
.y1b0{bottom:248.790000px;}
.y9f{bottom:252.930000px;}
.y168{bottom:254.730000px;}
.y15{bottom:255.990000px;}
.y220{bottom:256.170000px;}
.y201{bottom:260.670000px;}
.ye7{bottom:261.030000px;}
.y27{bottom:261.930000px;}
.y108{bottom:264.450000px;}
.y20e{bottom:264.630000px;}
.ycf{bottom:266.970000px;}
.y84{bottom:271.290000px;}
.y4e{bottom:272.910000px;}
.yf7{bottom:273.090000px;}
.ybc{bottom:276.330000px;}
.y69{bottom:276.690000px;}
.y233{bottom:277.050000px;}
.y187{bottom:277.410000px;}
.y26{bottom:279.255000px;}
.y14{bottom:281.010000px;}
.y132{bottom:281.190000px;}
.y9e{bottom:285.150000px;}
.y1ee{bottom:285.690000px;}
.y198{bottom:286.230000px;}
.y21f{bottom:288.390000px;}
.y11e{bottom:289.290000px;}
.y200{bottom:292.710000px;}
.ye6{bottom:293.250000px;}
.y20d{bottom:294.330000px;}
.y107{bottom:296.670000px;}
.y25{bottom:297.255000px;}
.yce{bottom:299.010000px;}
.y83{bottom:303.510000px;}
.y1cf{bottom:305.130000px;}
.yf6{bottom:305.310000px;}
.y14e{bottom:305.490000px;}
.y13{bottom:305.850000px;}
.ybb{bottom:306.210000px;}
.y4d{bottom:307.830000px;}
.y232{bottom:309.090000px;}
.y186{bottom:309.630000px;}
.y1a3{bottom:310.530000px;}
.y12e{bottom:311.970000px;}
.y1af{bottom:313.230000px;}
.y68{bottom:314.310000px;}
.y9d{bottom:317.190000px;}
.y1ed{bottom:317.910000px;}
.y21e{bottom:320.610000px;}
.y11d{bottom:321.510000px;}
.y20c{bottom:324.210000px;}
.y1ff{bottom:324.930000px;}
.y1da{bottom:325.290000px;}
.ye5{bottom:325.470000px;}
.y179{bottom:326.010000px;}
.y12{bottom:330.690000px;}
.ycd{bottom:331.230000px;}
.y197{bottom:333.570000px;}
.y82{bottom:335.730000px;}
.yba{bottom:335.910000px;}
.y1ce{bottom:337.350000px;}
.yf5{bottom:337.530000px;}
.y106{bottom:340.950000px;}
.y231{bottom:341.310000px;}
.y4c{bottom:342.570000px;}
.y167{bottom:343.290000px;}
.y1ae{bottom:345.450000px;}
.y9c{bottom:349.410000px;}
.y1ec{bottom:350.130000px;}
.y67{bottom:351.750000px;}
.y21d{bottom:352.830000px;}
.y11c{bottom:353.730000px;}
.y185{bottom:353.910000px;}
.y20b{bottom:354.090000px;}
.y11{bottom:355.575000px;}
.y1d9{bottom:357.510000px;}
.ye4{bottom:357.690000px;}
.y237{bottom:361.650000px;}
.ycc{bottom:363.450000px;}
.yb9{bottom:365.790000px;}
.y81{bottom:367.950000px;}
.y1fe{bottom:369.210000px;}
.yf4{bottom:369.750000px;}
.y230{bottom:373.530000px;}
.y166{bottom:375.510000px;}
.y4b{bottom:377.310000px;}
.y1ad{bottom:377.670000px;}
.y9b{bottom:381.675000px;}
.y14d{bottom:382.935000px;}
.y20a{bottom:384.015000px;}
.y105{bottom:385.095000px;}
.y11b{bottom:385.995000px;}
.y66{bottom:389.415000px;}
.y1d8{bottom:389.775000px;}
.y192{bottom:389.955000px;}
.y1eb{bottom:394.455000px;}
.yb8{bottom:395.715000px;}
.y184{bottom:398.235000px;}
.y80{bottom:400.215000px;}
.y1fd{bottom:401.475000px;}
.ye3{bottom:401.835000px;}
.yf3{bottom:402.015000px;}
.y16f{bottom:403.455000px;}
.y22f{bottom:405.795000px;}
.y165{bottom:407.595000px;}
.y1ac{bottom:409.935000px;}
.y4a{bottom:412.275000px;}
.y209{bottom:413.715000px;}
.y9a{bottom:413.895000px;}
.y104{bottom:417.315000px;}
.y183{bottom:420.195000px;}
.y1d7{bottom:421.995000px;}
.yb7{bottom:425.595000px;}
.y1cd{bottom:425.775000px;}
.y65{bottom:427.035000px;}
.y11a{bottom:430.095000px;}
.y7f{bottom:432.435000px;}
.y1fc{bottom:433.695000px;}
.ye2{bottom:434.055000px;}
.yf2{bottom:434.235000px;}
.y23{bottom:436.755000px;}
.y22e{bottom:438.015000px;}
.y1ea{bottom:438.555000px;}
.y164{bottom:439.815000px;}
.y1ab{bottom:442.155000px;}
.y208{bottom:443.595000px;}
.y99{bottom:446.115000px;}
.y49{bottom:447.015000px;}
.y103{bottom:449.535000px;}
.y12d{bottom:449.715000px;}
.y1d6{bottom:454.215000px;}
.yb6{bottom:455.295000px;}
.ycb{bottom:455.475000px;}
.y1cc{bottom:457.995000px;}
.y14b{bottom:460.335000px;}
.y22{bottom:460.875000px;}
.y119{bottom:462.315000px;}
.y64{bottom:464.655000px;}
.y1fb{bottom:466.095000px;}
.ye1{bottom:466.275000px;}
.yf1{bottom:466.455000px;}
.y22d{bottom:470.235000px;}
.y1e9{bottom:470.775000px;}
.y163{bottom:472.035000px;}
.y207{bottom:473.475000px;}
.y1aa{bottom:474.375000px;}
.y7e{bottom:476.715000px;}
.y98{bottom:478.335000px;}
.y175{bottom:480.495000px;}
.y21c{bottom:481.575000px;}
.y102{bottom:481.755000px;}
.y48{bottom:481.935000px;}
.y21{bottom:485.175000px;}
.yca{bottom:485.355000px;}
.y1d5{bottom:486.435000px;}
.y1cb{bottom:490.215000px;}
.y12c{bottom:493.815000px;}
.y118{bottom:494.535000px;}
.y182{bottom:497.235000px;}
.y1a2{bottom:497.415000px;}
.y1fa{bottom:498.315000px;}
.ye0{bottom:498.495000px;}
.yf0{bottom:498.675000px;}
.y63{bottom:502.095000px;}
.y22c{bottom:502.455000px;}
.y206{bottom:503.355000px;}
.y162{bottom:504.255000px;}
.y20{bottom:510.375000px;}
.y97{bottom:510.555000px;}
.y1c0{bottom:513.075000px;}
.y21b{bottom:513.795000px;}
.y101{bottom:513.975000px;}
.yb5{bottom:515.055000px;}
.y47{bottom:516.675000px;}
.y1a9{bottom:518.655000px;}
.y7d{bottom:520.995000px;}
.y1ca{bottom:522.435000px;}
.y173{bottom:525.675000px;}
.y12b{bottom:526.035000px;}
.y117{bottom:526.755000px;}
.ydf{bottom:530.715000px;}
.yef{bottom:530.895000px;}
.y10{bottom:532.515000px;}
.y205{bottom:533.055000px;}
.y22b{bottom:534.675000px;}
.y161{bottom:536.475000px;}
.y147{bottom:537.555000px;}
.y62{bottom:539.715000px;}
.y96{bottom:542.775000px;}
.yb4{bottom:544.935000px;}
.y21a{bottom:546.015000px;}
.y100{bottom:546.195000px;}
.y1e8{bottom:547.275000px;}
.y1d4{bottom:550.875000px;}
.y46{bottom:551.415000px;}
.y1c9{bottom:554.655000px;}
.y12a{bottom:558.255000px;}
.y116{bottom:558.975000px;}
.y191{bottom:562.755000px;}
.yde{bottom:562.935000px;}
.y7c{bottom:565.275000px;}
.y22a{bottom:566.895000px;}
.y1a1{bottom:574.635000px;}
.yb3{bottom:574.815000px;}
.y95{bottom:574.995000px;}
.y61{bottom:577.335000px;}
.y219{bottom:578.235000px;}
.y160{bottom:580.755000px;}
.y1d3{bottom:583.095000px;}
.y45{bottom:586.335000px;}
.y1c8{bottom:586.875000px;}
.yff{bottom:590.475000px;}
.y1e7{bottom:591.375000px;}
.y190{bottom:594.975000px;}
.ydd{bottom:595.155000px;}
.y7b{bottom:597.315000px;}
.y229{bottom:598.935000px;}
.y115{bottom:603.255000px;}
.yb2{bottom:604.515000px;}
.yc9{bottom:604.695000px;}
.y180{bottom:606.855000px;}
.y1f9{bottom:607.035000px;}
.y94{bottom:607.215000px;}
.y218{bottom:608.115000px;}
.y60{bottom:614.775000px;}
.y13d{bottom:614.955000px;}
.y1c7{bottom:619.095000px;}
.y44{bottom:621.075000px;}
.y129{bottom:622.695000px;}
.y1e6{bottom:623.595000px;}
.y15f{bottom:625.035000px;}
.y18f{bottom:627.195000px;}
.ydc{bottom:627.375000px;}
.y228{bottom:631.155000px;}
.yb1{bottom:634.425000px;}
.yc8{bottom:634.605000px;}
.yfe{bottom:634.785000px;}
.y93{bottom:639.285000px;}
.yee{bottom:639.465000px;}
.y7a{bottom:641.805000px;}
.y15a{bottom:647.025000px;}
.y114{bottom:647.385000px;}
.y19f{bottom:652.065000px;}
.y5f{bottom:652.425000px;}
.y128{bottom:654.945000px;}
.y43{bottom:656.025000px;}
.y18e{bottom:659.445000px;}
.ydb{bottom:659.625000px;}
.y1c6{bottom:663.405000px;}
.yb0{bottom:664.305000px;}
.y1e5{bottom:667.905000px;}
.y92{bottom:671.505000px;}
.y79{bottom:671.685000px;}
.y143{bottom:673.665000px;}
.yfd{bottom:679.425000px;}
.y113{bottom:679.605000px;}
.y17f{bottom:684.285000px;}
.y217{bottom:684.645000px;}
.y5e{bottom:690.045000px;}
.y42{bottom:690.765000px;}
.y18d{bottom:691.665000px;}
.yda{bottom:691.845000px;}
.yaf{bottom:694.185000px;}
.y227{bottom:695.625000px;}
.y127{bottom:699.225000px;}
.y1e4{bottom:700.125000px;}
.y91{bottom:703.725000px;}
.yed{bottom:703.905000px;}
.y1c5{bottom:707.505000px;}
.y112{bottom:711.825000px;}
.y78{bottom:715.785000px;}
.y216{bottom:716.865000px;}
.y141{bottom:718.665000px;}
.yae{bottom:723.885000px;}
.yc7{bottom:724.065000px;}
.y41{bottom:725.505000px;}
.y5d{bottom:727.665000px;}
.y226{bottom:727.845000px;}
.y159{bottom:729.285000px;}
.y1c4{bottom:729.465000px;}
.y1bd{bottom:732.345000px;}
.y90{bottom:735.945000px;}
.yec{bottom:736.125000px;}
.y126{bottom:743.505000px;}
.y111{bottom:744.045000px;}
.y1e3{bottom:744.225000px;}
.y1f8{bottom:747.825000px;}
.y77{bottom:748.005000px;}
.y215{bottom:749.085000px;}
.yad{bottom:753.765000px;}
.yc6{bottom:753.945000px;}
.yd9{bottom:756.105000px;}
.y225{bottom:760.065000px;}
.y40{bottom:760.425000px;}
.y17e{bottom:761.685000px;}
.y5c{bottom:765.105000px;}
.y16e{bottom:768.165000px;}
.yfc{bottom:768.345000px;}
.y110{bottom:776.265000px;}
.y1e2{bottom:776.445000px;}
.y1f7{bottom:780.045000px;}
.y76{bottom:780.225000px;}
.y214{bottom:781.305000px;}
.yac{bottom:783.645000px;}
.y125{bottom:787.785000px;}
.y13c{bottom:788.325000px;}
.y224{bottom:792.285000px;}
.y3f{bottom:795.165000px;}
.y5b{bottom:800.205000px;}
.yd8{bottom:800.385000px;}
.y1c3{bottom:806.685000px;}
.y1f6{bottom:812.265000px;}
.y75{bottom:812.445000px;}
.y213{bottom:813.345000px;}
.yab{bottom:813.525000px;}
.y124{bottom:819.825000px;}
.y10f{bottom:820.545000px;}
.y1e1{bottom:820.725000px;}
.y8f{bottom:824.505000px;}
.y3e{bottom:830.085000px;}
.y16d{bottom:832.605000px;}
.y5a{bottom:834.945000px;}
.y156{bottom:838.905000px;}
.y1bc{bottom:841.965000px;}
.yaa{bottom:843.225000px;}
.yc5{bottom:843.405000px;}
.y74{bottom:844.485000px;}
.yd7{bottom:844.665000px;}
.y123{bottom:852.045000px;}
.y13b{bottom:852.585000px;}
.y1e0{bottom:852.945000px;}
.y8e{bottom:856.725000px;}
.y3d{bottom:864.825000px;}
.y59{bottom:869.865000px;}
.ya9{bottom:873.105000px;}
.yc4{bottom:873.285000px;}
.y73{bottom:876.705000px;}
.yd6{bottom:876.885000px;}
.y1df{bottom:885.030000px;}
.y8d{bottom:888.990000px;}
.y122{bottom:896.730000px;}
.y10e{bottom:897.090000px;}
.y3c{bottom:899.610000px;}
.ya8{bottom:903.030000px;}
.yc3{bottom:903.210000px;}
.y58{bottom:904.650000px;}
.yd{bottom:908.070000px;}
.y72{bottom:908.970000px;}
.yd5{bottom:909.150000px;}
.y153{bottom:916.350000px;}
.y1b4{bottom:919.410000px;}
.y1f5{bottom:920.850000px;}
.y8c{bottom:921.030000px;}
.y10d{bottom:929.130000px;}
.y1de{bottom:929.310000px;}
.ya7{bottom:932.910000px;}
.y3b{bottom:934.530000px;}
.y57{bottom:939.390000px;}
.y71{bottom:941.190000px;}
.yd4{bottom:941.370000px;}
.y17c{bottom:948.750000px;}
.y1f4{bottom:953.070000px;}
.y8b{bottom:953.250000px;}
.y10c{bottom:961.350000px;}
.ya6{bottom:962.790000px;}
.yc{bottom:966.570000px;}
.y3a{bottom:969.270000px;}
.y70{bottom:973.410000px;}
.yd3{bottom:973.590000px;}
.y56{bottom:974.310000px;}
.yb{bottom:984.210000px;}
.y1f3{bottom:985.290000px;}
.y8a{bottom:985.470000px;}
.ya5{bottom:992.490000px;}
.yc2{bottom:992.670000px;}
.y1c2{bottom:993.750000px;}
.ya{bottom:1003.290000px;}
.y39{bottom:1004.190000px;}
.y6f{bottom:1005.630000px;}
.y55{bottom:1009.050000px;}
.y1b9{bottom:1013.190000px;}
.y89{bottom:1017.690000px;}
.ya4{bottom:1022.370000px;}
.y9{bottom:1022.550000px;}
.y152{bottom:1025.970000px;}
.y6e{bottom:1037.850000px;}
.y38{bottom:1038.930000px;}
.y54{bottom:1043.970000px;}
.y88{bottom:1049.910000px;}
.ya3{bottom:1052.250000px;}
.y8{bottom:1057.650000px;}
.y1b8{bottom:1058.370000px;}
.y53{bottom:1078.710000px;}
.y6d{bottom:1082.130000px;}
.y37{bottom:1083.390000px;}
.y7{bottom:1083.750000px;}
.y1{bottom:1115.430000px;}
.y4{bottom:1124.430000px;}
.h1d{height:29.880000px;}
.h1f{height:30.240000px;}
.hc{height:33.683203px;}
.hb{height:39.600000px;}
.h17{height:41.493516px;}
.ha{height:41.726953px;}
.h18{height:42.164648px;}
.h14{height:43.944609px;}
.h22{height:44.280000px;}
.h2b{height:45.720000px;}
.h21{height:45.900000px;}
.h9{height:46.251562px;}
.h31{height:46.620000px;}
.h30{height:46.836000px;}
.h5{height:50.273438px;}
.h16{height:50.800781px;}
.h1a{height:52.945312px;}
.hd{height:57.075469px;}
.h23{height:57.996000px;}
.h8{height:58.490859px;}
.h6{height:59.436914px;}
.h1c{height:59.760000px;}
.h34{height:60.679688px;}
.h3{height:61.416000px;}
.hf{height:61.481602px;}
.h19{height:61.946016px;}
.h10{height:62.201602px;}
.h11{height:64.361602px;}
.h2{height:65.884219px;}
.h13{height:66.521602px;}
.h27{height:68.765625px;}
.h12{height:70.841602px;}
.h4{height:73.722656px;}
.h1b{height:74.074219px;}
.h2c{height:76.320000px;}
.h25{height:76.500000px;}
.h2d{height:76.536000px;}
.h24{height:76.680000px;}
.h26{height:76.716000px;}
.h7{height:80.208984px;}
.h29{height:81.540000px;}
.h1e{height:89.820000px;}
.h33{height:93.060000px;}
.h28{height:108.900000px;}
.h2e{height:108.936000px;}
.h20{height:149.616000px;}
.h2a{height:167.940000px;}
.h2f{height:171.210000px;}
.h32{height:183.240000px;}
.h15{height:313.995000px;}
.he{height:373.395000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2f{width:32.940000px;}
.w2d{width:33.120000px;}
.w17{width:34.920000px;}
.w28{width:36.180000px;}
.w13{width:39.780000px;}
.w1d{width:46.440000px;}
.w24{width:53.100000px;}
.w1b{width:53.280000px;}
.w15{width:53.316000px;}
.w11{width:53.460000px;}
.w1e{width:53.496000px;}
.w14{width:59.940000px;}
.w26{width:59.976000px;}
.w2c{width:60.120000px;}
.w10{width:66.780000px;}
.w1c{width:66.816000px;}
.w16{width:71.640000px;}
.w25{width:73.476000px;}
.w2e{width:73.620000px;}
.w12{width:73.656000px;}
.w27{width:76.500000px;}
.w1f{width:78.480000px;}
.w9{width:93.600000px;}
.w8{width:93.636000px;}
.w7{width:100.440000px;}
.wa{width:100.476000px;}
.wb{width:106.560000px;}
.w6{width:201.090000px;}
.w2b{width:221.970000px;}
.wf{width:222.150000px;}
.w1a{width:222.330000px;}
.w20{width:227.010000px;}
.wc{width:227.190000px;}
.w22{width:228.810000px;}
.w23{width:234.930000px;}
.we{width:235.650000px;}
.w19{width:235.830000px;}
.w29{width:255.810000px;}
.w3{width:400.935000px;}
.w2a{width:444.855000px;}
.wd{width:458.715000px;}
.w18{width:458.895000px;}
.w21{width:464.475000px;}
.w4{width:654.765000px;}
.w5{width:655.845000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:2.340000px;}
.x48{left:3.780000px;}
.x32{left:5.580000px;}
.xe{left:7.020000px;}
.x2e{left:10.440000px;}
.x17{left:12.060000px;}
.x38{left:17.100000px;}
.x6{left:46.260000px;}
.x43{left:94.896000px;}
.x1{left:98.495987px;}
.x14{left:100.434000px;}
.x1f{left:106.415987px;}
.xd{left:107.496000px;}
.x29{left:110.196000px;}
.x7{left:112.715987px;}
.x23{left:116.676000px;}
.x22{left:133.415987px;}
.x21{left:160.409987px;}
.x4{left:229.350000px;}
.x8{left:251.669987px;}
.x15{left:253.839000px;}
.xa{left:281.549987px;}
.xc{left:290.774987px;}
.x5{left:292.755000px;}
.x24{left:318.495000px;}
.x33{left:335.055000px;}
.x2a{left:338.115000px;}
.x16{left:339.879000px;}
.x44{left:351.435000px;}
.x9{left:368.534987px;}
.xb{left:369.794987px;}
.x3e{left:398.775000px;}
.x35{left:402.735000px;}
.x2b{left:405.615000px;}
.x45{left:412.275000px;}
.x25{left:419.835000px;}
.x20{left:436.034987px;}
.x12{left:437.469000px;}
.x3f{left:452.775000px;}
.x36{left:456.735000px;}
.x2c{left:459.795000px;}
.x46{left:466.275000px;}
.x1d{left:493.449000px;}
.x1b{left:496.620000px;}
.x26{left:514.365000px;}
.x37{left:524.445000px;}
.x40{left:526.965000px;}
.x3c{left:531.105000px;}
.x2d{left:534.165000px;}
.x47{left:540.465000px;}
.x13{left:541.869000px;}
.x19{left:558.579000px;}
.x3d{left:567.465000px;}
.x34{left:571.605000px;}
.x18{left:575.034000px;}
.x10{left:576.114000px;}
.x1c{left:582.954000px;}
.xf{left:602.934000px;}
.x27{left:608.865000px;}
.x11{left:609.954000px;}
.x39{left:625.605000px;}
.x41{left:628.305000px;}
.x2f{left:635.505000px;}
.x1e{left:640.554000px;}
.x3a{left:679.830000px;}
.x30{left:689.550000px;}
.x28{left:710.070000px;}
.x2{left:734.909987px;}
.x3{left:755.969987px;}
.x3b{left:759.030000px;}
.x31{left:761.910000px;}
.x49{left:763.350000px;}
.x42{left:766.230000px;}
@media print{
.v7{vertical-align:-19.840000pt;}
.v5{vertical-align:-16.640000pt;}
.v1{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.v6{vertical-align:4.480000pt;}
.v4{vertical-align:8.320000pt;}
.v8{vertical-align:19.840000pt;}
.ls1a{letter-spacing:-20.906667pt;}
.ls7{letter-spacing:-17.013333pt;}
.ls8{letter-spacing:-16.213333pt;}
.ls9{letter-spacing:-15.573333pt;}
.lsa{letter-spacing:-13.653333pt;}
.lsb{letter-spacing:-13.013333pt;}
.ls20{letter-spacing:-4.288000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000001pt;}
.lsf{letter-spacing:0.000003pt;}
.ls11{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.128640pt;}
.ls5{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.832000pt;}
.ls1e{letter-spacing:1.472000pt;}
.ls1d{letter-spacing:3.392000pt;}
.ls19{letter-spacing:4.032000pt;}
.ls18{letter-spacing:6.592000pt;}
.ls14{letter-spacing:9.152000pt;}
.ls17{letter-spacing:12.992000pt;}
.ls1f{letter-spacing:21.866667pt;}
.ls10{letter-spacing:24.426667pt;}
.ls0{letter-spacing:1958.916693pt;}
.ws13{word-spacing:-64.000000pt;}
.ws1{word-spacing:-59.107733pt;}
.ws0{word-spacing:-58.880000pt;}
.wsa{word-spacing:-23.608960pt;}
.wsb{word-spacing:-20.544000pt;}
.wsf{word-spacing:-20.480000pt;}
.wse{word-spacing:-20.352000pt;}
.wsc{word-spacing:-20.288003pt;}
.ws10{word-spacing:-20.288001pt;}
.wsd{word-spacing:-20.288000pt;}
.ws11{word-spacing:-20.160000pt;}
.ws12{word-spacing:-19.712000pt;}
.ws3{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws7{word-spacing:-16.967040pt;}
.ws6{word-spacing:-16.839040pt;}
.ws8{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws9{word-spacing:0.000000pt;}
._1b{margin-left:-2165.197653pt;}
._20{margin-left:-2125.877760pt;}
._2a{margin-left:-2102.637440pt;}
._27{margin-left:-1648.174080pt;}
._3{margin-left:-1618.888960pt;}
._1{margin-left:-1543.307093pt;}
._2e{margin-left:-1540.437760pt;}
._41{margin-left:-1503.191680pt;}
._24{margin-left:-1324.098987pt;}
._33{margin-left:-1199.498667pt;}
._32{margin-left:-1190.760320pt;}
._15{margin-left:-1127.057920pt;}
._35{margin-left:-1103.999147pt;}
._40{margin-left:-1062.065707pt;}
._3c{margin-left:-1060.859947pt;}
._3d{margin-left:-1058.256640pt;}
._36{margin-left:-1003.820800pt;}
._3e{margin-left:-833.031040pt;}
._23{margin-left:-774.307840pt;}
._39{margin-left:-765.559680pt;}
._30{margin-left:-739.950080pt;}
._38{margin-left:-677.891413pt;}
._3f{margin-left:-565.041920pt;}
._29{margin-left:-495.310080pt;}
._42{margin-left:-484.734080pt;}
._28{margin-left:-477.714560pt;}
._3b{margin-left:-388.714240pt;}
._1a{margin-left:-282.655360pt;}
._a{margin-left:-264.687787pt;}
._3a{margin-left:-231.033600pt;}
._10{margin-left:-227.711147pt;}
._6{margin-left:-220.799787pt;}
._f{margin-left:-215.474347pt;}
._7{margin-left:-191.764480pt;}
._37{margin-left:-179.025280pt;}
._17{margin-left:-176.905600pt;}
._2b{margin-left:-173.986560pt;}
._5{margin-left:-163.141120pt;}
._2f{margin-left:-160.802560pt;}
._9{margin-left:-144.630613pt;}
._e{margin-left:-139.008000pt;}
._b{margin-left:-136.048640pt;}
._11{margin-left:-134.400000pt;}
._21{margin-left:-129.920000pt;}
._0{margin-left:-115.796480pt;}
._12{margin-left:-92.736000pt;}
._14{margin-left:-73.984000pt;}
._d{margin-left:-70.528000pt;}
._c{margin-left:-51.568640pt;}
._8{margin-left:-45.852160pt;}
._18{margin-left:-27.491413pt;}
._13{margin-left:-18.432000pt;}
._4{margin-left:-17.016320pt;}
._25{margin-left:-15.564160pt;}
._26{margin-left:-13.978240pt;}
._1d{margin-left:-12.904960pt;}
._19{margin-left:-11.296640pt;}
._5e{margin-left:-10.325333pt;}
._1e{margin-left:-8.830080pt;}
._2c{margin-left:-7.452160pt;}
._44{margin-left:-6.241280pt;}
._31{margin-left:-5.215360pt;}
._4c{margin-left:-4.252800pt;}
._22{margin-left:-3.299840pt;}
._43{margin-left:-2.130773pt;}
._2{margin-left:-0.942080pt;}
._16{width:1.009280pt;}
._1f{width:2.132480pt;}
._1c{width:3.072000pt;}
._2d{width:4.006400pt;}
._47{width:5.690880pt;}
._48{width:6.963840pt;}
._4d{width:8.094720pt;}
._57{width:8.988160pt;}
._34{width:9.912960pt;}
._45{width:11.157120pt;}
._46{width:12.176640pt;}
._4f{width:13.200640pt;}
._54{width:14.632960pt;}
._4a{width:15.799680pt;}
._4b{width:16.812160pt;}
._5c{width:17.856000pt;}
._58{width:18.752000pt;}
._51{width:19.843200pt;}
._50{width:21.116160pt;}
._4e{width:22.763520pt;}
._56{width:23.808000pt;}
._52{width:25.159680pt;}
._53{width:26.551040pt;}
._55{width:28.154880pt;}
._49{width:30.101760pt;}
._59{width:35.328000pt;}
._5d{width:36.608000pt;}
._5f{width:54.528000pt;}
._5b{width:103.530667pt;}
._5a{width:127.744000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.880000pt;}
.y1f{bottom:6.560000pt;}
.yf{bottom:7.520000pt;}
.y131{bottom:7.680000pt;}
.y139{bottom:7.840000pt;}
.y6{bottom:10.720000pt;}
.y35{bottom:18.112000pt;}
.y178{bottom:20.320000pt;}
.y19c{bottom:20.474667pt;}
.y144{bottom:20.480000pt;}
.y1bf{bottom:20.506667pt;}
.y14f{bottom:20.640000pt;}
.y12f{bottom:20.960000pt;}
.y137{bottom:21.120000pt;}
.y174{bottom:21.760000pt;}
.y142{bottom:21.920000pt;}
.y199{bottom:22.560000pt;}
.y15e{bottom:22.720000pt;}
.ye{bottom:25.120000pt;}
.y145{bottom:26.586667pt;}
.y1e{bottom:28.640000pt;}
.y3{bottom:30.400000pt;}
.y15b{bottom:30.720000pt;}
.y34{bottom:33.466667pt;}
.y130{bottom:34.240000pt;}
.y135{bottom:34.400000pt;}
.y14c{bottom:34.720000pt;}
.y19d{bottom:34.874667pt;}
.y149{bottom:34.880000pt;}
.y140{bottom:35.386667pt;}
.y15c{bottom:36.960000pt;}
.y5{bottom:39.546667pt;}
.y1ba{bottom:42.080000pt;}
.y136{bottom:47.680000pt;}
.y2{bottom:48.320000pt;}
.y33{bottom:48.826667pt;}
.y177{bottom:48.960000pt;}
.y19e{bottom:49.114667pt;}
.y14a{bottom:49.120000pt;}
.y158{bottom:49.160000pt;}
.y19b{bottom:49.274667pt;}
.y148{bottom:49.280000pt;}
.y181{bottom:49.306667pt;}
.y157{bottom:49.320000pt;}
.y1d{bottom:50.720000pt;}
.y15d{bottom:51.360000pt;}
.y146{bottom:51.546667pt;}
.y172{bottom:51.680000pt;}
.y196{bottom:54.560000pt;}
.y134{bottom:60.960000pt;}
.y1a0{bottom:63.360000pt;}
.y1a4{bottom:63.400000pt;}
.y155{bottom:63.520000pt;}
.y32{bottom:64.186667pt;}
.y1b7{bottom:65.280000pt;}
.y176{bottom:67.840000pt;}
.y1c{bottom:72.800000pt;}
.y13f{bottom:74.746667pt;}
.y154{bottom:77.920000pt;}
.y1be{bottom:77.946667pt;}
.y17d{bottom:77.960000pt;}
.y31{bottom:79.546667pt;}
.y1bb{bottom:82.720000pt;}
.y171{bottom:91.040000pt;}
.y195{bottom:93.920000pt;}
.y30{bottom:94.906667pt;}
.y1b{bottom:95.066667pt;}
.y212{bottom:102.560000pt;}
.y24{bottom:103.200000pt;}
.y18c{bottom:103.360000pt;}
.y1b6{bottom:104.640000pt;}
.y204{bottom:106.400000pt;}
.y1a8{bottom:109.120000pt;}
.y2f{bottom:110.106667pt;}
.y16c{bottom:111.840000pt;}
.yc1{bottom:112.992000pt;}
.y223{bottom:113.312000pt;}
.y13e{bottom:114.106667pt;}
.y87{bottom:116.032000pt;}
.y1a{bottom:117.146667pt;}
.y19a{bottom:117.152000pt;}
.yeb{bottom:117.632000pt;}
.y1f2{bottom:118.112000pt;}
.y52{bottom:118.912000pt;}
.y13a{bottom:120.992000pt;}
.y121{bottom:121.312000pt;}
.y1b3{bottom:124.672000pt;}
.y2e{bottom:125.466667pt;}
.ya2{bottom:128.192000pt;}
.yfb{bottom:128.352000pt;}
.y211{bottom:128.992000pt;}
.y170{bottom:130.400000pt;}
.y18b{bottom:132.032000pt;}
.y194{bottom:133.280000pt;}
.y151{bottom:134.106667pt;}
.y6c{bottom:135.066667pt;}
.y19{bottom:139.226667pt;}
.yc0{bottom:139.546667pt;}
.y16b{bottom:140.506667pt;}
.y2d{bottom:140.826667pt;}
.y138{bottom:141.946667pt;}
.y1dd{bottom:142.106667pt;}
.y1b5{bottom:144.000000pt;}
.y86{bottom:144.666667pt;}
.yea{bottom:146.266667pt;}
.y1f1{bottom:146.746667pt;}
.y1a7{bottom:148.506667pt;}
.y10b{bottom:149.146667pt;}
.y51{bottom:149.786667pt;}
.yd2{bottom:151.386667pt;}
.y17b{bottom:152.346667pt;}
.y210{bottom:155.546667pt;}
.y2c{bottom:156.186667pt;}
.y1d2{bottom:156.666667pt;}
.yfa{bottom:156.986667pt;}
.y236{bottom:160.346667pt;}
.y18a{bottom:160.666667pt;}
.y18{bottom:161.306667pt;}
.y1b2{bottom:164.026667pt;}
.ybf{bottom:166.106667pt;}
.ya1{bottom:167.546667pt;}
.y16a{bottom:169.146667pt;}
.y133{bottom:169.466667pt;}
.y222{bottom:170.426667pt;}
.y1dc{bottom:170.746667pt;}
.y2b{bottom:171.546667pt;}
.y85{bottom:173.306667pt;}
.y203{bottom:174.426667pt;}
.ye9{bottom:174.746667pt;}
.y1f0{bottom:175.386667pt;}
.y10a{bottom:177.786667pt;}
.y120{bottom:178.426667pt;}
.y6b{bottom:179.226667pt;}
.yd1{bottom:180.026667pt;}
.y50{bottom:180.666667pt;}
.y20f{bottom:182.106667pt;}
.y17{bottom:183.386667pt;}
.y1d1{bottom:185.306667pt;}
.yf9{bottom:185.626667pt;}
.y193{bottom:185.946667pt;}
.y2a{bottom:186.746667pt;}
.y1a6{bottom:187.866667pt;}
.y235{bottom:188.986667pt;}
.y189{bottom:189.306667pt;}
.y1c1{bottom:192.346667pt;}
.ybe{bottom:192.506667pt;}
.y1b1{bottom:192.666667pt;}
.ya0{bottom:196.186667pt;}
.y169{bottom:197.786667pt;}
.y221{bottom:199.066667pt;}
.y29{bottom:202.106667pt;}
.y150{bottom:202.746667pt;}
.y202{bottom:203.066667pt;}
.ye8{bottom:203.386667pt;}
.y16{bottom:205.466667pt;}
.y109{bottom:206.426667pt;}
.y1a5{bottom:207.386667pt;}
.yd0{bottom:208.666667pt;}
.y1db{bottom:210.266667pt;}
.y4f{bottom:211.706667pt;}
.y6a{bottom:212.506667pt;}
.y1d0{bottom:213.946667pt;}
.yf8{bottom:214.266667pt;}
.y1ef{bottom:214.586667pt;}
.y28{bottom:217.466667pt;}
.y234{bottom:217.626667pt;}
.y11f{bottom:217.786667pt;}
.y188{bottom:217.946667pt;}
.ybd{bottom:219.066667pt;}
.y17a{bottom:220.986667pt;}
.y1b0{bottom:221.146667pt;}
.y9f{bottom:224.826667pt;}
.y168{bottom:226.426667pt;}
.y15{bottom:227.546667pt;}
.y220{bottom:227.706667pt;}
.y201{bottom:231.706667pt;}
.ye7{bottom:232.026667pt;}
.y27{bottom:232.826667pt;}
.y108{bottom:235.066667pt;}
.y20e{bottom:235.226667pt;}
.ycf{bottom:237.306667pt;}
.y84{bottom:241.146667pt;}
.y4e{bottom:242.586667pt;}
.yf7{bottom:242.746667pt;}
.ybc{bottom:245.626667pt;}
.y69{bottom:245.946667pt;}
.y233{bottom:246.266667pt;}
.y187{bottom:246.586667pt;}
.y26{bottom:248.226667pt;}
.y14{bottom:249.786667pt;}
.y132{bottom:249.946667pt;}
.y9e{bottom:253.466667pt;}
.y1ee{bottom:253.946667pt;}
.y198{bottom:254.426667pt;}
.y21f{bottom:256.346667pt;}
.y11e{bottom:257.146667pt;}
.y200{bottom:260.186667pt;}
.ye6{bottom:260.666667pt;}
.y20d{bottom:261.626667pt;}
.y107{bottom:263.706667pt;}
.y25{bottom:264.226667pt;}
.yce{bottom:265.786667pt;}
.y83{bottom:269.786667pt;}
.y1cf{bottom:271.226667pt;}
.yf6{bottom:271.386667pt;}
.y14e{bottom:271.546667pt;}
.y13{bottom:271.866667pt;}
.ybb{bottom:272.186667pt;}
.y4d{bottom:273.626667pt;}
.y232{bottom:274.746667pt;}
.y186{bottom:275.226667pt;}
.y1a3{bottom:276.026667pt;}
.y12e{bottom:277.306667pt;}
.y1af{bottom:278.426667pt;}
.y68{bottom:279.386667pt;}
.y9d{bottom:281.946667pt;}
.y1ed{bottom:282.586667pt;}
.y21e{bottom:284.986667pt;}
.y11d{bottom:285.786667pt;}
.y20c{bottom:288.186667pt;}
.y1ff{bottom:288.826667pt;}
.y1da{bottom:289.146667pt;}
.ye5{bottom:289.306667pt;}
.y179{bottom:289.786667pt;}
.y12{bottom:293.946667pt;}
.ycd{bottom:294.426667pt;}
.y197{bottom:296.506667pt;}
.y82{bottom:298.426667pt;}
.yba{bottom:298.586667pt;}
.y1ce{bottom:299.866667pt;}
.yf5{bottom:300.026667pt;}
.y106{bottom:303.066667pt;}
.y231{bottom:303.386667pt;}
.y4c{bottom:304.506667pt;}
.y167{bottom:305.146667pt;}
.y1ae{bottom:307.066667pt;}
.y9c{bottom:310.586667pt;}
.y1ec{bottom:311.226667pt;}
.y67{bottom:312.666667pt;}
.y21d{bottom:313.626667pt;}
.y11c{bottom:314.426667pt;}
.y185{bottom:314.586667pt;}
.y20b{bottom:314.746667pt;}
.y11{bottom:316.066667pt;}
.y1d9{bottom:317.786667pt;}
.ye4{bottom:317.946667pt;}
.y237{bottom:321.466667pt;}
.ycc{bottom:323.066667pt;}
.yb9{bottom:325.146667pt;}
.y81{bottom:327.066667pt;}
.y1fe{bottom:328.186667pt;}
.yf4{bottom:328.666667pt;}
.y230{bottom:332.026667pt;}
.y166{bottom:333.786667pt;}
.y4b{bottom:335.386667pt;}
.y1ad{bottom:335.706667pt;}
.y9b{bottom:339.266667pt;}
.y14d{bottom:340.386667pt;}
.y20a{bottom:341.346667pt;}
.y105{bottom:342.306667pt;}
.y11b{bottom:343.106667pt;}
.y66{bottom:346.146667pt;}
.y1d8{bottom:346.466667pt;}
.y192{bottom:346.626667pt;}
.y1eb{bottom:350.626667pt;}
.yb8{bottom:351.746667pt;}
.y184{bottom:353.986667pt;}
.y80{bottom:355.746667pt;}
.y1fd{bottom:356.866667pt;}
.ye3{bottom:357.186667pt;}
.yf3{bottom:357.346667pt;}
.y16f{bottom:358.626667pt;}
.y22f{bottom:360.706667pt;}
.y165{bottom:362.306667pt;}
.y1ac{bottom:364.386667pt;}
.y4a{bottom:366.466667pt;}
.y209{bottom:367.746667pt;}
.y9a{bottom:367.906667pt;}
.y104{bottom:370.946667pt;}
.y183{bottom:373.506667pt;}
.y1d7{bottom:375.106667pt;}
.yb7{bottom:378.306667pt;}
.y1cd{bottom:378.466667pt;}
.y65{bottom:379.586667pt;}
.y11a{bottom:382.306667pt;}
.y7f{bottom:384.386667pt;}
.y1fc{bottom:385.506667pt;}
.ye2{bottom:385.826667pt;}
.yf2{bottom:385.986667pt;}
.y23{bottom:388.226667pt;}
.y22e{bottom:389.346667pt;}
.y1ea{bottom:389.826667pt;}
.y164{bottom:390.946667pt;}
.y1ab{bottom:393.026667pt;}
.y208{bottom:394.306667pt;}
.y99{bottom:396.546667pt;}
.y49{bottom:397.346667pt;}
.y103{bottom:399.586667pt;}
.y12d{bottom:399.746667pt;}
.y1d6{bottom:403.746667pt;}
.yb6{bottom:404.706667pt;}
.ycb{bottom:404.866667pt;}
.y1cc{bottom:407.106667pt;}
.y14b{bottom:409.186667pt;}
.y22{bottom:409.666667pt;}
.y119{bottom:410.946667pt;}
.y64{bottom:413.026667pt;}
.y1fb{bottom:414.306667pt;}
.ye1{bottom:414.466667pt;}
.yf1{bottom:414.626667pt;}
.y22d{bottom:417.986667pt;}
.y1e9{bottom:418.466667pt;}
.y163{bottom:419.586667pt;}
.y207{bottom:420.866667pt;}
.y1aa{bottom:421.666667pt;}
.y7e{bottom:423.746667pt;}
.y98{bottom:425.186667pt;}
.y175{bottom:427.106667pt;}
.y21c{bottom:428.066667pt;}
.y102{bottom:428.226667pt;}
.y48{bottom:428.386667pt;}
.y21{bottom:431.266667pt;}
.yca{bottom:431.426667pt;}
.y1d5{bottom:432.386667pt;}
.y1cb{bottom:435.746667pt;}
.y12c{bottom:438.946667pt;}
.y118{bottom:439.586667pt;}
.y182{bottom:441.986667pt;}
.y1a2{bottom:442.146667pt;}
.y1fa{bottom:442.946667pt;}
.ye0{bottom:443.106667pt;}
.yf0{bottom:443.266667pt;}
.y63{bottom:446.306667pt;}
.y22c{bottom:446.626667pt;}
.y206{bottom:447.426667pt;}
.y162{bottom:448.226667pt;}
.y20{bottom:453.666667pt;}
.y97{bottom:453.826667pt;}
.y1c0{bottom:456.066667pt;}
.y21b{bottom:456.706667pt;}
.y101{bottom:456.866667pt;}
.yb5{bottom:457.826667pt;}
.y47{bottom:459.266667pt;}
.y1a9{bottom:461.026667pt;}
.y7d{bottom:463.106667pt;}
.y1ca{bottom:464.386667pt;}
.y173{bottom:467.266667pt;}
.y12b{bottom:467.586667pt;}
.y117{bottom:468.226667pt;}
.ydf{bottom:471.746667pt;}
.yef{bottom:471.906667pt;}
.y10{bottom:473.346667pt;}
.y205{bottom:473.826667pt;}
.y22b{bottom:475.266667pt;}
.y161{bottom:476.866667pt;}
.y147{bottom:477.826667pt;}
.y62{bottom:479.746667pt;}
.y96{bottom:482.466667pt;}
.yb4{bottom:484.386667pt;}
.y21a{bottom:485.346667pt;}
.y100{bottom:485.506667pt;}
.y1e8{bottom:486.466667pt;}
.y1d4{bottom:489.666667pt;}
.y46{bottom:490.146667pt;}
.y1c9{bottom:493.026667pt;}
.y12a{bottom:496.226667pt;}
.y116{bottom:496.866667pt;}
.y191{bottom:500.226667pt;}
.yde{bottom:500.386667pt;}
.y7c{bottom:502.466667pt;}
.y22a{bottom:503.906667pt;}
.y1a1{bottom:510.786667pt;}
.yb3{bottom:510.946667pt;}
.y95{bottom:511.106667pt;}
.y61{bottom:513.186667pt;}
.y219{bottom:513.986667pt;}
.y160{bottom:516.226667pt;}
.y1d3{bottom:518.306667pt;}
.y45{bottom:521.186667pt;}
.y1c8{bottom:521.666667pt;}
.yff{bottom:524.866667pt;}
.y1e7{bottom:525.666667pt;}
.y190{bottom:528.866667pt;}
.ydd{bottom:529.026667pt;}
.y7b{bottom:530.946667pt;}
.y229{bottom:532.386667pt;}
.y115{bottom:536.226667pt;}
.yb2{bottom:537.346667pt;}
.yc9{bottom:537.506667pt;}
.y180{bottom:539.426667pt;}
.y1f9{bottom:539.586667pt;}
.y94{bottom:539.746667pt;}
.y218{bottom:540.546667pt;}
.y60{bottom:546.466667pt;}
.y13d{bottom:546.626667pt;}
.y1c7{bottom:550.306667pt;}
.y44{bottom:552.066667pt;}
.y129{bottom:553.506667pt;}
.y1e6{bottom:554.306667pt;}
.y15f{bottom:555.586667pt;}
.y18f{bottom:557.506667pt;}
.ydc{bottom:557.666667pt;}
.y228{bottom:561.026667pt;}
.yb1{bottom:563.933333pt;}
.yc8{bottom:564.093333pt;}
.yfe{bottom:564.253333pt;}
.y93{bottom:568.253333pt;}
.yee{bottom:568.413333pt;}
.y7a{bottom:570.493333pt;}
.y15a{bottom:575.133333pt;}
.y114{bottom:575.453333pt;}
.y19f{bottom:579.613333pt;}
.y5f{bottom:579.933333pt;}
.y128{bottom:582.173333pt;}
.y43{bottom:583.133333pt;}
.y18e{bottom:586.173333pt;}
.ydb{bottom:586.333333pt;}
.y1c6{bottom:589.693333pt;}
.yb0{bottom:590.493333pt;}
.y1e5{bottom:593.693333pt;}
.y92{bottom:596.893333pt;}
.y79{bottom:597.053333pt;}
.y143{bottom:598.813333pt;}
.yfd{bottom:603.933333pt;}
.y113{bottom:604.093333pt;}
.y17f{bottom:608.253333pt;}
.y217{bottom:608.573333pt;}
.y5e{bottom:613.373333pt;}
.y42{bottom:614.013333pt;}
.y18d{bottom:614.813333pt;}
.yda{bottom:614.973333pt;}
.yaf{bottom:617.053333pt;}
.y227{bottom:618.333333pt;}
.y127{bottom:621.533333pt;}
.y1e4{bottom:622.333333pt;}
.y91{bottom:625.533333pt;}
.yed{bottom:625.693333pt;}
.y1c5{bottom:628.893333pt;}
.y112{bottom:632.733333pt;}
.y78{bottom:636.253333pt;}
.y216{bottom:637.213333pt;}
.y141{bottom:638.813333pt;}
.yae{bottom:643.453333pt;}
.yc7{bottom:643.613333pt;}
.y41{bottom:644.893333pt;}
.y5d{bottom:646.813333pt;}
.y226{bottom:646.973333pt;}
.y159{bottom:648.253333pt;}
.y1c4{bottom:648.413333pt;}
.y1bd{bottom:650.973333pt;}
.y90{bottom:654.173333pt;}
.yec{bottom:654.333333pt;}
.y126{bottom:660.893333pt;}
.y111{bottom:661.373333pt;}
.y1e3{bottom:661.533333pt;}
.y1f8{bottom:664.733333pt;}
.y77{bottom:664.893333pt;}
.y215{bottom:665.853333pt;}
.yad{bottom:670.013333pt;}
.yc6{bottom:670.173333pt;}
.yd9{bottom:672.093333pt;}
.y225{bottom:675.613333pt;}
.y40{bottom:675.933333pt;}
.y17e{bottom:677.053333pt;}
.y5c{bottom:680.093333pt;}
.y16e{bottom:682.813333pt;}
.yfc{bottom:682.973333pt;}
.y110{bottom:690.013333pt;}
.y1e2{bottom:690.173333pt;}
.y1f7{bottom:693.373333pt;}
.y76{bottom:693.533333pt;}
.y214{bottom:694.493333pt;}
.yac{bottom:696.573333pt;}
.y125{bottom:700.253333pt;}
.y13c{bottom:700.733333pt;}
.y224{bottom:704.253333pt;}
.y3f{bottom:706.813333pt;}
.y5b{bottom:711.293333pt;}
.yd8{bottom:711.453333pt;}
.y1c3{bottom:717.053333pt;}
.y1f6{bottom:722.013333pt;}
.y75{bottom:722.173333pt;}
.y213{bottom:722.973333pt;}
.yab{bottom:723.133333pt;}
.y124{bottom:728.733333pt;}
.y10f{bottom:729.373333pt;}
.y1e1{bottom:729.533333pt;}
.y8f{bottom:732.893333pt;}
.y3e{bottom:737.853333pt;}
.y16d{bottom:740.093333pt;}
.y5a{bottom:742.173333pt;}
.y156{bottom:745.693333pt;}
.y1bc{bottom:748.413333pt;}
.yaa{bottom:749.533333pt;}
.yc5{bottom:749.693333pt;}
.y74{bottom:750.653333pt;}
.yd7{bottom:750.813333pt;}
.y123{bottom:757.373333pt;}
.y13b{bottom:757.853333pt;}
.y1e0{bottom:758.173333pt;}
.y8e{bottom:761.533333pt;}
.y3d{bottom:768.733333pt;}
.y59{bottom:773.213333pt;}
.ya9{bottom:776.093333pt;}
.yc4{bottom:776.253333pt;}
.y73{bottom:779.293333pt;}
.yd6{bottom:779.453333pt;}
.y1df{bottom:786.693333pt;}
.y8d{bottom:790.213333pt;}
.y122{bottom:797.093333pt;}
.y10e{bottom:797.413333pt;}
.y3c{bottom:799.653333pt;}
.ya8{bottom:802.693333pt;}
.yc3{bottom:802.853333pt;}
.y58{bottom:804.133333pt;}
.yd{bottom:807.173333pt;}
.y72{bottom:807.973333pt;}
.yd5{bottom:808.133333pt;}
.y153{bottom:814.533333pt;}
.y1b4{bottom:817.253333pt;}
.y1f5{bottom:818.533333pt;}
.y8c{bottom:818.693333pt;}
.y10d{bottom:825.893333pt;}
.y1de{bottom:826.053333pt;}
.ya7{bottom:829.253333pt;}
.y3b{bottom:830.693333pt;}
.y57{bottom:835.013333pt;}
.y71{bottom:836.613333pt;}
.yd4{bottom:836.773333pt;}
.y17c{bottom:843.333333pt;}
.y1f4{bottom:847.173333pt;}
.y8b{bottom:847.333333pt;}
.y10c{bottom:854.533333pt;}
.ya6{bottom:855.813333pt;}
.yc{bottom:859.173333pt;}
.y3a{bottom:861.573333pt;}
.y70{bottom:865.253333pt;}
.yd3{bottom:865.413333pt;}
.y56{bottom:866.053333pt;}
.yb{bottom:874.853333pt;}
.y1f3{bottom:875.813333pt;}
.y8a{bottom:875.973333pt;}
.ya5{bottom:882.213333pt;}
.yc2{bottom:882.373333pt;}
.y1c2{bottom:883.333333pt;}
.ya{bottom:891.813333pt;}
.y39{bottom:892.613333pt;}
.y6f{bottom:893.893333pt;}
.y55{bottom:896.933333pt;}
.y1b9{bottom:900.613333pt;}
.y89{bottom:904.613333pt;}
.ya4{bottom:908.773333pt;}
.y9{bottom:908.933333pt;}
.y152{bottom:911.973333pt;}
.y6e{bottom:922.533333pt;}
.y38{bottom:923.493333pt;}
.y54{bottom:927.973333pt;}
.y88{bottom:933.253333pt;}
.ya3{bottom:935.333333pt;}
.y8{bottom:940.133333pt;}
.y1b8{bottom:940.773333pt;}
.y53{bottom:958.853333pt;}
.y6d{bottom:961.893333pt;}
.y37{bottom:963.013333pt;}
.y7{bottom:963.333333pt;}
.y1{bottom:991.493333pt;}
.y4{bottom:999.493333pt;}
.h1d{height:26.560000pt;}
.h1f{height:26.880000pt;}
.hc{height:29.940625pt;}
.hb{height:35.200000pt;}
.h17{height:36.883125pt;}
.ha{height:37.090625pt;}
.h18{height:37.479688pt;}
.h14{height:39.061875pt;}
.h22{height:39.360000pt;}
.h2b{height:40.640000pt;}
.h21{height:40.800000pt;}
.h9{height:41.112500pt;}
.h31{height:41.440000pt;}
.h30{height:41.632000pt;}
.h5{height:44.687500pt;}
.h16{height:45.156250pt;}
.h1a{height:47.062500pt;}
.hd{height:50.733750pt;}
.h23{height:51.552000pt;}
.h8{height:51.991875pt;}
.h6{height:52.832812pt;}
.h1c{height:53.120000pt;}
.h34{height:53.937500pt;}
.h3{height:54.592000pt;}
.hf{height:54.650312pt;}
.h19{height:55.063125pt;}
.h10{height:55.290312pt;}
.h11{height:57.210313pt;}
.h2{height:58.563750pt;}
.h13{height:59.130312pt;}
.h27{height:61.125000pt;}
.h12{height:62.970313pt;}
.h4{height:65.531250pt;}
.h1b{height:65.843750pt;}
.h2c{height:67.840000pt;}
.h25{height:68.000000pt;}
.h2d{height:68.032000pt;}
.h24{height:68.160000pt;}
.h26{height:68.192000pt;}
.h7{height:71.296875pt;}
.h29{height:72.480000pt;}
.h1e{height:79.840000pt;}
.h33{height:82.720000pt;}
.h28{height:96.800000pt;}
.h2e{height:96.832000pt;}
.h20{height:132.992000pt;}
.h2a{height:149.280000pt;}
.h2f{height:152.186667pt;}
.h32{height:162.880000pt;}
.h15{height:279.106667pt;}
.he{height:331.906667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2f{width:29.280000pt;}
.w2d{width:29.440000pt;}
.w17{width:31.040000pt;}
.w28{width:32.160000pt;}
.w13{width:35.360000pt;}
.w1d{width:41.280000pt;}
.w24{width:47.200000pt;}
.w1b{width:47.360000pt;}
.w15{width:47.392000pt;}
.w11{width:47.520000pt;}
.w1e{width:47.552000pt;}
.w14{width:53.280000pt;}
.w26{width:53.312000pt;}
.w2c{width:53.440000pt;}
.w10{width:59.360000pt;}
.w1c{width:59.392000pt;}
.w16{width:63.680000pt;}
.w25{width:65.312000pt;}
.w2e{width:65.440000pt;}
.w12{width:65.472000pt;}
.w27{width:68.000000pt;}
.w1f{width:69.760000pt;}
.w9{width:83.200000pt;}
.w8{width:83.232000pt;}
.w7{width:89.280000pt;}
.wa{width:89.312000pt;}
.wb{width:94.720000pt;}
.w6{width:178.746667pt;}
.w2b{width:197.306667pt;}
.wf{width:197.466667pt;}
.w1a{width:197.626667pt;}
.w20{width:201.786667pt;}
.wc{width:201.946667pt;}
.w22{width:203.386667pt;}
.w23{width:208.826667pt;}
.we{width:209.466667pt;}
.w19{width:209.626667pt;}
.w29{width:227.386667pt;}
.w3{width:356.386667pt;}
.w2a{width:395.426667pt;}
.wd{width:407.746667pt;}
.w18{width:407.906667pt;}
.w21{width:412.866667pt;}
.w4{width:582.013333pt;}
.w5{width:582.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:2.080000pt;}
.x48{left:3.360000pt;}
.x32{left:4.960000pt;}
.xe{left:6.240000pt;}
.x2e{left:9.280000pt;}
.x17{left:10.720000pt;}
.x38{left:15.200000pt;}
.x6{left:41.120000pt;}
.x43{left:84.352000pt;}
.x1{left:87.551988pt;}
.x14{left:89.274667pt;}
.x1f{left:94.591988pt;}
.xd{left:95.552000pt;}
.x29{left:97.952000pt;}
.x7{left:100.191988pt;}
.x23{left:103.712000pt;}
.x22{left:118.591988pt;}
.x21{left:142.586655pt;}
.x4{left:203.866667pt;}
.x8{left:223.706655pt;}
.x15{left:225.634667pt;}
.xa{left:250.266655pt;}
.xc{left:258.466655pt;}
.x5{left:260.226667pt;}
.x24{left:283.106667pt;}
.x33{left:297.826667pt;}
.x2a{left:300.546667pt;}
.x16{left:302.114667pt;}
.x44{left:312.386667pt;}
.x9{left:327.586655pt;}
.xb{left:328.706655pt;}
.x3e{left:354.466667pt;}
.x35{left:357.986667pt;}
.x2b{left:360.546667pt;}
.x45{left:366.466667pt;}
.x25{left:373.186667pt;}
.x20{left:387.586655pt;}
.x12{left:388.861333pt;}
.x3f{left:402.466667pt;}
.x36{left:405.986667pt;}
.x2c{left:408.706667pt;}
.x46{left:414.466667pt;}
.x1d{left:438.621333pt;}
.x1b{left:441.440000pt;}
.x26{left:457.213333pt;}
.x37{left:466.173333pt;}
.x40{left:468.413333pt;}
.x3c{left:472.093333pt;}
.x2d{left:474.813333pt;}
.x47{left:480.413333pt;}
.x13{left:481.661333pt;}
.x19{left:496.514667pt;}
.x3d{left:504.413333pt;}
.x34{left:508.093333pt;}
.x18{left:511.141333pt;}
.x10{left:512.101333pt;}
.x1c{left:518.181333pt;}
.xf{left:535.941333pt;}
.x27{left:541.213333pt;}
.x11{left:542.181333pt;}
.x39{left:556.093333pt;}
.x41{left:558.493333pt;}
.x2f{left:564.893333pt;}
.x1e{left:569.381333pt;}
.x3a{left:604.293333pt;}
.x30{left:612.933333pt;}
.x28{left:631.173333pt;}
.x2{left:653.253322pt;}
.x3{left:671.973322pt;}
.x3b{left:674.693333pt;}
.x31{left:677.253333pt;}
.x49{left:678.533333pt;}
.x42{left:681.093333pt;}
}




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