
    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_75a6aeac900278c6bb81e9d2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b2f07dcecd8da61e23e4a86a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_a57b79de2cdb28fb69efd11a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.892578;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_2326c2ea83459665efa5d33e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_c6385accde4a8b5abe917761.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.892578;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_ac6e5757ad1847ff093789a5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0d7bc71dc01a092ba34901fe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940430;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_f28aa2ae0bafe23011a404a6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.978027;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:ffe;src:url('chunks/assets/font_f452088660e01e49ae3ff7bd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708008;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:fff;src:url('chunks/assets/font_ff7dd22c3526041223fedf81.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2e5fc3d75455f2c85cfc9f3f.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_1d1ff93f73f4892f7f8195ba.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.708008;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:ff12;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-15.660000px;}
.ls19{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.349800px;}
.lsc{letter-spacing:-0.226200px;}
.ls5{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.089400px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.089400px;}
.lse{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.144720px;}
.ls0{letter-spacing:0.153360px;}
.ls12{letter-spacing:0.156240px;}
.ls9{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.223800px;}
.lsf{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.289440px;}
.ls14{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.379920px;}
.lsd{letter-spacing:0.720000px;}
.ls15{letter-spacing:19.386720px;}
.ls1{letter-spacing:48.420000px;}
.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;}
}
.wse{word-spacing:-41.760000px;}
.ws15{word-spacing:-18.000000px;}
.ws11{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.199800px;}
.ws16{word-spacing:-14.993280px;}
.ws13{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.420000px;}
.ws14{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.340000px;}
.wsf{word-spacing:-11.160000px;}
.ws7{word-spacing:-10.990200px;}
.ws6{word-spacing:-10.980000px;}
.wsb{word-spacing:-10.529400px;}
.wsa{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.350600px;}
.wsd{word-spacing:-10.213800px;}
.ws9{word-spacing:-9.000000px;}
.ws5{word-spacing:-7.560000px;}
.ws10{word-spacing:0.000000px;}
.ws4{word-spacing:60.960000px;}
._1c{margin-left:-2874.816000px;}
._1d{margin-left:-2847.283440px;}
._28{margin-left:-2842.243440px;}
._6{margin-left:-60.300000px;}
._43{margin-left:-15.776640px;}
._38{margin-left:-11.033280px;}
._13{margin-left:-3.232560px;}
._0{margin-left:-1.347840px;}
._1{width:1.200720px;}
._16{width:2.205360px;}
._2{width:3.332640px;}
._d{width:4.430640px;}
._e{width:5.916240px;}
._1a{width:7.205760px;}
._14{width:8.478000px;}
._9{width:10.338480px;}
._8{width:11.354400px;}
._15{width:12.359520px;}
._11{width:13.891920px;}
._17{width:15.174000px;}
._a{width:16.852320px;}
._27{width:18.400560px;}
._12{width:20.079360px;}
._10{width:22.051440px;}
._f{width:23.246640px;}
._19{width:24.640080px;}
._18{width:25.812000px;}
._c{width:27.424320px;}
._b{width:29.162880px;}
._1f{width:30.167760px;}
._23{width:31.374000px;}
._24{width:32.802720px;}
._29{width:34.253520px;}
._2b{width:35.437680px;}
._25{width:36.507840px;}
._26{width:37.529280px;}
._2d{width:38.545200px;}
._22{width:39.800160px;}
._2c{width:41.038560px;}
._2e{width:42.603360px;}
._1e{width:44.461440px;}
._33{width:48.519600px;}
._34{width:49.660560px;}
._21{width:58.619040px;}
._20{width:59.754480px;}
._31{width:63.817440px;}
._4{width:65.496000px;}
._2a{width:66.505680px;}
._3a{width:67.967760px;}
._30{width:69.077040px;}
._2f{width:70.098480px;}
._3{width:71.766720px;}
._32{width:74.700000px;}
._40{width:79.046640px;}
._37{width:82.082880px;}
._36{width:83.352960px;}
._3c{width:91.193760px;}
._3b{width:92.293200px;}
._41{width:96.631920px;}
._39{width:107.008560px;}
._35{width:109.505760px;}
._42{width:112.229280px;}
._3e{width:121.731120px;}
._3d{width:123.159840px;}
._3f{width:157.168800px;}
._5{width:199.620000px;}
._1b{width:282.270000px;}
._7{width:755.976000px;}
.fc8{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(26,123,123);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs12{font-size:6.000000px;}
.fsf{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:33.120000px;}
.fs11{font-size:36.000000px;}
.fse{font-size:37.946952px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.fs10{font-size:120.240000px;}
.y4b{bottom:-246.630000px;}
.y4a{bottom:-212.970000px;}
.y84{bottom:-182.745000px;}
.y49{bottom:-179.310000px;}
.y83{bottom:-148.905000px;}
.y48{bottom:-145.470000px;}
.y82{bottom:-115.245000px;}
.y47{bottom:-111.810000px;}
.y81{bottom:-81.405000px;}
.y46{bottom:-77.940000px;}
.y80{bottom:-47.700000px;}
.y45{bottom:-44.280000px;}
.y86{bottom:-17.922750px;}
.y7f{bottom:-14.040000px;}
.y44{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y29e{bottom:1.837500px;}
.ye8{bottom:2.520000px;}
.y6{bottom:3.780000px;}
.yee{bottom:4.500000px;}
.y1c7{bottom:4.545000px;}
.yec{bottom:4.680000px;}
.yf6{bottom:5.040000px;}
.y74{bottom:5.370000px;}
.yea{bottom:5.400000px;}
.y16d{bottom:5.760000px;}
.yf4{bottom:6.120000px;}
.yf2{bottom:6.660000px;}
.y168{bottom:6.840000px;}
.y16a{bottom:7.020000px;}
.yf0{bottom:7.200000px;}
.y43{bottom:7.740000px;}
.y16f{bottom:9.540000px;}
.y72{bottom:10.620000px;}
.y6b{bottom:10.980000px;}
.y1bd{bottom:11.340000px;}
.y9{bottom:12.420000px;}
.y166{bottom:13.140000px;}
.y7e{bottom:16.920000px;}
.y1be{bottom:18.360000px;}
.y42{bottom:21.600000px;}
.ya{bottom:21.780000px;}
.y7{bottom:23.220000px;}
.y71{bottom:23.610000px;}
.y8{bottom:24.480000px;}
.y6a{bottom:28.800000px;}
.y7d{bottom:30.060000px;}
.yc{bottom:35.100000px;}
.y41{bottom:35.460000px;}
.y70{bottom:36.570000px;}
.y7c{bottom:43.020000px;}
.y69{bottom:43.740000px;}
.y8a{bottom:47.520000px;}
.y40{bottom:49.500000px;}
.y6f{bottom:49.710000px;}
.y68{bottom:54.540000px;}
.y7b{bottom:56.160000px;}
.y5{bottom:57.420000px;}
.y3f{bottom:62.460000px;}
.y6e{bottom:62.670000px;}
.y85{bottom:63.780000px;}
.y89{bottom:66.420000px;}
.y7a{bottom:69.120000px;}
.y67{bottom:72.360000px;}
.y6d{bottom:79.770000px;}
.y79{bottom:82.080000px;}
.y66{bottom:90.360000px;}
.y78{bottom:95.220000px;}
.y164{bottom:98.640000px;}
.y21a{bottom:101.160000px;}
.y120{bottom:101.700000px;}
.ye4{bottom:102.240000px;}
.y210{bottom:103.320000px;}
.y65{bottom:108.180000px;}
.y1ec{bottom:109.080000px;}
.y29d{bottom:109.260000px;}
.y20f{bottom:110.880000px;}
.y196{bottom:113.220000px;}
.y11f{bottom:114.480000px;}
.y163{bottom:118.440000px;}
.y3d{bottom:118.800000px;}
.y151{bottom:119.160000px;}
.y1bb{bottom:119.340000px;}
.y219{bottom:120.960000px;}
.y77{bottom:121.320000px;}
.ye3{bottom:122.040000px;}
.ybb{bottom:123.120000px;}
.y64{bottom:126.000000px;}
.y29c{bottom:126.540000px;}
.y26b{bottom:127.440000px;}
.y23f{bottom:128.340000px;}
.y1eb{bottom:128.880000px;}
.y20e{bottom:130.680000px;}
.y195{bottom:133.020000px;}
.y76{bottom:133.560000px;}
.y11e{bottom:134.280000px;}
.y162{bottom:138.240000px;}
.y3c{bottom:138.600000px;}
.y150{bottom:138.960000px;}
.y1ba{bottom:139.140000px;}
.y218{bottom:140.760000px;}
.y63{bottom:140.985000px;}
.ye2{bottom:142.020000px;}
.yba{bottom:142.920000px;}
.y29b{bottom:143.820000px;}
.y26a{bottom:144.720000px;}
.y23e{bottom:148.140000px;}
.y1ea{bottom:148.860000px;}
.y20d{bottom:150.480000px;}
.y62{bottom:151.785000px;}
.y194{bottom:153.000000px;}
.y11d{bottom:154.260000px;}
.y161{bottom:158.040000px;}
.y3b{bottom:158.400000px;}
.y14f{bottom:158.760000px;}
.y1b9{bottom:158.940000px;}
.y217{bottom:160.740000px;}
.y29a{bottom:161.100000px;}
.ye1{bottom:161.820000px;}
.y269{bottom:162.000000px;}
.yb9{bottom:162.750000px;}
.y23d{bottom:167.970000px;}
.y1e9{bottom:168.690000px;}
.y61{bottom:169.605000px;}
.y20c{bottom:170.310000px;}
.y193{bottom:172.830000px;}
.y11c{bottom:174.090000px;}
.y160{bottom:177.870000px;}
.y3a{bottom:178.230000px;}
.y299{bottom:178.410000px;}
.y14e{bottom:178.770000px;}
.y1b8{bottom:178.950000px;}
.y268{bottom:179.310000px;}
.y216{bottom:180.570000px;}
.ye0{bottom:181.650000px;}
.yb8{bottom:182.730000px;}
.y60{bottom:187.605000px;}
.y23c{bottom:187.950000px;}
.y1e8{bottom:188.490000px;}
.y20b{bottom:190.290000px;}
.y192{bottom:192.630000px;}
.y11b{bottom:193.890000px;}
.y298{bottom:195.690000px;}
.y267{bottom:196.590000px;}
.y15f{bottom:197.850000px;}
.y39{bottom:198.030000px;}
.y14d{bottom:198.570000px;}
.y1b7{bottom:198.750000px;}
.y215{bottom:200.370000px;}
.ydf{bottom:201.450000px;}
.yb7{bottom:202.530000px;}
.y5f{bottom:205.425000px;}
.y23b{bottom:207.750000px;}
.y1e7{bottom:208.290000px;}
.y20a{bottom:210.090000px;}
.y191{bottom:212.430000px;}
.y297{bottom:212.790000px;}
.y11a{bottom:213.690000px;}
.y15e{bottom:217.650000px;}
.y38{bottom:217.830000px;}
.y14c{bottom:218.370000px;}
.y1b6{bottom:218.550000px;}
.y214{bottom:220.170000px;}
.yde{bottom:221.250000px;}
.yb6{bottom:222.330000px;}
.y5e{bottom:223.245000px;}
.y23a{bottom:227.550000px;}
.y1e6{bottom:228.090000px;}
.y209{bottom:229.890000px;}
.y296{bottom:230.070000px;}
.y266{bottom:230.970000px;}
.y190{bottom:232.230000px;}
.y119{bottom:233.490000px;}
.y15d{bottom:237.450000px;}
.y14b{bottom:238.170000px;}
.y1b5{bottom:238.350000px;}
.y37{bottom:239.070000px;}
.y213{bottom:239.970000px;}
.y5d{bottom:241.065000px;}
.ydd{bottom:241.230000px;}
.yb5{bottom:242.130000px;}
.y239{bottom:247.350000px;}
.y1e5{bottom:248.070000px;}
.y265{bottom:248.250000px;}
.y208{bottom:249.690000px;}
.y18f{bottom:252.210000px;}
.y118{bottom:253.470000px;}
.y36{bottom:256.350000px;}
.y15c{bottom:257.250000px;}
.y14a{bottom:257.970000px;}
.y1b4{bottom:258.150000px;}
.y5c{bottom:258.885000px;}
.y212{bottom:259.950000px;}
.y4c{bottom:260.850000px;}
.ydc{bottom:261.030000px;}
.yb4{bottom:261.930000px;}
.y295{bottom:264.630000px;}
.y35{bottom:264.810000px;}
.y264{bottom:265.530000px;}
.y238{bottom:267.150000px;}
.y1e4{bottom:267.870000px;}
.y207{bottom:269.490000px;}
.y18e{bottom:272.010000px;}
.y117{bottom:273.270000px;}
.y5b{bottom:276.885000px;}
.y15b{bottom:277.050000px;}
.y149{bottom:277.950000px;}
.y1b3{bottom:278.130000px;}
.ydb{bottom:280.830000px;}
.y211{bottom:281.010000px;}
.yb3{bottom:281.910000px;}
.y263{bottom:282.810000px;}
.y34{bottom:284.970000px;}
.y1e3{bottom:287.670000px;}
.y237{bottom:288.390000px;}
.y206{bottom:289.470000px;}
.y18d{bottom:291.810000px;}
.y116{bottom:293.070000px;}
.y5a{bottom:294.705000px;}
.y15a{bottom:297.030000px;}
.y148{bottom:297.750000px;}
.y33{bottom:297.930000px;}
.y294{bottom:299.190000px;}
.y262{bottom:300.090000px;}
.yda{bottom:300.630000px;}
.yb2{bottom:301.710000px;}
.y1e2{bottom:307.470000px;}
.y205{bottom:309.270000px;}
.y18c{bottom:311.610000px;}
.y59{bottom:312.525000px;}
.y115{bottom:312.870000px;}
.y293{bottom:316.290000px;}
.y32{bottom:316.470000px;}
.y159{bottom:316.830000px;}
.y261{bottom:317.190000px;}
.y147{bottom:317.550000px;}
.y1b2{bottom:317.730000px;}
.yd9{bottom:320.430000px;}
.yb1{bottom:321.510000px;}
.y1e1{bottom:327.270000px;}
.y58{bottom:327.465000px;}
.y236{bottom:328.890000px;}
.y204{bottom:329.070000px;}
.y18b{bottom:331.410000px;}
.y114{bottom:332.670000px;}
.y292{bottom:333.570000px;}
.y260{bottom:334.470000px;}
.y158{bottom:336.630000px;}
.y146{bottom:337.350000px;}
.y1b1{bottom:337.530000px;}
.y57{bottom:338.265000px;}
.yd8{bottom:340.410000px;}
.yb0{bottom:341.310000px;}
.y31{bottom:344.730000px;}
.y1e0{bottom:347.250000px;}
.y203{bottom:348.870000px;}
.y235{bottom:349.950000px;}
.y291{bottom:350.850000px;}
.y25f{bottom:351.750000px;}
.y113{bottom:352.650000px;}
.y56{bottom:356.085000px;}
.y157{bottom:356.430000px;}
.y145{bottom:357.150000px;}
.y1b0{bottom:357.330000px;}
.yd7{bottom:360.210000px;}
.yaf{bottom:361.110000px;}
.y1df{bottom:367.050000px;}
.y290{bottom:368.130000px;}
.y202{bottom:368.670000px;}
.y25e{bottom:369.030000px;}
.y112{bottom:372.450000px;}
.y55{bottom:373.935000px;}
.y156{bottom:376.230000px;}
.y144{bottom:376.950000px;}
.y1af{bottom:377.310000px;}
.yd6{bottom:380.010000px;}
.yae{bottom:381.090000px;}
.y30{bottom:382.170000px;}
.y28f{bottom:385.410000px;}
.y25d{bottom:386.310000px;}
.y1de{bottom:386.850000px;}
.y201{bottom:388.650000px;}
.y234{bottom:390.450000px;}
.y54{bottom:391.935000px;}
.y111{bottom:392.250000px;}
.y18a{bottom:393.195000px;}
.y155{bottom:396.255000px;}
.y143{bottom:396.975000px;}
.y1ae{bottom:397.155000px;}
.yd5{bottom:399.855000px;}
.yad{bottom:400.935000px;}
.y28e{bottom:402.555000px;}
.y25c{bottom:403.635000px;}
.y1dd{bottom:406.695000px;}
.y200{bottom:408.495000px;}
.y53{bottom:409.755000px;}
.y233{bottom:410.295000px;}
.y110{bottom:412.095000px;}
.y2f{bottom:412.815000px;}
.y189{bottom:412.995000px;}
.y154{bottom:416.055000px;}
.y142{bottom:416.775000px;}
.y1ad{bottom:416.955000px;}
.yd4{bottom:419.655000px;}
.y28d{bottom:419.835000px;}
.yac{bottom:420.735000px;}
.y1dc{bottom:426.495000px;}
.y52{bottom:427.575000px;}
.y1ff{bottom:428.295000px;}
.y232{bottom:430.275000px;}
.y10f{bottom:431.895000px;}
.y188{bottom:432.795000px;}
.y153{bottom:435.315000px;}
.y141{bottom:436.575000px;}
.y1ac{bottom:436.755000px;}
.y28c{bottom:437.115000px;}
.y25b{bottom:438.015000px;}
.y2e{bottom:439.455000px;}
.yd3{bottom:439.635000px;}
.yab{bottom:440.535000px;}
.y51{bottom:442.515000px;}
.y1db{bottom:446.475000px;}
.y75{bottom:447.555000px;}
.y1fe{bottom:448.095000px;}
.y231{bottom:450.075000px;}
.y152{bottom:450.615000px;}
.y10e{bottom:451.875000px;}
.y187{bottom:452.595000px;}
.y50{bottom:453.315000px;}
.y28b{bottom:454.395000px;}
.y25a{bottom:455.295000px;}
.y140{bottom:456.375000px;}
.y1ab{bottom:456.555000px;}
.yd2{bottom:459.435000px;}
.y2d{bottom:460.155000px;}
.yaa{bottom:460.335000px;}
.y1da{bottom:466.275000px;}
.y1fd{bottom:467.895000px;}
.y230{bottom:469.875000px;}
.y4f{bottom:471.135000px;}
.y10d{bottom:471.675000px;}
.y186{bottom:472.575000px;}
.y13f{bottom:476.175000px;}
.y1aa{bottom:476.535000px;}
.yd1{bottom:479.235000px;}
.y2c{bottom:479.775000px;}
.ya9{bottom:480.315000px;}
.y1d9{bottom:486.075000px;}
.y1fc{bottom:487.875000px;}
.y28a{bottom:488.955000px;}
.y4e{bottom:489.135000px;}
.y22f{bottom:489.675000px;}
.y259{bottom:489.855000px;}
.y10c{bottom:491.475000px;}
.y185{bottom:492.375000px;}
.y2b{bottom:493.635000px;}
.y13e{bottom:496.155000px;}
.y1a9{bottom:496.335000px;}
.ya8{bottom:500.115000px;}
.yd0{bottom:500.295000px;}
.y2a{bottom:502.275000px;}
.y1d8{bottom:505.875000px;}
.y289{bottom:506.055000px;}
.y4d{bottom:506.955000px;}
.y258{bottom:507.135000px;}
.y1fb{bottom:507.675000px;}
.y22e{bottom:509.475000px;}
.y10b{bottom:511.275000px;}
.y184{bottom:512.175000px;}
.y13d{bottom:515.955000px;}
.y1a8{bottom:516.135000px;}
.ya7{bottom:519.915000px;}
.ycf{bottom:521.175000px;}
.y288{bottom:523.335000px;}
.y257{bottom:524.235000px;}
.y29{bottom:525.495000px;}
.y1d7{bottom:525.675000px;}
.y1fa{bottom:527.475000px;}
.y22d{bottom:529.455000px;}
.y10a{bottom:531.075000px;}
.y183{bottom:531.975000px;}
.y13c{bottom:535.755000px;}
.y1a7{bottom:535.935000px;}
.yce{bottom:536.655000px;}
.ya6{bottom:539.715000px;}
.y287{bottom:540.615000px;}
.y256{bottom:541.515000px;}
.y1d6{bottom:545.655000px;}
.y1f9{bottom:547.275000px;}
.y28{bottom:548.715000px;}
.y22c{bottom:550.515000px;}
.y109{bottom:551.055000px;}
.y182{bottom:551.775000px;}
.y13b{bottom:555.555000px;}
.y1a6{bottom:555.735000px;}
.ycd{bottom:556.635000px;}
.y286{bottom:557.895000px;}
.y255{bottom:558.795000px;}
.ya5{bottom:559.515000px;}
.y1d5{bottom:565.455000px;}
.y1f8{bottom:567.075000px;}
.y108{bottom:570.855000px;}
.y181{bottom:571.755000px;}
.y27{bottom:572.115000px;}
.y285{bottom:575.175000px;}
.y13a{bottom:575.355000px;}
.y1a5{bottom:575.715000px;}
.y254{bottom:576.075000px;}
.ycc{bottom:576.435000px;}
.ya4{bottom:579.495000px;}
.y1d4{bottom:585.255000px;}
.y1f7{bottom:587.055000px;}
.y107{bottom:590.655000px;}
.y22b{bottom:591.015000px;}
.y180{bottom:591.555000px;}
.y284{bottom:592.455000px;}
.y253{bottom:593.355000px;}
.y139{bottom:595.335000px;}
.y1a4{bottom:595.515000px;}
.ycb{bottom:596.235000px;}
.ya3{bottom:599.295000px;}
.y6c{bottom:601.995000px;}
.y1d3{bottom:605.055000px;}
.y1f6{bottom:606.855000px;}
.y283{bottom:609.555000px;}
.y106{bottom:610.455000px;}
.y22a{bottom:610.815000px;}
.y17f{bottom:611.355000px;}
.y138{bottom:615.135000px;}
.y1a3{bottom:615.315000px;}
.yca{bottom:616.035000px;}
.ya2{bottom:619.095000px;}
.y1d2{bottom:624.885000px;}
.y1f5{bottom:626.685000px;}
.y282{bottom:626.865000px;}
.y26{bottom:627.225000px;}
.y252{bottom:627.765000px;}
.y105{bottom:630.285000px;}
.y229{bottom:630.645000px;}
.y17e{bottom:631.185000px;}
.y137{bottom:634.965000px;}
.y1a2{bottom:635.145000px;}
.yc9{bottom:635.865000px;}
.ya1{bottom:638.925000px;}
.y25{bottom:642.885000px;}
.y281{bottom:644.145000px;}
.y1d1{bottom:644.865000px;}
.y251{bottom:645.045000px;}
.y1f4{bottom:646.485000px;}
.y104{bottom:650.265000px;}
.y228{bottom:650.625000px;}
.y17d{bottom:650.985000px;}
.y136{bottom:654.765000px;}
.y1a1{bottom:654.945000px;}
.yc8{bottom:655.845000px;}
.y24{bottom:658.365000px;}
.ya0{bottom:658.725000px;}
.y280{bottom:661.425000px;}
.y250{bottom:662.325000px;}
.y1d0{bottom:664.665000px;}
.y1f3{bottom:666.285000px;}
.y103{bottom:670.065000px;}
.y227{bottom:670.425000px;}
.y17c{bottom:670.965000px;}
.y23{bottom:673.845000px;}
.y135{bottom:674.565000px;}
.y1a0{bottom:674.925000px;}
.yc7{bottom:675.645000px;}
.y9f{bottom:678.705000px;}
.y24f{bottom:679.605000px;}
.y1cf{bottom:684.465000px;}
.y1f2{bottom:686.265000px;}
.y22{bottom:689.325000px;}
.y102{bottom:689.865000px;}
.y226{bottom:690.225000px;}
.y17b{bottom:690.765000px;}
.y134{bottom:694.545000px;}
.y19f{bottom:694.725000px;}
.yc6{bottom:695.445000px;}
.y27f{bottom:695.985000px;}
.y24e{bottom:696.885000px;}
.y9e{bottom:698.505000px;}
.y21{bottom:699.945000px;}
.y1ce{bottom:704.265000px;}
.y1f1{bottom:706.065000px;}
.y3e{bottom:709.665000px;}
.y225{bottom:710.025000px;}
.y17a{bottom:710.565000px;}
.y27e{bottom:713.085000px;}
.y24d{bottom:713.985000px;}
.y133{bottom:714.345000px;}
.y19e{bottom:714.525000px;}
.y20{bottom:714.885000px;}
.yc5{bottom:715.245000px;}
.y9d{bottom:718.305000px;}
.y1cd{bottom:724.065000px;}
.y1f0{bottom:725.865000px;}
.y179{bottom:730.365000px;}
.y101{bottom:730.725000px;}
.y224{bottom:731.085000px;}
.y24c{bottom:731.265000px;}
.y1f{bottom:732.705000px;}
.y132{bottom:734.145000px;}
.y19d{bottom:734.325000px;}
.yc4{bottom:735.045000px;}
.y9c{bottom:738.105000px;}
.y1cc{bottom:744.045000px;}
.y1e{bottom:745.665000px;}
.y27d{bottom:747.645000px;}
.y24b{bottom:748.545000px;}
.y178{bottom:750.165000px;}
.y100{bottom:750.345000px;}
.y131{bottom:753.945000px;}
.y19c{bottom:754.125000px;}
.yc3{bottom:755.025000px;}
.y9b{bottom:757.905000px;}
.y1d{bottom:758.625000px;}
.y1cb{bottom:763.845000px;}
.y27c{bottom:764.925000px;}
.y1ef{bottom:765.465000px;}
.y24a{bottom:765.825000px;}
.y177{bottom:770.145000px;}
.yff{bottom:771.765000px;}
.y1c{bottom:772.665000px;}
.y130{bottom:773.745000px;}
.y19b{bottom:774.105000px;}
.yc2{bottom:774.825000px;}
.y9a{bottom:777.885000px;}
.y1ca{bottom:781.845000px;}
.y27b{bottom:782.205000px;}
.y249{bottom:783.105000px;}
.yfe{bottom:783.825000px;}
.y1ee{bottom:785.445000px;}
.y1b{bottom:787.425000px;}
.y176{bottom:789.945000px;}
.y12f{bottom:793.725000px;}
.y19a{bottom:793.905000px;}
.yc1{bottom:794.625000px;}
.y223{bottom:795.525000px;}
.yfd{bottom:795.885000px;}
.y99{bottom:797.685000px;}
.y1a{bottom:798.585000px;}
.y27a{bottom:799.305000px;}
.y248{bottom:800.385000px;}
.y1c9{bottom:802.545000px;}
.y1ed{bottom:805.245000px;}
.yfc{bottom:807.945000px;}
.y175{bottom:809.745000px;}
.y12e{bottom:813.525000px;}
.y199{bottom:813.705000px;}
.yc0{bottom:814.425000px;}
.y222{bottom:815.325000px;}
.y279{bottom:816.585000px;}
.y98{bottom:817.485000px;}
.yfb{bottom:820.005000px;}
.y19{bottom:822.885000px;}
.y1c8{bottom:823.425000px;}
.y174{bottom:829.545000px;}
.y12d{bottom:833.325000px;}
.y198{bottom:833.505000px;}
.yfa{bottom:833.865000px;}
.ybf{bottom:834.225000px;}
.y247{bottom:834.765000px;}
.y221{bottom:835.125000px;}
.y97{bottom:837.285000px;}
.y18{bottom:846.645000px;}
.yf9{bottom:847.545000px;}
.y1c6{bottom:849.345000px;}
.y173{bottom:850.605000px;}
.y278{bottom:851.145000px;}
.y246{bottom:852.045000px;}
.y12c{bottom:853.170000px;}
.y197{bottom:853.350000px;}
.ybe{bottom:854.250000px;}
.y220{bottom:854.970000px;}
.y96{bottom:857.130000px;}
.y17{bottom:861.450000px;}
.yf8{bottom:865.050000px;}
.y1c5{bottom:865.230000px;}
.y172{bottom:867.930000px;}
.y277{bottom:868.470000px;}
.y245{bottom:870.090000px;}
.y16{bottom:872.070000px;}
.y12b{bottom:872.970000px;}
.y21f{bottom:874.950000px;}
.ybd{bottom:875.310000px;}
.y95{bottom:877.110000px;}
.yf7{bottom:878.910000px;}
.y1c4{bottom:881.070000px;}
.y171{bottom:884.850000px;}
.y276{bottom:885.750000px;}
.y15{bottom:886.290000px;}
.y12a{bottom:892.950000px;}
.y21e{bottom:894.750000px;}
.ybc{bottom:896.010000px;}
.y94{bottom:896.910000px;}
.yf5{bottom:897.810000px;}
.y170{bottom:900.690000px;}
.y275{bottom:902.850000px;}
.y14{bottom:907.530000px;}
.y244{bottom:910.590000px;}
.y129{bottom:912.750000px;}
.y21d{bottom:914.550000px;}
.yf3{bottom:916.530000px;}
.y93{bottom:916.710000px;}
.y274{bottom:920.130000px;}
.y16e{bottom:920.850000px;}
.y13{bottom:926.970000px;}
.y1c3{bottom:928.590000px;}
.y243{bottom:930.390000px;}
.y128{bottom:932.550000px;}
.y21c{bottom:934.350000px;}
.y92{bottom:936.510000px;}
.yf1{bottom:937.410000px;}
.y1c2{bottom:944.430000px;}
.y16c{bottom:948.570000px;}
.y242{bottom:950.190000px;}
.y127{bottom:952.350000px;}
.y12{bottom:954.510000px;}
.y273{bottom:954.690000px;}
.y21b{bottom:955.590000px;}
.y91{bottom:956.310000px;}
.yef{bottom:959.550000px;}
.y1c1{bottom:960.450000px;}
.y16b{bottom:968.730000px;}
.y241{bottom:970.170000px;}
.y272{bottom:971.970000px;}
.y126{bottom:972.150000px;}
.y90{bottom:976.290000px;}
.y11{bottom:982.050000px;}
.yed{bottom:982.410000px;}
.y169{bottom:988.170000px;}
.y271{bottom:989.250000px;}
.y240{bottom:989.970000px;}
.y125{bottom:992.130000px;}
.y8f{bottom:996.090000px;}
.yeb{bottom:1000.050000px;}
.y270{bottom:1006.350000px;}
.y10{bottom:1006.890000px;}
.y1c0{bottom:1007.970000px;}
.y167{bottom:1011.030000px;}
.y124{bottom:1011.930000px;}
.y8e{bottom:1015.890000px;}
.ye9{bottom:1018.050000px;}
.yf{bottom:1021.110000px;}
.y26f{bottom:1023.630000px;}
.y1bf{bottom:1023.810000px;}
.y123{bottom:1031.730000px;}
.y73{bottom:1031.760000px;}
.y165{bottom:1035.510000px;}
.y8d{bottom:1035.690000px;}
.ye{bottom:1036.590000px;}
.ye7{bottom:1039.830000px;}
.y26e{bottom:1040.910000px;}
.y1bc{bottom:1041.990000px;}
.y122{bottom:1051.530000px;}
.yd{bottom:1052.250000px;}
.y8c{bottom:1055.490000px;}
.y26d{bottom:1058.190000px;}
.ye6{bottom:1059.990000px;}
.y4{bottom:1069.350000px;}
.y121{bottom:1072.590000px;}
.y8b{bottom:1075.290000px;}
.y26c{bottom:1075.470000px;}
.ye5{bottom:1076.730000px;}
.y3{bottom:1087.560000px;}
.yb{bottom:1088.100000px;}
.y2{bottom:1101.240000px;}
.y88{bottom:1105.380000px;}
.y1{bottom:1117.080000px;}
.y87{bottom:1122.660000px;}
.h9{height:4.021875px;}
.h20{height:4.064063px;}
.h42{height:4.173750px;}
.h49{height:6.257812px;}
.h5{height:13.500000px;}
.h3b{height:13.680000px;}
.h31{height:13.860000px;}
.h44{height:15.840000px;}
.h46{height:15.876000px;}
.h45{height:16.020000px;}
.h1c{height:16.590234px;}
.h26{height:16.764258px;}
.h3a{height:17.496000px;}
.h35{height:17.640000px;}
.h34{height:18.000000px;}
.h38{height:18.720000px;}
.h39{height:18.900000px;}
.h3f{height:19.440000px;}
.h33{height:19.620000px;}
.h40{height:20.160000px;}
.h37{height:20.880000px;}
.h12{height:21.114844px;}
.h29{height:22.140000px;}
.h3e{height:22.320000px;}
.h36{height:22.860000px;}
.h3c{height:23.049141px;}
.h1f{height:25.400391px;}
.h1a{height:26.144116px;}
.h41{height:27.720000px;}
.h8{height:29.158594px;}
.h28{height:29.464453px;}
.h43{height:29.700000px;}
.h47{height:30.259687px;}
.h15{height:30.963516px;}
.h17{height:31.672266px;}
.h2b{height:31.829766px;}
.h23{height:32.004492px;}
.h22{height:32.868281px;}
.h11{height:32.942109px;}
.h19{height:33.683203px;}
.h1e{height:34.036523px;}
.h7{height:34.200000px;}
.h3d{height:34.920000px;}
.h32{height:34.955156px;}
.hd{height:35.120039px;}
.h3{height:35.694141px;}
.h1b{height:37.705078px;}
.h25{height:38.100586px;}
.hc{height:39.313477px;}
.h6{height:41.726953px;}
.hf{height:42.164648px;}
.h2c{height:42.759141px;}
.h48{height:43.506914px;}
.h2f{height:45.549492px;}
.h18{height:45.992812px;}
.hb{height:48.224531px;}
.h14{height:50.800781px;}
.h30{height:52.171875px;}
.h10{height:52.918594px;}
.h2d{height:52.998047px;}
.h16{height:55.291992px;}
.h2{height:59.436914px;}
.h4{height:65.884219px;}
.he{height:67.565039px;}
.h13{height:67.824844px;}
.ha{height:68.400000px;}
.h21{height:72.900000px;}
.h2e{height:75.093750px;}
.h1d{height:84.837305px;}
.h27{height:87.876000px;}
.h2a{height:144.720000px;}
.h24{height:519.555000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.we{width:20.160000px;}
.w10{width:20.196000px;}
.wf{width:20.340000px;}
.wd{width:27.000000px;}
.w4{width:82.080000px;}
.w6{width:101.160000px;}
.w14{width:108.036000px;}
.w17{width:113.436000px;}
.w16{width:114.840000px;}
.w15{width:141.696000px;}
.w7{width:154.470000px;}
.wb{width:180.390000px;}
.w9{width:182.550000px;}
.wc{width:229.170000px;}
.w13{width:242.670000px;}
.w11{width:310.215000px;}
.w12{width:410.475000px;}
.w8{width:532.725000px;}
.w5{width:639.870000px;}
.w3{width:721.950000px;}
.wa{width:743.040000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:4.252500px;}
.x8{left:8.100000px;}
.x15{left:10.800000px;}
.x1a{left:21.255000px;}
.x28{left:25.380000px;}
.x30{left:26.640000px;}
.xf{left:33.659987px;}
.x2f{left:37.650000px;}
.x2b{left:42.120000px;}
.x31{left:43.560000px;}
.x27{left:46.980000px;}
.xa{left:50.580000px;}
.x2d{left:55.260000px;}
.x2a{left:63.720000px;}
.x6{left:73.974000px;}
.x9{left:79.416000px;}
.x17{left:80.460000px;}
.x5{left:87.654000px;}
.x14{left:93.456000px;}
.x19{left:94.896000px;}
.x4{left:108.035987px;}
.xc{left:115.235987px;}
.x33{left:128.375987px;}
.xb{left:130.895987px;}
.x7{left:190.110000px;}
.x10{left:218.729987px;}
.x11{left:225.569987px;}
.x1{left:239.969987px;}
.xd{left:257.294987px;}
.xe{left:284.294987px;}
.x16{left:303.015000px;}
.x18{left:310.395000px;}
.x1f{left:337.215000px;}
.x26{left:350.715000px;}
.x20{left:364.215000px;}
.x3{left:366.374987px;}
.x21{left:384.375000px;}
.x2{left:401.654987px;}
.x22{left:404.715000px;}
.x25{left:418.245000px;}
.x23{left:424.905000px;}
.x29{left:458.745000px;}
.x1d{left:468.644987px;}
.x12{left:489.164987px;}
.x13{left:490.784987px;}
.x32{left:511.124987px;}
.x2c{left:600.450000px;}
.x1b{left:620.253000px;}
.x2e{left:715.290000px;}
.x1e{left:799.199987px;}
.x1c{left:813.239987px;}
.x24{left:820.799987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-13.920000pt;}
.ls19{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.310933pt;}
.lsc{letter-spacing:-0.201067pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.079467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.079467pt;}
.lse{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.128640pt;}
.ls0{letter-spacing:0.136320pt;}
.ls12{letter-spacing:0.138880pt;}
.ls9{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.198933pt;}
.lsf{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.257280pt;}
.ls14{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.337707pt;}
.lsd{letter-spacing:0.640000pt;}
.ls15{letter-spacing:17.232640pt;}
.ls1{letter-spacing:43.040000pt;}
.wse{word-spacing:-37.120000pt;}
.ws15{word-spacing:-16.000000pt;}
.ws11{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.510933pt;}
.ws16{word-spacing:-13.327360pt;}
.ws13{word-spacing:-13.280000pt;}
.ws17{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws14{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws0{word-spacing:-10.080000pt;}
.wsf{word-spacing:-9.920000pt;}
.ws7{word-spacing:-9.769067pt;}
.ws6{word-spacing:-9.760000pt;}
.wsb{word-spacing:-9.359467pt;}
.wsa{word-spacing:-9.280000pt;}
.wsc{word-spacing:-9.200533pt;}
.wsd{word-spacing:-9.078933pt;}
.ws9{word-spacing:-8.000000pt;}
.ws5{word-spacing:-6.720000pt;}
.ws10{word-spacing:0.000000pt;}
.ws4{word-spacing:54.186667pt;}
._1c{margin-left:-2555.392000pt;}
._1d{margin-left:-2530.918613pt;}
._28{margin-left:-2526.438613pt;}
._6{margin-left:-53.600000pt;}
._43{margin-left:-14.023680pt;}
._38{margin-left:-9.807360pt;}
._13{margin-left:-2.873387pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.067307pt;}
._16{width:1.960320pt;}
._2{width:2.962347pt;}
._d{width:3.938347pt;}
._e{width:5.258880pt;}
._1a{width:6.405120pt;}
._14{width:7.536000pt;}
._9{width:9.189760pt;}
._8{width:10.092800pt;}
._15{width:10.986240pt;}
._11{width:12.348373pt;}
._17{width:13.488000pt;}
._a{width:14.979840pt;}
._27{width:16.356053pt;}
._12{width:17.848320pt;}
._10{width:19.601280pt;}
._f{width:20.663680pt;}
._19{width:21.902293pt;}
._18{width:22.944000pt;}
._c{width:24.377173pt;}
._b{width:25.922560pt;}
._1f{width:26.815787pt;}
._23{width:27.888000pt;}
._24{width:29.157973pt;}
._29{width:30.447573pt;}
._2b{width:31.500160pt;}
._25{width:32.451413pt;}
._26{width:33.359360pt;}
._2d{width:34.262400pt;}
._22{width:35.377920pt;}
._2c{width:36.478720pt;}
._2e{width:37.869653pt;}
._1e{width:39.521280pt;}
._33{width:43.128533pt;}
._34{width:44.142720pt;}
._21{width:52.105813pt;}
._20{width:53.115093pt;}
._31{width:56.726613pt;}
._4{width:58.218667pt;}
._2a{width:59.116160pt;}
._3a{width:60.415787pt;}
._30{width:61.401813pt;}
._2f{width:62.309760pt;}
._3{width:63.792640pt;}
._32{width:66.400000pt;}
._40{width:70.263680pt;}
._37{width:72.962560pt;}
._36{width:74.091520pt;}
._3c{width:81.061120pt;}
._3b{width:82.038400pt;}
._41{width:85.895040pt;}
._39{width:95.118720pt;}
._35{width:97.338453pt;}
._42{width:99.759360pt;}
._3e{width:108.205440pt;}
._3d{width:109.475413pt;}
._3f{width:139.705600pt;}
._5{width:177.440000pt;}
._1b{width:250.906667pt;}
._7{width:671.978667pt;}
.fs8{font-size:5.120000pt;}
.fs12{font-size:5.333333pt;}
.fsf{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:29.440000pt;}
.fs11{font-size:32.000000pt;}
.fse{font-size:33.730624pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.fs10{font-size:106.880000pt;}
.y4b{bottom:-219.226667pt;}
.y4a{bottom:-189.306667pt;}
.y84{bottom:-162.440000pt;}
.y49{bottom:-159.386667pt;}
.y83{bottom:-132.360000pt;}
.y48{bottom:-129.306667pt;}
.y82{bottom:-102.440000pt;}
.y47{bottom:-99.386667pt;}
.y81{bottom:-72.360000pt;}
.y46{bottom:-69.280000pt;}
.y80{bottom:-42.400000pt;}
.y45{bottom:-39.360000pt;}
.y86{bottom:-15.931333pt;}
.y7f{bottom:-12.480000pt;}
.y44{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y29e{bottom:1.633333pt;}
.ye8{bottom:2.240000pt;}
.y6{bottom:3.360000pt;}
.yee{bottom:4.000000pt;}
.y1c7{bottom:4.040000pt;}
.yec{bottom:4.160000pt;}
.yf6{bottom:4.480000pt;}
.y74{bottom:4.773333pt;}
.yea{bottom:4.800000pt;}
.y16d{bottom:5.120000pt;}
.yf4{bottom:5.440000pt;}
.yf2{bottom:5.920000pt;}
.y168{bottom:6.080000pt;}
.y16a{bottom:6.240000pt;}
.yf0{bottom:6.400000pt;}
.y43{bottom:6.880000pt;}
.y16f{bottom:8.480000pt;}
.y72{bottom:9.440000pt;}
.y6b{bottom:9.760000pt;}
.y1bd{bottom:10.080000pt;}
.y9{bottom:11.040000pt;}
.y166{bottom:11.680000pt;}
.y7e{bottom:15.040000pt;}
.y1be{bottom:16.320000pt;}
.y42{bottom:19.200000pt;}
.ya{bottom:19.360000pt;}
.y7{bottom:20.640000pt;}
.y71{bottom:20.986667pt;}
.y8{bottom:21.760000pt;}
.y6a{bottom:25.600000pt;}
.y7d{bottom:26.720000pt;}
.yc{bottom:31.200000pt;}
.y41{bottom:31.520000pt;}
.y70{bottom:32.506667pt;}
.y7c{bottom:38.240000pt;}
.y69{bottom:38.880000pt;}
.y8a{bottom:42.240000pt;}
.y40{bottom:44.000000pt;}
.y6f{bottom:44.186667pt;}
.y68{bottom:48.480000pt;}
.y7b{bottom:49.920000pt;}
.y5{bottom:51.040000pt;}
.y3f{bottom:55.520000pt;}
.y6e{bottom:55.706667pt;}
.y85{bottom:56.693333pt;}
.y89{bottom:59.040000pt;}
.y7a{bottom:61.440000pt;}
.y67{bottom:64.320000pt;}
.y6d{bottom:70.906667pt;}
.y79{bottom:72.960000pt;}
.y66{bottom:80.320000pt;}
.y78{bottom:84.640000pt;}
.y164{bottom:87.680000pt;}
.y21a{bottom:89.920000pt;}
.y120{bottom:90.400000pt;}
.ye4{bottom:90.880000pt;}
.y210{bottom:91.840000pt;}
.y65{bottom:96.160000pt;}
.y1ec{bottom:96.960000pt;}
.y29d{bottom:97.120000pt;}
.y20f{bottom:98.560000pt;}
.y196{bottom:100.640000pt;}
.y11f{bottom:101.760000pt;}
.y163{bottom:105.280000pt;}
.y3d{bottom:105.600000pt;}
.y151{bottom:105.920000pt;}
.y1bb{bottom:106.080000pt;}
.y219{bottom:107.520000pt;}
.y77{bottom:107.840000pt;}
.ye3{bottom:108.480000pt;}
.ybb{bottom:109.440000pt;}
.y64{bottom:112.000000pt;}
.y29c{bottom:112.480000pt;}
.y26b{bottom:113.280000pt;}
.y23f{bottom:114.080000pt;}
.y1eb{bottom:114.560000pt;}
.y20e{bottom:116.160000pt;}
.y195{bottom:118.240000pt;}
.y76{bottom:118.720000pt;}
.y11e{bottom:119.360000pt;}
.y162{bottom:122.880000pt;}
.y3c{bottom:123.200000pt;}
.y150{bottom:123.520000pt;}
.y1ba{bottom:123.680000pt;}
.y218{bottom:125.120000pt;}
.y63{bottom:125.320000pt;}
.ye2{bottom:126.240000pt;}
.yba{bottom:127.040000pt;}
.y29b{bottom:127.840000pt;}
.y26a{bottom:128.640000pt;}
.y23e{bottom:131.680000pt;}
.y1ea{bottom:132.320000pt;}
.y20d{bottom:133.760000pt;}
.y62{bottom:134.920000pt;}
.y194{bottom:136.000000pt;}
.y11d{bottom:137.120000pt;}
.y161{bottom:140.480000pt;}
.y3b{bottom:140.800000pt;}
.y14f{bottom:141.120000pt;}
.y1b9{bottom:141.280000pt;}
.y217{bottom:142.880000pt;}
.y29a{bottom:143.200000pt;}
.ye1{bottom:143.840000pt;}
.y269{bottom:144.000000pt;}
.yb9{bottom:144.666667pt;}
.y23d{bottom:149.306667pt;}
.y1e9{bottom:149.946667pt;}
.y61{bottom:150.760000pt;}
.y20c{bottom:151.386667pt;}
.y193{bottom:153.626667pt;}
.y11c{bottom:154.746667pt;}
.y160{bottom:158.106667pt;}
.y3a{bottom:158.426667pt;}
.y299{bottom:158.586667pt;}
.y14e{bottom:158.906667pt;}
.y1b8{bottom:159.066667pt;}
.y268{bottom:159.386667pt;}
.y216{bottom:160.506667pt;}
.ye0{bottom:161.466667pt;}
.yb8{bottom:162.426667pt;}
.y60{bottom:166.760000pt;}
.y23c{bottom:167.066667pt;}
.y1e8{bottom:167.546667pt;}
.y20b{bottom:169.146667pt;}
.y192{bottom:171.226667pt;}
.y11b{bottom:172.346667pt;}
.y298{bottom:173.946667pt;}
.y267{bottom:174.746667pt;}
.y15f{bottom:175.866667pt;}
.y39{bottom:176.026667pt;}
.y14d{bottom:176.506667pt;}
.y1b7{bottom:176.666667pt;}
.y215{bottom:178.106667pt;}
.ydf{bottom:179.066667pt;}
.yb7{bottom:180.026667pt;}
.y5f{bottom:182.600000pt;}
.y23b{bottom:184.666667pt;}
.y1e7{bottom:185.146667pt;}
.y20a{bottom:186.746667pt;}
.y191{bottom:188.826667pt;}
.y297{bottom:189.146667pt;}
.y11a{bottom:189.946667pt;}
.y15e{bottom:193.466667pt;}
.y38{bottom:193.626667pt;}
.y14c{bottom:194.106667pt;}
.y1b6{bottom:194.266667pt;}
.y214{bottom:195.706667pt;}
.yde{bottom:196.666667pt;}
.yb6{bottom:197.626667pt;}
.y5e{bottom:198.440000pt;}
.y23a{bottom:202.266667pt;}
.y1e6{bottom:202.746667pt;}
.y209{bottom:204.346667pt;}
.y296{bottom:204.506667pt;}
.y266{bottom:205.306667pt;}
.y190{bottom:206.426667pt;}
.y119{bottom:207.546667pt;}
.y15d{bottom:211.066667pt;}
.y14b{bottom:211.706667pt;}
.y1b5{bottom:211.866667pt;}
.y37{bottom:212.506667pt;}
.y213{bottom:213.306667pt;}
.y5d{bottom:214.280000pt;}
.ydd{bottom:214.426667pt;}
.yb5{bottom:215.226667pt;}
.y239{bottom:219.866667pt;}
.y1e5{bottom:220.506667pt;}
.y265{bottom:220.666667pt;}
.y208{bottom:221.946667pt;}
.y18f{bottom:224.186667pt;}
.y118{bottom:225.306667pt;}
.y36{bottom:227.866667pt;}
.y15c{bottom:228.666667pt;}
.y14a{bottom:229.306667pt;}
.y1b4{bottom:229.466667pt;}
.y5c{bottom:230.120000pt;}
.y212{bottom:231.066667pt;}
.y4c{bottom:231.866667pt;}
.ydc{bottom:232.026667pt;}
.yb4{bottom:232.826667pt;}
.y295{bottom:235.226667pt;}
.y35{bottom:235.386667pt;}
.y264{bottom:236.026667pt;}
.y238{bottom:237.466667pt;}
.y1e4{bottom:238.106667pt;}
.y207{bottom:239.546667pt;}
.y18e{bottom:241.786667pt;}
.y117{bottom:242.906667pt;}
.y5b{bottom:246.120000pt;}
.y15b{bottom:246.266667pt;}
.y149{bottom:247.066667pt;}
.y1b3{bottom:247.226667pt;}
.ydb{bottom:249.626667pt;}
.y211{bottom:249.786667pt;}
.yb3{bottom:250.586667pt;}
.y263{bottom:251.386667pt;}
.y34{bottom:253.306667pt;}
.y1e3{bottom:255.706667pt;}
.y237{bottom:256.346667pt;}
.y206{bottom:257.306667pt;}
.y18d{bottom:259.386667pt;}
.y116{bottom:260.506667pt;}
.y5a{bottom:261.960000pt;}
.y15a{bottom:264.026667pt;}
.y148{bottom:264.666667pt;}
.y33{bottom:264.826667pt;}
.y294{bottom:265.946667pt;}
.y262{bottom:266.746667pt;}
.yda{bottom:267.226667pt;}
.yb2{bottom:268.186667pt;}
.y1e2{bottom:273.306667pt;}
.y205{bottom:274.906667pt;}
.y18c{bottom:276.986667pt;}
.y59{bottom:277.800000pt;}
.y115{bottom:278.106667pt;}
.y293{bottom:281.146667pt;}
.y32{bottom:281.306667pt;}
.y159{bottom:281.626667pt;}
.y261{bottom:281.946667pt;}
.y147{bottom:282.266667pt;}
.y1b2{bottom:282.426667pt;}
.yd9{bottom:284.826667pt;}
.yb1{bottom:285.786667pt;}
.y1e1{bottom:290.906667pt;}
.y58{bottom:291.080000pt;}
.y236{bottom:292.346667pt;}
.y204{bottom:292.506667pt;}
.y18b{bottom:294.586667pt;}
.y114{bottom:295.706667pt;}
.y292{bottom:296.506667pt;}
.y260{bottom:297.306667pt;}
.y158{bottom:299.226667pt;}
.y146{bottom:299.866667pt;}
.y1b1{bottom:300.026667pt;}
.y57{bottom:300.680000pt;}
.yd8{bottom:302.586667pt;}
.yb0{bottom:303.386667pt;}
.y31{bottom:306.426667pt;}
.y1e0{bottom:308.666667pt;}
.y203{bottom:310.106667pt;}
.y235{bottom:311.066667pt;}
.y291{bottom:311.866667pt;}
.y25f{bottom:312.666667pt;}
.y113{bottom:313.466667pt;}
.y56{bottom:316.520000pt;}
.y157{bottom:316.826667pt;}
.y145{bottom:317.466667pt;}
.y1b0{bottom:317.626667pt;}
.yd7{bottom:320.186667pt;}
.yaf{bottom:320.986667pt;}
.y1df{bottom:326.266667pt;}
.y290{bottom:327.226667pt;}
.y202{bottom:327.706667pt;}
.y25e{bottom:328.026667pt;}
.y112{bottom:331.066667pt;}
.y55{bottom:332.386667pt;}
.y156{bottom:334.426667pt;}
.y144{bottom:335.066667pt;}
.y1af{bottom:335.386667pt;}
.yd6{bottom:337.786667pt;}
.yae{bottom:338.746667pt;}
.y30{bottom:339.706667pt;}
.y28f{bottom:342.586667pt;}
.y25d{bottom:343.386667pt;}
.y1de{bottom:343.866667pt;}
.y201{bottom:345.466667pt;}
.y234{bottom:347.066667pt;}
.y54{bottom:348.386667pt;}
.y111{bottom:348.666667pt;}
.y18a{bottom:349.506667pt;}
.y155{bottom:352.226667pt;}
.y143{bottom:352.866667pt;}
.y1ae{bottom:353.026667pt;}
.yd5{bottom:355.426667pt;}
.yad{bottom:356.386667pt;}
.y28e{bottom:357.826667pt;}
.y25c{bottom:358.786667pt;}
.y1dd{bottom:361.506667pt;}
.y200{bottom:363.106667pt;}
.y53{bottom:364.226667pt;}
.y233{bottom:364.706667pt;}
.y110{bottom:366.306667pt;}
.y2f{bottom:366.946667pt;}
.y189{bottom:367.106667pt;}
.y154{bottom:369.826667pt;}
.y142{bottom:370.466667pt;}
.y1ad{bottom:370.626667pt;}
.yd4{bottom:373.026667pt;}
.y28d{bottom:373.186667pt;}
.yac{bottom:373.986667pt;}
.y1dc{bottom:379.106667pt;}
.y52{bottom:380.066667pt;}
.y1ff{bottom:380.706667pt;}
.y232{bottom:382.466667pt;}
.y10f{bottom:383.906667pt;}
.y188{bottom:384.706667pt;}
.y153{bottom:386.946667pt;}
.y141{bottom:388.066667pt;}
.y1ac{bottom:388.226667pt;}
.y28c{bottom:388.546667pt;}
.y25b{bottom:389.346667pt;}
.y2e{bottom:390.626667pt;}
.yd3{bottom:390.786667pt;}
.yab{bottom:391.586667pt;}
.y51{bottom:393.346667pt;}
.y1db{bottom:396.866667pt;}
.y75{bottom:397.826667pt;}
.y1fe{bottom:398.306667pt;}
.y231{bottom:400.066667pt;}
.y152{bottom:400.546667pt;}
.y10e{bottom:401.666667pt;}
.y187{bottom:402.306667pt;}
.y50{bottom:402.946667pt;}
.y28b{bottom:403.906667pt;}
.y25a{bottom:404.706667pt;}
.y140{bottom:405.666667pt;}
.y1ab{bottom:405.826667pt;}
.yd2{bottom:408.386667pt;}
.y2d{bottom:409.026667pt;}
.yaa{bottom:409.186667pt;}
.y1da{bottom:414.466667pt;}
.y1fd{bottom:415.906667pt;}
.y230{bottom:417.666667pt;}
.y4f{bottom:418.786667pt;}
.y10d{bottom:419.266667pt;}
.y186{bottom:420.066667pt;}
.y13f{bottom:423.266667pt;}
.y1aa{bottom:423.586667pt;}
.yd1{bottom:425.986667pt;}
.y2c{bottom:426.466667pt;}
.ya9{bottom:426.946667pt;}
.y1d9{bottom:432.066667pt;}
.y1fc{bottom:433.666667pt;}
.y28a{bottom:434.626667pt;}
.y4e{bottom:434.786667pt;}
.y22f{bottom:435.266667pt;}
.y259{bottom:435.426667pt;}
.y10c{bottom:436.866667pt;}
.y185{bottom:437.666667pt;}
.y2b{bottom:438.786667pt;}
.y13e{bottom:441.026667pt;}
.y1a9{bottom:441.186667pt;}
.ya8{bottom:444.546667pt;}
.yd0{bottom:444.706667pt;}
.y2a{bottom:446.466667pt;}
.y1d8{bottom:449.666667pt;}
.y289{bottom:449.826667pt;}
.y4d{bottom:450.626667pt;}
.y258{bottom:450.786667pt;}
.y1fb{bottom:451.266667pt;}
.y22e{bottom:452.866667pt;}
.y10b{bottom:454.466667pt;}
.y184{bottom:455.266667pt;}
.y13d{bottom:458.626667pt;}
.y1a8{bottom:458.786667pt;}
.ya7{bottom:462.146667pt;}
.ycf{bottom:463.266667pt;}
.y288{bottom:465.186667pt;}
.y257{bottom:465.986667pt;}
.y29{bottom:467.106667pt;}
.y1d7{bottom:467.266667pt;}
.y1fa{bottom:468.866667pt;}
.y22d{bottom:470.626667pt;}
.y10a{bottom:472.066667pt;}
.y183{bottom:472.866667pt;}
.y13c{bottom:476.226667pt;}
.y1a7{bottom:476.386667pt;}
.yce{bottom:477.026667pt;}
.ya6{bottom:479.746667pt;}
.y287{bottom:480.546667pt;}
.y256{bottom:481.346667pt;}
.y1d6{bottom:485.026667pt;}
.y1f9{bottom:486.466667pt;}
.y28{bottom:487.746667pt;}
.y22c{bottom:489.346667pt;}
.y109{bottom:489.826667pt;}
.y182{bottom:490.466667pt;}
.y13b{bottom:493.826667pt;}
.y1a6{bottom:493.986667pt;}
.ycd{bottom:494.786667pt;}
.y286{bottom:495.906667pt;}
.y255{bottom:496.706667pt;}
.ya5{bottom:497.346667pt;}
.y1d5{bottom:502.626667pt;}
.y1f8{bottom:504.066667pt;}
.y108{bottom:507.426667pt;}
.y181{bottom:508.226667pt;}
.y27{bottom:508.546667pt;}
.y285{bottom:511.266667pt;}
.y13a{bottom:511.426667pt;}
.y1a5{bottom:511.746667pt;}
.y254{bottom:512.066667pt;}
.ycc{bottom:512.386667pt;}
.ya4{bottom:515.106667pt;}
.y1d4{bottom:520.226667pt;}
.y1f7{bottom:521.826667pt;}
.y107{bottom:525.026667pt;}
.y22b{bottom:525.346667pt;}
.y180{bottom:525.826667pt;}
.y284{bottom:526.626667pt;}
.y253{bottom:527.426667pt;}
.y139{bottom:529.186667pt;}
.y1a4{bottom:529.346667pt;}
.ycb{bottom:529.986667pt;}
.ya3{bottom:532.706667pt;}
.y6c{bottom:535.106667pt;}
.y1d3{bottom:537.826667pt;}
.y1f6{bottom:539.426667pt;}
.y283{bottom:541.826667pt;}
.y106{bottom:542.626667pt;}
.y22a{bottom:542.946667pt;}
.y17f{bottom:543.426667pt;}
.y138{bottom:546.786667pt;}
.y1a3{bottom:546.946667pt;}
.yca{bottom:547.586667pt;}
.ya2{bottom:550.306667pt;}
.y1d2{bottom:555.453333pt;}
.y1f5{bottom:557.053333pt;}
.y282{bottom:557.213333pt;}
.y26{bottom:557.533333pt;}
.y252{bottom:558.013333pt;}
.y105{bottom:560.253333pt;}
.y229{bottom:560.573333pt;}
.y17e{bottom:561.053333pt;}
.y137{bottom:564.413333pt;}
.y1a2{bottom:564.573333pt;}
.yc9{bottom:565.213333pt;}
.ya1{bottom:567.933333pt;}
.y25{bottom:571.453333pt;}
.y281{bottom:572.573333pt;}
.y1d1{bottom:573.213333pt;}
.y251{bottom:573.373333pt;}
.y1f4{bottom:574.653333pt;}
.y104{bottom:578.013333pt;}
.y228{bottom:578.333333pt;}
.y17d{bottom:578.653333pt;}
.y136{bottom:582.013333pt;}
.y1a1{bottom:582.173333pt;}
.yc8{bottom:582.973333pt;}
.y24{bottom:585.213333pt;}
.ya0{bottom:585.533333pt;}
.y280{bottom:587.933333pt;}
.y250{bottom:588.733333pt;}
.y1d0{bottom:590.813333pt;}
.y1f3{bottom:592.253333pt;}
.y103{bottom:595.613333pt;}
.y227{bottom:595.933333pt;}
.y17c{bottom:596.413333pt;}
.y23{bottom:598.973333pt;}
.y135{bottom:599.613333pt;}
.y1a0{bottom:599.933333pt;}
.yc7{bottom:600.573333pt;}
.y9f{bottom:603.293333pt;}
.y24f{bottom:604.093333pt;}
.y1cf{bottom:608.413333pt;}
.y1f2{bottom:610.013333pt;}
.y22{bottom:612.733333pt;}
.y102{bottom:613.213333pt;}
.y226{bottom:613.533333pt;}
.y17b{bottom:614.013333pt;}
.y134{bottom:617.373333pt;}
.y19f{bottom:617.533333pt;}
.yc6{bottom:618.173333pt;}
.y27f{bottom:618.653333pt;}
.y24e{bottom:619.453333pt;}
.y9e{bottom:620.893333pt;}
.y21{bottom:622.173333pt;}
.y1ce{bottom:626.013333pt;}
.y1f1{bottom:627.613333pt;}
.y3e{bottom:630.813333pt;}
.y225{bottom:631.133333pt;}
.y17a{bottom:631.613333pt;}
.y27e{bottom:633.853333pt;}
.y24d{bottom:634.653333pt;}
.y133{bottom:634.973333pt;}
.y19e{bottom:635.133333pt;}
.y20{bottom:635.453333pt;}
.yc5{bottom:635.773333pt;}
.y9d{bottom:638.493333pt;}
.y1cd{bottom:643.613333pt;}
.y1f0{bottom:645.213333pt;}
.y179{bottom:649.213333pt;}
.y101{bottom:649.533333pt;}
.y224{bottom:649.853333pt;}
.y24c{bottom:650.013333pt;}
.y1f{bottom:651.293333pt;}
.y132{bottom:652.573333pt;}
.y19d{bottom:652.733333pt;}
.yc4{bottom:653.373333pt;}
.y9c{bottom:656.093333pt;}
.y1cc{bottom:661.373333pt;}
.y1e{bottom:662.813333pt;}
.y27d{bottom:664.573333pt;}
.y24b{bottom:665.373333pt;}
.y178{bottom:666.813333pt;}
.y100{bottom:666.973333pt;}
.y131{bottom:670.173333pt;}
.y19c{bottom:670.333333pt;}
.yc3{bottom:671.133333pt;}
.y9b{bottom:673.693333pt;}
.y1d{bottom:674.333333pt;}
.y1cb{bottom:678.973333pt;}
.y27c{bottom:679.933333pt;}
.y1ef{bottom:680.413333pt;}
.y24a{bottom:680.733333pt;}
.y177{bottom:684.573333pt;}
.yff{bottom:686.013333pt;}
.y1c{bottom:686.813333pt;}
.y130{bottom:687.773333pt;}
.y19b{bottom:688.093333pt;}
.yc2{bottom:688.733333pt;}
.y9a{bottom:691.453333pt;}
.y1ca{bottom:694.973333pt;}
.y27b{bottom:695.293333pt;}
.y249{bottom:696.093333pt;}
.yfe{bottom:696.733333pt;}
.y1ee{bottom:698.173333pt;}
.y1b{bottom:699.933333pt;}
.y176{bottom:702.173333pt;}
.y12f{bottom:705.533333pt;}
.y19a{bottom:705.693333pt;}
.yc1{bottom:706.333333pt;}
.y223{bottom:707.133333pt;}
.yfd{bottom:707.453333pt;}
.y99{bottom:709.053333pt;}
.y1a{bottom:709.853333pt;}
.y27a{bottom:710.493333pt;}
.y248{bottom:711.453333pt;}
.y1c9{bottom:713.373333pt;}
.y1ed{bottom:715.773333pt;}
.yfc{bottom:718.173333pt;}
.y175{bottom:719.773333pt;}
.y12e{bottom:723.133333pt;}
.y199{bottom:723.293333pt;}
.yc0{bottom:723.933333pt;}
.y222{bottom:724.733333pt;}
.y279{bottom:725.853333pt;}
.y98{bottom:726.653333pt;}
.yfb{bottom:728.893333pt;}
.y19{bottom:731.453333pt;}
.y1c8{bottom:731.933333pt;}
.y174{bottom:737.373333pt;}
.y12d{bottom:740.733333pt;}
.y198{bottom:740.893333pt;}
.yfa{bottom:741.213333pt;}
.ybf{bottom:741.533333pt;}
.y247{bottom:742.013333pt;}
.y221{bottom:742.333333pt;}
.y97{bottom:744.253333pt;}
.y18{bottom:752.573333pt;}
.yf9{bottom:753.373333pt;}
.y1c6{bottom:754.973333pt;}
.y173{bottom:756.093333pt;}
.y278{bottom:756.573333pt;}
.y246{bottom:757.373333pt;}
.y12c{bottom:758.373333pt;}
.y197{bottom:758.533333pt;}
.ybe{bottom:759.333333pt;}
.y220{bottom:759.973333pt;}
.y96{bottom:761.893333pt;}
.y17{bottom:765.733333pt;}
.yf8{bottom:768.933333pt;}
.y1c5{bottom:769.093333pt;}
.y172{bottom:771.493333pt;}
.y277{bottom:771.973333pt;}
.y245{bottom:773.413333pt;}
.y16{bottom:775.173333pt;}
.y12b{bottom:775.973333pt;}
.y21f{bottom:777.733333pt;}
.ybd{bottom:778.053333pt;}
.y95{bottom:779.653333pt;}
.yf7{bottom:781.253333pt;}
.y1c4{bottom:783.173333pt;}
.y171{bottom:786.533333pt;}
.y276{bottom:787.333333pt;}
.y15{bottom:787.813333pt;}
.y12a{bottom:793.733333pt;}
.y21e{bottom:795.333333pt;}
.ybc{bottom:796.453333pt;}
.y94{bottom:797.253333pt;}
.yf5{bottom:798.053333pt;}
.y170{bottom:800.613333pt;}
.y275{bottom:802.533333pt;}
.y14{bottom:806.693333pt;}
.y244{bottom:809.413333pt;}
.y129{bottom:811.333333pt;}
.y21d{bottom:812.933333pt;}
.yf3{bottom:814.693333pt;}
.y93{bottom:814.853333pt;}
.y274{bottom:817.893333pt;}
.y16e{bottom:818.533333pt;}
.y13{bottom:823.973333pt;}
.y1c3{bottom:825.413333pt;}
.y243{bottom:827.013333pt;}
.y128{bottom:828.933333pt;}
.y21c{bottom:830.533333pt;}
.y92{bottom:832.453333pt;}
.yf1{bottom:833.253333pt;}
.y1c2{bottom:839.493333pt;}
.y16c{bottom:843.173333pt;}
.y242{bottom:844.613333pt;}
.y127{bottom:846.533333pt;}
.y12{bottom:848.453333pt;}
.y273{bottom:848.613333pt;}
.y21b{bottom:849.413333pt;}
.y91{bottom:850.053333pt;}
.yef{bottom:852.933333pt;}
.y1c1{bottom:853.733333pt;}
.y16b{bottom:861.093333pt;}
.y241{bottom:862.373333pt;}
.y272{bottom:863.973333pt;}
.y126{bottom:864.133333pt;}
.y90{bottom:867.813333pt;}
.y11{bottom:872.933333pt;}
.yed{bottom:873.253333pt;}
.y169{bottom:878.373333pt;}
.y271{bottom:879.333333pt;}
.y240{bottom:879.973333pt;}
.y125{bottom:881.893333pt;}
.y8f{bottom:885.413333pt;}
.yeb{bottom:888.933333pt;}
.y270{bottom:894.533333pt;}
.y10{bottom:895.013333pt;}
.y1c0{bottom:895.973333pt;}
.y167{bottom:898.693333pt;}
.y124{bottom:899.493333pt;}
.y8e{bottom:903.013333pt;}
.ye9{bottom:904.933333pt;}
.yf{bottom:907.653333pt;}
.y26f{bottom:909.893333pt;}
.y1bf{bottom:910.053333pt;}
.y123{bottom:917.093333pt;}
.y73{bottom:917.120000pt;}
.y165{bottom:920.453333pt;}
.y8d{bottom:920.613333pt;}
.ye{bottom:921.413333pt;}
.ye7{bottom:924.293333pt;}
.y26e{bottom:925.253333pt;}
.y1bc{bottom:926.213333pt;}
.y122{bottom:934.693333pt;}
.yd{bottom:935.333333pt;}
.y8c{bottom:938.213333pt;}
.y26d{bottom:940.613333pt;}
.ye6{bottom:942.213333pt;}
.y4{bottom:950.533333pt;}
.y121{bottom:953.413333pt;}
.y8b{bottom:955.813333pt;}
.y26c{bottom:955.973333pt;}
.ye5{bottom:957.093333pt;}
.y3{bottom:966.720000pt;}
.yb{bottom:967.200000pt;}
.y2{bottom:978.880000pt;}
.y88{bottom:982.560000pt;}
.y1{bottom:992.960000pt;}
.y87{bottom:997.920000pt;}
.h9{height:3.575000pt;}
.h20{height:3.612500pt;}
.h42{height:3.710000pt;}
.h49{height:5.562500pt;}
.h5{height:12.000000pt;}
.h3b{height:12.160000pt;}
.h31{height:12.320000pt;}
.h44{height:14.080000pt;}
.h46{height:14.112000pt;}
.h45{height:14.240000pt;}
.h1c{height:14.746875pt;}
.h26{height:14.901562pt;}
.h3a{height:15.552000pt;}
.h35{height:15.680000pt;}
.h34{height:16.000000pt;}
.h38{height:16.640000pt;}
.h39{height:16.800000pt;}
.h3f{height:17.280000pt;}
.h33{height:17.440000pt;}
.h40{height:17.920000pt;}
.h37{height:18.560000pt;}
.h12{height:18.768750pt;}
.h29{height:19.680000pt;}
.h3e{height:19.840000pt;}
.h36{height:20.320000pt;}
.h3c{height:20.488125pt;}
.h1f{height:22.578125pt;}
.h1a{height:23.239214pt;}
.h41{height:24.640000pt;}
.h8{height:25.918750pt;}
.h28{height:26.190625pt;}
.h43{height:26.400000pt;}
.h47{height:26.897500pt;}
.h15{height:27.523125pt;}
.h17{height:28.153125pt;}
.h2b{height:28.293125pt;}
.h23{height:28.448437pt;}
.h22{height:29.216250pt;}
.h11{height:29.281875pt;}
.h19{height:29.940625pt;}
.h1e{height:30.254687pt;}
.h7{height:30.400000pt;}
.h3d{height:31.040000pt;}
.h32{height:31.071250pt;}
.hd{height:31.217812pt;}
.h3{height:31.728125pt;}
.h1b{height:33.515625pt;}
.h25{height:33.867188pt;}
.hc{height:34.945312pt;}
.h6{height:37.090625pt;}
.hf{height:37.479688pt;}
.h2c{height:38.008125pt;}
.h48{height:38.672812pt;}
.h2f{height:40.488438pt;}
.h18{height:40.882500pt;}
.hb{height:42.866250pt;}
.h14{height:45.156250pt;}
.h30{height:46.375000pt;}
.h10{height:47.038750pt;}
.h2d{height:47.109375pt;}
.h16{height:49.148438pt;}
.h2{height:52.832812pt;}
.h4{height:58.563750pt;}
.he{height:60.057813pt;}
.h13{height:60.288750pt;}
.ha{height:60.800000pt;}
.h21{height:64.800000pt;}
.h2e{height:66.750000pt;}
.h1d{height:75.410937pt;}
.h27{height:78.112000pt;}
.h2a{height:128.640000pt;}
.h24{height:461.826667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.we{width:17.920000pt;}
.w10{width:17.952000pt;}
.wf{width:18.080000pt;}
.wd{width:24.000000pt;}
.w4{width:72.960000pt;}
.w6{width:89.920000pt;}
.w14{width:96.032000pt;}
.w17{width:100.832000pt;}
.w16{width:102.080000pt;}
.w15{width:125.952000pt;}
.w7{width:137.306667pt;}
.wb{width:160.346667pt;}
.w9{width:162.266667pt;}
.wc{width:203.706667pt;}
.w13{width:215.706667pt;}
.w11{width:275.746667pt;}
.w12{width:364.866667pt;}
.w8{width:473.533333pt;}
.w5{width:568.773333pt;}
.w3{width:641.733333pt;}
.wa{width:660.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:3.780000pt;}
.x8{left:7.200000pt;}
.x15{left:9.600000pt;}
.x1a{left:18.893333pt;}
.x28{left:22.560000pt;}
.x30{left:23.680000pt;}
.xf{left:29.919988pt;}
.x2f{left:33.466667pt;}
.x2b{left:37.440000pt;}
.x31{left:38.720000pt;}
.x27{left:41.760000pt;}
.xa{left:44.960000pt;}
.x2d{left:49.120000pt;}
.x2a{left:56.640000pt;}
.x6{left:65.754667pt;}
.x9{left:70.592000pt;}
.x17{left:71.520000pt;}
.x5{left:77.914667pt;}
.x14{left:83.072000pt;}
.x19{left:84.352000pt;}
.x4{left:96.031988pt;}
.xc{left:102.431988pt;}
.x33{left:114.111988pt;}
.xb{left:116.351988pt;}
.x7{left:168.986667pt;}
.x10{left:194.426655pt;}
.x11{left:200.506655pt;}
.x1{left:213.306655pt;}
.xd{left:228.706655pt;}
.xe{left:252.706655pt;}
.x16{left:269.346667pt;}
.x18{left:275.906667pt;}
.x1f{left:299.746667pt;}
.x26{left:311.746667pt;}
.x20{left:323.746667pt;}
.x3{left:325.666655pt;}
.x21{left:341.666667pt;}
.x2{left:357.026655pt;}
.x22{left:359.746667pt;}
.x25{left:371.773333pt;}
.x23{left:377.693333pt;}
.x29{left:407.773333pt;}
.x1d{left:416.573322pt;}
.x12{left:434.813322pt;}
.x13{left:436.253322pt;}
.x32{left:454.333322pt;}
.x2c{left:533.733333pt;}
.x1b{left:551.336000pt;}
.x2e{left:635.813333pt;}
.x1e{left:710.399988pt;}
.x1c{left:722.879988pt;}
.x24{left:729.599988pt;}
}




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