
    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_265ccd09d2cd4bc8412c069b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929000;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_7c257fae51c00bdc66ce79a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.687000;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_23ca3dc8d2430c7b91561fcb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091000;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_f0e85f672120a258dd6ac013.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107000;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_2b1163da763a857b4bab8953.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113000;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_15eeca0dcaa0b4f0cf41972b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.068000;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_77becdce7d3637a79d6411a5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.849333;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_d45bcae93df080c34916476f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.v2{vertical-align:-19.800000px;}
.v6{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.800000px;}
.v5{vertical-align:19.800000px;}
.v1{vertical-align:21.780000px;}
.v4{vertical-align:23.760000px;}
.v3{vertical-align:63.726000px;}
.ls17{letter-spacing:-1.500000px;}
.ls1e{letter-spacing:-1.440000px;}
.ls32{letter-spacing:-1.080000px;}
.ls31{letter-spacing:-0.900000px;}
.ls16{letter-spacing:-0.870000px;}
.ls1f{letter-spacing:-0.835200px;}
.ls2e{letter-spacing:-0.780000px;}
.ls11{letter-spacing:-0.720000px;}
.ls33{letter-spacing:-0.626400px;}
.ls13{letter-spacing:-0.600000px;}
.ls28{letter-spacing:-0.540000px;}
.ls30{letter-spacing:-0.522000px;}
.ls12{letter-spacing:-0.417600px;}
.ls18{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.300000px;}
.ls21{letter-spacing:-0.270000px;}
.ls19{letter-spacing:-0.208800px;}
.ls26{letter-spacing:-0.174000px;}
.ls6{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000120px;}
.lsc{letter-spacing:0.000360px;}
.lse{letter-spacing:0.000400px;}
.ls2d{letter-spacing:0.000600px;}
.ls2c{letter-spacing:0.000720px;}
.lsa{letter-spacing:0.001200px;}
.lsd{letter-spacing:0.006560px;}
.ls1c{letter-spacing:0.208800px;}
.ls1a{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.417600px;}
.ls9{letter-spacing:0.622560px;}
.ls8{letter-spacing:0.630560px;}
.ls1b{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.835200px;}
.ls23{letter-spacing:1.044000px;}
.ls7{letter-spacing:1.080000px;}
.ls29{letter-spacing:1.440000px;}
.ls22{letter-spacing:1.800000px;}
.ls1d{letter-spacing:2.562400px;}
.ls20{letter-spacing:2.946900px;}
.ls3{letter-spacing:9.704408px;}
.ls1{letter-spacing:9.711600px;}
.ls0{letter-spacing:9.712207px;}
.ls4{letter-spacing:9.714600px;}
.ls5{letter-spacing:9.714622px;}
.ls2{letter-spacing:9.723593px;}
.ls35{letter-spacing:50.322000px;}
.ls34{letter-spacing:50.325000px;}
.ls14{letter-spacing:66.643800px;}
.ls10{letter-spacing:66.646800px;}
.ls25{letter-spacing:66.993600px;}
.ls2f{letter-spacing:67.687200px;}
.ls15{letter-spacing:68.384400px;}
.lsb{letter-spacing:82.965600px;}
.lsf{letter-spacing:83.315400px;}
.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;}
}
.ws19{word-spacing:-16.920000px;}
.wsa{word-spacing:-16.200000px;}
.ws68{word-spacing:-15.840000px;}
.ws5{word-spacing:-14.100000px;}
.ws46{word-spacing:-13.800000px;}
.ws40{word-spacing:-10.857600px;}
.ws0{word-spacing:-10.857000px;}
.ws52{word-spacing:-10.648800px;}
.ws53{word-spacing:-10.231200px;}
.ws37{word-spacing:-10.022400px;}
.ws6{word-spacing:-9.870000px;}
.ws9{word-spacing:-9.813600px;}
.ws23{word-spacing:-9.604800px;}
.wsb{word-spacing:-9.396000px;}
.ws65{word-spacing:-9.187200px;}
.ws1{word-spacing:-8.995800px;}
.ws3d{word-spacing:-8.978400px;}
.ws56{word-spacing:-8.832240px;}
.ws2{word-spacing:-8.178000px;}
.ws45{word-spacing:-8.004000px;}
.ws60{word-spacing:-7.656000px;}
.ws1f{word-spacing:-7.308000px;}
.ws5b{word-spacing:-2.880000px;}
.ws59{word-spacing:-2.700000px;}
.ws3b{word-spacing:-2.640000px;}
.ws43{word-spacing:-2.580000px;}
.ws5f{word-spacing:-2.460000px;}
.ws1a{word-spacing:-2.400000px;}
.ws4b{word-spacing:-2.340000px;}
.ws3a{word-spacing:-2.280000px;}
.ws4e{word-spacing:-2.100000px;}
.ws38{word-spacing:-1.728000px;}
.ws58{word-spacing:-1.680000px;}
.ws14{word-spacing:-1.440000px;}
.ws66{word-spacing:-1.368000px;}
.ws36{word-spacing:-1.200000px;}
.ws6f{word-spacing:-1.152000px;}
.ws63{word-spacing:-1.140000px;}
.ws2f{word-spacing:-1.080000px;}
.ws5a{word-spacing:-0.936000px;}
.wse{word-spacing:-0.864000px;}
.ws16{word-spacing:-0.840000px;}
.ws44{word-spacing:-0.780000px;}
.ws5c{word-spacing:-0.720000px;}
.ws4d{word-spacing:-0.660000px;}
.wsf{word-spacing:-0.300000px;}
.ws42{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.216000px;}
.ws70{word-spacing:-0.180000px;}
.ws3e{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.wsd{word-spacing:0.072000px;}
.ws21{word-spacing:0.120000px;}
.ws8{word-spacing:0.180000px;}
.ws62{word-spacing:0.288000px;}
.ws39{word-spacing:0.300000px;}
.ws2c{word-spacing:0.360000px;}
.ws6a{word-spacing:0.420000px;}
.ws3c{word-spacing:0.480000px;}
.ws32{word-spacing:0.540000px;}
.ws50{word-spacing:0.600000px;}
.ws35{word-spacing:0.660000px;}
.ws31{word-spacing:0.720000px;}
.ws5e{word-spacing:0.780000px;}
.ws1c{word-spacing:0.840000px;}
.ws15{word-spacing:0.864000px;}
.ws6b{word-spacing:0.960000px;}
.ws48{word-spacing:1.008000px;}
.ws13{word-spacing:1.080000px;}
.ws4c{word-spacing:1.200000px;}
.ws5d{word-spacing:1.320000px;}
.ws34{word-spacing:1.380000px;}
.ws2d{word-spacing:1.440000px;}
.ws22{word-spacing:1.500000px;}
.ws30{word-spacing:1.584000px;}
.ws1d{word-spacing:1.680000px;}
.ws20{word-spacing:1.740000px;}
.ws2e{word-spacing:1.980000px;}
.ws7{word-spacing:2.100000px;}
.ws17{word-spacing:2.160000px;}
.ws51{word-spacing:2.280000px;}
.ws18{word-spacing:2.340000px;}
.ws11{word-spacing:2.760000px;}
.ws1b{word-spacing:2.820000px;}
.ws3f{word-spacing:3.000000px;}
.ws27{word-spacing:3.024000px;}
.ws33{word-spacing:3.120000px;}
.ws1e{word-spacing:3.168000px;}
.ws41{word-spacing:3.240000px;}
.ws29{word-spacing:3.384000px;}
.ws57{word-spacing:3.528000px;}
.ws10{word-spacing:3.540000px;}
.ws4a{word-spacing:3.720000px;}
.ws55{word-spacing:3.780000px;}
.ws54{word-spacing:3.816000px;}
.ws6c{word-spacing:4.260000px;}
.ws12{word-spacing:4.440000px;}
.ws4{word-spacing:4.680000px;}
.ws4f{word-spacing:4.740000px;}
.ws69{word-spacing:4.800000px;}
.ws6d{word-spacing:4.968000px;}
.ws67{word-spacing:5.040000px;}
.ws64{word-spacing:5.160000px;}
.ws61{word-spacing:6.048000px;}
.ws49{word-spacing:8.640000px;}
.ws26{word-spacing:9.144000px;}
.ws24{word-spacing:10.872000px;}
.ws28{word-spacing:11.304000px;}
.ws2a{word-spacing:12.816000px;}
.ws2b{word-spacing:13.176000px;}
.ws25{word-spacing:16.416000px;}
.ws47{word-spacing:20.952000px;}
.ws6e{word-spacing:30.528000px;}
._e{margin-left:-48.686414px;}
._26{margin-left:-33.408165px;}
._22{margin-left:-32.213642px;}
._23{margin-left:-30.534250px;}
._b{margin-left:-28.170576px;}
._25{margin-left:-25.876145px;}
._24{margin-left:-24.564007px;}
._1a{margin-left:-23.525765px;}
._19{margin-left:-21.712613px;}
._1b{margin-left:-20.623645px;}
._15{margin-left:-19.532894px;}
._13{margin-left:-18.245398px;}
._14{margin-left:-16.274450px;}
._1c{margin-left:-15.111374px;}
._27{margin-left:-14.054256px;}
._f{margin-left:-12.948000px;}
._1e{margin-left:-11.604616px;}
._17{margin-left:-10.518631px;}
._18{margin-left:-8.991915px;}
._12{margin-left:-7.628784px;}
._11{margin-left:-5.778047px;}
._6{margin-left:-4.324392px;}
._3{margin-left:-3.308441px;}
._a{margin-left:-2.280012px;}
._1{margin-left:-1.236024px;}
._7{width:1.010390px;}
._2{width:2.103136px;}
._d{width:3.963594px;}
._0{width:5.299206px;}
._9{width:6.340224px;}
._10{width:7.896888px;}
._8{width:9.542441px;}
._4{width:10.703240px;}
._5{width:12.279742px;}
._1d{width:13.303879px;}
._16{width:17.133639px;}
._21{width:22.973760px;}
._20{width:33.925262px;}
._1f{width:35.283579px;}
._c{width:82.977000px;}
.fc6{color:rgb(35,31,32);}
.fc3{color:rgb(29,77,107);}
.fc2{color:rgb(124,145,170);}
.fc4{color:transparent;}
.fc1{color:rgb(41,67,95);}
.fc5{color:rgb(62,104,144);}
.fc0{color:rgb(62,104,144);}
.fs5{font-size:34.800000px;}
.fsd{font-size:37.584000px;}
.fs2{font-size:38.280000px;}
.fsa{font-size:41.760000px;}
.fs9{font-size:42.000000px;}
.fs1{font-size:46.200000px;}
.fs8{font-size:48.720000px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fsc{font-size:64.800000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:120.000000px;}
.fs7{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:8.586300px;}
.y1{bottom:41.019750px;}
.y25e{bottom:106.298700px;}
.y16{bottom:106.299000px;}
.y20f{bottom:106.299450px;}
.y28a{bottom:106.420950px;}
.y20b{bottom:106.422000px;}
.y11a{bottom:111.249000px;}
.y24a{bottom:121.299000px;}
.y289{bottom:121.420950px;}
.y20a{bottom:121.422000px;}
.y25d{bottom:121.606350px;}
.y20e{bottom:122.631300px;}
.y15{bottom:122.799000px;}
.y281{bottom:127.051200px;}
.y13f{bottom:127.051500px;}
.y39{bottom:127.749000px;}
.y119{bottom:132.001200px;}
.y249{bottom:136.299000px;}
.y25c{bottom:136.913400px;}
.y20d{bottom:138.963150px;}
.yb5{bottom:139.299000px;}
.y180{bottom:143.551200px;}
.y38{bottom:143.551500px;}
.y14{bottom:144.249000px;}
.y118{bottom:147.804000px;}
.ya1{bottom:148.501200px;}
.y25b{bottom:152.220450px;}
.y20c{bottom:155.295000px;}
.y15e{bottom:155.799000px;}
.y37{bottom:160.051500px;}
.yb4{bottom:160.749000px;}
.y117{bottom:164.304000px;}
.y17f{bottom:165.001500px;}
.y25a{bottom:167.527500px;}
.y156{bottom:169.254000px;}
.y36{bottom:176.551500px;}
.y15d{bottom:177.249000px;}
.y17e{bottom:180.804000px;}
.y64{bottom:181.501500px;}
.y188{bottom:181.817850px;}
.y2a8{bottom:181.818000px;}
.y155{bottom:185.055000px;}
.y116{bottom:185.754000px;}
.y2b3{bottom:185.884500px;}
.y10{bottom:186.220500px;}
.y35{bottom:193.051500px;}
.y2a7{bottom:197.283300px;}
.y63{bottom:197.304000px;}
.ydb{bottom:198.001500px;}
.y187{bottom:199.952100px;}
.y2b2{bottom:200.884500px;}
.y115{bottom:201.555000px;}
.yb3{bottom:202.254000px;}
.ya0{bottom:202.569750px;}
.y154{bottom:206.505000px;}
.yf{bottom:206.973000px;}
.y1c6{bottom:209.551500px;}
.y2a6{bottom:212.748000px;}
.y1ae{bottom:213.804000px;}
.y34{bottom:214.501500px;}
.y2b1{bottom:215.884500px;}
.yb2{bottom:218.055000px;}
.y186{bottom:218.085750px;}
.y62{bottom:218.754000px;}
.y259{bottom:219.070350px;}
.y9f{bottom:220.661700px;}
.y246{bottom:223.005000px;}
.y280{bottom:223.323000px;}
.ye{bottom:223.473000px;}
.y288{bottom:223.915500px;}
.y1c5{bottom:226.051500px;}
.y13e{bottom:230.304000px;}
.y15c{bottom:231.318300px;}
.y258{bottom:234.265500px;}
.y61{bottom:234.555000px;}
.y1ad{bottom:235.254000px;}
.y185{bottom:236.221350px;}
.y9e{bottom:238.753650px;}
.y287{bottom:238.915500px;}
.y1da{bottom:239.505000px;}
.yd{bottom:239.973000px;}
.y27f{bottom:241.723200px;}
.y1c4{bottom:242.551500px;}
.y15b{bottom:249.540900px;}
.y17d{bottom:251.055000px;}
.y13d{bottom:251.754000px;}
.y286{bottom:253.915500px;}
.y184{bottom:254.355000px;}
.y60{bottom:256.005000px;}
.yf1{bottom:256.322850px;}
.yc{bottom:256.473000px;}
.y9d{bottom:256.845000px;}
.y1c3{bottom:259.051500px;}
.y27e{bottom:260.125350px;}
.y1f2{bottom:260.257500px;}
.y153{bottom:260.574900px;}
.y221{bottom:267.555000px;}
.y15a{bottom:267.763500px;}
.y33{bottom:268.571250px;}
.y285{bottom:268.915500px;}
.y5f{bottom:271.807500px;}
.y13c{bottom:272.505000px;}
.y8d{bottom:272.820900px;}
.yb{bottom:272.973000px;}
.yf0{bottom:274.459950px;}
.y1c2{bottom:275.551500px;}
.y1f1{bottom:276.058500px;}
.y114{bottom:276.757500px;}
.y245{bottom:277.076700px;}
.y27d{bottom:278.526750px;}
.y152{bottom:278.672700px;}
.y32{bottom:283.630500px;}
.y284{bottom:283.915500px;}
.y220{bottom:284.055000px;}
.y5e{bottom:288.307500px;}
.y8c{bottom:289.073100px;}
.y1c1{bottom:292.051500px;}
.y1f0{bottom:292.558500px;}
.yef{bottom:292.597650px;}
.y235{bottom:293.257500px;}
.y207{bottom:293.574300px;}
.y1d9{bottom:293.574750px;}
.ya{bottom:293.725500px;}
.y183{bottom:293.747850px;}
.y244{bottom:295.153500px;}
.y9c{bottom:296.197500px;}
.y151{bottom:296.770500px;}
.y27c{bottom:296.926950px;}
.y21f{bottom:300.555000px;}
.y5d{bottom:304.807500px;}
.y8b{bottom:305.325300px;}
.y159{bottom:307.245900px;}
.y1c0{bottom:308.551500px;}
.y182{bottom:308.881500px;}
.y234{bottom:309.058500px;}
.y1b2{bottom:309.315000px;}
.y13b{bottom:309.757500px;}
.y1ac{bottom:310.073250px;}
.y78{bottom:310.073700px;}
.yb1{bottom:310.074450px;}
.yda{bottom:310.074600px;}
.y9{bottom:310.225500px;}
.y206{bottom:311.752650px;}
.y1d8{bottom:311.942700px;}
.y243{bottom:313.230300px;}
.y1ef{bottom:314.008500px;}
.y150{bottom:314.868300px;}
.y27b{bottom:315.327150px;}
.yee{bottom:319.239900px;}
.y8a{bottom:321.577500px;}
.y21e{bottom:322.005000px;}
.y158{bottom:322.467900px;}
.y1b1{bottom:324.315000px;}
.y1bf{bottom:325.051500px;}
.y17c{bottom:325.558500px;}
.y5c{bottom:326.257500px;}
.y1ab{bottom:328.120650px;}
.yd9{bottom:328.122150px;}
.y77{bottom:328.233600px;}
.yb0{bottom:328.256850px;}
.y205{bottom:329.930250px;}
.y1d7{bottom:330.310650px;}
.y113{bottom:330.827100px;}
.y242{bottom:331.307100px;}
.y27a{bottom:333.727950px;}
.yed{bottom:337.377000px;}
.y157{bottom:337.690500px;}
.y1b0{bottom:339.315000px;}
.y14f{bottom:341.472000px;}
.y270{bottom:341.551500px;}
.y5b{bottom:342.058500px;}
.y1aa{bottom:346.168050px;}
.yd8{bottom:346.169550px;}
.y76{bottom:346.393500px;}
.yaf{bottom:346.437300px;}
.y1be{bottom:346.501500px;}
.y204{bottom:348.107850px;}
.y1d6{bottom:348.678600px;}
.y112{bottom:349.105950px;}
.y241{bottom:349.383900px;}
.y8{bottom:351.729000px;}
.y279{bottom:352.128150px;}
.y1af{bottom:354.315000px;}
.y89{bottom:354.837000px;}
.yec{bottom:355.514100px;}
.y14e{bottom:359.569800px;}
.y1bd{bottom:362.304000px;}
.y26f{bottom:363.001500px;}
.y5a{bottom:363.508500px;}
.y13a{bottom:363.825900px;}
.y1a9{bottom:364.215450px;}
.yd7{bottom:364.217100px;}
.y75{bottom:364.553400px;}
.yae{bottom:364.617750px;}
.y203{bottom:366.286050px;}
.y1d5{bottom:367.046550px;}
.y111{bottom:367.384800px;}
.y240{bottom:367.460700px;}
.y1ee{bottom:368.079000px;}
.y278{bottom:370.528950px;}
.y7{bottom:372.481500px;}
.y88{bottom:372.888600px;}
.yeb{bottom:373.651200px;}
.y21d{bottom:376.074900px;}
.y14d{bottom:377.668200px;}
.y26e{bottom:378.804000px;}
.y59{bottom:379.311000px;}
.y139{bottom:382.216200px;}
.y1a8{bottom:382.262850px;}
.yd6{bottom:382.263450px;}
.y74{bottom:382.713300px;}
.yad{bottom:382.798200px;}
.y1bc{bottom:383.754000px;}
.y233{bottom:384.261000px;}
.y1d4{bottom:385.414500px;}
.y23f{bottom:385.537500px;}
.y110{bottom:385.663650px;}
.y6{bottom:388.981500px;}
.y87{bottom:390.940200px;}
.yea{bottom:391.788300px;}
.y202{bottom:392.967300px;}
.y21c{bottom:394.146900px;}
.y17b{bottom:395.811000px;}
.y277{bottom:397.434000px;}
.y26d{bottom:400.254000px;}
.y1a7{bottom:400.310250px;}
.yd5{bottom:400.310850px;}
.y138{bottom:400.606500px;}
.y58{bottom:400.761000px;}
.y73{bottom:400.873200px;}
.yac{bottom:400.978650px;}
.y23e{bottom:403.614300px;}
.y10f{bottom:403.942500px;}
.y14c{bottom:404.269800px;}
.y1bb{bottom:404.505000px;}
.y5{bottom:405.481500px;}
.y86{bottom:408.991800px;}
.ye9{bottom:409.926000px;}
.y201{bottom:411.144900px;}
.yde{bottom:411.742500px;}
.y21b{bottom:412.219500px;}
.y276{bottom:415.834200px;}
.y57{bottom:416.563500px;}
.y17a{bottom:417.261000px;}
.y1a6{bottom:418.357650px;}
.yd4{bottom:418.358250px;}
.y137{bottom:418.996800px;}
.y72{bottom:419.033100px;}
.yab{bottom:419.159100px;}
.y23d{bottom:421.691100px;}
.y4{bottom:421.981500px;}
.y10e{bottom:422.221350px;}
.y14b{bottom:422.367600px;}
.y1d3{bottom:425.043150px;}
.ydd{bottom:426.742500px;}
.y85{bottom:427.044300px;}
.y200{bottom:429.323850px;}
.y21a{bottom:430.292100px;}
.y2b6{bottom:431.314500px;}
.y275{bottom:434.235900px;}
.y1a5{bottom:436.405050px;}
.yd3{bottom:436.405650px;}
.y71{bottom:437.193000px;}
.yaa{bottom:437.339550px;}
.y136{bottom:437.387100px;}
.y56{bottom:438.013500px;}
.y232{bottom:438.330750px;}
.y3{bottom:438.481500px;}
.y23c{bottom:439.769850px;}
.y1d2{bottom:440.411100px;}
.y14a{bottom:440.465400px;}
.ydc{bottom:441.742500px;}
.ye8{bottom:445.071300px;}
.y84{bottom:445.095900px;}
.y2b5{bottom:446.314500px;}
.y1ff{bottom:447.501450px;}
.y219{bottom:448.364700px;}
.y10d{bottom:449.004000px;}
.y274{bottom:452.636100px;}
.y26c{bottom:454.322700px;}
.y1a4{bottom:454.452450px;}
.yd2{bottom:454.453050px;}
.y70{bottom:455.352900px;}
.ya9{bottom:455.520000px;}
.y135{bottom:455.777400px;}
.y1d1{bottom:455.779050px;}
.y231{bottom:456.850350px;}
.y23b{bottom:457.846650px;}
.y149{bottom:458.563200px;}
.y1ba{bottom:458.574000px;}
.y55{bottom:458.764500px;}
.ye7{bottom:460.209000px;}
.y2b4{bottom:461.314500px;}
.y83{bottom:463.148400px;}
.y1fe{bottom:465.679050px;}
.y218{bottom:466.437300px;}
.y10c{bottom:467.282850px;}
.y26b{bottom:470.286600px;}
.y273{bottom:471.037500px;}
.y1d0{bottom:471.147000px;}
.y179{bottom:471.330150px;}
.y1a3{bottom:472.499850px;}
.yd1{bottom:472.500450px;}
.y6f{bottom:473.512800px;}
.y134{bottom:474.167700px;}
.y54{bottom:474.567000px;}
.y230{bottom:475.369350px;}
.y23a{bottom:475.923450px;}
.y82{bottom:481.200600px;}
.ya8{bottom:482.205000px;}
.y1fd{bottom:483.856650px;}
.y217{bottom:484.509900px;}
.y148{bottom:485.165400px;}
.y10b{bottom:485.561700px;}
.y26a{bottom:486.250500px;}
.y178{bottom:487.677750px;}
.y23{bottom:488.703000px;}
.y272{bottom:489.438300px;}
.y1a2{bottom:490.546800px;}
.yd0{bottom:490.547400px;}
.y133{bottom:492.557400px;}
.y22f{bottom:493.888800px;}
.y53{bottom:496.017000px;}
.y6e{bottom:500.176800px;}
.y22{bottom:502.203000px;}
.y239{bottom:502.503600px;}
.y216{bottom:502.582500px;}
.y147{bottom:503.263200px;}
.y10a{bottom:503.840550px;}
.y177{bottom:504.025350px;}
.y81{bottom:507.755850px;}
.y271{bottom:507.838500px;}
.ycf{bottom:508.594800px;}
.y1fc{bottom:510.538500px;}
.y132{bottom:510.947700px;}
.y22e{bottom:512.407950px;}
.y21{bottom:515.703000px;}
.y1a1{bottom:517.098300px;}
.y6d{bottom:518.336100px;}
.y176{bottom:520.372950px;}
.y238{bottom:520.581900px;}
.y215{bottom:520.654500px;}
.y146{bottom:521.360100px;}
.y109{bottom:522.121350px;}
.y80{bottom:525.807450px;}
.y257{bottom:527.740350px;}
.y1fb{bottom:528.716100px;}
.y20{bottom:529.203000px;}
.y131{bottom:529.336950px;}
.y22d{bottom:530.927700px;}
.y181{bottom:531.244500px;}
.yce{bottom:535.143000px;}
.y1a0{bottom:535.145700px;}
.y6c{bottom:536.496300px;}
.y175{bottom:536.720550px;}
.y295{bottom:537.153000px;}
.y209{bottom:538.392000px;}
.ya7{bottom:538.653000px;}
.y237{bottom:538.658700px;}
.y145{bottom:539.459700px;}
.y108{bottom:540.400200px;}
.y1f{bottom:542.703000px;}
.y256{bottom:542.935500px;}
.y7f{bottom:543.859050px;}
.y283{bottom:546.235500px;}
.y1fa{bottom:546.893700px;}
.y130{bottom:547.727250px;}
.y52{bottom:550.086150px;}
.y24e{bottom:550.372500px;}
.y294{bottom:552.153000px;}
.ycd{bottom:553.190400px;}
.y19f{bottom:553.193100px;}
.y208{bottom:553.392000px;}
.ya6{bottom:553.833450px;}
.y6b{bottom:554.656200px;}
.y1e{bottom:556.203000px;}
.y236{bottom:556.735500px;}
.y144{bottom:557.557500px;}
.y22c{bottom:557.951400px;}
.y107{bottom:558.679050px;}
.y214{bottom:559.987500px;}
.y282{bottom:561.235500px;}
.y1f9{bottom:565.071300px;}
.y24d{bottom:565.372500px;}
.y293{bottom:567.153000px;}
.y51{bottom:568.130250px;}
.ya5{bottom:569.014500px;}
.y1d{bottom:569.703000px;}
.y174{bottom:570.076200px;}
.y7e{bottom:570.414900px;}
.ycc{bottom:571.237800px;}
.y19e{bottom:571.240050px;}
.y6a{bottom:572.815500px;}
.y12f{bottom:574.621200px;}
.y22b{bottom:576.470550px;}
.y106{bottom:576.957900px;}
.y24c{bottom:580.372500px;}
.y292{bottom:582.153000px;}
.y1f8{bottom:583.248900px;}
.y143{bottom:584.159700px;}
.y50{bottom:585.573150px;}
.y173{bottom:588.223800px;}
.y7d{bottom:588.466500px;}
.ycb{bottom:589.285200px;}
.y19d{bottom:589.287450px;}
.y12e{bottom:593.011500px;}
.y22a{bottom:594.989700px;}
.y105{bottom:595.236750px;}
.y248{bottom:595.254000px;}
.y24b{bottom:595.372500px;}
.y291{bottom:597.153000px;}
.y1f7{bottom:601.426500px;}
.y142{bottom:602.257500px;}
.y4f{bottom:603.017250px;}
.y172{bottom:606.371400px;}
.y7c{bottom:606.518100px;}
.yca{bottom:607.332600px;}
.y19c{bottom:607.334850px;}
.y247{bottom:610.254000px;}
.y12d{bottom:611.401800px;}
.y290{bottom:612.153000px;}
.y69{bottom:612.235200px;}
.y229{bottom:613.508850px;}
.y1ed{bottom:620.267700px;}
.y4e{bottom:620.460000px;}
.y104{bottom:622.020300px;}
.y171{bottom:624.519000px;}
.y7b{bottom:624.569700px;}
.yc9{bottom:625.380000px;}
.y19b{bottom:625.382250px;}
.y28f{bottom:627.153000px;}
.y68{bottom:627.395100px;}
.y12c{bottom:629.792100px;}
.y228{bottom:632.026950px;}
.y4d{bottom:637.902750px;}
.y1ec{bottom:638.433150px;}
.y103{bottom:640.299150px;}
.y1f6{bottom:640.863600px;}
.y28e{bottom:642.153000px;}
.y67{bottom:642.555000px;}
.y1c{bottom:642.592500px;}
.y7a{bottom:642.621300px;}
.y170{bottom:642.665400px;}
.yc8{bottom:643.427400px;}
.y19a{bottom:643.429650px;}
.y12b{bottom:648.182400px;}
.y227{bottom:650.546100px;}
.y4c{bottom:655.345500px;}
.y1f5{bottom:656.041800px;}
.y1eb{bottom:656.598450px;}
.y28d{bottom:657.153000px;}
.y102{bottom:658.578900px;}
.y141{bottom:658.622700px;}
.y79{bottom:660.673500px;}
.y16f{bottom:660.812700px;}
.yc7{bottom:661.474800px;}
.y199{bottom:661.477050px;}
.y12a{bottom:666.572700px;}
.y226{bottom:669.065250px;}
.y1f4{bottom:671.219400px;}
.y28c{bottom:672.153000px;}
.y140{bottom:673.720500px;}
.y1ea{bottom:674.763750px;}
.y101{bottom:676.857750px;}
.y16e{bottom:678.960300px;}
.yc6{bottom:679.522200px;}
.y198{bottom:679.524000px;}
.y4b{bottom:681.291150px;}
.y1b{bottom:681.592500px;}
.y129{bottom:684.962400px;}
.y1f3{bottom:686.397000px;}
.y28b{bottom:687.153000px;}
.y225{bottom:687.584850px;}
.y2ac{bottom:689.427000px;}
.y2a5{bottom:690.891600px;}
.y100{bottom:695.136600px;}
.y16d{bottom:697.107900px;}
.yc5{bottom:697.569600px;}
.y197{bottom:697.571400px;}
.y4a{bottom:698.735400px;}
.y8e{bottom:699.070500px;}
.y2ab{bottom:704.427000px;}
.y224{bottom:706.104000px;}
.y2a4{bottom:709.356900px;}
.y1e9{bottom:709.936950px;}
.y128{bottom:711.856950px;}
.yff{bottom:713.415450px;}
.y16c{bottom:715.255500px;}
.yc4{bottom:715.617000px;}
.y196{bottom:715.618800px;}
.y49{bottom:716.178150px;}
.y2aa{bottom:719.427000px;}
.y1a{bottom:720.592500px;}
.y1e8{bottom:726.302250px;}
.y2a3{bottom:727.821600px;}
.y127{bottom:730.247250px;}
.yfe{bottom:731.694300px;}
.y48{bottom:733.620900px;}
.yc3{bottom:733.664400px;}
.y195{bottom:733.665750px;}
.y2a9{bottom:734.427000px;}
.y16b{bottom:741.906900px;}
.y1e7{bottom:742.667550px;}
.y9b{bottom:742.768650px;}
.y223{bottom:745.883850px;}
.y2a2{bottom:746.286300px;}
.y126{bottom:748.637550px;}
.yfd{bottom:749.973150px;}
.y47{bottom:751.063650px;}
.yc2{bottom:751.711800px;}
.y194{bottom:751.713150px;}
.y1e6{bottom:759.032850px;}
.y19{bottom:759.592500px;}
.y16a{bottom:760.054500px;}
.y9a{bottom:760.860000px;}
.y222{bottom:761.403000px;}
.y2a1{bottom:764.751000px;}
.y31{bottom:764.847750px;}
.y125{bottom:767.027850px;}
.yfc{bottom:768.252000px;}
.y46{bottom:768.507750px;}
.yc1{bottom:769.759200px;}
.y193{bottom:769.760100px;}
.y1e5{bottom:775.398150px;}
.y269{bottom:777.723300px;}
.y169{bottom:778.201500px;}
.y99{bottom:778.951350px;}
.y30{bottom:782.607000px;}
.y2a0{bottom:783.215700px;}
.y124{bottom:785.418150px;}
.y45{bottom:785.950500px;}
.yfb{bottom:786.530850px;}
.y192{bottom:787.806300px;}
.yc0{bottom:787.806600px;}
.y1e4{bottom:791.763450px;}
.y168{bottom:796.349100px;}
.y268{bottom:796.687200px;}
.y98{bottom:797.042700px;}
.y18{bottom:798.592500px;}
.y2f{bottom:800.366250px;}
.y29f{bottom:801.680400px;}
.y44{bottom:803.393250px;}
.y123{bottom:803.808450px;}
.y191{bottom:805.853700px;}
.ybf{bottom:805.854000px;}
.y1e3{bottom:808.128750px;}
.yfa{bottom:813.313350px;}
.y167{bottom:814.496100px;}
.y97{bottom:815.134050px;}
.y267{bottom:815.651100px;}
.y2e{bottom:818.125500px;}
.y29e{bottom:820.145100px;}
.y43{bottom:820.836000px;}
.y1cf{bottom:821.015100px;}
.y122{bottom:822.198750px;}
.y190{bottom:823.901100px;}
.ybe{bottom:823.901400px;}
.y1e2{bottom:824.494050px;}
.yf9{bottom:831.592200px;}
.y96{bottom:833.225700px;}
.y266{bottom:834.615300px;}
.y2d{bottom:835.884750px;}
.y17{bottom:837.592500px;}
.y29d{bottom:838.609800px;}
.y1ce{bottom:839.383050px;}
.y121{bottom:840.589050px;}
.y1e1{bottom:840.859350px;}
.y166{bottom:841.148400px;}
.y18f{bottom:841.948500px;}
.ybd{bottom:841.948800px;}
.y42{bottom:846.783900px;}
.yf8{bottom:849.871050px;}
.y95{bottom:851.317050px;}
.y265{bottom:853.579200px;}
.y2c{bottom:853.644000px;}
.y29c{bottom:857.074500px;}
.y1e0{bottom:857.224650px;}
.y1cd{bottom:857.752200px;}
.y255{bottom:858.962550px;}
.ye6{bottom:859.231500px;}
.y165{bottom:859.295100px;}
.y1b9{bottom:859.491450px;}
.y18e{bottom:859.995900px;}
.ybc{bottom:859.996200px;}
.y41{bottom:864.226650px;}
.y120{bottom:867.482250px;}
.yf7{bottom:868.150500px;}
.y94{bottom:869.409000px;}
.y2b{bottom:871.403250px;}
.y264{bottom:872.543100px;}
.y1df{bottom:873.589950px;}
.y29b{bottom:875.539200px;}
.y1cc{bottom:876.120150px;}
.y254{bottom:877.157700px;}
.ye5{bottom:877.368600px;}
.y164{bottom:877.442700px;}
.y1b8{bottom:877.611450px;}
.y18d{bottom:878.043300px;}
.ybb{bottom:878.043600px;}
.y40{bottom:881.669400px;}
.y11f{bottom:885.872550px;}
.y93{bottom:887.500350px;}
.y2a{bottom:889.162500px;}
.y1de{bottom:889.955250px;}
.y263{bottom:891.507900px;}
.y29a{bottom:894.003900px;}
.y1cb{bottom:894.488100px;}
.yf6{bottom:894.933150px;}
.y253{bottom:895.352850px;}
.ye4{bottom:895.505700px;}
.y163{bottom:895.590300px;}
.y1b7{bottom:895.730550px;}
.y18c{bottom:896.090700px;}
.yba{bottom:896.091000px;}
.y3f{bottom:899.112150px;}
.y92{bottom:905.591700px;}
.y29{bottom:906.921750px;}
.y262{bottom:910.471800px;}
.y299{bottom:912.468600px;}
.y11e{bottom:912.766800px;}
.y1ca{bottom:912.856050px;}
.yf5{bottom:913.212000px;}
.y252{bottom:913.547400px;}
.ye3{bottom:913.642800px;}
.y162{bottom:913.737900px;}
.y1b6{bottom:913.849800px;}
.y213{bottom:914.038500px;}
.y18b{bottom:914.138100px;}
.yb9{bottom:914.138400px;}
.y2b0{bottom:914.328000px;}
.y3e{bottom:916.555800px;}
.y13{bottom:919.113000px;}
.y1dd{bottom:923.328450px;}
.y91{bottom:923.683050px;}
.y28{bottom:924.681000px;}
.y261{bottom:929.435700px;}
.y298{bottom:930.933300px;}
.y11d{bottom:931.157100px;}
.y1c9{bottom:931.223550px;}
.yf4{bottom:931.490850px;}
.y251{bottom:931.742550px;}
.ye2{bottom:931.781100px;}
.ya4{bottom:931.785000px;}
.y161{bottom:931.885200px;}
.y1b5{bottom:931.969350px;}
.y212{bottom:932.109900px;}
.y18a{bottom:932.185200px;}
.yb8{bottom:932.185800px;}
.y2af{bottom:932.328000px;}
.y3d{bottom:933.998550px;}
.y12{bottom:940.713000px;}
.y90{bottom:941.775000px;}
.y27{bottom:942.440250px;}
.y260{bottom:948.399600px;}
.y297{bottom:949.398000px;}
.y11c{bottom:949.547400px;}
.y1c8{bottom:949.591500px;}
.yf3{bottom:949.769700px;}
.ye1{bottom:949.918200px;}
.y250{bottom:949.937700px;}
.ya3{bottom:949.966050px;}
.y1dc{bottom:949.997400px;}
.y66{bottom:950.007600px;}
.y160{bottom:950.032800px;}
.y1b4{bottom:950.088900px;}
.y211{bottom:950.182800px;}
.y189{bottom:950.232600px;}
.yb7{bottom:950.233200px;}
.y2ae{bottom:950.328000px;}
.y3c{bottom:951.441900px;}
.y26{bottom:960.199500px;}
.y25f{bottom:967.363500px;}
.y296{bottom:967.862700px;}
.y11b{bottom:967.937700px;}
.y1c7{bottom:967.959450px;}
.yf2{bottom:968.048550px;}
.ye0{bottom:968.055900px;}
.y24f{bottom:968.132850px;}
.ya2{bottom:968.146950px;}
.y1db{bottom:968.162700px;}
.y65{bottom:968.168100px;}
.y15f{bottom:968.180400px;}
.y1b3{bottom:968.208450px;}
.y210{bottom:968.255400px;}
.yb6{bottom:968.280600px;}
.y2ad{bottom:968.328000px;}
.y8f{bottom:968.371650px;}
.y3b{bottom:968.884650px;}
.y11{bottom:973.713000px;}
.ydf{bottom:986.193000px;}
.y3a{bottom:986.328000px;}
.y25{bottom:986.463000px;}
.y24{bottom:1041.732000px;}
.h2{height:24.259500px;}
.h7{height:29.880000px;}
.h12{height:31.560000px;}
.h1c{height:35.964000px;}
.h3{height:43.956000px;}
.hf{height:44.712000px;}
.he{height:45.900000px;}
.h1d{height:46.224000px;}
.h15{height:47.952000px;}
.ha{height:48.660000px;}
.hb{height:49.680000px;}
.h8{height:51.360000px;}
.h13{height:53.654400px;}
.h4{height:54.648000px;}
.h21{height:58.334880px;}
.h19{height:58.342080px;}
.h1b{height:59.611200px;}
.h1f{height:59.612400px;}
.h6{height:59.616000px;}
.h1e{height:59.616600px;}
.h14{height:59.617200px;}
.h1a{height:59.617800px;}
.h11{height:59.618400px;}
.h17{height:59.619600px;}
.h16{height:59.620200px;}
.h18{height:59.620800px;}
.hd{height:59.625000px;}
.hc{height:61.200000px;}
.h10{height:61.632000px;}
.h20{height:61.635600px;}
.h5{height:102.000000px;}
.h9{height:132.600000px;}
.h0{height:1148.025000px;}
.h1{height:1148.250000px;}
.w3{width:90.316500px;}
.w2{width:104.638500px;}
.w1{width:807.750000px;}
.w0{width:807.870000px;}
.x0{left:0.000000px;}
.x12{left:3.777300px;}
.x2{left:63.324000px;}
.x14{left:106.299000px;}
.x43{left:110.555250px;}
.x11{left:111.618000px;}
.xc{left:114.517500px;}
.x52{left:115.723485px;}
.x51{left:119.647800px;}
.x6{left:127.559250px;}
.x2a{left:130.348200px;}
.x53{left:132.695685px;}
.x34{left:135.291660px;}
.x33{left:136.574835px;}
.x3e{left:137.578650px;}
.x4c{left:140.126432px;}
.x5{left:141.154052px;}
.x15{left:146.959500px;}
.x18{left:148.818750px;}
.x17{left:153.070500px;}
.x29{left:155.724000px;}
.x30{left:158.094000px;}
.x39{left:162.390000px;}
.x23{left:164.023500px;}
.x7{left:166.413113px;}
.x4d{left:167.760585px;}
.x32{left:169.738500px;}
.x4a{left:173.262435px;}
.x3{left:174.646950px;}
.x19{left:176.507070px;}
.x1d{left:177.720000px;}
.x25{left:181.158966px;}
.x1f{left:186.236070px;}
.x3c{left:188.371500px;}
.x1e{left:190.179420px;}
.x27{left:191.339175px;}
.x3f{left:193.435875px;}
.x10{left:195.006000px;}
.x38{left:198.865398px;}
.x35{left:202.962000px;}
.x22{left:205.518795px;}
.x31{left:207.464985px;}
.x4b{left:209.502000px;}
.x1b{left:212.598825px;}
.xd{left:214.374000px;}
.x3b{left:220.786635px;}
.x1a{left:222.014220px;}
.x26{left:224.448066px;}
.x37{left:226.591563px;}
.xb{left:230.022000px;}
.x4{left:233.860612px;}
.x44{left:237.358212px;}
.x24{left:239.734470px;}
.x1c{left:240.753000px;}
.x16{left:253.531470px;}
.x40{left:256.264500px;}
.x3a{left:258.294135px;}
.xe{left:260.823000px;}
.xf{left:273.048000px;}
.x2c{left:279.317385px;}
.x36{left:281.380773px;}
.x4f{left:284.743860px;}
.x2e{left:288.441090px;}
.x4e{left:292.312500px;}
.x2b{left:294.916500px;}
.x50{left:300.464610px;}
.x2f{left:302.280000px;}
.x41{left:303.594285px;}
.x42{left:309.635985px;}
.x9{left:318.311625px;}
.x21{left:319.703010px;}
.x2d{left:343.546740px;}
.xa{left:351.954000px;}
.x20{left:353.260500px;}
.x28{left:363.469500px;}
.x47{left:381.580602px;}
.x48{left:439.553652px;}
.x49{left:444.595632px;}
.x46{left:448.184202px;}
.x45{left:454.241112px;}
.x8{left:459.273000px;}
.x3d{left:505.928085px;}
.x13{left:539.742000px;}
.x1{left:589.524000px;}
@media print{
.v2{vertical-align:-17.600000pt;}
.v6{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.600000pt;}
.v5{vertical-align:17.600000pt;}
.v1{vertical-align:19.360000pt;}
.v4{vertical-align:21.120000pt;}
.v3{vertical-align:56.645333pt;}
.ls17{letter-spacing:-1.333333pt;}
.ls1e{letter-spacing:-1.280000pt;}
.ls32{letter-spacing:-0.960000pt;}
.ls31{letter-spacing:-0.800000pt;}
.ls16{letter-spacing:-0.773333pt;}
.ls1f{letter-spacing:-0.742400pt;}
.ls2e{letter-spacing:-0.693333pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls33{letter-spacing:-0.556800pt;}
.ls13{letter-spacing:-0.533333pt;}
.ls28{letter-spacing:-0.480000pt;}
.ls30{letter-spacing:-0.464000pt;}
.ls12{letter-spacing:-0.371200pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.266667pt;}
.ls21{letter-spacing:-0.240000pt;}
.ls19{letter-spacing:-0.185600pt;}
.ls26{letter-spacing:-0.154667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000107pt;}
.lsc{letter-spacing:0.000320pt;}
.lse{letter-spacing:0.000356pt;}
.ls2d{letter-spacing:0.000533pt;}
.ls2c{letter-spacing:0.000640pt;}
.lsa{letter-spacing:0.001067pt;}
.lsd{letter-spacing:0.005831pt;}
.ls1c{letter-spacing:0.185600pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.371200pt;}
.ls9{letter-spacing:0.553387pt;}
.ls8{letter-spacing:0.560498pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.742400pt;}
.ls23{letter-spacing:0.928000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls29{letter-spacing:1.280000pt;}
.ls22{letter-spacing:1.600000pt;}
.ls1d{letter-spacing:2.277689pt;}
.ls20{letter-spacing:2.619467pt;}
.ls3{letter-spacing:8.626140pt;}
.ls1{letter-spacing:8.632533pt;}
.ls0{letter-spacing:8.633073pt;}
.ls4{letter-spacing:8.635200pt;}
.ls5{letter-spacing:8.635219pt;}
.ls2{letter-spacing:8.643194pt;}
.ls35{letter-spacing:44.730667pt;}
.ls34{letter-spacing:44.733333pt;}
.ls14{letter-spacing:59.238933pt;}
.ls10{letter-spacing:59.241600pt;}
.ls25{letter-spacing:59.549867pt;}
.ls2f{letter-spacing:60.166400pt;}
.ls15{letter-spacing:60.786133pt;}
.lsb{letter-spacing:73.747200pt;}
.lsf{letter-spacing:74.058133pt;}
.ws19{word-spacing:-15.040000pt;}
.wsa{word-spacing:-14.400000pt;}
.ws68{word-spacing:-14.080000pt;}
.ws5{word-spacing:-12.533333pt;}
.ws46{word-spacing:-12.266667pt;}
.ws40{word-spacing:-9.651200pt;}
.ws0{word-spacing:-9.650667pt;}
.ws52{word-spacing:-9.465600pt;}
.ws53{word-spacing:-9.094400pt;}
.ws37{word-spacing:-8.908800pt;}
.ws6{word-spacing:-8.773333pt;}
.ws9{word-spacing:-8.723200pt;}
.ws23{word-spacing:-8.537600pt;}
.wsb{word-spacing:-8.352000pt;}
.ws65{word-spacing:-8.166400pt;}
.ws1{word-spacing:-7.996267pt;}
.ws3d{word-spacing:-7.980800pt;}
.ws56{word-spacing:-7.850880pt;}
.ws2{word-spacing:-7.269333pt;}
.ws45{word-spacing:-7.114667pt;}
.ws60{word-spacing:-6.805333pt;}
.ws1f{word-spacing:-6.496000pt;}
.ws5b{word-spacing:-2.560000pt;}
.ws59{word-spacing:-2.400000pt;}
.ws3b{word-spacing:-2.346667pt;}
.ws43{word-spacing:-2.293333pt;}
.ws5f{word-spacing:-2.186667pt;}
.ws1a{word-spacing:-2.133333pt;}
.ws4b{word-spacing:-2.080000pt;}
.ws3a{word-spacing:-2.026667pt;}
.ws4e{word-spacing:-1.866667pt;}
.ws38{word-spacing:-1.536000pt;}
.ws58{word-spacing:-1.493333pt;}
.ws14{word-spacing:-1.280000pt;}
.ws66{word-spacing:-1.216000pt;}
.ws36{word-spacing:-1.066667pt;}
.ws6f{word-spacing:-1.024000pt;}
.ws63{word-spacing:-1.013333pt;}
.ws2f{word-spacing:-0.960000pt;}
.ws5a{word-spacing:-0.832000pt;}
.wse{word-spacing:-0.768000pt;}
.ws16{word-spacing:-0.746667pt;}
.ws44{word-spacing:-0.693333pt;}
.ws5c{word-spacing:-0.640000pt;}
.ws4d{word-spacing:-0.586667pt;}
.wsf{word-spacing:-0.266667pt;}
.ws42{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.192000pt;}
.ws70{word-spacing:-0.160000pt;}
.ws3e{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.wsd{word-spacing:0.064000pt;}
.ws21{word-spacing:0.106667pt;}
.ws8{word-spacing:0.160000pt;}
.ws62{word-spacing:0.256000pt;}
.ws39{word-spacing:0.266667pt;}
.ws2c{word-spacing:0.320000pt;}
.ws6a{word-spacing:0.373333pt;}
.ws3c{word-spacing:0.426667pt;}
.ws32{word-spacing:0.480000pt;}
.ws50{word-spacing:0.533333pt;}
.ws35{word-spacing:0.586667pt;}
.ws31{word-spacing:0.640000pt;}
.ws5e{word-spacing:0.693333pt;}
.ws1c{word-spacing:0.746667pt;}
.ws15{word-spacing:0.768000pt;}
.ws6b{word-spacing:0.853333pt;}
.ws48{word-spacing:0.896000pt;}
.ws13{word-spacing:0.960000pt;}
.ws4c{word-spacing:1.066667pt;}
.ws5d{word-spacing:1.173333pt;}
.ws34{word-spacing:1.226667pt;}
.ws2d{word-spacing:1.280000pt;}
.ws22{word-spacing:1.333333pt;}
.ws30{word-spacing:1.408000pt;}
.ws1d{word-spacing:1.493333pt;}
.ws20{word-spacing:1.546667pt;}
.ws2e{word-spacing:1.760000pt;}
.ws7{word-spacing:1.866667pt;}
.ws17{word-spacing:1.920000pt;}
.ws51{word-spacing:2.026667pt;}
.ws18{word-spacing:2.080000pt;}
.ws11{word-spacing:2.453333pt;}
.ws1b{word-spacing:2.506667pt;}
.ws3f{word-spacing:2.666667pt;}
.ws27{word-spacing:2.688000pt;}
.ws33{word-spacing:2.773333pt;}
.ws1e{word-spacing:2.816000pt;}
.ws41{word-spacing:2.880000pt;}
.ws29{word-spacing:3.008000pt;}
.ws57{word-spacing:3.136000pt;}
.ws10{word-spacing:3.146667pt;}
.ws4a{word-spacing:3.306667pt;}
.ws55{word-spacing:3.360000pt;}
.ws54{word-spacing:3.392000pt;}
.ws6c{word-spacing:3.786667pt;}
.ws12{word-spacing:3.946667pt;}
.ws4{word-spacing:4.160000pt;}
.ws4f{word-spacing:4.213333pt;}
.ws69{word-spacing:4.266667pt;}
.ws6d{word-spacing:4.416000pt;}
.ws67{word-spacing:4.480000pt;}
.ws64{word-spacing:4.586667pt;}
.ws61{word-spacing:5.376000pt;}
.ws49{word-spacing:7.680000pt;}
.ws26{word-spacing:8.128000pt;}
.ws24{word-spacing:9.664000pt;}
.ws28{word-spacing:10.048000pt;}
.ws2a{word-spacing:11.392000pt;}
.ws2b{word-spacing:11.712000pt;}
.ws25{word-spacing:14.592000pt;}
.ws47{word-spacing:18.624000pt;}
.ws6e{word-spacing:27.136000pt;}
._e{margin-left:-43.276812pt;}
._26{margin-left:-29.696147pt;}
._22{margin-left:-28.634349pt;}
._23{margin-left:-27.141555pt;}
._b{margin-left:-25.040512pt;}
._25{margin-left:-23.001018pt;}
._24{margin-left:-21.834673pt;}
._1a{margin-left:-20.911791pt;}
._19{margin-left:-19.300100pt;}
._1b{margin-left:-18.332129pt;}
._15{margin-left:-17.362573pt;}
._13{margin-left:-16.218131pt;}
._14{margin-left:-14.466178pt;}
._1c{margin-left:-13.432333pt;}
._27{margin-left:-12.492672pt;}
._f{margin-left:-11.509333pt;}
._1e{margin-left:-10.315214pt;}
._17{margin-left:-9.349894pt;}
._18{margin-left:-7.992813pt;}
._12{margin-left:-6.781141pt;}
._11{margin-left:-5.136041pt;}
._6{margin-left:-3.843904pt;}
._3{margin-left:-2.940837pt;}
._a{margin-left:-2.026677pt;}
._1{margin-left:-1.098688pt;}
._7{width:0.898124pt;}
._2{width:1.869454pt;}
._d{width:3.523195pt;}
._0{width:4.710405pt;}
._9{width:5.635755pt;}
._10{width:7.019456pt;}
._8{width:8.482169pt;}
._4{width:9.513991pt;}
._5{width:10.915326pt;}
._1d{width:11.825670pt;}
._16{width:15.229901pt;}
._21{width:20.421120pt;}
._20{width:30.155789pt;}
._1f{width:31.363181pt;}
._c{width:73.757333pt;}
.fs5{font-size:30.933333pt;}
.fsd{font-size:33.408000pt;}
.fs2{font-size:34.026667pt;}
.fsa{font-size:37.120000pt;}
.fs9{font-size:37.333333pt;}
.fs1{font-size:41.066667pt;}
.fs8{font-size:43.306667pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fsc{font-size:57.600000pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:106.666667pt;}
.fs7{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:7.632267pt;}
.y1{bottom:36.462000pt;}
.y25e{bottom:94.487733pt;}
.y16{bottom:94.488000pt;}
.y20f{bottom:94.488400pt;}
.y28a{bottom:94.596400pt;}
.y20b{bottom:94.597333pt;}
.y11a{bottom:98.888000pt;}
.y24a{bottom:107.821333pt;}
.y289{bottom:107.929733pt;}
.y20a{bottom:107.930667pt;}
.y25d{bottom:108.094533pt;}
.y20e{bottom:109.005600pt;}
.y15{bottom:109.154667pt;}
.y281{bottom:112.934400pt;}
.y13f{bottom:112.934667pt;}
.y39{bottom:113.554667pt;}
.y119{bottom:117.334400pt;}
.y249{bottom:121.154667pt;}
.y25c{bottom:121.700800pt;}
.y20d{bottom:123.522800pt;}
.yb5{bottom:123.821333pt;}
.y180{bottom:127.601067pt;}
.y38{bottom:127.601333pt;}
.y14{bottom:128.221333pt;}
.y118{bottom:131.381333pt;}
.ya1{bottom:132.001067pt;}
.y25b{bottom:135.307067pt;}
.y20c{bottom:138.040000pt;}
.y15e{bottom:138.488000pt;}
.y37{bottom:142.268000pt;}
.yb4{bottom:142.888000pt;}
.y117{bottom:146.048000pt;}
.y17f{bottom:146.668000pt;}
.y25a{bottom:148.913333pt;}
.y156{bottom:150.448000pt;}
.y36{bottom:156.934667pt;}
.y15d{bottom:157.554667pt;}
.y17e{bottom:160.714667pt;}
.y64{bottom:161.334667pt;}
.y188{bottom:161.615867pt;}
.y2a8{bottom:161.616000pt;}
.y155{bottom:164.493333pt;}
.y116{bottom:165.114667pt;}
.y2b3{bottom:165.230667pt;}
.y10{bottom:165.529333pt;}
.y35{bottom:171.601333pt;}
.y2a7{bottom:175.362933pt;}
.y63{bottom:175.381333pt;}
.ydb{bottom:176.001333pt;}
.y187{bottom:177.735200pt;}
.y2b2{bottom:178.564000pt;}
.y115{bottom:179.160000pt;}
.yb3{bottom:179.781333pt;}
.ya0{bottom:180.062000pt;}
.y154{bottom:183.560000pt;}
.yf{bottom:183.976000pt;}
.y1c6{bottom:186.268000pt;}
.y2a6{bottom:189.109333pt;}
.y1ae{bottom:190.048000pt;}
.y34{bottom:190.668000pt;}
.y2b1{bottom:191.897333pt;}
.yb2{bottom:193.826667pt;}
.y186{bottom:193.854000pt;}
.y62{bottom:194.448000pt;}
.y259{bottom:194.729200pt;}
.y9f{bottom:196.143733pt;}
.y246{bottom:198.226667pt;}
.y280{bottom:198.509333pt;}
.ye{bottom:198.642667pt;}
.y288{bottom:199.036000pt;}
.y1c5{bottom:200.934667pt;}
.y13e{bottom:204.714667pt;}
.y15c{bottom:205.616267pt;}
.y258{bottom:208.236000pt;}
.y61{bottom:208.493333pt;}
.y1ad{bottom:209.114667pt;}
.y185{bottom:209.974533pt;}
.y9e{bottom:212.225467pt;}
.y287{bottom:212.369333pt;}
.y1da{bottom:212.893333pt;}
.yd{bottom:213.309333pt;}
.y27f{bottom:214.865067pt;}
.y1c4{bottom:215.601333pt;}
.y15b{bottom:221.814133pt;}
.y17d{bottom:223.160000pt;}
.y13d{bottom:223.781333pt;}
.y286{bottom:225.702667pt;}
.y184{bottom:226.093333pt;}
.y60{bottom:227.560000pt;}
.yf1{bottom:227.842533pt;}
.yc{bottom:227.976000pt;}
.y9d{bottom:228.306667pt;}
.y1c3{bottom:230.268000pt;}
.y27e{bottom:231.222533pt;}
.y1f2{bottom:231.340000pt;}
.y153{bottom:231.622133pt;}
.y221{bottom:237.826667pt;}
.y15a{bottom:238.012000pt;}
.y33{bottom:238.730000pt;}
.y285{bottom:239.036000pt;}
.y5f{bottom:241.606667pt;}
.y13c{bottom:242.226667pt;}
.y8d{bottom:242.507467pt;}
.yb{bottom:242.642667pt;}
.yf0{bottom:243.964400pt;}
.y1c2{bottom:244.934667pt;}
.y1f1{bottom:245.385333pt;}
.y114{bottom:246.006667pt;}
.y245{bottom:246.290400pt;}
.y27d{bottom:247.579333pt;}
.y152{bottom:247.709067pt;}
.y32{bottom:252.116000pt;}
.y284{bottom:252.369333pt;}
.y220{bottom:252.493333pt;}
.y5e{bottom:256.273333pt;}
.y8c{bottom:256.953867pt;}
.y1c1{bottom:259.601333pt;}
.y1f0{bottom:260.052000pt;}
.yef{bottom:260.086800pt;}
.y235{bottom:260.673333pt;}
.y207{bottom:260.954933pt;}
.y1d9{bottom:260.955333pt;}
.ya{bottom:261.089333pt;}
.y183{bottom:261.109200pt;}
.y244{bottom:262.358667pt;}
.y9c{bottom:263.286667pt;}
.y151{bottom:263.796000pt;}
.y27c{bottom:263.935067pt;}
.y21f{bottom:267.160000pt;}
.y5d{bottom:270.940000pt;}
.y8b{bottom:271.400267pt;}
.y159{bottom:273.107467pt;}
.y1c0{bottom:274.268000pt;}
.y182{bottom:274.561333pt;}
.y234{bottom:274.718667pt;}
.y1b2{bottom:274.946667pt;}
.y13b{bottom:275.340000pt;}
.y1ac{bottom:275.620667pt;}
.y78{bottom:275.621067pt;}
.yb1{bottom:275.621733pt;}
.yda{bottom:275.621867pt;}
.y9{bottom:275.756000pt;}
.y206{bottom:277.113467pt;}
.y1d8{bottom:277.282400pt;}
.y243{bottom:278.426933pt;}
.y1ef{bottom:279.118667pt;}
.y150{bottom:279.882933pt;}
.y27b{bottom:280.290800pt;}
.yee{bottom:283.768800pt;}
.y8a{bottom:285.846667pt;}
.y21e{bottom:286.226667pt;}
.y158{bottom:286.638133pt;}
.y1b1{bottom:288.280000pt;}
.y1bf{bottom:288.934667pt;}
.y17c{bottom:289.385333pt;}
.y5c{bottom:290.006667pt;}
.y1ab{bottom:291.662800pt;}
.yd9{bottom:291.664133pt;}
.y77{bottom:291.763200pt;}
.yb0{bottom:291.783867pt;}
.y205{bottom:293.271333pt;}
.y1d7{bottom:293.609467pt;}
.y113{bottom:294.068533pt;}
.y242{bottom:294.495200pt;}
.y27a{bottom:296.647067pt;}
.yed{bottom:299.890667pt;}
.y157{bottom:300.169333pt;}
.y1b0{bottom:301.613333pt;}
.y14f{bottom:303.530667pt;}
.y270{bottom:303.601333pt;}
.y5b{bottom:304.052000pt;}
.y1aa{bottom:307.704933pt;}
.yd8{bottom:307.706267pt;}
.y76{bottom:307.905333pt;}
.yaf{bottom:307.944267pt;}
.y1be{bottom:308.001333pt;}
.y204{bottom:309.429200pt;}
.y1d6{bottom:309.936533pt;}
.y112{bottom:310.316400pt;}
.y241{bottom:310.563467pt;}
.y8{bottom:312.648000pt;}
.y279{bottom:313.002800pt;}
.y1af{bottom:314.946667pt;}
.y89{bottom:315.410667pt;}
.yec{bottom:316.012533pt;}
.y14e{bottom:319.617600pt;}
.y1bd{bottom:322.048000pt;}
.y26f{bottom:322.668000pt;}
.y5a{bottom:323.118667pt;}
.y13a{bottom:323.400800pt;}
.y1a9{bottom:323.747067pt;}
.yd7{bottom:323.748533pt;}
.y75{bottom:324.047467pt;}
.yae{bottom:324.104667pt;}
.y203{bottom:325.587600pt;}
.y1d5{bottom:326.263600pt;}
.y111{bottom:326.564267pt;}
.y240{bottom:326.631733pt;}
.y1ee{bottom:327.181333pt;}
.y278{bottom:329.359067pt;}
.y7{bottom:331.094667pt;}
.y88{bottom:331.456533pt;}
.yeb{bottom:332.134400pt;}
.y21d{bottom:334.288800pt;}
.y14d{bottom:335.705067pt;}
.y26e{bottom:336.714667pt;}
.y59{bottom:337.165333pt;}
.y139{bottom:339.747733pt;}
.y1a8{bottom:339.789200pt;}
.yd6{bottom:339.789733pt;}
.y74{bottom:340.189600pt;}
.yad{bottom:340.265067pt;}
.y1bc{bottom:341.114667pt;}
.y233{bottom:341.565333pt;}
.y1d4{bottom:342.590667pt;}
.y23f{bottom:342.700000pt;}
.y110{bottom:342.812133pt;}
.y6{bottom:345.761333pt;}
.y87{bottom:347.502400pt;}
.yea{bottom:348.256267pt;}
.y202{bottom:349.304267pt;}
.y21c{bottom:350.352800pt;}
.y17b{bottom:351.832000pt;}
.y277{bottom:353.274667pt;}
.y26d{bottom:355.781333pt;}
.y1a7{bottom:355.831333pt;}
.yd5{bottom:355.831867pt;}
.y138{bottom:356.094667pt;}
.y58{bottom:356.232000pt;}
.y73{bottom:356.331733pt;}
.yac{bottom:356.425467pt;}
.y23e{bottom:358.768267pt;}
.y10f{bottom:359.060000pt;}
.y14c{bottom:359.350933pt;}
.y1bb{bottom:359.560000pt;}
.y5{bottom:360.428000pt;}
.y86{bottom:363.548267pt;}
.ye9{bottom:364.378667pt;}
.y201{bottom:365.462133pt;}
.yde{bottom:365.993333pt;}
.y21b{bottom:366.417333pt;}
.y276{bottom:369.630400pt;}
.y57{bottom:370.278667pt;}
.y17a{bottom:370.898667pt;}
.y1a6{bottom:371.873467pt;}
.yd4{bottom:371.874000pt;}
.y137{bottom:372.441600pt;}
.y72{bottom:372.473867pt;}
.yab{bottom:372.585867pt;}
.y23d{bottom:374.836533pt;}
.y4{bottom:375.094667pt;}
.y10e{bottom:375.307867pt;}
.y14b{bottom:375.437867pt;}
.y1d3{bottom:377.816133pt;}
.ydd{bottom:379.326667pt;}
.y85{bottom:379.594933pt;}
.y200{bottom:381.621200pt;}
.y21a{bottom:382.481867pt;}
.y2b6{bottom:383.390667pt;}
.y275{bottom:385.987467pt;}
.y1a5{bottom:387.915600pt;}
.yd3{bottom:387.916133pt;}
.y71{bottom:388.616000pt;}
.yaa{bottom:388.746267pt;}
.y136{bottom:388.788533pt;}
.y56{bottom:389.345333pt;}
.y232{bottom:389.627333pt;}
.y3{bottom:389.761333pt;}
.y23c{bottom:390.906533pt;}
.y1d2{bottom:391.476533pt;}
.y14a{bottom:391.524800pt;}
.ydc{bottom:392.660000pt;}
.ye8{bottom:395.618933pt;}
.y84{bottom:395.640800pt;}
.y2b5{bottom:396.724000pt;}
.y1ff{bottom:397.779067pt;}
.y219{bottom:398.546400pt;}
.y10d{bottom:399.114667pt;}
.y274{bottom:402.343200pt;}
.y26c{bottom:403.842400pt;}
.y1a4{bottom:403.957733pt;}
.yd2{bottom:403.958267pt;}
.y70{bottom:404.758133pt;}
.ya9{bottom:404.906667pt;}
.y135{bottom:405.135467pt;}
.y1d1{bottom:405.136933pt;}
.y231{bottom:406.089200pt;}
.y23b{bottom:406.974800pt;}
.y149{bottom:407.611733pt;}
.y1ba{bottom:407.621333pt;}
.y55{bottom:407.790667pt;}
.ye7{bottom:409.074667pt;}
.y2b4{bottom:410.057333pt;}
.y83{bottom:411.687467pt;}
.y1fe{bottom:413.936933pt;}
.y218{bottom:414.610933pt;}
.y10c{bottom:415.362533pt;}
.y26b{bottom:418.032533pt;}
.y273{bottom:418.700000pt;}
.y1d0{bottom:418.797333pt;}
.y179{bottom:418.960133pt;}
.y1a3{bottom:419.999867pt;}
.yd1{bottom:420.000400pt;}
.y6f{bottom:420.900267pt;}
.y134{bottom:421.482400pt;}
.y54{bottom:421.837333pt;}
.y230{bottom:422.550533pt;}
.y23a{bottom:423.043067pt;}
.y82{bottom:427.733867pt;}
.ya8{bottom:428.626667pt;}
.y1fd{bottom:430.094800pt;}
.y217{bottom:430.675467pt;}
.y148{bottom:431.258133pt;}
.y10b{bottom:431.610400pt;}
.y26a{bottom:432.222667pt;}
.y178{bottom:433.491333pt;}
.y23{bottom:434.402667pt;}
.y272{bottom:435.056267pt;}
.y1a2{bottom:436.041600pt;}
.yd0{bottom:436.042133pt;}
.y133{bottom:437.828800pt;}
.y22f{bottom:439.012267pt;}
.y53{bottom:440.904000pt;}
.y6e{bottom:444.601600pt;}
.y22{bottom:446.402667pt;}
.y239{bottom:446.669867pt;}
.y216{bottom:446.740000pt;}
.y147{bottom:447.345067pt;}
.y10a{bottom:447.858267pt;}
.y177{bottom:448.022533pt;}
.y81{bottom:451.338533pt;}
.y271{bottom:451.412000pt;}
.ycf{bottom:452.084267pt;}
.y1fc{bottom:453.812000pt;}
.y132{bottom:454.175733pt;}
.y22e{bottom:455.473733pt;}
.y21{bottom:458.402667pt;}
.y1a1{bottom:459.642933pt;}
.y6d{bottom:460.743200pt;}
.y176{bottom:462.553733pt;}
.y238{bottom:462.739467pt;}
.y215{bottom:462.804000pt;}
.y146{bottom:463.431200pt;}
.y109{bottom:464.107867pt;}
.y80{bottom:467.384400pt;}
.y257{bottom:469.102533pt;}
.y1fb{bottom:469.969867pt;}
.y20{bottom:470.402667pt;}
.y131{bottom:470.521733pt;}
.y22d{bottom:471.935733pt;}
.y181{bottom:472.217333pt;}
.yce{bottom:475.682667pt;}
.y1a0{bottom:475.685067pt;}
.y6c{bottom:476.885600pt;}
.y175{bottom:477.084933pt;}
.y295{bottom:477.469333pt;}
.y209{bottom:478.570667pt;}
.ya7{bottom:478.802667pt;}
.y237{bottom:478.807733pt;}
.y145{bottom:479.519733pt;}
.y108{bottom:480.355733pt;}
.y1f{bottom:482.402667pt;}
.y256{bottom:482.609333pt;}
.y7f{bottom:483.430267pt;}
.y283{bottom:485.542667pt;}
.y1fa{bottom:486.127733pt;}
.y130{bottom:486.868667pt;}
.y52{bottom:488.965467pt;}
.y24e{bottom:489.220000pt;}
.y294{bottom:490.802667pt;}
.ycd{bottom:491.724800pt;}
.y19f{bottom:491.727200pt;}
.y208{bottom:491.904000pt;}
.ya6{bottom:492.296400pt;}
.y6b{bottom:493.027733pt;}
.y1e{bottom:494.402667pt;}
.y236{bottom:494.876000pt;}
.y144{bottom:495.606667pt;}
.y22c{bottom:495.956800pt;}
.y107{bottom:496.603600pt;}
.y214{bottom:497.766667pt;}
.y282{bottom:498.876000pt;}
.y1f9{bottom:502.285600pt;}
.y24d{bottom:502.553333pt;}
.y293{bottom:504.136000pt;}
.y51{bottom:505.004667pt;}
.ya5{bottom:505.790667pt;}
.y1d{bottom:506.402667pt;}
.y174{bottom:506.734400pt;}
.y7e{bottom:507.035467pt;}
.ycc{bottom:507.766933pt;}
.y19e{bottom:507.768933pt;}
.y6a{bottom:509.169333pt;}
.y12f{bottom:510.774400pt;}
.y22b{bottom:512.418267pt;}
.y106{bottom:512.851467pt;}
.y24c{bottom:515.886667pt;}
.y292{bottom:517.469333pt;}
.y1f8{bottom:518.443467pt;}
.y143{bottom:519.253067pt;}
.y50{bottom:520.509467pt;}
.y173{bottom:522.865600pt;}
.y7d{bottom:523.081333pt;}
.ycb{bottom:523.809067pt;}
.y19d{bottom:523.811067pt;}
.y12e{bottom:527.121333pt;}
.y22a{bottom:528.879733pt;}
.y105{bottom:529.099333pt;}
.y248{bottom:529.114667pt;}
.y24b{bottom:529.220000pt;}
.y291{bottom:530.802667pt;}
.y1f7{bottom:534.601333pt;}
.y142{bottom:535.340000pt;}
.y4f{bottom:536.015333pt;}
.y172{bottom:538.996800pt;}
.y7c{bottom:539.127200pt;}
.yca{bottom:539.851200pt;}
.y19c{bottom:539.853200pt;}
.y247{bottom:542.448000pt;}
.y12d{bottom:543.468267pt;}
.y290{bottom:544.136000pt;}
.y69{bottom:544.209067pt;}
.y229{bottom:545.341200pt;}
.y1ed{bottom:551.349067pt;}
.y4e{bottom:551.520000pt;}
.y104{bottom:552.906933pt;}
.y171{bottom:555.128000pt;}
.y7b{bottom:555.173067pt;}
.yc9{bottom:555.893333pt;}
.y19b{bottom:555.895333pt;}
.y28f{bottom:557.469333pt;}
.y68{bottom:557.684533pt;}
.y12c{bottom:559.815200pt;}
.y228{bottom:561.801733pt;}
.y4d{bottom:567.024667pt;}
.y1ec{bottom:567.496133pt;}
.y103{bottom:569.154800pt;}
.y1f6{bottom:569.656533pt;}
.y28e{bottom:570.802667pt;}
.y67{bottom:571.160000pt;}
.y1c{bottom:571.193333pt;}
.y7a{bottom:571.218933pt;}
.y170{bottom:571.258133pt;}
.yc8{bottom:571.935467pt;}
.y19a{bottom:571.937467pt;}
.y12b{bottom:576.162133pt;}
.y227{bottom:578.263200pt;}
.y4c{bottom:582.529333pt;}
.y1f5{bottom:583.148267pt;}
.y1eb{bottom:583.643067pt;}
.y28d{bottom:584.136000pt;}
.y102{bottom:585.403467pt;}
.y141{bottom:585.442400pt;}
.y79{bottom:587.265333pt;}
.y16f{bottom:587.389067pt;}
.yc7{bottom:587.977600pt;}
.y199{bottom:587.979600pt;}
.y12a{bottom:592.509067pt;}
.y226{bottom:594.724667pt;}
.y1f4{bottom:596.639467pt;}
.y28c{bottom:597.469333pt;}
.y140{bottom:598.862667pt;}
.y1ea{bottom:599.790000pt;}
.y101{bottom:601.651333pt;}
.y16e{bottom:603.520267pt;}
.yc6{bottom:604.019733pt;}
.y198{bottom:604.021333pt;}
.y4b{bottom:605.592133pt;}
.y1b{bottom:605.860000pt;}
.y129{bottom:608.855467pt;}
.y1f3{bottom:610.130667pt;}
.y28b{bottom:610.802667pt;}
.y225{bottom:611.186533pt;}
.y2ac{bottom:612.824000pt;}
.y2a5{bottom:614.125867pt;}
.y100{bottom:617.899200pt;}
.y16d{bottom:619.651467pt;}
.yc5{bottom:620.061867pt;}
.y197{bottom:620.063467pt;}
.y4a{bottom:621.098133pt;}
.y8e{bottom:621.396000pt;}
.y2ab{bottom:626.157333pt;}
.y224{bottom:627.648000pt;}
.y2a4{bottom:630.539467pt;}
.y1e9{bottom:631.055067pt;}
.y128{bottom:632.761733pt;}
.yff{bottom:634.147067pt;}
.y16c{bottom:635.782667pt;}
.yc4{bottom:636.104000pt;}
.y196{bottom:636.105600pt;}
.y49{bottom:636.602800pt;}
.y2aa{bottom:639.490667pt;}
.y1a{bottom:640.526667pt;}
.y1e8{bottom:645.602000pt;}
.y2a3{bottom:646.952533pt;}
.y127{bottom:649.108667pt;}
.yfe{bottom:650.394933pt;}
.y48{bottom:652.107467pt;}
.yc3{bottom:652.146133pt;}
.y195{bottom:652.147333pt;}
.y2a9{bottom:652.824000pt;}
.y16b{bottom:659.472800pt;}
.y1e7{bottom:660.148933pt;}
.y9b{bottom:660.238800pt;}
.y223{bottom:663.007867pt;}
.y2a2{bottom:663.365600pt;}
.y126{bottom:665.455600pt;}
.yfd{bottom:666.642800pt;}
.y47{bottom:667.612133pt;}
.yc2{bottom:668.188267pt;}
.y194{bottom:668.189467pt;}
.y1e6{bottom:674.695867pt;}
.y19{bottom:675.193333pt;}
.y16a{bottom:675.604000pt;}
.y9a{bottom:676.320000pt;}
.y222{bottom:676.802667pt;}
.y2a1{bottom:679.778667pt;}
.y31{bottom:679.864667pt;}
.y125{bottom:681.802533pt;}
.yfc{bottom:682.890667pt;}
.y46{bottom:683.118000pt;}
.yc1{bottom:684.230400pt;}
.y193{bottom:684.231200pt;}
.y1e5{bottom:689.242800pt;}
.y269{bottom:691.309600pt;}
.y169{bottom:691.734667pt;}
.y99{bottom:692.401200pt;}
.y30{bottom:695.650667pt;}
.y2a0{bottom:696.191733pt;}
.y124{bottom:698.149467pt;}
.y45{bottom:698.622667pt;}
.yfb{bottom:699.138533pt;}
.y192{bottom:700.272267pt;}
.yc0{bottom:700.272533pt;}
.y1e4{bottom:703.789733pt;}
.y168{bottom:707.865867pt;}
.y268{bottom:708.166400pt;}
.y98{bottom:708.482400pt;}
.y18{bottom:709.860000pt;}
.y2f{bottom:711.436667pt;}
.y29f{bottom:712.604800pt;}
.y44{bottom:714.127333pt;}
.y123{bottom:714.496400pt;}
.y191{bottom:716.314400pt;}
.ybf{bottom:716.314667pt;}
.y1e3{bottom:718.336667pt;}
.yfa{bottom:722.945200pt;}
.y167{bottom:723.996533pt;}
.y97{bottom:724.563600pt;}
.y267{bottom:725.023200pt;}
.y2e{bottom:727.222667pt;}
.y29e{bottom:729.017867pt;}
.y43{bottom:729.632000pt;}
.y1cf{bottom:729.791200pt;}
.y122{bottom:730.843333pt;}
.y190{bottom:732.356533pt;}
.ybe{bottom:732.356800pt;}
.y1e2{bottom:732.883600pt;}
.yf9{bottom:739.193067pt;}
.y96{bottom:740.645067pt;}
.y266{bottom:741.880267pt;}
.y2d{bottom:743.008667pt;}
.y17{bottom:744.526667pt;}
.y29d{bottom:745.430933pt;}
.y1ce{bottom:746.118267pt;}
.y121{bottom:747.190267pt;}
.y1e1{bottom:747.430533pt;}
.y166{bottom:747.687467pt;}
.y18f{bottom:748.398667pt;}
.ybd{bottom:748.398933pt;}
.y42{bottom:752.696800pt;}
.yf8{bottom:755.440933pt;}
.y95{bottom:756.726267pt;}
.y265{bottom:758.737067pt;}
.y2c{bottom:758.794667pt;}
.y29c{bottom:761.844000pt;}
.y1e0{bottom:761.977467pt;}
.y1cd{bottom:762.446400pt;}
.y255{bottom:763.522267pt;}
.ye6{bottom:763.761333pt;}
.y165{bottom:763.817867pt;}
.y1b9{bottom:763.992400pt;}
.y18e{bottom:764.440800pt;}
.ybc{bottom:764.441067pt;}
.y41{bottom:768.201467pt;}
.y120{bottom:771.095333pt;}
.yf7{bottom:771.689333pt;}
.y94{bottom:772.808000pt;}
.y2b{bottom:774.580667pt;}
.y264{bottom:775.593867pt;}
.y1df{bottom:776.524400pt;}
.y29b{bottom:778.257067pt;}
.y1cc{bottom:778.773467pt;}
.y254{bottom:779.695733pt;}
.ye5{bottom:779.883200pt;}
.y164{bottom:779.949067pt;}
.y1b8{bottom:780.099067pt;}
.y18d{bottom:780.482933pt;}
.ybb{bottom:780.483200pt;}
.y40{bottom:783.706133pt;}
.y11f{bottom:787.442267pt;}
.y93{bottom:788.889200pt;}
.y2a{bottom:790.366667pt;}
.y1de{bottom:791.071333pt;}
.y263{bottom:792.451467pt;}
.y29a{bottom:794.670133pt;}
.y1cb{bottom:795.100533pt;}
.yf6{bottom:795.496133pt;}
.y253{bottom:795.869200pt;}
.ye4{bottom:796.005067pt;}
.y163{bottom:796.080267pt;}
.y1b7{bottom:796.204933pt;}
.y18c{bottom:796.525067pt;}
.yba{bottom:796.525333pt;}
.y3f{bottom:799.210800pt;}
.y92{bottom:804.970400pt;}
.y29{bottom:806.152667pt;}
.y262{bottom:809.308267pt;}
.y299{bottom:811.083200pt;}
.y11e{bottom:811.348267pt;}
.y1ca{bottom:811.427600pt;}
.yf5{bottom:811.744000pt;}
.y252{bottom:812.042133pt;}
.ye3{bottom:812.126933pt;}
.y162{bottom:812.211467pt;}
.y1b6{bottom:812.310933pt;}
.y213{bottom:812.478667pt;}
.y18b{bottom:812.567200pt;}
.yb9{bottom:812.567467pt;}
.y2b0{bottom:812.736000pt;}
.y3e{bottom:814.716267pt;}
.y13{bottom:816.989333pt;}
.y1dd{bottom:820.736400pt;}
.y91{bottom:821.051600pt;}
.y28{bottom:821.938667pt;}
.y261{bottom:826.165067pt;}
.y298{bottom:827.496267pt;}
.y11d{bottom:827.695200pt;}
.y1c9{bottom:827.754267pt;}
.yf4{bottom:827.991867pt;}
.y251{bottom:828.215600pt;}
.ye2{bottom:828.249867pt;}
.ya4{bottom:828.253333pt;}
.y161{bottom:828.342400pt;}
.y1b5{bottom:828.417200pt;}
.y212{bottom:828.542133pt;}
.y18a{bottom:828.609067pt;}
.yb8{bottom:828.609600pt;}
.y2af{bottom:828.736000pt;}
.y3d{bottom:830.220933pt;}
.y12{bottom:836.189333pt;}
.y90{bottom:837.133333pt;}
.y27{bottom:837.724667pt;}
.y260{bottom:843.021867pt;}
.y297{bottom:843.909333pt;}
.y11c{bottom:844.042133pt;}
.y1c8{bottom:844.081333pt;}
.yf3{bottom:844.239733pt;}
.ye1{bottom:844.371733pt;}
.y250{bottom:844.389067pt;}
.ya3{bottom:844.414267pt;}
.y1dc{bottom:844.442133pt;}
.y66{bottom:844.451200pt;}
.y160{bottom:844.473600pt;}
.y1b4{bottom:844.523467pt;}
.y211{bottom:844.606933pt;}
.y189{bottom:844.651200pt;}
.yb7{bottom:844.651733pt;}
.y2ae{bottom:844.736000pt;}
.y3c{bottom:845.726133pt;}
.y26{bottom:853.510667pt;}
.y25f{bottom:859.878667pt;}
.y296{bottom:860.322400pt;}
.y11b{bottom:860.389067pt;}
.y1c7{bottom:860.408400pt;}
.yf2{bottom:860.487600pt;}
.ye0{bottom:860.494133pt;}
.y24f{bottom:860.562533pt;}
.ya2{bottom:860.575067pt;}
.y1db{bottom:860.589067pt;}
.y65{bottom:860.593867pt;}
.y15f{bottom:860.604800pt;}
.y1b3{bottom:860.629733pt;}
.y210{bottom:860.671467pt;}
.yb6{bottom:860.693867pt;}
.y2ad{bottom:860.736000pt;}
.y8f{bottom:860.774800pt;}
.y3b{bottom:861.230800pt;}
.y11{bottom:865.522667pt;}
.ydf{bottom:876.616000pt;}
.y3a{bottom:876.736000pt;}
.y25{bottom:876.856000pt;}
.y24{bottom:925.984000pt;}
.h2{height:21.564000pt;}
.h7{height:26.560000pt;}
.h12{height:28.053333pt;}
.h1c{height:31.968000pt;}
.h3{height:39.072000pt;}
.hf{height:39.744000pt;}
.he{height:40.800000pt;}
.h1d{height:41.088000pt;}
.h15{height:42.624000pt;}
.ha{height:43.253333pt;}
.hb{height:44.160000pt;}
.h8{height:45.653333pt;}
.h13{height:47.692800pt;}
.h4{height:48.576000pt;}
.h21{height:51.853227pt;}
.h19{height:51.859627pt;}
.h1b{height:52.987733pt;}
.h1f{height:52.988800pt;}
.h6{height:52.992000pt;}
.h1e{height:52.992533pt;}
.h14{height:52.993067pt;}
.h1a{height:52.993600pt;}
.h11{height:52.994133pt;}
.h17{height:52.995200pt;}
.h16{height:52.995733pt;}
.h18{height:52.996267pt;}
.hd{height:53.000000pt;}
.hc{height:54.400000pt;}
.h10{height:54.784000pt;}
.h20{height:54.787200pt;}
.h5{height:90.666667pt;}
.h9{height:117.866667pt;}
.h0{height:1020.466667pt;}
.h1{height:1020.666667pt;}
.w3{width:80.281333pt;}
.w2{width:93.012000pt;}
.w1{width:718.000000pt;}
.w0{width:718.106667pt;}
.x0{left:0.000000pt;}
.x12{left:3.357600pt;}
.x2{left:56.288000pt;}
.x14{left:94.488000pt;}
.x43{left:98.271333pt;}
.x11{left:99.216000pt;}
.xc{left:101.793333pt;}
.x52{left:102.865320pt;}
.x51{left:106.353600pt;}
.x6{left:113.386000pt;}
.x2a{left:115.865067pt;}
.x53{left:117.951720pt;}
.x34{left:120.259253pt;}
.x33{left:121.399853pt;}
.x3e{left:122.292133pt;}
.x4c{left:124.556828pt;}
.x5{left:125.470269pt;}
.x15{left:130.630667pt;}
.x18{left:132.283333pt;}
.x17{left:136.062667pt;}
.x29{left:138.421333pt;}
.x30{left:140.528000pt;}
.x39{left:144.346667pt;}
.x23{left:145.798667pt;}
.x7{left:147.922767pt;}
.x4d{left:149.120520pt;}
.x32{left:150.878667pt;}
.x4a{left:154.011053pt;}
.x3{left:155.241733pt;}
.x19{left:156.895173pt;}
.x1d{left:157.973333pt;}
.x25{left:161.030192pt;}
.x1f{left:165.543173pt;}
.x3c{left:167.441333pt;}
.x1e{left:169.048373pt;}
.x27{left:170.079267pt;}
.x3f{left:171.943000pt;}
.x10{left:173.338667pt;}
.x38{left:176.769243pt;}
.x35{left:180.410667pt;}
.x22{left:182.683373pt;}
.x31{left:184.413320pt;}
.x4b{left:186.224000pt;}
.x1b{left:188.976733pt;}
.xd{left:190.554667pt;}
.x3b{left:196.254787pt;}
.x1a{left:197.345973pt;}
.x26{left:199.509392pt;}
.x37{left:201.414723pt;}
.xb{left:204.464000pt;}
.x4{left:207.876100pt;}
.x44{left:210.985077pt;}
.x24{left:213.097307pt;}
.x1c{left:214.002667pt;}
.x16{left:225.361307pt;}
.x40{left:227.790667pt;}
.x3a{left:229.594787pt;}
.xe{left:231.842667pt;}
.xf{left:242.709333pt;}
.x2c{left:248.282120pt;}
.x36{left:250.116243pt;}
.x4f{left:253.105653pt;}
.x2e{left:256.392080pt;}
.x4e{left:259.833333pt;}
.x2b{left:262.148000pt;}
.x50{left:267.079653pt;}
.x2f{left:268.693333pt;}
.x41{left:269.861587pt;}
.x42{left:275.231987pt;}
.x9{left:282.943667pt;}
.x21{left:284.180453pt;}
.x2d{left:305.374880pt;}
.xa{left:312.848000pt;}
.x20{left:314.009333pt;}
.x28{left:323.084000pt;}
.x47{left:339.182757pt;}
.x48{left:390.714357pt;}
.x49{left:395.196117pt;}
.x46{left:398.385957pt;}
.x45{left:403.769877pt;}
.x8{left:408.242667pt;}
.x3d{left:449.713853pt;}
.x13{left:479.770667pt;}
.x1{left:524.021333pt;}
}




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