
    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_6a7f7ae781c9a288a385fd07.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_fedc0ed1ecea386484ae0658.woff')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_2a4ab516ec867cbb7a8017d6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_07f23dcc6165901f4c638556.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fd7bad31bd9b67c7136dc3a4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_819aaad51735b10bb8dab6d3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_948a0826dcb2ef43ab6bdb3f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_2bb1ae01245abfa33e2822c5.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_553a0f6c755907951ea91866.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1454be989d7bce82ee37a54e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_94db214b974ab713c40e3c00.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_086bd40e11fb4f5d992573f8.woff')format("woff");}.ffd{font-family:ffd;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-3.906000px;}
.ls7{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.567600px;}
.ls12{letter-spacing:-0.414600px;}
.ls19{letter-spacing:-0.305400px;}
.ls2{letter-spacing:-0.263400px;}
.ls15{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.022320px;}
.ls3{letter-spacing:0.066000px;}
.ls13{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.174000px;}
.lsd{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.262200px;}
.ls8{letter-spacing:0.305400px;}
.ls1c{letter-spacing:0.414600px;}
.ls16{letter-spacing:0.567600px;}
.ls14{letter-spacing:0.720000px;}
.ls1b{letter-spacing:6.785280px;}
.lsc{letter-spacing:39.905280px;}
.lsb{letter-spacing:40.049280px;}
.ls11{letter-spacing:64.170720px;}
.ls10{letter-spacing:64.206720px;}
.ls1a{letter-spacing:2286.377760px;}
.lsa{letter-spacing:2310.857760px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws5{word-spacing:-23.940000px;}
.wsd{word-spacing:-17.127600px;}
.ws11{word-spacing:-16.974600px;}
.ws6{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.822200px;}
.wsf{word-spacing:-16.712400px;}
.wsb{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.488000px;}
.wsc{word-spacing:-16.297800px;}
.ws4{word-spacing:-16.272000px;}
.ws10{word-spacing:-16.254600px;}
.wse{word-spacing:-15.840000px;}
.ws0{word-spacing:-13.505760px;}
.ws8{word-spacing:-10.924560px;}
.ws1{word-spacing:-10.902240px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-7.214400px;}
._17{margin-left:-5.729280px;}
._f{margin-left:-4.340160px;}
._2{margin-left:-3.261600px;}
._67{margin-left:-2.255760px;}
._0{margin-left:-1.254960px;}
._4{width:1.070640px;}
._12{width:2.210400px;}
._9{width:3.300480px;}
._6{width:4.679280px;}
._5{width:5.982480px;}
._e{width:7.477920px;}
._d{width:9.457920px;}
._14{width:10.863360px;}
._26{width:11.923200px;}
._15{width:13.730400px;}
._11{width:15.080400px;}
._a{width:17.850240px;}
._b{width:19.053360px;}
._13{width:20.884800px;}
._16{width:21.925440px;}
._1e{width:23.031360px;}
._48{width:24.033600px;}
._30{width:25.226640px;}
._10{width:26.628480px;}
._1a{width:28.250880px;}
._45{width:29.582880px;}
._5f{width:30.602880px;}
._62{width:32.387760px;}
._3f{width:33.981120px;}
._40{width:35.637120px;}
._5a{width:36.961920px;}
._5b{width:37.980000px;}
._66{width:39.457920px;}
._19{width:40.936320px;}
._2f{width:42.191280px;}
._37{width:44.119440px;}
._28{width:45.506880px;}
._2d{width:47.030400px;}
._92{width:48.399840px;}
._5e{width:49.680000px;}
._7{width:50.845680px;}
._8{width:51.954480px;}
._41{width:53.159040px;}
._3{width:55.186320px;}
._46{width:56.701440px;}
._36{width:60.145920px;}
._c{width:64.064160px;}
._4c{width:65.511360px;}
._2c{width:67.097520px;}
._20{width:68.889600px;}
._47{width:70.479360px;}
._49{width:74.784960px;}
._86{width:76.179600px;}
._38{width:80.017920px;}
._24{width:81.541440px;}
._4e{width:82.730160px;}
._3e{width:84.187440px;}
._6a{width:85.714560px;}
._4d{width:89.424000px;}
._51{width:91.278720px;}
._25{width:92.759040px;}
._3d{width:94.259520px;}
._54{width:96.114240px;}
._18{width:97.968960px;}
._44{width:100.084080px;}
._2a{width:104.523120px;}
._39{width:107.904960px;}
._4a{width:110.819520px;}
._3a{width:112.343040px;}
._79{width:113.601600px;}
._29{width:115.125120px;}
._6c{width:116.354640px;}
._3b{width:118.238400px;}
._5d{width:119.890800px;}
._52{width:121.613040px;}
._6d{width:123.865200px;}
._3c{width:128.672640px;}
._50{width:129.962880px;}
._64{width:133.341120px;}
._1c{width:137.116800px;}
._56{width:140.230080px;}
._69{width:142.419600px;}
._1f{width:144.072000px;}
._82{width:145.267920px;}
._22{width:150.197040px;}
._87{width:156.280320px;}
._83{width:160.830720px;}
._75{width:162.023040px;}
._32{width:163.406880px;}
._59{width:167.057280px;}
._31{width:168.779520px;}
._85{width:169.839360px;}
._53{width:173.496000px;}
._35{width:175.138560px;}
._1b{width:183.418560px;}
._63{width:191.963520px;}
._27{width:195.934320px;}
._21{width:198.455040px;}
._88{width:199.710000px;}
._2b{width:201.237120px;}
._57{width:202.429440px;}
._42{width:205.605120px;}
._4b{width:208.059840px;}
._55{width:209.914560px;}
._65{width:211.368240px;}
._7a{width:218.522160px;}
._1d{width:221.042880px;}
._78{width:222.795840px;}
._2e{width:225.846720px;}
._74{width:230.376720px;}
._6b{width:233.028720px;}
._58{width:236.808000px;}
._5c{width:239.722560px;}
._7c{width:244.549920px;}
._7d{width:245.621520px;}
._23{width:247.976640px;}
._43{width:249.456240px;}
._4f{width:261.316800px;}
._34{width:265.092480px;}
._76{width:270.656640px;}
._77{width:274.102320px;}
._7b{width:279.845280px;}
._6e{width:284.053680px;}
._84{width:298.817760px;}
._8e{width:311.526720px;}
._8c{width:313.035120px;}
._8d{width:314.842320px;}
._89{width:330.585120px;}
._93{width:331.729920px;}
._8a{width:337.098960px;}
._94{width:357.813360px;}
._73{width:367.102080px;}
._72{width:368.146800px;}
._7e{width:385.564320px;}
._7f{width:386.904240px;}
._90{width:392.122080px;}
._91{width:393.200640px;}
._80{width:457.468560px;}
._81{width:459.748800px;}
._60{width:546.144480px;}
._61{width:609.025200px;}
._33{width:621.659520px;}
._8b{width:639.122640px;}
._71{width:715.193280px;}
._70{width:716.701680px;}
._6f{width:1366.481520px;}
._95{width:1394.068320px;}
._68{width:1561.217040px;}
._8f{width:1577.486880px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:50.940000px;}
.y26{bottom:70.416000px;}
.y4a{bottom:71.496000px;}
.y49{bottom:92.016000px;}
.y25{bottom:112.176000px;}
.y48{bottom:112.356000px;}
.yc6{bottom:112.536000px;}
.y7c{bottom:112.896000px;}
.y20c{bottom:113.976000px;}
.y11c{bottom:116.856000px;}
.y187{bottom:117.216000px;}
.y1a8{bottom:118.476000px;}
.y221{bottom:119.016000px;}
.ya5{bottom:120.276000px;}
.y1ca{bottom:126.216000px;}
.y163{bottom:130.176000px;}
.y47{bottom:132.876000px;}
.yc5{bottom:133.056000px;}
.y266{bottom:133.956000px;}
.yf0{bottom:134.136000px;}
.y20b{bottom:134.496000px;}
.y7b{bottom:134.856000px;}
.y11b{bottom:138.816000px;}
.y186{bottom:139.176000px;}
.y1a7{bottom:140.436000px;}
.ya4{bottom:140.616000px;}
.y220{bottom:140.976000px;}
.y240{bottom:145.296000px;}
.y1c9{bottom:147.996000px;}
.y162{bottom:152.490000px;}
.y46{bottom:153.390000px;}
.y265{bottom:154.470000px;}
.y1eb{bottom:155.370000px;}
.yef{bottom:155.910000px;}
.y7a{bottom:156.810000px;}
.y24{bottom:160.770000px;}
.ya3{bottom:161.130000px;}
.y21f{bottom:162.930000px;}
.y20a{bottom:166.890000px;}
.y1c8{bottom:170.130000px;}
.yc4{bottom:173.910000px;}
.y161{bottom:174.450000px;}
.y1a6{bottom:174.990000px;}
.y283{bottom:175.170000px;}
.y1ea{bottom:175.890000px;}
.yee{bottom:177.870000px;}
.y79{bottom:178.950000px;}
.ya2{bottom:181.650000px;}
.y11a{bottom:182.730000px;}
.y13f{bottom:183.810000px;}
.y23f{bottom:184.710000px;}
.y21e{bottom:184.890000px;}
.y45{bottom:185.790000px;}
.y209{bottom:187.410000px;}
.y1c7{bottom:192.090000px;}
.yc3{bottom:194.430000px;}
.y185{bottom:195.330000px;}
.y160{bottom:196.050000px;}
.y1e9{bottom:196.230000px;}
.y1a5{bottom:196.770000px;}
.yed{bottom:200.010000px;}
.y23{bottom:201.450000px;}
.ya1{bottom:202.170000px;}
.y119{bottom:204.690000px;}
.y23e{bottom:205.050000px;}
.y13e{bottom:205.590000px;}
.y44{bottom:206.310000px;}
.y21d{bottom:206.850000px;}
.y208{bottom:207.930000px;}
.y78{bottom:211.350000px;}
.y1c6{bottom:213.690000px;}
.yc2{bottom:214.950000px;}
.y264{bottom:215.850000px;}
.y1e8{bottom:216.750000px;}
.y184{bottom:217.110000px;}
.y1a4{bottom:218.730000px;}
.ya0{bottom:222.510000px;}
.y23d{bottom:225.570000px;}
.y118{bottom:226.650000px;}
.y43{bottom:226.830000px;}
.y13d{bottom:227.550000px;}
.y207{bottom:228.270000px;}
.y21c{bottom:228.450000px;}
.y15f{bottom:230.610000px;}
.y282{bottom:231.330000px;}
.y77{bottom:231.870000px;}
.yec{bottom:232.410000px;}
.yc1{bottom:235.290000px;}
.y263{bottom:236.370000px;}
.y1e7{bottom:237.270000px;}
.y183{bottom:239.070000px;}
.y1a3{bottom:240.690000px;}
.y22{bottom:241.950000px;}
.y9f{bottom:243.030000px;}
.y23c{bottom:246.090000px;}
.y42{bottom:247.350000px;}
.y1c5{bottom:248.250000px;}
.y117{bottom:248.610000px;}
.y206{bottom:248.790000px;}
.y13c{bottom:249.510000px;}
.y21b{bottom:250.410000px;}
.y76{bottom:252.210000px;}
.y15e{bottom:252.390000px;}
.yeb{bottom:252.930000px;}
.y281{bottom:253.110000px;}
.yc0{bottom:255.810000px;}
.y262{bottom:256.890000px;}
.y1e6{bottom:257.790000px;}
.y182{bottom:261.030000px;}
.y1a2{bottom:262.650000px;}
.y9e{bottom:263.550000px;}
.y41{bottom:267.690000px;}
.y205{bottom:269.310000px;}
.y1c4{bottom:270.030000px;}
.y116{bottom:270.750000px;}
.y21a{bottom:272.370000px;}
.y75{bottom:272.730000px;}
.yea{bottom:273.450000px;}
.y15d{bottom:274.350000px;}
.y280{bottom:275.070000px;}
.ybf{bottom:276.330000px;}
.y29d{bottom:276.870000px;}
.y261{bottom:277.410000px;}
.y1e5{bottom:278.130000px;}
.y23b{bottom:280.290000px;}
.y21{bottom:282.630000px;}
.y13b{bottom:283.710000px;}
.y9d{bottom:284.070000px;}
.y1a1{bottom:284.610000px;}
.y40{bottom:288.210000px;}
.y204{bottom:289.830000px;}
.y1c3{bottom:291.990000px;}
.y115{bottom:292.710000px;}
.y74{bottom:293.250000px;}
.y181{bottom:293.610000px;}
.ye9{bottom:293.790000px;}
.y15c{bottom:296.310000px;}
.y27f{bottom:296.670000px;}
.ybe{bottom:296.850000px;}
.y260{bottom:297.750000px;}
.y1e4{bottom:298.650000px;}
.y23a{bottom:302.070000px;}
.y9c{bottom:304.410000px;}
.y219{bottom:305.310000px;}
.y13a{bottom:305.490000px;}
.y1a0{bottom:306.570000px;}
.y3f{bottom:308.730000px;}
.y29c{bottom:309.810000px;}
.y73{bottom:313.410000px;}
.y1c2{bottom:313.950000px;}
.y180{bottom:314.130000px;}
.y114{bottom:314.670000px;}
.ybd{bottom:317.190000px;}
.y15b{bottom:318.270000px;}
.y1e3{bottom:319.170000px;}
.y203{bottom:321.870000px;}
.y20{bottom:323.130000px;}
.y239{bottom:324.030000px;}
.y218{bottom:325.650000px;}
.ye8{bottom:326.010000px;}
.y139{bottom:327.450000px;}
.y19f{bottom:328.215000px;}
.y3e{bottom:329.295000px;}
.y27e{bottom:331.275000px;}
.y72{bottom:333.795000px;}
.y1c1{bottom:335.595000px;}
.y9b{bottom:336.675000px;}
.ybc{bottom:337.755000px;}
.y25f{bottom:338.835000px;}
.y1e2{bottom:339.735000px;}
.y15a{bottom:340.455000px;}
.y29b{bottom:344.055000px;}
.y238{bottom:346.035000px;}
.y17f{bottom:346.215000px;}
.y138{bottom:349.455000px;}
.y3d{bottom:349.635000px;}
.y27d{bottom:353.055000px;}
.y71{bottom:354.675000px;}
.y202{bottom:356.655000px;}
.ybb{bottom:358.275000px;}
.y113{bottom:358.635000px;}
.ye7{bottom:358.815000px;}
.y25e{bottom:359.355000px;}
.y1e1{bottom:360.075000px;}
.y159{bottom:362.415000px;}
.y19e{bottom:362.775000px;}
.y1f{bottom:363.675000px;}
.y217{bottom:366.735000px;}
.y237{bottom:367.635000px;}
.y1c0{bottom:368.355000px;}
.y9a{bottom:369.435000px;}
.y27c{bottom:375.015000px;}
.y70{bottom:375.195000px;}
.y29a{bottom:378.075000px;}
.yba{bottom:378.795000px;}
.y17e{bottom:378.975000px;}
.ye6{bottom:379.335000px;}
.y25d{bottom:379.695000px;}
.y112{bottom:380.595000px;}
.y3c{bottom:381.855000px;}
.y137{bottom:383.655000px;}
.y158{bottom:384.375000px;}
.y19d{bottom:384.555000px;}
.y216{bottom:387.255000px;}
.y1bf{bottom:388.875000px;}
.y99{bottom:389.955000px;}
.y6f{bottom:395.715000px;}
.y201{bottom:396.615000px;}
.yb9{bottom:399.135000px;}
.y17d{bottom:399.495000px;}
.ye5{bottom:399.855000px;}
.y1e0{bottom:401.115000px;}
.y111{bottom:402.195000px;}
.y1e{bottom:404.355000px;}
.y136{bottom:405.435000px;}
.y157{bottom:406.335000px;}
.y19c{bottom:406.515000px;}
.y215{bottom:407.595000px;}
.y98{bottom:410.475000px;}
.y6e{bottom:416.055000px;}
.y3b{bottom:416.595000px;}
.yb8{bottom:419.655000px;}
.y17c{bottom:420.015000px;}
.ye4{bottom:420.195000px;}
.y25c{bottom:420.735000px;}
.y1be{bottom:420.915000px;}
.y1df{bottom:421.635000px;}
.y236{bottom:423.975000px;}
.y110{bottom:424.155000px;}
.y135{bottom:427.395000px;}
.y214{bottom:427.755000px;}
.y156{bottom:428.295000px;}
.y19b{bottom:428.475000px;}
.y200{bottom:429.015000px;}
.y97{bottom:430.815000px;}
.y27b{bottom:431.175000px;}
.y299{bottom:434.055000px;}
.yb7{bottom:439.815000px;}
.y17b{bottom:440.535000px;}
.ye3{bottom:440.715000px;}
.y25b{bottom:441.255000px;}
.y1de{bottom:441.975000px;}
.y1d{bottom:444.855000px;}
.y235{bottom:445.935000px;}
.y10f{bottom:446.475000px;}
.y3a{bottom:447.015000px;}
.y6d{bottom:448.275000px;}
.y213{bottom:448.635000px;}
.y134{bottom:449.355000px;}
.y1ff{bottom:449.535000px;}
.y155{bottom:450.255000px;}
.y19a{bottom:450.615000px;}
.y96{bottom:451.335000px;}
.y27a{bottom:452.955000px;}
.y1bd{bottom:453.855000px;}
.y298{bottom:455.835000px;}
.yb6{bottom:460.695000px;}
.ye2{bottom:461.235000px;}
.y25a{bottom:461.595000px;}
.y1dd{bottom:462.495000px;}
.y234{bottom:467.895000px;}
.y10e{bottom:468.075000px;}
.y212{bottom:469.155000px;}
.y1fe{bottom:470.055000px;}
.y95{bottom:471.855000px;}
.y154{bottom:472.215000px;}
.y199{bottom:472.575000px;}
.y1bc{bottom:474.375000px;}
.y17a{bottom:474.555000px;}
.y279{bottom:474.915000px;}
.y6c{bottom:481.035000px;}
.y133{bottom:481.935000px;}
.y259{bottom:482.115000px;}
.y1dc{bottom:483.015000px;}
.y39{bottom:486.795000px;}
.y1c{bottom:489.135000px;}
.y233{bottom:489.495000px;}
.y297{bottom:489.855000px;}
.y10d{bottom:490.215000px;}
.y1fd{bottom:490.395000px;}
.y94{bottom:492.375000px;}
.ye1{bottom:493.635000px;}
.y153{bottom:494.175000px;}
.y198{bottom:494.535000px;}
.y1bb{bottom:494.715000px;}
.y179{bottom:496.515000px;}
.y6b{bottom:501.555000px;}
.y132{bottom:502.455000px;}
.y258{bottom:502.635000px;}
.y1db{bottom:503.535000px;}
.y1b{bottom:504.795000px;}
.y296{bottom:511.815000px;}
.y10c{bottom:512.175000px;}
.y93{bottom:512.715000px;}
.ye0{bottom:514.155000px;}
.y1ba{bottom:515.235000px;}
.y152{bottom:516.135000px;}
.y197{bottom:516.495000px;}
.y178{bottom:518.475000px;}
.y1a{bottom:520.635000px;}
.y6a{bottom:522.075000px;}
.y257{bottom:523.155000px;}
.y232{bottom:524.055000px;}
.y1fc{bottom:524.595000px;}
.y278{bottom:529.455000px;}
.y38{bottom:533.235000px;}
.y10b{bottom:534.495000px;}
.ydf{bottom:534.675000px;}
.y1da{bottom:535.575000px;}
.y1b9{bottom:535.755000px;}
.y19{bottom:536.475000px;}
.y151{bottom:537.735000px;}
.y196{bottom:538.095000px;}
.y177{bottom:540.435000px;}
.y69{bottom:542.595000px;}
.y256{bottom:543.495000px;}
.y231{bottom:545.835000px;}
.y1fb{bottom:546.375000px;}
.y277{bottom:549.795000px;}
.y18{bottom:552.315000px;}
.y92{bottom:553.755000px;}
.yde{bottom:555.195000px;}
.y1d9{bottom:556.095000px;}
.y1b8{bottom:556.275000px;}
.y10a{bottom:556.455000px;}
.y195{bottom:560.055000px;}
.y176{bottom:562.395000px;}
.y68{bottom:562.935000px;}
.y255{bottom:564.015000px;}
.y131{bottom:566.895000px;}
.y295{bottom:567.615000px;}
.y230{bottom:567.795000px;}
.y1fa{bottom:568.335000px;}
.y150{bottom:570.675000px;}
.y37{bottom:573.735000px;}
.y91{bottom:574.275000px;}
.ydd{bottom:575.535000px;}
.y1b7{bottom:576.615000px;}
.y17{bottom:577.155000px;}
.y109{bottom:578.415000px;}
.y276{bottom:582.015000px;}
.y67{bottom:583.455000px;}
.y175{bottom:583.995000px;}
.y254{bottom:584.535000px;}
.y1d8{bottom:588.855000px;}
.y22f{bottom:589.395000px;}
.y1f9{bottom:589.935000px;}
.y14f{bottom:591.195000px;}
.y194{bottom:592.815000px;}
.y90{bottom:594.615000px;}
.ydc{bottom:596.085000px;}
.y1b6{bottom:597.165000px;}
.y16{bottom:597.705000px;}
.y130{bottom:599.505000px;}
.y108{bottom:600.405000px;}
.y294{bottom:601.845000px;}
.y66{bottom:604.005000px;}
.y253{bottom:605.085000px;}
.y1d7{bottom:609.405000px;}
.y14e{bottom:611.565000px;}
.y193{bottom:613.365000px;}
.y36{bottom:614.265000px;}
.y275{bottom:614.805000px;}
.y8f{bottom:615.165000px;}
.ydb{bottom:616.605000px;}
.y1b5{bottom:617.685000px;}
.y15{bottom:618.225000px;}
.y174{bottom:618.585000px;}
.y107{bottom:622.365000px;}
.y293{bottom:623.625000px;}
.y22e{bottom:623.985000px;}
.y65{bottom:624.525000px;}
.y1d6{bottom:629.925000px;}
.y14d{bottom:632.085000px;}
.y12f{bottom:632.265000px;}
.y192{bottom:633.885000px;}
.y274{bottom:635.325000px;}
.y252{bottom:637.485000px;}
.y14{bottom:638.565000px;}
.y173{bottom:640.365000px;}
.y106{bottom:644.325000px;}
.y64{bottom:644.505000px;}
.yb5{bottom:644.865000px;}
.y22d{bottom:645.765000px;}
.y1f8{bottom:646.305000px;}
.y8e{bottom:647.385000px;}
.yda{bottom:648.645000px;}
.y1d5{bottom:650.445000px;}
.y1b4{bottom:651.885000px;}
.y14c{bottom:652.605000px;}
.y191{bottom:654.405000px;}
.y35{bottom:654.945000px;}
.y292{bottom:657.825000px;}
.y251{bottom:658.005000px;}
.y13{bottom:659.085000px;}
.y172{bottom:662.325000px;}
.y12e{bottom:664.845000px;}
.yb4{bottom:665.025000px;}
.y63{bottom:665.385000px;}
.y22c{bottom:667.725000px;}
.y1f7{bottom:668.265000px;}
.y273{bottom:669.525000px;}
.y1d4{bottom:670.785000px;}
.y14b{bottom:672.765000px;}
.y1b3{bottom:673.665000px;}
.y190{bottom:674.745000px;}
.y250{bottom:678.345000px;}
.y105{bottom:678.525000px;}
.y12{bottom:679.605000px;}
.y8d{bottom:682.125000px;}
.yd9{bottom:683.385000px;}
.y171{bottom:684.285000px;}
.y34{bottom:685.185000px;}
.y62{bottom:685.905000px;}
.y22b{bottom:689.685000px;}
.y1f6{bottom:689.865000px;}
.y1d3{bottom:691.305000px;}
.y14a{bottom:693.465000px;}
.y24f{bottom:698.865000px;}
.y11{bottom:699.405000px;}
.y104{bottom:700.305000px;}
.y12d{bottom:705.705000px;}
.y170{bottom:706.245000px;}
.y61{bottom:706.425000px;}
.y18f{bottom:706.965000px;}
.y1b2{bottom:707.865000px;}
.y22a{bottom:711.465000px;}
.y1d2{bottom:711.825000px;}
.y33{bottom:712.005000px;}
.y272{bottom:713.265000px;}
.y149{bottom:713.625000px;}
.y291{bottom:713.805000px;}
.y10{bottom:719.385000px;}
.y103{bottom:722.265000px;}
.yd8{bottom:723.345000px;}
.y8c{bottom:723.885000px;}
.y1f5{bottom:724.425000px;}
.y12c{bottom:726.225000px;}
.yb3{bottom:726.405000px;}
.y60{bottom:726.765000px;}
.y32{bottom:726.945000px;}
.y16f{bottom:728.205000px;}
.y1b1{bottom:729.645000px;}
.y1d1{bottom:732.345000px;}
.y148{bottom:734.145000px;}
.y271{bottom:734.865000px;}
.y290{bottom:735.585000px;}
.y18e{bottom:739.725000px;}
.y24e{bottom:739.905000px;}
.y31{bottom:741.885000px;}
.y102{bottom:744.225000px;}
.y1f4{bottom:746.205000px;}
.y12b{bottom:746.745000px;}
.yf{bottom:746.925000px;}
.y5f{bottom:747.285000px;}
.y16e{bottom:750.165000px;}
.y147{bottom:755.025000px;}
.yd7{bottom:755.745000px;}
.y30{bottom:756.825000px;}
.y18d{bottom:760.245000px;}
.y1b0{bottom:762.045000px;}
.y8b{bottom:763.305000px;}
.y101{bottom:766.185000px;}
.y1d0{bottom:766.365000px;}
.yb2{bottom:767.445000px;}
.ye{bottom:767.625000px;}
.y5e{bottom:767.805000px;}
.y1f3{bottom:768.165000px;}
.y270{bottom:769.425000px;}
.y28f{bottom:769.785000px;}
.y2f{bottom:771.585000px;}
.y16d{bottom:772.125000px;}
.yd6{bottom:776.265000px;}
.y24d{bottom:780.405000px;}
.y12a{bottom:780.765000px;}
.y1af{bottom:782.565000px;}
.y2e{bottom:786.525000px;}
.y146{bottom:787.065000px;}
.yd{bottom:787.425000px;}
.y100{bottom:788.145000px;}
.y5d{bottom:788.325000px;}
.y1f2{bottom:790.125000px;}
.y26f{bottom:791.205000px;}
.y28e{bottom:791.565000px;}
.y16c{bottom:793.725000px;}
.y8a{bottom:796.245000px;}
.yd5{bottom:796.785000px;}
.y18c{bottom:801.285000px;}
.y2d{bottom:801.465000px;}
.yc{bottom:807.225000px;}
.y145{bottom:807.585000px;}
.y5c{bottom:808.665000px;}
.y229{bottom:809.205000px;}
.yff{bottom:810.285000px;}
.y1f1{bottom:812.265000px;}
.y26e{bottom:812.805000px;}
.y1ae{bottom:814.605000px;}
.y129{bottom:814.785000px;}
.y2c{bottom:816.405000px;}
.y89{bottom:816.585000px;}
.yd4{bottom:817.125000px;}
.y211{bottom:820.365000px;}
.y24c{bottom:821.445000px;}
.y18b{bottom:821.625000px;}
.y28d{bottom:825.765000px;}
.y16b{bottom:826.665000px;}
.yb{bottom:827.205000px;}
.y144{bottom:828.105000px;}
.y5b{bottom:829.185000px;}
.y228{bottom:829.725000px;}
.y2b{bottom:831.165000px;}
.yfe{bottom:832.245000px;}
.y1f0{bottom:833.865000px;}
.y128{bottom:836.565000px;}
.y88{bottom:837.105000px;}
.yd3{bottom:837.645000px;}
.y210{bottom:840.885000px;}
.y18a{bottom:842.145000px;}
.y24b{bottom:842.325000px;}
.y2a{bottom:846.105000px;}
.ya{bottom:847.185000px;}
.y26d{bottom:847.365000px;}
.y28c{bottom:847.545000px;}
.y1ad{bottom:849.345000px;}
.y5a{bottom:849.705000px;}
.y227{bottom:850.065000px;}
.yfd{bottom:854.205000px;}
.y87{bottom:857.625000px;}
.yd2{bottom:858.165000px;}
.y29{bottom:861.045000px;}
.y24a{bottom:862.710000px;}
.y143{bottom:862.890000px;}
.y9{bottom:863.070000px;}
.y1ef{bottom:866.670000px;}
.y26c{bottom:869.190000px;}
.y59{bottom:870.270000px;}
.y127{bottom:870.810000px;}
.y20f{bottom:873.690000px;}
.yfc{bottom:876.210000px;}
.y189{bottom:876.390000px;}
.y28{bottom:877.290000px;}
.y86{bottom:878.190000px;}
.yd1{bottom:878.730000px;}
.y16a{bottom:879.270000px;}
.y28b{bottom:881.610000px;}
.yb1{bottom:881.790000px;}
.y8{bottom:882.870000px;}
.y249{bottom:883.230000px;}
.y226{bottom:884.310000px;}
.y1ee{bottom:887.190000px;}
.y58{bottom:890.250000px;}
.y26b{bottom:890.790000px;}
.y1ac{bottom:891.690000px;}
.y20e{bottom:894.210000px;}
.yfb{bottom:898.170000px;}
.y85{bottom:898.530000px;}
.yd0{bottom:899.070000px;}
.yb0{bottom:902.310000px;}
.y142{bottom:902.670000px;}
.y28a{bottom:903.570000px;}
.y248{bottom:903.750000px;}
.y126{bottom:904.830000px;}
.y225{bottom:906.090000px;}
.y7{bottom:909.330000px;}
.y57{bottom:911.130000px;}
.y27{bottom:912.210000px;}
.y20d{bottom:914.730000px;}
.y84{bottom:919.050000px;}
.y1ed{bottom:919.230000px;}
.ycf{bottom:919.590000px;}
.yfa{bottom:920.130000px;}
.yaf{bottom:922.830000px;}
.y247{bottom:924.270000px;}
.y26a{bottom:925.350000px;}
.y125{bottom:926.610000px;}
.y224{bottom:928.050000px;}
.y1ab{bottom:931.110000px;}
.y56{bottom:931.650000px;}
.y141{bottom:935.070000px;}
.y289{bottom:937.590000px;}
.y83{bottom:939.570000px;}
.yce{bottom:940.110000px;}
.y6{bottom:940.290000px;}
.yf9{bottom:942.090000px;}
.y169{bottom:944.610000px;}
.y269{bottom:947.130000px;}
.y1aa{bottom:951.630000px;}
.y55{bottom:952.170000px;}
.yae{bottom:955.590000px;}
.y124{bottom:959.010000px;}
.y288{bottom:959.370000px;}
.ycd{bottom:960.630000px;}
.y223{bottom:962.250000px;}
.y1cf{bottom:963.690000px;}
.yf8{bottom:964.050000px;}
.y246{bottom:964.770000px;}
.y168{bottom:965.130000px;}
.y268{bottom:968.730000px;}
.y82{bottom:971.610000px;}
.y1a9{bottom:971.970000px;}
.y54{bottom:972.510000px;}
.yad{bottom:976.110000px;}
.y5{bottom:977.550000px;}
.y123{bottom:979.530000px;}
.ycc{bottom:980.970000px;}
.y287{bottom:981.330000px;}
.y222{bottom:984.030000px;}
.y1ec{bottom:984.570000px;}
.y245{bottom:985.290000px;}
.y167{bottom:985.470000px;}
.y1ce{bottom:985.650000px;}
.yf7{bottom:986.010000px;}
.y53{bottom:992.670000px;}
.yac{bottom:996.630000px;}
.y122{bottom:1000.050000px;}
.ycb{bottom:1001.490000px;}
.y286{bottom:1003.470000px;}
.y166{bottom:1005.990000px;}
.y81{bottom:1006.170000px;}
.yf6{bottom:1007.970000px;}
.y52{bottom:1013.190000px;}
.y4{bottom:1014.810000px;}
.yab{bottom:1016.970000px;}
.yca{bottom:1022.010000px;}
.y80{bottom:1027.950000px;}
.yf5{bottom:1030.110000px;}
.y121{bottom:1032.090000px;}
.y51{bottom:1033.710000px;}
.yaa{bottom:1037.490000px;}
.y285{bottom:1037.850000px;}
.y244{bottom:1038.210000px;}
.y165{bottom:1040.190000px;}
.y1cd{bottom:1051.710000px;}
.yf4{bottom:1052.070000px;}
.yc9{bottom:1054.050000px;}
.y50{bottom:1054.410000px;}
.ya9{bottom:1058.010000px;}
.y3{bottom:1059.990000px;}
.y164{bottom:1061.970000px;}
.y7f{bottom:1062.150000px;}
.y120{bottom:1065.030000px;}
.y267{bottom:1066.470000px;}
.y243{bottom:1072.950000px;}
.yf3{bottom:1073.670000px;}
.y188{bottom:1074.030000px;}
.y4f{bottom:1074.930000px;}
.y140{bottom:1078.170000px;}
.ya8{bottom:1078.530000px;}
.y284{bottom:1079.610000px;}
.y7e{bottom:1083.930000px;}
.y11f{bottom:1085.370000px;}
.yc8{bottom:1086.990000px;}
.yf2{bottom:1095.990000px;}
.ya7{bottom:1098.870000px;}
.y242{bottom:1102.830000px;}
.y2{bottom:1103.910000px;}
.y11e{bottom:1105.890000px;}
.y4e{bottom:1107.150000px;}
.yc7{bottom:1107.510000px;}
.y1cc{bottom:1117.590000px;}
.yf1{bottom:1117.950000px;}
.y7d{bottom:1118.130000px;}
.ya6{bottom:1119.390000px;}
.y241{bottom:1132.560000px;}
.y1cb{bottom:1139.580000px;}
.y4d{bottom:1139.940000px;}
.y11d{bottom:1140.120000px;}
.y1{bottom:1193.400000px;}
.y4c{bottom:1197.540000px;}
.ha{height:33.683203px;}
.hb{height:34.036523px;}
.h11{height:46.251562px;}
.h10{height:46.736719px;}
.hc{height:47.344922px;}
.h6{height:47.980898px;}
.h17{height:48.418594px;}
.h7{height:49.394180px;}
.hd{height:59.439023px;}
.h8{height:61.189805px;}
.h14{height:61.423863px;}
.h12{height:65.010937px;}
.h2{height:65.884219px;}
.h16{height:67.565039px;}
.h13{height:68.084282px;}
.hf{height:68.956875px;}
.h3{height:73.722656px;}
.he{height:74.953125px;}
.h4{height:84.837305px;}
.h15{height:93.983203px;}
.h9{height:99.687656px;}
.h5{height:125.171719px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:52.560000px;}
.x3{left:53.820000px;}
.x9{left:80.100000px;}
.xd{left:85.500000px;}
.x4{left:105.336000px;}
.xa{left:107.136000px;}
.x5{left:109.836000px;}
.x6{left:130.176000px;}
.x7{left:248.430000px;}
.x8{left:249.510000px;}
.xc{left:275.430000px;}
.xb{left:302.475000px;}
.x2{left:838.590000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-3.472000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.504533pt;}
.ls12{letter-spacing:-0.368533pt;}
.ls19{letter-spacing:-0.271467pt;}
.ls2{letter-spacing:-0.234133pt;}
.ls15{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.019840pt;}
.ls3{letter-spacing:0.058667pt;}
.ls13{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.154667pt;}
.lsd{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.233067pt;}
.ls8{letter-spacing:0.271467pt;}
.ls1c{letter-spacing:0.368533pt;}
.ls16{letter-spacing:0.504533pt;}
.ls14{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:6.031360pt;}
.lsc{letter-spacing:35.471360pt;}
.lsb{letter-spacing:35.599360pt;}
.ls11{letter-spacing:57.040640pt;}
.ls10{letter-spacing:57.072640pt;}
.ls1a{letter-spacing:2032.335787pt;}
.lsa{letter-spacing:2054.095787pt;}
.wsa{word-spacing:-53.120000pt;}
.ws5{word-spacing:-21.280000pt;}
.wsd{word-spacing:-15.224533pt;}
.ws11{word-spacing:-15.088533pt;}
.ws6{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.953067pt;}
.wsf{word-spacing:-14.855467pt;}
.wsb{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.656000pt;}
.wsc{word-spacing:-14.486933pt;}
.ws4{word-spacing:-14.464000pt;}
.ws10{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.080000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws8{word-spacing:-9.710720pt;}
.ws1{word-spacing:-9.690880pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-6.412800pt;}
._17{margin-left:-5.092693pt;}
._f{margin-left:-3.857920pt;}
._2{margin-left:-2.899200pt;}
._67{margin-left:-2.005120pt;}
._0{margin-left:-1.115520pt;}
._4{width:0.951680pt;}
._12{width:1.964800pt;}
._9{width:2.933760pt;}
._6{width:4.159360pt;}
._5{width:5.317760pt;}
._e{width:6.647040pt;}
._d{width:8.407040pt;}
._14{width:9.656320pt;}
._26{width:10.598400pt;}
._15{width:12.204800pt;}
._11{width:13.404800pt;}
._a{width:15.866880pt;}
._b{width:16.936320pt;}
._13{width:18.564267pt;}
._16{width:19.489280pt;}
._1e{width:20.472320pt;}
._48{width:21.363200pt;}
._30{width:22.423680pt;}
._10{width:23.669760pt;}
._1a{width:25.111893pt;}
._45{width:26.295893pt;}
._5f{width:27.202560pt;}
._62{width:28.789120pt;}
._3f{width:30.205440pt;}
._40{width:31.677440pt;}
._5a{width:32.855040pt;}
._5b{width:33.760000pt;}
._66{width:35.073707pt;}
._19{width:36.387840pt;}
._2f{width:37.503360pt;}
._37{width:39.217280pt;}
._28{width:40.450560pt;}
._2d{width:41.804800pt;}
._92{width:43.022080pt;}
._5e{width:44.160000pt;}
._7{width:45.196160pt;}
._8{width:46.181760pt;}
._41{width:47.252480pt;}
._3{width:49.054507pt;}
._46{width:50.401280pt;}
._36{width:53.463040pt;}
._c{width:56.945920pt;}
._4c{width:58.232320pt;}
._2c{width:59.642240pt;}
._20{width:61.235200pt;}
._47{width:62.648320pt;}
._49{width:66.475520pt;}
._86{width:67.715200pt;}
._38{width:71.127040pt;}
._24{width:72.481280pt;}
._4e{width:73.537920pt;}
._3e{width:74.833280pt;}
._6a{width:76.190720pt;}
._4d{width:79.488000pt;}
._51{width:81.136640pt;}
._25{width:82.452480pt;}
._3d{width:83.786240pt;}
._54{width:85.434880pt;}
._18{width:87.083520pt;}
._44{width:88.963627pt;}
._2a{width:92.909440pt;}
._39{width:95.915520pt;}
._4a{width:98.506240pt;}
._3a{width:99.860480pt;}
._79{width:100.979200pt;}
._29{width:102.333440pt;}
._6c{width:103.426347pt;}
._3b{width:105.100800pt;}
._5d{width:106.569600pt;}
._52{width:108.100480pt;}
._6d{width:110.102400pt;}
._3c{width:114.375680pt;}
._50{width:115.522560pt;}
._64{width:118.525440pt;}
._1c{width:121.881600pt;}
._56{width:124.648960pt;}
._69{width:126.595200pt;}
._1f{width:128.064000pt;}
._82{width:129.127040pt;}
._22{width:133.508480pt;}
._87{width:138.915840pt;}
._83{width:142.960640pt;}
._75{width:144.020480pt;}
._32{width:145.250560pt;}
._59{width:148.495360pt;}
._31{width:150.026240pt;}
._85{width:150.968320pt;}
._53{width:154.218667pt;}
._35{width:155.678720pt;}
._1b{width:163.038720pt;}
._63{width:170.634240pt;}
._27{width:174.163840pt;}
._21{width:176.404480pt;}
._88{width:177.520000pt;}
._2b{width:178.877440pt;}
._57{width:179.937280pt;}
._42{width:182.760107pt;}
._4b{width:184.942080pt;}
._55{width:186.590720pt;}
._65{width:187.882880pt;}
._7a{width:194.241920pt;}
._1d{width:196.482560pt;}
._78{width:198.040747pt;}
._2e{width:200.752640pt;}
._74{width:204.779307pt;}
._6b{width:207.136640pt;}
._58{width:210.496000pt;}
._5c{width:213.086720pt;}
._7c{width:217.377707pt;}
._7d{width:218.330240pt;}
._23{width:220.423680pt;}
._43{width:221.738880pt;}
._4f{width:232.281600pt;}
._34{width:235.637760pt;}
._76{width:240.583680pt;}
._77{width:243.646507pt;}
._7b{width:248.751360pt;}
._6e{width:252.492160pt;}
._84{width:265.615787pt;}
._8e{width:276.912640pt;}
._8c{width:278.253440pt;}
._8d{width:279.859840pt;}
._89{width:293.853440pt;}
._93{width:294.871040pt;}
._8a{width:299.643520pt;}
._94{width:318.056320pt;}
._73{width:326.312960pt;}
._72{width:327.241600pt;}
._7e{width:342.723840pt;}
._7f{width:343.914880pt;}
._90{width:348.552960pt;}
._91{width:349.511680pt;}
._80{width:406.638720pt;}
._81{width:408.665600pt;}
._60{width:485.461760pt;}
._61{width:541.355733pt;}
._33{width:552.586240pt;}
._8b{width:568.109013pt;}
._71{width:635.727360pt;}
._70{width:637.068160pt;}
._6f{width:1214.650240pt;}
._95{width:1239.171840pt;}
._68{width:1387.748480pt;}
._8f{width:1402.210560pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:45.280000pt;}
.y26{bottom:62.592000pt;}
.y4a{bottom:63.552000pt;}
.y49{bottom:81.792000pt;}
.y25{bottom:99.712000pt;}
.y48{bottom:99.872000pt;}
.yc6{bottom:100.032000pt;}
.y7c{bottom:100.352000pt;}
.y20c{bottom:101.312000pt;}
.y11c{bottom:103.872000pt;}
.y187{bottom:104.192000pt;}
.y1a8{bottom:105.312000pt;}
.y221{bottom:105.792000pt;}
.ya5{bottom:106.912000pt;}
.y1ca{bottom:112.192000pt;}
.y163{bottom:115.712000pt;}
.y47{bottom:118.112000pt;}
.yc5{bottom:118.272000pt;}
.y266{bottom:119.072000pt;}
.yf0{bottom:119.232000pt;}
.y20b{bottom:119.552000pt;}
.y7b{bottom:119.872000pt;}
.y11b{bottom:123.392000pt;}
.y186{bottom:123.712000pt;}
.y1a7{bottom:124.832000pt;}
.ya4{bottom:124.992000pt;}
.y220{bottom:125.312000pt;}
.y240{bottom:129.152000pt;}
.y1c9{bottom:131.552000pt;}
.y162{bottom:135.546667pt;}
.y46{bottom:136.346667pt;}
.y265{bottom:137.306667pt;}
.y1eb{bottom:138.106667pt;}
.yef{bottom:138.586667pt;}
.y7a{bottom:139.386667pt;}
.y24{bottom:142.906667pt;}
.ya3{bottom:143.226667pt;}
.y21f{bottom:144.826667pt;}
.y20a{bottom:148.346667pt;}
.y1c8{bottom:151.226667pt;}
.yc4{bottom:154.586667pt;}
.y161{bottom:155.066667pt;}
.y1a6{bottom:155.546667pt;}
.y283{bottom:155.706667pt;}
.y1ea{bottom:156.346667pt;}
.yee{bottom:158.106667pt;}
.y79{bottom:159.066667pt;}
.ya2{bottom:161.466667pt;}
.y11a{bottom:162.426667pt;}
.y13f{bottom:163.386667pt;}
.y23f{bottom:164.186667pt;}
.y21e{bottom:164.346667pt;}
.y45{bottom:165.146667pt;}
.y209{bottom:166.586667pt;}
.y1c7{bottom:170.746667pt;}
.yc3{bottom:172.826667pt;}
.y185{bottom:173.626667pt;}
.y160{bottom:174.266667pt;}
.y1e9{bottom:174.426667pt;}
.y1a5{bottom:174.906667pt;}
.yed{bottom:177.786667pt;}
.y23{bottom:179.066667pt;}
.ya1{bottom:179.706667pt;}
.y119{bottom:181.946667pt;}
.y23e{bottom:182.266667pt;}
.y13e{bottom:182.746667pt;}
.y44{bottom:183.386667pt;}
.y21d{bottom:183.866667pt;}
.y208{bottom:184.826667pt;}
.y78{bottom:187.866667pt;}
.y1c6{bottom:189.946667pt;}
.yc2{bottom:191.066667pt;}
.y264{bottom:191.866667pt;}
.y1e8{bottom:192.666667pt;}
.y184{bottom:192.986667pt;}
.y1a4{bottom:194.426667pt;}
.ya0{bottom:197.786667pt;}
.y23d{bottom:200.506667pt;}
.y118{bottom:201.466667pt;}
.y43{bottom:201.626667pt;}
.y13d{bottom:202.266667pt;}
.y207{bottom:202.906667pt;}
.y21c{bottom:203.066667pt;}
.y15f{bottom:204.986667pt;}
.y282{bottom:205.626667pt;}
.y77{bottom:206.106667pt;}
.yec{bottom:206.586667pt;}
.yc1{bottom:209.146667pt;}
.y263{bottom:210.106667pt;}
.y1e7{bottom:210.906667pt;}
.y183{bottom:212.506667pt;}
.y1a3{bottom:213.946667pt;}
.y22{bottom:215.066667pt;}
.y9f{bottom:216.026667pt;}
.y23c{bottom:218.746667pt;}
.y42{bottom:219.866667pt;}
.y1c5{bottom:220.666667pt;}
.y117{bottom:220.986667pt;}
.y206{bottom:221.146667pt;}
.y13c{bottom:221.786667pt;}
.y21b{bottom:222.586667pt;}
.y76{bottom:224.186667pt;}
.y15e{bottom:224.346667pt;}
.yeb{bottom:224.826667pt;}
.y281{bottom:224.986667pt;}
.yc0{bottom:227.386667pt;}
.y262{bottom:228.346667pt;}
.y1e6{bottom:229.146667pt;}
.y182{bottom:232.026667pt;}
.y1a2{bottom:233.466667pt;}
.y9e{bottom:234.266667pt;}
.y41{bottom:237.946667pt;}
.y205{bottom:239.386667pt;}
.y1c4{bottom:240.026667pt;}
.y116{bottom:240.666667pt;}
.y21a{bottom:242.106667pt;}
.y75{bottom:242.426667pt;}
.yea{bottom:243.066667pt;}
.y15d{bottom:243.866667pt;}
.y280{bottom:244.506667pt;}
.ybf{bottom:245.626667pt;}
.y29d{bottom:246.106667pt;}
.y261{bottom:246.586667pt;}
.y1e5{bottom:247.226667pt;}
.y23b{bottom:249.146667pt;}
.y21{bottom:251.226667pt;}
.y13b{bottom:252.186667pt;}
.y9d{bottom:252.506667pt;}
.y1a1{bottom:252.986667pt;}
.y40{bottom:256.186667pt;}
.y204{bottom:257.626667pt;}
.y1c3{bottom:259.546667pt;}
.y115{bottom:260.186667pt;}
.y74{bottom:260.666667pt;}
.y181{bottom:260.986667pt;}
.ye9{bottom:261.146667pt;}
.y15c{bottom:263.386667pt;}
.y27f{bottom:263.706667pt;}
.ybe{bottom:263.866667pt;}
.y260{bottom:264.666667pt;}
.y1e4{bottom:265.466667pt;}
.y23a{bottom:268.506667pt;}
.y9c{bottom:270.586667pt;}
.y219{bottom:271.386667pt;}
.y13a{bottom:271.546667pt;}
.y1a0{bottom:272.506667pt;}
.y3f{bottom:274.426667pt;}
.y29c{bottom:275.386667pt;}
.y73{bottom:278.586667pt;}
.y1c2{bottom:279.066667pt;}
.y180{bottom:279.226667pt;}
.y114{bottom:279.706667pt;}
.ybd{bottom:281.946667pt;}
.y15b{bottom:282.906667pt;}
.y1e3{bottom:283.706667pt;}
.y203{bottom:286.106667pt;}
.y20{bottom:287.226667pt;}
.y239{bottom:288.026667pt;}
.y218{bottom:289.466667pt;}
.ye8{bottom:289.786667pt;}
.y139{bottom:291.066667pt;}
.y19f{bottom:291.746667pt;}
.y3e{bottom:292.706667pt;}
.y27e{bottom:294.466667pt;}
.y72{bottom:296.706667pt;}
.y1c1{bottom:298.306667pt;}
.y9b{bottom:299.266667pt;}
.ybc{bottom:300.226667pt;}
.y25f{bottom:301.186667pt;}
.y1e2{bottom:301.986667pt;}
.y15a{bottom:302.626667pt;}
.y29b{bottom:305.826667pt;}
.y238{bottom:307.586667pt;}
.y17f{bottom:307.746667pt;}
.y138{bottom:310.626667pt;}
.y3d{bottom:310.786667pt;}
.y27d{bottom:313.826667pt;}
.y71{bottom:315.266667pt;}
.y202{bottom:317.026667pt;}
.ybb{bottom:318.466667pt;}
.y113{bottom:318.786667pt;}
.ye7{bottom:318.946667pt;}
.y25e{bottom:319.426667pt;}
.y1e1{bottom:320.066667pt;}
.y159{bottom:322.146667pt;}
.y19e{bottom:322.466667pt;}
.y1f{bottom:323.266667pt;}
.y217{bottom:325.986667pt;}
.y237{bottom:326.786667pt;}
.y1c0{bottom:327.426667pt;}
.y9a{bottom:328.386667pt;}
.y27c{bottom:333.346667pt;}
.y70{bottom:333.506667pt;}
.y29a{bottom:336.066667pt;}
.yba{bottom:336.706667pt;}
.y17e{bottom:336.866667pt;}
.ye6{bottom:337.186667pt;}
.y25d{bottom:337.506667pt;}
.y112{bottom:338.306667pt;}
.y3c{bottom:339.426667pt;}
.y137{bottom:341.026667pt;}
.y158{bottom:341.666667pt;}
.y19d{bottom:341.826667pt;}
.y216{bottom:344.226667pt;}
.y1bf{bottom:345.666667pt;}
.y99{bottom:346.626667pt;}
.y6f{bottom:351.746667pt;}
.y201{bottom:352.546667pt;}
.yb9{bottom:354.786667pt;}
.y17d{bottom:355.106667pt;}
.ye5{bottom:355.426667pt;}
.y1e0{bottom:356.546667pt;}
.y111{bottom:357.506667pt;}
.y1e{bottom:359.426667pt;}
.y136{bottom:360.386667pt;}
.y157{bottom:361.186667pt;}
.y19c{bottom:361.346667pt;}
.y215{bottom:362.306667pt;}
.y98{bottom:364.866667pt;}
.y6e{bottom:369.826667pt;}
.y3b{bottom:370.306667pt;}
.yb8{bottom:373.026667pt;}
.y17c{bottom:373.346667pt;}
.ye4{bottom:373.506667pt;}
.y25c{bottom:373.986667pt;}
.y1be{bottom:374.146667pt;}
.y1df{bottom:374.786667pt;}
.y236{bottom:376.866667pt;}
.y110{bottom:377.026667pt;}
.y135{bottom:379.906667pt;}
.y214{bottom:380.226667pt;}
.y156{bottom:380.706667pt;}
.y19b{bottom:380.866667pt;}
.y200{bottom:381.346667pt;}
.y97{bottom:382.946667pt;}
.y27b{bottom:383.266667pt;}
.y299{bottom:385.826667pt;}
.yb7{bottom:390.946667pt;}
.y17b{bottom:391.586667pt;}
.ye3{bottom:391.746667pt;}
.y25b{bottom:392.226667pt;}
.y1de{bottom:392.866667pt;}
.y1d{bottom:395.426667pt;}
.y235{bottom:396.386667pt;}
.y10f{bottom:396.866667pt;}
.y3a{bottom:397.346667pt;}
.y6d{bottom:398.466667pt;}
.y213{bottom:398.786667pt;}
.y134{bottom:399.426667pt;}
.y1ff{bottom:399.586667pt;}
.y155{bottom:400.226667pt;}
.y19a{bottom:400.546667pt;}
.y96{bottom:401.186667pt;}
.y27a{bottom:402.626667pt;}
.y1bd{bottom:403.426667pt;}
.y298{bottom:405.186667pt;}
.yb6{bottom:409.506667pt;}
.ye2{bottom:409.986667pt;}
.y25a{bottom:410.306667pt;}
.y1dd{bottom:411.106667pt;}
.y234{bottom:415.906667pt;}
.y10e{bottom:416.066667pt;}
.y212{bottom:417.026667pt;}
.y1fe{bottom:417.826667pt;}
.y95{bottom:419.426667pt;}
.y154{bottom:419.746667pt;}
.y199{bottom:420.066667pt;}
.y1bc{bottom:421.666667pt;}
.y17a{bottom:421.826667pt;}
.y279{bottom:422.146667pt;}
.y6c{bottom:427.586667pt;}
.y133{bottom:428.386667pt;}
.y259{bottom:428.546667pt;}
.y1dc{bottom:429.346667pt;}
.y39{bottom:432.706667pt;}
.y1c{bottom:434.786667pt;}
.y233{bottom:435.106667pt;}
.y297{bottom:435.426667pt;}
.y10d{bottom:435.746667pt;}
.y1fd{bottom:435.906667pt;}
.y94{bottom:437.666667pt;}
.ye1{bottom:438.786667pt;}
.y153{bottom:439.266667pt;}
.y198{bottom:439.586667pt;}
.y1bb{bottom:439.746667pt;}
.y179{bottom:441.346667pt;}
.y6b{bottom:445.826667pt;}
.y132{bottom:446.626667pt;}
.y258{bottom:446.786667pt;}
.y1db{bottom:447.586667pt;}
.y1b{bottom:448.706667pt;}
.y296{bottom:454.946667pt;}
.y10c{bottom:455.266667pt;}
.y93{bottom:455.746667pt;}
.ye0{bottom:457.026667pt;}
.y1ba{bottom:457.986667pt;}
.y152{bottom:458.786667pt;}
.y197{bottom:459.106667pt;}
.y178{bottom:460.866667pt;}
.y1a{bottom:462.786667pt;}
.y6a{bottom:464.066667pt;}
.y257{bottom:465.026667pt;}
.y232{bottom:465.826667pt;}
.y1fc{bottom:466.306667pt;}
.y278{bottom:470.626667pt;}
.y38{bottom:473.986667pt;}
.y10b{bottom:475.106667pt;}
.ydf{bottom:475.266667pt;}
.y1da{bottom:476.066667pt;}
.y1b9{bottom:476.226667pt;}
.y19{bottom:476.866667pt;}
.y151{bottom:477.986667pt;}
.y196{bottom:478.306667pt;}
.y177{bottom:480.386667pt;}
.y69{bottom:482.306667pt;}
.y256{bottom:483.106667pt;}
.y231{bottom:485.186667pt;}
.y1fb{bottom:485.666667pt;}
.y277{bottom:488.706667pt;}
.y18{bottom:490.946667pt;}
.y92{bottom:492.226667pt;}
.yde{bottom:493.506667pt;}
.y1d9{bottom:494.306667pt;}
.y1b8{bottom:494.466667pt;}
.y10a{bottom:494.626667pt;}
.y195{bottom:497.826667pt;}
.y176{bottom:499.906667pt;}
.y68{bottom:500.386667pt;}
.y255{bottom:501.346667pt;}
.y131{bottom:503.906667pt;}
.y295{bottom:504.546667pt;}
.y230{bottom:504.706667pt;}
.y1fa{bottom:505.186667pt;}
.y150{bottom:507.266667pt;}
.y37{bottom:509.986667pt;}
.y91{bottom:510.466667pt;}
.ydd{bottom:511.586667pt;}
.y1b7{bottom:512.546667pt;}
.y17{bottom:513.026667pt;}
.y109{bottom:514.146667pt;}
.y276{bottom:517.346667pt;}
.y67{bottom:518.626667pt;}
.y175{bottom:519.106667pt;}
.y254{bottom:519.586667pt;}
.y1d8{bottom:523.426667pt;}
.y22f{bottom:523.906667pt;}
.y1f9{bottom:524.386667pt;}
.y14f{bottom:525.506667pt;}
.y194{bottom:526.946667pt;}
.y90{bottom:528.546667pt;}
.ydc{bottom:529.853333pt;}
.y1b6{bottom:530.813333pt;}
.y16{bottom:531.293333pt;}
.y130{bottom:532.893333pt;}
.y108{bottom:533.693333pt;}
.y294{bottom:534.973333pt;}
.y66{bottom:536.893333pt;}
.y253{bottom:537.853333pt;}
.y1d7{bottom:541.693333pt;}
.y14e{bottom:543.613333pt;}
.y193{bottom:545.213333pt;}
.y36{bottom:546.013333pt;}
.y275{bottom:546.493333pt;}
.y8f{bottom:546.813333pt;}
.ydb{bottom:548.093333pt;}
.y1b5{bottom:549.053333pt;}
.y15{bottom:549.533333pt;}
.y174{bottom:549.853333pt;}
.y107{bottom:553.213333pt;}
.y293{bottom:554.333333pt;}
.y22e{bottom:554.653333pt;}
.y65{bottom:555.133333pt;}
.y1d6{bottom:559.933333pt;}
.y14d{bottom:561.853333pt;}
.y12f{bottom:562.013333pt;}
.y192{bottom:563.453333pt;}
.y274{bottom:564.733333pt;}
.y252{bottom:566.653333pt;}
.y14{bottom:567.613333pt;}
.y173{bottom:569.213333pt;}
.y106{bottom:572.733333pt;}
.y64{bottom:572.893333pt;}
.yb5{bottom:573.213333pt;}
.y22d{bottom:574.013333pt;}
.y1f8{bottom:574.493333pt;}
.y8e{bottom:575.453333pt;}
.yda{bottom:576.573333pt;}
.y1d5{bottom:578.173333pt;}
.y1b4{bottom:579.453333pt;}
.y14c{bottom:580.093333pt;}
.y191{bottom:581.693333pt;}
.y35{bottom:582.173333pt;}
.y292{bottom:584.733333pt;}
.y251{bottom:584.893333pt;}
.y13{bottom:585.853333pt;}
.y172{bottom:588.733333pt;}
.y12e{bottom:590.973333pt;}
.yb4{bottom:591.133333pt;}
.y63{bottom:591.453333pt;}
.y22c{bottom:593.533333pt;}
.y1f7{bottom:594.013333pt;}
.y273{bottom:595.133333pt;}
.y1d4{bottom:596.253333pt;}
.y14b{bottom:598.013333pt;}
.y1b3{bottom:598.813333pt;}
.y190{bottom:599.773333pt;}
.y250{bottom:602.973333pt;}
.y105{bottom:603.133333pt;}
.y12{bottom:604.093333pt;}
.y8d{bottom:606.333333pt;}
.yd9{bottom:607.453333pt;}
.y171{bottom:608.253333pt;}
.y34{bottom:609.053333pt;}
.y62{bottom:609.693333pt;}
.y22b{bottom:613.053333pt;}
.y1f6{bottom:613.213333pt;}
.y1d3{bottom:614.493333pt;}
.y14a{bottom:616.413333pt;}
.y24f{bottom:621.213333pt;}
.y11{bottom:621.693333pt;}
.y104{bottom:622.493333pt;}
.y12d{bottom:627.293333pt;}
.y170{bottom:627.773333pt;}
.y61{bottom:627.933333pt;}
.y18f{bottom:628.413333pt;}
.y1b2{bottom:629.213333pt;}
.y22a{bottom:632.413333pt;}
.y1d2{bottom:632.733333pt;}
.y33{bottom:632.893333pt;}
.y272{bottom:634.013333pt;}
.y149{bottom:634.333333pt;}
.y291{bottom:634.493333pt;}
.y10{bottom:639.453333pt;}
.y103{bottom:642.013333pt;}
.yd8{bottom:642.973333pt;}
.y8c{bottom:643.453333pt;}
.y1f5{bottom:643.933333pt;}
.y12c{bottom:645.533333pt;}
.yb3{bottom:645.693333pt;}
.y60{bottom:646.013333pt;}
.y32{bottom:646.173333pt;}
.y16f{bottom:647.293333pt;}
.y1b1{bottom:648.573333pt;}
.y1d1{bottom:650.973333pt;}
.y148{bottom:652.573333pt;}
.y271{bottom:653.213333pt;}
.y290{bottom:653.853333pt;}
.y18e{bottom:657.533333pt;}
.y24e{bottom:657.693333pt;}
.y31{bottom:659.453333pt;}
.y102{bottom:661.533333pt;}
.y1f4{bottom:663.293333pt;}
.y12b{bottom:663.773333pt;}
.yf{bottom:663.933333pt;}
.y5f{bottom:664.253333pt;}
.y16e{bottom:666.813333pt;}
.y147{bottom:671.133333pt;}
.yd7{bottom:671.773333pt;}
.y30{bottom:672.733333pt;}
.y18d{bottom:675.773333pt;}
.y1b0{bottom:677.373333pt;}
.y8b{bottom:678.493333pt;}
.y101{bottom:681.053333pt;}
.y1d0{bottom:681.213333pt;}
.yb2{bottom:682.173333pt;}
.ye{bottom:682.333333pt;}
.y5e{bottom:682.493333pt;}
.y1f3{bottom:682.813333pt;}
.y270{bottom:683.933333pt;}
.y28f{bottom:684.253333pt;}
.y2f{bottom:685.853333pt;}
.y16d{bottom:686.333333pt;}
.yd6{bottom:690.013333pt;}
.y24d{bottom:693.693333pt;}
.y12a{bottom:694.013333pt;}
.y1af{bottom:695.613333pt;}
.y2e{bottom:699.133333pt;}
.y146{bottom:699.613333pt;}
.yd{bottom:699.933333pt;}
.y100{bottom:700.573333pt;}
.y5d{bottom:700.733333pt;}
.y1f2{bottom:702.333333pt;}
.y26f{bottom:703.293333pt;}
.y28e{bottom:703.613333pt;}
.y16c{bottom:705.533333pt;}
.y8a{bottom:707.773333pt;}
.yd5{bottom:708.253333pt;}
.y18c{bottom:712.253333pt;}
.y2d{bottom:712.413333pt;}
.yc{bottom:717.533333pt;}
.y145{bottom:717.853333pt;}
.y5c{bottom:718.813333pt;}
.y229{bottom:719.293333pt;}
.yff{bottom:720.253333pt;}
.y1f1{bottom:722.013333pt;}
.y26e{bottom:722.493333pt;}
.y1ae{bottom:724.093333pt;}
.y129{bottom:724.253333pt;}
.y2c{bottom:725.693333pt;}
.y89{bottom:725.853333pt;}
.yd4{bottom:726.333333pt;}
.y211{bottom:729.213333pt;}
.y24c{bottom:730.173333pt;}
.y18b{bottom:730.333333pt;}
.y28d{bottom:734.013333pt;}
.y16b{bottom:734.813333pt;}
.yb{bottom:735.293333pt;}
.y144{bottom:736.093333pt;}
.y5b{bottom:737.053333pt;}
.y228{bottom:737.533333pt;}
.y2b{bottom:738.813333pt;}
.yfe{bottom:739.773333pt;}
.y1f0{bottom:741.213333pt;}
.y128{bottom:743.613333pt;}
.y88{bottom:744.093333pt;}
.yd3{bottom:744.573333pt;}
.y210{bottom:747.453333pt;}
.y18a{bottom:748.573333pt;}
.y24b{bottom:748.733333pt;}
.y2a{bottom:752.093333pt;}
.ya{bottom:753.053333pt;}
.y26d{bottom:753.213333pt;}
.y28c{bottom:753.373333pt;}
.y1ad{bottom:754.973333pt;}
.y5a{bottom:755.293333pt;}
.y227{bottom:755.613333pt;}
.yfd{bottom:759.293333pt;}
.y87{bottom:762.333333pt;}
.yd2{bottom:762.813333pt;}
.y29{bottom:765.373333pt;}
.y24a{bottom:766.853333pt;}
.y143{bottom:767.013333pt;}
.y9{bottom:767.173333pt;}
.y1ef{bottom:770.373333pt;}
.y26c{bottom:772.613333pt;}
.y59{bottom:773.573333pt;}
.y127{bottom:774.053333pt;}
.y20f{bottom:776.613333pt;}
.yfc{bottom:778.853333pt;}
.y189{bottom:779.013333pt;}
.y28{bottom:779.813333pt;}
.y86{bottom:780.613333pt;}
.yd1{bottom:781.093333pt;}
.y16a{bottom:781.573333pt;}
.y28b{bottom:783.653333pt;}
.yb1{bottom:783.813333pt;}
.y8{bottom:784.773333pt;}
.y249{bottom:785.093333pt;}
.y226{bottom:786.053333pt;}
.y1ee{bottom:788.613333pt;}
.y58{bottom:791.333333pt;}
.y26b{bottom:791.813333pt;}
.y1ac{bottom:792.613333pt;}
.y20e{bottom:794.853333pt;}
.yfb{bottom:798.373333pt;}
.y85{bottom:798.693333pt;}
.yd0{bottom:799.173333pt;}
.yb0{bottom:802.053333pt;}
.y142{bottom:802.373333pt;}
.y28a{bottom:803.173333pt;}
.y248{bottom:803.333333pt;}
.y126{bottom:804.293333pt;}
.y225{bottom:805.413333pt;}
.y7{bottom:808.293333pt;}
.y57{bottom:809.893333pt;}
.y27{bottom:810.853333pt;}
.y20d{bottom:813.093333pt;}
.y84{bottom:816.933333pt;}
.y1ed{bottom:817.093333pt;}
.ycf{bottom:817.413333pt;}
.yfa{bottom:817.893333pt;}
.yaf{bottom:820.293333pt;}
.y247{bottom:821.573333pt;}
.y26a{bottom:822.533333pt;}
.y125{bottom:823.653333pt;}
.y224{bottom:824.933333pt;}
.y1ab{bottom:827.653333pt;}
.y56{bottom:828.133333pt;}
.y141{bottom:831.173333pt;}
.y289{bottom:833.413333pt;}
.y83{bottom:835.173333pt;}
.yce{bottom:835.653333pt;}
.y6{bottom:835.813333pt;}
.yf9{bottom:837.413333pt;}
.y169{bottom:839.653333pt;}
.y269{bottom:841.893333pt;}
.y1aa{bottom:845.893333pt;}
.y55{bottom:846.373333pt;}
.yae{bottom:849.413333pt;}
.y124{bottom:852.453333pt;}
.y288{bottom:852.773333pt;}
.ycd{bottom:853.893333pt;}
.y223{bottom:855.333333pt;}
.y1cf{bottom:856.613333pt;}
.yf8{bottom:856.933333pt;}
.y246{bottom:857.573333pt;}
.y168{bottom:857.893333pt;}
.y268{bottom:861.093333pt;}
.y82{bottom:863.653333pt;}
.y1a9{bottom:863.973333pt;}
.y54{bottom:864.453333pt;}
.yad{bottom:867.653333pt;}
.y5{bottom:868.933333pt;}
.y123{bottom:870.693333pt;}
.ycc{bottom:871.973333pt;}
.y287{bottom:872.293333pt;}
.y222{bottom:874.693333pt;}
.y1ec{bottom:875.173333pt;}
.y245{bottom:875.813333pt;}
.y167{bottom:875.973333pt;}
.y1ce{bottom:876.133333pt;}
.yf7{bottom:876.453333pt;}
.y53{bottom:882.373333pt;}
.yac{bottom:885.893333pt;}
.y122{bottom:888.933333pt;}
.ycb{bottom:890.213333pt;}
.y286{bottom:891.973333pt;}
.y166{bottom:894.213333pt;}
.y81{bottom:894.373333pt;}
.yf6{bottom:895.973333pt;}
.y52{bottom:900.613333pt;}
.y4{bottom:902.053333pt;}
.yab{bottom:903.973333pt;}
.yca{bottom:908.453333pt;}
.y80{bottom:913.733333pt;}
.yf5{bottom:915.653333pt;}
.y121{bottom:917.413333pt;}
.y51{bottom:918.853333pt;}
.yaa{bottom:922.213333pt;}
.y285{bottom:922.533333pt;}
.y244{bottom:922.853333pt;}
.y165{bottom:924.613333pt;}
.y1cd{bottom:934.853333pt;}
.yf4{bottom:935.173333pt;}
.yc9{bottom:936.933333pt;}
.y50{bottom:937.253333pt;}
.ya9{bottom:940.453333pt;}
.y3{bottom:942.213333pt;}
.y164{bottom:943.973333pt;}
.y7f{bottom:944.133333pt;}
.y120{bottom:946.693333pt;}
.y267{bottom:947.973333pt;}
.y243{bottom:953.733333pt;}
.yf3{bottom:954.373333pt;}
.y188{bottom:954.693333pt;}
.y4f{bottom:955.493333pt;}
.y140{bottom:958.373333pt;}
.ya8{bottom:958.693333pt;}
.y284{bottom:959.653333pt;}
.y7e{bottom:963.493333pt;}
.y11f{bottom:964.773333pt;}
.yc8{bottom:966.213333pt;}
.yf2{bottom:974.213333pt;}
.ya7{bottom:976.773333pt;}
.y242{bottom:980.293333pt;}
.y2{bottom:981.253333pt;}
.y11e{bottom:983.013333pt;}
.y4e{bottom:984.133333pt;}
.yc7{bottom:984.453333pt;}
.y1cc{bottom:993.413333pt;}
.yf1{bottom:993.733333pt;}
.y7d{bottom:993.893333pt;}
.ya6{bottom:995.013333pt;}
.y241{bottom:1006.720000pt;}
.y1cb{bottom:1012.960000pt;}
.y4d{bottom:1013.280000pt;}
.y11d{bottom:1013.440000pt;}
.y1{bottom:1060.800000pt;}
.y4c{bottom:1064.480000pt;}
.ha{height:29.940625pt;}
.hb{height:30.254687pt;}
.h11{height:41.112500pt;}
.h10{height:41.543750pt;}
.hc{height:42.084375pt;}
.h6{height:42.649687pt;}
.h17{height:43.038750pt;}
.h7{height:43.905937pt;}
.hd{height:52.834688pt;}
.h8{height:54.390938pt;}
.h14{height:54.598989pt;}
.h12{height:57.787500pt;}
.h2{height:58.563750pt;}
.h16{height:60.057813pt;}
.h13{height:60.519362pt;}
.hf{height:61.295000pt;}
.h3{height:65.531250pt;}
.he{height:66.625000pt;}
.h4{height:75.410937pt;}
.h15{height:83.540625pt;}
.h9{height:88.611250pt;}
.h5{height:111.263750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:46.720000pt;}
.x3{left:47.840000pt;}
.x9{left:71.200000pt;}
.xd{left:76.000000pt;}
.x4{left:93.632000pt;}
.xa{left:95.232000pt;}
.x5{left:97.632000pt;}
.x6{left:115.712000pt;}
.x7{left:220.826667pt;}
.x8{left:221.786667pt;}
.xc{left:244.826667pt;}
.xb{left:268.866667pt;}
.x2{left:745.413333pt;}
}




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