
    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_be7b2235183f1c742509a5de.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_cf952c71e1fa6c54f177a5f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_f7e80ebb0d87c907d2c92b9e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115234;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_75d9b84163d0dca0adbea27f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_572e4c370f629ef75b6b4e3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.793945;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_935a5295870407159aa09211.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982910;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_ee54215533b0e220b6f74323.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7dfd4c744d315b5252f743f8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.414600px;}
.ls1{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.298200px;}
.ls13{letter-spacing:-0.259800px;}
.ls2{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.100200px;}
.ls12{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.357000px;}
.ls10{letter-spacing:0.720000px;}
.ls9{letter-spacing:2.334240px;}
.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;}
}
.ws3{word-spacing:-20.304000px;}
.ws2{word-spacing:-20.016000px;}
.ws0{word-spacing:-18.305520px;}
.wsb{word-spacing:-16.666560px;}
.ws8{word-spacing:-16.613280px;}
.ws7{word-spacing:-16.513080px;}
.ws6{word-spacing:-16.506480px;}
.wsa{word-spacing:-16.353480px;}
.ws4{word-spacing:-13.862760px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:341.634000px;}
.ws9{word-spacing:425.154000px;}
._6{margin-left:-4.896000px;}
._5{margin-left:-3.816000px;}
._1{margin-left:-2.106000px;}
._4{margin-left:-1.053360px;}
._3{width:1.053360px;}
._2{width:2.129040px;}
._8{width:4.032000px;}
._f{width:5.444640px;}
._e{width:6.624000px;}
._d{width:7.632000px;}
._10{width:9.423360px;}
._c{width:10.872000px;}
._b{width:11.952000px;}
._11{width:13.824000px;}
._15{width:15.236640px;}
._13{width:16.560000px;}
._12{width:17.712000px;}
._18{width:18.917280px;}
._23{width:21.205440px;}
._21{width:22.490640px;}
._1b{width:24.093360px;}
._1a{width:25.272000px;}
._24{width:26.327280px;}
._a{width:27.336000px;}
._22{width:29.592000px;}
._7{width:30.672000px;}
._14{width:32.576640px;}
._1c{width:34.780320px;}
._1e{width:35.915760px;}
._17{width:39.644640px;}
._16{width:40.752000px;}
._26{width:42.130800px;}
._9{width:44.352000px;}
._19{width:48.024000px;}
._1f{width:75.953520px;}
._25{width:79.002720px;}
._1d{width:80.855280px;}
._27{width:163.443600px;}
._20{width:177.128640px;}
._0{width:1395.084000px;}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:81.360000px;}
.fs1{font-size:84.240000px;}
.fsa{font-size:84.384000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y19{bottom:-7.740000px;}
.y0{bottom:0.000000px;}
.y2b5{bottom:2.880000px;}
.y252{bottom:3.240000px;}
.y250{bottom:3.420000px;}
.y266{bottom:3.450000px;}
.y2d5{bottom:3.780000px;}
.y29e{bottom:4.140000px;}
.y29f{bottom:5.040000px;}
.y2ae{bottom:5.760000px;}
.y283{bottom:5.940000px;}
.y2d9{bottom:7.020000px;}
.y2e8{bottom:7.050000px;}
.y2b0{bottom:7.380000px;}
.y287{bottom:7.740000px;}
.y28b{bottom:7.920000px;}
.y2b3{bottom:8.280000px;}
.y298{bottom:8.640000px;}
.y285{bottom:10.440000px;}
.y295{bottom:11.340000px;}
.y293{bottom:11.520000px;}
.y19c{bottom:11.880000px;}
.y197{bottom:12.060000px;}
.y37a{bottom:12.420000px;}
.y281{bottom:12.600000px;}
.y1ae{bottom:12.960000px;}
.y15e{bottom:13.140000px;}
.y171{bottom:13.320000px;}
.y227{bottom:13.860000px;}
.yfe{bottom:14.220000px;}
.y100{bottom:14.400000px;}
.y24e{bottom:14.760000px;}
.y221{bottom:15.660000px;}
.y2d7{bottom:16.740000px;}
.y347{bottom:16.920000px;}
.y364{bottom:17.280000px;}
.y34d{bottom:17.460000px;}
.y345{bottom:17.640000px;}
.y34b{bottom:18.945000px;}
.y155{bottom:20.880000px;}
.y21d{bottom:20.910000px;}
.y229{bottom:21.060000px;}
.y343{bottom:21.240000px;}
.y18{bottom:21.780000px;}
.y150{bottom:21.960000px;}
.y223{bottom:22.320000px;}
.y1fa{bottom:22.530000px;}
.y11f{bottom:22.575000px;}
.y2d4{bottom:22.680000px;}
.y37f{bottom:22.860000px;}
.y388{bottom:23.040000px;}
.y386{bottom:23.580000px;}
.y1ab{bottom:23.940000px;}
.y15{bottom:23.976000px;}
.y2ad{bottom:24.480000px;}
.y383{bottom:24.840000px;}
.y385{bottom:25.380000px;}
.y36d{bottom:25.740000px;}
.y19e{bottom:26.640000px;}
.y377{bottom:26.820000px;}
.y368{bottom:27.000000px;}
.y120{bottom:27.180000px;}
.y374{bottom:27.900000px;}
.y354{bottom:28.080000px;}
.y36b{bottom:28.260000px;}
.y350{bottom:28.440000px;}
.y352{bottom:28.620000px;}
.y381{bottom:28.980000px;}
.y372{bottom:29.520000px;}
.y36f{bottom:30.285000px;}
.y162{bottom:30.420000px;}
.y1a8{bottom:32.040000px;}
.y35d{bottom:32.625000px;}
.y361{bottom:32.934000px;}
.y366{bottom:33.660000px;}
.y1a0{bottom:34.020000px;}
.y1a2{bottom:34.740000px;}
.y1b1{bottom:35.640000px;}
.y19b{bottom:37.800000px;}
.y1a6{bottom:37.980000px;}
.y379{bottom:38.340000px;}
.y1ad{bottom:38.880000px;}
.y226{bottom:39.780000px;}
.y15d{bottom:41.580000px;}
.y170{bottom:41.760000px;}
.y363{bottom:43.050000px;}
.y2ac{bottom:43.950000px;}
.y1f1{bottom:44.970000px;}
.y11b{bottom:45.000000px;}
.y2ce{bottom:45.354000px;}
.yfd{bottom:45.360000px;}
.y157{bottom:47.880000px;}
.y154{bottom:49.140000px;}
.y158{bottom:49.320000px;}
.y1aa{bottom:49.860000px;}
.y160{bottom:50.040000px;}
.y17{bottom:52.740000px;}
.y1b{bottom:57.996000px;}
.y165{bottom:58.500000px;}
.y161{bottom:58.860000px;}
.y2d3{bottom:59.760000px;}
.y1f2{bottom:62.535000px;}
.y11c{bottom:62.565000px;}
.y19a{bottom:63.720000px;}
.y1a5{bottom:63.900000px;}
.y225{bottom:65.520000px;}
.y220{bottom:67.500000px;}
.y167{bottom:70.020000px;}
.y15c{bottom:70.065000px;}
.y16f{bottom:70.200000px;}
.y16{bottom:71.820000px;}
.y2cd{bottom:76.314000px;}
.y152{bottom:76.320000px;}
.y153{bottom:77.760000px;}
.y1a{bottom:78.696000px;}
.y16a{bottom:86.940000px;}
.y11d{bottom:88.200000px;}
.y164{bottom:89.460000px;}
.y199{bottom:89.640000px;}
.y15a{bottom:89.685000px;}
.y16e{bottom:89.820000px;}
.y1f3{bottom:90.210000px;}
.y2d2{bottom:90.900000px;}
.y21f{bottom:93.240000px;}
.y166{bottom:98.460000px;}
.y15b{bottom:98.505000px;}
.y16c{bottom:98.640000px;}
.y2cc{bottom:107.454000px;}
.ybf{bottom:110.196000px;}
.y2f4{bottom:111.276000px;}
.y182{bottom:113.256000px;}
.y11e{bottom:113.835000px;}
.y178{bottom:114.516000px;}
.ybe{bottom:115.416000px;}
.y1a4{bottom:115.560000px;}
.y1f4{bottom:117.900000px;}
.y169{bottom:118.110000px;}
.y2b9{bottom:118.116000px;}
.y1fb{bottom:118.545000px;}
.y67{bottom:118.656000px;}
.y360{bottom:119.916000px;}
.y4e{bottom:121.716000px;}
.y2d1{bottom:121.860000px;}
.y33f{bottom:123.336000px;}
.y207{bottom:123.696000px;}
.y308{bottom:126.216000px;}
.y16b{bottom:127.110000px;}
.y119{bottom:127.296000px;}
.ydf{bottom:127.836000px;}
.ybd{bottom:128.556000px;}
.y22e{bottom:131.076000px;}
.y35{bottom:136.296000px;}
.y1eb{bottom:140.256000px;}
.y14d{bottom:141.876000px;}
.y321{bottom:142.956000px;}
.yde{bottom:145.116000px;}
.y177{bottom:145.476000px;}
.y1f5{bottom:145.590000px;}
.y2cb{bottom:145.974000px;}
.ybc{bottom:146.196000px;}
.y194{bottom:146.916000px;}
.y24b{bottom:147.456000px;}
.y2aa{bottom:150.510000px;}
.y193{bottom:152.130000px;}
.y2d0{bottom:153.030000px;}
.y2f3{bottom:154.290000px;}
.y206{bottom:154.830000px;}
.y307{bottom:157.350000px;}
.y22d{bottom:159.330000px;}
.y273{bottom:159.510000px;}
.y66{bottom:161.670000px;}
.y181{bottom:162.210000px;}
.y1b6{bottom:162.390000px;}
.ydd{bottom:163.110000px;}
.ybb{bottom:163.470000px;}
.y4d{bottom:164.730000px;}
.y192{bottom:165.270000px;}
.y118{bottom:165.810000px;}
.y20e{bottom:166.170000px;}
.ya0{bottom:166.350000px;}
.y27f{bottom:167.070000px;}
.y35f{bottom:167.610000px;}
.y121{bottom:167.655000px;}
.y1ef{bottom:168.150000px;}
.ydc{bottom:168.330000px;}
.y82{bottom:169.230000px;}
.y1cf{bottom:170.310000px;}
.y34{bottom:172.110000px;}
.y1f6{bottom:173.265000px;}
.y320{bottom:173.910000px;}
.y108{bottom:175.530000px;}
.y176{bottom:176.610000px;}
.y2ca{bottom:177.159000px;}
.y14c{bottom:177.870000px;}
.y137{bottom:178.230000px;}
.yba{bottom:180.750000px;}
.ydb{bottom:181.470000px;}
.y1ea{bottom:183.270000px;}
.y205{bottom:185.790000px;}
.y24a{bottom:186.150000px;}
.y14{bottom:187.050000px;}
.y22c{bottom:187.230000px;}
.y306{bottom:188.310000px;}
.y272{bottom:190.470000px;}
.y180{bottom:193.350000px;}
.y1b5{bottom:193.530000px;}
.y117{bottom:196.950000px;}
.y20d{bottom:197.130000px;}
.y9f{bottom:197.310000px;}
.yb9{bottom:197.850000px;}
.y81{bottom:200.370000px;}
.y1f7{bottom:200.985000px;}
.y1ce{bottom:201.450000px;}
.y387{bottom:202.890000px;}
.y27e{bottom:203.970000px;}
.y65{bottom:204.690000px;}
.y107{bottom:206.490000px;}
.y175{bottom:207.570000px;}
.y4c{bottom:207.750000px;}
.y33{bottom:207.930000px;}
.y2c9{bottom:208.119000px;}
.y1ee{bottom:210.270000px;}
.y22b{bottom:210.630000px;}
.y33e{bottom:210.810000px;}
.y2a9{bottom:212.610000px;}
.y14b{bottom:213.870000px;}
.y31f{bottom:214.050000px;}
.y191{bottom:214.590000px;}
.yb8{bottom:215.130000px;}
.y136{bottom:216.930000px;}
.y305{bottom:219.450000px;}
.y13{bottom:219.810000px;}
.y35e{bottom:219.990000px;}
.y17f{bottom:224.310000px;}
.y1b4{bottom:224.490000px;}
.y249{bottom:224.670000px;}
.y1e9{bottom:226.290000px;}
.y116{bottom:227.910000px;}
.y20c{bottom:228.270000px;}
.y9e{bottom:228.450000px;}
.y1f8{bottom:228.675000px;}
.y271{bottom:228.990000px;}
.y80{bottom:231.330000px;}
.y1cd{bottom:232.410000px;}
.yb7{bottom:233.130000px;}
.y106{bottom:237.630000px;}
.yb6{bottom:238.350000px;}
.y174{bottom:238.710000px;}
.y2c8{bottom:239.259000px;}
.y2f2{bottom:240.330000px;}
.y27d{bottom:242.490000px;}
.y2a8{bottom:243.570000px;}
.y32{bottom:243.750000px;}
.y31e{bottom:245.010000px;}
.y22a{bottom:246.270000px;}
.y64{bottom:247.710000px;}
.y135{bottom:247.890000px;}
.y1f0{bottom:248.040000px;}
.y14a{bottom:249.870000px;}
.y304{bottom:250.410000px;}
.y4b{bottom:250.770000px;}
.yb5{bottom:251.490000px;}
.y12{bottom:252.390000px;}
.y33d{bottom:254.370000px;}
.y17e{bottom:255.450000px;}
.y1b3{bottom:255.630000px;}
.y1f9{bottom:256.350000px;}
.y20b{bottom:256.530000px;}
.y190{bottom:257.610000px;}
.y115{bottom:259.050000px;}
.y9d{bottom:259.410000px;}
.y270{bottom:260.130000px;}
.y7f{bottom:262.470000px;}
.y248{bottom:263.190000px;}
.y335{bottom:264.450000px;}
.yda{bottom:264.630000px;}
.y105{bottom:268.590000px;}
.y1e8{bottom:269.310000px;}
.y2c7{bottom:270.219000px;}
.y1cc{bottom:272.550000px;}
.y2a7{bottom:274.755000px;}
.y173{bottom:277.275000px;}
.y384{bottom:278.535000px;}
.y134{bottom:278.895000px;}
.y31{bottom:279.615000px;}
.y27c{bottom:281.055000px;}
.yd9{bottom:283.035000px;}
.y228{bottom:283.215000px;}
.y2f1{bottom:283.575000px;}
.y1fc{bottom:284.580000px;}
.y20a{bottom:284.835000px;}
.y11{bottom:285.195000px;}
.y149{bottom:285.735000px;}
.y17d{bottom:286.455000px;}
.y303{bottom:288.975000px;}
.y114{bottom:290.055000px;}
.y9c{bottom:290.595000px;}
.y63{bottom:290.775000px;}
.y26f{bottom:291.135000px;}
.y7e{bottom:293.475000px;}
.y4a{bottom:294.015000px;}
.y33c{bottom:295.635000px;}
.y12c{bottom:297.975000px;}
.y1e7{bottom:300.495000px;}
.y18f{bottom:300.675000px;}
.y2c6{bottom:301.359000px;}
.y247{bottom:301.755000px;}
.y1cb{bottom:303.555000px;}
.y1b2{bottom:303.735000px;}
.y334{bottom:304.635000px;}
.yf6{bottom:305.535000px;}
.y2a6{bottom:305.715000px;}
.y133{bottom:310.035000px;}
.y104{bottom:310.755000px;}
.yd8{bottom:311.475000px;}
.y172{bottom:314.715000px;}
.y30{bottom:315.435000px;}
.y17c{bottom:317.595000px;}
.y10{bottom:317.955000px;}
.y382{bottom:318.675000px;}
.y224{bottom:318.855000px;}
.y27b{bottom:319.575000px;}
.y35c{bottom:319.755000px;}
.y302{bottom:320.115000px;}
.y113{bottom:321.195000px;}
.y148{bottom:321.735000px;}
.y26e{bottom:322.275000px;}
.y7d{bottom:324.615000px;}
.y31d{bottom:325.155000px;}
.y2f0{bottom:326.595000px;}
.yb4{bottom:328.215000px;}
.y12b{bottom:329.115000px;}
.y1e6{bottom:331.455000px;}
.y2c5{bottom:332.319000px;}
.y9b{bottom:333.615000px;}
.y62{bottom:333.795000px;}
.y1ca{bottom:334.695000px;}
.y103{bottom:335.595000px;}
.yf5{bottom:336.495000px;}
.y2a5{bottom:336.855000px;}
.y49{bottom:337.035000px;}
.y1b0{bottom:337.575000px;}
.y16d{bottom:338.115000px;}
.y246{bottom:340.275000px;}
.y132{bottom:340.995000px;}
.yd7{bottom:342.615000px;}
.y18e{bottom:343.695000px;}
.y35b{bottom:346.395000px;}
.y17b{bottom:348.555000px;}
.yf{bottom:350.535000px;}
.y301{bottom:351.075000px;}
.y2f{bottom:351.255000px;}
.y112{bottom:352.155000px;}
.y7c{bottom:355.575000px;}
.y31c{bottom:356.295000px;}
.y147{bottom:357.735000px;}
.y27a{bottom:358.095000px;}
.y380{bottom:358.275000px;}
.yb3{bottom:359.175000px;}
.y12a{bottom:360.075000px;}
.y26d{bottom:360.795000px;}
.y1e5{bottom:362.595000px;}
.y2c4{bottom:363.459000px;}
.y1c9{bottom:365.655000px;}
.y102{bottom:367.455000px;}
.yf4{bottom:367.635000px;}
.y2ef{bottom:369.615000px;}
.y9a{bottom:372.135000px;}
.y35a{bottom:373.035000px;}
.yd6{bottom:373.575000px;}
.y2a4{bottom:375.375000px;}
.y333{bottom:375.735000px;}
.y61{bottom:376.995000px;}
.y245{bottom:378.795000px;}
.y17a{bottom:379.695000px;}
.y48{bottom:380.055000px;}
.y300{bottom:382.215000px;}
.y111{bottom:383.115000px;}
.ye{bottom:383.295000px;}
.y7b{bottom:386.715000px;}
.y18d{bottom:386.895000px;}
.y31b{bottom:387.255000px;}
.y1af{bottom:387.975000px;}
.yb2{bottom:390.315000px;}
.y129{bottom:391.215000px;}
.y1e4{bottom:393.555000px;}
.y146{bottom:393.735000px;}
.y2e{bottom:394.095000px;}
.y2c3{bottom:394.419000px;}
.y1c8{bottom:396.795000px;}
.y26c{bottom:398.415000px;}
.yf3{bottom:398.595000px;}
.y222{bottom:399.135000px;}
.y101{bottom:399.315000px;}
.y359{bottom:399.675000px;}
.y37e{bottom:401.835000px;}
.y131{bottom:403.095000px;}
.yd5{bottom:404.715000px;}
.y2a3{bottom:406.335000px;}
.y332{bottom:406.695000px;}
.y99{bottom:410.655000px;}
.y2ee{bottom:412.635000px;}
.y2ff{bottom:413.175000px;}
.y110{bottom:414.255000px;}
.y33b{bottom:415.695000px;}
.yd{bottom:416.055000px;}
.y244{bottom:417.495000px;}
.y7a{bottom:417.675000px;}
.y60{bottom:420.015000px;}
.yb1{bottom:421.275000px;}
.y128{bottom:422.175000px;}
.y47{bottom:423.075000px;}
.y1e3{bottom:424.695000px;}
.y2c2{bottom:425.379000px;}
.y358{bottom:426.315000px;}
.y31a{bottom:427.395000px;}
.yf2{bottom:429.735000px;}
.y18c{bottom:429.915000px;}
.yff{bottom:430.995000px;}
.y26b{bottom:431.715000px;}
.y130{bottom:434.235000px;}
.y279{bottom:435.315000px;}
.yd4{bottom:435.675000px;}
.y21e{bottom:436.035000px;}
.y1c7{bottom:436.755000px;}
.y2d{bottom:437.115000px;}
.y2a2{bottom:437.475000px;}
.y37d{bottom:439.275000px;}
.y2ed{bottom:440.535000px;}
.y98{bottom:441.795000px;}
.y2fe{bottom:444.315000px;}
.y10f{bottom:445.215000px;}
.y331{bottom:446.835000px;}
.y79{bottom:448.815000px;}
.yc{bottom:450.255000px;}
.yb0{bottom:452.415000px;}
.y26a{bottom:452.595000px;}
.y168{bottom:452.775000px;}
.y127{bottom:453.315000px;}
.y1e2{bottom:455.655000px;}
.y243{bottom:456.015000px;}
.y319{bottom:458.355000px;}
.yf1{bottom:460.695000px;}
.yfc{bottom:462.855000px;}
.y5f{bottom:463.035000px;}
.y2c1{bottom:464.109000px;}
.y12f{bottom:465.195000px;}
.y145{bottom:465.555000px;}
.y37c{bottom:465.915000px;}
.y46{bottom:466.095000px;}
.y2ec{bottom:466.455000px;}
.yd3{bottom:466.815000px;}
.y1c6{bottom:467.895000px;}
.y97{bottom:472.755000px;}
.y18b{bottom:472.935000px;}
.y278{bottom:473.835000px;}
.y269{bottom:474.915000px;}
.y2fd{bottom:475.275000px;}
.y2a1{bottom:475.995000px;}
.yb{bottom:477.615000px;}
.y330{bottom:477.795000px;}
.y357{bottom:478.875000px;}
.y2c{bottom:480.135000px;}
.y2eb{bottom:481.935000px;}
.y1ac{bottom:483.195000px;}
.yaf{bottom:483.375000px;}
.y10e{bottom:483.915000px;}
.y1e1{bottom:486.795000px;}
.y78{bottom:487.335000px;}
.yf0{bottom:491.835000px;}
.y242{bottom:494.535000px;}
.y2c0{bottom:495.069000px;}
.y209{bottom:496.335000px;}
.y268{bottom:497.415000px;}
.yd2{bottom:497.775000px;}
.y318{bottom:498.495000px;}
.y1c5{bottom:498.855000px;}
.y144{bottom:501.555000px;}
.y2ea{bottom:502.635000px;}
.y96{bottom:503.895000px;}
.ya{bottom:505.155000px;}
.y5e{bottom:506.055000px;}
.y2fc{bottom:506.415000px;}
.y32f{bottom:508.935000px;}
.y45{bottom:509.115000px;}
.y277{bottom:512.355000px;}
.y2a0{bottom:513.615000px;}
.yae{bottom:514.515000px;}
.y10d{bottom:514.875000px;}
.y18a{bottom:515.955000px;}
.y1e0{bottom:517.755000px;}
.y33a{bottom:517.935000px;}
.y77{bottom:518.295000px;}
.y37b{bottom:518.475000px;}
.y267{bottom:519.735000px;}
.yef{bottom:522.795000px;}
.y2b{bottom:523.155000px;}
.y2bf{bottom:526.209000px;}
.y2e9{bottom:526.935000px;}
.y208{bottom:527.295000px;}
.yd1{bottom:528.915000px;}
.y317{bottom:529.455000px;}
.y1c4{bottom:529.995000px;}
.y356{bottom:531.255000px;}
.y241{bottom:533.055000px;}
.y95{bottom:534.855000px;}
.y29d{bottom:536.295000px;}
.y143{bottom:537.555000px;}
.y21c{bottom:544.035000px;}
.y2fb{bottom:544.935000px;}
.yad{bottom:545.475000px;}
.y9{bottom:546.015000px;}
.y32e{bottom:548.895000px;}
.y5d{bottom:549.075000px;}
.y76{bottom:549.435000px;}
.y276{bottom:550.875000px;}
.yfb{bottom:551.055000px;}
.y2e7{bottom:551.235000px;}
.y44{bottom:552.135000px;}
.y265{bottom:552.855000px;}
.yee{bottom:553.935000px;}
.y2be{bottom:557.169000px;}
.y1df{bottom:557.925000px;}
.y29c{bottom:558.645000px;}
.y189{bottom:559.005000px;}
.yd0{bottom:559.905000px;}
.y1c3{bottom:560.985000px;}
.y378{bottom:561.525000px;}
.y1a9{bottom:561.705000px;}
.y94{bottom:566.025000px;}
.y2a{bottom:566.385000px;}
.y316{bottom:569.445000px;}
.y240{bottom:571.605000px;}
.y204{bottom:573.405000px;}
.y142{bottom:574.485000px;}
.y264{bottom:575.385000px;}
.y2e6{bottom:575.565000px;}
.y2fa{bottom:575.925000px;}
.y10c{bottom:577.005000px;}
.y75{bottom:580.425000px;}
.yed{bottom:584.925000px;}
.y43{bottom:588.165000px;}
.yab{bottom:588.525000px;}
.y1de{bottom:588.885000px;}
.y32d{bottom:589.065000px;}
.y1ed{bottom:589.245000px;}
.y275{bottom:589.425000px;}
.y21b{bottom:590.685000px;}
.ycf{bottom:591.045000px;}
.y1c2{bottom:591.945000px;}
.y5c{bottom:592.125000px;}
.yfa{bottom:592.485000px;}
.yac{bottom:594.465000px;}
.y29b{bottom:595.005000px;}
.y2bd{bottom:595.689000px;}
.y163{bottom:595.905000px;}
.y93{bottom:596.985000px;}
.y263{bottom:597.885000px;}
.y2e5{bottom:599.865000px;}
.y315{bottom:600.585000px;}
.y355{bottom:600.945000px;}
.y188{bottom:602.025000px;}
.y203{bottom:604.545000px;}
.y141{bottom:605.445000px;}
.y2f9{bottom:607.065000px;}
.y29{bottom:609.405000px;}
.y8{bottom:609.765000px;}
.y23f{bottom:610.125000px;}
.y74{bottom:611.565000px;}
.y376{bottom:614.445000px;}
.yec{bottom:616.065000px;}
.y1ec{bottom:617.505000px;}
.y10b{bottom:619.125000px;}
.yaa{bottom:619.665000px;}
.y1dd{bottom:620.025000px;}
.y262{bottom:620.205000px;}
.yce{bottom:622.005000px;}
.yf9{bottom:623.445000px;}
.y2e4{bottom:624.165000px;}
.y1a7{bottom:626.145000px;}
.y29a{bottom:626.505000px;}
.y2bc{bottom:626.829000px;}
.y92{bottom:627.945000px;}
.y42{bottom:631.545000px;}
.y1c1{bottom:632.085000px;}
.y353{bottom:632.985000px;}
.y5b{bottom:635.145000px;}
.y202{bottom:635.505000px;}
.y140{bottom:636.585000px;}
.y2f8{bottom:638.025000px;}
.y314{bottom:640.545000px;}
.y23e{bottom:641.265000px;}
.y73{bottom:642.525000px;}
.y261{bottom:642.705000px;}
.y187{bottom:645.045000px;}
.y2e3{bottom:648.465000px;}
.y299{bottom:649.005000px;}
.ya9{bottom:650.625000px;}
.y1dc{bottom:650.985000px;}
.y32c{bottom:651.165000px;}
.y28{bottom:652.425000px;}
.yeb{bottom:654.585000px;}
.y375{bottom:655.845000px;}
.y10a{bottom:656.565000px;}
.y11a{bottom:656.820000px;}
.y2bb{bottom:657.789000px;}
.y21a{bottom:658.905000px;}
.y91{bottom:659.085000px;}
.y339{bottom:660.165000px;}
.y1c0{bottom:663.045000px;}
.y7{bottom:663.945000px;}
.y260{bottom:665.025000px;}
.ycd{bottom:665.205000px;}
.y201{bottom:666.645000px;}
.y13f{bottom:667.545000px;}
.y2f7{bottom:669.165000px;}
.y313{bottom:671.685000px;}
.y23d{bottom:672.225000px;}
.y1a3{bottom:672.765000px;}
.y2e2{bottom:673.485000px;}
.y72{bottom:673.665000px;}
.y351{bottom:675.645000px;}
.y41{bottom:676.185000px;}
.y5a{bottom:678.345000px;}
.y297{bottom:678.885000px;}
.ya8{bottom:681.765000px;}
.y1db{bottom:682.125000px;}
.y27{bottom:683.385000px;}
.yea{bottom:685.545000px;}
.y186{bottom:688.245000px;}
.y2ba{bottom:688.749000px;}
.y90{bottom:690.045000px;}
.y338{bottom:691.125000px;}
.y1bf{bottom:694.185000px;}
.ycc{bottom:696.165000px;}
.y6{bottom:696.705000px;}
.y179{bottom:697.605000px;}
.y2e1{bottom:698.505000px;}
.y13e{bottom:698.685000px;}
.y373{bottom:699.045000px;}
.y2f6{bottom:700.125000px;}
.y296{bottom:701.385000px;}
.y23c{bottom:703.365000px;}
.y25f{bottom:703.725000px;}
.y71{bottom:704.625000px;}
.y15f{bottom:710.385000px;}
.y312{bottom:711.645000px;}
.ya7{bottom:712.725000px;}
.ye9{bottom:716.685000px;}
.y34f{bottom:718.845000px;}
.y40{bottom:719.205000px;}
.y26{bottom:719.385000px;}
.y219{bottom:721.005000px;}
.y12e{bottom:721.185000px;}
.y59{bottom:721.365000px;}
.y1da{bottom:722.085000px;}
.y32b{bottom:722.265000px;}
.y2e0{bottom:722.805000px;}
.y1be{bottom:725.145000px;}
.y25e{bottom:726.045000px;}
.ycb{bottom:727.125000px;}
.y294{bottom:728.385000px;}
.y8f{bottom:728.745000px;}
.y5{bottom:729.465000px;}
.y13d{bottom:729.645000px;}
.y185{bottom:731.265000px;}
.y23b{bottom:734.325000px;}
.y70{bottom:735.765000px;}
.y371{bottom:741.525000px;}
.y311{bottom:742.785000px;}
.ya6{bottom:743.865000px;}
.y2df{bottom:747.105000px;}
.ye8{bottom:747.645000px;}
.y25d{bottom:748.545000px;}
.y3f{bottom:750.345000px;}
.y218{bottom:752.145000px;}
.y1d9{bottom:753.225000px;}
.y292{bottom:753.585000px;}
.y25{bottom:755.205000px;}
.y1bd{bottom:756.285000px;}
.yca{bottom:758.265000px;}
.y8e{bottom:759.705000px;}
.y13c{bottom:760.785000px;}
.y34e{bottom:762.045000px;}
.y2f5{bottom:762.225000px;}
.y58{bottom:764.385000px;}
.y23a{bottom:765.465000px;}
.y6f{bottom:766.725000px;}
.y4{bottom:768.885000px;}
.y2de{bottom:771.405000px;}
.y184{bottom:774.285000px;}
.ya4{bottom:776.805000px;}
.y25c{bottom:777.345000px;}
.ye7{bottom:778.785000px;}
.y291{bottom:778.965000px;}
.ya5{bottom:782.745000px;}
.y217{bottom:783.105000px;}
.y274{bottom:783.285000px;}
.y1d8{bottom:784.185000px;}
.y32a{bottom:784.365000px;}
.yf8{bottom:784.725000px;}
.y159{bottom:785.445000px;}
.y370{bottom:785.625000px;}
.y1bc{bottom:787.245000px;}
.yc9{bottom:789.225000px;}
.y8d{bottom:790.845000px;}
.y24{bottom:791.025000px;}
.y13b{bottom:791.745000px;}
.y3e{bottom:793.365000px;}
.y34c{bottom:794.265000px;}
.y2dd{bottom:795.705000px;}
.y239{bottom:796.425000px;}
.y200{bottom:798.225000px;}
.y25b{bottom:799.665000px;}
.y290{bottom:800.745000px;}
.y1a1{bottom:802.905000px;}
.y6e{bottom:805.245000px;}
.y57{bottom:807.405000px;}
.ya3{bottom:809.745000px;}
.y310{bottom:813.885000px;}
.y216{bottom:814.245000px;}
.y23{bottom:814.605000px;}
.y1d7{bottom:815.325000px;}
.y1bb{bottom:818.385000px;}
.y2dc{bottom:820.005000px;}
.yc8{bottom:820.365000px;}
.y8c{bottom:821.805000px;}
.y25a{bottom:822.165000px;}
.y13a{bottom:822.885000px;}
.y329{bottom:824.325000px;}
.y28f{bottom:826.125000px;}
.y34a{bottom:826.305000px;}
.y238{bottom:827.565000px;}
.y1ff{bottom:829.365000px;}
.y3d{bottom:836.385000px;}
.y36e{bottom:838.005000px;}
.y126{bottom:840.930000px;}
.y2b8{bottom:842.910000px;}
.y2db{bottom:844.350000px;}
.y259{bottom:844.530000px;}
.y30f{bottom:844.890000px;}
.y215{bottom:845.250000px;}
.y1d6{bottom:846.330000px;}
.y28e{bottom:847.770000px;}
.ye6{bottom:848.490000px;}
.y1ba{bottom:849.390000px;}
.y56{bottom:850.470000px;}
.yc7{bottom:851.370000px;}
.y19f{bottom:852.270000px;}
.y8b{bottom:852.990000px;}
.y139{bottom:853.890000px;}
.y183{bottom:854.430000px;}
.y328{bottom:855.510000px;}
.y22{bottom:857.670000px;}
.y237{bottom:858.570000px;}
.y349{bottom:859.830000px;}
.y1fe{bottom:860.370000px;}
.y337{bottom:864.510000px;}
.y6d{bottom:867.390000px;}
.y2da{bottom:868.650000px;}
.y125{bottom:871.890000px;}
.y258{bottom:873.330000px;}
.y28d{bottom:873.870000px;}
.y214{bottom:876.390000px;}
.y1d5{bottom:877.470000px;}
.y3c{bottom:879.450000px;}
.y1b9{bottom:880.530000px;}
.y109{bottom:881.070000px;}
.y2b7{bottom:881.250000px;}
.yc6{bottom:882.510000px;}
.y36c{bottom:882.870000px;}
.y8a{bottom:883.950000px;}
.y30e{bottom:885.030000px;}
.y21{bottom:888.810000px;}
.y236{bottom:889.710000px;}
.y1fd{bottom:891.510000px;}
.y138{bottom:892.590000px;}
.y2d8{bottom:892.950000px;}
.y55{bottom:893.490000px;}
.y327{bottom:895.470000px;}
.y28c{bottom:895.650000px;}
.y257{bottom:895.830000px;}
.y6c{bottom:898.530000px;}
.y156{bottom:899.970000px;}
.y19d{bottom:900.870000px;}
.y124{bottom:903.030000px;}
.y3{bottom:903.930000px;}
.ye5{bottom:910.590000px;}
.y348{bottom:912.390000px;}
.yc5{bottom:913.470000px;}
.y213{bottom:914.910000px;}
.y89{bottom:915.090000px;}
.y30d{bottom:915.990000px;}
.y28a{bottom:917.250000px;}
.y256{bottom:918.330000px;}
.y2b6{bottom:918.870000px;}
.y1d4{bottom:920.490000px;}
.y235{bottom:920.670000px;}
.y3b{bottom:922.470000px;}
.y36a{bottom:923.190000px;}
.y1b8{bottom:923.550000px;}
.y326{bottom:926.610000px;}
.y6b{bottom:929.490000px;}
.y20{bottom:931.830000px;}
.y123{bottom:933.990000px;}
.y54{bottom:936.510000px;}
.y289{bottom:939.030000px;}
.y255{bottom:940.650000px;}
.ye4{bottom:941.550000px;}
.y198{bottom:942.270000px;}
.y2d6{bottom:942.450000px;}
.yc4{bottom:944.610000px;}
.y212{bottom:945.870000px;}
.y88{bottom:946.050000px;}
.y1d3{bottom:951.450000px;}
.y234{bottom:951.810000px;}
.ya2{bottom:953.610000px;}
.y30c{bottom:956.310000px;}
.y325{bottom:957.570000px;}
.y6a{bottom:960.630000px;}
.y346{bottom:964.950000px;}
.y122{bottom:965.130000px;}
.y3a{bottom:965.490000px;}
.y369{bottom:966.030000px;}
.y336{bottom:966.570000px;}
.y53{bottom:967.650000px;}
.y2b4{bottom:972.150000px;}
.ye3{bottom:972.510000px;}
.y151{bottom:972.690000px;}
.y254{bottom:973.770000px;}
.y1f{bottom:974.850000px;}
.yc3{bottom:975.570000px;}
.y87{bottom:977.010000px;}
.y1d2{bottom:982.590000px;}
.ya1{bottom:984.570000px;}
.y2cf{bottom:986.910000px;}
.y30b{bottom:987.270000px;}
.y233{bottom:990.330000px;}
.y69{bottom:991.590000px;}
.y288{bottom:993.930000px;}
.y2b2{bottom:995.370000px;}
.y253{bottom:996.270000px;}
.y344{bottom:996.450000px;}
.y324{bottom:997.710000px;}
.ye2{bottom:1003.650000px;}
.yc2{bottom:1006.710000px;}
.y211{bottom:1007.970000px;}
.yf7{bottom:1008.150000px;}
.y39{bottom:1008.690000px;}
.y367{bottom:1009.050000px;}
.y52{bottom:1010.670000px;}
.y1d1{bottom:1013.550000px;}
.y286{bottom:1015.530000px;}
.y86{bottom:1015.710000px;}
.y1e{bottom:1017.870000px;}
.y232{bottom:1021.290000px;}
.y2b1{bottom:1022.370000px;}
.y68{bottom:1022.730000px;}
.y30a{bottom:1025.610000px;}
.y323{bottom:1028.670000px;}
.y342{bottom:1028.850000px;}
.y251{bottom:1030.470000px;}
.ye1{bottom:1034.610000px;}
.y284{bottom:1037.130000px;}
.yc1{bottom:1037.670000px;}
.y12d{bottom:1039.110000px;}
.y38{bottom:1044.690000px;}
.y1d0{bottom:1045.410000px;}
.y196{bottom:1046.490000px;}
.y85{bottom:1046.670000px;}
.y2af{bottom:1047.750000px;}
.y365{bottom:1050.630000px;}
.y231{bottom:1052.430000px;}
.y24f{bottom:1052.790000px;}
.y51{bottom:1053.690000px;}
.y309{bottom:1056.750000px;}
.y1d{bottom:1061.070000px;}
.y282{bottom:1061.430000px;}
.y341{bottom:1064.850000px;}
.ye0{bottom:1065.750000px;}
.y37{bottom:1068.270000px;}
.y322{bottom:1068.810000px;}
.y210{bottom:1070.070000px;}
.y14f{bottom:1073.850000px;}
.y84{bottom:1077.810000px;}
.y24d{bottom:1080.330000px;}
.y230{bottom:1083.390000px;}
.yc0{bottom:1083.750000px;}
.y280{bottom:1084.650000px;}
.y340{bottom:1091.490000px;}
.y2ab{bottom:1096.170000px;}
.y50{bottom:1096.710000px;}
.y195{bottom:1098.330000px;}
.y362{bottom:1098.870000px;}
.y20f{bottom:1101.210000px;}
.y2{bottom:1101.390000px;}
.y1c{bottom:1104.090000px;}
.y36{bottom:1104.270000px;}
.y83{bottom:1108.770000px;}
.y22f{bottom:1111.830000px;}
.y1b7{bottom:1114.710000px;}
.y389{bottom:1138.320000px;}
.y4f{bottom:1139.940000px;}
.y1{bottom:1140.120000px;}
.y24c{bottom:1141.380000px;}
.y14e{bottom:1141.560000px;}
.h3f{height:21.600000px;}
.h43{height:21.636000px;}
.h41{height:21.780000px;}
.h34{height:22.320000px;}
.h39{height:22.356000px;}
.h36{height:22.500000px;}
.h3b{height:22.536000px;}
.h3e{height:24.300000px;}
.h4e{height:24.336000px;}
.h45{height:25.200000px;}
.h44{height:25.380000px;}
.h1d{height:25.740000px;}
.h59{height:25.920000px;}
.h58{height:25.956000px;}
.h42{height:26.100000px;}
.h33{height:26.820000px;}
.h46{height:27.000000px;}
.h38{height:28.800000px;}
.h47{height:29.880000px;}
.h50{height:30.780000px;}
.h11{height:30.960000px;}
.h10{height:31.140000px;}
.hc{height:31.286250px;}
.h54{height:31.320000px;}
.h48{height:31.500000px;}
.h53{height:32.796000px;}
.h37{height:33.120000px;}
.h40{height:33.300000px;}
.h35{height:34.200000px;}
.h2c{height:34.776000px;}
.h30{height:34.920000px;}
.h4f{height:35.100000px;}
.h3d{height:35.280000px;}
.h2e{height:36.180000px;}
.h31{height:36.216000px;}
.h49{height:36.360000px;}
.h66{height:36.720000px;}
.h6a{height:36.900000px;}
.h69{height:37.476000px;}
.h3a{height:38.700000px;}
.h68{height:39.240000px;}
.h32{height:39.600000px;}
.h1f{height:40.500000px;}
.h63{height:40.680000px;}
.h5e{height:40.860000px;}
.h28{height:41.040000px;}
.h62{height:41.760000px;}
.h57{height:41.940000px;}
.h5f{height:42.120000px;}
.h55{height:42.300000px;}
.h65{height:42.336000px;}
.h56{height:42.480000px;}
.h67{height:42.840000px;}
.h61{height:43.380000px;}
.h13{height:43.453125px;}
.h4d{height:43.740000px;}
.h60{height:44.136000px;}
.h23{height:45.900000px;}
.h15{height:46.080000px;}
.h5a{height:46.476000px;}
.h5b{height:46.800000px;}
.h5d{height:47.520000px;}
.h20{height:47.880000px;}
.hd{height:48.088125px;}
.h21{height:48.636000px;}
.h29{height:49.500000px;}
.ha{height:50.312812px;}
.h51{height:51.660000px;}
.h52{height:51.840000px;}
.h64{height:52.200000px;}
.h26{height:52.740000px;}
.h27{height:53.603086px;}
.h9{height:56.179688px;}
.h3c{height:56.320312px;}
.h5c{height:56.916000px;}
.h4a{height:60.516000px;}
.hf{height:62.100000px;}
.h8{height:62.327813px;}
.h24{height:63.720000px;}
.he{height:64.582031px;}
.h14{height:67.786875px;}
.h2b{height:67.902750px;}
.h7{height:69.086250px;}
.h17{height:72.000000px;}
.h19{height:74.160000px;}
.h2{height:75.093750px;}
.h25{height:77.616000px;}
.h2f{height:79.380000px;}
.hb{height:84.855937px;}
.h6{height:87.120000px;}
.h3{height:87.859687px;}
.h5{height:99.874688px;}
.h16{height:100.440000px;}
.h1e{height:103.500000px;}
.h2d{height:107.100000px;}
.h1a{height:113.760000px;}
.h18{height:113.796000px;}
.h1c{height:113.940000px;}
.h4{height:125.406562px;}
.h22{height:129.420000px;}
.h1b{height:142.416000px;}
.h4c{height:169.770000px;}
.h12{height:198.900000px;}
.h2a{height:315.900000px;}
.h4b{height:713.055000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:64.620000px;}
.w1c{width:67.536000px;}
.w16{width:91.476000px;}
.w13{width:105.156000px;}
.w12{width:119.880000px;}
.w17{width:121.536000px;}
.wf{width:127.656000px;}
.w21{width:129.600000px;}
.we{width:158.040000px;}
.w15{width:167.940000px;}
.w10{width:172.290000px;}
.wd{width:177.330000px;}
.w14{width:191.910000px;}
.w19{width:192.450000px;}
.w24{width:200.370000px;}
.w5{width:211.530000px;}
.w6{width:211.710000px;}
.w11{width:220.170000px;}
.w20{width:238.170000px;}
.w23{width:249.510000px;}
.w1d{width:250.410000px;}
.w8{width:254.010000px;}
.w25{width:259.950000px;}
.w22{width:266.295000px;}
.w3{width:312.150000px;}
.wb{width:315.930000px;}
.wc{width:315.975000px;}
.w1b{width:319.170000px;}
.w9{width:381.675000px;}
.w7{width:572.580000px;}
.w1f{width:634.785000px;}
.w1e{width:637.125000px;}
.wa{width:637.920000px;}
.w1a{width:638.025000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:5.400000px;}
.x26{left:7.740000px;}
.x23{left:8.820000px;}
.x59{left:17.640000px;}
.x54{left:19.800000px;}
.x24{left:30.060000px;}
.x2a{left:33.120000px;}
.x49{left:40.170000px;}
.x33{left:41.610000px;}
.x46{left:44.310000px;}
.x4d{left:46.434000px;}
.x4f{left:48.450000px;}
.x3c{left:51.150000px;}
.x57{left:53.454000px;}
.x36{left:55.074000px;}
.x28{left:59.970000px;}
.x41{left:62.094000px;}
.x3d{left:71.640000px;}
.x4e{left:73.074000px;}
.x3f{left:75.780000px;}
.x47{left:81.540000px;}
.x21{left:83.334000px;}
.x42{left:85.314000px;}
.x4a{left:88.374000px;}
.x2b{left:91.080000px;}
.x4c{left:95.034000px;}
.x40{left:96.114000px;}
.x20{left:105.834000px;}
.x56{left:110.700000px;}
.x34{left:113.835000px;}
.x45{left:117.354000px;}
.x5b{left:118.650000px;}
.x3b{left:122.034000px;}
.x4b{left:124.014000px;}
.x53{left:125.634000px;}
.x12{left:127.655987px;}
.x32{left:129.315000px;}
.x1b{left:132.515987px;}
.x7{left:136.475987px;}
.x8{left:146.015987px;}
.x3e{left:167.934000px;}
.x5{left:170.489987px;}
.x3{left:182.729987px;}
.x48{left:210.819000px;}
.x29{left:232.815000px;}
.x9{left:254.369987px;}
.x6{left:264.809987px;}
.xa{left:273.449987px;}
.x2{left:296.129987px;}
.x37{left:305.715000px;}
.x52{left:316.299000px;}
.xb{left:321.014987px;}
.xf{left:337.934987px;}
.x22{left:340.815000px;}
.x1a{left:343.694987px;}
.xe{left:348.014987px;}
.x15{left:350.894987px;}
.x1c{left:357.374987px;}
.x14{left:362.054987px;}
.x58{left:366.195000px;}
.x5c{left:378.615000px;}
.x2c{left:383.115000px;}
.x50{left:387.075000px;}
.xc{left:390.494987px;}
.xd{left:400.574987px;}
.x13{left:416.054987px;}
.x1d{left:436.574987px;}
.x11{left:441.434987px;}
.x35{left:445.035000px;}
.x4{left:446.474987px;}
.x39{left:463.755000px;}
.x43{left:468.075000px;}
.x1{left:473.114987px;}
.x18{left:483.914973px;}
.x19{left:490.574987px;}
.x5a{left:495.795000px;}
.x2d{left:496.874973px;}
.x2e{left:503.564987px;}
.x51{left:508.605000px;}
.x55{left:514.725000px;}
.x25{left:553.065000px;}
.x44{left:573.225000px;}
.x2f{left:575.024973px;}
.x10{left:580.605000px;}
.x30{left:581.684987px;}
.x3a{left:591.405000px;}
.x1e{left:612.284973px;}
.x1f{left:618.944987px;}
.x27{left:700.169987px;}
.x16{left:753.269973px;}
.x17{left:759.929987px;}
.x31{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.368533pt;}
.ls1{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.265067pt;}
.ls13{letter-spacing:-0.230933pt;}
.ls2{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.089067pt;}
.ls12{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.317333pt;}
.ls10{letter-spacing:0.640000pt;}
.ls9{letter-spacing:2.074880pt;}
.ws3{word-spacing:-18.048000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws0{word-spacing:-16.271573pt;}
.wsb{word-spacing:-14.814720pt;}
.ws8{word-spacing:-14.767360pt;}
.ws7{word-spacing:-14.678293pt;}
.ws6{word-spacing:-14.672427pt;}
.wsa{word-spacing:-14.536427pt;}
.ws4{word-spacing:-12.322453pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:303.674667pt;}
.ws9{word-spacing:377.914667pt;}
._6{margin-left:-4.352000pt;}
._5{margin-left:-3.392000pt;}
._1{margin-left:-1.872000pt;}
._4{margin-left:-0.936320pt;}
._3{width:0.936320pt;}
._2{width:1.892480pt;}
._8{width:3.584000pt;}
._f{width:4.839680pt;}
._e{width:5.888000pt;}
._d{width:6.784000pt;}
._10{width:8.376320pt;}
._c{width:9.664000pt;}
._b{width:10.624000pt;}
._11{width:12.288000pt;}
._15{width:13.543680pt;}
._13{width:14.720000pt;}
._12{width:15.744000pt;}
._18{width:16.815360pt;}
._23{width:18.849280pt;}
._21{width:19.991680pt;}
._1b{width:21.416320pt;}
._1a{width:22.464000pt;}
._24{width:23.402027pt;}
._a{width:24.298667pt;}
._22{width:26.304000pt;}
._7{width:27.264000pt;}
._14{width:28.957013pt;}
._1c{width:30.915840pt;}
._1e{width:31.925120pt;}
._17{width:35.239680pt;}
._16{width:36.224000pt;}
._26{width:37.449600pt;}
._9{width:39.424000pt;}
._19{width:42.688000pt;}
._1f{width:67.514240pt;}
._25{width:70.224640pt;}
._1d{width:71.871360pt;}
._27{width:145.283200pt;}
._20{width:157.447680pt;}
._0{width:1240.074667pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:72.320000pt;}
.fs1{font-size:74.880000pt;}
.fsa{font-size:75.008000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y19{bottom:-6.880000pt;}
.y0{bottom:0.000000pt;}
.y2b5{bottom:2.560000pt;}
.y252{bottom:2.880000pt;}
.y250{bottom:3.040000pt;}
.y266{bottom:3.066667pt;}
.y2d5{bottom:3.360000pt;}
.y29e{bottom:3.680000pt;}
.y29f{bottom:4.480000pt;}
.y2ae{bottom:5.120000pt;}
.y283{bottom:5.280000pt;}
.y2d9{bottom:6.240000pt;}
.y2e8{bottom:6.266667pt;}
.y2b0{bottom:6.560000pt;}
.y287{bottom:6.880000pt;}
.y28b{bottom:7.040000pt;}
.y2b3{bottom:7.360000pt;}
.y298{bottom:7.680000pt;}
.y285{bottom:9.280000pt;}
.y295{bottom:10.080000pt;}
.y293{bottom:10.240000pt;}
.y19c{bottom:10.560000pt;}
.y197{bottom:10.720000pt;}
.y37a{bottom:11.040000pt;}
.y281{bottom:11.200000pt;}
.y1ae{bottom:11.520000pt;}
.y15e{bottom:11.680000pt;}
.y171{bottom:11.840000pt;}
.y227{bottom:12.320000pt;}
.yfe{bottom:12.640000pt;}
.y100{bottom:12.800000pt;}
.y24e{bottom:13.120000pt;}
.y221{bottom:13.920000pt;}
.y2d7{bottom:14.880000pt;}
.y347{bottom:15.040000pt;}
.y364{bottom:15.360000pt;}
.y34d{bottom:15.520000pt;}
.y345{bottom:15.680000pt;}
.y34b{bottom:16.840000pt;}
.y155{bottom:18.560000pt;}
.y21d{bottom:18.586667pt;}
.y229{bottom:18.720000pt;}
.y343{bottom:18.880000pt;}
.y18{bottom:19.360000pt;}
.y150{bottom:19.520000pt;}
.y223{bottom:19.840000pt;}
.y1fa{bottom:20.026667pt;}
.y11f{bottom:20.066667pt;}
.y2d4{bottom:20.160000pt;}
.y37f{bottom:20.320000pt;}
.y388{bottom:20.480000pt;}
.y386{bottom:20.960000pt;}
.y1ab{bottom:21.280000pt;}
.y15{bottom:21.312000pt;}
.y2ad{bottom:21.760000pt;}
.y383{bottom:22.080000pt;}
.y385{bottom:22.560000pt;}
.y36d{bottom:22.880000pt;}
.y19e{bottom:23.680000pt;}
.y377{bottom:23.840000pt;}
.y368{bottom:24.000000pt;}
.y120{bottom:24.160000pt;}
.y374{bottom:24.800000pt;}
.y354{bottom:24.960000pt;}
.y36b{bottom:25.120000pt;}
.y350{bottom:25.280000pt;}
.y352{bottom:25.440000pt;}
.y381{bottom:25.760000pt;}
.y372{bottom:26.240000pt;}
.y36f{bottom:26.920000pt;}
.y162{bottom:27.040000pt;}
.y1a8{bottom:28.480000pt;}
.y35d{bottom:29.000000pt;}
.y361{bottom:29.274667pt;}
.y366{bottom:29.920000pt;}
.y1a0{bottom:30.240000pt;}
.y1a2{bottom:30.880000pt;}
.y1b1{bottom:31.680000pt;}
.y19b{bottom:33.600000pt;}
.y1a6{bottom:33.760000pt;}
.y379{bottom:34.080000pt;}
.y1ad{bottom:34.560000pt;}
.y226{bottom:35.360000pt;}
.y15d{bottom:36.960000pt;}
.y170{bottom:37.120000pt;}
.y363{bottom:38.266667pt;}
.y2ac{bottom:39.066667pt;}
.y1f1{bottom:39.973333pt;}
.y11b{bottom:40.000000pt;}
.y2ce{bottom:40.314667pt;}
.yfd{bottom:40.320000pt;}
.y157{bottom:42.560000pt;}
.y154{bottom:43.680000pt;}
.y158{bottom:43.840000pt;}
.y1aa{bottom:44.320000pt;}
.y160{bottom:44.480000pt;}
.y17{bottom:46.880000pt;}
.y1b{bottom:51.552000pt;}
.y165{bottom:52.000000pt;}
.y161{bottom:52.320000pt;}
.y2d3{bottom:53.120000pt;}
.y1f2{bottom:55.586667pt;}
.y11c{bottom:55.613333pt;}
.y19a{bottom:56.640000pt;}
.y1a5{bottom:56.800000pt;}
.y225{bottom:58.240000pt;}
.y220{bottom:60.000000pt;}
.y167{bottom:62.240000pt;}
.y15c{bottom:62.280000pt;}
.y16f{bottom:62.400000pt;}
.y16{bottom:63.840000pt;}
.y2cd{bottom:67.834667pt;}
.y152{bottom:67.840000pt;}
.y153{bottom:69.120000pt;}
.y1a{bottom:69.952000pt;}
.y16a{bottom:77.280000pt;}
.y11d{bottom:78.400000pt;}
.y164{bottom:79.520000pt;}
.y199{bottom:79.680000pt;}
.y15a{bottom:79.720000pt;}
.y16e{bottom:79.840000pt;}
.y1f3{bottom:80.186667pt;}
.y2d2{bottom:80.800000pt;}
.y21f{bottom:82.880000pt;}
.y166{bottom:87.520000pt;}
.y15b{bottom:87.560000pt;}
.y16c{bottom:87.680000pt;}
.y2cc{bottom:95.514667pt;}
.ybf{bottom:97.952000pt;}
.y2f4{bottom:98.912000pt;}
.y182{bottom:100.672000pt;}
.y11e{bottom:101.186667pt;}
.y178{bottom:101.792000pt;}
.ybe{bottom:102.592000pt;}
.y1a4{bottom:102.720000pt;}
.y1f4{bottom:104.800000pt;}
.y169{bottom:104.986667pt;}
.y2b9{bottom:104.992000pt;}
.y1fb{bottom:105.373333pt;}
.y67{bottom:105.472000pt;}
.y360{bottom:106.592000pt;}
.y4e{bottom:108.192000pt;}
.y2d1{bottom:108.320000pt;}
.y33f{bottom:109.632000pt;}
.y207{bottom:109.952000pt;}
.y308{bottom:112.192000pt;}
.y16b{bottom:112.986667pt;}
.y119{bottom:113.152000pt;}
.ydf{bottom:113.632000pt;}
.ybd{bottom:114.272000pt;}
.y22e{bottom:116.512000pt;}
.y35{bottom:121.152000pt;}
.y1eb{bottom:124.672000pt;}
.y14d{bottom:126.112000pt;}
.y321{bottom:127.072000pt;}
.yde{bottom:128.992000pt;}
.y177{bottom:129.312000pt;}
.y1f5{bottom:129.413333pt;}
.y2cb{bottom:129.754667pt;}
.ybc{bottom:129.952000pt;}
.y194{bottom:130.592000pt;}
.y24b{bottom:131.072000pt;}
.y2aa{bottom:133.786667pt;}
.y193{bottom:135.226667pt;}
.y2d0{bottom:136.026667pt;}
.y2f3{bottom:137.146667pt;}
.y206{bottom:137.626667pt;}
.y307{bottom:139.866667pt;}
.y22d{bottom:141.626667pt;}
.y273{bottom:141.786667pt;}
.y66{bottom:143.706667pt;}
.y181{bottom:144.186667pt;}
.y1b6{bottom:144.346667pt;}
.ydd{bottom:144.986667pt;}
.ybb{bottom:145.306667pt;}
.y4d{bottom:146.426667pt;}
.y192{bottom:146.906667pt;}
.y118{bottom:147.386667pt;}
.y20e{bottom:147.706667pt;}
.ya0{bottom:147.866667pt;}
.y27f{bottom:148.506667pt;}
.y35f{bottom:148.986667pt;}
.y121{bottom:149.026667pt;}
.y1ef{bottom:149.466667pt;}
.ydc{bottom:149.626667pt;}
.y82{bottom:150.426667pt;}
.y1cf{bottom:151.386667pt;}
.y34{bottom:152.986667pt;}
.y1f6{bottom:154.013333pt;}
.y320{bottom:154.586667pt;}
.y108{bottom:156.026667pt;}
.y176{bottom:156.986667pt;}
.y2ca{bottom:157.474667pt;}
.y14c{bottom:158.106667pt;}
.y137{bottom:158.426667pt;}
.yba{bottom:160.666667pt;}
.ydb{bottom:161.306667pt;}
.y1ea{bottom:162.906667pt;}
.y205{bottom:165.146667pt;}
.y24a{bottom:165.466667pt;}
.y14{bottom:166.266667pt;}
.y22c{bottom:166.426667pt;}
.y306{bottom:167.386667pt;}
.y272{bottom:169.306667pt;}
.y180{bottom:171.866667pt;}
.y1b5{bottom:172.026667pt;}
.y117{bottom:175.066667pt;}
.y20d{bottom:175.226667pt;}
.y9f{bottom:175.386667pt;}
.yb9{bottom:175.866667pt;}
.y81{bottom:178.106667pt;}
.y1f7{bottom:178.653333pt;}
.y1ce{bottom:179.066667pt;}
.y387{bottom:180.346667pt;}
.y27e{bottom:181.306667pt;}
.y65{bottom:181.946667pt;}
.y107{bottom:183.546667pt;}
.y175{bottom:184.506667pt;}
.y4c{bottom:184.666667pt;}
.y33{bottom:184.826667pt;}
.y2c9{bottom:184.994667pt;}
.y1ee{bottom:186.906667pt;}
.y22b{bottom:187.226667pt;}
.y33e{bottom:187.386667pt;}
.y2a9{bottom:188.986667pt;}
.y14b{bottom:190.106667pt;}
.y31f{bottom:190.266667pt;}
.y191{bottom:190.746667pt;}
.yb8{bottom:191.226667pt;}
.y136{bottom:192.826667pt;}
.y305{bottom:195.066667pt;}
.y13{bottom:195.386667pt;}
.y35e{bottom:195.546667pt;}
.y17f{bottom:199.386667pt;}
.y1b4{bottom:199.546667pt;}
.y249{bottom:199.706667pt;}
.y1e9{bottom:201.146667pt;}
.y116{bottom:202.586667pt;}
.y20c{bottom:202.906667pt;}
.y9e{bottom:203.066667pt;}
.y1f8{bottom:203.266667pt;}
.y271{bottom:203.546667pt;}
.y80{bottom:205.626667pt;}
.y1cd{bottom:206.586667pt;}
.yb7{bottom:207.226667pt;}
.y106{bottom:211.226667pt;}
.yb6{bottom:211.866667pt;}
.y174{bottom:212.186667pt;}
.y2c8{bottom:212.674667pt;}
.y2f2{bottom:213.626667pt;}
.y27d{bottom:215.546667pt;}
.y2a8{bottom:216.506667pt;}
.y32{bottom:216.666667pt;}
.y31e{bottom:217.786667pt;}
.y22a{bottom:218.906667pt;}
.y64{bottom:220.186667pt;}
.y135{bottom:220.346667pt;}
.y1f0{bottom:220.480000pt;}
.y14a{bottom:222.106667pt;}
.y304{bottom:222.586667pt;}
.y4b{bottom:222.906667pt;}
.yb5{bottom:223.546667pt;}
.y12{bottom:224.346667pt;}
.y33d{bottom:226.106667pt;}
.y17e{bottom:227.066667pt;}
.y1b3{bottom:227.226667pt;}
.y1f9{bottom:227.866667pt;}
.y20b{bottom:228.026667pt;}
.y190{bottom:228.986667pt;}
.y115{bottom:230.266667pt;}
.y9d{bottom:230.586667pt;}
.y270{bottom:231.226667pt;}
.y7f{bottom:233.306667pt;}
.y248{bottom:233.946667pt;}
.y335{bottom:235.066667pt;}
.yda{bottom:235.226667pt;}
.y105{bottom:238.746667pt;}
.y1e8{bottom:239.386667pt;}
.y2c7{bottom:240.194667pt;}
.y1cc{bottom:242.266667pt;}
.y2a7{bottom:244.226667pt;}
.y173{bottom:246.466667pt;}
.y384{bottom:247.586667pt;}
.y134{bottom:247.906667pt;}
.y31{bottom:248.546667pt;}
.y27c{bottom:249.826667pt;}
.yd9{bottom:251.586667pt;}
.y228{bottom:251.746667pt;}
.y2f1{bottom:252.066667pt;}
.y1fc{bottom:252.960000pt;}
.y20a{bottom:253.186667pt;}
.y11{bottom:253.506667pt;}
.y149{bottom:253.986667pt;}
.y17d{bottom:254.626667pt;}
.y303{bottom:256.866667pt;}
.y114{bottom:257.826667pt;}
.y9c{bottom:258.306667pt;}
.y63{bottom:258.466667pt;}
.y26f{bottom:258.786667pt;}
.y7e{bottom:260.866667pt;}
.y4a{bottom:261.346667pt;}
.y33c{bottom:262.786667pt;}
.y12c{bottom:264.866667pt;}
.y1e7{bottom:267.106667pt;}
.y18f{bottom:267.266667pt;}
.y2c6{bottom:267.874667pt;}
.y247{bottom:268.226667pt;}
.y1cb{bottom:269.826667pt;}
.y1b2{bottom:269.986667pt;}
.y334{bottom:270.786667pt;}
.yf6{bottom:271.586667pt;}
.y2a6{bottom:271.746667pt;}
.y133{bottom:275.586667pt;}
.y104{bottom:276.226667pt;}
.yd8{bottom:276.866667pt;}
.y172{bottom:279.746667pt;}
.y30{bottom:280.386667pt;}
.y17c{bottom:282.306667pt;}
.y10{bottom:282.626667pt;}
.y382{bottom:283.266667pt;}
.y224{bottom:283.426667pt;}
.y27b{bottom:284.066667pt;}
.y35c{bottom:284.226667pt;}
.y302{bottom:284.546667pt;}
.y113{bottom:285.506667pt;}
.y148{bottom:285.986667pt;}
.y26e{bottom:286.466667pt;}
.y7d{bottom:288.546667pt;}
.y31d{bottom:289.026667pt;}
.y2f0{bottom:290.306667pt;}
.yb4{bottom:291.746667pt;}
.y12b{bottom:292.546667pt;}
.y1e6{bottom:294.626667pt;}
.y2c5{bottom:295.394667pt;}
.y9b{bottom:296.546667pt;}
.y62{bottom:296.706667pt;}
.y1ca{bottom:297.506667pt;}
.y103{bottom:298.306667pt;}
.yf5{bottom:299.106667pt;}
.y2a5{bottom:299.426667pt;}
.y49{bottom:299.586667pt;}
.y1b0{bottom:300.066667pt;}
.y16d{bottom:300.546667pt;}
.y246{bottom:302.466667pt;}
.y132{bottom:303.106667pt;}
.yd7{bottom:304.546667pt;}
.y18e{bottom:305.506667pt;}
.y35b{bottom:307.906667pt;}
.y17b{bottom:309.826667pt;}
.yf{bottom:311.586667pt;}
.y301{bottom:312.066667pt;}
.y2f{bottom:312.226667pt;}
.y112{bottom:313.026667pt;}
.y7c{bottom:316.066667pt;}
.y31c{bottom:316.706667pt;}
.y147{bottom:317.986667pt;}
.y27a{bottom:318.306667pt;}
.y380{bottom:318.466667pt;}
.yb3{bottom:319.266667pt;}
.y12a{bottom:320.066667pt;}
.y26d{bottom:320.706667pt;}
.y1e5{bottom:322.306667pt;}
.y2c4{bottom:323.074667pt;}
.y1c9{bottom:325.026667pt;}
.y102{bottom:326.626667pt;}
.yf4{bottom:326.786667pt;}
.y2ef{bottom:328.546667pt;}
.y9a{bottom:330.786667pt;}
.y35a{bottom:331.586667pt;}
.yd6{bottom:332.066667pt;}
.y2a4{bottom:333.666667pt;}
.y333{bottom:333.986667pt;}
.y61{bottom:335.106667pt;}
.y245{bottom:336.706667pt;}
.y17a{bottom:337.506667pt;}
.y48{bottom:337.826667pt;}
.y300{bottom:339.746667pt;}
.y111{bottom:340.546667pt;}
.ye{bottom:340.706667pt;}
.y7b{bottom:343.746667pt;}
.y18d{bottom:343.906667pt;}
.y31b{bottom:344.226667pt;}
.y1af{bottom:344.866667pt;}
.yb2{bottom:346.946667pt;}
.y129{bottom:347.746667pt;}
.y1e4{bottom:349.826667pt;}
.y146{bottom:349.986667pt;}
.y2e{bottom:350.306667pt;}
.y2c3{bottom:350.594667pt;}
.y1c8{bottom:352.706667pt;}
.y26c{bottom:354.146667pt;}
.yf3{bottom:354.306667pt;}
.y222{bottom:354.786667pt;}
.y101{bottom:354.946667pt;}
.y359{bottom:355.266667pt;}
.y37e{bottom:357.186667pt;}
.y131{bottom:358.306667pt;}
.yd5{bottom:359.746667pt;}
.y2a3{bottom:361.186667pt;}
.y332{bottom:361.506667pt;}
.y99{bottom:365.026667pt;}
.y2ee{bottom:366.786667pt;}
.y2ff{bottom:367.266667pt;}
.y110{bottom:368.226667pt;}
.y33b{bottom:369.506667pt;}
.yd{bottom:369.826667pt;}
.y244{bottom:371.106667pt;}
.y7a{bottom:371.266667pt;}
.y60{bottom:373.346667pt;}
.yb1{bottom:374.466667pt;}
.y128{bottom:375.266667pt;}
.y47{bottom:376.066667pt;}
.y1e3{bottom:377.506667pt;}
.y2c2{bottom:378.114667pt;}
.y358{bottom:378.946667pt;}
.y31a{bottom:379.906667pt;}
.yf2{bottom:381.986667pt;}
.y18c{bottom:382.146667pt;}
.yff{bottom:383.106667pt;}
.y26b{bottom:383.746667pt;}
.y130{bottom:385.986667pt;}
.y279{bottom:386.946667pt;}
.yd4{bottom:387.266667pt;}
.y21e{bottom:387.586667pt;}
.y1c7{bottom:388.226667pt;}
.y2d{bottom:388.546667pt;}
.y2a2{bottom:388.866667pt;}
.y37d{bottom:390.466667pt;}
.y2ed{bottom:391.586667pt;}
.y98{bottom:392.706667pt;}
.y2fe{bottom:394.946667pt;}
.y10f{bottom:395.746667pt;}
.y331{bottom:397.186667pt;}
.y79{bottom:398.946667pt;}
.yc{bottom:400.226667pt;}
.yb0{bottom:402.146667pt;}
.y26a{bottom:402.306667pt;}
.y168{bottom:402.466667pt;}
.y127{bottom:402.946667pt;}
.y1e2{bottom:405.026667pt;}
.y243{bottom:405.346667pt;}
.y319{bottom:407.426667pt;}
.yf1{bottom:409.506667pt;}
.yfc{bottom:411.426667pt;}
.y5f{bottom:411.586667pt;}
.y2c1{bottom:412.541333pt;}
.y12f{bottom:413.506667pt;}
.y145{bottom:413.826667pt;}
.y37c{bottom:414.146667pt;}
.y46{bottom:414.306667pt;}
.y2ec{bottom:414.626667pt;}
.yd3{bottom:414.946667pt;}
.y1c6{bottom:415.906667pt;}
.y97{bottom:420.226667pt;}
.y18b{bottom:420.386667pt;}
.y278{bottom:421.186667pt;}
.y269{bottom:422.146667pt;}
.y2fd{bottom:422.466667pt;}
.y2a1{bottom:423.106667pt;}
.yb{bottom:424.546667pt;}
.y330{bottom:424.706667pt;}
.y357{bottom:425.666667pt;}
.y2c{bottom:426.786667pt;}
.y2eb{bottom:428.386667pt;}
.y1ac{bottom:429.506667pt;}
.yaf{bottom:429.666667pt;}
.y10e{bottom:430.146667pt;}
.y1e1{bottom:432.706667pt;}
.y78{bottom:433.186667pt;}
.yf0{bottom:437.186667pt;}
.y242{bottom:439.586667pt;}
.y2c0{bottom:440.061333pt;}
.y209{bottom:441.186667pt;}
.y268{bottom:442.146667pt;}
.yd2{bottom:442.466667pt;}
.y318{bottom:443.106667pt;}
.y1c5{bottom:443.426667pt;}
.y144{bottom:445.826667pt;}
.y2ea{bottom:446.786667pt;}
.y96{bottom:447.906667pt;}
.ya{bottom:449.026667pt;}
.y5e{bottom:449.826667pt;}
.y2fc{bottom:450.146667pt;}
.y32f{bottom:452.386667pt;}
.y45{bottom:452.546667pt;}
.y277{bottom:455.426667pt;}
.y2a0{bottom:456.546667pt;}
.yae{bottom:457.346667pt;}
.y10d{bottom:457.666667pt;}
.y18a{bottom:458.626667pt;}
.y1e0{bottom:460.226667pt;}
.y33a{bottom:460.386667pt;}
.y77{bottom:460.706667pt;}
.y37b{bottom:460.866667pt;}
.y267{bottom:461.986667pt;}
.yef{bottom:464.706667pt;}
.y2b{bottom:465.026667pt;}
.y2bf{bottom:467.741333pt;}
.y2e9{bottom:468.386667pt;}
.y208{bottom:468.706667pt;}
.yd1{bottom:470.146667pt;}
.y317{bottom:470.626667pt;}
.y1c4{bottom:471.106667pt;}
.y356{bottom:472.226667pt;}
.y241{bottom:473.826667pt;}
.y95{bottom:475.426667pt;}
.y29d{bottom:476.706667pt;}
.y143{bottom:477.826667pt;}
.y21c{bottom:483.586667pt;}
.y2fb{bottom:484.386667pt;}
.yad{bottom:484.866667pt;}
.y9{bottom:485.346667pt;}
.y32e{bottom:487.906667pt;}
.y5d{bottom:488.066667pt;}
.y76{bottom:488.386667pt;}
.y276{bottom:489.666667pt;}
.yfb{bottom:489.826667pt;}
.y2e7{bottom:489.986667pt;}
.y44{bottom:490.786667pt;}
.y265{bottom:491.426667pt;}
.yee{bottom:492.386667pt;}
.y2be{bottom:495.261333pt;}
.y1df{bottom:495.933333pt;}
.y29c{bottom:496.573333pt;}
.y189{bottom:496.893333pt;}
.yd0{bottom:497.693333pt;}
.y1c3{bottom:498.653333pt;}
.y378{bottom:499.133333pt;}
.y1a9{bottom:499.293333pt;}
.y94{bottom:503.133333pt;}
.y2a{bottom:503.453333pt;}
.y316{bottom:506.173333pt;}
.y240{bottom:508.093333pt;}
.y204{bottom:509.693333pt;}
.y142{bottom:510.653333pt;}
.y264{bottom:511.453333pt;}
.y2e6{bottom:511.613333pt;}
.y2fa{bottom:511.933333pt;}
.y10c{bottom:512.893333pt;}
.y75{bottom:515.933333pt;}
.yed{bottom:519.933333pt;}
.y43{bottom:522.813333pt;}
.yab{bottom:523.133333pt;}
.y1de{bottom:523.453333pt;}
.y32d{bottom:523.613333pt;}
.y1ed{bottom:523.773333pt;}
.y275{bottom:523.933333pt;}
.y21b{bottom:525.053333pt;}
.ycf{bottom:525.373333pt;}
.y1c2{bottom:526.173333pt;}
.y5c{bottom:526.333333pt;}
.yfa{bottom:526.653333pt;}
.yac{bottom:528.413333pt;}
.y29b{bottom:528.893333pt;}
.y2bd{bottom:529.501333pt;}
.y163{bottom:529.693333pt;}
.y93{bottom:530.653333pt;}
.y263{bottom:531.453333pt;}
.y2e5{bottom:533.213333pt;}
.y315{bottom:533.853333pt;}
.y355{bottom:534.173333pt;}
.y188{bottom:535.133333pt;}
.y203{bottom:537.373333pt;}
.y141{bottom:538.173333pt;}
.y2f9{bottom:539.613333pt;}
.y29{bottom:541.693333pt;}
.y8{bottom:542.013333pt;}
.y23f{bottom:542.333333pt;}
.y74{bottom:543.613333pt;}
.y376{bottom:546.173333pt;}
.yec{bottom:547.613333pt;}
.y1ec{bottom:548.893333pt;}
.y10b{bottom:550.333333pt;}
.yaa{bottom:550.813333pt;}
.y1dd{bottom:551.133333pt;}
.y262{bottom:551.293333pt;}
.yce{bottom:552.893333pt;}
.yf9{bottom:554.173333pt;}
.y2e4{bottom:554.813333pt;}
.y1a7{bottom:556.573333pt;}
.y29a{bottom:556.893333pt;}
.y2bc{bottom:557.181333pt;}
.y92{bottom:558.173333pt;}
.y42{bottom:561.373333pt;}
.y1c1{bottom:561.853333pt;}
.y353{bottom:562.653333pt;}
.y5b{bottom:564.573333pt;}
.y202{bottom:564.893333pt;}
.y140{bottom:565.853333pt;}
.y2f8{bottom:567.133333pt;}
.y314{bottom:569.373333pt;}
.y23e{bottom:570.013333pt;}
.y73{bottom:571.133333pt;}
.y261{bottom:571.293333pt;}
.y187{bottom:573.373333pt;}
.y2e3{bottom:576.413333pt;}
.y299{bottom:576.893333pt;}
.ya9{bottom:578.333333pt;}
.y1dc{bottom:578.653333pt;}
.y32c{bottom:578.813333pt;}
.y28{bottom:579.933333pt;}
.yeb{bottom:581.853333pt;}
.y375{bottom:582.973333pt;}
.y10a{bottom:583.613333pt;}
.y11a{bottom:583.840000pt;}
.y2bb{bottom:584.701333pt;}
.y21a{bottom:585.693333pt;}
.y91{bottom:585.853333pt;}
.y339{bottom:586.813333pt;}
.y1c0{bottom:589.373333pt;}
.y7{bottom:590.173333pt;}
.y260{bottom:591.133333pt;}
.ycd{bottom:591.293333pt;}
.y201{bottom:592.573333pt;}
.y13f{bottom:593.373333pt;}
.y2f7{bottom:594.813333pt;}
.y313{bottom:597.053333pt;}
.y23d{bottom:597.533333pt;}
.y1a3{bottom:598.013333pt;}
.y2e2{bottom:598.653333pt;}
.y72{bottom:598.813333pt;}
.y351{bottom:600.573333pt;}
.y41{bottom:601.053333pt;}
.y5a{bottom:602.973333pt;}
.y297{bottom:603.453333pt;}
.ya8{bottom:606.013333pt;}
.y1db{bottom:606.333333pt;}
.y27{bottom:607.453333pt;}
.yea{bottom:609.373333pt;}
.y186{bottom:611.773333pt;}
.y2ba{bottom:612.221333pt;}
.y90{bottom:613.373333pt;}
.y338{bottom:614.333333pt;}
.y1bf{bottom:617.053333pt;}
.ycc{bottom:618.813333pt;}
.y6{bottom:619.293333pt;}
.y179{bottom:620.093333pt;}
.y2e1{bottom:620.893333pt;}
.y13e{bottom:621.053333pt;}
.y373{bottom:621.373333pt;}
.y2f6{bottom:622.333333pt;}
.y296{bottom:623.453333pt;}
.y23c{bottom:625.213333pt;}
.y25f{bottom:625.533333pt;}
.y71{bottom:626.333333pt;}
.y15f{bottom:631.453333pt;}
.y312{bottom:632.573333pt;}
.ya7{bottom:633.533333pt;}
.ye9{bottom:637.053333pt;}
.y34f{bottom:638.973333pt;}
.y40{bottom:639.293333pt;}
.y26{bottom:639.453333pt;}
.y219{bottom:640.893333pt;}
.y12e{bottom:641.053333pt;}
.y59{bottom:641.213333pt;}
.y1da{bottom:641.853333pt;}
.y32b{bottom:642.013333pt;}
.y2e0{bottom:642.493333pt;}
.y1be{bottom:644.573333pt;}
.y25e{bottom:645.373333pt;}
.ycb{bottom:646.333333pt;}
.y294{bottom:647.453333pt;}
.y8f{bottom:647.773333pt;}
.y5{bottom:648.413333pt;}
.y13d{bottom:648.573333pt;}
.y185{bottom:650.013333pt;}
.y23b{bottom:652.733333pt;}
.y70{bottom:654.013333pt;}
.y371{bottom:659.133333pt;}
.y311{bottom:660.253333pt;}
.ya6{bottom:661.213333pt;}
.y2df{bottom:664.093333pt;}
.ye8{bottom:664.573333pt;}
.y25d{bottom:665.373333pt;}
.y3f{bottom:666.973333pt;}
.y218{bottom:668.573333pt;}
.y1d9{bottom:669.533333pt;}
.y292{bottom:669.853333pt;}
.y25{bottom:671.293333pt;}
.y1bd{bottom:672.253333pt;}
.yca{bottom:674.013333pt;}
.y8e{bottom:675.293333pt;}
.y13c{bottom:676.253333pt;}
.y34e{bottom:677.373333pt;}
.y2f5{bottom:677.533333pt;}
.y58{bottom:679.453333pt;}
.y23a{bottom:680.413333pt;}
.y6f{bottom:681.533333pt;}
.y4{bottom:683.453333pt;}
.y2de{bottom:685.693333pt;}
.y184{bottom:688.253333pt;}
.ya4{bottom:690.493333pt;}
.y25c{bottom:690.973333pt;}
.ye7{bottom:692.253333pt;}
.y291{bottom:692.413333pt;}
.ya5{bottom:695.773333pt;}
.y217{bottom:696.093333pt;}
.y274{bottom:696.253333pt;}
.y1d8{bottom:697.053333pt;}
.y32a{bottom:697.213333pt;}
.yf8{bottom:697.533333pt;}
.y159{bottom:698.173333pt;}
.y370{bottom:698.333333pt;}
.y1bc{bottom:699.773333pt;}
.yc9{bottom:701.533333pt;}
.y8d{bottom:702.973333pt;}
.y24{bottom:703.133333pt;}
.y13b{bottom:703.773333pt;}
.y3e{bottom:705.213333pt;}
.y34c{bottom:706.013333pt;}
.y2dd{bottom:707.293333pt;}
.y239{bottom:707.933333pt;}
.y200{bottom:709.533333pt;}
.y25b{bottom:710.813333pt;}
.y290{bottom:711.773333pt;}
.y1a1{bottom:713.693333pt;}
.y6e{bottom:715.773333pt;}
.y57{bottom:717.693333pt;}
.ya3{bottom:719.773333pt;}
.y310{bottom:723.453333pt;}
.y216{bottom:723.773333pt;}
.y23{bottom:724.093333pt;}
.y1d7{bottom:724.733333pt;}
.y1bb{bottom:727.453333pt;}
.y2dc{bottom:728.893333pt;}
.yc8{bottom:729.213333pt;}
.y8c{bottom:730.493333pt;}
.y25a{bottom:730.813333pt;}
.y13a{bottom:731.453333pt;}
.y329{bottom:732.733333pt;}
.y28f{bottom:734.333333pt;}
.y34a{bottom:734.493333pt;}
.y238{bottom:735.613333pt;}
.y1ff{bottom:737.213333pt;}
.y3d{bottom:743.453333pt;}
.y36e{bottom:744.893333pt;}
.y126{bottom:747.493333pt;}
.y2b8{bottom:749.253333pt;}
.y2db{bottom:750.533333pt;}
.y259{bottom:750.693333pt;}
.y30f{bottom:751.013333pt;}
.y215{bottom:751.333333pt;}
.y1d6{bottom:752.293333pt;}
.y28e{bottom:753.573333pt;}
.ye6{bottom:754.213333pt;}
.y1ba{bottom:755.013333pt;}
.y56{bottom:755.973333pt;}
.yc7{bottom:756.773333pt;}
.y19f{bottom:757.573333pt;}
.y8b{bottom:758.213333pt;}
.y139{bottom:759.013333pt;}
.y183{bottom:759.493333pt;}
.y328{bottom:760.453333pt;}
.y22{bottom:762.373333pt;}
.y237{bottom:763.173333pt;}
.y349{bottom:764.293333pt;}
.y1fe{bottom:764.773333pt;}
.y337{bottom:768.453333pt;}
.y6d{bottom:771.013333pt;}
.y2da{bottom:772.133333pt;}
.y125{bottom:775.013333pt;}
.y258{bottom:776.293333pt;}
.y28d{bottom:776.773333pt;}
.y214{bottom:779.013333pt;}
.y1d5{bottom:779.973333pt;}
.y3c{bottom:781.733333pt;}
.y1b9{bottom:782.693333pt;}
.y109{bottom:783.173333pt;}
.y2b7{bottom:783.333333pt;}
.yc6{bottom:784.453333pt;}
.y36c{bottom:784.773333pt;}
.y8a{bottom:785.733333pt;}
.y30e{bottom:786.693333pt;}
.y21{bottom:790.053333pt;}
.y236{bottom:790.853333pt;}
.y1fd{bottom:792.453333pt;}
.y138{bottom:793.413333pt;}
.y2d8{bottom:793.733333pt;}
.y55{bottom:794.213333pt;}
.y327{bottom:795.973333pt;}
.y28c{bottom:796.133333pt;}
.y257{bottom:796.293333pt;}
.y6c{bottom:798.693333pt;}
.y156{bottom:799.973333pt;}
.y19d{bottom:800.773333pt;}
.y124{bottom:802.693333pt;}
.y3{bottom:803.493333pt;}
.ye5{bottom:809.413333pt;}
.y348{bottom:811.013333pt;}
.yc5{bottom:811.973333pt;}
.y213{bottom:813.253333pt;}
.y89{bottom:813.413333pt;}
.y30d{bottom:814.213333pt;}
.y28a{bottom:815.333333pt;}
.y256{bottom:816.293333pt;}
.y2b6{bottom:816.773333pt;}
.y1d4{bottom:818.213333pt;}
.y235{bottom:818.373333pt;}
.y3b{bottom:819.973333pt;}
.y36a{bottom:820.613333pt;}
.y1b8{bottom:820.933333pt;}
.y326{bottom:823.653333pt;}
.y6b{bottom:826.213333pt;}
.y20{bottom:828.293333pt;}
.y123{bottom:830.213333pt;}
.y54{bottom:832.453333pt;}
.y289{bottom:834.693333pt;}
.y255{bottom:836.133333pt;}
.ye4{bottom:836.933333pt;}
.y198{bottom:837.573333pt;}
.y2d6{bottom:837.733333pt;}
.yc4{bottom:839.653333pt;}
.y212{bottom:840.773333pt;}
.y88{bottom:840.933333pt;}
.y1d3{bottom:845.733333pt;}
.y234{bottom:846.053333pt;}
.ya2{bottom:847.653333pt;}
.y30c{bottom:850.053333pt;}
.y325{bottom:851.173333pt;}
.y6a{bottom:853.893333pt;}
.y346{bottom:857.733333pt;}
.y122{bottom:857.893333pt;}
.y3a{bottom:858.213333pt;}
.y369{bottom:858.693333pt;}
.y336{bottom:859.173333pt;}
.y53{bottom:860.133333pt;}
.y2b4{bottom:864.133333pt;}
.ye3{bottom:864.453333pt;}
.y151{bottom:864.613333pt;}
.y254{bottom:865.573333pt;}
.y1f{bottom:866.533333pt;}
.yc3{bottom:867.173333pt;}
.y87{bottom:868.453333pt;}
.y1d2{bottom:873.413333pt;}
.ya1{bottom:875.173333pt;}
.y2cf{bottom:877.253333pt;}
.y30b{bottom:877.573333pt;}
.y233{bottom:880.293333pt;}
.y69{bottom:881.413333pt;}
.y288{bottom:883.493333pt;}
.y2b2{bottom:884.773333pt;}
.y253{bottom:885.573333pt;}
.y344{bottom:885.733333pt;}
.y324{bottom:886.853333pt;}
.ye2{bottom:892.133333pt;}
.yc2{bottom:894.853333pt;}
.y211{bottom:895.973333pt;}
.yf7{bottom:896.133333pt;}
.y39{bottom:896.613333pt;}
.y367{bottom:896.933333pt;}
.y52{bottom:898.373333pt;}
.y1d1{bottom:900.933333pt;}
.y286{bottom:902.693333pt;}
.y86{bottom:902.853333pt;}
.y1e{bottom:904.773333pt;}
.y232{bottom:907.813333pt;}
.y2b1{bottom:908.773333pt;}
.y68{bottom:909.093333pt;}
.y30a{bottom:911.653333pt;}
.y323{bottom:914.373333pt;}
.y342{bottom:914.533333pt;}
.y251{bottom:915.973333pt;}
.ye1{bottom:919.653333pt;}
.y284{bottom:921.893333pt;}
.yc1{bottom:922.373333pt;}
.y12d{bottom:923.653333pt;}
.y38{bottom:928.613333pt;}
.y1d0{bottom:929.253333pt;}
.y196{bottom:930.213333pt;}
.y85{bottom:930.373333pt;}
.y2af{bottom:931.333333pt;}
.y365{bottom:933.893333pt;}
.y231{bottom:935.493333pt;}
.y24f{bottom:935.813333pt;}
.y51{bottom:936.613333pt;}
.y309{bottom:939.333333pt;}
.y1d{bottom:943.173333pt;}
.y282{bottom:943.493333pt;}
.y341{bottom:946.533333pt;}
.ye0{bottom:947.333333pt;}
.y37{bottom:949.573333pt;}
.y322{bottom:950.053333pt;}
.y210{bottom:951.173333pt;}
.y14f{bottom:954.533333pt;}
.y84{bottom:958.053333pt;}
.y24d{bottom:960.293333pt;}
.y230{bottom:963.013333pt;}
.yc0{bottom:963.333333pt;}
.y280{bottom:964.133333pt;}
.y340{bottom:970.213333pt;}
.y2ab{bottom:974.373333pt;}
.y50{bottom:974.853333pt;}
.y195{bottom:976.293333pt;}
.y362{bottom:976.773333pt;}
.y20f{bottom:978.853333pt;}
.y2{bottom:979.013333pt;}
.y1c{bottom:981.413333pt;}
.y36{bottom:981.573333pt;}
.y83{bottom:985.573333pt;}
.y22f{bottom:988.293333pt;}
.y1b7{bottom:990.853333pt;}
.y389{bottom:1011.840000pt;}
.y4f{bottom:1013.280000pt;}
.y1{bottom:1013.440000pt;}
.y24c{bottom:1014.560000pt;}
.y14e{bottom:1014.720000pt;}
.h3f{height:19.200000pt;}
.h43{height:19.232000pt;}
.h41{height:19.360000pt;}
.h34{height:19.840000pt;}
.h39{height:19.872000pt;}
.h36{height:20.000000pt;}
.h3b{height:20.032000pt;}
.h3e{height:21.600000pt;}
.h4e{height:21.632000pt;}
.h45{height:22.400000pt;}
.h44{height:22.560000pt;}
.h1d{height:22.880000pt;}
.h59{height:23.040000pt;}
.h58{height:23.072000pt;}
.h42{height:23.200000pt;}
.h33{height:23.840000pt;}
.h46{height:24.000000pt;}
.h38{height:25.600000pt;}
.h47{height:26.560000pt;}
.h50{height:27.360000pt;}
.h11{height:27.520000pt;}
.h10{height:27.680000pt;}
.hc{height:27.810000pt;}
.h54{height:27.840000pt;}
.h48{height:28.000000pt;}
.h53{height:29.152000pt;}
.h37{height:29.440000pt;}
.h40{height:29.600000pt;}
.h35{height:30.400000pt;}
.h2c{height:30.912000pt;}
.h30{height:31.040000pt;}
.h4f{height:31.200000pt;}
.h3d{height:31.360000pt;}
.h2e{height:32.160000pt;}
.h31{height:32.192000pt;}
.h49{height:32.320000pt;}
.h66{height:32.640000pt;}
.h6a{height:32.800000pt;}
.h69{height:33.312000pt;}
.h3a{height:34.400000pt;}
.h68{height:34.880000pt;}
.h32{height:35.200000pt;}
.h1f{height:36.000000pt;}
.h63{height:36.160000pt;}
.h5e{height:36.320000pt;}
.h28{height:36.480000pt;}
.h62{height:37.120000pt;}
.h57{height:37.280000pt;}
.h5f{height:37.440000pt;}
.h55{height:37.600000pt;}
.h65{height:37.632000pt;}
.h56{height:37.760000pt;}
.h67{height:38.080000pt;}
.h61{height:38.560000pt;}
.h13{height:38.625000pt;}
.h4d{height:38.880000pt;}
.h60{height:39.232000pt;}
.h23{height:40.800000pt;}
.h15{height:40.960000pt;}
.h5a{height:41.312000pt;}
.h5b{height:41.600000pt;}
.h5d{height:42.240000pt;}
.h20{height:42.560000pt;}
.hd{height:42.745000pt;}
.h21{height:43.232000pt;}
.h29{height:44.000000pt;}
.ha{height:44.722500pt;}
.h51{height:45.920000pt;}
.h52{height:46.080000pt;}
.h64{height:46.400000pt;}
.h26{height:46.880000pt;}
.h27{height:47.647188pt;}
.h9{height:49.937500pt;}
.h3c{height:50.062500pt;}
.h5c{height:50.592000pt;}
.h4a{height:53.792000pt;}
.hf{height:55.200000pt;}
.h8{height:55.402500pt;}
.h24{height:56.640000pt;}
.he{height:57.406250pt;}
.h14{height:60.255000pt;}
.h2b{height:60.358000pt;}
.h7{height:61.410000pt;}
.h17{height:64.000000pt;}
.h19{height:65.920000pt;}
.h2{height:66.750000pt;}
.h25{height:68.992000pt;}
.h2f{height:70.560000pt;}
.hb{height:75.427500pt;}
.h6{height:77.440000pt;}
.h3{height:78.097500pt;}
.h5{height:88.777500pt;}
.h16{height:89.280000pt;}
.h1e{height:92.000000pt;}
.h2d{height:95.200000pt;}
.h1a{height:101.120000pt;}
.h18{height:101.152000pt;}
.h1c{height:101.280000pt;}
.h4{height:111.472500pt;}
.h22{height:115.040000pt;}
.h1b{height:126.592000pt;}
.h4c{height:150.906667pt;}
.h12{height:176.800000pt;}
.h2a{height:280.800000pt;}
.h4b{height:633.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:57.440000pt;}
.w1c{width:60.032000pt;}
.w16{width:81.312000pt;}
.w13{width:93.472000pt;}
.w12{width:106.560000pt;}
.w17{width:108.032000pt;}
.wf{width:113.472000pt;}
.w21{width:115.200000pt;}
.we{width:140.480000pt;}
.w15{width:149.280000pt;}
.w10{width:153.146667pt;}
.wd{width:157.626667pt;}
.w14{width:170.586667pt;}
.w19{width:171.066667pt;}
.w24{width:178.106667pt;}
.w5{width:188.026667pt;}
.w6{width:188.186667pt;}
.w11{width:195.706667pt;}
.w20{width:211.706667pt;}
.w23{width:221.786667pt;}
.w1d{width:222.586667pt;}
.w8{width:225.786667pt;}
.w25{width:231.066667pt;}
.w22{width:236.706667pt;}
.w3{width:277.466667pt;}
.wb{width:280.826667pt;}
.wc{width:280.866667pt;}
.w1b{width:283.706667pt;}
.w9{width:339.266667pt;}
.w7{width:508.960000pt;}
.w1f{width:564.253333pt;}
.w1e{width:566.333333pt;}
.wa{width:567.040000pt;}
.w1a{width:567.133333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:4.800000pt;}
.x26{left:6.880000pt;}
.x23{left:7.840000pt;}
.x59{left:15.680000pt;}
.x54{left:17.600000pt;}
.x24{left:26.720000pt;}
.x2a{left:29.440000pt;}
.x49{left:35.706667pt;}
.x33{left:36.986667pt;}
.x46{left:39.386667pt;}
.x4d{left:41.274667pt;}
.x4f{left:43.066667pt;}
.x3c{left:45.466667pt;}
.x57{left:47.514667pt;}
.x36{left:48.954667pt;}
.x28{left:53.306667pt;}
.x41{left:55.194667pt;}
.x3d{left:63.680000pt;}
.x4e{left:64.954667pt;}
.x3f{left:67.360000pt;}
.x47{left:72.480000pt;}
.x21{left:74.074667pt;}
.x42{left:75.834667pt;}
.x4a{left:78.554667pt;}
.x2b{left:80.960000pt;}
.x4c{left:84.474667pt;}
.x40{left:85.434667pt;}
.x20{left:94.074667pt;}
.x56{left:98.400000pt;}
.x34{left:101.186667pt;}
.x45{left:104.314667pt;}
.x5b{left:105.466667pt;}
.x3b{left:108.474667pt;}
.x4b{left:110.234667pt;}
.x53{left:111.674667pt;}
.x12{left:113.471988pt;}
.x32{left:114.946667pt;}
.x1b{left:117.791988pt;}
.x7{left:121.311988pt;}
.x8{left:129.791988pt;}
.x3e{left:149.274667pt;}
.x5{left:151.546655pt;}
.x3{left:162.426655pt;}
.x48{left:187.394667pt;}
.x29{left:206.946667pt;}
.x9{left:226.106655pt;}
.x6{left:235.386655pt;}
.xa{left:243.066655pt;}
.x2{left:263.226655pt;}
.x37{left:271.746667pt;}
.x52{left:281.154667pt;}
.xb{left:285.346655pt;}
.xf{left:300.386655pt;}
.x22{left:302.946667pt;}
.x1a{left:305.506655pt;}
.xe{left:309.346655pt;}
.x15{left:311.906655pt;}
.x1c{left:317.666655pt;}
.x14{left:321.826655pt;}
.x58{left:325.506667pt;}
.x5c{left:336.546667pt;}
.x2c{left:340.546667pt;}
.x50{left:344.066667pt;}
.xc{left:347.106655pt;}
.xd{left:356.066655pt;}
.x13{left:369.826655pt;}
.x1d{left:388.066655pt;}
.x11{left:392.386655pt;}
.x35{left:395.586667pt;}
.x4{left:396.866655pt;}
.x39{left:412.226667pt;}
.x43{left:416.066667pt;}
.x1{left:420.546655pt;}
.x18{left:430.146643pt;}
.x19{left:436.066655pt;}
.x5a{left:440.706667pt;}
.x2d{left:441.666643pt;}
.x2e{left:447.613322pt;}
.x51{left:452.093333pt;}
.x55{left:457.533333pt;}
.x25{left:491.613333pt;}
.x44{left:509.533333pt;}
.x2f{left:511.133310pt;}
.x10{left:516.093333pt;}
.x30{left:517.053322pt;}
.x3a{left:525.693333pt;}
.x1e{left:544.253310pt;}
.x1f{left:550.173322pt;}
.x27{left:622.373322pt;}
.x16{left:669.573310pt;}
.x17{left:675.493322pt;}
.x31{left:680.453322pt;}
}




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