
    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_ab12df5bc7ffe44d88fed38b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_4dc376e51eda6772192baa9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_26808109d7f88882a0db99e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1e2875a0da675e4e78a9f6ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_e5dcb7337c5a75ed269f3687.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929199;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_86570bc671eae400ca7c7f1c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ed816b5940e4bbecc616b17b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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_8c8249cb39116dfaf2a4d975.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.152894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152894,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.727369px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.ls1e{letter-spacing:-3.100840px;}
.lsa{letter-spacing:-0.513600px;}
.ls10{letter-spacing:-0.413400px;}
.lsd{letter-spacing:-0.346800px;}
.ls7{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.220200px;}
.lsc{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.153600px;}
.ls15{letter-spacing:-0.078600px;}
.lsb{letter-spacing:-0.053280px;}
.ls14{letter-spacing:-0.018000px;}
.ls12{letter-spacing:-0.009360px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.014040px;}
.lsf{letter-spacing:0.018720px;}
.ls17{letter-spacing:0.064800px;}
.ls0{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.139800px;}
.ls16{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.153600px;}
.ls9{letter-spacing:0.180000px;}
.ls1d{letter-spacing:1.294714px;}
.ls19{letter-spacing:1.347473px;}
.lse{letter-spacing:14.490000px;}
.ls1f{letter-spacing:16.406640px;}
.ls3{letter-spacing:36.926640px;}
.ls2{letter-spacing:41.148000px;}
.ls8{letter-spacing:46.286640px;}
.ls18{letter-spacing:63.566640px;}
.ls1a{letter-spacing:123.327314px;}
.ls1b{letter-spacing:142.877492px;}
.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;}
}
.ws6{word-spacing:-60.120000px;}
.ws15{word-spacing:-16.532200px;}
.ws8{word-spacing:-15.210000px;}
.ws13{word-spacing:-15.183600px;}
.ws0{word-spacing:-15.030000px;}
.ws4{word-spacing:-14.876400px;}
.wsa{word-spacing:-14.850000px;}
.wsc{word-spacing:-14.809800px;}
.ws9{word-spacing:-14.516400px;}
.ws5{word-spacing:-13.500000px;}
.ws11{word-spacing:-12.348000px;}
.wsf{word-spacing:-12.204000px;}
.wsb{word-spacing:-12.150000px;}
.wse{word-spacing:-11.988720px;}
.ws1{word-spacing:-11.970000px;}
.wsd{word-spacing:-11.960640px;}
.ws2{word-spacing:-10.530000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
.ws16{word-spacing:20.453888px;}
.ws19{word-spacing:112.996146px;}
.ws1e{word-spacing:123.921912px;}
.ws1c{word-spacing:126.345292px;}
.ws1a{word-spacing:157.908148px;}
.ws17{word-spacing:181.098091px;}
.ws1f{word-spacing:215.084327px;}
.ws18{word-spacing:228.315979px;}
.ws1b{word-spacing:249.264771px;}
.ws10{word-spacing:262.890000px;}
.ws1d{word-spacing:302.477508px;}
.ws12{word-spacing:466.032000px;}
.ws14{word-spacing:890.088538px;}
._4e{margin-left:-17.424920px;}
._45{margin-left:-15.789099px;}
._36{margin-left:-6.598440px;}
._3c{margin-left:-5.200560px;}
._37{margin-left:-3.774600px;}
._38{margin-left:-2.432520px;}
._0{margin-left:-1.202400px;}
._3{width:1.085760px;}
._d{width:2.280960px;}
._1d{width:3.377520px;}
._10{width:4.509000px;}
._6{width:6.012000px;}
._7{width:7.034040px;}
._f{width:8.356680px;}
._1c{width:9.598080px;}
._12{width:10.641240px;}
._8{width:11.783520px;}
._5{width:13.346640px;}
._11{width:16.232400px;}
._9{width:17.494920px;}
._b{width:19.298520px;}
._a{width:20.380680px;}
._c{width:21.402720px;}
._19{width:22.605120px;}
._1a{width:23.687280px;}
._e{width:25.611120px;}
._1b{width:26.933760px;}
._24{width:28.299600px;}
._25{width:29.639160px;}
._20{width:30.661200px;}
._22{width:31.683240px;}
._1f{width:33.126120px;}
._15{width:34.614000px;}
._29{width:35.966880px;}
._2d{width:37.154160px;}
._2e{width:38.161080px;}
._2a{width:39.981600px;}
._26{width:41.060160px;}
._14{width:42.984000px;}
._1e{width:44.190480px;}
._21{width:48.336480px;}
._2c{width:50.380560px;}
._27{width:51.883560px;}
._23{width:52.905600px;}
._18{width:54.108000px;}
._17{width:55.250280px;}
._52{width:56.363400px;}
._28{width:61.983720px;}
._2b{width:65.109960px;}
._44{width:75.991680px;}
._51{width:77.434560px;}
._13{width:79.866000px;}
._16{width:125.334000px;}
._2{width:130.455480px;}
._49{width:142.877492px;}
._43{width:206.766000px;}
._48{width:225.221289px;}
._30{width:243.594000px;}
._2f{width:246.852000px;}
._31{width:248.556000px;}
._32{width:256.932000px;}
._47{width:259.466469px;}
._40{width:268.020000px;}
._4a{width:281.922632px;}
._35{width:290.442000px;}
._3f{width:294.828000px;}
._3e{width:296.052000px;}
._3d{width:304.470000px;}
._42{width:315.852000px;}
._1{width:341.548680px;}
._41{width:346.590000px;}
._34{width:357.222000px;}
._3a{width:371.658000px;}
._39{width:399.618000px;}
._4d{width:481.507726px;}
._3b{width:505.152000px;}
._4f{width:519.451435px;}
._50{width:598.265412px;}
._4{width:926.055600px;}
._53{width:1030.035960px;}
._46{width:1072.927413px;}
._4b{width:1112.951648px;}
._4c{width:1509.030893px;}
._33{width:1659.210000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc5{color:rgb(89,89,89);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:54.120000px;}
.fsd{font-size:58.585799px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fsc{font-size:73.151329px;}
.fsa{font-size:83.880000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2f6{bottom:0.090000px;}
.y14f{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y3f{bottom:2.970000px;}
.y15{bottom:3.240000px;}
.y128{bottom:4.680000px;}
.y151{bottom:4.770000px;}
.y138{bottom:4.860000px;}
.y2b4{bottom:4.895674px;}
.y13b{bottom:4.950000px;}
.y126{bottom:5.220000px;}
.y141{bottom:5.310000px;}
.y136{bottom:5.400000px;}
.y1d8{bottom:5.910000px;}
.y223{bottom:5.940000px;}
.y1f3{bottom:5.970000px;}
.y1f1{bottom:6.000000px;}
.y37{bottom:6.030000px;}
.y206{bottom:6.060000px;}
.y203{bottom:6.090000px;}
.y2a8{bottom:6.117528px;}
.y187{bottom:6.930000px;}
.y184{bottom:7.020000px;}
.y2b6{bottom:7.301102px;}
.y16f{bottom:7.560000px;}
.y181{bottom:8.100000px;}
.y4{bottom:8.460000px;}
.y12b{bottom:9.450000px;}
.y140{bottom:9.540000px;}
.y208{bottom:10.500000px;}
.y9{bottom:14.040000px;}
.y2f4{bottom:16.380000px;}
.y5{bottom:16.470000px;}
.y1e5{bottom:17.610000px;}
.y23e{bottom:17.640000px;}
.y216{bottom:17.670000px;}
.y1fd{bottom:17.700000px;}
.y2ab{bottom:18.336396px;}
.y2a9{bottom:18.336418px;}
.y2a5{bottom:18.336465px;}
.y3e{bottom:18.450000px;}
.y35{bottom:19.350000px;}
.y2c{bottom:20.520000px;}
.y2fb{bottom:21.690000px;}
.y1ff{bottom:22.470000px;}
.y205{bottom:22.530000px;}
.y202{bottom:22.560000px;}
.y207{bottom:26.970000px;}
.y2f3{bottom:30.240000px;}
.y2a7{bottom:30.506699px;}
.y2b5{bottom:31.698968px;}
.y2b2{bottom:31.699012px;}
.y3d{bottom:34.020000px;}
.y2fa{bottom:35.460000px;}
.y7{bottom:35.550000px;}
.y34{bottom:35.820000px;}
.y2b{bottom:37.800000px;}
.y201{bottom:39.030000px;}
.y2f2{bottom:44.010000px;}
.y1e3{bottom:47.520000px;}
.y22e{bottom:47.550000px;}
.y214{bottom:47.580000px;}
.y1fb{bottom:47.610000px;}
.y2f9{bottom:49.230000px;}
.y3c{bottom:49.500000px;}
.y33{bottom:51.330000px;}
.y2a{bottom:54.990000px;}
.y2b1{bottom:56.096275px;}
.y3{bottom:58.140000px;}
.y2f8{bottom:63.090000px;}
.y213{bottom:64.050000px;}
.y3b{bottom:65.070000px;}
.y228{bottom:65.100000px;}
.y24c{bottom:65.130000px;}
.y1f5{bottom:65.160000px;}
.y32{bottom:66.810000px;}
.y29{bottom:72.270000px;}
.y2f7{bottom:76.860000px;}
.y212{bottom:80.520000px;}
.y2b0{bottom:80.533998px;}
.y3a{bottom:80.550000px;}
.y31{bottom:82.380000px;}
.y28{bottom:89.550000px;}
.y229{bottom:91.860000px;}
.y24d{bottom:92.040000px;}
.y234{bottom:94.140000px;}
.y25d{bottom:95.490000px;}
.y39{bottom:96.120000px;}
.y30{bottom:97.860000px;}
.y1f6{bottom:97.890000px;}
.y20b{bottom:98.070000px;}
.y1dd{bottom:99.960000px;}
.y2af{bottom:104.931261px;}
.y27{bottom:106.740000px;}
.y40{bottom:111.690000px;}
.y2f{bottom:113.430000px;}
.y1af{bottom:116.010000px;}
.y2ed{bottom:116.460000px;}
.y4a{bottom:117.000000px;}
.y2a3{bottom:117.180000px;}
.y221{bottom:117.450000px;}
.y124{bottom:117.990000px;}
.y20a{bottom:118.170000px;}
.y9f{bottom:118.440000px;}
.y22a{bottom:118.590000px;}
.y24e{bottom:118.980000px;}
.yfc{bottom:119.880000px;}
.y160{bottom:120.240000px;}
.y281{bottom:120.420000px;}
.y1d6{bottom:120.780000px;}
.y235{bottom:123.210000px;}
.y26{bottom:124.020000px;}
.y25e{bottom:125.880000px;}
.y2e{bottom:128.910000px;}
.y2ae{bottom:129.328524px;}
.y1f7{bottom:130.620000px;}
.y25c{bottom:131.040000px;}
.y9e{bottom:132.300000px;}
.y49{bottom:132.480000px;}
.y1ae{bottom:133.290000px;}
.y2ec{bottom:133.650000px;}
.y2a2{bottom:134.460000px;}
.y220{bottom:134.730000px;}
.y1de{bottom:134.850000px;}
.y123{bottom:135.270000px;}
.yd0{bottom:135.630000px;}
.yfb{bottom:137.160000px;}
.y15f{bottom:137.520000px;}
.y280{bottom:137.700000px;}
.y1d5{bottom:138.060000px;}
.y7e{bottom:141.210000px;}
.y25{bottom:141.300000px;}
.y20c{bottom:143.190000px;}
.y22b{bottom:145.350000px;}
.y24f{bottom:145.890000px;}
.y9d{bottom:146.070000px;}
.y48{bottom:148.050000px;}
.y1ad{bottom:150.480000px;}
.y2ef{bottom:150.570000px;}
.y2eb{bottom:150.930000px;}
.y2a1{bottom:151.740000px;}
.y21f{bottom:152.010000px;}
.y236{bottom:152.250000px;}
.y122{bottom:152.550000px;}
.ycf{bottom:152.910000px;}
.y2ad{bottom:153.725787px;}
.yfa{bottom:154.440000px;}
.y15e{bottom:154.800000px;}
.y27f{bottom:154.890000px;}
.y1d4{bottom:155.340000px;}
.y25f{bottom:156.300000px;}
.y24{bottom:158.490000px;}
.y7d{bottom:158.520000px;}
.y9c{bottom:159.870000px;}
.y1f8{bottom:163.350000px;}
.y47{bottom:163.560000px;}
.y233{bottom:166.140000px;}
.y1ac{bottom:167.790000px;}
.y2ea{bottom:168.240000px;}
.y2a0{bottom:168.960000px;}
.y1df{bottom:169.740000px;}
.y121{bottom:169.770000px;}
.yce{bottom:170.220000px;}
.yf9{bottom:171.660000px;}
.y15d{bottom:172.020000px;}
.y22c{bottom:172.080000px;}
.y27e{bottom:172.200000px;}
.y1d3{bottom:172.560000px;}
.y250{bottom:172.830000px;}
.y9b{bottom:174.270000px;}
.y23{bottom:175.770000px;}
.y7c{bottom:175.800000px;}
.y46{bottom:179.130000px;}
.y237{bottom:181.320000px;}
.y1ab{bottom:185.070000px;}
.y2e9{bottom:185.430000px;}
.y29f{bottom:186.240000px;}
.y260{bottom:186.720000px;}
.y120{bottom:187.050000px;}
.ycd{bottom:187.410000px;}
.y20d{bottom:188.310000px;}
.yf8{bottom:188.940000px;}
.y15c{bottom:189.300000px;}
.y27d{bottom:189.480000px;}
.y1d2{bottom:189.840000px;}
.y9a{bottom:191.550000px;}
.y7b{bottom:192.990000px;}
.y22{bottom:193.050000px;}
.y45{bottom:194.610000px;}
.y1f9{bottom:196.080000px;}
.y22d{bottom:198.840000px;}
.y251{bottom:199.740000px;}
.y1aa{bottom:202.260000px;}
.y2ee{bottom:202.350000px;}
.y2e8{bottom:202.710000px;}
.y29e{bottom:203.520000px;}
.y11f{bottom:204.330000px;}
.y1e0{bottom:204.630000px;}
.ycc{bottom:204.690000px;}
.yf7{bottom:206.220000px;}
.y15b{bottom:206.580000px;}
.y1d1{bottom:207.030000px;}
.y27c{bottom:207.750000px;}
.y99{bottom:208.830000px;}
.y44{bottom:210.180000px;}
.y21{bottom:210.240000px;}
.y7a{bottom:210.270000px;}
.y238{bottom:210.390000px;}
.y261{bottom:217.110000px;}
.y1a9{bottom:219.540000px;}
.y2e7{bottom:219.990000px;}
.y29d{bottom:220.710000px;}
.y1dc{bottom:221.220000px;}
.y11e{bottom:221.520000px;}
.ycb{bottom:221.970000px;}
.yf6{bottom:223.410000px;}
.y15a{bottom:223.770000px;}
.y27b{bottom:225.030000px;}
.y43{bottom:225.660000px;}
.y98{bottom:226.020000px;}
.y252{bottom:226.680000px;}
.y22f{bottom:227.130000px;}
.y79{bottom:227.460000px;}
.y20{bottom:227.520000px;}
.y1fa{bottom:228.810000px;}
.y259{bottom:228.870000px;}
.y20e{bottom:233.430000px;}
.y2f5{bottom:234.300000px;}
.y1a8{bottom:236.820000px;}
.y2e6{bottom:237.180000px;}
.y11d{bottom:238.800000px;}
.y29c{bottom:239.070000px;}
.yca{bottom:239.160000px;}
.y239{bottom:239.430000px;}
.y1e1{bottom:239.520000px;}
.yf5{bottom:240.690000px;}
.y25b{bottom:241.020000px;}
.y159{bottom:241.050000px;}
.y42{bottom:241.500000px;}
.y27a{bottom:242.310000px;}
.y97{bottom:243.300000px;}
.y78{bottom:244.740000px;}
.y1f{bottom:244.800000px;}
.y262{bottom:247.530000px;}
.y253{bottom:253.590000px;}
.y1a7{bottom:254.010000px;}
.y2e5{bottom:254.460000px;}
.y11c{bottom:256.080000px;}
.y29b{bottom:256.260000px;}
.yc9{bottom:256.440000px;}
.y1fc{bottom:257.100000px;}
.yf4{bottom:257.970000px;}
.y158{bottom:258.330000px;}
.y41{bottom:258.420000px;}
.y279{bottom:259.500000px;}
.y96{bottom:260.580000px;}
.y1e{bottom:261.990000px;}
.y77{bottom:262.020000px;}
.y23a{bottom:268.500000px;}
.y1a6{bottom:271.290000px;}
.y16{bottom:271.740000px;}
.y157{bottom:273.090000px;}
.y11b{bottom:273.270000px;}
.y29a{bottom:273.540000px;}
.yc8{bottom:273.720000px;}
.y1e2{bottom:274.410000px;}
.yf3{bottom:275.160000px;}
.y278{bottom:276.780000px;}
.y95{bottom:277.770000px;}
.y263{bottom:277.920000px;}
.y20f{bottom:278.550000px;}
.y76{bottom:279.210000px;}
.y1d{bottom:279.270000px;}
.y254{bottom:280.530000px;}
.y209{bottom:286.560000px;}
.y1a5{bottom:288.570000px;}
.y2e4{bottom:288.930000px;}
.y11a{bottom:290.550000px;}
.y299{bottom:290.820000px;}
.yc7{bottom:290.910000px;}
.yf2{bottom:292.440000px;}
.y156{bottom:292.800000px;}
.y1db{bottom:294.750000px;}
.y94{bottom:295.050000px;}
.y277{bottom:295.140000px;}
.y200{bottom:295.470000px;}
.y75{bottom:296.490000px;}
.y1c{bottom:296.550000px;}
.y23b{bottom:297.540000px;}
.y1e4{bottom:302.700000px;}
.y18a{bottom:304.140000px;}
.y1a4{bottom:305.760000px;}
.y264{bottom:306.210000px;}
.y2e3{bottom:307.290000px;}
.y255{bottom:307.440000px;}
.y119{bottom:307.830000px;}
.y298{bottom:308.010000px;}
.yc6{bottom:308.190000px;}
.yf1{bottom:309.720000px;}
.y93{bottom:312.330000px;}
.y155{bottom:312.510000px;}
.y1b{bottom:313.770000px;}
.y25a{bottom:314.010000px;}
.y189{bottom:318.900000px;}
.y1a3{bottom:323.040000px;}
.y210{bottom:323.670000px;}
.y2e2{bottom:324.570000px;}
.y118{bottom:325.020000px;}
.y297{bottom:325.290000px;}
.yc5{bottom:325.470000px;}
.y92{bottom:326.280000px;}
.y23c{bottom:326.610000px;}
.yf0{bottom:326.910000px;}
.y1da{bottom:328.950000px;}
.y276{bottom:329.610000px;}
.y74{bottom:330.960000px;}
.y1a{bottom:331.050000px;}
.y154{bottom:331.320000px;}
.y256{bottom:334.380000px;}
.y2f1{bottom:337.620000px;}
.y1a2{bottom:340.320000px;}
.y2e1{bottom:341.760000px;}
.y117{bottom:342.300000px;}
.y296{bottom:342.570000px;}
.yc4{bottom:342.660000px;}
.y188{bottom:343.290000px;}
.yef{bottom:344.190000px;}
.y275{bottom:346.890000px;}
.y19{bottom:348.240000px;}
.y153{bottom:350.130000px;}
.y23d{bottom:354.900000px;}
.y1fe{bottom:357.390000px;}
.y1a1{bottom:357.510000px;}
.y2e0{bottom:359.040000px;}
.y116{bottom:359.580000px;}
.y295{bottom:359.760000px;}
.yc3{bottom:359.940000px;}
.yee{bottom:361.470000px;}
.y257{bottom:362.670000px;}
.y274{bottom:364.080000px;}
.y18{bottom:365.520000px;}
.y186{bottom:367.680000px;}
.y211{bottom:368.790000px;}
.y152{bottom:368.940000px;}
.y1a0{bottom:374.790000px;}
.y2df{bottom:376.320000px;}
.y115{bottom:376.770000px;}
.yc2{bottom:377.220000px;}
.y294{bottom:378.120000px;}
.yed{bottom:378.660000px;}
.y273{bottom:382.440000px;}
.y73{bottom:382.710000px;}
.y17{bottom:382.800000px;}
.y150{bottom:387.840000px;}
.y185{bottom:390.900000px;}
.y19f{bottom:392.070000px;}
.y258{bottom:393.030000px;}
.y2f0{bottom:393.510000px;}
.y114{bottom:394.050000px;}
.yc1{bottom:394.410000px;}
.y2de{bottom:394.590000px;}
.y293{bottom:395.400000px;}
.yec{bottom:395.940000px;}
.y38{bottom:396.750000px;}
.y231{bottom:399.420000px;}
.y272{bottom:399.630000px;}
.y72{bottom:399.990000px;}
.y215{bottom:400.860000px;}
.y14e{bottom:406.650000px;}
.y19e{bottom:409.260000px;}
.y113{bottom:411.330000px;}
.yc0{bottom:411.690000px;}
.y2dd{bottom:411.870000px;}
.y292{bottom:412.590000px;}
.yeb{bottom:413.130000px;}
.y183{bottom:414.120000px;}
.y271{bottom:416.910000px;}
.y71{bottom:417.270000px;}
.y14d{bottom:424.380000px;}
.y19d{bottom:426.540000px;}
.y230{bottom:428.490000px;}
.y112{bottom:428.520000px;}
.ybf{bottom:428.970000px;}
.y2dc{bottom:429.060000px;}
.y291{bottom:429.870000px;}
.yea{bottom:430.410000px;}
.y1d9{bottom:431.550000px;}
.y270{bottom:434.190000px;}
.y70{bottom:434.460000px;}
.y182{bottom:437.430000px;}
.y14c{bottom:441.660000px;}
.y19c{bottom:443.820000px;}
.y111{bottom:445.800000px;}
.ybe{bottom:446.160000px;}
.y2db{bottom:446.340000px;}
.y290{bottom:447.150000px;}
.ye9{bottom:447.690000px;}
.y26f{bottom:451.380000px;}
.y6f{bottom:451.740000px;}
.y180{bottom:451.920000px;}
.y14b{bottom:458.940000px;}
.y19b{bottom:461.010000px;}
.y110{bottom:462.990000px;}
.ybd{bottom:463.440000px;}
.y204{bottom:463.500000px;}
.y2da{bottom:463.620000px;}
.y28f{bottom:464.340000px;}
.ye8{bottom:464.880000px;}
.y26e{bottom:468.660000px;}
.y6e{bottom:469.020000px;}
.y245{bottom:471.720000px;}
.y232{bottom:472.050000px;}
.y1d7{bottom:472.590000px;}
.y91{bottom:474.330000px;}
.y14a{bottom:476.130000px;}
.y19a{bottom:478.290000px;}
.y17f{bottom:479.460000px;}
.y10f{bottom:480.270000px;}
.ybc{bottom:480.630000px;}
.y2d9{bottom:480.810000px;}
.y28e{bottom:481.620000px;}
.ye7{bottom:482.160000px;}
.y26d{bottom:485.940000px;}
.y6d{bottom:486.210000px;}
.y90{bottom:488.100000px;}
.y244{bottom:489.000000px;}
.y17e{bottom:490.080000px;}
.y149{bottom:493.410000px;}
.y199{bottom:495.570000px;}
.y10e{bottom:497.550000px;}
.ybb{bottom:497.910000px;}
.y2d8{bottom:498.090000px;}
.y28d{bottom:498.810000px;}
.ye6{bottom:499.440000px;}
.y8f{bottom:501.870000px;}
.y17d{bottom:503.130000px;}
.y6c{bottom:503.490000px;}
.y36{bottom:506.190000px;}
.y148{bottom:510.690000px;}
.y198{bottom:512.760000px;}
.y10d{bottom:514.740000px;}
.yba{bottom:515.190000px;}
.y2d7{bottom:515.370000px;}
.y28c{bottom:516.090000px;}
.y8e{bottom:516.270000px;}
.ye5{bottom:516.630000px;}
.y17c{bottom:520.320000px;}
.y26c{bottom:520.410000px;}
.y6b{bottom:520.770000px;}
.y243{bottom:523.470000px;}
.y2d{bottom:526.980000px;}
.y147{bottom:527.880000px;}
.y197{bottom:530.040000px;}
.y10c{bottom:532.020000px;}
.yb9{bottom:532.380000px;}
.y2d6{bottom:532.560000px;}
.y28b{bottom:533.370000px;}
.y8d{bottom:533.550000px;}
.ye4{bottom:533.910000px;}
.y17b{bottom:537.600000px;}
.y26b{bottom:537.690000px;}
.y6a{bottom:537.960000px;}
.y242{bottom:540.750000px;}
.y146{bottom:545.160000px;}
.y196{bottom:547.230000px;}
.y10b{bottom:549.300000px;}
.yb8{bottom:549.660000px;}
.y1ee{bottom:549.750000px;}
.y2d5{bottom:549.840000px;}
.y8c{bottom:550.740000px;}
.ye3{bottom:551.190000px;}
.y28a{bottom:551.640000px;}
.y17a{bottom:554.880000px;}
.y69{bottom:555.240000px;}
.y21e{bottom:555.510000px;}
.y241{bottom:557.940000px;}
.y1d0{bottom:558.390000px;}
.y195{bottom:561.990000px;}
.y145{bottom:562.440000px;}
.y10a{bottom:566.490000px;}
.yb7{bottom:566.940000px;}
.y2d4{bottom:567.120000px;}
.y8b{bottom:568.020000px;}
.ye2{bottom:568.380000px;}
.y289{bottom:568.920000px;}
.y179{bottom:572.070000px;}
.y26a{bottom:572.160000px;}
.y68{bottom:572.430000px;}
.y21d{bottom:572.790000px;}
.y240{bottom:575.250000px;}
.y1cf{bottom:575.610000px;}
.y194{bottom:576.600000px;}
.y144{bottom:579.660000px;}
.y109{bottom:583.800000px;}
.yb6{bottom:584.160000px;}
.y1ed{bottom:584.250000px;}
.y8a{bottom:585.330000px;}
.y2d3{bottom:585.420000px;}
.ye1{bottom:585.690000px;}
.y288{bottom:586.230000px;}
.y178{bottom:589.380000px;}
.y269{bottom:589.470000px;}
.y67{bottom:589.740000px;}
.y21c{bottom:590.010000px;}
.y193{bottom:591.180000px;}
.y23f{bottom:592.530000px;}
.y1ce{bottom:592.890000px;}
.y143{bottom:596.940000px;}
.y108{bottom:601.080000px;}
.yb5{bottom:601.440000px;}
.y1ec{bottom:601.530000px;}
.y89{bottom:602.520000px;}
.y2d2{bottom:602.700000px;}
.ye0{bottom:602.970000px;}
.y287{bottom:603.420000px;}
.y192{bottom:605.670000px;}
.y24b{bottom:606.600000px;}
.y177{bottom:606.660000px;}
.y66{bottom:607.020000px;}
.y21b{bottom:607.290000px;}
.y1cd{bottom:610.170000px;}
.y142{bottom:614.220000px;}
.y107{bottom:618.270000px;}
.yb4{bottom:618.720000px;}
.y88{bottom:619.800000px;}
.y2d1{bottom:619.980000px;}
.ydf{bottom:620.160000px;}
.y191{bottom:620.250000px;}
.y286{bottom:621.780000px;}
.y176{bottom:623.850000px;}
.y268{bottom:623.940000px;}
.y65{bottom:624.210000px;}
.y21a{bottom:624.570000px;}
.y1cc{bottom:627.360000px;}
.y13f{bottom:628.980000px;}
.y190{bottom:634.830000px;}
.y106{bottom:635.550000px;}
.yb3{bottom:635.910000px;}
.y1eb{bottom:636.000000px;}
.y87{bottom:637.080000px;}
.y2d0{bottom:637.170000px;}
.yde{bottom:637.440000px;}
.y285{bottom:639.060000px;}
.y175{bottom:641.130000px;}
.y267{bottom:641.220000px;}
.y64{bottom:641.490000px;}
.y219{bottom:641.760000px;}
.y1cb{bottom:644.640000px;}
.y13e{bottom:648.870000px;}
.y105{bottom:652.830000px;}
.yb2{bottom:653.190000px;}
.y1ea{bottom:653.280000px;}
.y86{bottom:654.270000px;}
.y2cf{bottom:654.450000px;}
.ydd{bottom:654.720000px;}
.y284{bottom:656.250000px;}
.y18f{bottom:658.050000px;}
.y174{bottom:658.410000px;}
.y63{bottom:658.770000px;}
.y218{bottom:659.040000px;}
.y1ca{bottom:659.400000px;}
.y13d{bottom:668.850000px;}
.y14{bottom:669.300000px;}
.y104{bottom:670.020000px;}
.yb1{bottom:670.470000px;}
.y85{bottom:671.550000px;}
.y2ce{bottom:671.730000px;}
.ydc{bottom:671.910000px;}
.y18e{bottom:672.630000px;}
.y1c9{bottom:673.980000px;}
.y283{bottom:674.610000px;}
.y173{bottom:675.600000px;}
.y266{bottom:675.690000px;}
.y62{bottom:675.960000px;}
.y217{bottom:676.230000px;}
.y246{bottom:680.130000px;}
.y18d{bottom:687.120000px;}
.y103{bottom:687.300000px;}
.yb0{bottom:687.660000px;}
.y1e9{bottom:687.750000px;}
.y13c{bottom:687.930000px;}
.y1c8{bottom:688.470000px;}
.y84{bottom:688.830000px;}
.y2cd{bottom:688.920000px;}
.ydb{bottom:689.190000px;}
.y227{bottom:690.390000px;}
.y24a{bottom:690.660000px;}
.y282{bottom:691.890000px;}
.y172{bottom:692.880000px;}
.y61{bottom:693.240000px;}
.y18c{bottom:701.700000px;}
.y1e8{bottom:701.790000px;}
.y1f4{bottom:701.820000px;}
.y1c7{bottom:703.050000px;}
.y13{bottom:703.860000px;}
.y102{bottom:704.580000px;}
.yaf{bottom:704.940000px;}
.y83{bottom:706.020000px;}
.yda{bottom:706.470000px;}
.y13a{bottom:706.920000px;}
.y2cc{bottom:707.280000px;}
.y171{bottom:710.070000px;}
.y265{bottom:710.160000px;}
.y60{bottom:710.520000px;}
.y18b{bottom:716.280000px;}
.y1c6{bottom:717.630000px;}
.y82{bottom:720.060000px;}
.y101{bottom:721.770000px;}
.yae{bottom:722.220000px;}
.yd9{bottom:723.660000px;}
.y12{bottom:723.750000px;}
.y2ac{bottom:724.230000px;}
.y2cb{bottom:724.470000px;}
.y139{bottom:726.000000px;}
.y170{bottom:727.350000px;}
.y5f{bottom:727.710000px;}
.y1c5{bottom:732.120000px;}
.y100{bottom:739.050000px;}
.yad{bottom:739.410000px;}
.yd8{bottom:740.940000px;}
.y2ca{bottom:741.750000px;}
.y16e{bottom:742.110000px;}
.y5e{bottom:744.990000px;}
.y137{bottom:745.080000px;}
.y1c4{bottom:746.700000px;}
.y2b3{bottom:751.033337px;}
.y247{bottom:754.020000px;}
.yff{bottom:756.330000px;}
.yac{bottom:756.690000px;}
.y11{bottom:757.410000px;}
.yd7{bottom:758.130000px;}
.y2c9{bottom:759.030000px;}
.y1c3{bottom:761.280000px;}
.y5d{bottom:762.270000px;}
.y135{bottom:764.070000px;}
.y16d{bottom:766.500000px;}
.yfe{bottom:770.280000px;}
.yab{bottom:773.970000px;}
.y10{bottom:774.690000px;}
.y1f2{bottom:775.350000px;}
.yd6{bottom:775.410000px;}
.y1c2{bottom:775.770000px;}
.y2c8{bottom:776.220000px;}
.y5c{bottom:779.460000px;}
.y1f0{bottom:781.740000px;}
.yf{bottom:787.020000px;}
.y134{bottom:787.290000px;}
.y226{bottom:790.110000px;}
.y1c1{bottom:790.350000px;}
.yaa{bottom:791.160000px;}
.yd5{bottom:792.690000px;}
.y2c7{bottom:793.500000px;}
.y16c{bottom:794.850000px;}
.y5b{bottom:796.740000px;}
.y133{bottom:804.570000px;}
.y1c0{bottom:804.930000px;}
.y222{bottom:805.860000px;}
.ye{bottom:808.260000px;}
.ya9{bottom:808.440000px;}
.y16b{bottom:809.430000px;}
.yd4{bottom:809.880000px;}
.y2c6{bottom:811.860000px;}
.y5a{bottom:814.020000px;}
.y1bf{bottom:819.420000px;}
.y132{bottom:821.760000px;}
.y16a{bottom:823.920000px;}
.ya8{bottom:825.630000px;}
.yd3{bottom:827.160000px;}
.y2c5{bottom:829.050000px;}
.y59{bottom:831.210000px;}
.y1be{bottom:834.000000px;}
.y169{bottom:838.500000px;}
.y131{bottom:839.040000px;}
.yd{bottom:839.310000px;}
.ya7{bottom:842.910000px;}
.yd2{bottom:844.440000px;}
.y2c4{bottom:846.330000px;}
.y225{bottom:847.800000px;}
.y58{bottom:848.490000px;}
.y1bd{bottom:848.580000px;}
.y130{bottom:856.230000px;}
.yd1{bottom:858.390000px;}
.ya6{bottom:860.190000px;}
.y1bc{bottom:863.070000px;}
.y2c3{bottom:863.610000px;}
.y57{bottom:865.770000px;}
.y168{bottom:866.850000px;}
.yc{bottom:870.360000px;}
.y12f{bottom:873.510000px;}
.ya5{bottom:877.380000px;}
.y1bb{bottom:877.650000px;}
.y224{bottom:879.210000px;}
.y2c2{bottom:880.800000px;}
.y167{bottom:881.430000px;}
.y56{bottom:882.960000px;}
.y12e{bottom:890.790000px;}
.y1ba{bottom:892.230000px;}
.ya4{bottom:894.660000px;}
.y166{bottom:895.920000px;}
.y2a4{bottom:897.496175px;}
.y2aa{bottom:897.496188px;}
.y2a6{bottom:897.496209px;}
.y2c1{bottom:898.080000px;}
.y55{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y249{bottom:901.800000px;}
.y1b9{bottom:906.720000px;}
.y12d{bottom:907.980000px;}
.y81{bottom:909.960000px;}
.y165{bottom:910.500000px;}
.ya3{bottom:911.940000px;}
.y248{bottom:912.330000px;}
.y2c0{bottom:915.360000px;}
.y54{bottom:917.430000px;}
.y1b8{bottom:921.300000px;}
.y80{bottom:923.730000px;}
.y164{bottom:924.990000px;}
.y12c{bottom:925.260000px;}
.ya2{bottom:925.890000px;}
.y1ef{bottom:926.100000px;}
.ya{bottom:930.210000px;}
.y2bf{bottom:932.550000px;}
.y53{bottom:934.710000px;}
.y1b7{bottom:935.790000px;}
.y7f{bottom:937.590000px;}
.y163{bottom:939.570000px;}
.y12a{bottom:940.020000px;}
.y8{bottom:945.600000px;}
.y1b6{bottom:950.370000px;}
.y2be{bottom:950.910000px;}
.y52{bottom:951.990000px;}
.y162{bottom:954.150000px;}
.y129{bottom:959.640000px;}
.y1b5{bottom:964.950000px;}
.y2bd{bottom:968.100000px;}
.y161{bottom:968.640000px;}
.y51{bottom:969.180000px;}
.y127{bottom:979.350000px;}
.y1b4{bottom:979.440000px;}
.y2bc{bottom:985.380000px;}
.y50{bottom:986.460000px;}
.y1e7{bottom:992.790000px;}
.y1b3{bottom:994.050000px;}
.y125{bottom:998.100000px;}
.y2bb{bottom:1002.690000px;}
.y4f{bottom:1003.770000px;}
.y1e6{bottom:1006.560000px;}
.y1b2{bottom:1008.630000px;}
.y2ba{bottom:1019.880000px;}
.y4e{bottom:1020.960000px;}
.y1b1{bottom:1023.120000px;}
.y2b9{bottom:1037.160000px;}
.y1b0{bottom:1037.700000px;}
.y4d{bottom:1038.240000px;}
.y2b8{bottom:1054.440000px;}
.y4c{bottom:1055.520000px;}
.ya1{bottom:1058.940000px;}
.yfd{bottom:1061.820000px;}
.y2b7{bottom:1071.630000px;}
.y4b{bottom:1072.710000px;}
.ya0{bottom:1075.590000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h22{height:13.770000px;}
.h26{height:13.860000px;}
.h43{height:13.860150px;}
.h2d{height:13.890000px;}
.hf{height:17.190000px;}
.h23{height:18.000000px;}
.h1c{height:18.030000px;}
.h24{height:18.090000px;}
.h1f{height:18.270000px;}
.h20{height:18.360000px;}
.h1b{height:18.900000px;}
.h25{height:18.990000px;}
.h21{height:19.170000px;}
.h1e{height:19.260000px;}
.h14{height:20.070000px;}
.h2e{height:21.240000px;}
.h32{height:21.330000px;}
.h2b{height:22.500000px;}
.h41{height:23.223966px;}
.h2c{height:23.580000px;}
.h27{height:23.670000px;}
.h2a{height:24.750000px;}
.h29{height:25.400391px;}
.hc{height:27.147656px;}
.h3{height:27.630000px;}
.h28{height:29.718457px;}
.h5{height:33.431836px;}
.h1a{height:33.782520px;}
.h16{height:37.705078px;}
.h35{height:37.890000px;}
.h17{height:38.100586px;}
.h6{height:39.082324px;}
.h12{height:39.999023px;}
.h1d{height:41.743477px;}
.h4{height:41.978320px;}
.he{height:42.418652px;}
.h19{height:43.769004px;}
.h13{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h37{height:46.890000px;}
.h9{height:49.635176px;}
.h3f{height:50.048786px;}
.h3d{height:50.048861px;}
.h1{height:50.800781px;}
.h2f{height:53.709961px;}
.h34{height:53.829316px;}
.hb{height:53.838457px;}
.h36{height:54.540000px;}
.h42{height:55.170000px;}
.h3e{height:72.758426px;}
.hd{height:75.410156px;}
.ha{height:76.201172px;}
.h31{height:83.429473px;}
.h44{height:88.020000px;}
.h15{height:108.720000px;}
.h18{height:124.290000px;}
.h11{height:141.510000px;}
.h7{height:153.930000px;}
.h40{height:223.316040px;}
.h39{height:258.390000px;}
.h33{height:288.360000px;}
.h30{height:333.990000px;}
.h3c{height:337.500000px;}
.h3a{height:386.190000px;}
.h3b{height:393.930000px;}
.h10{height:396.750000px;}
.h38{height:428.400000px;}
.h0{height:1188.000000px;}
.w18{width:33.390000px;}
.w21{width:33.480000px;}
.w2{width:39.060000px;}
.w13{width:41.850000px;}
.w4b{width:50.527743px;}
.w4c{width:52.779469px;}
.w4d{width:54.239379px;}
.w29{width:54.990000px;}
.w41{width:61.830000px;}
.w27{width:64.350000px;}
.w42{width:64.440000px;}
.w45{width:64.890000px;}
.w2f{width:65.610000px;}
.w2c{width:66.510000px;}
.w1e{width:70.110000px;}
.w1a{width:70.200000px;}
.w15{width:70.650000px;}
.w51{width:71.190000px;}
.w1f{width:72.120000px;}
.w1b{width:72.180000px;}
.w2d{width:73.530000px;}
.w3d{width:73.980000px;}
.w8{width:74.790000px;}
.w39{width:79.200000px;}
.w47{width:80.460000px;}
.w46{width:80.910000px;}
.w11{width:82.080000px;}
.w2a{width:83.520000px;}
.wb{width:83.790000px;}
.w12{width:84.810000px;}
.w3b{width:86.040000px;}
.w3f{width:87.570000px;}
.w38{width:89.820000px;}
.w26{width:92.970000px;}
.w28{width:94.590000px;}
.wd{width:94.860000px;}
.w9{width:96.840000px;}
.we{width:97.500000px;}
.wc{width:97.920000px;}
.w10{width:98.280000px;}
.w7{width:99.000000px;}
.wa{width:99.660000px;}
.w2e{width:101.160000px;}
.w3e{width:102.330000px;}
.wf{width:103.590000px;}
.w3a{width:103.950000px;}
.w16{width:105.570000px;}
.w33{width:106.740000px;}
.w44{width:120.600000px;}
.w48{width:129.240000px;}
.w34{width:136.350000px;}
.w36{width:136.800000px;}
.w32{width:140.580000px;}
.w31{width:150.390000px;}
.w23{width:154.200000px;}
.w35{width:155.700000px;}
.w14{width:172.380000px;}
.w19{width:200.550000px;}
.w1d{width:206.460000px;}
.w17{width:215.040000px;}
.w6{width:220.350000px;}
.w24{width:233.100000px;}
.w1c{width:234.660000px;}
.w20{width:240.660000px;}
.w22{width:246.450000px;}
.w25{width:280.740000px;}
.w52{width:286.320000px;}
.w4f{width:300.246624px;}
.w50{width:358.230000px;}
.w30{width:561.870000px;}
.w2b{width:566.100000px;}
.w40{width:586.260000px;}
.w5{width:588.480000px;}
.w43{width:625.410000px;}
.w3c{width:641.160000px;}
.w4a{width:646.547230px;}
.w4e{width:646.547238px;}
.w49{width:679.410000px;}
.w37{width:770.760000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9e{left:2.226983px;}
.x63{left:5.010000px;}
.x12{left:6.660000px;}
.x3{left:8.640000px;}
.x5a{left:10.710000px;}
.x3e{left:11.880000px;}
.x3a{left:13.680000px;}
.x38{left:15.390000px;}
.x69{left:16.680000px;}
.x28{left:18.090000px;}
.x11{left:20.160000px;}
.x2b{left:21.510000px;}
.x30{left:23.760000px;}
.x2c{left:25.110000px;}
.x15{left:27.630000px;}
.x43{left:29.340000px;}
.x3c{left:31.440000px;}
.x31{left:33.030000px;}
.x13{left:34.110000px;}
.x14{left:36.090000px;}
.x36{left:37.740000px;}
.x2e{left:38.880000px;}
.x26{left:40.590000px;}
.x2d{left:42.390000px;}
.x35{left:44.370000px;}
.x6{left:45.540000px;}
.x44{left:47.250000px;}
.x2f{left:49.410000px;}
.x45{left:50.940000px;}
.x59{left:52.770000px;}
.x2{left:53.999986px;}
.x3d{left:55.170000px;}
.x77{left:56.580000px;}
.x42{left:58.440000px;}
.x17{left:59.669986px;}
.x1{left:60.749986px;}
.x5f{left:64.110000px;}
.x16{left:65.429986px;}
.x46{left:67.440000px;}
.x4e{left:69.420000px;}
.x5b{left:71.310000px;}
.x4d{left:72.480000px;}
.x5c{left:73.740000px;}
.x52{left:74.970000px;}
.x7a{left:76.410000px;}
.x4c{left:80.130000px;}
.x7b{left:81.990000px;}
.x58{left:84.450000px;}
.x47{left:86.490000px;}
.x9{left:89.099986px;}
.x57{left:90.180000px;}
.x5e{left:93.270000px;}
.x49{left:94.680000px;}
.xa6{left:96.210000px;}
.x3f{left:97.830000px;}
.x53{left:99.180000px;}
.x4{left:100.890000px;}
.x5d{left:102.270000px;}
.x22{left:104.489986px;}
.x74{left:105.930000px;}
.x5{left:107.999986px;}
.x60{left:111.630000px;}
.x8e{left:115.830000px;}
.x61{left:119.370000px;}
.x98{left:122.130000px;}
.x54{left:134.460000px;}
.x9d{left:138.929817px;}
.x87{left:141.210000px;}
.x93{left:149.130000px;}
.x48{left:151.649986px;}
.x88{left:157.380000px;}
.xa3{left:158.997405px;}
.x72{left:163.950000px;}
.x8d{left:168.660000px;}
.x94{left:169.680000px;}
.x7c{left:175.890000px;}
.x68{left:178.740000px;}
.x71{left:180.900000px;}
.x6a{left:187.200000px;}
.x7d{left:191.130000px;}
.x7e{left:192.750000px;}
.xd{left:194.969986px;}
.x99{left:206.400000px;}
.x90{left:209.340000px;}
.x73{left:212.970000px;}
.x84{left:214.380000px;}
.x89{left:223.290000px;}
.x62{left:228.330000px;}
.x8f{left:248.700000px;}
.x23{left:252.569986px;}
.x6e{left:261.720000px;}
.x82{left:262.980000px;}
.x8a{left:264.690000px;}
.x40{left:270.930000px;}
.xc{left:292.349986px;}
.x4a{left:295.950000px;}
.xe{left:301.169986px;}
.x7f{left:304.260000px;}
.x80{left:307.530000px;}
.x6b{left:313.229986px;}
.x95{left:320.490000px;}
.x83{left:322.470000px;}
.xa{left:332.489986px;}
.x41{left:342.300000px;}
.x64{left:343.440000px;}
.x75{left:363.960000px;}
.x4b{left:366.870000px;}
.x9f{left:374.548632px;}
.x55{left:381.720000px;}
.x81{left:400.830000px;}
.x8b{left:425.250000px;}
.x24{left:427.349986px;}
.x65{left:429.120000px;}
.x96{left:435.960000px;}
.x1f{left:448.499986px;}
.x8{left:459.029986px;}
.x6c{left:461.819986px;}
.xb{left:464.159986px;}
.xf{left:465.239986px;}
.x76{left:467.280000px;}
.x18{left:478.229986px;}
.x9b{left:479.759986px;}
.xa5{left:481.560000px;}
.x25{left:484.440000px;}
.x1c{left:488.219986px;}
.x6f{left:490.860000px;}
.x1a{left:494.069986px;}
.x85{left:496.800000px;}
.x9a{left:506.759986px;}
.xa4{left:510.989986px;}
.x4f{left:518.640000px;}
.x9c{left:526.559986px;}
.x20{left:528.989986px;}
.x56{left:536.730000px;}
.x66{left:549.720000px;}
.xa1{left:554.399675px;}
.x91{left:556.830000px;}
.x97{left:559.620000px;}
.x32{left:569.040000px;}
.x78{left:575.730000px;}
.x27{left:584.250000px;}
.x37{left:588.840000px;}
.x8c{left:607.320000px;}
.xa0{left:629.410167px;}
.x70{left:631.890000px;}
.x67{left:636.210000px;}
.x10{left:642.210000px;}
.x86{left:650.520000px;}
.x1d{left:657.149986px;}
.x92{left:658.710000px;}
.x29{left:659.850000px;}
.x33{left:667.680000px;}
.x19{left:671.099986px;}
.x39{left:687.930000px;}
.x79{left:703.260000px;}
.x50{left:725.820000px;}
.xa2{left:730.485444px;}
.x6d{left:742.829986px;}
.x2a{left:757.410000px;}
.x34{left:763.260000px;}
.x3b{left:770.730000px;}
.x51{left:796.740000px;}
.x7{left:812.430000px;}
.x1b{left:856.619986px;}
.x21{left:872.009986px;}
.x1e{left:876.509986px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.090995pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls1e{letter-spacing:-2.756302pt;}
.lsa{letter-spacing:-0.456533pt;}
.ls10{letter-spacing:-0.367467pt;}
.lsd{letter-spacing:-0.308267pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.195733pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.136533pt;}
.ls15{letter-spacing:-0.069867pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls12{letter-spacing:-0.008320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.012480pt;}
.lsf{letter-spacing:0.016640pt;}
.ls17{letter-spacing:0.057600pt;}
.ls0{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.124267pt;}
.ls16{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.136533pt;}
.ls9{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:1.150857pt;}
.ls19{letter-spacing:1.197754pt;}
.lse{letter-spacing:12.880000pt;}
.ls1f{letter-spacing:14.583680pt;}
.ls3{letter-spacing:32.823680pt;}
.ls2{letter-spacing:36.576000pt;}
.ls8{letter-spacing:41.143680pt;}
.ls18{letter-spacing:56.503680pt;}
.ls1a{letter-spacing:109.624279pt;}
.ls1b{letter-spacing:127.002215pt;}
.ws6{word-spacing:-53.440000pt;}
.ws15{word-spacing:-14.695289pt;}
.ws8{word-spacing:-13.520000pt;}
.ws13{word-spacing:-13.496533pt;}
.ws0{word-spacing:-13.360000pt;}
.ws4{word-spacing:-13.223467pt;}
.wsa{word-spacing:-13.200000pt;}
.wsc{word-spacing:-13.164267pt;}
.ws9{word-spacing:-12.903467pt;}
.ws5{word-spacing:-12.000000pt;}
.ws11{word-spacing:-10.976000pt;}
.wsf{word-spacing:-10.848000pt;}
.wsb{word-spacing:-10.800000pt;}
.wse{word-spacing:-10.656640pt;}
.ws1{word-spacing:-10.640000pt;}
.wsd{word-spacing:-10.631680pt;}
.ws2{word-spacing:-9.360000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
.ws16{word-spacing:18.181234pt;}
.ws19{word-spacing:100.441018pt;}
.ws1e{word-spacing:110.152810pt;}
.ws1c{word-spacing:112.306926pt;}
.ws1a{word-spacing:140.362799pt;}
.ws17{word-spacing:160.976081pt;}
.ws1f{word-spacing:191.186069pt;}
.ws18{word-spacing:202.947537pt;}
.ws1b{word-spacing:221.568686pt;}
.ws10{word-spacing:233.680000pt;}
.ws1d{word-spacing:268.868896pt;}
.ws12{word-spacing:414.250667pt;}
.ws14{word-spacing:791.189812pt;}
._4e{margin-left:-15.488818pt;}
._45{margin-left:-14.034754pt;}
._36{margin-left:-5.865280pt;}
._3c{margin-left:-4.622720pt;}
._37{margin-left:-3.355200pt;}
._38{margin-left:-2.162240pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.965120pt;}
._d{width:2.027520pt;}
._1d{width:3.002240pt;}
._10{width:4.008000pt;}
._6{width:5.344000pt;}
._7{width:6.252480pt;}
._f{width:7.428160pt;}
._1c{width:8.531627pt;}
._12{width:9.458880pt;}
._8{width:10.474240pt;}
._5{width:11.863680pt;}
._11{width:14.428800pt;}
._9{width:15.551040pt;}
._b{width:17.154240pt;}
._a{width:18.116160pt;}
._c{width:19.024640pt;}
._19{width:20.093440pt;}
._1a{width:21.055360pt;}
._e{width:22.765440pt;}
._1b{width:23.941120pt;}
._24{width:25.155200pt;}
._25{width:26.345920pt;}
._20{width:27.254400pt;}
._22{width:28.162880pt;}
._1f{width:29.445440pt;}
._15{width:30.768000pt;}
._29{width:31.970560pt;}
._2d{width:33.025920pt;}
._2e{width:33.920960pt;}
._2a{width:35.539200pt;}
._26{width:36.497920pt;}
._14{width:38.208000pt;}
._1e{width:39.280427pt;}
._21{width:42.965760pt;}
._2c{width:44.782720pt;}
._27{width:46.118720pt;}
._23{width:47.027200pt;}
._18{width:48.096000pt;}
._17{width:49.111360pt;}
._52{width:50.100800pt;}
._28{width:55.096640pt;}
._2b{width:57.875520pt;}
._44{width:67.548160pt;}
._51{width:68.830720pt;}
._13{width:70.992000pt;}
._16{width:111.408000pt;}
._2{width:115.960427pt;}
._49{width:127.002215pt;}
._43{width:183.792000pt;}
._48{width:200.196701pt;}
._30{width:216.528000pt;}
._2f{width:219.424000pt;}
._31{width:220.938667pt;}
._32{width:228.384000pt;}
._47{width:230.636861pt;}
._40{width:238.240000pt;}
._4a{width:250.597895pt;}
._35{width:258.170667pt;}
._3f{width:262.069333pt;}
._3e{width:263.157333pt;}
._3d{width:270.640000pt;}
._42{width:280.757333pt;}
._1{width:303.598827pt;}
._41{width:308.080000pt;}
._34{width:317.530667pt;}
._3a{width:330.362667pt;}
._39{width:355.216000pt;}
._4d{width:428.006868pt;}
._3b{width:449.024000pt;}
._4f{width:461.734608pt;}
._50{width:531.791478pt;}
._4{width:823.160533pt;}
._53{width:915.587520pt;}
._46{width:953.713256pt;}
._4b{width:989.290354pt;}
._4c{width:1341.360793pt;}
._33{width:1474.853333pt;}
.fs3{font-size:26.560000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:48.106667pt;}
.fsd{font-size:52.076266pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fsc{font-size:65.023403pt;}
.fsa{font-size:74.560000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2f6{bottom:0.080000pt;}
.y14f{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y3f{bottom:2.640000pt;}
.y15{bottom:2.880000pt;}
.y128{bottom:4.160000pt;}
.y151{bottom:4.240000pt;}
.y138{bottom:4.320000pt;}
.y2b4{bottom:4.351710pt;}
.y13b{bottom:4.400000pt;}
.y126{bottom:4.640000pt;}
.y141{bottom:4.720000pt;}
.y136{bottom:4.800000pt;}
.y1d8{bottom:5.253333pt;}
.y223{bottom:5.280000pt;}
.y1f3{bottom:5.306667pt;}
.y1f1{bottom:5.333333pt;}
.y37{bottom:5.360000pt;}
.y206{bottom:5.386667pt;}
.y203{bottom:5.413333pt;}
.y2a8{bottom:5.437803pt;}
.y187{bottom:6.160000pt;}
.y184{bottom:6.240000pt;}
.y2b6{bottom:6.489869pt;}
.y16f{bottom:6.720000pt;}
.y181{bottom:7.200000pt;}
.y4{bottom:7.520000pt;}
.y12b{bottom:8.400000pt;}
.y140{bottom:8.480000pt;}
.y208{bottom:9.333333pt;}
.y9{bottom:12.480000pt;}
.y2f4{bottom:14.560000pt;}
.y5{bottom:14.640000pt;}
.y1e5{bottom:15.653333pt;}
.y23e{bottom:15.680000pt;}
.y216{bottom:15.706667pt;}
.y1fd{bottom:15.733333pt;}
.y2ab{bottom:16.299018pt;}
.y2a9{bottom:16.299038pt;}
.y2a5{bottom:16.299080pt;}
.y3e{bottom:16.400000pt;}
.y35{bottom:17.200000pt;}
.y2c{bottom:18.240000pt;}
.y2fb{bottom:19.280000pt;}
.y1ff{bottom:19.973333pt;}
.y205{bottom:20.026667pt;}
.y202{bottom:20.053333pt;}
.y207{bottom:23.973333pt;}
.y2f3{bottom:26.880000pt;}
.y2a7{bottom:27.117066pt;}
.y2b5{bottom:28.176861pt;}
.y2b2{bottom:28.176900pt;}
.y3d{bottom:30.240000pt;}
.y2fa{bottom:31.520000pt;}
.y7{bottom:31.600000pt;}
.y34{bottom:31.840000pt;}
.y2b{bottom:33.600000pt;}
.y201{bottom:34.693333pt;}
.y2f2{bottom:39.120000pt;}
.y1e3{bottom:42.240000pt;}
.y22e{bottom:42.266667pt;}
.y214{bottom:42.293333pt;}
.y1fb{bottom:42.320000pt;}
.y2f9{bottom:43.760000pt;}
.y3c{bottom:44.000000pt;}
.y33{bottom:45.626667pt;}
.y2a{bottom:48.880000pt;}
.y2b1{bottom:49.863356pt;}
.y3{bottom:51.680000pt;}
.y2f8{bottom:56.080000pt;}
.y213{bottom:56.933333pt;}
.y3b{bottom:57.840000pt;}
.y228{bottom:57.866667pt;}
.y24c{bottom:57.893333pt;}
.y1f5{bottom:57.920000pt;}
.y32{bottom:59.386667pt;}
.y29{bottom:64.240000pt;}
.y2f7{bottom:68.320000pt;}
.y212{bottom:71.573333pt;}
.y2b0{bottom:71.585776pt;}
.y3a{bottom:71.600000pt;}
.y31{bottom:73.226667pt;}
.y28{bottom:79.600000pt;}
.y229{bottom:81.653333pt;}
.y24d{bottom:81.813333pt;}
.y234{bottom:83.680000pt;}
.y25d{bottom:84.880000pt;}
.y39{bottom:85.440000pt;}
.y30{bottom:86.986667pt;}
.y1f6{bottom:87.013333pt;}
.y20b{bottom:87.173333pt;}
.y1dd{bottom:88.853333pt;}
.y2af{bottom:93.272232pt;}
.y27{bottom:94.880000pt;}
.y40{bottom:99.280000pt;}
.y2f{bottom:100.826667pt;}
.y1af{bottom:103.120000pt;}
.y2ed{bottom:103.520000pt;}
.y4a{bottom:104.000000pt;}
.y2a3{bottom:104.160000pt;}
.y221{bottom:104.400000pt;}
.y124{bottom:104.880000pt;}
.y20a{bottom:105.040000pt;}
.y9f{bottom:105.280000pt;}
.y22a{bottom:105.413333pt;}
.y24e{bottom:105.760000pt;}
.yfc{bottom:106.560000pt;}
.y160{bottom:106.880000pt;}
.y281{bottom:107.040000pt;}
.y1d6{bottom:107.360000pt;}
.y235{bottom:109.520000pt;}
.y26{bottom:110.240000pt;}
.y25e{bottom:111.893333pt;}
.y2e{bottom:114.586667pt;}
.y2ae{bottom:114.958688pt;}
.y1f7{bottom:116.106667pt;}
.y25c{bottom:116.480000pt;}
.y9e{bottom:117.600000pt;}
.y49{bottom:117.760000pt;}
.y1ae{bottom:118.480000pt;}
.y2ec{bottom:118.800000pt;}
.y2a2{bottom:119.520000pt;}
.y220{bottom:119.760000pt;}
.y1de{bottom:119.866667pt;}
.y123{bottom:120.240000pt;}
.yd0{bottom:120.560000pt;}
.yfb{bottom:121.920000pt;}
.y15f{bottom:122.240000pt;}
.y280{bottom:122.400000pt;}
.y1d5{bottom:122.720000pt;}
.y7e{bottom:125.520000pt;}
.y25{bottom:125.600000pt;}
.y20c{bottom:127.280000pt;}
.y22b{bottom:129.200000pt;}
.y24f{bottom:129.680000pt;}
.y9d{bottom:129.840000pt;}
.y48{bottom:131.600000pt;}
.y1ad{bottom:133.760000pt;}
.y2ef{bottom:133.840000pt;}
.y2eb{bottom:134.160000pt;}
.y2a1{bottom:134.880000pt;}
.y21f{bottom:135.120000pt;}
.y236{bottom:135.333333pt;}
.y122{bottom:135.600000pt;}
.ycf{bottom:135.920000pt;}
.y2ad{bottom:136.645144pt;}
.yfa{bottom:137.280000pt;}
.y15e{bottom:137.600000pt;}
.y27f{bottom:137.680000pt;}
.y1d4{bottom:138.080000pt;}
.y25f{bottom:138.933333pt;}
.y24{bottom:140.880000pt;}
.y7d{bottom:140.906667pt;}
.y9c{bottom:142.106667pt;}
.y1f8{bottom:145.200000pt;}
.y47{bottom:145.386667pt;}
.y233{bottom:147.680000pt;}
.y1ac{bottom:149.146667pt;}
.y2ea{bottom:149.546667pt;}
.y2a0{bottom:150.186667pt;}
.y1df{bottom:150.880000pt;}
.y121{bottom:150.906667pt;}
.yce{bottom:151.306667pt;}
.yf9{bottom:152.586667pt;}
.y15d{bottom:152.906667pt;}
.y22c{bottom:152.960000pt;}
.y27e{bottom:153.066667pt;}
.y1d3{bottom:153.386667pt;}
.y250{bottom:153.626667pt;}
.y9b{bottom:154.906667pt;}
.y23{bottom:156.240000pt;}
.y7c{bottom:156.266667pt;}
.y46{bottom:159.226667pt;}
.y237{bottom:161.173333pt;}
.y1ab{bottom:164.506667pt;}
.y2e9{bottom:164.826667pt;}
.y29f{bottom:165.546667pt;}
.y260{bottom:165.973333pt;}
.y120{bottom:166.266667pt;}
.ycd{bottom:166.586667pt;}
.y20d{bottom:167.386667pt;}
.yf8{bottom:167.946667pt;}
.y15c{bottom:168.266667pt;}
.y27d{bottom:168.426667pt;}
.y1d2{bottom:168.746667pt;}
.y9a{bottom:170.266667pt;}
.y7b{bottom:171.546667pt;}
.y22{bottom:171.600000pt;}
.y45{bottom:172.986667pt;}
.y1f9{bottom:174.293333pt;}
.y22d{bottom:176.746667pt;}
.y251{bottom:177.546667pt;}
.y1aa{bottom:179.786667pt;}
.y2ee{bottom:179.866667pt;}
.y2e8{bottom:180.186667pt;}
.y29e{bottom:180.906667pt;}
.y11f{bottom:181.626667pt;}
.y1e0{bottom:181.893333pt;}
.ycc{bottom:181.946667pt;}
.yf7{bottom:183.306667pt;}
.y15b{bottom:183.626667pt;}
.y1d1{bottom:184.026667pt;}
.y27c{bottom:184.666667pt;}
.y99{bottom:185.626667pt;}
.y44{bottom:186.826667pt;}
.y21{bottom:186.880000pt;}
.y7a{bottom:186.906667pt;}
.y238{bottom:187.013333pt;}
.y261{bottom:192.986667pt;}
.y1a9{bottom:195.146667pt;}
.y2e7{bottom:195.546667pt;}
.y29d{bottom:196.186667pt;}
.y1dc{bottom:196.640000pt;}
.y11e{bottom:196.906667pt;}
.ycb{bottom:197.306667pt;}
.yf6{bottom:198.586667pt;}
.y15a{bottom:198.906667pt;}
.y27b{bottom:200.026667pt;}
.y43{bottom:200.586667pt;}
.y98{bottom:200.906667pt;}
.y252{bottom:201.493333pt;}
.y22f{bottom:201.893333pt;}
.y79{bottom:202.186667pt;}
.y20{bottom:202.240000pt;}
.y1fa{bottom:203.386667pt;}
.y259{bottom:203.440000pt;}
.y20e{bottom:207.493333pt;}
.y2f5{bottom:208.266667pt;}
.y1a8{bottom:210.506667pt;}
.y2e6{bottom:210.826667pt;}
.y11d{bottom:212.266667pt;}
.y29c{bottom:212.506667pt;}
.yca{bottom:212.586667pt;}
.y239{bottom:212.826667pt;}
.y1e1{bottom:212.906667pt;}
.yf5{bottom:213.946667pt;}
.y25b{bottom:214.240000pt;}
.y159{bottom:214.266667pt;}
.y42{bottom:214.666667pt;}
.y27a{bottom:215.386667pt;}
.y97{bottom:216.266667pt;}
.y78{bottom:217.546667pt;}
.y1f{bottom:217.600000pt;}
.y262{bottom:220.026667pt;}
.y253{bottom:225.413333pt;}
.y1a7{bottom:225.786667pt;}
.y2e5{bottom:226.186667pt;}
.y11c{bottom:227.626667pt;}
.y29b{bottom:227.786667pt;}
.yc9{bottom:227.946667pt;}
.y1fc{bottom:228.533333pt;}
.yf4{bottom:229.306667pt;}
.y158{bottom:229.626667pt;}
.y41{bottom:229.706667pt;}
.y279{bottom:230.666667pt;}
.y96{bottom:231.626667pt;}
.y1e{bottom:232.880000pt;}
.y77{bottom:232.906667pt;}
.y23a{bottom:238.666667pt;}
.y1a6{bottom:241.146667pt;}
.y16{bottom:241.546667pt;}
.y157{bottom:242.746667pt;}
.y11b{bottom:242.906667pt;}
.y29a{bottom:243.146667pt;}
.yc8{bottom:243.306667pt;}
.y1e2{bottom:243.920000pt;}
.yf3{bottom:244.586667pt;}
.y278{bottom:246.026667pt;}
.y95{bottom:246.906667pt;}
.y263{bottom:247.040000pt;}
.y20f{bottom:247.600000pt;}
.y76{bottom:248.186667pt;}
.y1d{bottom:248.240000pt;}
.y254{bottom:249.360000pt;}
.y209{bottom:254.720000pt;}
.y1a5{bottom:256.506667pt;}
.y2e4{bottom:256.826667pt;}
.y11a{bottom:258.266667pt;}
.y299{bottom:258.506667pt;}
.yc7{bottom:258.586667pt;}
.yf2{bottom:259.946667pt;}
.y156{bottom:260.266667pt;}
.y1db{bottom:262.000000pt;}
.y94{bottom:262.266667pt;}
.y277{bottom:262.346667pt;}
.y200{bottom:262.640000pt;}
.y75{bottom:263.546667pt;}
.y1c{bottom:263.600000pt;}
.y23b{bottom:264.480000pt;}
.y1e4{bottom:269.066667pt;}
.y18a{bottom:270.346667pt;}
.y1a4{bottom:271.786667pt;}
.y264{bottom:272.186667pt;}
.y2e3{bottom:273.146667pt;}
.y255{bottom:273.280000pt;}
.y119{bottom:273.626667pt;}
.y298{bottom:273.786667pt;}
.yc6{bottom:273.946667pt;}
.yf1{bottom:275.306667pt;}
.y93{bottom:277.626667pt;}
.y155{bottom:277.786667pt;}
.y1b{bottom:278.906667pt;}
.y25a{bottom:279.120000pt;}
.y189{bottom:283.466667pt;}
.y1a3{bottom:287.146667pt;}
.y210{bottom:287.706667pt;}
.y2e2{bottom:288.506667pt;}
.y118{bottom:288.906667pt;}
.y297{bottom:289.146667pt;}
.yc5{bottom:289.306667pt;}
.y92{bottom:290.026667pt;}
.y23c{bottom:290.320000pt;}
.yf0{bottom:290.586667pt;}
.y1da{bottom:292.400000pt;}
.y276{bottom:292.986667pt;}
.y74{bottom:294.186667pt;}
.y1a{bottom:294.266667pt;}
.y154{bottom:294.506667pt;}
.y256{bottom:297.226667pt;}
.y2f1{bottom:300.106667pt;}
.y1a2{bottom:302.506667pt;}
.y2e1{bottom:303.786667pt;}
.y117{bottom:304.266667pt;}
.y296{bottom:304.506667pt;}
.yc4{bottom:304.586667pt;}
.y188{bottom:305.146667pt;}
.yef{bottom:305.946667pt;}
.y275{bottom:308.346667pt;}
.y19{bottom:309.546667pt;}
.y153{bottom:311.226667pt;}
.y23d{bottom:315.466667pt;}
.y1fe{bottom:317.680000pt;}
.y1a1{bottom:317.786667pt;}
.y2e0{bottom:319.146667pt;}
.y116{bottom:319.626667pt;}
.y295{bottom:319.786667pt;}
.yc3{bottom:319.946667pt;}
.yee{bottom:321.306667pt;}
.y257{bottom:322.373333pt;}
.y274{bottom:323.626667pt;}
.y18{bottom:324.906667pt;}
.y186{bottom:326.826667pt;}
.y211{bottom:327.813333pt;}
.y152{bottom:327.946667pt;}
.y1a0{bottom:333.146667pt;}
.y2df{bottom:334.506667pt;}
.y115{bottom:334.906667pt;}
.yc2{bottom:335.306667pt;}
.y294{bottom:336.106667pt;}
.yed{bottom:336.586667pt;}
.y273{bottom:339.946667pt;}
.y73{bottom:340.186667pt;}
.y17{bottom:340.266667pt;}
.y150{bottom:344.746667pt;}
.y185{bottom:347.466667pt;}
.y19f{bottom:348.506667pt;}
.y258{bottom:349.360000pt;}
.y2f0{bottom:349.786667pt;}
.y114{bottom:350.266667pt;}
.yc1{bottom:350.586667pt;}
.y2de{bottom:350.746667pt;}
.y293{bottom:351.466667pt;}
.yec{bottom:351.946667pt;}
.y38{bottom:352.666667pt;}
.y231{bottom:355.040000pt;}
.y272{bottom:355.226667pt;}
.y72{bottom:355.546667pt;}
.y215{bottom:356.320000pt;}
.y14e{bottom:361.466667pt;}
.y19e{bottom:363.786667pt;}
.y113{bottom:365.626667pt;}
.yc0{bottom:365.946667pt;}
.y2dd{bottom:366.106667pt;}
.y292{bottom:366.746667pt;}
.yeb{bottom:367.226667pt;}
.y183{bottom:368.106667pt;}
.y271{bottom:370.586667pt;}
.y71{bottom:370.906667pt;}
.y14d{bottom:377.226667pt;}
.y19d{bottom:379.146667pt;}
.y230{bottom:380.880000pt;}
.y112{bottom:380.906667pt;}
.ybf{bottom:381.306667pt;}
.y2dc{bottom:381.386667pt;}
.y291{bottom:382.106667pt;}
.yea{bottom:382.586667pt;}
.y1d9{bottom:383.600000pt;}
.y270{bottom:385.946667pt;}
.y70{bottom:386.186667pt;}
.y182{bottom:388.826667pt;}
.y14c{bottom:392.586667pt;}
.y19c{bottom:394.506667pt;}
.y111{bottom:396.266667pt;}
.ybe{bottom:396.586667pt;}
.y2db{bottom:396.746667pt;}
.y290{bottom:397.466667pt;}
.ye9{bottom:397.946667pt;}
.y26f{bottom:401.226667pt;}
.y6f{bottom:401.546667pt;}
.y180{bottom:401.706667pt;}
.y14b{bottom:407.946667pt;}
.y19b{bottom:409.786667pt;}
.y110{bottom:411.546667pt;}
.ybd{bottom:411.946667pt;}
.y204{bottom:412.000000pt;}
.y2da{bottom:412.106667pt;}
.y28f{bottom:412.746667pt;}
.ye8{bottom:413.226667pt;}
.y26e{bottom:416.586667pt;}
.y6e{bottom:416.906667pt;}
.y245{bottom:419.306667pt;}
.y232{bottom:419.600000pt;}
.y1d7{bottom:420.080000pt;}
.y91{bottom:421.626667pt;}
.y14a{bottom:423.226667pt;}
.y19a{bottom:425.146667pt;}
.y17f{bottom:426.186667pt;}
.y10f{bottom:426.906667pt;}
.ybc{bottom:427.226667pt;}
.y2d9{bottom:427.386667pt;}
.y28e{bottom:428.106667pt;}
.ye7{bottom:428.586667pt;}
.y26d{bottom:431.946667pt;}
.y6d{bottom:432.186667pt;}
.y90{bottom:433.866667pt;}
.y244{bottom:434.666667pt;}
.y17e{bottom:435.626667pt;}
.y149{bottom:438.586667pt;}
.y199{bottom:440.506667pt;}
.y10e{bottom:442.266667pt;}
.ybb{bottom:442.586667pt;}
.y2d8{bottom:442.746667pt;}
.y28d{bottom:443.386667pt;}
.ye6{bottom:443.946667pt;}
.y8f{bottom:446.106667pt;}
.y17d{bottom:447.226667pt;}
.y6c{bottom:447.546667pt;}
.y36{bottom:449.946667pt;}
.y148{bottom:453.946667pt;}
.y198{bottom:455.786667pt;}
.y10d{bottom:457.546667pt;}
.yba{bottom:457.946667pt;}
.y2d7{bottom:458.106667pt;}
.y28c{bottom:458.746667pt;}
.y8e{bottom:458.906667pt;}
.ye5{bottom:459.226667pt;}
.y17c{bottom:462.506667pt;}
.y26c{bottom:462.586667pt;}
.y6b{bottom:462.906667pt;}
.y243{bottom:465.306667pt;}
.y2d{bottom:468.426667pt;}
.y147{bottom:469.226667pt;}
.y197{bottom:471.146667pt;}
.y10c{bottom:472.906667pt;}
.yb9{bottom:473.226667pt;}
.y2d6{bottom:473.386667pt;}
.y28b{bottom:474.106667pt;}
.y8d{bottom:474.266667pt;}
.ye4{bottom:474.586667pt;}
.y17b{bottom:477.866667pt;}
.y26b{bottom:477.946667pt;}
.y6a{bottom:478.186667pt;}
.y242{bottom:480.666667pt;}
.y146{bottom:484.586667pt;}
.y196{bottom:486.426667pt;}
.y10b{bottom:488.266667pt;}
.yb8{bottom:488.586667pt;}
.y1ee{bottom:488.666667pt;}
.y2d5{bottom:488.746667pt;}
.y8c{bottom:489.546667pt;}
.ye3{bottom:489.946667pt;}
.y28a{bottom:490.346667pt;}
.y17a{bottom:493.226667pt;}
.y69{bottom:493.546667pt;}
.y21e{bottom:493.786667pt;}
.y241{bottom:495.946667pt;}
.y1d0{bottom:496.346667pt;}
.y195{bottom:499.546667pt;}
.y145{bottom:499.946667pt;}
.y10a{bottom:503.546667pt;}
.yb7{bottom:503.946667pt;}
.y2d4{bottom:504.106667pt;}
.y8b{bottom:504.906667pt;}
.ye2{bottom:505.226667pt;}
.y289{bottom:505.706667pt;}
.y179{bottom:508.506667pt;}
.y26a{bottom:508.586667pt;}
.y68{bottom:508.826667pt;}
.y21d{bottom:509.146667pt;}
.y240{bottom:511.333333pt;}
.y1cf{bottom:511.653333pt;}
.y194{bottom:512.533333pt;}
.y144{bottom:515.253333pt;}
.y109{bottom:518.933333pt;}
.yb6{bottom:519.253333pt;}
.y1ed{bottom:519.333333pt;}
.y8a{bottom:520.293333pt;}
.y2d3{bottom:520.373333pt;}
.ye1{bottom:520.613333pt;}
.y288{bottom:521.093333pt;}
.y178{bottom:523.893333pt;}
.y269{bottom:523.973333pt;}
.y67{bottom:524.213333pt;}
.y21c{bottom:524.453333pt;}
.y193{bottom:525.493333pt;}
.y23f{bottom:526.693333pt;}
.y1ce{bottom:527.013333pt;}
.y143{bottom:530.613333pt;}
.y108{bottom:534.293333pt;}
.yb5{bottom:534.613333pt;}
.y1ec{bottom:534.693333pt;}
.y89{bottom:535.573333pt;}
.y2d2{bottom:535.733333pt;}
.ye0{bottom:535.973333pt;}
.y287{bottom:536.373333pt;}
.y192{bottom:538.373333pt;}
.y24b{bottom:539.200000pt;}
.y177{bottom:539.253333pt;}
.y66{bottom:539.573333pt;}
.y21b{bottom:539.813333pt;}
.y1cd{bottom:542.373333pt;}
.y142{bottom:545.973333pt;}
.y107{bottom:549.573333pt;}
.yb4{bottom:549.973333pt;}
.y88{bottom:550.933333pt;}
.y2d1{bottom:551.093333pt;}
.ydf{bottom:551.253333pt;}
.y191{bottom:551.333333pt;}
.y286{bottom:552.693333pt;}
.y176{bottom:554.533333pt;}
.y268{bottom:554.613333pt;}
.y65{bottom:554.853333pt;}
.y21a{bottom:555.173333pt;}
.y1cc{bottom:557.653333pt;}
.y13f{bottom:559.093333pt;}
.y190{bottom:564.293333pt;}
.y106{bottom:564.933333pt;}
.yb3{bottom:565.253333pt;}
.y1eb{bottom:565.333333pt;}
.y87{bottom:566.293333pt;}
.y2d0{bottom:566.373333pt;}
.yde{bottom:566.613333pt;}
.y285{bottom:568.053333pt;}
.y175{bottom:569.893333pt;}
.y267{bottom:569.973333pt;}
.y64{bottom:570.213333pt;}
.y219{bottom:570.453333pt;}
.y1cb{bottom:573.013333pt;}
.y13e{bottom:576.773333pt;}
.y105{bottom:580.293333pt;}
.yb2{bottom:580.613333pt;}
.y1ea{bottom:580.693333pt;}
.y86{bottom:581.573333pt;}
.y2cf{bottom:581.733333pt;}
.ydd{bottom:581.973333pt;}
.y284{bottom:583.333333pt;}
.y18f{bottom:584.933333pt;}
.y174{bottom:585.253333pt;}
.y63{bottom:585.573333pt;}
.y218{bottom:585.813333pt;}
.y1ca{bottom:586.133333pt;}
.y13d{bottom:594.533333pt;}
.y14{bottom:594.933333pt;}
.y104{bottom:595.573333pt;}
.yb1{bottom:595.973333pt;}
.y85{bottom:596.933333pt;}
.y2ce{bottom:597.093333pt;}
.ydc{bottom:597.253333pt;}
.y18e{bottom:597.893333pt;}
.y1c9{bottom:599.093333pt;}
.y283{bottom:599.653333pt;}
.y173{bottom:600.533333pt;}
.y266{bottom:600.613333pt;}
.y62{bottom:600.853333pt;}
.y217{bottom:601.093333pt;}
.y246{bottom:604.560000pt;}
.y18d{bottom:610.773333pt;}
.y103{bottom:610.933333pt;}
.yb0{bottom:611.253333pt;}
.y1e9{bottom:611.333333pt;}
.y13c{bottom:611.493333pt;}
.y1c8{bottom:611.973333pt;}
.y84{bottom:612.293333pt;}
.y2cd{bottom:612.373333pt;}
.ydb{bottom:612.613333pt;}
.y227{bottom:613.680000pt;}
.y24a{bottom:613.920000pt;}
.y282{bottom:615.013333pt;}
.y172{bottom:615.893333pt;}
.y61{bottom:616.213333pt;}
.y18c{bottom:623.733333pt;}
.y1e8{bottom:623.813333pt;}
.y1f4{bottom:623.840000pt;}
.y1c7{bottom:624.933333pt;}
.y13{bottom:625.653333pt;}
.y102{bottom:626.293333pt;}
.yaf{bottom:626.613333pt;}
.y83{bottom:627.573333pt;}
.yda{bottom:627.973333pt;}
.y13a{bottom:628.373333pt;}
.y2cc{bottom:628.693333pt;}
.y171{bottom:631.173333pt;}
.y265{bottom:631.253333pt;}
.y60{bottom:631.573333pt;}
.y18b{bottom:636.693333pt;}
.y1c6{bottom:637.893333pt;}
.y82{bottom:640.053333pt;}
.y101{bottom:641.573333pt;}
.yae{bottom:641.973333pt;}
.yd9{bottom:643.253333pt;}
.y12{bottom:643.333333pt;}
.y2ac{bottom:643.760000pt;}
.y2cb{bottom:643.973333pt;}
.y139{bottom:645.333333pt;}
.y170{bottom:646.533333pt;}
.y5f{bottom:646.853333pt;}
.y1c5{bottom:650.773333pt;}
.y100{bottom:656.933333pt;}
.yad{bottom:657.253333pt;}
.yd8{bottom:658.613333pt;}
.y2ca{bottom:659.333333pt;}
.y16e{bottom:659.653333pt;}
.y5e{bottom:662.213333pt;}
.y137{bottom:662.293333pt;}
.y1c4{bottom:663.733333pt;}
.y2b3{bottom:667.585189pt;}
.y247{bottom:670.240000pt;}
.yff{bottom:672.293333pt;}
.yac{bottom:672.613333pt;}
.y11{bottom:673.253333pt;}
.yd7{bottom:673.893333pt;}
.y2c9{bottom:674.693333pt;}
.y1c3{bottom:676.693333pt;}
.y5d{bottom:677.573333pt;}
.y135{bottom:679.173333pt;}
.y16d{bottom:681.333333pt;}
.yfe{bottom:684.693333pt;}
.yab{bottom:687.973333pt;}
.y10{bottom:688.613333pt;}
.y1f2{bottom:689.200000pt;}
.yd6{bottom:689.253333pt;}
.y1c2{bottom:689.573333pt;}
.y2c8{bottom:689.973333pt;}
.y5c{bottom:692.853333pt;}
.y1f0{bottom:694.880000pt;}
.yf{bottom:699.573333pt;}
.y134{bottom:699.813333pt;}
.y226{bottom:702.320000pt;}
.y1c1{bottom:702.533333pt;}
.yaa{bottom:703.253333pt;}
.yd5{bottom:704.613333pt;}
.y2c7{bottom:705.333333pt;}
.y16c{bottom:706.533333pt;}
.y5b{bottom:708.213333pt;}
.y133{bottom:715.173333pt;}
.y1c0{bottom:715.493333pt;}
.y222{bottom:716.320000pt;}
.ye{bottom:718.453333pt;}
.ya9{bottom:718.613333pt;}
.y16b{bottom:719.493333pt;}
.yd4{bottom:719.893333pt;}
.y2c6{bottom:721.653333pt;}
.y5a{bottom:723.573333pt;}
.y1bf{bottom:728.373333pt;}
.y132{bottom:730.453333pt;}
.y16a{bottom:732.373333pt;}
.ya8{bottom:733.893333pt;}
.yd3{bottom:735.253333pt;}
.y2c5{bottom:736.933333pt;}
.y59{bottom:738.853333pt;}
.y1be{bottom:741.333333pt;}
.y169{bottom:745.333333pt;}
.y131{bottom:745.813333pt;}
.yd{bottom:746.053333pt;}
.ya7{bottom:749.253333pt;}
.yd2{bottom:750.613333pt;}
.y2c4{bottom:752.293333pt;}
.y225{bottom:753.600000pt;}
.y58{bottom:754.213333pt;}
.y1bd{bottom:754.293333pt;}
.y130{bottom:761.093333pt;}
.yd1{bottom:763.013333pt;}
.ya6{bottom:764.613333pt;}
.y1bc{bottom:767.173333pt;}
.y2c3{bottom:767.653333pt;}
.y57{bottom:769.573333pt;}
.y168{bottom:770.533333pt;}
.yc{bottom:773.653333pt;}
.y12f{bottom:776.453333pt;}
.ya5{bottom:779.893333pt;}
.y1bb{bottom:780.133333pt;}
.y224{bottom:781.520000pt;}
.y2c2{bottom:782.933333pt;}
.y167{bottom:783.493333pt;}
.y56{bottom:784.853333pt;}
.y12e{bottom:791.813333pt;}
.y1ba{bottom:793.093333pt;}
.ya4{bottom:795.253333pt;}
.y166{bottom:796.373333pt;}
.y2a4{bottom:797.774378pt;}
.y2aa{bottom:797.774389pt;}
.y2a6{bottom:797.774408pt;}
.y2c1{bottom:798.293333pt;}
.y55{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y249{bottom:801.600000pt;}
.y1b9{bottom:805.973333pt;}
.y12d{bottom:807.093333pt;}
.y81{bottom:808.853333pt;}
.y165{bottom:809.333333pt;}
.ya3{bottom:810.613333pt;}
.y248{bottom:810.960000pt;}
.y2c0{bottom:813.653333pt;}
.y54{bottom:815.493333pt;}
.y1b8{bottom:818.933333pt;}
.y80{bottom:821.093333pt;}
.y164{bottom:822.213333pt;}
.y12c{bottom:822.453333pt;}
.ya2{bottom:823.013333pt;}
.y1ef{bottom:823.200000pt;}
.ya{bottom:826.853333pt;}
.y2bf{bottom:828.933333pt;}
.y53{bottom:830.853333pt;}
.y1b7{bottom:831.813333pt;}
.y7f{bottom:833.413333pt;}
.y163{bottom:835.173333pt;}
.y12a{bottom:835.573333pt;}
.y8{bottom:840.533333pt;}
.y1b6{bottom:844.773333pt;}
.y2be{bottom:845.253333pt;}
.y52{bottom:846.213333pt;}
.y162{bottom:848.133333pt;}
.y129{bottom:853.013333pt;}
.y1b5{bottom:857.733333pt;}
.y2bd{bottom:860.533333pt;}
.y161{bottom:861.013333pt;}
.y51{bottom:861.493333pt;}
.y127{bottom:870.533333pt;}
.y1b4{bottom:870.613333pt;}
.y2bc{bottom:875.893333pt;}
.y50{bottom:876.853333pt;}
.y1e7{bottom:882.480000pt;}
.y1b3{bottom:883.600000pt;}
.y125{bottom:887.200000pt;}
.y2bb{bottom:891.280000pt;}
.y4f{bottom:892.240000pt;}
.y1e6{bottom:894.720000pt;}
.y1b2{bottom:896.560000pt;}
.y2ba{bottom:906.560000pt;}
.y4e{bottom:907.520000pt;}
.y1b1{bottom:909.440000pt;}
.y2b9{bottom:921.920000pt;}
.y1b0{bottom:922.400000pt;}
.y4d{bottom:922.880000pt;}
.y2b8{bottom:937.280000pt;}
.y4c{bottom:938.240000pt;}
.ya1{bottom:941.280000pt;}
.yfd{bottom:943.840000pt;}
.y2b7{bottom:952.560000pt;}
.y4b{bottom:953.520000pt;}
.ya0{bottom:956.080000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h22{height:12.240000pt;}
.h26{height:12.320000pt;}
.h43{height:12.320133pt;}
.h2d{height:12.346667pt;}
.hf{height:15.280000pt;}
.h23{height:16.000000pt;}
.h1c{height:16.026667pt;}
.h24{height:16.080000pt;}
.h1f{height:16.240000pt;}
.h20{height:16.320000pt;}
.h1b{height:16.800000pt;}
.h25{height:16.880000pt;}
.h21{height:17.040000pt;}
.h1e{height:17.120000pt;}
.h14{height:17.840000pt;}
.h2e{height:18.880000pt;}
.h32{height:18.960000pt;}
.h2b{height:20.000000pt;}
.h41{height:20.643526pt;}
.h2c{height:20.960000pt;}
.h27{height:21.040000pt;}
.h2a{height:22.000000pt;}
.h29{height:22.578125pt;}
.hc{height:24.131250pt;}
.h3{height:24.560000pt;}
.h28{height:26.416406pt;}
.h5{height:29.717188pt;}
.h1a{height:30.028906pt;}
.h16{height:33.515625pt;}
.h35{height:33.680000pt;}
.h17{height:33.867188pt;}
.h6{height:34.739844pt;}
.h12{height:35.554688pt;}
.h1d{height:37.105312pt;}
.h4{height:37.314062pt;}
.he{height:37.705469pt;}
.h19{height:38.905781pt;}
.h13{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h37{height:41.680000pt;}
.h9{height:44.120156pt;}
.h3f{height:44.487810pt;}
.h3d{height:44.487877pt;}
.h1{height:45.156250pt;}
.h2f{height:47.742188pt;}
.h34{height:47.848281pt;}
.hb{height:47.856406pt;}
.h36{height:48.480000pt;}
.h42{height:49.040000pt;}
.h3e{height:64.674157pt;}
.hd{height:67.031250pt;}
.ha{height:67.734375pt;}
.h31{height:74.159531pt;}
.h44{height:78.240000pt;}
.h15{height:96.640000pt;}
.h18{height:110.480000pt;}
.h11{height:125.786667pt;}
.h7{height:136.826667pt;}
.h40{height:198.503147pt;}
.h39{height:229.680000pt;}
.h33{height:256.320000pt;}
.h30{height:296.880000pt;}
.h3c{height:300.000000pt;}
.h3a{height:343.280000pt;}
.h3b{height:350.160000pt;}
.h10{height:352.666667pt;}
.h38{height:380.800000pt;}
.h0{height:1056.000000pt;}
.w18{width:29.680000pt;}
.w21{width:29.760000pt;}
.w2{width:34.720000pt;}
.w13{width:37.200000pt;}
.w4b{width:44.913549pt;}
.w4c{width:46.915083pt;}
.w4d{width:48.212781pt;}
.w29{width:48.880000pt;}
.w41{width:54.960000pt;}
.w27{width:57.200000pt;}
.w42{width:57.280000pt;}
.w45{width:57.680000pt;}
.w2f{width:58.320000pt;}
.w2c{width:59.120000pt;}
.w1e{width:62.320000pt;}
.w1a{width:62.400000pt;}
.w15{width:62.800000pt;}
.w51{width:63.280000pt;}
.w1f{width:64.106667pt;}
.w1b{width:64.160000pt;}
.w2d{width:65.360000pt;}
.w3d{width:65.760000pt;}
.w8{width:66.480000pt;}
.w39{width:70.400000pt;}
.w47{width:71.520000pt;}
.w46{width:71.920000pt;}
.w11{width:72.960000pt;}
.w2a{width:74.240000pt;}
.wb{width:74.480000pt;}
.w12{width:75.386667pt;}
.w3b{width:76.480000pt;}
.w3f{width:77.840000pt;}
.w38{width:79.840000pt;}
.w26{width:82.640000pt;}
.w28{width:84.080000pt;}
.wd{width:84.320000pt;}
.w9{width:86.080000pt;}
.we{width:86.666667pt;}
.wc{width:87.040000pt;}
.w10{width:87.360000pt;}
.w7{width:88.000000pt;}
.wa{width:88.586667pt;}
.w2e{width:89.920000pt;}
.w3e{width:90.960000pt;}
.wf{width:92.080000pt;}
.w3a{width:92.400000pt;}
.w16{width:93.840000pt;}
.w33{width:94.880000pt;}
.w44{width:107.200000pt;}
.w48{width:114.880000pt;}
.w34{width:121.200000pt;}
.w36{width:121.600000pt;}
.w32{width:124.960000pt;}
.w31{width:133.680000pt;}
.w23{width:137.066667pt;}
.w35{width:138.400000pt;}
.w14{width:153.226667pt;}
.w19{width:178.266667pt;}
.w1d{width:183.520000pt;}
.w17{width:191.146667pt;}
.w6{width:195.866667pt;}
.w24{width:207.200000pt;}
.w1c{width:208.586667pt;}
.w20{width:213.920000pt;}
.w22{width:219.066667pt;}
.w25{width:249.546667pt;}
.w52{width:254.506667pt;}
.w4f{width:266.885888pt;}
.w50{width:318.426667pt;}
.w30{width:499.440000pt;}
.w2b{width:503.200000pt;}
.w40{width:521.120000pt;}
.w5{width:523.093333pt;}
.w43{width:555.920000pt;}
.w3c{width:569.920000pt;}
.w4a{width:574.708649pt;}
.w4e{width:574.708656pt;}
.w49{width:603.920000pt;}
.w37{width:685.120000pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9e{left:1.979541pt;}
.x63{left:4.453333pt;}
.x12{left:5.920000pt;}
.x3{left:7.680000pt;}
.x5a{left:9.520000pt;}
.x3e{left:10.560000pt;}
.x3a{left:12.160000pt;}
.x38{left:13.680000pt;}
.x69{left:14.826667pt;}
.x28{left:16.080000pt;}
.x11{left:17.920000pt;}
.x2b{left:19.120000pt;}
.x30{left:21.120000pt;}
.x2c{left:22.320000pt;}
.x15{left:24.560000pt;}
.x43{left:26.080000pt;}
.x3c{left:27.946667pt;}
.x31{left:29.360000pt;}
.x13{left:30.320000pt;}
.x14{left:32.080000pt;}
.x36{left:33.546667pt;}
.x2e{left:34.560000pt;}
.x26{left:36.080000pt;}
.x2d{left:37.680000pt;}
.x35{left:39.440000pt;}
.x6{left:40.480000pt;}
.x44{left:42.000000pt;}
.x2f{left:43.920000pt;}
.x45{left:45.280000pt;}
.x59{left:46.906667pt;}
.x2{left:47.999988pt;}
.x3d{left:49.040000pt;}
.x77{left:50.293333pt;}
.x42{left:51.946667pt;}
.x17{left:53.039988pt;}
.x1{left:53.999988pt;}
.x5f{left:56.986667pt;}
.x16{left:58.159988pt;}
.x46{left:59.946667pt;}
.x4e{left:61.706667pt;}
.x5b{left:63.386667pt;}
.x4d{left:64.426667pt;}
.x5c{left:65.546667pt;}
.x52{left:66.640000pt;}
.x7a{left:67.920000pt;}
.x4c{left:71.226667pt;}
.x7b{left:72.880000pt;}
.x58{left:75.066667pt;}
.x47{left:76.880000pt;}
.x9{left:79.199988pt;}
.x57{left:80.160000pt;}
.x5e{left:82.906667pt;}
.x49{left:84.160000pt;}
.xa6{left:85.520000pt;}
.x3f{left:86.960000pt;}
.x53{left:88.160000pt;}
.x4{left:89.680000pt;}
.x5d{left:90.906667pt;}
.x22{left:92.879988pt;}
.x74{left:94.160000pt;}
.x5{left:95.999988pt;}
.x60{left:99.226667pt;}
.x8e{left:102.960000pt;}
.x61{left:106.106667pt;}
.x98{left:108.560000pt;}
.x54{left:119.520000pt;}
.x9d{left:123.493171pt;}
.x87{left:125.520000pt;}
.x93{left:132.560000pt;}
.x48{left:134.799988pt;}
.x88{left:139.893333pt;}
.xa3{left:141.331026pt;}
.x72{left:145.733333pt;}
.x8d{left:149.920000pt;}
.x94{left:150.826667pt;}
.x7c{left:156.346667pt;}
.x68{left:158.880000pt;}
.x71{left:160.800000pt;}
.x6a{left:166.400000pt;}
.x7d{left:169.893333pt;}
.x7e{left:171.333333pt;}
.xd{left:173.306655pt;}
.x99{left:183.466667pt;}
.x90{left:186.080000pt;}
.x73{left:189.306667pt;}
.x84{left:190.560000pt;}
.x89{left:198.480000pt;}
.x62{left:202.960000pt;}
.x8f{left:221.066667pt;}
.x23{left:224.506655pt;}
.x6e{left:232.640000pt;}
.x82{left:233.760000pt;}
.x8a{left:235.280000pt;}
.x40{left:240.826667pt;}
.xc{left:259.866655pt;}
.x4a{left:263.066667pt;}
.xe{left:267.706655pt;}
.x7f{left:270.453333pt;}
.x80{left:273.360000pt;}
.x6b{left:278.426655pt;}
.x95{left:284.880000pt;}
.x83{left:286.640000pt;}
.xa{left:295.546655pt;}
.x41{left:304.266667pt;}
.x64{left:305.280000pt;}
.x75{left:323.520000pt;}
.x4b{left:326.106667pt;}
.x9f{left:332.932118pt;}
.x55{left:339.306667pt;}
.x81{left:356.293333pt;}
.x8b{left:378.000000pt;}
.x24{left:379.866655pt;}
.x65{left:381.440000pt;}
.x96{left:387.520000pt;}
.x1f{left:398.666655pt;}
.x8{left:408.026655pt;}
.x6c{left:410.506655pt;}
.xb{left:412.586655pt;}
.xf{left:413.546655pt;}
.x76{left:415.360000pt;}
.x18{left:425.093321pt;}
.x9b{left:426.453321pt;}
.xa5{left:428.053333pt;}
.x25{left:430.613333pt;}
.x1c{left:433.973321pt;}
.x6f{left:436.320000pt;}
.x1a{left:439.173321pt;}
.x85{left:441.600000pt;}
.x9a{left:450.453321pt;}
.xa4{left:454.213321pt;}
.x4f{left:461.013333pt;}
.x9c{left:468.053321pt;}
.x20{left:470.213321pt;}
.x56{left:477.093333pt;}
.x66{left:488.640000pt;}
.xa1{left:492.799711pt;}
.x91{left:494.960000pt;}
.x97{left:497.440000pt;}
.x32{left:505.813333pt;}
.x78{left:511.760000pt;}
.x27{left:519.333333pt;}
.x37{left:523.413333pt;}
.x8c{left:539.840000pt;}
.xa0{left:559.475704pt;}
.x70{left:561.680000pt;}
.x67{left:565.520000pt;}
.x10{left:570.853333pt;}
.x86{left:578.240000pt;}
.x1d{left:584.133321pt;}
.x92{left:585.520000pt;}
.x29{left:586.533333pt;}
.x33{left:593.493333pt;}
.x19{left:596.533321pt;}
.x39{left:611.493333pt;}
.x79{left:625.120000pt;}
.x50{left:645.173333pt;}
.xa2{left:649.320394pt;}
.x6d{left:660.293321pt;}
.x2a{left:673.253333pt;}
.x34{left:678.453333pt;}
.x3b{left:685.093333pt;}
.x51{left:708.213333pt;}
.x7{left:722.160000pt;}
.x1b{left:761.439988pt;}
.x21{left:775.119988pt;}
.x1e{left:779.119988pt;}
}




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