
    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_cbc0165a9d870de9cf36cc3a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_9b106ea2e6394ec542c5e414.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_bb1973fe47e0e5c5c4365afc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.874023;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_a89a34d3c33df0666d94ffca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_c75d7899a2224548b6132052.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_76526d019733ef41ea5c77b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_89d824f9d86975f0e2b4c41f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_86e5baab875f3fdefe1efc74.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e1b33694870e102a276a5c8a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8c993c91a27ddddd9f0ccc0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;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_d084246d8643af4a1332b02e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-72.000000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls2a{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.540000px;}
.ls1{letter-spacing:-0.378600px;}
.ls1a{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.310800px;}
.ls8{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.259800px;}
.ls1e{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.206400px;}
.ls2{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.106800px;}
.ls19{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.150000px;}
.ls11{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.220320px;}
.ls1f{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.513600px;}
.lsf{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.720000px;}
.ls29{letter-spacing:3.600000px;}
.ls10{letter-spacing:9.534240px;}
.ls15{letter-spacing:10.080000px;}
.ls14{letter-spacing:10.254240px;}
.ls28{letter-spacing:12.960000px;}
.ls27{letter-spacing:13.109760px;}
.ls17{letter-spacing:19.614240px;}
.ls21{letter-spacing:26.814240px;}
.ls26{letter-spacing:36.180000px;}
.ls3{letter-spacing:54.864000px;}
.ls4{letter-spacing:59.345280px;}
.ls22{letter-spacing:169.176000px;}
.ls23{letter-spacing:179.976000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws4{word-spacing:-66.240000px;}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:-20.681400px;}
.ws6{word-spacing:-18.144000px;}
.ws17{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.wse{word-spacing:-15.453600px;}
.ws8{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.226440px;}
.wsa{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.046800px;}
.ws16{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.833200px;}
.ws11{word-spacing:-14.733600px;}
.ws12{word-spacing:-14.680200px;}
.ws15{word-spacing:-14.659440px;}
.ws10{word-spacing:-14.580000px;}
.wsf{word-spacing:-12.420000px;}
.ws7{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-12.817920px;}
._4{margin-left:-2.160000px;}
._0{margin-left:-1.010880px;}
._1{width:1.010880px;}
._7{width:2.157120px;}
._8{width:3.321120px;}
._14{width:5.186640px;}
._11{width:6.336000px;}
._15{width:7.353120px;}
._d{width:8.568000px;}
._12{width:9.864000px;}
._1c{width:10.946880px;}
._e{width:12.098880px;}
._9{width:13.176000px;}
._2{width:15.048000px;}
._3{width:16.634880px;}
._a{width:19.440000px;}
._b{width:20.448000px;}
._1e{width:21.480000px;}
._c{width:22.512000px;}
._5{width:24.336000px;}
._6{width:25.563360px;}
._16{width:26.684640px;}
._1f{width:27.792000px;}
._1d{width:28.944000px;}
._1b{width:30.936000px;}
._20{width:32.064000px;}
._f{width:33.408000px;}
._10{width:34.560000px;}
._2b{width:35.930880px;}
._29{width:37.872000px;}
._34{width:39.168000px;}
._35{width:40.464000px;}
._22{width:41.760000px;}
._23{width:42.912000px;}
._25{width:43.989120px;}
._24{width:46.080000px;}
._19{width:47.520000px;}
._1a{width:48.708000px;}
._2f{width:52.632000px;}
._26{width:54.360000px;}
._30{width:58.464000px;}
._27{width:60.050880px;}
._2e{width:61.776000px;}
._2a{width:63.936000px;}
._37{width:68.328000px;}
._2c{width:71.712000px;}
._33{width:78.768000px;}
._2d{width:80.208000px;}
._28{width:81.216000px;}
._21{width:82.528560px;}
._36{width:83.623440px;}
._31{width:92.928000px;}
._32{width:94.200000px;}
._18{width:193.860000px;}
._17{width:195.120000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,0);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2c2{bottom:0.900000px;}
.y182{bottom:3.780000px;}
.y1b3{bottom:4.500000px;}
.y1f0{bottom:8.640000px;}
.ydb{bottom:10.260000px;}
.yd7{bottom:10.440000px;}
.yfe{bottom:10.620000px;}
.yfd{bottom:10.980000px;}
.y100{bottom:11.340000px;}
.y1ea{bottom:12.240000px;}
.y15a{bottom:12.285000px;}
.y15e{bottom:12.420000px;}
.yfa{bottom:12.465000px;}
.y1e6{bottom:12.600000px;}
.y127{bottom:12.780000px;}
.y1f6{bottom:13.860000px;}
.y1e2{bottom:14.220000px;}
.y23e{bottom:14.400000px;}
.y25{bottom:14.580000px;}
.y134{bottom:14.760000px;}
.y264{bottom:14.805000px;}
.y34{bottom:15.480000px;}
.y2e{bottom:15.660000px;}
.y21{bottom:16.740000px;}
.y22{bottom:16.920000px;}
.y28{bottom:16.965000px;}
.y2c{bottom:17.100000px;}
.y29{bottom:17.145000px;}
.y210{bottom:20.160000px;}
.y23c{bottom:20.340000px;}
.y1bb{bottom:20.520000px;}
.y2b0{bottom:20.700000px;}
.y181{bottom:21.060000px;}
.y1bd{bottom:21.240000px;}
.yd9{bottom:21.420000px;}
.y19e{bottom:21.780000px;}
.y123{bottom:23.220000px;}
.y1af{bottom:23.265000px;}
.y15c{bottom:23.400000px;}
.y18a{bottom:23.445000px;}
.y2b2{bottom:25.560000px;}
.y2b3{bottom:25.740000px;}
.y170{bottom:26.100000px;}
.y126{bottom:30.060000px;}
.y158{bottom:30.285000px;}
.y1eb{bottom:33.480000px;}
.y180{bottom:34.560000px;}
.y1ef{bottom:34.740000px;}
.y195{bottom:35.280000px;}
.y1fb{bottom:35.460000px;}
.y1fc{bottom:37.260000px;}
.y19d{bottom:38.160000px;}
.yf9{bottom:38.205000px;}
.y1f9{bottom:38.340000px;}
.y1e4{bottom:39.780000px;}
.y1e3{bottom:41.220000px;}
.y1df{bottom:41.400000px;}
.y1ac{bottom:41.580000px;}
.y1b2{bottom:41.940000px;}
.y16d{bottom:42.840000px;}
.y1f3{bottom:43.380000px;}
.y1f4{bottom:43.740000px;}
.y18c{bottom:43.920000px;}
.y1e0{bottom:44.280000px;}
.y15d{bottom:45.030000px;}
.y159{bottom:45.045000px;}
.y164{bottom:45.180000px;}
.y24{bottom:45.720000px;}
.y248{bottom:45.750000px;}
.y241{bottom:45.765000px;}
.y26{bottom:45.900000px;}
.y25f{bottom:46.440000px;}
.y244{bottom:46.620000px;}
.y249{bottom:46.650000px;}
.y242{bottom:46.665000px;}
.y24d{bottom:46.800000px;}
.y2{bottom:46.980000px;}
.y12e{bottom:48.240000px;}
.y1c9{bottom:48.420000px;}
.y146{bottom:49.140000px;}
.y1ba{bottom:51.510000px;}
.y125{bottom:52.740000px;}
.y157{bottom:60.525000px;}
.y17c{bottom:62.100000px;}
.y194{bottom:66.450000px;}
.y1{bottom:67.140000px;}
.y1ab{bottom:73.080000px;}
.y16c{bottom:73.800000px;}
.y1b1{bottom:74.910000px;}
.y163{bottom:75.450000px;}
.y14f{bottom:76.680000px;}
.y133{bottom:76.860000px;}
.y250{bottom:77.580000px;}
.y24c{bottom:77.760000px;}
.y12d{bottom:79.200000px;}
.y1c8{bottom:79.380000px;}
.y145{bottom:81.900000px;}
.y1b9{bottom:82.650000px;}
.y1ed{bottom:83.520000px;}
.y17b{bottom:85.680000px;}
.y156{bottom:91.485000px;}
.y193{bottom:97.410000px;}
.y1aa{bottom:104.040000px;}
.y188{bottom:104.940000px;}
.y16b{bottom:104.985000px;}
.y162{bottom:106.590000px;}
.y132{bottom:107.820000px;}
.y25d{bottom:107.850000px;}
.y246{bottom:108.720000px;}
.y18b{bottom:109.440000px;}
.y66{bottom:109.980000px;}
.y12c{bottom:110.340000px;}
.y1c7{bottom:110.520000px;}
.y2ad{bottom:111.600000px;}
.y1dd{bottom:111.960000px;}
.y1b8{bottom:113.610000px;}
.y173{bottom:114.525000px;}
.y29b{bottom:114.840000px;}
.y28b{bottom:115.020000px;}
.y271{bottom:115.380000px;}
.yd5{bottom:116.280000px;}
.y8c{bottom:116.820000px;}
.y1c{bottom:118.080000px;}
.y1f7{bottom:118.260000px;}
.y46{bottom:121.680000px;}
.y155{bottom:122.625000px;}
.y10f{bottom:124.560000px;}
.y1b0{bottom:126.360000px;}
.y103{bottom:126.720000px;}
.y8b{bottom:127.260000px;}
.y192{bottom:128.550000px;}
.y2ac{bottom:132.300000px;}
.y65{bottom:134.100000px;}
.y239{bottom:134.460000px;}
.y142{bottom:135.180000px;}
.y187{bottom:135.900000px;}
.y16a{bottom:135.945000px;}
.y161{bottom:137.550000px;}
.y131{bottom:138.960000px;}
.y25c{bottom:138.990000px;}
.y14d{bottom:139.005000px;}
.y26d{bottom:140.220000px;}
.y1f5{bottom:140.760000px;}
.y12b{bottom:141.300000px;}
.y1c6{bottom:141.480000px;}
.y1dc{bottom:142.920000px;}
.y91{bottom:144.360000px;}
.y1b7{bottom:144.750000px;}
.y83{bottom:145.440000px;}
.y29a{bottom:145.980000px;}
.y28a{bottom:146.160000px;}
.y141{bottom:146.340000px;}
.y270{bottom:146.520000px;}
.yd4{bottom:147.240000px;}
.y172{bottom:147.285000px;}
.y64{bottom:151.200000px;}
.y45{bottom:152.820000px;}
.y154{bottom:153.585000px;}
.y102{bottom:155.340000px;}
.y10e{bottom:155.520000px;}
.y20b{bottom:156.420000px;}
.y191{bottom:159.510000px;}
.y1b{bottom:160.920000px;}
.y8a{bottom:161.640000px;}
.y63{bottom:162.540000px;}
.y255{bottom:164.160000px;}
.y179{bottom:165.780000px;}
.y1a9{bottom:166.140000px;}
.y186{bottom:167.040000px;}
.y169{bottom:167.085000px;}
.y82{bottom:167.580000px;}
.y140{bottom:167.940000px;}
.y90{bottom:168.480000px;}
.y160{bottom:168.690000px;}
.yc7{bottom:168.840000px;}
.y2a8{bottom:169.920000px;}
.y130{bottom:169.950000px;}
.y14c{bottom:169.965000px;}
.y26c{bottom:171.180000px;}
.y12a{bottom:172.440000px;}
.y1c5{bottom:173.025000px;}
.y1db{bottom:174.060000px;}
.yf6{bottom:175.320000px;}
.y1b6{bottom:175.710000px;}
.y299{bottom:176.970000px;}
.y289{bottom:177.150000px;}
.y26f{bottom:177.510000px;}
.yd3{bottom:178.410000px;}
.y89{bottom:178.950000px;}
.y8f{bottom:179.850000px;}
.yc6{bottom:180.930000px;}
.y101{bottom:181.290000px;}
.y44{bottom:183.810000px;}
.y153{bottom:184.725000px;}
.y10d{bottom:186.690000px;}
.y20a{bottom:187.590000px;}
.y2a5{bottom:187.950000px;}
.y190{bottom:190.650000px;}
.y81{bottom:191.730000px;}
.y2b4{bottom:193.170000px;}
.y254{bottom:194.430000px;}
.yff{bottom:194.790000px;}
.y178{bottom:196.050000px;}
.y2c0{bottom:197.130000px;}
.y1a8{bottom:197.310000px;}
.y185{bottom:198.030000px;}
.y168{bottom:198.045000px;}
.y13f{bottom:198.210000px;}
.y15f{bottom:199.650000px;}
.y8e{bottom:200.010000px;}
.y25b{bottom:201.090000px;}
.y14b{bottom:201.105000px;}
.y26b{bottom:202.350000px;}
.y2ab{bottom:202.890000px;}
.y88{bottom:203.070000px;}
.y129{bottom:203.445000px;}
.y1c4{bottom:203.985000px;}
.y1a{bottom:204.690000px;}
.y1da{bottom:205.050000px;}
.yf5{bottom:206.490000px;}
.y1b5{bottom:206.850000px;}
.y298{bottom:208.110000px;}
.y288{bottom:208.290000px;}
.y26e{bottom:208.650000px;}
.yd2{bottom:209.370000px;}
.y96{bottom:210.270000px;}
.ye2{bottom:210.810000px;}
.yc5{bottom:211.170000px;}
.yb2{bottom:213.510000px;}
.y87{bottom:214.410000px;}
.y43{bottom:214.770000px;}
.y152{bottom:215.685000px;}
.y80{bottom:215.850000px;}
.y10c{bottom:217.650000px;}
.y2bf{bottom:217.830000px;}
.y209{bottom:218.550000px;}
.y18f{bottom:221.610000px;}
.y8d{bottom:223.770000px;}
.y253{bottom:224.670000px;}
.y177{bottom:226.290000px;}
.y1a7{bottom:228.270000px;}
.y13e{bottom:228.450000px;}
.y184{bottom:229.170000px;}
.y167{bottom:229.185000px;}
.y2a4{bottom:229.710000px;}
.yb1{bottom:230.790000px;}
.y19c{bottom:231.150000px;}
.y25a{bottom:232.050000px;}
.y14a{bottom:232.065000px;}
.y26a{bottom:233.310000px;}
.y128{bottom:234.585000px;}
.y1c3{bottom:235.125000px;}
.y42{bottom:235.290000px;}
.y1d9{bottom:236.190000px;}
.yf4{bottom:237.450000px;}
.y1b4{bottom:237.810000px;}
.y2be{bottom:238.530000px;}
.y297{bottom:239.070000px;}
.y287{bottom:239.250000px;}
.y86{bottom:239.610000px;}
.y7f{bottom:239.970000px;}
.y95{bottom:240.510000px;}
.yc4{bottom:241.230000px;}
.ye1{bottom:241.950000px;}
.y11f{bottom:242.130000px;}
.y151{bottom:246.825000px;}
.y19{bottom:247.890000px;}
.y10b{bottom:248.790000px;}
.y208{bottom:249.690000px;}
.y18e{bottom:252.750000px;}
.yb0{bottom:254.730000px;}
.y252{bottom:255.810000px;}
.y41{bottom:255.990000px;}
.y176{bottom:256.530000px;}
.y1a6{bottom:258.510000px;}
.y2bd{bottom:259.230000px;}
.y13d{bottom:259.590000px;}
.y183{bottom:260.130000px;}
.y166{bottom:260.145000px;}
.y17f{bottom:260.310000px;}
.y259{bottom:263.190000px;}
.y149{bottom:263.205000px;}
.y7e{bottom:264.090000px;}
.y269{bottom:264.450000px;}
.yaf{bottom:266.070000px;}
.y1c2{bottom:266.085000px;}
.y1d8{bottom:267.150000px;}
.yf3{bottom:268.590000px;}
.y19b{bottom:268.950000px;}
.y296{bottom:270.210000px;}
.y286{bottom:270.390000px;}
.y62{bottom:270.750000px;}
.y227{bottom:270.930000px;}
.y94{bottom:271.470000px;}
.y251{bottom:272.010000px;}
.yc3{bottom:272.370000px;}
.ye0{bottom:272.910000px;}
.y11e{bottom:273.090000px;}
.y40{bottom:276.690000px;}
.y10a{bottom:279.750000px;}
.y2bc{bottom:279.930000px;}
.y207{bottom:280.650000px;}
.y18d{bottom:283.710000px;}
.y19a{bottom:285.150000px;}
.y175{bottom:286.770000px;}
.y7d{bottom:288.390000px;}
.ydf{bottom:289.290000px;}
.y1a5{bottom:289.470000px;}
.y13c{bottom:289.650000px;}
.y18{bottom:290.910000px;}
.y165{bottom:291.285000px;}
.y1f2{bottom:293.070000px;}
.y148{bottom:294.165000px;}
.y268{bottom:295.410000px;}
.y2bb{bottom:296.130000px;}
.y1c1{bottom:297.225000px;}
.y3f{bottom:297.390000px;}
.y1d7{bottom:298.290000px;}
.yf2{bottom:299.550000px;}
.y295{bottom:301.170000px;}
.y285{bottom:301.350000px;}
.y61{bottom:301.710000px;}
.y93{bottom:302.610000px;}
.yc2{bottom:303.330000px;}
.y226{bottom:303.690000px;}
.y11d{bottom:304.230000px;}
.y21c{bottom:304.770000px;}
.yae{bottom:305.130000px;}
.y109{bottom:310.890000px;}
.y206{bottom:311.790000px;}
.y7c{bottom:312.510000px;}
.y2a3{bottom:313.050000px;}
.y174{bottom:317.010000px;}
.y1e8{bottom:317.550000px;}
.y3e{bottom:318.090000px;}
.y13b{bottom:319.890000px;}
.y1a4{bottom:320.610000px;}
.y147{bottom:325.305000px;}
.y17d{bottom:325.485000px;}
.y267{bottom:326.550000px;}
.y1c0{bottom:328.185000px;}
.y1d6{bottom:329.250000px;}
.yf1{bottom:330.690000px;}
.y294{bottom:332.310000px;}
.y171{bottom:332.490000px;}
.y60{bottom:332.850000px;}
.yde{bottom:333.210000px;}
.y17{bottom:333.570000px;}
.y92{bottom:333.750000px;}
.yc1{bottom:334.470000px;}
.y3d{bottom:334.650000px;}
.y24f{bottom:334.830000px;}
.y11c{bottom:335.190000px;}
.y21b{bottom:335.730000px;}
.yad{bottom:336.090000px;}
.y7b{bottom:336.630000px;}
.y108{bottom:341.850000px;}
.y205{bottom:342.750000px;}
.y13a{bottom:350.130000px;}
.y1a3{bottom:351.570000px;}
.y1e7{bottom:352.470000px;}
.y2a2{bottom:354.810000px;}
.y266{bottom:357.510000px;}
.y1bf{bottom:359.325000px;}
.y15b{bottom:360.390000px;}
.y7a{bottom:360.750000px;}
.y238{bottom:361.110000px;}
.yf0{bottom:361.650000px;}
.y293{bottom:363.270000px;}
.y284{bottom:363.450000px;}
.y5f{bottom:363.810000px;}
.yd1{bottom:364.710000px;}
.yc0{bottom:365.430000px;}
.y11b{bottom:366.330000px;}
.y21a{bottom:366.870000px;}
.yac{bottom:367.230000px;}
.y3c{bottom:367.950000px;}
.y107{bottom:372.990000px;}
.y204{bottom:373.890000px;}
.y1e5{bottom:374.970000px;}
.y16{bottom:376.410000px;}
.y139{bottom:380.370000px;}
.y1a2{bottom:382.710000px;}
.y79{bottom:384.870000px;}
.y265{bottom:389.010000px;}
.y1be{bottom:390.285000px;}
.y1d5{bottom:391.350000px;}
.y237{bottom:392.070000px;}
.yef{bottom:392.610000px;}
.y292{bottom:394.410000px;}
.y283{bottom:394.590000px;}
.y5e{bottom:394.950000px;}
.yd0{bottom:395.670000px;}
.y2a1{bottom:396.390000px;}
.ybf{bottom:396.570000px;}
.y11a{bottom:397.290000px;}
.y219{bottom:397.830000px;}
.yab{bottom:398.190000px;}
.y3b{bottom:401.250000px;}
.y106{bottom:403.950000px;}
.y203{bottom:404.850000px;}
.y263{bottom:405.210000px;}
.y78{bottom:408.990000px;}
.y150{bottom:409.530000px;}
.y138{bottom:410.610000px;}
.y1ae{bottom:411.690000px;}
.y1a1{bottom:413.715000px;}
.y15{bottom:418.035000px;}
.y1d4{bottom:422.535000px;}
.y236{bottom:423.075000px;}
.yee{bottom:423.795000px;}
.y291{bottom:425.415000px;}
.y282{bottom:425.595000px;}
.y5d{bottom:425.955000px;}
.ycf{bottom:426.855000px;}
.ybe{bottom:427.575000px;}
.y119{bottom:428.475000px;}
.y24e{bottom:428.835000px;}
.y218{bottom:429.015000px;}
.yaa{bottom:429.375000px;}
.y77{bottom:433.155000px;}
.y3a{bottom:434.415000px;}
.y105{bottom:435.135000px;}
.y202{bottom:436.035000px;}
.y262{bottom:437.115000px;}
.y2a0{bottom:437.475000px;}
.y137{bottom:440.895000px;}
.y1a0{bottom:444.855000px;}
.y1d3{bottom:453.495000px;}
.y235{bottom:454.215000px;}
.yed{bottom:454.755000px;}
.y29f{bottom:455.115000px;}
.y281{bottom:456.555000px;}
.y14{bottom:456.735000px;}
.y5c{bottom:456.915000px;}
.y76{bottom:457.455000px;}
.yce{bottom:457.815000px;}
.ybd{bottom:458.715000px;}
.y118{bottom:459.435000px;}
.y217{bottom:459.975000px;}
.ya9{bottom:460.335000px;}
.y24b{bottom:460.515000px;}
.y104{bottom:463.755000px;}
.y201{bottom:466.995000px;}
.y39{bottom:467.715000px;}
.y261{bottom:468.795000px;}
.y136{bottom:471.135000px;}
.y29e{bottom:473.115000px;}
.y189{bottom:473.295000px;}
.y1ad{bottom:475.095000px;}
.y19f{bottom:475.815000px;}
.y75{bottom:481.575000px;}
.y1d2{bottom:484.635000px;}
.y234{bottom:485.175000px;}
.yec{bottom:485.895000px;}
.y290{bottom:487.515000px;}
.y280{bottom:487.695000px;}
.y5b{bottom:488.055000px;}
.y17e{bottom:488.775000px;}
.ycd{bottom:488.955000px;}
.ybc{bottom:489.675000px;}
.y29d{bottom:490.395000px;}
.ya8{bottom:490.575000px;}
.y216{bottom:491.115000px;}
.y199{bottom:491.835000px;}
.y2b1{bottom:494.715000px;}
.y1f1{bottom:495.435000px;}
.y13{bottom:496.695000px;}
.y200{bottom:498.135000px;}
.y25e{bottom:500.655000px;}
.y38{bottom:500.835000px;}
.y135{bottom:501.195000px;}
.y74{bottom:505.695000px;}
.y1d1{bottom:515.595000px;}
.y233{bottom:516.315000px;}
.y12f{bottom:516.675000px;}
.yeb{bottom:516.855000px;}
.y1ec{bottom:517.935000px;}
.y28f{bottom:518.475000px;}
.y27f{bottom:518.655000px;}
.y5a{bottom:519.015000px;}
.ycc{bottom:519.915000px;}
.ybb{bottom:520.815000px;}
.ya7{bottom:521.535000px;}
.y215{bottom:522.075000px;}
.y1ff{bottom:529.095000px;}
.y29c{bottom:529.275000px;}
.y73{bottom:529.815000px;}
.y260{bottom:532.515000px;}
.y37{bottom:534.135000px;}
.y12{bottom:540.615000px;}
.y1e1{bottom:545.115000px;}
.y1d0{bottom:546.735000px;}
.y232{bottom:547.275000px;}
.yea{bottom:547.995000px;}
.y28e{bottom:549.615000px;}
.y27e{bottom:549.795000px;}
.y59{bottom:550.155000px;}
.ycb{bottom:551.055000px;}
.yba{bottom:551.775000px;}
.ya6{bottom:552.675000px;}
.y214{bottom:553.215000px;}
.y72{bottom:553.935000px;}
.y24a{bottom:554.475000px;}
.y258{bottom:564.195000px;}
.y1fe{bottom:566.895000px;}
.y36{bottom:567.255000px;}
.y1cf{bottom:577.695000px;}
.y71{bottom:578.055000px;}
.y231{bottom:578.415000px;}
.ye9{bottom:578.955000px;}
.y28d{bottom:580.575000px;}
.y27d{bottom:580.755000px;}
.y58{bottom:581.115000px;}
.yca{bottom:582.015000px;}
.yb9{bottom:582.915000px;}
.ya5{bottom:583.635000px;}
.y11{bottom:584.175000px;}
.y1fd{bottom:589.395000px;}
.y35{bottom:600.555000px;}
.y70{bottom:602.355000px;}
.ydd{bottom:607.935000px;}
.y1ce{bottom:608.835000px;}
.y230{bottom:609.375000px;}
.ye8{bottom:610.095000px;}
.y28c{bottom:611.715000px;}
.y27c{bottom:611.895000px;}
.y57{bottom:612.255000px;}
.yc9{bottom:613.155000px;}
.yb8{bottom:614.055000px;}
.ya4{bottom:614.775000px;}
.y213{bottom:615.315000px;}
.y247{bottom:617.295000px;}
.y225{bottom:619.455000px;}
.ydc{bottom:624.315000px;}
.y2a7{bottom:626.295000px;}
.y6f{bottom:626.475000px;}
.y10{bottom:626.835000px;}
.y33{bottom:633.855000px;}
.y1cd{bottom:639.795000px;}
.y22f{bottom:640.515000px;}
.ye7{bottom:641.055000px;}
.yfc{bottom:642.315000px;}
.y2a6{bottom:642.495000px;}
.y27b{bottom:642.855000px;}
.y56{bottom:643.215000px;}
.yb7{bottom:644.115000px;}
.ya3{bottom:645.015000px;}
.y117{bottom:645.735000px;}
.y212{bottom:646.275000px;}
.y224{bottom:650.415000px;}
.y6e{bottom:650.595000px;}
.y32{bottom:667.005000px;}
.yda{bottom:668.265000px;}
.yf{bottom:670.605000px;}
.y1cc{bottom:670.965000px;}
.y22e{bottom:671.505000px;}
.ye6{bottom:672.225000px;}
.y14e{bottom:672.765000px;}
.y27a{bottom:674.025000px;}
.y55{bottom:674.385000px;}
.y6d{bottom:674.745000px;}
.yb6{bottom:675.285000px;}
.ya2{bottom:676.005000px;}
.y116{bottom:676.905000px;}
.y2aa{bottom:678.525000px;}
.y245{bottom:680.145000px;}
.y223{bottom:681.585000px;}
.y1ee{bottom:683.565000px;}
.y211{bottom:684.105000px;}
.y2a9{bottom:694.725000px;}
.y6c{bottom:698.865000px;}
.y31{bottom:700.305000px;}
.y1cb{bottom:701.925000px;}
.y22d{bottom:702.645000px;}
.y124{bottom:703.005000px;}
.ye5{bottom:703.185000px;}
.y279{bottom:704.985000px;}
.y54{bottom:705.345000px;}
.yb5{bottom:706.245000px;}
.y20f{bottom:706.605000px;}
.ya1{bottom:707.145000px;}
.y115{bottom:708.045000px;}
.y222{bottom:712.545000px;}
.ye{bottom:712.905000px;}
.y16f{bottom:717.045000px;}
.ye4{bottom:719.565000px;}
.y6b{bottom:722.985000px;}
.y1ca{bottom:733.065000px;}
.y30{bottom:733.425000px;}
.y22c{bottom:733.605000px;}
.y278{bottom:736.125000px;}
.y53{bottom:736.485000px;}
.yb4{bottom:737.205000px;}
.ya0{bottom:738.105000px;}
.y1de{bottom:743.505000px;}
.y221{bottom:743.685000px;}
.y2ba{bottom:745.845000px;}
.y6a{bottom:747.285000px;}
.y1bc{bottom:749.805000px;}
.y1fa{bottom:750.525000px;}
.yd{bottom:751.605000px;}
.ye3{bottom:763.485000px;}
.y22b{bottom:764.745000px;}
.y17a{bottom:765.285000px;}
.y144{bottom:765.825000px;}
.y2b9{bottom:766.545000px;}
.y2f{bottom:766.725000px;}
.y277{bottom:767.085000px;}
.y52{bottom:767.445000px;}
.yb3{bottom:768.345000px;}
.y9f{bottom:769.245000px;}
.y69{bottom:771.405000px;}
.y220{bottom:774.645000px;}
.y16e{bottom:783.465000px;}
.y2b8{bottom:787.245000px;}
.yc{bottom:790.485000px;}
.y68{bottom:795.525000px;}
.y22a{bottom:795.705000px;}
.y276{bottom:798.225000px;}
.y51{bottom:798.585000px;}
.y9e{bottom:799.305000px;}
.y2d{bottom:799.845000px;}
.y114{bottom:800.205000px;}
.y243{bottom:805.065000px;}
.y21f{bottom:805.785000px;}
.y2b7{bottom:807.945000px;}
.y2af{bottom:813.885000px;}
.y2b6{bottom:828.645000px;}
.y275{bottom:829.185000px;}
.yb{bottom:829.365000px;}
.y50{bottom:829.545000px;}
.y9d{bottom:830.445000px;}
.y113{bottom:831.345000px;}
.y2b{bottom:833.145000px;}
.y229{bottom:833.505000px;}
.y21e{bottom:843.405000px;}
.y257{bottom:844.485000px;}
.y2b5{bottom:849.345000px;}
.y228{bottom:856.005000px;}
.y274{bottom:860.325000px;}
.y4f{bottom:860.685000px;}
.yc8{bottom:861.045000px;}
.y9c{bottom:861.405000px;}
.y1e9{bottom:862.305000px;}
.y2c1{bottom:865.545000px;}
.y2a{bottom:866.445000px;}
.y240{bottom:867.885000px;}
.ya{bottom:868.065000px;}
.yd8{bottom:875.445000px;}
.y21d{bottom:876.345000px;}
.yfb{bottom:883.365000px;}
.y273{bottom:891.285000px;}
.y4e{bottom:891.645000px;}
.y9b{bottom:892.545000px;}
.y27{bottom:899.565000px;}
.yf8{bottom:899.745000px;}
.y9{bottom:906.990000px;}
.yd6{bottom:919.410000px;}
.y272{bottom:922.470000px;}
.y4d{bottom:922.830000px;}
.y9a{bottom:923.550000px;}
.y1f8{bottom:927.510000px;}
.y23f{bottom:930.930000px;}
.y20e{bottom:932.550000px;}
.y23{bottom:932.910000px;}
.y8{bottom:945.690000px;}
.y256{bottom:953.430000px;}
.y4c{bottom:953.790000px;}
.y122{bottom:953.970000px;}
.y99{bottom:954.690000px;}
.yf7{bottom:960.450000px;}
.y23d{bottom:962.610000px;}
.y20d{bottom:967.470000px;}
.y198{bottom:984.030000px;}
.y7{bottom:984.570000px;}
.y4b{bottom:984.930000px;}
.y98{bottom:985.650000px;}
.y20c{bottom:989.970000px;}
.y23b{bottom:994.470000px;}
.y20{bottom:995.010000px;}
.y4a{bottom:1015.890000px;}
.y97{bottom:1016.790000px;}
.y121{bottom:1017.690000px;}
.y6{bottom:1023.270000px;}
.y23a{bottom:1046.670000px;}
.y49{bottom:1047.030000px;}
.y120{bottom:1047.390000px;}
.y112{bottom:1047.750000px;}
.y197{bottom:1047.930000px;}
.y1f{bottom:1051.530000px;}
.y5{bottom:1062.150000px;}
.y196{bottom:1063.410000px;}
.y85{bottom:1077.630000px;}
.y48{bottom:1077.990000px;}
.y111{bottom:1078.890000px;}
.y1e{bottom:1094.370000px;}
.y4{bottom:1101.030000px;}
.y143{bottom:1107.510000px;}
.y84{bottom:1108.770000px;}
.y47{bottom:1109.130000px;}
.y2ae{bottom:1109.310000px;}
.y110{bottom:1110.030000px;}
.y1d{bottom:1137.030000px;}
.y3{bottom:1139.730000px;}
.y67{bottom:1140.090000px;}
.h4e{height:30.960000px;}
.h4d{height:31.140000px;}
.h54{height:31.176000px;}
.h7{height:33.120000px;}
.hd{height:33.156000px;}
.hb{height:33.300000px;}
.ha{height:33.336000px;}
.h4c{height:37.080000px;}
.h11{height:38.158594px;}
.h2a{height:42.894141px;}
.h15{height:43.268906px;}
.h18{height:43.304062px;}
.h1e{height:43.920000px;}
.h1b{height:43.956000px;}
.h2{height:47.545312px;}
.h27{height:48.960000px;}
.h2b{height:48.996000px;}
.h2f{height:49.140000px;}
.h36{height:49.176000px;}
.h32{height:51.840000px;}
.h19{height:58.621992px;}
.h12{height:58.651172px;}
.h21{height:60.696000px;}
.h4{height:61.164492px;}
.h23{height:61.423863px;}
.h9{height:62.100000px;}
.h4f{height:62.136000px;}
.h22{height:62.184375px;}
.h53{height:62.820000px;}
.h16{height:64.546875px;}
.h10{height:70.628906px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hc{height:74.004654px;}
.he{height:74.953125px;}
.h14{height:80.441367px;}
.hf{height:80.464922px;}
.h17{height:80.584922px;}
.h6{height:82.635820px;}
.h5{height:84.898125px;}
.h13{height:87.695156px;}
.h2d{height:93.060000px;}
.h38{height:93.096000px;}
.h51{height:93.240000px;}
.h50{height:124.200000px;}
.h44{height:152.310000px;}
.h47{height:161.130000px;}
.h42{height:165.630000px;}
.h48{height:166.530000px;}
.h3e{height:170.130000px;}
.h46{height:176.970000px;}
.h41{height:178.740000px;}
.h43{height:180.930000px;}
.h29{height:186.330000px;}
.h45{height:189.000000px;}
.h3c{height:195.690000px;}
.h20{height:196.050000px;}
.h3d{height:198.390000px;}
.h49{height:204.690000px;}
.h1a{height:206.100000px;}
.h1c{height:207.180000px;}
.h4b{height:211.890000px;}
.h30{height:216.030000px;}
.h26{height:223.230000px;}
.h25{height:224.280000px;}
.h24{height:226.290000px;}
.h28{height:250.950000px;}
.h1d{height:259.950000px;}
.h2e{height:263.235000px;}
.h35{height:276.510000px;}
.h52{height:279.570000px;}
.h3a{height:285.330000px;}
.h55{height:290.730000px;}
.h58{height:290.955000px;}
.h3f{height:294.195000px;}
.h37{height:300.090000px;}
.h4a{height:300.495000px;}
.h57{height:301.530000px;}
.h31{height:307.650000px;}
.h56{height:319.170000px;}
.h2c{height:341.670000px;}
.h34{height:342.210000px;}
.h40{height:344.370000px;}
.h33{height:384.555000px;}
.h1f{height:393.015000px;}
.h3b{height:406.695000px;}
.h39{height:492.195000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2f{width:56.376000px;}
.w31{width:58.500000px;}
.w30{width:59.400000px;}
.w2c{width:62.496000px;}
.w3{width:66.060000px;}
.w2e{width:66.600000px;}
.w2d{width:77.400000px;}
.w29{width:79.560000px;}
.w2b{width:95.400000px;}
.w2a{width:100.476000px;}
.w35{width:137.520000px;}
.w28{width:142.956000px;}
.w36{width:158.790000px;}
.w37{width:161.310000px;}
.w34{width:188.130000px;}
.w1d{width:199.830000px;}
.w14{width:201.990000px;}
.w21{width:207.570000px;}
.w20{width:212.070000px;}
.w1a{width:213.150000px;}
.w16{width:216.390000px;}
.w17{width:216.570000px;}
.w18{width:217.650000px;}
.w1c{width:218.730000px;}
.w1b{width:219.630000px;}
.w15{width:220.710000px;}
.w19{width:221.250000px;}
.w13{width:231.330000px;}
.w1f{width:234.390000px;}
.w1e{width:235.470000px;}
.w26{width:276.870000px;}
.we{width:295.230000px;}
.w24{width:302.070000px;}
.w22{width:310.170000px;}
.w7{width:316.830000px;}
.w12{width:317.775000px;}
.w33{width:320.835000px;}
.wa{width:322.815000px;}
.wc{width:324.075000px;}
.wb{width:324.210000px;}
.w39{width:324.435000px;}
.w38{width:324.570000px;}
.w5{width:325.875000px;}
.w4{width:328.170000px;}
.w32{width:329.250000px;}
.w9{width:331.230000px;}
.w11{width:333.390000px;}
.w8{width:337.215000px;}
.w23{width:343.875000px;}
.w25{width:351.975000px;}
.wf{width:353.055000px;}
.w27{width:384.555000px;}
.w2{width:582.225000px;}
.wd{width:648.285000px;}
.w10{width:651.165000px;}
.w6{width:654.045000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x39{left:12.420000px;}
.x25{left:14.040000px;}
.x76{left:18.000000px;}
.x46{left:19.080000px;}
.x2e{left:23.400000px;}
.x77{left:29.340000px;}
.x36{left:31.320000px;}
.x75{left:32.760000px;}
.x42{left:34.014000px;}
.xf{left:39.960000px;}
.x43{left:42.480000px;}
.x40{left:43.554000px;}
.x26{left:46.290000px;}
.xe{left:48.960000px;}
.x32{left:50.574000px;}
.x31{left:53.100000px;}
.x7b{left:56.190000px;}
.x7d{left:58.140000px;}
.x79{left:59.760000px;}
.x10{left:61.194000px;}
.x78{left:64.260000px;}
.x7a{left:68.070000px;}
.x7c{left:69.300000px;}
.x7f{left:90.585000px;}
.x11{left:93.234000px;}
.x7e{left:98.145000px;}
.x80{left:99.585000px;}
.x53{left:108.174000px;}
.x48{left:115.554000px;}
.x2f{left:117.534000px;}
.xb{left:119.556000px;}
.x86{left:124.596000px;}
.x2{left:127.656000px;}
.x20{left:146.874000px;}
.x2c{left:159.654000px;}
.x3f{left:161.994000px;}
.x22{left:175.179000px;}
.x4a{left:176.970000px;}
.x4d{left:178.050000px;}
.x12{left:180.750000px;}
.x4{left:186.330000px;}
.x4e{left:191.025000px;}
.x4f{left:192.099000px;}
.x4c{left:194.079000px;}
.x47{left:195.519000px;}
.x62{left:197.490000px;}
.x59{left:201.990000px;}
.x57{left:203.799000px;}
.x56{left:205.605000px;}
.x55{left:206.670000px;}
.x52{left:208.299000px;}
.x58{left:209.385000px;}
.x3a{left:210.639000px;}
.x5d{left:213.885000px;}
.x5e{left:216.945000px;}
.x5a{left:218.019000px;}
.x37{left:227.199000px;}
.x13{left:234.030000px;}
.x1c{left:240.159000px;}
.x51{left:241.995000px;}
.x61{left:244.305000px;}
.x1a{left:252.399000px;}
.x3d{left:253.479000px;}
.x50{left:254.775000px;}
.x33{left:263.199000px;}
.x3b{left:264.279000px;}
.x44{left:265.719000px;}
.x6e{left:267.510000px;}
.x41{left:275.619000px;}
.x2d{left:281.379000px;}
.x6a{left:283.890000px;}
.x45{left:285.699000px;}
.x8b{left:289.110000px;}
.x19{left:292.395000px;}
.x66{left:293.475000px;}
.x7{left:295.455000px;}
.x8{left:296.715000px;}
.x38{left:298.299000px;}
.x1b{left:301.359000px;}
.x17{left:303.519000px;}
.x29{left:304.599000px;}
.x27{left:306.039000px;}
.x3e{left:308.379000px;}
.x2a{left:311.835000px;}
.x89{left:313.635000px;}
.x85{left:315.075000px;}
.x88{left:316.299000px;}
.xa{left:317.415000px;}
.x1d{left:320.799000px;}
.x34{left:321.879000px;}
.x23{left:323.139000px;}
.x67{left:327.639000px;}
.x54{left:335.955000px;}
.x5{left:337.215000px;}
.x5f{left:338.295000px;}
.x5b{left:340.815000px;}
.x1f{left:341.895000px;}
.x6c{left:343.695000px;}
.x9{left:347.115000px;}
.x49{left:350.895000px;}
.x63{left:353.955000px;}
.x6{left:359.895000px;}
.x69{left:364.395000px;}
.x6f{left:368.715000px;}
.x15{left:393.015000px;}
.x8a{left:394.275000px;}
.x84{left:395.715000px;}
.x30{left:414.795000px;}
.x6b{left:421.635000px;}
.x68{left:429.735000px;}
.x1e{left:436.395000px;}
.x28{left:443.775000px;}
.x3{left:446.475000px;}
.x18{left:447.735000px;}
.x87{left:449.175000px;}
.x24{left:450.795000px;}
.x35{left:452.955000px;}
.x6d{left:465.015000px;}
.x70{left:528.225000px;}
.x60{left:538.125000px;}
.x4b{left:552.885000px;}
.x5c{left:553.965000px;}
.x3c{left:565.134000px;}
.x71{left:606.345000px;}
.x64{left:633.345000px;}
.x21{left:648.114000px;}
.x14{left:666.645000px;}
.x2b{left:669.345000px;}
.x72{left:673.665000px;}
.xd{left:701.790000px;}
.x73{left:730.950000px;}
.x16{left:748.770000px;}
.x1{left:757.230000px;}
.x65{left:767.670000px;}
.x74{left:791.070000px;}
.x83{left:810.330000px;}
.x81{left:812.850000px;}
.x82{left:813.930000px;}
@media print{
.v3{vertical-align:-64.000000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls2a{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:-0.336533pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.276267pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.183467pt;}
.ls2{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.133333pt;}
.ls11{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.195840pt;}
.ls1f{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.456533pt;}
.lsf{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls29{letter-spacing:3.200000pt;}
.ls10{letter-spacing:8.474880pt;}
.ls15{letter-spacing:8.960000pt;}
.ls14{letter-spacing:9.114880pt;}
.ls28{letter-spacing:11.520000pt;}
.ls27{letter-spacing:11.653120pt;}
.ls17{letter-spacing:17.434880pt;}
.ls21{letter-spacing:23.834880pt;}
.ls26{letter-spacing:32.160000pt;}
.ls3{letter-spacing:48.768000pt;}
.ls4{letter-spacing:52.751360pt;}
.ls22{letter-spacing:150.378667pt;}
.ls23{letter-spacing:159.978667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws4{word-spacing:-58.880000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.383467pt;}
.ws6{word-spacing:-16.128000pt;}
.ws17{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.wse{word-spacing:-13.736533pt;}
.ws8{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.374933pt;}
.ws16{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.185067pt;}
.ws11{word-spacing:-13.096533pt;}
.ws12{word-spacing:-13.049067pt;}
.ws15{word-spacing:-13.030613pt;}
.ws10{word-spacing:-12.960000pt;}
.wsf{word-spacing:-11.040000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-11.393707pt;}
._4{margin-left:-1.920000pt;}
._0{margin-left:-0.898560pt;}
._1{width:0.898560pt;}
._7{width:1.917440pt;}
._8{width:2.952107pt;}
._14{width:4.610347pt;}
._11{width:5.632000pt;}
._15{width:6.536107pt;}
._d{width:7.616000pt;}
._12{width:8.768000pt;}
._1c{width:9.730560pt;}
._e{width:10.754560pt;}
._9{width:11.712000pt;}
._2{width:13.376000pt;}
._3{width:14.786560pt;}
._a{width:17.280000pt;}
._b{width:18.176000pt;}
._1e{width:19.093333pt;}
._c{width:20.010667pt;}
._5{width:21.632000pt;}
._6{width:22.722987pt;}
._16{width:23.719680pt;}
._1f{width:24.704000pt;}
._1d{width:25.728000pt;}
._1b{width:27.498667pt;}
._20{width:28.501333pt;}
._f{width:29.696000pt;}
._10{width:30.720000pt;}
._2b{width:31.938560pt;}
._29{width:33.664000pt;}
._34{width:34.816000pt;}
._35{width:35.968000pt;}
._22{width:37.120000pt;}
._23{width:38.144000pt;}
._25{width:39.101440pt;}
._24{width:40.960000pt;}
._19{width:42.240000pt;}
._1a{width:43.296000pt;}
._2f{width:46.784000pt;}
._26{width:48.320000pt;}
._30{width:51.968000pt;}
._27{width:53.378560pt;}
._2e{width:54.912000pt;}
._2a{width:56.832000pt;}
._37{width:60.736000pt;}
._2c{width:63.744000pt;}
._33{width:70.016000pt;}
._2d{width:71.296000pt;}
._28{width:72.192000pt;}
._21{width:73.358720pt;}
._36{width:74.331947pt;}
._31{width:82.602667pt;}
._32{width:83.733333pt;}
._18{width:172.320000pt;}
._17{width:173.440000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2c2{bottom:0.800000pt;}
.y182{bottom:3.360000pt;}
.y1b3{bottom:4.000000pt;}
.y1f0{bottom:7.680000pt;}
.ydb{bottom:9.120000pt;}
.yd7{bottom:9.280000pt;}
.yfe{bottom:9.440000pt;}
.yfd{bottom:9.760000pt;}
.y100{bottom:10.080000pt;}
.y1ea{bottom:10.880000pt;}
.y15a{bottom:10.920000pt;}
.y15e{bottom:11.040000pt;}
.yfa{bottom:11.080000pt;}
.y1e6{bottom:11.200000pt;}
.y127{bottom:11.360000pt;}
.y1f6{bottom:12.320000pt;}
.y1e2{bottom:12.640000pt;}
.y23e{bottom:12.800000pt;}
.y25{bottom:12.960000pt;}
.y134{bottom:13.120000pt;}
.y264{bottom:13.160000pt;}
.y34{bottom:13.760000pt;}
.y2e{bottom:13.920000pt;}
.y21{bottom:14.880000pt;}
.y22{bottom:15.040000pt;}
.y28{bottom:15.080000pt;}
.y2c{bottom:15.200000pt;}
.y29{bottom:15.240000pt;}
.y210{bottom:17.920000pt;}
.y23c{bottom:18.080000pt;}
.y1bb{bottom:18.240000pt;}
.y2b0{bottom:18.400000pt;}
.y181{bottom:18.720000pt;}
.y1bd{bottom:18.880000pt;}
.yd9{bottom:19.040000pt;}
.y19e{bottom:19.360000pt;}
.y123{bottom:20.640000pt;}
.y1af{bottom:20.680000pt;}
.y15c{bottom:20.800000pt;}
.y18a{bottom:20.840000pt;}
.y2b2{bottom:22.720000pt;}
.y2b3{bottom:22.880000pt;}
.y170{bottom:23.200000pt;}
.y126{bottom:26.720000pt;}
.y158{bottom:26.920000pt;}
.y1eb{bottom:29.760000pt;}
.y180{bottom:30.720000pt;}
.y1ef{bottom:30.880000pt;}
.y195{bottom:31.360000pt;}
.y1fb{bottom:31.520000pt;}
.y1fc{bottom:33.120000pt;}
.y19d{bottom:33.920000pt;}
.yf9{bottom:33.960000pt;}
.y1f9{bottom:34.080000pt;}
.y1e4{bottom:35.360000pt;}
.y1e3{bottom:36.640000pt;}
.y1df{bottom:36.800000pt;}
.y1ac{bottom:36.960000pt;}
.y1b2{bottom:37.280000pt;}
.y16d{bottom:38.080000pt;}
.y1f3{bottom:38.560000pt;}
.y1f4{bottom:38.880000pt;}
.y18c{bottom:39.040000pt;}
.y1e0{bottom:39.360000pt;}
.y15d{bottom:40.026667pt;}
.y159{bottom:40.040000pt;}
.y164{bottom:40.160000pt;}
.y24{bottom:40.640000pt;}
.y248{bottom:40.666667pt;}
.y241{bottom:40.680000pt;}
.y26{bottom:40.800000pt;}
.y25f{bottom:41.280000pt;}
.y244{bottom:41.440000pt;}
.y249{bottom:41.466667pt;}
.y242{bottom:41.480000pt;}
.y24d{bottom:41.600000pt;}
.y2{bottom:41.760000pt;}
.y12e{bottom:42.880000pt;}
.y1c9{bottom:43.040000pt;}
.y146{bottom:43.680000pt;}
.y1ba{bottom:45.786667pt;}
.y125{bottom:46.880000pt;}
.y157{bottom:53.800000pt;}
.y17c{bottom:55.200000pt;}
.y194{bottom:59.066667pt;}
.y1{bottom:59.680000pt;}
.y1ab{bottom:64.960000pt;}
.y16c{bottom:65.600000pt;}
.y1b1{bottom:66.586667pt;}
.y163{bottom:67.066667pt;}
.y14f{bottom:68.160000pt;}
.y133{bottom:68.320000pt;}
.y250{bottom:68.960000pt;}
.y24c{bottom:69.120000pt;}
.y12d{bottom:70.400000pt;}
.y1c8{bottom:70.560000pt;}
.y145{bottom:72.800000pt;}
.y1b9{bottom:73.466667pt;}
.y1ed{bottom:74.240000pt;}
.y17b{bottom:76.160000pt;}
.y156{bottom:81.320000pt;}
.y193{bottom:86.586667pt;}
.y1aa{bottom:92.480000pt;}
.y188{bottom:93.280000pt;}
.y16b{bottom:93.320000pt;}
.y162{bottom:94.746667pt;}
.y132{bottom:95.840000pt;}
.y25d{bottom:95.866667pt;}
.y246{bottom:96.640000pt;}
.y18b{bottom:97.280000pt;}
.y66{bottom:97.760000pt;}
.y12c{bottom:98.080000pt;}
.y1c7{bottom:98.240000pt;}
.y2ad{bottom:99.200000pt;}
.y1dd{bottom:99.520000pt;}
.y1b8{bottom:100.986667pt;}
.y173{bottom:101.800000pt;}
.y29b{bottom:102.080000pt;}
.y28b{bottom:102.240000pt;}
.y271{bottom:102.560000pt;}
.yd5{bottom:103.360000pt;}
.y8c{bottom:103.840000pt;}
.y1c{bottom:104.960000pt;}
.y1f7{bottom:105.120000pt;}
.y46{bottom:108.160000pt;}
.y155{bottom:109.000000pt;}
.y10f{bottom:110.720000pt;}
.y1b0{bottom:112.320000pt;}
.y103{bottom:112.640000pt;}
.y8b{bottom:113.120000pt;}
.y192{bottom:114.266667pt;}
.y2ac{bottom:117.600000pt;}
.y65{bottom:119.200000pt;}
.y239{bottom:119.520000pt;}
.y142{bottom:120.160000pt;}
.y187{bottom:120.800000pt;}
.y16a{bottom:120.840000pt;}
.y161{bottom:122.266667pt;}
.y131{bottom:123.520000pt;}
.y25c{bottom:123.546667pt;}
.y14d{bottom:123.560000pt;}
.y26d{bottom:124.640000pt;}
.y1f5{bottom:125.120000pt;}
.y12b{bottom:125.600000pt;}
.y1c6{bottom:125.760000pt;}
.y1dc{bottom:127.040000pt;}
.y91{bottom:128.320000pt;}
.y1b7{bottom:128.666667pt;}
.y83{bottom:129.280000pt;}
.y29a{bottom:129.760000pt;}
.y28a{bottom:129.920000pt;}
.y141{bottom:130.080000pt;}
.y270{bottom:130.240000pt;}
.yd4{bottom:130.880000pt;}
.y172{bottom:130.920000pt;}
.y64{bottom:134.400000pt;}
.y45{bottom:135.840000pt;}
.y154{bottom:136.520000pt;}
.y102{bottom:138.080000pt;}
.y10e{bottom:138.240000pt;}
.y20b{bottom:139.040000pt;}
.y191{bottom:141.786667pt;}
.y1b{bottom:143.040000pt;}
.y8a{bottom:143.680000pt;}
.y63{bottom:144.480000pt;}
.y255{bottom:145.920000pt;}
.y179{bottom:147.360000pt;}
.y1a9{bottom:147.680000pt;}
.y186{bottom:148.480000pt;}
.y169{bottom:148.520000pt;}
.y82{bottom:148.960000pt;}
.y140{bottom:149.280000pt;}
.y90{bottom:149.760000pt;}
.y160{bottom:149.946667pt;}
.yc7{bottom:150.080000pt;}
.y2a8{bottom:151.040000pt;}
.y130{bottom:151.066667pt;}
.y14c{bottom:151.080000pt;}
.y26c{bottom:152.160000pt;}
.y12a{bottom:153.280000pt;}
.y1c5{bottom:153.800000pt;}
.y1db{bottom:154.720000pt;}
.yf6{bottom:155.840000pt;}
.y1b6{bottom:156.186667pt;}
.y299{bottom:157.306667pt;}
.y289{bottom:157.466667pt;}
.y26f{bottom:157.786667pt;}
.yd3{bottom:158.586667pt;}
.y89{bottom:159.066667pt;}
.y8f{bottom:159.866667pt;}
.yc6{bottom:160.826667pt;}
.y101{bottom:161.146667pt;}
.y44{bottom:163.386667pt;}
.y153{bottom:164.200000pt;}
.y10d{bottom:165.946667pt;}
.y20a{bottom:166.746667pt;}
.y2a5{bottom:167.066667pt;}
.y190{bottom:169.466667pt;}
.y81{bottom:170.426667pt;}
.y2b4{bottom:171.706667pt;}
.y254{bottom:172.826667pt;}
.yff{bottom:173.146667pt;}
.y178{bottom:174.266667pt;}
.y2c0{bottom:175.226667pt;}
.y1a8{bottom:175.386667pt;}
.y185{bottom:176.026667pt;}
.y168{bottom:176.040000pt;}
.y13f{bottom:176.186667pt;}
.y15f{bottom:177.466667pt;}
.y8e{bottom:177.786667pt;}
.y25b{bottom:178.746667pt;}
.y14b{bottom:178.760000pt;}
.y26b{bottom:179.866667pt;}
.y2ab{bottom:180.346667pt;}
.y88{bottom:180.506667pt;}
.y129{bottom:180.840000pt;}
.y1c4{bottom:181.320000pt;}
.y1a{bottom:181.946667pt;}
.y1da{bottom:182.266667pt;}
.yf5{bottom:183.546667pt;}
.y1b5{bottom:183.866667pt;}
.y298{bottom:184.986667pt;}
.y288{bottom:185.146667pt;}
.y26e{bottom:185.466667pt;}
.yd2{bottom:186.106667pt;}
.y96{bottom:186.906667pt;}
.ye2{bottom:187.386667pt;}
.yc5{bottom:187.706667pt;}
.yb2{bottom:189.786667pt;}
.y87{bottom:190.586667pt;}
.y43{bottom:190.906667pt;}
.y152{bottom:191.720000pt;}
.y80{bottom:191.866667pt;}
.y10c{bottom:193.466667pt;}
.y2bf{bottom:193.626667pt;}
.y209{bottom:194.266667pt;}
.y18f{bottom:196.986667pt;}
.y8d{bottom:198.906667pt;}
.y253{bottom:199.706667pt;}
.y177{bottom:201.146667pt;}
.y1a7{bottom:202.906667pt;}
.y13e{bottom:203.066667pt;}
.y184{bottom:203.706667pt;}
.y167{bottom:203.720000pt;}
.y2a4{bottom:204.186667pt;}
.yb1{bottom:205.146667pt;}
.y19c{bottom:205.466667pt;}
.y25a{bottom:206.266667pt;}
.y14a{bottom:206.280000pt;}
.y26a{bottom:207.386667pt;}
.y128{bottom:208.520000pt;}
.y1c3{bottom:209.000000pt;}
.y42{bottom:209.146667pt;}
.y1d9{bottom:209.946667pt;}
.yf4{bottom:211.066667pt;}
.y1b4{bottom:211.386667pt;}
.y2be{bottom:212.026667pt;}
.y297{bottom:212.506667pt;}
.y287{bottom:212.666667pt;}
.y86{bottom:212.986667pt;}
.y7f{bottom:213.306667pt;}
.y95{bottom:213.786667pt;}
.yc4{bottom:214.426667pt;}
.ye1{bottom:215.066667pt;}
.y11f{bottom:215.226667pt;}
.y151{bottom:219.400000pt;}
.y19{bottom:220.346667pt;}
.y10b{bottom:221.146667pt;}
.y208{bottom:221.946667pt;}
.y18e{bottom:224.666667pt;}
.yb0{bottom:226.426667pt;}
.y252{bottom:227.386667pt;}
.y41{bottom:227.546667pt;}
.y176{bottom:228.026667pt;}
.y1a6{bottom:229.786667pt;}
.y2bd{bottom:230.426667pt;}
.y13d{bottom:230.746667pt;}
.y183{bottom:231.226667pt;}
.y166{bottom:231.240000pt;}
.y17f{bottom:231.386667pt;}
.y259{bottom:233.946667pt;}
.y149{bottom:233.960000pt;}
.y7e{bottom:234.746667pt;}
.y269{bottom:235.066667pt;}
.yaf{bottom:236.506667pt;}
.y1c2{bottom:236.520000pt;}
.y1d8{bottom:237.466667pt;}
.yf3{bottom:238.746667pt;}
.y19b{bottom:239.066667pt;}
.y296{bottom:240.186667pt;}
.y286{bottom:240.346667pt;}
.y62{bottom:240.666667pt;}
.y227{bottom:240.826667pt;}
.y94{bottom:241.306667pt;}
.y251{bottom:241.786667pt;}
.yc3{bottom:242.106667pt;}
.ye0{bottom:242.586667pt;}
.y11e{bottom:242.746667pt;}
.y40{bottom:245.946667pt;}
.y10a{bottom:248.666667pt;}
.y2bc{bottom:248.826667pt;}
.y207{bottom:249.466667pt;}
.y18d{bottom:252.186667pt;}
.y19a{bottom:253.466667pt;}
.y175{bottom:254.906667pt;}
.y7d{bottom:256.346667pt;}
.ydf{bottom:257.146667pt;}
.y1a5{bottom:257.306667pt;}
.y13c{bottom:257.466667pt;}
.y18{bottom:258.586667pt;}
.y165{bottom:258.920000pt;}
.y1f2{bottom:260.506667pt;}
.y148{bottom:261.480000pt;}
.y268{bottom:262.586667pt;}
.y2bb{bottom:263.226667pt;}
.y1c1{bottom:264.200000pt;}
.y3f{bottom:264.346667pt;}
.y1d7{bottom:265.146667pt;}
.yf2{bottom:266.266667pt;}
.y295{bottom:267.706667pt;}
.y285{bottom:267.866667pt;}
.y61{bottom:268.186667pt;}
.y93{bottom:268.986667pt;}
.yc2{bottom:269.626667pt;}
.y226{bottom:269.946667pt;}
.y11d{bottom:270.426667pt;}
.y21c{bottom:270.906667pt;}
.yae{bottom:271.226667pt;}
.y109{bottom:276.346667pt;}
.y206{bottom:277.146667pt;}
.y7c{bottom:277.786667pt;}
.y2a3{bottom:278.266667pt;}
.y174{bottom:281.786667pt;}
.y1e8{bottom:282.266667pt;}
.y3e{bottom:282.746667pt;}
.y13b{bottom:284.346667pt;}
.y1a4{bottom:284.986667pt;}
.y147{bottom:289.160000pt;}
.y17d{bottom:289.320000pt;}
.y267{bottom:290.266667pt;}
.y1c0{bottom:291.720000pt;}
.y1d6{bottom:292.666667pt;}
.yf1{bottom:293.946667pt;}
.y294{bottom:295.386667pt;}
.y171{bottom:295.546667pt;}
.y60{bottom:295.866667pt;}
.yde{bottom:296.186667pt;}
.y17{bottom:296.506667pt;}
.y92{bottom:296.666667pt;}
.yc1{bottom:297.306667pt;}
.y3d{bottom:297.466667pt;}
.y24f{bottom:297.626667pt;}
.y11c{bottom:297.946667pt;}
.y21b{bottom:298.426667pt;}
.yad{bottom:298.746667pt;}
.y7b{bottom:299.226667pt;}
.y108{bottom:303.866667pt;}
.y205{bottom:304.666667pt;}
.y13a{bottom:311.226667pt;}
.y1a3{bottom:312.506667pt;}
.y1e7{bottom:313.306667pt;}
.y2a2{bottom:315.386667pt;}
.y266{bottom:317.786667pt;}
.y1bf{bottom:319.400000pt;}
.y15b{bottom:320.346667pt;}
.y7a{bottom:320.666667pt;}
.y238{bottom:320.986667pt;}
.yf0{bottom:321.466667pt;}
.y293{bottom:322.906667pt;}
.y284{bottom:323.066667pt;}
.y5f{bottom:323.386667pt;}
.yd1{bottom:324.186667pt;}
.yc0{bottom:324.826667pt;}
.y11b{bottom:325.626667pt;}
.y21a{bottom:326.106667pt;}
.yac{bottom:326.426667pt;}
.y3c{bottom:327.066667pt;}
.y107{bottom:331.546667pt;}
.y204{bottom:332.346667pt;}
.y1e5{bottom:333.306667pt;}
.y16{bottom:334.586667pt;}
.y139{bottom:338.106667pt;}
.y1a2{bottom:340.186667pt;}
.y79{bottom:342.106667pt;}
.y265{bottom:345.786667pt;}
.y1be{bottom:346.920000pt;}
.y1d5{bottom:347.866667pt;}
.y237{bottom:348.506667pt;}
.yef{bottom:348.986667pt;}
.y292{bottom:350.586667pt;}
.y283{bottom:350.746667pt;}
.y5e{bottom:351.066667pt;}
.yd0{bottom:351.706667pt;}
.y2a1{bottom:352.346667pt;}
.ybf{bottom:352.506667pt;}
.y11a{bottom:353.146667pt;}
.y219{bottom:353.626667pt;}
.yab{bottom:353.946667pt;}
.y3b{bottom:356.666667pt;}
.y106{bottom:359.066667pt;}
.y203{bottom:359.866667pt;}
.y263{bottom:360.186667pt;}
.y78{bottom:363.546667pt;}
.y150{bottom:364.026667pt;}
.y138{bottom:364.986667pt;}
.y1ae{bottom:365.946667pt;}
.y1a1{bottom:367.746667pt;}
.y15{bottom:371.586667pt;}
.y1d4{bottom:375.586667pt;}
.y236{bottom:376.066667pt;}
.yee{bottom:376.706667pt;}
.y291{bottom:378.146667pt;}
.y282{bottom:378.306667pt;}
.y5d{bottom:378.626667pt;}
.ycf{bottom:379.426667pt;}
.ybe{bottom:380.066667pt;}
.y119{bottom:380.866667pt;}
.y24e{bottom:381.186667pt;}
.y218{bottom:381.346667pt;}
.yaa{bottom:381.666667pt;}
.y77{bottom:385.026667pt;}
.y3a{bottom:386.146667pt;}
.y105{bottom:386.786667pt;}
.y202{bottom:387.586667pt;}
.y262{bottom:388.546667pt;}
.y2a0{bottom:388.866667pt;}
.y137{bottom:391.906667pt;}
.y1a0{bottom:395.426667pt;}
.y1d3{bottom:403.106667pt;}
.y235{bottom:403.746667pt;}
.yed{bottom:404.226667pt;}
.y29f{bottom:404.546667pt;}
.y281{bottom:405.826667pt;}
.y14{bottom:405.986667pt;}
.y5c{bottom:406.146667pt;}
.y76{bottom:406.626667pt;}
.yce{bottom:406.946667pt;}
.ybd{bottom:407.746667pt;}
.y118{bottom:408.386667pt;}
.y217{bottom:408.866667pt;}
.ya9{bottom:409.186667pt;}
.y24b{bottom:409.346667pt;}
.y104{bottom:412.226667pt;}
.y201{bottom:415.106667pt;}
.y39{bottom:415.746667pt;}
.y261{bottom:416.706667pt;}
.y136{bottom:418.786667pt;}
.y29e{bottom:420.546667pt;}
.y189{bottom:420.706667pt;}
.y1ad{bottom:422.306667pt;}
.y19f{bottom:422.946667pt;}
.y75{bottom:428.066667pt;}
.y1d2{bottom:430.786667pt;}
.y234{bottom:431.266667pt;}
.yec{bottom:431.906667pt;}
.y290{bottom:433.346667pt;}
.y280{bottom:433.506667pt;}
.y5b{bottom:433.826667pt;}
.y17e{bottom:434.466667pt;}
.ycd{bottom:434.626667pt;}
.ybc{bottom:435.266667pt;}
.y29d{bottom:435.906667pt;}
.ya8{bottom:436.066667pt;}
.y216{bottom:436.546667pt;}
.y199{bottom:437.186667pt;}
.y2b1{bottom:439.746667pt;}
.y1f1{bottom:440.386667pt;}
.y13{bottom:441.506667pt;}
.y200{bottom:442.786667pt;}
.y25e{bottom:445.026667pt;}
.y38{bottom:445.186667pt;}
.y135{bottom:445.506667pt;}
.y74{bottom:449.506667pt;}
.y1d1{bottom:458.306667pt;}
.y233{bottom:458.946667pt;}
.y12f{bottom:459.266667pt;}
.yeb{bottom:459.426667pt;}
.y1ec{bottom:460.386667pt;}
.y28f{bottom:460.866667pt;}
.y27f{bottom:461.026667pt;}
.y5a{bottom:461.346667pt;}
.ycc{bottom:462.146667pt;}
.ybb{bottom:462.946667pt;}
.ya7{bottom:463.586667pt;}
.y215{bottom:464.066667pt;}
.y1ff{bottom:470.306667pt;}
.y29c{bottom:470.466667pt;}
.y73{bottom:470.946667pt;}
.y260{bottom:473.346667pt;}
.y37{bottom:474.786667pt;}
.y12{bottom:480.546667pt;}
.y1e1{bottom:484.546667pt;}
.y1d0{bottom:485.986667pt;}
.y232{bottom:486.466667pt;}
.yea{bottom:487.106667pt;}
.y28e{bottom:488.546667pt;}
.y27e{bottom:488.706667pt;}
.y59{bottom:489.026667pt;}
.ycb{bottom:489.826667pt;}
.yba{bottom:490.466667pt;}
.ya6{bottom:491.266667pt;}
.y214{bottom:491.746667pt;}
.y72{bottom:492.386667pt;}
.y24a{bottom:492.866667pt;}
.y258{bottom:501.506667pt;}
.y1fe{bottom:503.906667pt;}
.y36{bottom:504.226667pt;}
.y1cf{bottom:513.506667pt;}
.y71{bottom:513.826667pt;}
.y231{bottom:514.146667pt;}
.ye9{bottom:514.626667pt;}
.y28d{bottom:516.066667pt;}
.y27d{bottom:516.226667pt;}
.y58{bottom:516.546667pt;}
.yca{bottom:517.346667pt;}
.yb9{bottom:518.146667pt;}
.ya5{bottom:518.786667pt;}
.y11{bottom:519.266667pt;}
.y1fd{bottom:523.906667pt;}
.y35{bottom:533.826667pt;}
.y70{bottom:535.426667pt;}
.ydd{bottom:540.386667pt;}
.y1ce{bottom:541.186667pt;}
.y230{bottom:541.666667pt;}
.ye8{bottom:542.306667pt;}
.y28c{bottom:543.746667pt;}
.y27c{bottom:543.906667pt;}
.y57{bottom:544.226667pt;}
.yc9{bottom:545.026667pt;}
.yb8{bottom:545.826667pt;}
.ya4{bottom:546.466667pt;}
.y213{bottom:546.946667pt;}
.y247{bottom:548.706667pt;}
.y225{bottom:550.626667pt;}
.ydc{bottom:554.946667pt;}
.y2a7{bottom:556.706667pt;}
.y6f{bottom:556.866667pt;}
.y10{bottom:557.186667pt;}
.y33{bottom:563.426667pt;}
.y1cd{bottom:568.706667pt;}
.y22f{bottom:569.346667pt;}
.ye7{bottom:569.826667pt;}
.yfc{bottom:570.946667pt;}
.y2a6{bottom:571.106667pt;}
.y27b{bottom:571.426667pt;}
.y56{bottom:571.746667pt;}
.yb7{bottom:572.546667pt;}
.ya3{bottom:573.346667pt;}
.y117{bottom:573.986667pt;}
.y212{bottom:574.466667pt;}
.y224{bottom:578.146667pt;}
.y6e{bottom:578.306667pt;}
.y32{bottom:592.893333pt;}
.yda{bottom:594.013333pt;}
.yf{bottom:596.093333pt;}
.y1cc{bottom:596.413333pt;}
.y22e{bottom:596.893333pt;}
.ye6{bottom:597.533333pt;}
.y14e{bottom:598.013333pt;}
.y27a{bottom:599.133333pt;}
.y55{bottom:599.453333pt;}
.y6d{bottom:599.773333pt;}
.yb6{bottom:600.253333pt;}
.ya2{bottom:600.893333pt;}
.y116{bottom:601.693333pt;}
.y2aa{bottom:603.133333pt;}
.y245{bottom:604.573333pt;}
.y223{bottom:605.853333pt;}
.y1ee{bottom:607.613333pt;}
.y211{bottom:608.093333pt;}
.y2a9{bottom:617.533333pt;}
.y6c{bottom:621.213333pt;}
.y31{bottom:622.493333pt;}
.y1cb{bottom:623.933333pt;}
.y22d{bottom:624.573333pt;}
.y124{bottom:624.893333pt;}
.ye5{bottom:625.053333pt;}
.y279{bottom:626.653333pt;}
.y54{bottom:626.973333pt;}
.yb5{bottom:627.773333pt;}
.y20f{bottom:628.093333pt;}
.ya1{bottom:628.573333pt;}
.y115{bottom:629.373333pt;}
.y222{bottom:633.373333pt;}
.ye{bottom:633.693333pt;}
.y16f{bottom:637.373333pt;}
.ye4{bottom:639.613333pt;}
.y6b{bottom:642.653333pt;}
.y1ca{bottom:651.613333pt;}
.y30{bottom:651.933333pt;}
.y22c{bottom:652.093333pt;}
.y278{bottom:654.333333pt;}
.y53{bottom:654.653333pt;}
.yb4{bottom:655.293333pt;}
.ya0{bottom:656.093333pt;}
.y1de{bottom:660.893333pt;}
.y221{bottom:661.053333pt;}
.y2ba{bottom:662.973333pt;}
.y6a{bottom:664.253333pt;}
.y1bc{bottom:666.493333pt;}
.y1fa{bottom:667.133333pt;}
.yd{bottom:668.093333pt;}
.ye3{bottom:678.653333pt;}
.y22b{bottom:679.773333pt;}
.y17a{bottom:680.253333pt;}
.y144{bottom:680.733333pt;}
.y2b9{bottom:681.373333pt;}
.y2f{bottom:681.533333pt;}
.y277{bottom:681.853333pt;}
.y52{bottom:682.173333pt;}
.yb3{bottom:682.973333pt;}
.y9f{bottom:683.773333pt;}
.y69{bottom:685.693333pt;}
.y220{bottom:688.573333pt;}
.y16e{bottom:696.413333pt;}
.y2b8{bottom:699.773333pt;}
.yc{bottom:702.653333pt;}
.y68{bottom:707.133333pt;}
.y22a{bottom:707.293333pt;}
.y276{bottom:709.533333pt;}
.y51{bottom:709.853333pt;}
.y9e{bottom:710.493333pt;}
.y2d{bottom:710.973333pt;}
.y114{bottom:711.293333pt;}
.y243{bottom:715.613333pt;}
.y21f{bottom:716.253333pt;}
.y2b7{bottom:718.173333pt;}
.y2af{bottom:723.453333pt;}
.y2b6{bottom:736.573333pt;}
.y275{bottom:737.053333pt;}
.yb{bottom:737.213333pt;}
.y50{bottom:737.373333pt;}
.y9d{bottom:738.173333pt;}
.y113{bottom:738.973333pt;}
.y2b{bottom:740.573333pt;}
.y229{bottom:740.893333pt;}
.y21e{bottom:749.693333pt;}
.y257{bottom:750.653333pt;}
.y2b5{bottom:754.973333pt;}
.y228{bottom:760.893333pt;}
.y274{bottom:764.733333pt;}
.y4f{bottom:765.053333pt;}
.yc8{bottom:765.373333pt;}
.y9c{bottom:765.693333pt;}
.y1e9{bottom:766.493333pt;}
.y2c1{bottom:769.373333pt;}
.y2a{bottom:770.173333pt;}
.y240{bottom:771.453333pt;}
.ya{bottom:771.613333pt;}
.yd8{bottom:778.173333pt;}
.y21d{bottom:778.973333pt;}
.yfb{bottom:785.213333pt;}
.y273{bottom:792.253333pt;}
.y4e{bottom:792.573333pt;}
.y9b{bottom:793.373333pt;}
.y27{bottom:799.613333pt;}
.yf8{bottom:799.773333pt;}
.y9{bottom:806.213333pt;}
.yd6{bottom:817.253333pt;}
.y272{bottom:819.973333pt;}
.y4d{bottom:820.293333pt;}
.y9a{bottom:820.933333pt;}
.y1f8{bottom:824.453333pt;}
.y23f{bottom:827.493333pt;}
.y20e{bottom:828.933333pt;}
.y23{bottom:829.253333pt;}
.y8{bottom:840.613333pt;}
.y256{bottom:847.493333pt;}
.y4c{bottom:847.813333pt;}
.y122{bottom:847.973333pt;}
.y99{bottom:848.613333pt;}
.yf7{bottom:853.733333pt;}
.y23d{bottom:855.653333pt;}
.y20d{bottom:859.973333pt;}
.y198{bottom:874.693333pt;}
.y7{bottom:875.173333pt;}
.y4b{bottom:875.493333pt;}
.y98{bottom:876.133333pt;}
.y20c{bottom:879.973333pt;}
.y23b{bottom:883.973333pt;}
.y20{bottom:884.453333pt;}
.y4a{bottom:903.013333pt;}
.y97{bottom:903.813333pt;}
.y121{bottom:904.613333pt;}
.y6{bottom:909.573333pt;}
.y23a{bottom:930.373333pt;}
.y49{bottom:930.693333pt;}
.y120{bottom:931.013333pt;}
.y112{bottom:931.333333pt;}
.y197{bottom:931.493333pt;}
.y1f{bottom:934.693333pt;}
.y5{bottom:944.133333pt;}
.y196{bottom:945.253333pt;}
.y85{bottom:957.893333pt;}
.y48{bottom:958.213333pt;}
.y111{bottom:959.013333pt;}
.y1e{bottom:972.773333pt;}
.y4{bottom:978.693333pt;}
.y143{bottom:984.453333pt;}
.y84{bottom:985.573333pt;}
.y47{bottom:985.893333pt;}
.y2ae{bottom:986.053333pt;}
.y110{bottom:986.693333pt;}
.y1d{bottom:1010.693333pt;}
.y3{bottom:1013.093333pt;}
.y67{bottom:1013.413333pt;}
.h4e{height:27.520000pt;}
.h4d{height:27.680000pt;}
.h54{height:27.712000pt;}
.h7{height:29.440000pt;}
.hd{height:29.472000pt;}
.hb{height:29.600000pt;}
.ha{height:29.632000pt;}
.h4c{height:32.960000pt;}
.h11{height:33.918750pt;}
.h2a{height:38.128125pt;}
.h15{height:38.461250pt;}
.h18{height:38.492500pt;}
.h1e{height:39.040000pt;}
.h1b{height:39.072000pt;}
.h2{height:42.262500pt;}
.h27{height:43.520000pt;}
.h2b{height:43.552000pt;}
.h2f{height:43.680000pt;}
.h36{height:43.712000pt;}
.h32{height:46.080000pt;}
.h19{height:52.108438pt;}
.h12{height:52.134375pt;}
.h21{height:53.952000pt;}
.h4{height:54.368437pt;}
.h23{height:54.598989pt;}
.h9{height:55.200000pt;}
.h4f{height:55.232000pt;}
.h22{height:55.275000pt;}
.h53{height:55.840000pt;}
.h16{height:57.375000pt;}
.h10{height:62.781250pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hc{height:65.781915pt;}
.he{height:66.625000pt;}
.h14{height:71.503437pt;}
.hf{height:71.524375pt;}
.h17{height:71.631042pt;}
.h6{height:73.454062pt;}
.h5{height:75.465000pt;}
.h13{height:77.951250pt;}
.h2d{height:82.720000pt;}
.h38{height:82.752000pt;}
.h51{height:82.880000pt;}
.h50{height:110.400000pt;}
.h44{height:135.386667pt;}
.h47{height:143.226667pt;}
.h42{height:147.226667pt;}
.h48{height:148.026667pt;}
.h3e{height:151.226667pt;}
.h46{height:157.306667pt;}
.h41{height:158.880000pt;}
.h43{height:160.826667pt;}
.h29{height:165.626667pt;}
.h45{height:168.000000pt;}
.h3c{height:173.946667pt;}
.h20{height:174.266667pt;}
.h3d{height:176.346667pt;}
.h49{height:181.946667pt;}
.h1a{height:183.200000pt;}
.h1c{height:184.160000pt;}
.h4b{height:188.346667pt;}
.h30{height:192.026667pt;}
.h26{height:198.426667pt;}
.h25{height:199.360000pt;}
.h24{height:201.146667pt;}
.h28{height:223.066667pt;}
.h1d{height:231.066667pt;}
.h2e{height:233.986667pt;}
.h35{height:245.786667pt;}
.h52{height:248.506667pt;}
.h3a{height:253.626667pt;}
.h55{height:258.426667pt;}
.h58{height:258.626667pt;}
.h3f{height:261.506667pt;}
.h37{height:266.746667pt;}
.h4a{height:267.106667pt;}
.h57{height:268.026667pt;}
.h31{height:273.466667pt;}
.h56{height:283.706667pt;}
.h2c{height:303.706667pt;}
.h34{height:304.186667pt;}
.h40{height:306.106667pt;}
.h33{height:341.826667pt;}
.h1f{height:349.346667pt;}
.h3b{height:361.506667pt;}
.h39{height:437.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2f{width:50.112000pt;}
.w31{width:52.000000pt;}
.w30{width:52.800000pt;}
.w2c{width:55.552000pt;}
.w3{width:58.720000pt;}
.w2e{width:59.200000pt;}
.w2d{width:68.800000pt;}
.w29{width:70.720000pt;}
.w2b{width:84.800000pt;}
.w2a{width:89.312000pt;}
.w35{width:122.240000pt;}
.w28{width:127.072000pt;}
.w36{width:141.146667pt;}
.w37{width:143.386667pt;}
.w34{width:167.226667pt;}
.w1d{width:177.626667pt;}
.w14{width:179.546667pt;}
.w21{width:184.506667pt;}
.w20{width:188.506667pt;}
.w1a{width:189.466667pt;}
.w16{width:192.346667pt;}
.w17{width:192.506667pt;}
.w18{width:193.466667pt;}
.w1c{width:194.426667pt;}
.w1b{width:195.226667pt;}
.w15{width:196.186667pt;}
.w19{width:196.666667pt;}
.w13{width:205.626667pt;}
.w1f{width:208.346667pt;}
.w1e{width:209.306667pt;}
.w26{width:246.106667pt;}
.we{width:262.426667pt;}
.w24{width:268.506667pt;}
.w22{width:275.706667pt;}
.w7{width:281.626667pt;}
.w12{width:282.466667pt;}
.w33{width:285.186667pt;}
.wa{width:286.946667pt;}
.wc{width:288.066667pt;}
.wb{width:288.186667pt;}
.w39{width:288.386667pt;}
.w38{width:288.506667pt;}
.w5{width:289.666667pt;}
.w4{width:291.706667pt;}
.w32{width:292.666667pt;}
.w9{width:294.426667pt;}
.w11{width:296.346667pt;}
.w8{width:299.746667pt;}
.w23{width:305.666667pt;}
.w25{width:312.866667pt;}
.wf{width:313.826667pt;}
.w27{width:341.826667pt;}
.w2{width:517.533333pt;}
.wd{width:576.253333pt;}
.w10{width:578.813333pt;}
.w6{width:581.373333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x39{left:11.040000pt;}
.x25{left:12.480000pt;}
.x76{left:16.000000pt;}
.x46{left:16.960000pt;}
.x2e{left:20.800000pt;}
.x77{left:26.080000pt;}
.x36{left:27.840000pt;}
.x75{left:29.120000pt;}
.x42{left:30.234667pt;}
.xf{left:35.520000pt;}
.x43{left:37.760000pt;}
.x40{left:38.714667pt;}
.x26{left:41.146667pt;}
.xe{left:43.520000pt;}
.x32{left:44.954667pt;}
.x31{left:47.200000pt;}
.x7b{left:49.946667pt;}
.x7d{left:51.680000pt;}
.x79{left:53.120000pt;}
.x10{left:54.394667pt;}
.x78{left:57.120000pt;}
.x7a{left:60.506667pt;}
.x7c{left:61.600000pt;}
.x7f{left:80.520000pt;}
.x11{left:82.874667pt;}
.x7e{left:87.240000pt;}
.x80{left:88.520000pt;}
.x53{left:96.154667pt;}
.x48{left:102.714667pt;}
.x2f{left:104.474667pt;}
.xb{left:106.272000pt;}
.x86{left:110.752000pt;}
.x2{left:113.472000pt;}
.x20{left:130.554667pt;}
.x2c{left:141.914667pt;}
.x3f{left:143.994667pt;}
.x22{left:155.714667pt;}
.x4a{left:157.306667pt;}
.x4d{left:158.266667pt;}
.x12{left:160.666667pt;}
.x4{left:165.626667pt;}
.x4e{left:169.800000pt;}
.x4f{left:170.754667pt;}
.x4c{left:172.514667pt;}
.x47{left:173.794667pt;}
.x62{left:175.546667pt;}
.x59{left:179.546667pt;}
.x57{left:181.154667pt;}
.x56{left:182.760000pt;}
.x55{left:183.706667pt;}
.x52{left:185.154667pt;}
.x58{left:186.120000pt;}
.x3a{left:187.234667pt;}
.x5d{left:190.120000pt;}
.x5e{left:192.840000pt;}
.x5a{left:193.794667pt;}
.x37{left:201.954667pt;}
.x13{left:208.026667pt;}
.x1c{left:213.474667pt;}
.x51{left:215.106667pt;}
.x61{left:217.160000pt;}
.x1a{left:224.354667pt;}
.x3d{left:225.314667pt;}
.x50{left:226.466667pt;}
.x33{left:233.954667pt;}
.x3b{left:234.914667pt;}
.x44{left:236.194667pt;}
.x6e{left:237.786667pt;}
.x41{left:244.994667pt;}
.x2d{left:250.114667pt;}
.x6a{left:252.346667pt;}
.x45{left:253.954667pt;}
.x8b{left:256.986667pt;}
.x19{left:259.906667pt;}
.x66{left:260.866667pt;}
.x7{left:262.626667pt;}
.x8{left:263.746667pt;}
.x38{left:265.154667pt;}
.x1b{left:267.874667pt;}
.x17{left:269.794667pt;}
.x29{left:270.754667pt;}
.x27{left:272.034667pt;}
.x3e{left:274.114667pt;}
.x2a{left:277.186667pt;}
.x89{left:278.786667pt;}
.x85{left:280.066667pt;}
.x88{left:281.154667pt;}
.xa{left:282.146667pt;}
.x1d{left:285.154667pt;}
.x34{left:286.114667pt;}
.x23{left:287.234667pt;}
.x67{left:291.234667pt;}
.x54{left:298.626667pt;}
.x5{left:299.746667pt;}
.x5f{left:300.706667pt;}
.x5b{left:302.946667pt;}
.x1f{left:303.906667pt;}
.x6c{left:305.506667pt;}
.x9{left:308.546667pt;}
.x49{left:311.906667pt;}
.x63{left:314.626667pt;}
.x6{left:319.906667pt;}
.x69{left:323.906667pt;}
.x6f{left:327.746667pt;}
.x15{left:349.346667pt;}
.x8a{left:350.466667pt;}
.x84{left:351.746667pt;}
.x30{left:368.706667pt;}
.x6b{left:374.786667pt;}
.x68{left:381.986667pt;}
.x1e{left:387.906667pt;}
.x28{left:394.466667pt;}
.x3{left:396.866667pt;}
.x18{left:397.986667pt;}
.x87{left:399.266667pt;}
.x24{left:400.706667pt;}
.x35{left:402.626667pt;}
.x6d{left:413.346667pt;}
.x70{left:469.533333pt;}
.x60{left:478.333333pt;}
.x4b{left:491.453333pt;}
.x5c{left:492.413333pt;}
.x3c{left:502.341333pt;}
.x71{left:538.973333pt;}
.x64{left:562.973333pt;}
.x21{left:576.101333pt;}
.x14{left:592.573333pt;}
.x2b{left:594.973333pt;}
.x72{left:598.813333pt;}
.xd{left:623.813333pt;}
.x73{left:649.733333pt;}
.x16{left:665.573333pt;}
.x1{left:673.093333pt;}
.x65{left:682.373333pt;}
.x74{left:703.173333pt;}
.x83{left:720.293333pt;}
.x81{left:722.533333pt;}
.x82{left:723.493333pt;}
}




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