
    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_4d95090c6339df4e8c2016b9.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_9ddefa0ec617ae92a58e2ae1.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_86e285888b2ecd94ab5b7894.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6ef8247577fd461b5095f7ab.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8c9c056b09a43b0086a03119.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.068000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_45b516d919d1bde8086adef1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.715000;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_6a22dacccdef9d66aedd13b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.748000;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_967236e8f593c8c2f7caaa25.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d0395b013d1b5846e45b4961.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_62c24ae51ec7ae629afcb03b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d2e74ef4f6f13e5a3644334d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1a10f5355018543d318d44fd.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1bce537c833aa09851446c96.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.va{vertical-align:-113.760000px;}
.v9{vertical-align:-51.840000px;}
.v16{vertical-align:-44.640000px;}
.v30{vertical-align:-43.200000px;}
.vb{vertical-align:-41.760000px;}
.vd{vertical-align:-38.880000px;}
.v1c{vertical-align:-37.440000px;}
.v2e{vertical-align:-36.000000px;}
.v25{vertical-align:-34.560000px;}
.v2d{vertical-align:-33.120000px;}
.v2c{vertical-align:-31.680000px;}
.v23{vertical-align:-30.240000px;}
.v24{vertical-align:-28.800000px;}
.v22{vertical-align:-27.360000px;}
.v1b{vertical-align:-21.600000px;}
.v29{vertical-align:-20.160000px;}
.v17{vertical-align:-18.720000px;}
.v18{vertical-align:-17.280000px;}
.v1f{vertical-align:-15.840000px;}
.v21{vertical-align:-14.400000px;}
.v14{vertical-align:-12.960000px;}
.v13{vertical-align:-11.520000px;}
.v28{vertical-align:-10.080000px;}
.v10{vertical-align:-8.640000px;}
.v12{vertical-align:-7.200000px;}
.vc{vertical-align:-5.760000px;}
.v5{vertical-align:-4.320000px;}
.v7{vertical-align:-2.880000px;}
.v6{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440000px;}
.v4{vertical-align:2.880000px;}
.vf{vertical-align:4.320000px;}
.v2{vertical-align:5.760000px;}
.v3{vertical-align:7.200000px;}
.v11{vertical-align:8.640000px;}
.v1d{vertical-align:10.080000px;}
.v8{vertical-align:11.520000px;}
.v20{vertical-align:12.960000px;}
.v2f{vertical-align:14.400000px;}
.v26{vertical-align:15.840000px;}
.v2b{vertical-align:23.040000px;}
.v1a{vertical-align:25.920000px;}
.v2a{vertical-align:27.360000px;}
.v19{vertical-align:31.680000px;}
.v27{vertical-align:34.560000px;}
.v31{vertical-align:38.880000px;}
.ve{vertical-align:40.320000px;}
.v1e{vertical-align:60.480000px;}
.v15{vertical-align:76.320000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:18.636000px;}
.ls2{letter-spacing:34.980000px;}
.ls0{letter-spacing:52.578000px;}
.ls3{letter-spacing:106.767000px;}
.ls5{letter-spacing:134.289000px;}
.ls4{letter-spacing:263.514000px;}
.ls6{letter-spacing:2831.484000px;}
.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;}
}
.ws8{word-spacing:-35.028000px;}
.wsd{word-spacing:-32.526000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:0.816000px;}
.ws7{word-spacing:16.188000px;}
.ws9{word-spacing:22.374000px;}
.wsb{word-spacing:53.550000px;}
.ws14{word-spacing:54.684000px;}
.ws10{word-spacing:58.248000px;}
.ws12{word-spacing:62.190000px;}
.wsc{word-spacing:76.050000px;}
.ws13{word-spacing:88.560000px;}
.ws3{word-spacing:91.503000px;}
.ws11{word-spacing:92.319000px;}
.wsf{word-spacing:97.830000px;}
.ws2{word-spacing:187.020000px;}
.ws1{word-spacing:439.308000px;}
.ws5{word-spacing:455.544000px;}
.ws0{word-spacing:693.144000px;}
.wse{word-spacing:1321.812000px;}
.wsa{word-spacing:1513.728000px;}
._2c{margin-left:-18.774000px;}
._28{margin-left:-11.988000px;}
._2e{margin-left:-3.069000px;}
._4{width:1.695000px;}
._2{width:2.874000px;}
._7{width:4.002000px;}
._0{width:5.070000px;}
._2f{width:6.075000px;}
._5{width:7.080000px;}
._1{width:8.403000px;}
._10{width:9.666000px;}
._3{width:11.028000px;}
._c{width:12.057000px;}
._6{width:13.065000px;}
._11{width:14.280000px;}
._9{width:16.173000px;}
._27{width:17.457000px;}
._8{width:18.720000px;}
._18{width:20.388000px;}
._1a{width:22.530000px;}
._30{width:24.786000px;}
._13{width:26.223000px;}
._1f{width:28.506000px;}
._35{width:29.982000px;}
._2a{width:33.363000px;}
._16{width:40.437000px;}
._33{width:42.282000px;}
._32{width:53.451000px;}
._a{width:54.552000px;}
._1c{width:59.814000px;}
._2b{width:71.460000px;}
._2d{width:79.488000px;}
._36{width:84.678000px;}
._31{width:118.479000px;}
._34{width:144.081000px;}
._1e{width:203.769000px;}
._17{width:220.395000px;}
._b{width:224.862000px;}
._29{width:230.967000px;}
._f{width:249.489000px;}
._22{width:253.932000px;}
._20{width:257.082000px;}
._d{width:267.633000px;}
._1b{width:278.247000px;}
._24{width:440.985000px;}
._12{width:449.352000px;}
._26{width:553.767000px;}
._25{width:563.259000px;}
._21{width:567.648000px;}
._e{width:579.186000px;}
._14{width:584.373000px;}
._15{width:587.664000px;}
._23{width:768.243000px;}
._19{width:783.339000px;}
._1d{width:1194.603000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs1c{font-size:15.000000px;}
.fs1a{font-size:18.000000px;}
.fs22{font-size:21.000000px;}
.fs29{font-size:24.000000px;}
.fs16{font-size:27.000000px;}
.fs19{font-size:30.000000px;}
.fs21{font-size:33.000000px;}
.fs1d{font-size:36.000000px;}
.fs11{font-size:39.000000px;}
.fs14{font-size:42.000000px;}
.fs17{font-size:45.000000px;}
.fs13{font-size:48.000000px;}
.fs1b{font-size:51.000000px;}
.fs10{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fsf{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:69.000000px;}
.fsa{font-size:72.000000px;}
.fs5{font-size:75.000000px;}
.fs18{font-size:78.000000px;}
.fs1e{font-size:81.000000px;}
.fs25{font-size:84.000000px;}
.fs28{font-size:87.000000px;}
.fs0{font-size:90.000000px;}
.fs12{font-size:93.000000px;}
.fs15{font-size:99.000000px;}
.fse{font-size:102.000000px;}
.fsc{font-size:105.000000px;}
.fs27{font-size:111.000000px;}
.fs9{font-size:114.000000px;}
.fsd{font-size:117.000000px;}
.fs23{font-size:123.000000px;}
.fs24{font-size:126.000000px;}
.fs26{font-size:129.000000px;}
.fs4{font-size:132.000000px;}
.fs2a{font-size:165.000000px;}
.fs1f{font-size:204.000000px;}
.fs20{font-size:216.000000px;}
.fs3{font-size:237.000000px;}
.fs1{font-size:405.000000px;}
.fs2{font-size:501.000000px;}
.y22{bottom:-5.983950px;}
.y2b2{bottom:-3.531960px;}
.y0{bottom:0.000000px;}
.ybb{bottom:8.708040px;}
.y4{bottom:8.776050px;}
.ybc{bottom:16.628040px;}
.y1c1{bottom:24.548040px;}
.y2d6{bottom:24.908040px;}
.y257{bottom:25.628040px;}
.y119{bottom:28.508040px;}
.y21{bottom:31.456050px;}
.y216{bottom:33.188040px;}
.y2b1{bottom:33.908040px;}
.y176{bottom:39.308040px;}
.y20{bottom:42.256050px;}
.y9a{bottom:52.988040px;}
.y3{bottom:55.216050px;}
.y98{bottom:57.668040px;}
.y99{bottom:64.868040px;}
.yba{bottom:67.028040px;}
.y1c0{bottom:78.548040px;}
.y227{bottom:81.068040px;}
.y213{bottom:82.508040px;}
.y1f3{bottom:83.228040px;}
.y286{bottom:84.308040px;}
.y2d5{bottom:85.388040px;}
.y118{bottom:86.468040px;}
.y156{bottom:87.188040px;}
.y24a{bottom:96.548040px;}
.y1bf{bottom:96.908040px;}
.y226{bottom:99.068040px;}
.yb9{bottom:99.428040px;}
.y212{bottom:100.868040px;}
.y1f2{bottom:101.228040px;}
.y285{bottom:101.948040px;}
.y2b0{bottom:102.668040px;}
.y155{bottom:105.188040px;}
.y97{bottom:108.788040px;}
.yb8{bottom:109.148040px;}
.y249{bottom:114.908040px;}
.y1be{bottom:115.268040px;}
.y225{bottom:117.068040px;}
.y2{bottom:117.136050px;}
.y1f1{bottom:119.228040px;}
.y211{bottom:119.588040px;}
.y284{bottom:120.308040px;}
.y2af{bottom:121.028040px;}
.y154{bottom:123.188040px;}
.yb7{bottom:123.908040px;}
.y23{bottom:125.776050px;}
.y93{bottom:126.788040px;}
.yb6{bottom:128.948040px;}
.y248{bottom:132.908040px;}
.y1bd{bottom:133.268040px;}
.y111{bottom:133.628040px;}
.y117{bottom:134.708040px;}
.y224{bottom:135.068040px;}
.yb5{bottom:136.868040px;}
.y1f0{bottom:137.228040px;}
.y210{bottom:137.588040px;}
.y283{bottom:138.308040px;}
.y2ae{bottom:139.028040px;}
.y92{bottom:139.748040px;}
.y153{bottom:141.548040px;}
.y247{bottom:150.908040px;}
.y110{bottom:151.628040px;}
.y91{bottom:152.348040px;}
.y223{bottom:153.068040px;}
.y282{bottom:153.428040px;}
.y20f{bottom:155.588040px;}
.y2ad{bottom:157.388040px;}
.y152{bottom:159.548040px;}
.y90{bottom:164.948040px;}
.y246{bottom:168.908040px;}
.y1bc{bottom:169.268040px;}
.y1{bottom:169.336050px;}
.y10f{bottom:169.628040px;}
.y116{bottom:170.708040px;}
.y222{bottom:171.428040px;}
.y1ef{bottom:173.588040px;}
.y281{bottom:174.668040px;}
.y2ac{bottom:175.748040px;}
.yb4{bottom:176.108040px;}
.y8f{bottom:177.548040px;}
.y151{bottom:177.908040px;}
.y1bb{bottom:187.268040px;}
.y10e{bottom:187.988040px;}
.y115{bottom:189.068040px;}
.y221{bottom:189.428040px;}
.y8e{bottom:190.508040px;}
.y20e{bottom:191.588040px;}
.y1ee{bottom:191.948040px;}
.y280{bottom:192.668040px;}
.y2ab{bottom:193.388040px;}
.y150{bottom:195.908040px;}
.y8d{bottom:203.108040px;}
.y245{bottom:205.268040px;}
.y1ba{bottom:205.628040px;}
.y10d{bottom:206.348040px;}
.y114{bottom:206.708040px;}
.y220{bottom:207.068040px;}
.y1ed{bottom:210.308040px;}
.y27f{bottom:211.028040px;}
.y2aa{bottom:211.388040px;}
.y1f{bottom:213.976050px;}
.y14f{bottom:214.268040px;}
.yb3{bottom:215.348040px;}
.y8c{bottom:215.708040px;}
.y244{bottom:223.268040px;}
.y1b9{bottom:223.628040px;}
.y10c{bottom:223.988040px;}
.y113{bottom:224.708040px;}
.y21f{bottom:225.428040px;}
.y1b{bottom:226.936050px;}
.y20d{bottom:227.948040px;}
.y8b{bottom:228.668040px;}
.y27e{bottom:229.028040px;}
.y2a9{bottom:229.388040px;}
.y18{bottom:229.456050px;}
.y5e{bottom:230.108040px;}
.yb2{bottom:230.468040px;}
.y14e{bottom:232.268040px;}
.y1a{bottom:233.416050px;}
.yb1{bottom:236.228040px;}
.y1e{bottom:241.336050px;}
.y1b8{bottom:241.628040px;}
.y5d{bottom:241.988040px;}
.y17{bottom:242.416050px;}
.y112{bottom:243.068040px;}
.y243{bottom:243.788040px;}
.y1ec{bottom:245.948040px;}
.yb0{bottom:246.308040px;}
.y27d{bottom:247.028040px;}
.y2a8{bottom:247.748040px;}
.y14d{bottom:250.268040px;}
.y8a{bottom:253.868040px;}
.y1d{bottom:255.016050px;}
.y5c{bottom:257.108040px;}
.y16{bottom:257.896050px;}
.y10b{bottom:259.988040px;}
.y1b7{bottom:260.348040px;}
.y19{bottom:260.776050px;}
.y21e{bottom:261.428040px;}
.y15{bottom:262.576050px;}
.y20c{bottom:263.948040px;}
.y1eb{bottom:264.308040px;}
.y27c{bottom:265.388040px;}
.y2a7{bottom:265.748040px;}
.y89{bottom:266.468040px;}
.y14c{bottom:268.268040px;}
.y5b{bottom:270.428040px;}
.y1c{bottom:275.536050px;}
.y242{bottom:277.988040px;}
.y10a{bottom:278.348040px;}
.y88{bottom:279.068040px;}
.y14{bottom:279.496050px;}
.y21d{bottom:279.788040px;}
.y20b{bottom:282.668040px;}
.y27b{bottom:283.388040px;}
.y5a{bottom:284.108040px;}
.yaf{bottom:285.548040px;}
.y14b{bottom:286.988040px;}
.y87{bottom:291.668040px;}
.y241{bottom:295.628040px;}
.y109{bottom:296.348040px;}
.ye5{bottom:297.428040px;}
.y13{bottom:297.856050px;}
.y20a{bottom:299.948040px;}
.y1ea{bottom:300.308040px;}
.y27a{bottom:301.388040px;}
.y2a6{bottom:301.748040px;}
.y86{bottom:304.268040px;}
.y12{bottom:307.216050px;}
.y240{bottom:313.988040px;}
.y108{bottom:314.348040px;}
.y1b6{bottom:314.708040px;}
.ye4{bottom:315.068040px;}
.y21c{bottom:315.788040px;}
.y85{bottom:316.868040px;}
.y1e9{bottom:318.308040px;}
.y279{bottom:319.388040px;}
.y2a5{bottom:320.108040px;}
.y14a{bottom:322.268040px;}
.y11{bottom:322.696050px;}
.y59{bottom:324.428040px;}
.y84{bottom:329.468040px;}
.y23f{bottom:331.988040px;}
.y1b5{bottom:332.708040px;}
.y107{bottom:333.068040px;}
.ye3{bottom:333.428040px;}
.y58{bottom:336.308040px;}
.y209{bottom:336.668040px;}
.y278{bottom:337.388040px;}
.y2a4{bottom:338.108040px;}
.y149{bottom:340.628040px;}
.y83{bottom:342.068040px;}
.y57{bottom:348.548040px;}
.yae{bottom:349.268040px;}
.y23e{bottom:349.988040px;}
.y106{bottom:350.708040px;}
.ye2{bottom:351.428040px;}
.y21b{bottom:351.788040px;}
.y1e8{bottom:354.308040px;}
.y82{bottom:354.668040px;}
.y277{bottom:355.388040px;}
.y2a3{bottom:356.108040px;}
.y148{bottom:358.628040px;}
.y56{bottom:361.868040px;}
.y81{bottom:367.628040px;}
.y1b4{bottom:368.348040px;}
.y105{bottom:368.708040px;}
.y21a{bottom:369.428040px;}
.ye1{bottom:369.788040px;}
.y1e7{bottom:372.668040px;}
.y276{bottom:373.748040px;}
.y2a2{bottom:374.108040px;}
.y10{bottom:375.256050px;}
.y147{bottom:376.628040px;}
.y55{bottom:377.708040px;}
.y80{bottom:380.228040px;}
.yf{bottom:384.256050px;}
.y23d{bottom:385.988040px;}
.y104{bottom:386.708040px;}
.y1b3{bottom:387.068040px;}
.ye0{bottom:387.788040px;}
.y54{bottom:388.868040px;}
.y208{bottom:390.308040px;}
.y1e6{bottom:391.028040px;}
.y275{bottom:391.748040px;}
.y2a1{bottom:392.108040px;}
.y146{bottom:394.988040px;}
.ye{bottom:397.576050px;}
.y23c{bottom:404.348040px;}
.y103{bottom:404.708040px;}
.y7f{bottom:405.428040px;}
.y219{bottom:405.788040px;}
.y207{bottom:408.668040px;}
.y1e5{bottom:409.028040px;}
.y274{bottom:409.748040px;}
.y2a0{bottom:410.108040px;}
.yd{bottom:410.896050px;}
.y145{bottom:412.988040px;}
.y53{bottom:416.228040px;}
.yc{bottom:417.736050px;}
.y7e{bottom:418.028040px;}
.y23b{bottom:422.348040px;}
.y102{bottom:422.708040px;}
.ydf{bottom:423.788040px;}
.y218{bottom:424.148040px;}
.y1e4{bottom:427.028040px;}
.y273{bottom:428.108040px;}
.y52{bottom:429.548040px;}
.y7d{bottom:430.988040px;}
.y144{bottom:431.348040px;}
.y23a{bottom:440.348040px;}
.y1b2{bottom:440.708040px;}
.y101{bottom:441.068040px;}
.yde{bottom:442.148040px;}
.y51{bottom:442.868040px;}
.y7c{bottom:443.588040px;}
.y206{bottom:445.028040px;}
.y1e3{bottom:445.388040px;}
.y272{bottom:446.108040px;}
.y29f{bottom:446.468040px;}
.y143{bottom:449.708040px;}
.y7b{bottom:456.188040px;}
.y50{bottom:456.548040px;}
.yb{bottom:457.336050px;}
.y239{bottom:458.348040px;}
.y100{bottom:459.428040px;}
.ydd{bottom:460.148040px;}
.y195{bottom:461.948040px;}
.y1e2{bottom:463.028040px;}
.y271{bottom:463.748040px;}
.y175{bottom:464.468040px;}
.y142{bottom:467.348040px;}
.y7a{bottom:468.788040px;}
.y4f{bottom:470.228040px;}
.y238{bottom:476.708040px;}
.y1b1{bottom:477.068040px;}
.yff{bottom:477.428040px;}
.ydc{bottom:478.148040px;}
.y96{bottom:479.948040px;}
.y194{bottom:480.308040px;}
.y1e1{bottom:481.028040px;}
.y79{bottom:482.108040px;}
.y29e{bottom:482.468040px;}
.y4e{bottom:483.548040px;}
.y141{bottom:485.348040px;}
.yad{bottom:488.948040px;}
.y95{bottom:492.548040px;}
.y78{bottom:494.708040px;}
.y1b0{bottom:495.068040px;}
.yfe{bottom:495.428040px;}
.yab{bottom:495.788040px;}
.ydb{bottom:496.148040px;}
.y4d{bottom:497.228040px;}
.y193{bottom:497.948040px;}
.y217{bottom:498.308040px;}
.y1e0{bottom:499.028040px;}
.y205{bottom:499.388040px;}
.y270{bottom:500.108040px;}
.y174{bottom:500.468040px;}
.y29d{bottom:500.828040px;}
.yac{bottom:502.268040px;}
.y140{bottom:503.708040px;}
.y94{bottom:505.148040px;}
.y77{bottom:507.668040px;}
.y4c{bottom:510.548040px;}
.yaa{bottom:512.348040px;}
.y237{bottom:513.068040px;}
.yfd{bottom:513.428040px;}
.yda{bottom:514.508040px;}
.y192{bottom:516.308040px;}
.y1df{bottom:517.028040px;}
.y173{bottom:518.468040px;}
.y29c{bottom:518.828040px;}
.y76{bottom:519.548040px;}
.y13f{bottom:521.348040px;}
.y4b{bottom:524.228040px;}
.y236{bottom:531.068040px;}
.yfc{bottom:531.788040px;}
.y75{bottom:532.148040px;}
.yd9{bottom:532.508040px;}
.y191{bottom:534.308040px;}
.y204{bottom:535.388040px;}
.y1de{bottom:535.748040px;}
.y26f{bottom:536.468040px;}
.y172{bottom:536.828040px;}
.y29b{bottom:537.188040px;}
.y4a{bottom:537.548040px;}
.y13e{bottom:539.708040px;}
.ya7{bottom:543.668040px;}
.y253{bottom:547.988040px;}
.y235{bottom:549.068040px;}
.y1af{bottom:549.788040px;}
.yfb{bottom:550.508040px;}
.yd8{bottom:550.868040px;}
.y49{bottom:551.228040px;}
.y190{bottom:552.668040px;}
.y252{bottom:553.028040px;}
.y1dd{bottom:553.388040px;}
.y203{bottom:553.748040px;}
.y26e{bottom:554.108040px;}
.y171{bottom:554.828040px;}
.y74{bottom:557.708040px;}
.ya6{bottom:561.668040px;}
.y48{bottom:564.908040px;}
.y24d{bottom:567.068040px;}
.y234{bottom:567.428040px;}
.y1ae{bottom:567.788040px;}
.yfa{bottom:568.148040px;}
.yd7{bottom:568.868040px;}
.y73{bottom:571.028040px;}
.y1dc{bottom:571.388040px;}
.y202{bottom:571.748040px;}
.y26d{bottom:572.468040px;}
.y170{bottom:573.188040px;}
.ya5{bottom:575.348040px;}
.y13d{bottom:575.708040px;}
.y47{bottom:577.148040px;}
.y215{bottom:581.468040px;}
.y72{bottom:583.268040px;}
.y1ad{bottom:585.428040px;}
.yf9{bottom:586.148040px;}
.yd6{bottom:586.868040px;}
.y18f{bottom:588.308040px;}
.y1db{bottom:589.748040px;}
.y26c{bottom:590.468040px;}
.y16f{bottom:590.828040px;}
.y29a{bottom:591.188040px;}
.y46{bottom:591.548040px;}
.y13c{bottom:593.708040px;}
.y24c{bottom:594.428040px;}
.ya9{bottom:595.508040px;}
.y71{bottom:595.868040px;}
.y24b{bottom:598.748040px;}
.y214{bottom:599.468040px;}
.y233{bottom:603.428040px;}
.yf8{bottom:604.148040px;}
.y45{bottom:605.228040px;}
.y18e{bottom:606.668040px;}
.y1da{bottom:607.748040px;}
.y70{bottom:608.108040px;}
.ya8{bottom:608.468040px;}
.y16e{bottom:608.828040px;}
.y299{bottom:609.908040px;}
.y13b{bottom:612.068040px;}
.y6f{bottom:621.068040px;}
.y1ac{bottom:621.788040px;}
.yf7{bottom:622.148040px;}
.yd5{bottom:623.588040px;}
.y18d{bottom:624.668040px;}
.y1d9{bottom:625.748040px;}
.y26b{bottom:626.468040px;}
.y16d{bottom:626.828040px;}
.y298{bottom:627.908040px;}
.y13a{bottom:630.428040px;}
.y44{bottom:632.228040px;}
.y6e{bottom:633.668040px;}
.y1ab{bottom:640.148040px;}
.yf6{bottom:640.508040px;}
.yd4{bottom:641.228040px;}
.y18c{bottom:643.388040px;}
.y201{bottom:643.748040px;}
.y1d8{bottom:644.108040px;}
.y26a{bottom:644.828040px;}
.y16c{bottom:645.188040px;}
.y297{bottom:645.548040px;}
.y6d{bottom:646.268040px;}
.y139{bottom:648.428040px;}
.y232{bottom:658.148040px;}
.yf5{bottom:658.508040px;}
.y6c{bottom:658.868040px;}
.y43{bottom:659.228040px;}
.yd3{bottom:659.948040px;}
.y18b{bottom:661.028040px;}
.y1d7{bottom:662.468040px;}
.y200{bottom:662.828040px;}
.y16b{bottom:663.548040px;}
.y138{bottom:666.428040px;}
.y6b{bottom:671.468040px;}
.y1aa{bottom:676.148040px;}
.yf4{bottom:676.868040px;}
.yd2{bottom:677.948040px;}
.y18a{bottom:679.028040px;}
.y1d6{bottom:680.108040px;}
.y269{bottom:680.828040px;}
.y16a{bottom:681.548040px;}
.y296{bottom:681.908040px;}
.y6a{bottom:684.428040px;}
.y42{bottom:686.228040px;}
.y1a9{bottom:694.148040px;}
.yf3{bottom:694.868040px;}
.yd1{bottom:695.588040px;}
.y2c4{bottom:696.668040px;}
.y69{bottom:697.388040px;}
.y189{bottom:697.748040px;}
.y1d5{bottom:698.108040px;}
.y268{bottom:698.828040px;}
.y41{bottom:699.908040px;}
.y137{bottom:702.428040px;}
.y68{bottom:709.988040px;}
.y2d4{bottom:711.788040px;}
.y231{bottom:712.148040px;}
.y1a8{bottom:712.508040px;}
.yf2{bottom:712.868040px;}
.yd0{bottom:714.308040px;}
.y188{bottom:715.028040px;}
.y1d4{bottom:716.108040px;}
.y251{bottom:716.828040px;}
.y267{bottom:717.188040px;}
.y169{bottom:717.908040px;}
.y295{bottom:718.268040px;}
.y136{bottom:721.148040px;}
.y67{bottom:722.228040px;}
.y40{bottom:726.908040px;}
.y2d3{bottom:729.068040px;}
.y1a7{bottom:730.508040px;}
.yf1{bottom:730.868040px;}
.ycf{bottom:731.588040px;}
.y2c3{bottom:732.668040px;}
.ya{bottom:732.736050px;}
.y187{bottom:733.028040px;}
.y1d3{bottom:734.108040px;}
.y66{bottom:734.828040px;}
.y266{bottom:735.188040px;}
.y168{bottom:735.908040px;}
.y294{bottom:736.268040px;}
.y135{bottom:738.428040px;}
.y3f{bottom:740.228040px;}
.y65{bottom:747.428040px;}
.y230{bottom:748.508040px;}
.yf0{bottom:748.868040px;}
.yce{bottom:749.948040px;}
.y2c2{bottom:750.668040px;}
.y186{bottom:751.388040px;}
.y1d2{bottom:752.108040px;}
.y1ff{bottom:752.468040px;}
.y265{bottom:753.188040px;}
.y167{bottom:753.548040px;}
.y9{bottom:753.616050px;}
.y293{bottom:753.908040px;}
.y134{bottom:756.428040px;}
.y64{bottom:760.388040px;}
.y2d2{bottom:765.428040px;}
.y22f{bottom:766.508040px;}
.y1a6{bottom:766.868040px;}
.y3e{bottom:767.228040px;}
.ycd{bottom:768.308040px;}
.y2c1{bottom:769.388040px;}
.y185{bottom:769.748040px;}
.y1d1{bottom:770.108040px;}
.y1fe{bottom:770.828040px;}
.y264{bottom:771.188040px;}
.y166{bottom:771.908040px;}
.y63{bottom:772.268040px;}
.y292{bottom:772.628040px;}
.y133{bottom:774.788040px;}
.y3d{bottom:780.548040px;}
.y2d1{bottom:783.428040px;}
.y1a5{bottom:784.508040px;}
.y62{bottom:785.228040px;}
.ycc{bottom:785.948040px;}
.y2c0{bottom:786.668040px;}
.y184{bottom:788.108040px;}
.y1fd{bottom:788.468040px;}
.y1d0{bottom:788.828040px;}
.y263{bottom:789.188040px;}
.y165{bottom:790.268040px;}
.y291{bottom:790.628040px;}
.y132{bottom:792.428040px;}
.y61{bottom:797.828040px;}
.y2d0{bottom:801.428040px;}
.y22e{bottom:802.508040px;}
.y1a4{bottom:802.868040px;}
.yef{bottom:803.588040px;}
.ycb{bottom:804.668040px;}
.y2bf{bottom:805.028040px;}
.y31{bottom:806.108040px;}
.y1cf{bottom:806.468040px;}
.y262{bottom:807.188040px;}
.y164{bottom:807.908040px;}
.y290{bottom:808.268040px;}
.y183{bottom:808.988040px;}
.y60{bottom:810.428040px;}
.y131{bottom:810.788040px;}
.y8{bottom:816.976050px;}
.y30{bottom:819.788040px;}
.y1a3{bottom:820.868040px;}
.yee{bottom:821.228040px;}
.yca{bottom:822.308040px;}
.y2be{bottom:823.028040px;}
.y5f{bottom:823.388040px;}
.y1ce{bottom:824.468040px;}
.y261{bottom:825.188040px;}
.y163{bottom:825.908040px;}
.y28f{bottom:826.628040px;}
.y130{bottom:828.788040px;}
.y2f{bottom:833.108040px;}
.y2cf{bottom:837.788040px;}
.y22d{bottom:838.508040px;}
.y7{bottom:838.576050px;}
.y1a2{bottom:838.868040px;}
.yed{bottom:839.588040px;}
.yc9{bottom:839.948040px;}
.y2bd{bottom:841.388040px;}
.y182{bottom:841.748040px;}
.y1cd{bottom:842.468040px;}
.y162{bottom:843.908040px;}
.y28e{bottom:844.268040px;}
.y2e{bottom:846.788040px;}
.y3c{bottom:847.508040px;}
.y37{bottom:848.588040px;}
.yec{bottom:853.988040px;}
.y2ce{bottom:855.788040px;}
.y1a1{bottom:856.868040px;}
.yc8{bottom:858.308040px;}
.y2bc{bottom:859.028040px;}
.y3b{bottom:859.388040px;}
.y181{bottom:859.748040px;}
.y2d{bottom:860.108040px;}
.y1cc{bottom:860.468040px;}
.y36{bottom:860.828040px;}
.y260{bottom:861.188040px;}
.y161{bottom:862.268040px;}
.y12f{bottom:864.788040px;}
.y3a{bottom:872.708040px;}
.y2c{bottom:873.428040px;}
.y35{bottom:873.788040px;}
.y2cd{bottom:874.508040px;}
.y22c{bottom:874.868040px;}
.y1a0{bottom:875.228040px;}
.y123{bottom:875.483040px;}
.yeb{bottom:875.588040px;}
.yc7{bottom:876.308040px;}
.y2bb{bottom:877.388040px;}
.y180{bottom:878.108040px;}
.y1cb{bottom:878.468040px;}
.y1fc{bottom:878.828040px;}
.y25f{bottom:879.188040px;}
.y160{bottom:880.268040px;}
.y28d{bottom:880.628040px;}
.y12e{bottom:883.148040px;}
.y39{bottom:884.948040px;}
.y34{bottom:886.388040px;}
.y2b{bottom:887.108040px;}
.y2cc{bottom:892.148040px;}
.y19f{bottom:893.228040px;}
.yea{bottom:893.588040px;}
.yc6{bottom:894.668040px;}
.y2ba{bottom:895.748040px;}
.y17f{bottom:896.108040px;}
.y122{bottom:897.083040px;}
.y1fb{bottom:897.548040px;}
.y15f{bottom:898.268040px;}
.y28c{bottom:898.628040px;}
.y33{bottom:898.988040px;}
.y2a{bottom:900.428040px;}
.y12d{bottom:900.788040px;}
.y6{bottom:901.216050px;}
.y2cb{bottom:909.788040px;}
.y38{bottom:910.148040px;}
.y22b{bottom:910.868040px;}
.y19e{bottom:911.228040px;}
.y32{bottom:911.588040px;}
.yc5{bottom:912.308040px;}
.y2b9{bottom:913.388040px;}
.y17e{bottom:914.108040px;}
.y1ca{bottom:914.468040px;}
.y1fa{bottom:915.188040px;}
.y25e{bottom:915.548040px;}
.y15e{bottom:916.268040px;}
.y28b{bottom:917.708040px;}
.y12c{bottom:919.508040px;}
.y5{bottom:923.176050px;}
.y29{bottom:924.548040px;}
.y2ca{bottom:928.148040px;}
.y19d{bottom:929.228040px;}
.ye9{bottom:930.308040px;}
.yc4{bottom:930.668040px;}
.y2b8{bottom:931.748040px;}
.y17d{bottom:932.108040px;}
.y1c9{bottom:932.828040px;}
.y1f9{bottom:933.188040px;}
.y25d{bottom:933.908040px;}
.y15d{bottom:934.268040px;}
.y28a{bottom:934.628040px;}
.y12b{bottom:937.508040px;}
.y28{bottom:938.228040px;}
.y121{bottom:940.283040px;}
.ya0{bottom:942.548040px;}
.y2c9{bottom:946.508040px;}
.y19c{bottom:947.588040px;}
.ye8{bottom:947.948040px;}
.yc3{bottom:948.668040px;}
.y2b7{bottom:949.748040px;}
.y17c{bottom:950.108040px;}
.y1f8{bottom:951.188040px;}
.y1c8{bottom:951.548040px;}
.y15c{bottom:952.628040px;}
.y9f{bottom:952.988040px;}
.y12a{bottom:955.148040px;}
.ya4{bottom:956.228040px;}
.y120{bottom:961.883040px;}
.y2c8{bottom:964.508040px;}
.y22a{bottom:965.228040px;}
.y9e{bottom:965.588040px;}
.y19b{bottom:966.308040px;}
.yc2{bottom:966.668040px;}
.y2b6{bottom:967.748040px;}
.y17b{bottom:968.108040px;}
.y1c7{bottom:969.188040px;}
.y25c{bottom:969.908040px;}
.y15b{bottom:970.988040px;}
.y129{bottom:973.508040px;}
.ya3{bottom:973.868040px;}
.y27{bottom:979.268040px;}
.y11f{bottom:983.483040px;}
.y19a{bottom:983.588040px;}
.ye7{bottom:983.948040px;}
.yc1{bottom:985.028040px;}
.ya2{bottom:986.108040px;}
.y17a{bottom:986.468040px;}
.y1c6{bottom:987.188040px;}
.y1f7{bottom:987.548040px;}
.y25b{bottom:988.628040px;}
.y15a{bottom:988.988040px;}
.y26{bottom:989.708040px;}
.y128{bottom:991.508040px;}
.y2c7{bottom:1001.228040px;}
.y229{bottom:1001.588040px;}
.y199{bottom:1001.948040px;}
.ye6{bottom:1002.668040px;}
.yc0{bottom:1003.028040px;}
.ya1{bottom:1003.388040px;}
.y179{bottom:1004.468040px;}
.y11e{bottom:1005.083040px;}
.y1c5{bottom:1005.548040px;}
.y1f6{bottom:1005.908040px;}
.y25a{bottom:1006.268040px;}
.y159{bottom:1006.988040px;}
.y289{bottom:1007.348040px;}
.y25{bottom:1008.788040px;}
.y127{bottom:1010.228040px;}
.y24f{bottom:1012.388040px;}
.y198{bottom:1019.948040px;}
.ybf{bottom:1021.028040px;}
.y2b5{bottom:1022.468040px;}
.y178{bottom:1022.828040px;}
.y1c4{bottom:1023.548040px;}
.y1f5{bottom:1023.908040px;}
.y259{bottom:1024.628040px;}
.y158{bottom:1024.988040px;}
.y288{bottom:1025.708040px;}
.y11d{bottom:1026.683040px;}
.y126{bottom:1027.868040px;}
.y2c6{bottom:1037.588040px;}
.y197{bottom:1038.308040px;}
.y2b4{bottom:1040.828040px;}
.y177{bottom:1041.188040px;}
.y1c3{bottom:1041.548040px;}
.y1f4{bottom:1042.268040px;}
.y258{bottom:1042.628040px;}
.y157{bottom:1043.348040px;}
.y287{bottom:1043.708040px;}
.y125{bottom:1045.868040px;}
.y11c{bottom:1048.283040px;}
.y24{bottom:1048.748040px;}
.y256{bottom:1053.788040px;}
.ybe{bottom:1063.508040px;}
.y11b{bottom:1069.883040px;}
.y255{bottom:1076.468040px;}
.ybd{bottom:1087.628040px;}
.y11a{bottom:1091.483040px;}
.y2c5{bottom:1104.548040px;}
.y228{bottom:1104.908040px;}
.y196{bottom:1105.268040px;}
.y1c2{bottom:1107.428040px;}
.y124{bottom:1112.468040px;}
.y24e{bottom:1114.628040px;}
.y9d{bottom:1131.908040px;}
.y2b3{bottom:1139.828040px;}
.y9c{bottom:1143.428040px;}
.y254{bottom:1159.988040px;}
.y9b{bottom:1162.148040px;}
.y250{bottom:1166.468040px;}
.h19{height:15.644531px;}
.h14{height:18.773438px;}
.h8c{height:28.160156px;}
.h18{height:31.289062px;}
.h23{height:34.417969px;}
.h37{height:35.360156px;}
.h25{height:36.106875px;}
.h2c{height:37.297969px;}
.h1a{height:37.546875px;}
.h27{height:37.795781px;}
.h33{height:38.044687px;}
.h35{height:38.986875px;}
.h24{height:39.235781px;}
.h2a{height:39.484688px;}
.h22{height:40.675781px;}
.h31{height:40.924687px;}
.h29{height:42.115781px;}
.h26{height:42.364687px;}
.h8a{height:42.560156px;}
.h2b{height:43.555781px;}
.h28{height:43.804688px;}
.h2d{height:46.186875px;}
.h12{height:46.933594px;}
.h85{height:47.182500px;}
.ha0{height:49.315781px;}
.h3c{height:49.813594px;}
.he{height:50.062500px;}
.h30{height:50.560313px;}
.h67{height:50.616000px;}
.h74{height:51.253594px;}
.h79{height:51.502500px;}
.h2f{height:52.000313px;}
.h78{height:52.444688px;}
.h8e{height:52.942500px;}
.h16{height:53.191406px;}
.h2e{height:53.440312px;}
.h32{height:54.880312px;}
.h10{height:56.320312px;}
.h62{height:56.569219px;}
.h3f{height:57.013594px;}
.h75{height:58.009219px;}
.h89{height:58.258125px;}
.h66{height:58.392000px;}
.h17{height:59.449219px;}
.h48{height:59.698125px;}
.h77{height:59.947031px;}
.h71{height:60.889219px;}
.h59{height:61.138125px;}
.h57{height:61.387031px;}
.h97{height:62.329219px;}
.h1b{height:62.578125px;}
.h56{height:62.827031px;}
.h4b{height:63.075937px;}
.h98{height:63.769219px;}
.h44{height:64.018125px;}
.h8b{height:64.213594px;}
.h5a{height:64.267031px;}
.h49{height:64.515937px;}
.h7a{height:65.458125px;}
.hd{height:65.707031px;}
.h65{height:65.902500px;}
.h46{height:65.955937px;}
.h61{height:66.204844px;}
.h6b{height:66.453750px;}
.h99{height:66.898125px;}
.h72{height:67.147031px;}
.h51{height:67.395937px;}
.h60{height:67.644844px;}
.h6c{height:67.893750px;}
.h9f{height:68.142656px;}
.h88{height:68.338125px;}
.h52{height:68.587031px;}
.h15{height:68.835938px;}
.h5f{height:69.084844px;}
.h4d{height:69.333750px;}
.h68{height:69.778125px;}
.h94{height:70.027031px;}
.h45{height:70.275937px;}
.h43{height:70.524844px;}
.h54{height:70.773750px;}
.h9c{height:71.218125px;}
.h91{height:71.467031px;}
.h81{height:71.715938px;}
.h4c{height:71.964844px;}
.h47{height:72.213750px;}
.h50{height:72.462656px;}
.h58{height:72.658125px;}
.h87{height:72.907031px;}
.h95{height:73.155938px;}
.h7f{height:73.404844px;}
.h8d{height:73.600312px;}
.h4a{height:73.653750px;}
.h4f{height:73.902656px;}
.h64{height:74.151562px;}
.h9a{height:74.844844px;}
.hc{height:75.093750px;}
.h6e{height:75.342656px;}
.h93{height:75.787031px;}
.h73{height:75.840469px;}
.h76{height:76.035937px;}
.h69{height:76.284844px;}
.h55{height:76.533750px;}
.h5d{height:76.782656px;}
.h53{height:77.031562px;}
.h5c{height:77.280469px;}
.h84{height:77.973750px;}
.hf{height:78.222656px;}
.h5e{height:78.471562px;}
.h4e{height:78.720469px;}
.h5b{height:78.915937px;}
.h9d{height:79.164844px;}
.h90{height:79.413750px;}
.h7{height:79.662656px;}
.h6d{height:79.911562px;}
.h42{height:80.160469px;}
.h7d{height:81.102656px;}
.h13{height:81.351562px;}
.h9e{height:81.600469px;}
.h7e{height:81.795937px;}
.h92{height:82.542656px;}
.h83{height:82.791562px;}
.h41{height:83.040469px;}
.h8f{height:84.231563px;}
.h1c{height:84.480469px;}
.h3e{height:84.587344px;}
.h7b{height:84.924844px;}
.h7c{height:85.173750px;}
.h9{height:85.422656px;}
.h3d{height:85.920469px;}
.h70{height:86.418281px;}
.h96{height:86.613750px;}
.h3b{height:87.111563px;}
.h82{height:87.360469px;}
.h6a{height:87.751406px;}
.hb{height:89.742656px;}
.h6f{height:89.938125px;}
.h80{height:91.182656px;}
.h2{height:93.867188px;}
.h86{height:95.004844px;}
.h63{height:100.818281px;}
.h11{height:103.253906px;}
.h3a{height:110.400469px;}
.h1d{height:115.413750px;}
.h8{height:118.898438px;}
.h38{height:119.289375px;}
.ha{height:120.587344px;}
.h34{height:128.285156px;}
.h39{height:128.782969px;}
.h36{height:131.414062px;}
.h40{height:135.573750px;}
.h6{height:137.671875px;}
.h9b{height:172.089844px;}
.h20{height:212.765625px;}
.h21{height:225.281250px;}
.h5{height:247.183594px;}
.h3{height:422.402344px;}
.h4{height:522.527344px;}
.h1f{height:1168.500000px;}
.h1e{height:1168.764540px;}
.h0{height:1177.336050px;}
.h1{height:1177.500000px;}
.w2{width:850.144050px;}
.w3{width:850.500000px;}
.w0{width:858.716550px;}
.w1{width:858.750000px;}
.x34{left:-4.543950px;}
.x33{left:-3.103950px;}
.x32{left:-1.303950px;}
.x0{left:0.000000px;}
.x1{left:4.096050px;}
.x47{left:8.416050px;}
.x5d{left:16.691550px;}
.x88{left:17.776050px;}
.x7e{left:19.936050px;}
.x72{left:28.576050px;}
.x5e{left:36.856050px;}
.x36{left:43.336050px;}
.x21{left:44.776050px;}
.x20{left:45.856050px;}
.x1f{left:46.936050px;}
.x19{left:48.016050px;}
.x35{left:49.456050px;}
.x3{left:52.336050px;}
.x38{left:55.936050px;}
.x2b{left:60.976050px;}
.x2c{left:63.136050px;}
.x37{left:67.456050px;}
.x7b{left:76.456050px;}
.x8{left:94.816050px;}
.x7{left:97.696050px;}
.x7f{left:113.176050px;}
.x46{left:116.056050px;}
.x12{left:120.376050px;}
.x31{left:127.936050px;}
.x2d{left:130.456050px;}
.x30{left:133.336050px;}
.x2{left:136.216050px;}
.x7c{left:140.536050px;}
.x45{left:141.616050px;}
.x66{left:163.936050px;}
.x65{left:165.016050px;}
.x64{left:166.096050px;}
.x63{left:167.536050px;}
.x62{left:168.616050px;}
.x61{left:169.696050px;}
.x5b{left:170.776050px;}
.x5f{left:171.856050px;}
.x5a{left:172.936050px;}
.x50{left:174.376050px;}
.x4f{left:175.816050px;}
.x4e{left:176.896050px;}
.x4d{left:177.976050px;}
.x4b{left:179.056050px;}
.x4a{left:180.496050px;}
.x82{left:181.576050px;}
.x81{left:182.656050px;}
.x83{left:183.736050px;}
.x73{left:185.176050px;}
.x79{left:190.576050px;}
.x60{left:191.656050px;}
.x59{left:194.896050px;}
.x6c{left:198.856050px;}
.x4c{left:201.376050px;}
.x8b{left:202.816050px;}
.x6{left:204.256050px;}
.x48{left:232.336050px;}
.x13{left:242.776050px;}
.x16{left:292.816050px;}
.x28{left:295.696050px;}
.xd{left:296.776050px;}
.x17{left:298.936050px;}
.x18{left:300.376050px;}
.x9{left:301.456050px;}
.xc{left:303.256050px;}
.xb{left:306.496050px;}
.xa{left:307.936050px;}
.x27{left:319.456050px;}
.x29{left:320.536050px;}
.x25{left:321.616050px;}
.x23{left:323.056050px;}
.x1a{left:324.136050px;}
.x26{left:334.216050px;}
.x24{left:336.016050px;}
.x22{left:337.096050px;}
.x5{left:342.496050px;}
.x3c{left:351.136050px;}
.x3b{left:354.016050px;}
.x39{left:361.216050px;}
.xe{left:362.296050px;}
.xf{left:363.376050px;}
.x15{left:374.896050px;}
.x14{left:384.616050px;}
.x7d{left:386.056050px;}
.x10{left:401.536050px;}
.x4{left:404.776050px;}
.x11{left:413.056050px;}
.x77{left:495.136050px;}
.x76{left:496.216050px;}
.x74{left:497.296050px;}
.x6b{left:498.736050px;}
.x69{left:500.536050px;}
.x68{left:502.336050px;}
.x67{left:503.776050px;}
.x58{left:504.856050px;}
.x56{left:505.936050px;}
.x55{left:507.016050px;}
.x54{left:508.096050px;}
.x52{left:509.176050px;}
.x51{left:510.616050px;}
.x6e{left:511.696050px;}
.x7a{left:513.136050px;}
.x84{left:514.216050px;}
.x86{left:515.656050px;}
.x75{left:517.096050px;}
.x6a{left:521.776050px;}
.x57{left:526.816050px;}
.x6f{left:527.896050px;}
.x53{left:529.336050px;}
.x70{left:532.216050px;}
.x85{left:535.816050px;}
.x87{left:545.176050px;}
.x6d{left:548.056050px;}
.x8c{left:549.496050px;}
.x49{left:584.416050px;}
.x8d{left:607.816050px;}
.x80{left:625.096050px;}
.x8e{left:626.176050px;}
.x71{left:627.976050px;}
.x5c{left:629.056050px;}
.x1d{left:634.816050px;}
.x3e{left:660.376050px;}
.x44{left:661.456050px;}
.x43{left:683.776050px;}
.x1e{left:708.976050px;}
.x1c{left:710.056050px;}
.x1b{left:716.176050px;}
.x2a{left:732.736050px;}
.x3f{left:748.576050px;}
.x3d{left:753.256050px;}
.x42{left:783.136050px;}
.x40{left:787.816050px;}
.x3a{left:795.736050px;}
.x41{left:796.816050px;}
.x78{left:853.336050px;}
.x89{left:855.136050px;}
.x8a{left:863.776050px;}
.x2e{left:866.656050px;}
.x2f{left:872.056050px;}
@media print{
.va{vertical-align:-101.120000pt;}
.v9{vertical-align:-46.080000pt;}
.v16{vertical-align:-39.680000pt;}
.v30{vertical-align:-38.400000pt;}
.vb{vertical-align:-37.120000pt;}
.vd{vertical-align:-34.560000pt;}
.v1c{vertical-align:-33.280000pt;}
.v2e{vertical-align:-32.000000pt;}
.v25{vertical-align:-30.720000pt;}
.v2d{vertical-align:-29.440000pt;}
.v2c{vertical-align:-28.160000pt;}
.v23{vertical-align:-26.880000pt;}
.v24{vertical-align:-25.600000pt;}
.v22{vertical-align:-24.320000pt;}
.v1b{vertical-align:-19.200000pt;}
.v29{vertical-align:-17.920000pt;}
.v17{vertical-align:-16.640000pt;}
.v18{vertical-align:-15.360000pt;}
.v1f{vertical-align:-14.080000pt;}
.v21{vertical-align:-12.800000pt;}
.v14{vertical-align:-11.520000pt;}
.v13{vertical-align:-10.240000pt;}
.v28{vertical-align:-8.960000pt;}
.v10{vertical-align:-7.680000pt;}
.v12{vertical-align:-6.400000pt;}
.vc{vertical-align:-5.120000pt;}
.v5{vertical-align:-3.840000pt;}
.v7{vertical-align:-2.560000pt;}
.v6{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280000pt;}
.v4{vertical-align:2.560000pt;}
.vf{vertical-align:3.840000pt;}
.v2{vertical-align:5.120000pt;}
.v3{vertical-align:6.400000pt;}
.v11{vertical-align:7.680000pt;}
.v1d{vertical-align:8.960000pt;}
.v8{vertical-align:10.240000pt;}
.v20{vertical-align:11.520000pt;}
.v2f{vertical-align:12.800000pt;}
.v26{vertical-align:14.080000pt;}
.v2b{vertical-align:20.480000pt;}
.v1a{vertical-align:23.040000pt;}
.v2a{vertical-align:24.320000pt;}
.v19{vertical-align:28.160000pt;}
.v27{vertical-align:30.720000pt;}
.v31{vertical-align:34.560000pt;}
.ve{vertical-align:35.840000pt;}
.v1e{vertical-align:53.760000pt;}
.v15{vertical-align:67.840000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:16.565333pt;}
.ls2{letter-spacing:31.093333pt;}
.ls0{letter-spacing:46.736000pt;}
.ls3{letter-spacing:94.904000pt;}
.ls5{letter-spacing:119.368000pt;}
.ls4{letter-spacing:234.234667pt;}
.ls6{letter-spacing:2516.874667pt;}
.ws8{word-spacing:-31.136000pt;}
.wsd{word-spacing:-28.912000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:0.725333pt;}
.ws7{word-spacing:14.389333pt;}
.ws9{word-spacing:19.888000pt;}
.wsb{word-spacing:47.600000pt;}
.ws14{word-spacing:48.608000pt;}
.ws10{word-spacing:51.776000pt;}
.ws12{word-spacing:55.280000pt;}
.wsc{word-spacing:67.600000pt;}
.ws13{word-spacing:78.720000pt;}
.ws3{word-spacing:81.336000pt;}
.ws11{word-spacing:82.061333pt;}
.wsf{word-spacing:86.960000pt;}
.ws2{word-spacing:166.240000pt;}
.ws1{word-spacing:390.496000pt;}
.ws5{word-spacing:404.928000pt;}
.ws0{word-spacing:616.128000pt;}
.wse{word-spacing:1174.944000pt;}
.wsa{word-spacing:1345.536000pt;}
._2c{margin-left:-16.688000pt;}
._28{margin-left:-10.656000pt;}
._2e{margin-left:-2.728000pt;}
._4{width:1.506667pt;}
._2{width:2.554667pt;}
._7{width:3.557333pt;}
._0{width:4.506667pt;}
._2f{width:5.400000pt;}
._5{width:6.293333pt;}
._1{width:7.469333pt;}
._10{width:8.592000pt;}
._3{width:9.802667pt;}
._c{width:10.717333pt;}
._6{width:11.613333pt;}
._11{width:12.693333pt;}
._9{width:14.376000pt;}
._27{width:15.517333pt;}
._8{width:16.640000pt;}
._18{width:18.122667pt;}
._1a{width:20.026667pt;}
._30{width:22.032000pt;}
._13{width:23.309333pt;}
._1f{width:25.338667pt;}
._35{width:26.650667pt;}
._2a{width:29.656000pt;}
._16{width:35.944000pt;}
._33{width:37.584000pt;}
._32{width:47.512000pt;}
._a{width:48.490667pt;}
._1c{width:53.168000pt;}
._2b{width:63.520000pt;}
._2d{width:70.656000pt;}
._36{width:75.269333pt;}
._31{width:105.314667pt;}
._34{width:128.072000pt;}
._1e{width:181.128000pt;}
._17{width:195.906667pt;}
._b{width:199.877333pt;}
._29{width:205.304000pt;}
._f{width:221.768000pt;}
._22{width:225.717333pt;}
._20{width:228.517333pt;}
._d{width:237.896000pt;}
._1b{width:247.330667pt;}
._24{width:391.986667pt;}
._12{width:399.424000pt;}
._26{width:492.237333pt;}
._25{width:500.674667pt;}
._21{width:504.576000pt;}
._e{width:514.832000pt;}
._14{width:519.442667pt;}
._15{width:522.368000pt;}
._23{width:682.882667pt;}
._19{width:696.301333pt;}
._1d{width:1061.869333pt;}
.fs1c{font-size:13.333333pt;}
.fs1a{font-size:16.000000pt;}
.fs22{font-size:18.666667pt;}
.fs29{font-size:21.333333pt;}
.fs16{font-size:24.000000pt;}
.fs19{font-size:26.666667pt;}
.fs21{font-size:29.333333pt;}
.fs1d{font-size:32.000000pt;}
.fs11{font-size:34.666667pt;}
.fs14{font-size:37.333333pt;}
.fs17{font-size:40.000000pt;}
.fs13{font-size:42.666667pt;}
.fs1b{font-size:45.333333pt;}
.fs10{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fsf{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:61.333333pt;}
.fsa{font-size:64.000000pt;}
.fs5{font-size:66.666667pt;}
.fs18{font-size:69.333333pt;}
.fs1e{font-size:72.000000pt;}
.fs25{font-size:74.666667pt;}
.fs28{font-size:77.333333pt;}
.fs0{font-size:80.000000pt;}
.fs12{font-size:82.666667pt;}
.fs15{font-size:88.000000pt;}
.fse{font-size:90.666667pt;}
.fsc{font-size:93.333333pt;}
.fs27{font-size:98.666667pt;}
.fs9{font-size:101.333333pt;}
.fsd{font-size:104.000000pt;}
.fs23{font-size:109.333333pt;}
.fs24{font-size:112.000000pt;}
.fs26{font-size:114.666667pt;}
.fs4{font-size:117.333333pt;}
.fs2a{font-size:146.666667pt;}
.fs1f{font-size:181.333333pt;}
.fs20{font-size:192.000000pt;}
.fs3{font-size:210.666667pt;}
.fs1{font-size:360.000000pt;}
.fs2{font-size:445.333333pt;}
.y22{bottom:-5.319067pt;}
.y2b2{bottom:-3.139520pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:7.740480pt;}
.y4{bottom:7.800933pt;}
.ybc{bottom:14.780480pt;}
.y1c1{bottom:21.820480pt;}
.y2d6{bottom:22.140480pt;}
.y257{bottom:22.780480pt;}
.y119{bottom:25.340480pt;}
.y21{bottom:27.960933pt;}
.y216{bottom:29.500480pt;}
.y2b1{bottom:30.140480pt;}
.y176{bottom:34.940480pt;}
.y20{bottom:37.560933pt;}
.y9a{bottom:47.100480pt;}
.y3{bottom:49.080933pt;}
.y98{bottom:51.260480pt;}
.y99{bottom:57.660480pt;}
.yba{bottom:59.580480pt;}
.y1c0{bottom:69.820480pt;}
.y227{bottom:72.060480pt;}
.y213{bottom:73.340480pt;}
.y1f3{bottom:73.980480pt;}
.y286{bottom:74.940480pt;}
.y2d5{bottom:75.900480pt;}
.y118{bottom:76.860480pt;}
.y156{bottom:77.500480pt;}
.y24a{bottom:85.820480pt;}
.y1bf{bottom:86.140480pt;}
.y226{bottom:88.060480pt;}
.yb9{bottom:88.380480pt;}
.y212{bottom:89.660480pt;}
.y1f2{bottom:89.980480pt;}
.y285{bottom:90.620480pt;}
.y2b0{bottom:91.260480pt;}
.y155{bottom:93.500480pt;}
.y97{bottom:96.700480pt;}
.yb8{bottom:97.020480pt;}
.y249{bottom:102.140480pt;}
.y1be{bottom:102.460480pt;}
.y225{bottom:104.060480pt;}
.y2{bottom:104.120933pt;}
.y1f1{bottom:105.980480pt;}
.y211{bottom:106.300480pt;}
.y284{bottom:106.940480pt;}
.y2af{bottom:107.580480pt;}
.y154{bottom:109.500480pt;}
.yb7{bottom:110.140480pt;}
.y23{bottom:111.800933pt;}
.y93{bottom:112.700480pt;}
.yb6{bottom:114.620480pt;}
.y248{bottom:118.140480pt;}
.y1bd{bottom:118.460480pt;}
.y111{bottom:118.780480pt;}
.y117{bottom:119.740480pt;}
.y224{bottom:120.060480pt;}
.yb5{bottom:121.660480pt;}
.y1f0{bottom:121.980480pt;}
.y210{bottom:122.300480pt;}
.y283{bottom:122.940480pt;}
.y2ae{bottom:123.580480pt;}
.y92{bottom:124.220480pt;}
.y153{bottom:125.820480pt;}
.y247{bottom:134.140480pt;}
.y110{bottom:134.780480pt;}
.y91{bottom:135.420480pt;}
.y223{bottom:136.060480pt;}
.y282{bottom:136.380480pt;}
.y20f{bottom:138.300480pt;}
.y2ad{bottom:139.900480pt;}
.y152{bottom:141.820480pt;}
.y90{bottom:146.620480pt;}
.y246{bottom:150.140480pt;}
.y1bc{bottom:150.460480pt;}
.y1{bottom:150.520933pt;}
.y10f{bottom:150.780480pt;}
.y116{bottom:151.740480pt;}
.y222{bottom:152.380480pt;}
.y1ef{bottom:154.300480pt;}
.y281{bottom:155.260480pt;}
.y2ac{bottom:156.220480pt;}
.yb4{bottom:156.540480pt;}
.y8f{bottom:157.820480pt;}
.y151{bottom:158.140480pt;}
.y1bb{bottom:166.460480pt;}
.y10e{bottom:167.100480pt;}
.y115{bottom:168.060480pt;}
.y221{bottom:168.380480pt;}
.y8e{bottom:169.340480pt;}
.y20e{bottom:170.300480pt;}
.y1ee{bottom:170.620480pt;}
.y280{bottom:171.260480pt;}
.y2ab{bottom:171.900480pt;}
.y150{bottom:174.140480pt;}
.y8d{bottom:180.540480pt;}
.y245{bottom:182.460480pt;}
.y1ba{bottom:182.780480pt;}
.y10d{bottom:183.420480pt;}
.y114{bottom:183.740480pt;}
.y220{bottom:184.060480pt;}
.y1ed{bottom:186.940480pt;}
.y27f{bottom:187.580480pt;}
.y2aa{bottom:187.900480pt;}
.y1f{bottom:190.200933pt;}
.y14f{bottom:190.460480pt;}
.yb3{bottom:191.420480pt;}
.y8c{bottom:191.740480pt;}
.y244{bottom:198.460480pt;}
.y1b9{bottom:198.780480pt;}
.y10c{bottom:199.100480pt;}
.y113{bottom:199.740480pt;}
.y21f{bottom:200.380480pt;}
.y1b{bottom:201.720933pt;}
.y20d{bottom:202.620480pt;}
.y8b{bottom:203.260480pt;}
.y27e{bottom:203.580480pt;}
.y2a9{bottom:203.900480pt;}
.y18{bottom:203.960933pt;}
.y5e{bottom:204.540480pt;}
.yb2{bottom:204.860480pt;}
.y14e{bottom:206.460480pt;}
.y1a{bottom:207.480933pt;}
.yb1{bottom:209.980480pt;}
.y1e{bottom:214.520933pt;}
.y1b8{bottom:214.780480pt;}
.y5d{bottom:215.100480pt;}
.y17{bottom:215.480933pt;}
.y112{bottom:216.060480pt;}
.y243{bottom:216.700480pt;}
.y1ec{bottom:218.620480pt;}
.yb0{bottom:218.940480pt;}
.y27d{bottom:219.580480pt;}
.y2a8{bottom:220.220480pt;}
.y14d{bottom:222.460480pt;}
.y8a{bottom:225.660480pt;}
.y1d{bottom:226.680933pt;}
.y5c{bottom:228.540480pt;}
.y16{bottom:229.240933pt;}
.y10b{bottom:231.100480pt;}
.y1b7{bottom:231.420480pt;}
.y19{bottom:231.800933pt;}
.y21e{bottom:232.380480pt;}
.y15{bottom:233.400933pt;}
.y20c{bottom:234.620480pt;}
.y1eb{bottom:234.940480pt;}
.y27c{bottom:235.900480pt;}
.y2a7{bottom:236.220480pt;}
.y89{bottom:236.860480pt;}
.y14c{bottom:238.460480pt;}
.y5b{bottom:240.380480pt;}
.y1c{bottom:244.920933pt;}
.y242{bottom:247.100480pt;}
.y10a{bottom:247.420480pt;}
.y88{bottom:248.060480pt;}
.y14{bottom:248.440933pt;}
.y21d{bottom:248.700480pt;}
.y20b{bottom:251.260480pt;}
.y27b{bottom:251.900480pt;}
.y5a{bottom:252.540480pt;}
.yaf{bottom:253.820480pt;}
.y14b{bottom:255.100480pt;}
.y87{bottom:259.260480pt;}
.y241{bottom:262.780480pt;}
.y109{bottom:263.420480pt;}
.ye5{bottom:264.380480pt;}
.y13{bottom:264.760933pt;}
.y20a{bottom:266.620480pt;}
.y1ea{bottom:266.940480pt;}
.y27a{bottom:267.900480pt;}
.y2a6{bottom:268.220480pt;}
.y86{bottom:270.460480pt;}
.y12{bottom:273.080933pt;}
.y240{bottom:279.100480pt;}
.y108{bottom:279.420480pt;}
.y1b6{bottom:279.740480pt;}
.ye4{bottom:280.060480pt;}
.y21c{bottom:280.700480pt;}
.y85{bottom:281.660480pt;}
.y1e9{bottom:282.940480pt;}
.y279{bottom:283.900480pt;}
.y2a5{bottom:284.540480pt;}
.y14a{bottom:286.460480pt;}
.y11{bottom:286.840933pt;}
.y59{bottom:288.380480pt;}
.y84{bottom:292.860480pt;}
.y23f{bottom:295.100480pt;}
.y1b5{bottom:295.740480pt;}
.y107{bottom:296.060480pt;}
.ye3{bottom:296.380480pt;}
.y58{bottom:298.940480pt;}
.y209{bottom:299.260480pt;}
.y278{bottom:299.900480pt;}
.y2a4{bottom:300.540480pt;}
.y149{bottom:302.780480pt;}
.y83{bottom:304.060480pt;}
.y57{bottom:309.820480pt;}
.yae{bottom:310.460480pt;}
.y23e{bottom:311.100480pt;}
.y106{bottom:311.740480pt;}
.ye2{bottom:312.380480pt;}
.y21b{bottom:312.700480pt;}
.y1e8{bottom:314.940480pt;}
.y82{bottom:315.260480pt;}
.y277{bottom:315.900480pt;}
.y2a3{bottom:316.540480pt;}
.y148{bottom:318.780480pt;}
.y56{bottom:321.660480pt;}
.y81{bottom:326.780480pt;}
.y1b4{bottom:327.420480pt;}
.y105{bottom:327.740480pt;}
.y21a{bottom:328.380480pt;}
.ye1{bottom:328.700480pt;}
.y1e7{bottom:331.260480pt;}
.y276{bottom:332.220480pt;}
.y2a2{bottom:332.540480pt;}
.y10{bottom:333.560933pt;}
.y147{bottom:334.780480pt;}
.y55{bottom:335.740480pt;}
.y80{bottom:337.980480pt;}
.yf{bottom:341.560933pt;}
.y23d{bottom:343.100480pt;}
.y104{bottom:343.740480pt;}
.y1b3{bottom:344.060480pt;}
.ye0{bottom:344.700480pt;}
.y54{bottom:345.660480pt;}
.y208{bottom:346.940480pt;}
.y1e6{bottom:347.580480pt;}
.y275{bottom:348.220480pt;}
.y2a1{bottom:348.540480pt;}
.y146{bottom:351.100480pt;}
.ye{bottom:353.400933pt;}
.y23c{bottom:359.420480pt;}
.y103{bottom:359.740480pt;}
.y7f{bottom:360.380480pt;}
.y219{bottom:360.700480pt;}
.y207{bottom:363.260480pt;}
.y1e5{bottom:363.580480pt;}
.y274{bottom:364.220480pt;}
.y2a0{bottom:364.540480pt;}
.yd{bottom:365.240933pt;}
.y145{bottom:367.100480pt;}
.y53{bottom:369.980480pt;}
.yc{bottom:371.320933pt;}
.y7e{bottom:371.580480pt;}
.y23b{bottom:375.420480pt;}
.y102{bottom:375.740480pt;}
.ydf{bottom:376.700480pt;}
.y218{bottom:377.020480pt;}
.y1e4{bottom:379.580480pt;}
.y273{bottom:380.540480pt;}
.y52{bottom:381.820480pt;}
.y7d{bottom:383.100480pt;}
.y144{bottom:383.420480pt;}
.y23a{bottom:391.420480pt;}
.y1b2{bottom:391.740480pt;}
.y101{bottom:392.060480pt;}
.yde{bottom:393.020480pt;}
.y51{bottom:393.660480pt;}
.y7c{bottom:394.300480pt;}
.y206{bottom:395.580480pt;}
.y1e3{bottom:395.900480pt;}
.y272{bottom:396.540480pt;}
.y29f{bottom:396.860480pt;}
.y143{bottom:399.740480pt;}
.y7b{bottom:405.500480pt;}
.y50{bottom:405.820480pt;}
.yb{bottom:406.520933pt;}
.y239{bottom:407.420480pt;}
.y100{bottom:408.380480pt;}
.ydd{bottom:409.020480pt;}
.y195{bottom:410.620480pt;}
.y1e2{bottom:411.580480pt;}
.y271{bottom:412.220480pt;}
.y175{bottom:412.860480pt;}
.y142{bottom:415.420480pt;}
.y7a{bottom:416.700480pt;}
.y4f{bottom:417.980480pt;}
.y238{bottom:423.740480pt;}
.y1b1{bottom:424.060480pt;}
.yff{bottom:424.380480pt;}
.ydc{bottom:425.020480pt;}
.y96{bottom:426.620480pt;}
.y194{bottom:426.940480pt;}
.y1e1{bottom:427.580480pt;}
.y79{bottom:428.540480pt;}
.y29e{bottom:428.860480pt;}
.y4e{bottom:429.820480pt;}
.y141{bottom:431.420480pt;}
.yad{bottom:434.620480pt;}
.y95{bottom:437.820480pt;}
.y78{bottom:439.740480pt;}
.y1b0{bottom:440.060480pt;}
.yfe{bottom:440.380480pt;}
.yab{bottom:440.700480pt;}
.ydb{bottom:441.020480pt;}
.y4d{bottom:441.980480pt;}
.y193{bottom:442.620480pt;}
.y217{bottom:442.940480pt;}
.y1e0{bottom:443.580480pt;}
.y205{bottom:443.900480pt;}
.y270{bottom:444.540480pt;}
.y174{bottom:444.860480pt;}
.y29d{bottom:445.180480pt;}
.yac{bottom:446.460480pt;}
.y140{bottom:447.740480pt;}
.y94{bottom:449.020480pt;}
.y77{bottom:451.260480pt;}
.y4c{bottom:453.820480pt;}
.yaa{bottom:455.420480pt;}
.y237{bottom:456.060480pt;}
.yfd{bottom:456.380480pt;}
.yda{bottom:457.340480pt;}
.y192{bottom:458.940480pt;}
.y1df{bottom:459.580480pt;}
.y173{bottom:460.860480pt;}
.y29c{bottom:461.180480pt;}
.y76{bottom:461.820480pt;}
.y13f{bottom:463.420480pt;}
.y4b{bottom:465.980480pt;}
.y236{bottom:472.060480pt;}
.yfc{bottom:472.700480pt;}
.y75{bottom:473.020480pt;}
.yd9{bottom:473.340480pt;}
.y191{bottom:474.940480pt;}
.y204{bottom:475.900480pt;}
.y1de{bottom:476.220480pt;}
.y26f{bottom:476.860480pt;}
.y172{bottom:477.180480pt;}
.y29b{bottom:477.500480pt;}
.y4a{bottom:477.820480pt;}
.y13e{bottom:479.740480pt;}
.ya7{bottom:483.260480pt;}
.y253{bottom:487.100480pt;}
.y235{bottom:488.060480pt;}
.y1af{bottom:488.700480pt;}
.yfb{bottom:489.340480pt;}
.yd8{bottom:489.660480pt;}
.y49{bottom:489.980480pt;}
.y190{bottom:491.260480pt;}
.y252{bottom:491.580480pt;}
.y1dd{bottom:491.900480pt;}
.y203{bottom:492.220480pt;}
.y26e{bottom:492.540480pt;}
.y171{bottom:493.180480pt;}
.y74{bottom:495.740480pt;}
.ya6{bottom:499.260480pt;}
.y48{bottom:502.140480pt;}
.y24d{bottom:504.060480pt;}
.y234{bottom:504.380480pt;}
.y1ae{bottom:504.700480pt;}
.yfa{bottom:505.020480pt;}
.yd7{bottom:505.660480pt;}
.y73{bottom:507.580480pt;}
.y1dc{bottom:507.900480pt;}
.y202{bottom:508.220480pt;}
.y26d{bottom:508.860480pt;}
.y170{bottom:509.500480pt;}
.ya5{bottom:511.420480pt;}
.y13d{bottom:511.740480pt;}
.y47{bottom:513.020480pt;}
.y215{bottom:516.860480pt;}
.y72{bottom:518.460480pt;}
.y1ad{bottom:520.380480pt;}
.yf9{bottom:521.020480pt;}
.yd6{bottom:521.660480pt;}
.y18f{bottom:522.940480pt;}
.y1db{bottom:524.220480pt;}
.y26c{bottom:524.860480pt;}
.y16f{bottom:525.180480pt;}
.y29a{bottom:525.500480pt;}
.y46{bottom:525.820480pt;}
.y13c{bottom:527.740480pt;}
.y24c{bottom:528.380480pt;}
.ya9{bottom:529.340480pt;}
.y71{bottom:529.660480pt;}
.y24b{bottom:532.220480pt;}
.y214{bottom:532.860480pt;}
.y233{bottom:536.380480pt;}
.yf8{bottom:537.020480pt;}
.y45{bottom:537.980480pt;}
.y18e{bottom:539.260480pt;}
.y1da{bottom:540.220480pt;}
.y70{bottom:540.540480pt;}
.ya8{bottom:540.860480pt;}
.y16e{bottom:541.180480pt;}
.y299{bottom:542.140480pt;}
.y13b{bottom:544.060480pt;}
.y6f{bottom:552.060480pt;}
.y1ac{bottom:552.700480pt;}
.yf7{bottom:553.020480pt;}
.yd5{bottom:554.300480pt;}
.y18d{bottom:555.260480pt;}
.y1d9{bottom:556.220480pt;}
.y26b{bottom:556.860480pt;}
.y16d{bottom:557.180480pt;}
.y298{bottom:558.140480pt;}
.y13a{bottom:560.380480pt;}
.y44{bottom:561.980480pt;}
.y6e{bottom:563.260480pt;}
.y1ab{bottom:569.020480pt;}
.yf6{bottom:569.340480pt;}
.yd4{bottom:569.980480pt;}
.y18c{bottom:571.900480pt;}
.y201{bottom:572.220480pt;}
.y1d8{bottom:572.540480pt;}
.y26a{bottom:573.180480pt;}
.y16c{bottom:573.500480pt;}
.y297{bottom:573.820480pt;}
.y6d{bottom:574.460480pt;}
.y139{bottom:576.380480pt;}
.y232{bottom:585.020480pt;}
.yf5{bottom:585.340480pt;}
.y6c{bottom:585.660480pt;}
.y43{bottom:585.980480pt;}
.yd3{bottom:586.620480pt;}
.y18b{bottom:587.580480pt;}
.y1d7{bottom:588.860480pt;}
.y200{bottom:589.180480pt;}
.y16b{bottom:589.820480pt;}
.y138{bottom:592.380480pt;}
.y6b{bottom:596.860480pt;}
.y1aa{bottom:601.020480pt;}
.yf4{bottom:601.660480pt;}
.yd2{bottom:602.620480pt;}
.y18a{bottom:603.580480pt;}
.y1d6{bottom:604.540480pt;}
.y269{bottom:605.180480pt;}
.y16a{bottom:605.820480pt;}
.y296{bottom:606.140480pt;}
.y6a{bottom:608.380480pt;}
.y42{bottom:609.980480pt;}
.y1a9{bottom:617.020480pt;}
.yf3{bottom:617.660480pt;}
.yd1{bottom:618.300480pt;}
.y2c4{bottom:619.260480pt;}
.y69{bottom:619.900480pt;}
.y189{bottom:620.220480pt;}
.y1d5{bottom:620.540480pt;}
.y268{bottom:621.180480pt;}
.y41{bottom:622.140480pt;}
.y137{bottom:624.380480pt;}
.y68{bottom:631.100480pt;}
.y2d4{bottom:632.700480pt;}
.y231{bottom:633.020480pt;}
.y1a8{bottom:633.340480pt;}
.yf2{bottom:633.660480pt;}
.yd0{bottom:634.940480pt;}
.y188{bottom:635.580480pt;}
.y1d4{bottom:636.540480pt;}
.y251{bottom:637.180480pt;}
.y267{bottom:637.500480pt;}
.y169{bottom:638.140480pt;}
.y295{bottom:638.460480pt;}
.y136{bottom:641.020480pt;}
.y67{bottom:641.980480pt;}
.y40{bottom:646.140480pt;}
.y2d3{bottom:648.060480pt;}
.y1a7{bottom:649.340480pt;}
.yf1{bottom:649.660480pt;}
.ycf{bottom:650.300480pt;}
.y2c3{bottom:651.260480pt;}
.ya{bottom:651.320933pt;}
.y187{bottom:651.580480pt;}
.y1d3{bottom:652.540480pt;}
.y66{bottom:653.180480pt;}
.y266{bottom:653.500480pt;}
.y168{bottom:654.140480pt;}
.y294{bottom:654.460480pt;}
.y135{bottom:656.380480pt;}
.y3f{bottom:657.980480pt;}
.y65{bottom:664.380480pt;}
.y230{bottom:665.340480pt;}
.yf0{bottom:665.660480pt;}
.yce{bottom:666.620480pt;}
.y2c2{bottom:667.260480pt;}
.y186{bottom:667.900480pt;}
.y1d2{bottom:668.540480pt;}
.y1ff{bottom:668.860480pt;}
.y265{bottom:669.500480pt;}
.y167{bottom:669.820480pt;}
.y9{bottom:669.880933pt;}
.y293{bottom:670.140480pt;}
.y134{bottom:672.380480pt;}
.y64{bottom:675.900480pt;}
.y2d2{bottom:680.380480pt;}
.y22f{bottom:681.340480pt;}
.y1a6{bottom:681.660480pt;}
.y3e{bottom:681.980480pt;}
.ycd{bottom:682.940480pt;}
.y2c1{bottom:683.900480pt;}
.y185{bottom:684.220480pt;}
.y1d1{bottom:684.540480pt;}
.y1fe{bottom:685.180480pt;}
.y264{bottom:685.500480pt;}
.y166{bottom:686.140480pt;}
.y63{bottom:686.460480pt;}
.y292{bottom:686.780480pt;}
.y133{bottom:688.700480pt;}
.y3d{bottom:693.820480pt;}
.y2d1{bottom:696.380480pt;}
.y1a5{bottom:697.340480pt;}
.y62{bottom:697.980480pt;}
.ycc{bottom:698.620480pt;}
.y2c0{bottom:699.260480pt;}
.y184{bottom:700.540480pt;}
.y1fd{bottom:700.860480pt;}
.y1d0{bottom:701.180480pt;}
.y263{bottom:701.500480pt;}
.y165{bottom:702.460480pt;}
.y291{bottom:702.780480pt;}
.y132{bottom:704.380480pt;}
.y61{bottom:709.180480pt;}
.y2d0{bottom:712.380480pt;}
.y22e{bottom:713.340480pt;}
.y1a4{bottom:713.660480pt;}
.yef{bottom:714.300480pt;}
.ycb{bottom:715.260480pt;}
.y2bf{bottom:715.580480pt;}
.y31{bottom:716.540480pt;}
.y1cf{bottom:716.860480pt;}
.y262{bottom:717.500480pt;}
.y164{bottom:718.140480pt;}
.y290{bottom:718.460480pt;}
.y183{bottom:719.100480pt;}
.y60{bottom:720.380480pt;}
.y131{bottom:720.700480pt;}
.y8{bottom:726.200933pt;}
.y30{bottom:728.700480pt;}
.y1a3{bottom:729.660480pt;}
.yee{bottom:729.980480pt;}
.yca{bottom:730.940480pt;}
.y2be{bottom:731.580480pt;}
.y5f{bottom:731.900480pt;}
.y1ce{bottom:732.860480pt;}
.y261{bottom:733.500480pt;}
.y163{bottom:734.140480pt;}
.y28f{bottom:734.780480pt;}
.y130{bottom:736.700480pt;}
.y2f{bottom:740.540480pt;}
.y2cf{bottom:744.700480pt;}
.y22d{bottom:745.340480pt;}
.y7{bottom:745.400933pt;}
.y1a2{bottom:745.660480pt;}
.yed{bottom:746.300480pt;}
.yc9{bottom:746.620480pt;}
.y2bd{bottom:747.900480pt;}
.y182{bottom:748.220480pt;}
.y1cd{bottom:748.860480pt;}
.y162{bottom:750.140480pt;}
.y28e{bottom:750.460480pt;}
.y2e{bottom:752.700480pt;}
.y3c{bottom:753.340480pt;}
.y37{bottom:754.300480pt;}
.yec{bottom:759.100480pt;}
.y2ce{bottom:760.700480pt;}
.y1a1{bottom:761.660480pt;}
.yc8{bottom:762.940480pt;}
.y2bc{bottom:763.580480pt;}
.y3b{bottom:763.900480pt;}
.y181{bottom:764.220480pt;}
.y2d{bottom:764.540480pt;}
.y1cc{bottom:764.860480pt;}
.y36{bottom:765.180480pt;}
.y260{bottom:765.500480pt;}
.y161{bottom:766.460480pt;}
.y12f{bottom:768.700480pt;}
.y3a{bottom:775.740480pt;}
.y2c{bottom:776.380480pt;}
.y35{bottom:776.700480pt;}
.y2cd{bottom:777.340480pt;}
.y22c{bottom:777.660480pt;}
.y1a0{bottom:777.980480pt;}
.y123{bottom:778.207147pt;}
.yeb{bottom:778.300480pt;}
.yc7{bottom:778.940480pt;}
.y2bb{bottom:779.900480pt;}
.y180{bottom:780.540480pt;}
.y1cb{bottom:780.860480pt;}
.y1fc{bottom:781.180480pt;}
.y25f{bottom:781.500480pt;}
.y160{bottom:782.460480pt;}
.y28d{bottom:782.780480pt;}
.y12e{bottom:785.020480pt;}
.y39{bottom:786.620480pt;}
.y34{bottom:787.900480pt;}
.y2b{bottom:788.540480pt;}
.y2cc{bottom:793.020480pt;}
.y19f{bottom:793.980480pt;}
.yea{bottom:794.300480pt;}
.yc6{bottom:795.260480pt;}
.y2ba{bottom:796.220480pt;}
.y17f{bottom:796.540480pt;}
.y122{bottom:797.407147pt;}
.y1fb{bottom:797.820480pt;}
.y15f{bottom:798.460480pt;}
.y28c{bottom:798.780480pt;}
.y33{bottom:799.100480pt;}
.y2a{bottom:800.380480pt;}
.y12d{bottom:800.700480pt;}
.y6{bottom:801.080933pt;}
.y2cb{bottom:808.700480pt;}
.y38{bottom:809.020480pt;}
.y22b{bottom:809.660480pt;}
.y19e{bottom:809.980480pt;}
.y32{bottom:810.300480pt;}
.yc5{bottom:810.940480pt;}
.y2b9{bottom:811.900480pt;}
.y17e{bottom:812.540480pt;}
.y1ca{bottom:812.860480pt;}
.y1fa{bottom:813.500480pt;}
.y25e{bottom:813.820480pt;}
.y15e{bottom:814.460480pt;}
.y28b{bottom:815.740480pt;}
.y12c{bottom:817.340480pt;}
.y5{bottom:820.600933pt;}
.y29{bottom:821.820480pt;}
.y2ca{bottom:825.020480pt;}
.y19d{bottom:825.980480pt;}
.ye9{bottom:826.940480pt;}
.yc4{bottom:827.260480pt;}
.y2b8{bottom:828.220480pt;}
.y17d{bottom:828.540480pt;}
.y1c9{bottom:829.180480pt;}
.y1f9{bottom:829.500480pt;}
.y25d{bottom:830.140480pt;}
.y15d{bottom:830.460480pt;}
.y28a{bottom:830.780480pt;}
.y12b{bottom:833.340480pt;}
.y28{bottom:833.980480pt;}
.y121{bottom:835.807147pt;}
.ya0{bottom:837.820480pt;}
.y2c9{bottom:841.340480pt;}
.y19c{bottom:842.300480pt;}
.ye8{bottom:842.620480pt;}
.yc3{bottom:843.260480pt;}
.y2b7{bottom:844.220480pt;}
.y17c{bottom:844.540480pt;}
.y1f8{bottom:845.500480pt;}
.y1c8{bottom:845.820480pt;}
.y15c{bottom:846.780480pt;}
.y9f{bottom:847.100480pt;}
.y12a{bottom:849.020480pt;}
.ya4{bottom:849.980480pt;}
.y120{bottom:855.007147pt;}
.y2c8{bottom:857.340480pt;}
.y22a{bottom:857.980480pt;}
.y9e{bottom:858.300480pt;}
.y19b{bottom:858.940480pt;}
.yc2{bottom:859.260480pt;}
.y2b6{bottom:860.220480pt;}
.y17b{bottom:860.540480pt;}
.y1c7{bottom:861.500480pt;}
.y25c{bottom:862.140480pt;}
.y15b{bottom:863.100480pt;}
.y129{bottom:865.340480pt;}
.ya3{bottom:865.660480pt;}
.y27{bottom:870.460480pt;}
.y11f{bottom:874.207147pt;}
.y19a{bottom:874.300480pt;}
.ye7{bottom:874.620480pt;}
.yc1{bottom:875.580480pt;}
.ya2{bottom:876.540480pt;}
.y17a{bottom:876.860480pt;}
.y1c6{bottom:877.500480pt;}
.y1f7{bottom:877.820480pt;}
.y25b{bottom:878.780480pt;}
.y15a{bottom:879.100480pt;}
.y26{bottom:879.740480pt;}
.y128{bottom:881.340480pt;}
.y2c7{bottom:889.980480pt;}
.y229{bottom:890.300480pt;}
.y199{bottom:890.620480pt;}
.ye6{bottom:891.260480pt;}
.yc0{bottom:891.580480pt;}
.ya1{bottom:891.900480pt;}
.y179{bottom:892.860480pt;}
.y11e{bottom:893.407147pt;}
.y1c5{bottom:893.820480pt;}
.y1f6{bottom:894.140480pt;}
.y25a{bottom:894.460480pt;}
.y159{bottom:895.100480pt;}
.y289{bottom:895.420480pt;}
.y25{bottom:896.700480pt;}
.y127{bottom:897.980480pt;}
.y24f{bottom:899.900480pt;}
.y198{bottom:906.620480pt;}
.ybf{bottom:907.580480pt;}
.y2b5{bottom:908.860480pt;}
.y178{bottom:909.180480pt;}
.y1c4{bottom:909.820480pt;}
.y1f5{bottom:910.140480pt;}
.y259{bottom:910.780480pt;}
.y158{bottom:911.100480pt;}
.y288{bottom:911.740480pt;}
.y11d{bottom:912.607147pt;}
.y126{bottom:913.660480pt;}
.y2c6{bottom:922.300480pt;}
.y197{bottom:922.940480pt;}
.y2b4{bottom:925.180480pt;}
.y177{bottom:925.500480pt;}
.y1c3{bottom:925.820480pt;}
.y1f4{bottom:926.460480pt;}
.y258{bottom:926.780480pt;}
.y157{bottom:927.420480pt;}
.y287{bottom:927.740480pt;}
.y125{bottom:929.660480pt;}
.y11c{bottom:931.807147pt;}
.y24{bottom:932.220480pt;}
.y256{bottom:936.700480pt;}
.ybe{bottom:945.340480pt;}
.y11b{bottom:951.007147pt;}
.y255{bottom:956.860480pt;}
.ybd{bottom:966.780480pt;}
.y11a{bottom:970.207147pt;}
.y2c5{bottom:981.820480pt;}
.y228{bottom:982.140480pt;}
.y196{bottom:982.460480pt;}
.y1c2{bottom:984.380480pt;}
.y124{bottom:988.860480pt;}
.y24e{bottom:990.780480pt;}
.y9d{bottom:1006.140480pt;}
.y2b3{bottom:1013.180480pt;}
.y9c{bottom:1016.380480pt;}
.y254{bottom:1031.100480pt;}
.y9b{bottom:1033.020480pt;}
.y250{bottom:1036.860480pt;}
.h19{height:13.906250pt;}
.h14{height:16.687500pt;}
.h8c{height:25.031250pt;}
.h18{height:27.812500pt;}
.h23{height:30.593750pt;}
.h37{height:31.431250pt;}
.h25{height:32.095000pt;}
.h2c{height:33.153750pt;}
.h1a{height:33.375000pt;}
.h27{height:33.596250pt;}
.h33{height:33.817500pt;}
.h35{height:34.655000pt;}
.h24{height:34.876250pt;}
.h2a{height:35.097500pt;}
.h22{height:36.156250pt;}
.h31{height:36.377500pt;}
.h29{height:37.436250pt;}
.h26{height:37.657500pt;}
.h8a{height:37.831250pt;}
.h2b{height:38.716250pt;}
.h28{height:38.937500pt;}
.h2d{height:41.055000pt;}
.h12{height:41.718750pt;}
.h85{height:41.940000pt;}
.ha0{height:43.836250pt;}
.h3c{height:44.278750pt;}
.he{height:44.500000pt;}
.h30{height:44.942500pt;}
.h67{height:44.992000pt;}
.h74{height:45.558750pt;}
.h79{height:45.780000pt;}
.h2f{height:46.222500pt;}
.h78{height:46.617500pt;}
.h8e{height:47.060000pt;}
.h16{height:47.281250pt;}
.h2e{height:47.502500pt;}
.h32{height:48.782500pt;}
.h10{height:50.062500pt;}
.h62{height:50.283750pt;}
.h3f{height:50.678750pt;}
.h75{height:51.563750pt;}
.h89{height:51.785000pt;}
.h66{height:51.904000pt;}
.h17{height:52.843750pt;}
.h48{height:53.065000pt;}
.h77{height:53.286250pt;}
.h71{height:54.123750pt;}
.h59{height:54.345000pt;}
.h57{height:54.566250pt;}
.h97{height:55.403750pt;}
.h1b{height:55.625000pt;}
.h56{height:55.846250pt;}
.h4b{height:56.067500pt;}
.h98{height:56.683750pt;}
.h44{height:56.905000pt;}
.h8b{height:57.078750pt;}
.h5a{height:57.126250pt;}
.h49{height:57.347500pt;}
.h7a{height:58.185000pt;}
.hd{height:58.406250pt;}
.h65{height:58.580000pt;}
.h46{height:58.627500pt;}
.h61{height:58.848750pt;}
.h6b{height:59.070000pt;}
.h99{height:59.465000pt;}
.h72{height:59.686250pt;}
.h51{height:59.907500pt;}
.h60{height:60.128750pt;}
.h6c{height:60.350000pt;}
.h9f{height:60.571250pt;}
.h88{height:60.745000pt;}
.h52{height:60.966250pt;}
.h15{height:61.187500pt;}
.h5f{height:61.408750pt;}
.h4d{height:61.630000pt;}
.h68{height:62.025000pt;}
.h94{height:62.246250pt;}
.h45{height:62.467500pt;}
.h43{height:62.688750pt;}
.h54{height:62.910000pt;}
.h9c{height:63.305000pt;}
.h91{height:63.526250pt;}
.h81{height:63.747500pt;}
.h4c{height:63.968750pt;}
.h47{height:64.190000pt;}
.h50{height:64.411250pt;}
.h58{height:64.585000pt;}
.h87{height:64.806250pt;}
.h95{height:65.027500pt;}
.h7f{height:65.248750pt;}
.h8d{height:65.422500pt;}
.h4a{height:65.470000pt;}
.h4f{height:65.691250pt;}
.h64{height:65.912500pt;}
.h9a{height:66.528750pt;}
.hc{height:66.750000pt;}
.h6e{height:66.971250pt;}
.h93{height:67.366250pt;}
.h73{height:67.413750pt;}
.h76{height:67.587500pt;}
.h69{height:67.808750pt;}
.h55{height:68.030000pt;}
.h5d{height:68.251250pt;}
.h53{height:68.472500pt;}
.h5c{height:68.693750pt;}
.h84{height:69.310000pt;}
.hf{height:69.531250pt;}
.h5e{height:69.752500pt;}
.h4e{height:69.973750pt;}
.h5b{height:70.147500pt;}
.h9d{height:70.368750pt;}
.h90{height:70.590000pt;}
.h7{height:70.811250pt;}
.h6d{height:71.032500pt;}
.h42{height:71.253750pt;}
.h7d{height:72.091250pt;}
.h13{height:72.312500pt;}
.h9e{height:72.533750pt;}
.h7e{height:72.707500pt;}
.h92{height:73.371250pt;}
.h83{height:73.592500pt;}
.h41{height:73.813750pt;}
.h8f{height:74.872500pt;}
.h1c{height:75.093750pt;}
.h3e{height:75.188750pt;}
.h7b{height:75.488750pt;}
.h7c{height:75.710000pt;}
.h9{height:75.931250pt;}
.h3d{height:76.373750pt;}
.h70{height:76.816250pt;}
.h96{height:76.990000pt;}
.h3b{height:77.432500pt;}
.h82{height:77.653750pt;}
.h6a{height:78.001250pt;}
.hb{height:79.771250pt;}
.h6f{height:79.945000pt;}
.h80{height:81.051250pt;}
.h2{height:83.437500pt;}
.h86{height:84.448750pt;}
.h63{height:89.616250pt;}
.h11{height:91.781250pt;}
.h3a{height:98.133750pt;}
.h1d{height:102.590000pt;}
.h8{height:105.687500pt;}
.h38{height:106.035000pt;}
.ha{height:107.188750pt;}
.h34{height:114.031250pt;}
.h39{height:114.473750pt;}
.h36{height:116.812500pt;}
.h40{height:120.510000pt;}
.h6{height:122.375000pt;}
.h9b{height:152.968750pt;}
.h20{height:189.125000pt;}
.h21{height:200.250000pt;}
.h5{height:219.718750pt;}
.h3{height:375.468750pt;}
.h4{height:464.468750pt;}
.h1f{height:1038.666667pt;}
.h1e{height:1038.901813pt;}
.h0{height:1046.520933pt;}
.h1{height:1046.666667pt;}
.w2{width:755.683600pt;}
.w3{width:756.000000pt;}
.w0{width:763.303600pt;}
.w1{width:763.333333pt;}
.x34{left:-4.039067pt;}
.x33{left:-2.759067pt;}
.x32{left:-1.159067pt;}
.x0{left:0.000000pt;}
.x1{left:3.640933pt;}
.x47{left:7.480933pt;}
.x5d{left:14.836933pt;}
.x88{left:15.800933pt;}
.x7e{left:17.720933pt;}
.x72{left:25.400933pt;}
.x5e{left:32.760933pt;}
.x36{left:38.520933pt;}
.x21{left:39.800933pt;}
.x20{left:40.760933pt;}
.x1f{left:41.720933pt;}
.x19{left:42.680933pt;}
.x35{left:43.960933pt;}
.x3{left:46.520933pt;}
.x38{left:49.720933pt;}
.x2b{left:54.200933pt;}
.x2c{left:56.120933pt;}
.x37{left:59.960933pt;}
.x7b{left:67.960933pt;}
.x8{left:84.280933pt;}
.x7{left:86.840933pt;}
.x7f{left:100.600933pt;}
.x46{left:103.160933pt;}
.x12{left:107.000933pt;}
.x31{left:113.720933pt;}
.x2d{left:115.960933pt;}
.x30{left:118.520933pt;}
.x2{left:121.080933pt;}
.x7c{left:124.920933pt;}
.x45{left:125.880933pt;}
.x66{left:145.720933pt;}
.x65{left:146.680933pt;}
.x64{left:147.640933pt;}
.x63{left:148.920933pt;}
.x62{left:149.880933pt;}
.x61{left:150.840933pt;}
.x5b{left:151.800933pt;}
.x5f{left:152.760933pt;}
.x5a{left:153.720933pt;}
.x50{left:155.000933pt;}
.x4f{left:156.280933pt;}
.x4e{left:157.240933pt;}
.x4d{left:158.200933pt;}
.x4b{left:159.160933pt;}
.x4a{left:160.440933pt;}
.x82{left:161.400933pt;}
.x81{left:162.360933pt;}
.x83{left:163.320933pt;}
.x73{left:164.600933pt;}
.x79{left:169.400933pt;}
.x60{left:170.360933pt;}
.x59{left:173.240933pt;}
.x6c{left:176.760933pt;}
.x4c{left:179.000933pt;}
.x8b{left:180.280933pt;}
.x6{left:181.560933pt;}
.x48{left:206.520933pt;}
.x13{left:215.800933pt;}
.x16{left:260.280933pt;}
.x28{left:262.840933pt;}
.xd{left:263.800933pt;}
.x17{left:265.720933pt;}
.x18{left:267.000933pt;}
.x9{left:267.960933pt;}
.xc{left:269.560933pt;}
.xb{left:272.440933pt;}
.xa{left:273.720933pt;}
.x27{left:283.960933pt;}
.x29{left:284.920933pt;}
.x25{left:285.880933pt;}
.x23{left:287.160933pt;}
.x1a{left:288.120933pt;}
.x26{left:297.080933pt;}
.x24{left:298.680933pt;}
.x22{left:299.640933pt;}
.x5{left:304.440933pt;}
.x3c{left:312.120933pt;}
.x3b{left:314.680933pt;}
.x39{left:321.080933pt;}
.xe{left:322.040933pt;}
.xf{left:323.000933pt;}
.x15{left:333.240933pt;}
.x14{left:341.880933pt;}
.x7d{left:343.160933pt;}
.x10{left:356.920933pt;}
.x4{left:359.800933pt;}
.x11{left:367.160933pt;}
.x77{left:440.120933pt;}
.x76{left:441.080933pt;}
.x74{left:442.040933pt;}
.x6b{left:443.320933pt;}
.x69{left:444.920933pt;}
.x68{left:446.520933pt;}
.x67{left:447.800933pt;}
.x58{left:448.760933pt;}
.x56{left:449.720933pt;}
.x55{left:450.680933pt;}
.x54{left:451.640933pt;}
.x52{left:452.600933pt;}
.x51{left:453.880933pt;}
.x6e{left:454.840933pt;}
.x7a{left:456.120933pt;}
.x84{left:457.080933pt;}
.x86{left:458.360933pt;}
.x75{left:459.640933pt;}
.x6a{left:463.800933pt;}
.x57{left:468.280933pt;}
.x6f{left:469.240933pt;}
.x53{left:470.520933pt;}
.x70{left:473.080933pt;}
.x85{left:476.280933pt;}
.x87{left:484.600933pt;}
.x6d{left:487.160933pt;}
.x8c{left:488.440933pt;}
.x49{left:519.480933pt;}
.x8d{left:540.280933pt;}
.x80{left:555.640933pt;}
.x8e{left:556.600933pt;}
.x71{left:558.200933pt;}
.x5c{left:559.160933pt;}
.x1d{left:564.280933pt;}
.x3e{left:587.000933pt;}
.x44{left:587.960933pt;}
.x43{left:607.800933pt;}
.x1e{left:630.200933pt;}
.x1c{left:631.160933pt;}
.x1b{left:636.600933pt;}
.x2a{left:651.320933pt;}
.x3f{left:665.400933pt;}
.x3d{left:669.560933pt;}
.x42{left:696.120933pt;}
.x40{left:700.280933pt;}
.x3a{left:707.320933pt;}
.x41{left:708.280933pt;}
.x78{left:758.520933pt;}
.x89{left:760.120933pt;}
.x8a{left:767.800933pt;}
.x2e{left:770.360933pt;}
.x2f{left:775.160933pt;}
}




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