
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6a817a2a6b415532e4100fcb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_3da7b6ae5775610156d762be.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_dfbb01aaf9cb7d4db38a6a79.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_0370a1a51a0d38d9ce5d9717.woff')format("woff");}.ff5{font-family:ff5;line-height:1.052734;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_026d45acf88e745fc649c275.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_c844223a667618b33181e580.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cfc8cf3fe549ae6180bb4bf0.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f6bea28ad7e5bc878a545a0a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_1c77cfe1642f87d536be2e9f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_86772f790136fe8e5723b6a0.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls27{letter-spacing:-0.426000px;}
.ls1f{letter-spacing:-0.246600px;}
.ls29{letter-spacing:-0.243600px;}
.lsd{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.160800px;}
.ls28{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.135000px;}
.ls26{letter-spacing:-0.125400px;}
.lsf{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls22{letter-spacing:-0.070800px;}
.ls18{letter-spacing:-0.063600px;}
.ls19{letter-spacing:-0.049680px;}
.ls1e{letter-spacing:-0.038880px;}
.ls20{letter-spacing:-0.014760px;}
.ls1b{letter-spacing:-0.009000px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.005400px;}
.ls4{letter-spacing:0.014760px;}
.ls21{letter-spacing:0.041760px;}
.ls10{letter-spacing:0.045360px;}
.ls17{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls1d{letter-spacing:0.068400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.097800px;}
.ls1c{letter-spacing:0.098400px;}
.ls12{letter-spacing:0.105600px;}
.ls13{letter-spacing:0.113400px;}
.ls14{letter-spacing:0.115800px;}
.ls2a{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.120000px;}
.ls25{letter-spacing:0.143400px;}
.ls8{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.185520px;}
.ls15{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls2b{letter-spacing:14.246640px;}
.ls24{letter-spacing:47.726640px;}
.ls23{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.425600px;}
.ws5{word-spacing:-13.399800px;}
.ws18{word-spacing:-13.369800px;}
.ws1d{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.342200px;}
.wsa{word-spacing:-13.332000px;}
.ws12{word-spacing:-13.324800px;}
.ws11{word-spacing:-13.324200px;}
.ws13{word-spacing:-13.294800px;}
.wse{word-spacing:-13.275360px;}
.ws16{word-spacing:-13.268160px;}
.ws3{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.217400px;}
.ws15{word-spacing:-13.211640px;}
.ws14{word-spacing:-13.187520px;}
.wsf{word-spacing:-13.162800px;}
.ws17{word-spacing:-13.155600px;}
.ws19{word-spacing:-13.101000px;}
.ws1b{word-spacing:-13.072800px;}
.wsc{word-spacing:-13.065600px;}
.ws4{word-spacing:-13.039800px;}
.ws1c{word-spacing:-12.982800px;}
.ws1a{word-spacing:-12.800400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._7{margin-left:-4.371002px;}
._3{margin-left:-3.066000px;}
._0{margin-left:-1.110000px;}
._1{width:1.073988px;}
._c{width:2.224847px;}
._5{width:3.306600px;}
._6{width:4.749600px;}
._e{width:5.967360px;}
._d{width:7.426681px;}
._a{width:8.476800px;}
._b{width:9.799800px;}
._10{width:10.938599px;}
._2{width:12.051600px;}
._4{width:14.248200px;}
._21{width:15.400335px;}
._f{width:16.713360px;}
._22{width:17.795520px;}
._38{width:18.959771px;}
._8{width:20.020200px;}
._9{width:21.041399px;}
._20{width:22.172079px;}
._1d{width:23.206320px;}
._39{width:24.228360px;}
._44{width:25.280280px;}
._34{width:26.633160px;}
._2f{width:28.617120px;}
._49{width:29.781120px;}
._2e{width:31.803480px;}
._3d{width:32.813760px;}
._2a{width:34.629120px;}
._18{width:36.252360px;}
._48{width:37.935720px;}
._4a{width:39.506172px;}
._40{width:40.518360px;}
._25{width:41.843520px;}
._4b{width:43.228800px;}
._47{width:44.666400px;}
._11{width:45.811440px;}
._23{width:50.079960px;}
._31{width:51.771492px;}
._1e{width:55.249680px;}
._2d{width:56.333040px;}
._37{width:58.256280px;}
._35{width:63.126000px;}
._45{width:64.893240px;}
._1b{width:67.394520px;}
._46{width:68.861160px;}
._3b{width:69.919560px;}
._14{width:71.843400px;}
._2c{width:73.166040px;}
._3e{width:76.352400px;}
._24{width:78.576840px;}
._1f{width:83.867400px;}
._2b{width:86.151960px;}
._1a{width:88.977600px;}
._3c{width:91.863360px;}
._30{width:95.891400px;}
._19{width:100.690560px;}
._3a{width:110.500560px;}
._33{width:118.496520px;}
._27{width:125.710920px;}
._3f{width:127.755000px;}
._36{width:136.051560px;}
._28{width:146.512440px;}
._32{width:149.939280px;}
._16{width:153.139080px;}
._15{width:160.941240px;}
._1c{width:166.592520px;}
._26{width:172.784880px;}
._12{width:175.971240px;}
._42{width:181.863000px;}
._43{width:187.995240px;}
._41{width:190.640520px;}
._29{width:210.900960px;}
._13{width:214.327800px;}
._17{width:243.185400px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y44{bottom:7.830000px;}
.y41{bottom:7.920000px;}
.y124{bottom:7.950000px;}
.y49{bottom:25.380000px;}
.y40{bottom:25.470000px;}
.y43{bottom:43.020000px;}
.y9a{bottom:43.110000px;}
.y98{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y213{bottom:113.700000px;}
.y204{bottom:115.680000px;}
.y115{bottom:115.950000px;}
.y287{bottom:116.130000px;}
.y108{bottom:116.580000px;}
.y236{bottom:116.940000px;}
.y24e{bottom:123.960000px;}
.y28d{bottom:125.130000px;}
.y53{bottom:127.110000px;}
.y189{bottom:131.250000px;}
.y203{bottom:133.320000px;}
.y114{bottom:133.500000px;}
.y286{bottom:133.680000px;}
.ye5{bottom:134.130000px;}
.y235{bottom:134.580000px;}
.y27a{bottom:136.110000px;}
.y29{bottom:136.380000px;}
.y1a8{bottom:141.060000px;}
.y24d{bottom:141.510000px;}
.y2ab{bottom:142.320000px;}
.y149{bottom:142.680000px;}
.y52{bottom:144.660000px;}
.y212{bottom:147.450000px;}
.y188{bottom:148.800000px;}
.y131{bottom:149.070000px;}
.y1c4{bottom:149.250000px;}
.y202{bottom:150.870000px;}
.y28a{bottom:151.320000px;}
.ye4{bottom:151.680000px;}
.y21f{bottom:152.130000px;}
.y279{bottom:153.750000px;}
.y28{bottom:153.930000px;}
.y1ea{bottom:155.460000px;}
.yc0{bottom:156.090000px;}
.y211{bottom:156.630000px;}
.y1a7{bottom:158.610000px;}
.y2aa{bottom:159.870000px;}
.y148{bottom:160.320000px;}
.y81{bottom:160.770000px;}
.y6e{bottom:161.400000px;}
.y51{bottom:162.300000px;}
.y187{bottom:166.350000px;}
.y130{bottom:166.620000px;}
.y1c3{bottom:166.800000px;}
.y24c{bottom:168.420000px;}
.y201{bottom:168.510000px;}
.y289{bottom:168.870000px;}
.y113{bottom:169.140000px;}
.ye3{bottom:169.320000px;}
.y21e{bottom:169.680000px;}
.y1e9{bottom:173.100000px;}
.ybf{bottom:173.730000px;}
.y1a6{bottom:176.250000px;}
.y147{bottom:177.870000px;}
.y80{bottom:178.410000px;}
.y6d{bottom:179.040000px;}
.y50{bottom:179.850000px;}
.y278{bottom:180.300000px;}
.y27{bottom:180.840000px;}
.y186{bottom:183.990000px;}
.y12f{bottom:184.260000px;}
.y1c2{bottom:184.440000px;}
.y200{bottom:186.060000px;}
.y2a9{bottom:186.510000px;}
.y112{bottom:186.690000px;}
.y107{bottom:186.870000px;}
.y21d{bottom:187.320000px;}
.yfb{bottom:189.030000px;}
.y1e8{bottom:190.650000px;}
.ybe{bottom:191.280000px;}
.ya5{bottom:194.610000px;}
.y146{bottom:195.510000px;}
.y7f{bottom:195.960000px;}
.y6c{bottom:196.590000px;}
.y4f{bottom:197.400000px;}
.y277{bottom:197.850000px;}
.y171{bottom:200.100000px;}
.y185{bottom:201.540000px;}
.y12e{bottom:201.810000px;}
.y1a5{bottom:202.800000px;}
.y1ff{bottom:203.610000px;}
.y2a8{bottom:204.060000px;}
.y111{bottom:204.240000px;}
.y285{bottom:204.510000px;}
.ye2{bottom:204.870000px;}
.y24b{bottom:205.770000px;}
.yfa{bottom:206.580000px;}
.ybd{bottom:208.830000px;}
.y1c1{bottom:210.990000px;}
.y145{bottom:213.060000px;}
.y6b{bottom:214.230000px;}
.y4e{bottom:215.040000px;}
.ya4{bottom:215.310000px;}
.y276{bottom:215.490000px;}
.y1e7{bottom:217.200000px;}
.y170{bottom:217.650000px;}
.y184{bottom:219.180000px;}
.y12d{bottom:219.360000px;}
.y1fe{bottom:221.250000px;}
.y2a7{bottom:221.610000px;}
.y284{bottom:222.060000px;}
.ye1{bottom:222.510000px;}
.yf9{bottom:224.220000px;}
.y110{bottom:227.460000px;}
.y26{bottom:229.170000px;}
.y144{bottom:230.610000px;}
.y290{bottom:231.060000px;}
.y7e{bottom:231.510000px;}
.y6a{bottom:231.780000px;}
.y4d{bottom:232.590000px;}
.y16f{bottom:235.200000px;}
.ya3{bottom:236.010000px;}
.y183{bottom:236.730000px;}
.y1a4{bottom:238.440000px;}
.y1fd{bottom:238.800000px;}
.y283{bottom:239.610000px;}
.ye0{bottom:240.060000px;}
.yf8{bottom:241.770000px;}
.y275{bottom:242.040000px;}
.ybc{bottom:244.470000px;}
.y12c{bottom:246.000000px;}
.y210{bottom:246.450000px;}
.y1c0{bottom:246.540000px;}
.y25{bottom:247.080000px;}
.y2a6{bottom:248.250000px;}
.y28c{bottom:248.610000px;}
.y7d{bottom:249.150000px;}
.y69{bottom:249.330000px;}
.y4c{bottom:250.680000px;}
.y16e{bottom:252.840000px;}
.y24a{bottom:254.100000px;}
.y182{bottom:254.280000px;}
.y1fc{bottom:256.440000px;}
.ya2{bottom:256.710000px;}
.y143{bottom:257.250000px;}
.ydf{bottom:257.610000px;}
.y274{bottom:259.680000px;}
.ybb{bottom:262.020000px;}
.y1bf{bottom:264.180000px;}
.y2a5{bottom:265.800000px;}
.y282{bottom:266.250000px;}
.y238{bottom:266.610000px;}
.y7c{bottom:266.700000px;}
.y68{bottom:266.970000px;}
.y234{bottom:267.060000px;}
.y4b{bottom:268.230000px;}
.y1e6{bottom:270.390000px;}
.y249{bottom:271.650000px;}
.y1a3{bottom:273.990000px;}
.yde{bottom:275.250000px;}
.y273{bottom:277.230000px;}
.ya1{bottom:277.410000px;}
.y16d{bottom:279.390000px;}
.yba{bottom:279.660000px;}
.y181{bottom:280.920000px;}
.y12b{bottom:281.550000px;}
.y1fb{bottom:282.990000px;}
.y2a4{bottom:283.440000px;}
.y281{bottom:283.800000px;}
.y24{bottom:284.070000px;}
.y7b{bottom:284.250000px;}
.y233{bottom:284.610000px;}
.y1e5{bottom:287.940000px;}
.y248{bottom:289.200000px;}
.y1be{bottom:290.730000px;}
.y20f{bottom:291.360000px;}
.y1a2{bottom:291.540000px;}
.ydd{bottom:292.800000px;}
.yf7{bottom:294.960000px;}
.yb9{bottom:297.210000px;}
.ya0{bottom:298.110000px;}
.y12a{bottom:299.190000px;}
.y280{bottom:301.440000px;}
.y23{bottom:301.620000px;}
.y21c{bottom:301.800000px;}
.y7a{bottom:301.890000px;}
.y232{bottom:302.250000px;}
.y67{bottom:302.520000px;}
.y272{bottom:303.780000px;}
.y1e4{bottom:305.580000px;}
.y247{bottom:306.840000px;}
.y1a1{bottom:309.180000px;}
.y2a3{bottom:309.990000px;}
.ydc{bottom:310.440000px;}
.yf6{bottom:312.510000px;}
.y4a{bottom:313.230000px;}
.yb8{bottom:314.760000px;}
.y16c{bottom:314.940000px;}
.y180{bottom:316.470000px;}
.y129{bottom:316.740000px;}
.y1fa{bottom:318.540000px;}
.y9f{bottom:318.810000px;}
.y22{bottom:319.260000px;}
.y79{bottom:319.440000px;}
.y231{bottom:319.800000px;}
.y66{bottom:320.160000px;}
.y271{bottom:321.420000px;}
.y1e3{bottom:323.130000px;}
.y246{bottom:324.390000px;}
.y1bd{bottom:326.370000px;}
.y1a0{bottom:326.730000px;}
.y2a2{bottom:327.540000px;}
.y142{bottom:327.990000px;}
.yf5{bottom:330.150000px;}
.yb7{bottom:332.400000px;}
.y16b{bottom:332.580000px;}
.y17f{bottom:334.020000px;}
.y128{bottom:334.290000px;}
.y1f9{bottom:336.180000px;}
.y20e{bottom:336.270000px;}
.y21{bottom:336.810000px;}
.y106{bottom:336.990000px;}
.y78{bottom:337.080000px;}
.y21b{bottom:337.440000px;}
.y9e{bottom:337.620000px;}
.y65{bottom:337.710000px;}
.y270{bottom:338.970000px;}
.y245{bottom:341.940000px;}
.y1bc{bottom:343.920000px;}
.y141{bottom:345.540000px;}
.ydb{bottom:345.990000px;}
.y9d{bottom:346.710000px;}
.yf4{bottom:347.700000px;}
.y1e2{bottom:349.770000px;}
.yb6{bottom:349.950000px;}
.y16a{bottom:350.130000px;}
.y17e{bottom:351.660000px;}
.y127{bottom:351.930000px;}
.y19f{bottom:353.370000px;}
.y1f8{bottom:353.730000px;}
.y2a1{bottom:354.180000px;}
.y20{bottom:354.450000px;}
.y28b{bottom:354.540000px;}
.y21a{bottom:354.990000px;}
.y64{bottom:355.260000px;}
.y48{bottom:358.140000px;}
.y244{bottom:359.580000px;}
.y1bb{bottom:361.470000px;}
.y27f{bottom:363.180000px;}
.yda{bottom:363.540000px;}
.y77{bottom:363.630000px;}
.y26f{bottom:365.610000px;}
.yb5{bottom:367.500000px;}
.y169{bottom:367.770000px;}
.y1f7{bottom:371.370000px;}
.y2a0{bottom:371.730000px;}
.y1f{bottom:372.000000px;}
.y288{bottom:372.180000px;}
.y105{bottom:372.540000px;}
.y63{bottom:372.900000px;}
.y126{bottom:378.840000px;}
.yd9{bottom:381.180000px;}
.y26e{bottom:383.160000px;}
.yf3{bottom:383.250000px;}
.yb4{bottom:385.140000px;}
.y168{bottom:385.320000px;}
.y17d{bottom:387.210000px;}
.y19e{bottom:388.920000px;}
.y1e{bottom:389.550000px;}
.y27e{bottom:389.730000px;}
.y104{bottom:390.180000px;}
.y62{bottom:390.450000px;}
.y9c{bottom:391.620000px;}
.y243{bottom:395.130000px;}
.y1ba{bottom:397.110000px;}
.y29f{bottom:398.370000px;}
.yd8{bottom:398.730000px;}
.y20d{bottom:398.820000px;}
.y76{bottom:399.180000px;}
.yf2{bottom:400.890000px;}
.y1e1{bottom:402.870000px;}
.y17c{bottom:404.850000px;}
.y19d{bottom:406.470000px;}
.y1d{bottom:407.190000px;}
.y27d{bottom:407.370000px;}
.y103{bottom:407.730000px;}
.y26d{bottom:409.710000px;}
.yb3{bottom:411.690000px;}
.y242{bottom:412.770000px;}
.y1f6{bottom:415.470000px;}
.y29e{bottom:415.920000px;}
.yd7{bottom:416.370000px;}
.y75{bottom:416.820000px;}
.y61{bottom:417.000000px;}
.yf1{bottom:418.440000px;}
.y1e0{bottom:420.510000px;}
.y47{bottom:420.600000px;}
.y167{bottom:420.870000px;}
.y17b{bottom:422.400000px;}
.y19c{bottom:424.110000px;}
.y125{bottom:424.470000px;}
.y1c{bottom:424.740000px;}
.y102{bottom:425.370000px;}
.y26c{bottom:427.350000px;}
.y241{bottom:430.320000px;}
.y1b9{bottom:432.660000px;}
.yd6{bottom:433.920000px;}
.y74{bottom:434.370000px;}
.y230{bottom:434.730000px;}
.yf0{bottom:436.080000px;}
.y9b{bottom:436.530000px;}
.y1df{bottom:438.060000px;}
.y166{bottom:438.510000px;}
.y17a{bottom:439.950000px;}
.y19b{bottom:441.660000px;}
.y1b{bottom:442.380000px;}
.y29d{bottom:442.470000px;}
.y28f{bottom:442.920000px;}
.yb2{bottom:447.330000px;}
.y240{bottom:447.870000px;}
.y1b8{bottom:450.300000px;}
.y1f5{bottom:451.110000px;}
.y140{bottom:451.470000px;}
.y73{bottom:452.010000px;}
.y22f{bottom:452.370000px;}
.y60{bottom:452.640000px;}
.yef{bottom:453.630000px;}
.y26b{bottom:453.900000px;}
.y1de{bottom:455.700000px;}
.y165{bottom:456.060000px;}
.y179{bottom:457.590000px;}
.y1a{bottom:459.930000px;}
.y29c{bottom:460.110000px;}
.yd5{bottom:460.470000px;}
.y101{bottom:460.920000px;}
.yb1{bottom:464.880000px;}
.y20c{bottom:465.060000px;}
.y23f{bottom:465.510000px;}
.y1b7{bottom:467.850000px;}
.y19a{bottom:468.300000px;}
.y1f4{bottom:468.660000px;}
.y123{bottom:469.380000px;}
.y28e{bottom:469.470000px;}
.y72{bottom:469.560000px;}
.y22e{bottom:469.950000px;}
.y5f{bottom:470.220000px;}
.yee{bottom:471.210000px;}
.y26a{bottom:471.480000px;}
.y164{bottom:473.730000px;}
.y19{bottom:477.510000px;}
.y27c{bottom:478.140000px;}
.y100{bottom:478.500000px;}
.y99{bottom:481.470000px;}
.y1dd{bottom:482.280000px;}
.yb0{bottom:482.460000px;}
.y23e{bottom:483.090000px;}
.y46{bottom:483.180000px;}
.y178{bottom:484.170000px;}
.y1f3{bottom:486.330000px;}
.y29b{bottom:486.690000px;}
.y71{bottom:487.140000px;}
.y22d{bottom:487.500000px;}
.y5e{bottom:487.860000px;}
.yed{bottom:488.850000px;}
.y269{bottom:489.120000px;}
.y163{bottom:491.280000px;}
.y20b{bottom:492.000000px;}
.y18{bottom:495.150000px;}
.y27b{bottom:495.690000px;}
.yd4{bottom:496.140000px;}
.y122{bottom:496.770000px;}
.yaf{bottom:500.100000px;}
.y23d{bottom:500.730000px;}
.y1b6{bottom:503.430000px;}
.y199{bottom:503.880000px;}
.y29a{bottom:504.330000px;}
.y13f{bottom:504.690000px;}
.y22c{bottom:505.140000px;}
.y5d{bottom:505.410000px;}
.yec{bottom:506.400000px;}
.y162{bottom:508.830000px;}
.y17{bottom:512.700000px;}
.yd3{bottom:513.690000px;}
.y177{bottom:515.400000px;}
.y268{bottom:515.670000px;}
.yae{bottom:517.650000px;}
.y1dc{bottom:517.830000px;}
.y70{bottom:519.360000px;}
.y13e{bottom:522.330000px;}
.y22b{bottom:522.690000px;}
.y5c{bottom:522.960000px;}
.yeb{bottom:524.040000px;}
.y121{bottom:524.130000px;}
.y176{bottom:524.490000px;}
.y23c{bottom:527.640000px;}
.y16{bottom:530.340000px;}
.y299{bottom:530.880000px;}
.yd2{bottom:531.330000px;}
.y267{bottom:533.310000px;}
.yad{bottom:535.290000px;}
.y161{bottom:535.470000px;}
.y1b5{bottom:539.070000px;}
.y198{bottom:539.430000px;}
.y13d{bottom:539.880000px;}
.y20a{bottom:540.330000px;}
.y5b{bottom:540.600000px;}
.y45{bottom:545.640000px;}
.y15{bottom:547.890000px;}
.y298{bottom:548.430000px;}
.yd1{bottom:548.880000px;}
.yea{bottom:550.590000px;}
.yac{bottom:552.840000px;}
.y1db{bottom:553.020000px;}
.y1b4{bottom:556.620000px;}
.y197{bottom:557.070000px;}
.y13c{bottom:557.430000px;}
.y209{bottom:557.880000px;}
.y5a{bottom:558.150000px;}
.y266{bottom:559.860000px;}
.y97{bottom:561.570000px;}
.y14{bottom:565.440000px;}
.yd0{bottom:566.430000px;}
.y120{bottom:569.040000px;}
.y1da{bottom:570.660000px;}
.y160{bottom:571.020000px;}
.y196{bottom:574.620000px;}
.y297{bottom:575.070000px;}
.y208{bottom:575.430000px;}
.y23b{bottom:575.880000px;}
.y265{bottom:577.410000px;}
.yab{bottom:579.390000px;}
.y13{bottom:583.080000px;}
.y1b3{bottom:583.260000px;}
.ycf{bottom:584.070000px;}
.y59{bottom:584.790000px;}
.ye9{bottom:586.140000px;}
.y1d9{bottom:588.210000px;}
.y15f{bottom:588.660000px;}
.y195{bottom:592.260000px;}
.y296{bottom:592.620000px;}
.y207{bottom:593.070000px;}
.y23a{bottom:593.430000px;}
.y11f{bottom:596.310000px;}
.yce{bottom:601.620000px;}
.y22a{bottom:602.070000px;}
.ye8{bottom:603.780000px;}
.y264{bottom:604.050000px;}
.y175{bottom:604.590000px;}
.y1d8{bottom:605.760000px;}
.y15e{bottom:606.210000px;}
.y42{bottom:608.190000px;}
.y194{bottom:609.810000px;}
.y12{bottom:609.990000px;}
.y1f2{bottom:610.260000px;}
.y237{bottom:610.620000px;}
.y219{bottom:611.070000px;}
.yaa{bottom:615.030000px;}
.y1b2{bottom:618.810000px;}
.yff{bottom:619.260000px;}
.y13b{bottom:619.620000px;}
.y58{bottom:620.340000px;}
.ye7{bottom:621.330000px;}
.y263{bottom:621.600000px;}
.y193{bottom:627.360000px;}
.y1f1{bottom:627.810000px;}
.ycd{bottom:628.260000px;}
.y206{bottom:628.620000px;}
.y1d7{bottom:632.400000px;}
.ya9{bottom:632.580000px;}
.y1b1{bottom:636.360000px;}
.y295{bottom:636.810000px;}
.y13a{bottom:637.260000px;}
.y229{bottom:637.620000px;}
.y57{bottom:637.890000px;}
.y11e{bottom:641.310000px;}
.y96{bottom:641.670000px;}
.y15d{bottom:641.760000px;}
.ye6{bottom:644.550000px;}
.y1f0{bottom:645.360000px;}
.yfe{bottom:645.810000px;}
.y205{bottom:646.260000px;}
.y262{bottom:648.240000px;}
.ya8{bottom:650.220000px;}
.y192{bottom:654.000000px;}
.y294{bottom:654.360000px;}
.y139{bottom:654.810000px;}
.y228{bottom:655.260000px;}
.y56{bottom:655.530000px;}
.y11{bottom:658.230000px;}
.y15c{bottom:659.400000px;}
.ycc{bottom:663.810000px;}
.y261{bottom:665.790000px;}
.y174{bottom:667.140000px;}
.ya7{bottom:667.770000px;}
.y1d6{bottom:667.950000px;}
.y3f{bottom:670.650000px;}
.y1b0{bottom:671.550000px;}
.y1ef{bottom:672.000000px;}
.y138{bottom:672.360000px;}
.y227{bottom:672.810000px;}
.y15b{bottom:676.950000px;}
.y293{bottom:681.000000px;}
.ycb{bottom:681.360000px;}
.y1d5{bottom:685.590000px;}
.y55{bottom:687.750000px;}
.y191{bottom:689.550000px;}
.y11d{bottom:690.000000px;}
.y226{bottom:690.360000px;}
.ya6{bottom:690.990000px;}
.y260{bottom:692.340000px;}
.y10{bottom:693.780000px;}
.y15a{bottom:694.590000px;}
.y1af{bottom:698.190000px;}
.y292{bottom:698.550000px;}
.yca{bottom:699.000000px;}
.y1d4{bottom:703.140000px;}
.y190{bottom:707.190000px;}
.y1ee{bottom:707.550000px;}
.y137{bottom:708.000000px;}
.y25f{bottom:709.980000px;}
.y159{bottom:712.140000px;}
.yc9{bottom:716.550000px;}
.y218{bottom:717.000000px;}
.y3e{bottom:717.540000px;}
.y1d3{bottom:720.690000px;}
.y18f{bottom:724.740000px;}
.y1ed{bottom:725.190000px;}
.y95{bottom:725.550000px;}
.y25e{bottom:727.530000px;}
.yf{bottom:729.600000px;}
.y158{bottom:729.690000px;}
.y1ae{bottom:733.740000px;}
.yc8{bottom:734.190000px;}
.y217{bottom:734.550000px;}
.y1d2{bottom:738.330000px;}
.y18e{bottom:742.290000px;}
.y1ec{bottom:742.740000px;}
.y11c{bottom:743.190000px;}
.y3d{bottom:747.330000px;}
.y1ad{bottom:751.290000px;}
.yc7{bottom:751.740000px;}
.y216{bottom:752.190000px;}
.y25d{bottom:754.170000px;}
.y1d1{bottom:755.880000px;}
.y157{bottom:756.330000px;}
.y18d{bottom:759.930000px;}
.y1eb{bottom:760.290000px;}
.y11b{bottom:760.740000px;}
.y94{bottom:761.190000px;}
.y1ac{bottom:768.930000px;}
.yc6{bottom:769.290000px;}
.ye{bottom:769.380000px;}
.y215{bottom:769.740000px;}
.y25c{bottom:771.720000px;}
.y3c{bottom:774.240000px;}
.yfd{bottom:778.290000px;}
.y93{bottom:778.740000px;}
.y1d0{bottom:782.520000px;}
.y18c{bottom:786.480000px;}
.y291{bottom:786.930000px;}
.y214{bottom:787.290000px;}
.yd{bottom:787.380000px;}
.y10f{bottom:787.470000px;}
.y156{bottom:791.880000px;}
.y11a{bottom:795.930000px;}
.y92{bottom:796.290000px;}
.y10e{bottom:796.650000px;}
.y25b{bottom:798.270000px;}
.yc5{bottom:804.930000px;}
.yc{bottom:805.380000px;}
.y155{bottom:809.520000px;}
.y1ab{bottom:813.030000px;}
.y119{bottom:813.480000px;}
.y91{bottom:813.930000px;}
.y25a{bottom:815.910000px;}
.y1cf{bottom:818.070000px;}
.yb{bottom:819.600000px;}
.y18b{bottom:822.030000px;}
.y3b{bottom:822.480000px;}
.y225{bottom:822.930000px;}
.y154{bottom:827.070000px;}
.y118{bottom:831.030000px;}
.y90{bottom:831.480000px;}
.y1ce{bottom:835.620000px;}
.y3a{bottom:840.030000px;}
.y224{bottom:840.480000px;}
.ya{bottom:841.380000px;}
.y10d{bottom:841.560000px;}
.y259{bottom:842.460000px;}
.y153{bottom:844.620000px;}
.y1aa{bottom:848.670000px;}
.y8f{bottom:849.030000px;}
.y1cd{bottom:853.260000px;}
.y39{bottom:857.670000px;}
.y223{bottom:858.030000px;}
.y9{bottom:859.380000px;}
.y258{bottom:860.100000px;}
.y152{bottom:862.260000px;}
.y1a9{bottom:866.220000px;}
.y8e{bottom:866.670000px;}
.y38{bottom:875.220000px;}
.y222{bottom:875.670000px;}
.y8{bottom:877.380000px;}
.y1cc{bottom:879.810000px;}
.yc4{bottom:884.220000px;}
.y239{bottom:884.670000px;}
.y257{bottom:886.650000px;}
.y151{bottom:888.810000px;}
.y37{bottom:892.860000px;}
.y221{bottom:893.220000px;}
.y7{bottom:895.380000px;}
.yfc{bottom:901.860000px;}
.y8d{bottom:902.220000px;}
.y10c{bottom:904.020000px;}
.y256{bottom:904.200000px;}
.y18a{bottom:910.410000px;}
.y220{bottom:910.860000px;}
.y1cb{bottom:915.450000px;}
.y117{bottom:919.410000px;}
.y8c{bottom:919.860000px;}
.y150{bottom:924.450000px;}
.y6{bottom:927.690000px;}
.y36{bottom:928.410000px;}
.y255{bottom:930.840000px;}
.y1ca{bottom:933.000000px;}
.y173{bottom:936.960000px;}
.y8b{bottom:937.410000px;}
.y14f{bottom:942.000000px;}
.y35{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y254{bottom:948.390000px;}
.y1c9{bottom:950.550000px;}
.y8a{bottom:954.960000px;}
.y14e{bottom:959.550000px;}
.y34{bottom:963.600000px;}
.y136{bottom:963.960000px;}
.y253{bottom:966.030000px;}
.y10b{bottom:966.570000px;}
.y1c8{bottom:968.190000px;}
.y89{bottom:972.600000px;}
.y14d{bottom:977.190000px;}
.y33{bottom:981.150000px;}
.y135{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y1c7{bottom:985.740000px;}
.y88{bottom:990.150000px;}
.yc3{bottom:990.600000px;}
.y252{bottom:992.850000px;}
.y14c{bottom:994.740000px;}
.y134{bottom:999.150000px;}
.y1c6{bottom:1003.290000px;}
.y87{bottom:1007.790000px;}
.yc2{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y14b{bottom:1012.320000px;}
.y32{bottom:1016.820000px;}
.y116{bottom:1025.370000px;}
.yc1{bottom:1025.820000px;}
.y10a{bottom:1029.060000px;}
.y1c5{bottom:1030.230000px;}
.y31{bottom:1034.370000px;}
.y14a{bottom:1039.230000px;}
.y251{bottom:1041.210000px;}
.y172{bottom:1042.920000px;}
.y86{bottom:1043.370000px;}
.y30{bottom:1051.920000px;}
.y133{bottom:1052.370000px;}
.y250{bottom:1058.760000px;}
.y85{bottom:1060.920000px;}
.y2f{bottom:1069.560000px;}
.y132{bottom:1069.920000px;}
.y84{bottom:1078.560000px;}
.y24f{bottom:1085.670000px;}
.y2e{bottom:1087.110000px;}
.y6f{bottom:1087.560000px;}
.y109{bottom:1091.610000px;}
.y83{bottom:1096.110000px;}
.y54{bottom:1105.110000px;}
.y82{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h18{height:26.550000px;}
.h1a{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.hc{height:37.002327px;}
.h16{height:37.476562px;}
.h3{height:39.155273px;}
.h10{height:44.100000px;}
.hd{height:44.190000px;}
.h15{height:44.220000px;}
.h8{height:45.559688px;}
.h7{height:50.902383px;}
.h9{height:52.311445px;}
.ha{height:55.779258px;}
.h5{height:57.323320px;}
.h13{height:59.973223px;}
.he{height:61.740000px;}
.hf{height:61.770000px;}
.h1b{height:61.793886px;}
.h19{height:61.830000px;}
.h12{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h11{height:74.004654px;}
.h17{height:74.953125px;}
.h14{height:79.380000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:58.950000px;}
.w5{width:62.910000px;}
.w11{width:75.600000px;}
.w1f{width:77.580000px;}
.w3{width:78.210000px;}
.wb{width:84.960000px;}
.w15{width:85.140000px;}
.wf{width:85.680000px;}
.w24{width:86.940000px;}
.wa{width:95.700000px;}
.w1d{width:98.640000px;}
.w1b{width:102.150000px;}
.w6{width:104.580000px;}
.w1c{width:107.760000px;}
.w1a{width:111.510000px;}
.wd{width:121.710000px;}
.w19{width:123.690000px;}
.w7{width:128.190000px;}
.w1e{width:129.780000px;}
.wc{width:130.140000px;}
.w20{width:132.690000px;}
.w16{width:135.390000px;}
.w10{width:138.720000px;}
.w13{width:140.340000px;}
.w8{width:142.740000px;}
.w14{width:149.580000px;}
.w23{width:156.060000px;}
.w4{width:156.270000px;}
.w12{width:162.540000px;}
.w22{width:164.010000px;}
.we{width:173.970000px;}
.w21{width:213.030000px;}
.w17{width:256.950000px;}
.w18{width:275.970000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x15{left:7.740000px;}
.x1{left:68.040000px;}
.x12{left:74.249987px;}
.x1d{left:77.219987px;}
.x11{left:79.559987px;}
.x10{left:90.269987px;}
.x13{left:93.329987px;}
.xc{left:96.299987px;}
.xd{left:98.639987px;}
.x30{left:111.239987px;}
.x16{left:128.520000px;}
.x14{left:133.289987px;}
.x5{left:147.780000px;}
.x25{left:181.829987px;}
.x2{left:191.459987px;}
.x28{left:193.170000px;}
.x2c{left:202.170000px;}
.x26{left:204.960000px;}
.x20{left:208.200000px;}
.x17{left:224.940000px;}
.x1e{left:259.679987px;}
.xe{left:263.099987px;}
.x21{left:284.610000px;}
.x6{left:304.860000px;}
.x18{left:310.710000px;}
.x1f{left:335.999987px;}
.x7{left:368.490000px;}
.x29{left:408.270000px;}
.x2d{left:415.920000px;}
.x19{left:441.570000px;}
.x22{left:447.960000px;}
.x27{left:462.630000px;}
.x8{left:473.790000px;}
.x2a{left:516.840000px;}
.x1a{left:564.000000px;}
.x2e{left:580.740000px;}
.x23{left:589.020000px;}
.x9{left:602.700000px;}
.x2b{left:616.290000px;}
.x24{left:664.889987px;}
.xb{left:691.889987px;}
.xf{left:700.889987px;}
.x2f{left:737.520000px;}
.x1b{left:738.780000px;}
.xa{left:746.250000px;}
.x1c{left:783.059987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls27{letter-spacing:-0.378667pt;}
.ls1f{letter-spacing:-0.219200pt;}
.ls29{letter-spacing:-0.216533pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.142933pt;}
.ls28{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls26{letter-spacing:-0.111467pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls22{letter-spacing:-0.062933pt;}
.ls18{letter-spacing:-0.056533pt;}
.ls19{letter-spacing:-0.044160pt;}
.ls1e{letter-spacing:-0.034560pt;}
.ls20{letter-spacing:-0.013120pt;}
.ls1b{letter-spacing:-0.008000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.004800pt;}
.ls4{letter-spacing:0.013120pt;}
.ls21{letter-spacing:0.037120pt;}
.ls10{letter-spacing:0.040320pt;}
.ls17{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls1d{letter-spacing:0.060800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.086933pt;}
.ls1c{letter-spacing:0.087467pt;}
.ls12{letter-spacing:0.093867pt;}
.ls13{letter-spacing:0.100800pt;}
.ls14{letter-spacing:0.102933pt;}
.ls2a{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.106667pt;}
.ls25{letter-spacing:0.127467pt;}
.ls8{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.164907pt;}
.ls15{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:12.663680pt;}
.ls24{letter-spacing:42.423680pt;}
.ls23{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.933867pt;}
.ws5{word-spacing:-11.910933pt;}
.ws18{word-spacing:-11.884267pt;}
.ws1d{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.859733pt;}
.wsa{word-spacing:-11.850667pt;}
.ws12{word-spacing:-11.844267pt;}
.ws11{word-spacing:-11.843733pt;}
.ws13{word-spacing:-11.817600pt;}
.wse{word-spacing:-11.800320pt;}
.ws16{word-spacing:-11.793920pt;}
.ws3{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.748800pt;}
.ws15{word-spacing:-11.743680pt;}
.ws14{word-spacing:-11.722240pt;}
.wsf{word-spacing:-11.700267pt;}
.ws17{word-spacing:-11.693867pt;}
.ws19{word-spacing:-11.645333pt;}
.ws1b{word-spacing:-11.620267pt;}
.wsc{word-spacing:-11.613867pt;}
.ws4{word-spacing:-11.590933pt;}
.ws1c{word-spacing:-11.540267pt;}
.ws1a{word-spacing:-11.378133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._7{margin-left:-3.885335pt;}
._3{margin-left:-2.725333pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.954656pt;}
._c{width:1.977641pt;}
._5{width:2.939200pt;}
._6{width:4.221867pt;}
._e{width:5.304320pt;}
._d{width:6.601494pt;}
._a{width:7.534933pt;}
._b{width:8.710934pt;}
._10{width:9.723199pt;}
._2{width:10.712533pt;}
._4{width:12.665066pt;}
._21{width:13.689186pt;}
._f{width:14.856320pt;}
._22{width:15.818240pt;}
._38{width:16.853129pt;}
._8{width:17.795734pt;}
._9{width:18.703466pt;}
._20{width:19.708515pt;}
._1d{width:20.627840pt;}
._39{width:21.536320pt;}
._44{width:22.471360pt;}
._34{width:23.673920pt;}
._2f{width:25.437440pt;}
._49{width:26.472107pt;}
._2e{width:28.269760pt;}
._3d{width:29.167787pt;}
._2a{width:30.781440pt;}
._18{width:32.224320pt;}
._48{width:33.720640pt;}
._4a{width:35.116597pt;}
._40{width:36.016320pt;}
._25{width:37.194240pt;}
._4b{width:38.425600pt;}
._47{width:39.703467pt;}
._11{width:40.721280pt;}
._23{width:44.515520pt;}
._31{width:46.019104pt;}
._1e{width:49.110827pt;}
._2d{width:50.073813pt;}
._37{width:51.783360pt;}
._35{width:56.112000pt;}
._45{width:57.682880pt;}
._1b{width:59.906240pt;}
._46{width:61.209920pt;}
._3b{width:62.150720pt;}
._14{width:63.860800pt;}
._2c{width:65.036480pt;}
._3e{width:67.868800pt;}
._24{width:69.846080pt;}
._1f{width:74.548800pt;}
._2b{width:76.579520pt;}
._1a{width:79.091200pt;}
._3c{width:81.656320pt;}
._30{width:85.236800pt;}
._19{width:89.502720pt;}
._3a{width:98.222720pt;}
._33{width:105.330240pt;}
._27{width:111.743040pt;}
._3f{width:113.560000pt;}
._36{width:120.934720pt;}
._28{width:130.233280pt;}
._32{width:133.279360pt;}
._16{width:136.123627pt;}
._15{width:143.058880pt;}
._1c{width:148.082240pt;}
._26{width:153.586560pt;}
._12{width:156.418880pt;}
._42{width:161.656000pt;}
._43{width:167.106880pt;}
._41{width:169.458240pt;}
._29{width:187.467520pt;}
._13{width:190.513600pt;}
._17{width:216.164800pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:6.960000pt;}
.y41{bottom:7.040000pt;}
.y124{bottom:7.066667pt;}
.y49{bottom:22.560000pt;}
.y40{bottom:22.640000pt;}
.y43{bottom:38.240000pt;}
.y9a{bottom:38.320000pt;}
.y98{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y213{bottom:101.066667pt;}
.y204{bottom:102.826667pt;}
.y115{bottom:103.066667pt;}
.y287{bottom:103.226667pt;}
.y108{bottom:103.626667pt;}
.y236{bottom:103.946667pt;}
.y24e{bottom:110.186667pt;}
.y28d{bottom:111.226667pt;}
.y53{bottom:112.986667pt;}
.y189{bottom:116.666667pt;}
.y203{bottom:118.506667pt;}
.y114{bottom:118.666667pt;}
.y286{bottom:118.826667pt;}
.ye5{bottom:119.226667pt;}
.y235{bottom:119.626667pt;}
.y27a{bottom:120.986667pt;}
.y29{bottom:121.226667pt;}
.y1a8{bottom:125.386667pt;}
.y24d{bottom:125.786667pt;}
.y2ab{bottom:126.506667pt;}
.y149{bottom:126.826667pt;}
.y52{bottom:128.586667pt;}
.y212{bottom:131.066667pt;}
.y188{bottom:132.266667pt;}
.y131{bottom:132.506667pt;}
.y1c4{bottom:132.666667pt;}
.y202{bottom:134.106667pt;}
.y28a{bottom:134.506667pt;}
.ye4{bottom:134.826667pt;}
.y21f{bottom:135.226667pt;}
.y279{bottom:136.666667pt;}
.y28{bottom:136.826667pt;}
.y1ea{bottom:138.186667pt;}
.yc0{bottom:138.746667pt;}
.y211{bottom:139.226667pt;}
.y1a7{bottom:140.986667pt;}
.y2aa{bottom:142.106667pt;}
.y148{bottom:142.506667pt;}
.y81{bottom:142.906667pt;}
.y6e{bottom:143.466667pt;}
.y51{bottom:144.266667pt;}
.y187{bottom:147.866667pt;}
.y130{bottom:148.106667pt;}
.y1c3{bottom:148.266667pt;}
.y24c{bottom:149.706667pt;}
.y201{bottom:149.786667pt;}
.y289{bottom:150.106667pt;}
.y113{bottom:150.346667pt;}
.ye3{bottom:150.506667pt;}
.y21e{bottom:150.826667pt;}
.y1e9{bottom:153.866667pt;}
.ybf{bottom:154.426667pt;}
.y1a6{bottom:156.666667pt;}
.y147{bottom:158.106667pt;}
.y80{bottom:158.586667pt;}
.y6d{bottom:159.146667pt;}
.y50{bottom:159.866667pt;}
.y278{bottom:160.266667pt;}
.y27{bottom:160.746667pt;}
.y186{bottom:163.546667pt;}
.y12f{bottom:163.786667pt;}
.y1c2{bottom:163.946667pt;}
.y200{bottom:165.386667pt;}
.y2a9{bottom:165.786667pt;}
.y112{bottom:165.946667pt;}
.y107{bottom:166.106667pt;}
.y21d{bottom:166.506667pt;}
.yfb{bottom:168.026667pt;}
.y1e8{bottom:169.466667pt;}
.ybe{bottom:170.026667pt;}
.ya5{bottom:172.986667pt;}
.y146{bottom:173.786667pt;}
.y7f{bottom:174.186667pt;}
.y6c{bottom:174.746667pt;}
.y4f{bottom:175.466667pt;}
.y277{bottom:175.866667pt;}
.y171{bottom:177.866667pt;}
.y185{bottom:179.146667pt;}
.y12e{bottom:179.386667pt;}
.y1a5{bottom:180.266667pt;}
.y1ff{bottom:180.986667pt;}
.y2a8{bottom:181.386667pt;}
.y111{bottom:181.546667pt;}
.y285{bottom:181.786667pt;}
.ye2{bottom:182.106667pt;}
.y24b{bottom:182.906667pt;}
.yfa{bottom:183.626667pt;}
.ybd{bottom:185.626667pt;}
.y1c1{bottom:187.546667pt;}
.y145{bottom:189.386667pt;}
.y6b{bottom:190.426667pt;}
.y4e{bottom:191.146667pt;}
.ya4{bottom:191.386667pt;}
.y276{bottom:191.546667pt;}
.y1e7{bottom:193.066667pt;}
.y170{bottom:193.466667pt;}
.y184{bottom:194.826667pt;}
.y12d{bottom:194.986667pt;}
.y1fe{bottom:196.666667pt;}
.y2a7{bottom:196.986667pt;}
.y284{bottom:197.386667pt;}
.ye1{bottom:197.786667pt;}
.yf9{bottom:199.306667pt;}
.y110{bottom:202.186667pt;}
.y26{bottom:203.706667pt;}
.y144{bottom:204.986667pt;}
.y290{bottom:205.386667pt;}
.y7e{bottom:205.786667pt;}
.y6a{bottom:206.026667pt;}
.y4d{bottom:206.746667pt;}
.y16f{bottom:209.066667pt;}
.ya3{bottom:209.786667pt;}
.y183{bottom:210.426667pt;}
.y1a4{bottom:211.946667pt;}
.y1fd{bottom:212.266667pt;}
.y283{bottom:212.986667pt;}
.ye0{bottom:213.386667pt;}
.yf8{bottom:214.906667pt;}
.y275{bottom:215.146667pt;}
.ybc{bottom:217.306667pt;}
.y12c{bottom:218.666667pt;}
.y210{bottom:219.066667pt;}
.y1c0{bottom:219.146667pt;}
.y25{bottom:219.626667pt;}
.y2a6{bottom:220.666667pt;}
.y28c{bottom:220.986667pt;}
.y7d{bottom:221.466667pt;}
.y69{bottom:221.626667pt;}
.y4c{bottom:222.826667pt;}
.y16e{bottom:224.746667pt;}
.y24a{bottom:225.866667pt;}
.y182{bottom:226.026667pt;}
.y1fc{bottom:227.946667pt;}
.ya2{bottom:228.186667pt;}
.y143{bottom:228.666667pt;}
.ydf{bottom:228.986667pt;}
.y274{bottom:230.826667pt;}
.ybb{bottom:232.906667pt;}
.y1bf{bottom:234.826667pt;}
.y2a5{bottom:236.266667pt;}
.y282{bottom:236.666667pt;}
.y238{bottom:236.986667pt;}
.y7c{bottom:237.066667pt;}
.y68{bottom:237.306667pt;}
.y234{bottom:237.386667pt;}
.y4b{bottom:238.426667pt;}
.y1e6{bottom:240.346667pt;}
.y249{bottom:241.466667pt;}
.y1a3{bottom:243.546667pt;}
.yde{bottom:244.666667pt;}
.y273{bottom:246.426667pt;}
.ya1{bottom:246.586667pt;}
.y16d{bottom:248.346667pt;}
.yba{bottom:248.586667pt;}
.y181{bottom:249.706667pt;}
.y12b{bottom:250.266667pt;}
.y1fb{bottom:251.546667pt;}
.y2a4{bottom:251.946667pt;}
.y281{bottom:252.266667pt;}
.y24{bottom:252.506667pt;}
.y7b{bottom:252.666667pt;}
.y233{bottom:252.986667pt;}
.y1e5{bottom:255.946667pt;}
.y248{bottom:257.066667pt;}
.y1be{bottom:258.426667pt;}
.y20f{bottom:258.986667pt;}
.y1a2{bottom:259.146667pt;}
.ydd{bottom:260.266667pt;}
.yf7{bottom:262.186667pt;}
.yb9{bottom:264.186667pt;}
.ya0{bottom:264.986667pt;}
.y12a{bottom:265.946667pt;}
.y280{bottom:267.946667pt;}
.y23{bottom:268.106667pt;}
.y21c{bottom:268.266667pt;}
.y7a{bottom:268.346667pt;}
.y232{bottom:268.666667pt;}
.y67{bottom:268.906667pt;}
.y272{bottom:270.026667pt;}
.y1e4{bottom:271.626667pt;}
.y247{bottom:272.746667pt;}
.y1a1{bottom:274.826667pt;}
.y2a3{bottom:275.546667pt;}
.ydc{bottom:275.946667pt;}
.yf6{bottom:277.786667pt;}
.y4a{bottom:278.426667pt;}
.yb8{bottom:279.786667pt;}
.y16c{bottom:279.946667pt;}
.y180{bottom:281.306667pt;}
.y129{bottom:281.546667pt;}
.y1fa{bottom:283.146667pt;}
.y9f{bottom:283.386667pt;}
.y22{bottom:283.786667pt;}
.y79{bottom:283.946667pt;}
.y231{bottom:284.266667pt;}
.y66{bottom:284.586667pt;}
.y271{bottom:285.706667pt;}
.y1e3{bottom:287.226667pt;}
.y246{bottom:288.346667pt;}
.y1bd{bottom:290.106667pt;}
.y1a0{bottom:290.426667pt;}
.y2a2{bottom:291.146667pt;}
.y142{bottom:291.546667pt;}
.yf5{bottom:293.466667pt;}
.yb7{bottom:295.466667pt;}
.y16b{bottom:295.626667pt;}
.y17f{bottom:296.906667pt;}
.y128{bottom:297.146667pt;}
.y1f9{bottom:298.826667pt;}
.y20e{bottom:298.906667pt;}
.y21{bottom:299.386667pt;}
.y106{bottom:299.546667pt;}
.y78{bottom:299.626667pt;}
.y21b{bottom:299.946667pt;}
.y9e{bottom:300.106667pt;}
.y65{bottom:300.186667pt;}
.y270{bottom:301.306667pt;}
.y245{bottom:303.946667pt;}
.y1bc{bottom:305.706667pt;}
.y141{bottom:307.146667pt;}
.ydb{bottom:307.546667pt;}
.y9d{bottom:308.186667pt;}
.yf4{bottom:309.066667pt;}
.y1e2{bottom:310.906667pt;}
.yb6{bottom:311.066667pt;}
.y16a{bottom:311.226667pt;}
.y17e{bottom:312.586667pt;}
.y127{bottom:312.826667pt;}
.y19f{bottom:314.106667pt;}
.y1f8{bottom:314.426667pt;}
.y2a1{bottom:314.826667pt;}
.y20{bottom:315.066667pt;}
.y28b{bottom:315.146667pt;}
.y21a{bottom:315.546667pt;}
.y64{bottom:315.786667pt;}
.y48{bottom:318.346667pt;}
.y244{bottom:319.626667pt;}
.y1bb{bottom:321.306667pt;}
.y27f{bottom:322.826667pt;}
.yda{bottom:323.146667pt;}
.y77{bottom:323.226667pt;}
.y26f{bottom:324.986667pt;}
.yb5{bottom:326.666667pt;}
.y169{bottom:326.906667pt;}
.y1f7{bottom:330.106667pt;}
.y2a0{bottom:330.426667pt;}
.y1f{bottom:330.666667pt;}
.y288{bottom:330.826667pt;}
.y105{bottom:331.146667pt;}
.y63{bottom:331.466667pt;}
.y126{bottom:336.746667pt;}
.yd9{bottom:338.826667pt;}
.y26e{bottom:340.586667pt;}
.yf3{bottom:340.666667pt;}
.yb4{bottom:342.346667pt;}
.y168{bottom:342.506667pt;}
.y17d{bottom:344.186667pt;}
.y19e{bottom:345.706667pt;}
.y1e{bottom:346.266667pt;}
.y27e{bottom:346.426667pt;}
.y104{bottom:346.826667pt;}
.y62{bottom:347.066667pt;}
.y9c{bottom:348.106667pt;}
.y243{bottom:351.226667pt;}
.y1ba{bottom:352.986667pt;}
.y29f{bottom:354.106667pt;}
.yd8{bottom:354.426667pt;}
.y20d{bottom:354.506667pt;}
.y76{bottom:354.826667pt;}
.yf2{bottom:356.346667pt;}
.y1e1{bottom:358.106667pt;}
.y17c{bottom:359.866667pt;}
.y19d{bottom:361.306667pt;}
.y1d{bottom:361.946667pt;}
.y27d{bottom:362.106667pt;}
.y103{bottom:362.426667pt;}
.y26d{bottom:364.186667pt;}
.yb3{bottom:365.946667pt;}
.y242{bottom:366.906667pt;}
.y1f6{bottom:369.306667pt;}
.y29e{bottom:369.706667pt;}
.yd7{bottom:370.106667pt;}
.y75{bottom:370.506667pt;}
.y61{bottom:370.666667pt;}
.yf1{bottom:371.946667pt;}
.y1e0{bottom:373.786667pt;}
.y47{bottom:373.866667pt;}
.y167{bottom:374.106667pt;}
.y17b{bottom:375.466667pt;}
.y19c{bottom:376.986667pt;}
.y125{bottom:377.306667pt;}
.y1c{bottom:377.546667pt;}
.y102{bottom:378.106667pt;}
.y26c{bottom:379.866667pt;}
.y241{bottom:382.506667pt;}
.y1b9{bottom:384.586667pt;}
.yd6{bottom:385.706667pt;}
.y74{bottom:386.106667pt;}
.y230{bottom:386.426667pt;}
.yf0{bottom:387.626667pt;}
.y9b{bottom:388.026667pt;}
.y1df{bottom:389.386667pt;}
.y166{bottom:389.786667pt;}
.y17a{bottom:391.066667pt;}
.y19b{bottom:392.586667pt;}
.y1b{bottom:393.226667pt;}
.y29d{bottom:393.306667pt;}
.y28f{bottom:393.706667pt;}
.yb2{bottom:397.626667pt;}
.y240{bottom:398.106667pt;}
.y1b8{bottom:400.266667pt;}
.y1f5{bottom:400.986667pt;}
.y140{bottom:401.306667pt;}
.y73{bottom:401.786667pt;}
.y22f{bottom:402.106667pt;}
.y60{bottom:402.346667pt;}
.yef{bottom:403.226667pt;}
.y26b{bottom:403.466667pt;}
.y1de{bottom:405.066667pt;}
.y165{bottom:405.386667pt;}
.y179{bottom:406.746667pt;}
.y1a{bottom:408.826667pt;}
.y29c{bottom:408.986667pt;}
.yd5{bottom:409.306667pt;}
.y101{bottom:409.706667pt;}
.yb1{bottom:413.226667pt;}
.y20c{bottom:413.386667pt;}
.y23f{bottom:413.786667pt;}
.y1b7{bottom:415.866667pt;}
.y19a{bottom:416.266667pt;}
.y1f4{bottom:416.586667pt;}
.y123{bottom:417.226667pt;}
.y28e{bottom:417.306667pt;}
.y72{bottom:417.386667pt;}
.y22e{bottom:417.733333pt;}
.y5f{bottom:417.973333pt;}
.yee{bottom:418.853333pt;}
.y26a{bottom:419.093333pt;}
.y164{bottom:421.093333pt;}
.y19{bottom:424.453333pt;}
.y27c{bottom:425.013333pt;}
.y100{bottom:425.333333pt;}
.y99{bottom:427.973333pt;}
.y1dd{bottom:428.693333pt;}
.yb0{bottom:428.853333pt;}
.y23e{bottom:429.413333pt;}
.y46{bottom:429.493333pt;}
.y178{bottom:430.373333pt;}
.y1f3{bottom:432.293333pt;}
.y29b{bottom:432.613333pt;}
.y71{bottom:433.013333pt;}
.y22d{bottom:433.333333pt;}
.y5e{bottom:433.653333pt;}
.yed{bottom:434.533333pt;}
.y269{bottom:434.773333pt;}
.y163{bottom:436.693333pt;}
.y20b{bottom:437.333333pt;}
.y18{bottom:440.133333pt;}
.y27b{bottom:440.613333pt;}
.yd4{bottom:441.013333pt;}
.y122{bottom:441.573333pt;}
.yaf{bottom:444.533333pt;}
.y23d{bottom:445.093333pt;}
.y1b6{bottom:447.493333pt;}
.y199{bottom:447.893333pt;}
.y29a{bottom:448.293333pt;}
.y13f{bottom:448.613333pt;}
.y22c{bottom:449.013333pt;}
.y5d{bottom:449.253333pt;}
.yec{bottom:450.133333pt;}
.y162{bottom:452.293333pt;}
.y17{bottom:455.733333pt;}
.yd3{bottom:456.613333pt;}
.y177{bottom:458.133333pt;}
.y268{bottom:458.373333pt;}
.yae{bottom:460.133333pt;}
.y1dc{bottom:460.293333pt;}
.y70{bottom:461.653333pt;}
.y13e{bottom:464.293333pt;}
.y22b{bottom:464.613333pt;}
.y5c{bottom:464.853333pt;}
.yeb{bottom:465.813333pt;}
.y121{bottom:465.893333pt;}
.y176{bottom:466.213333pt;}
.y23c{bottom:469.013333pt;}
.y16{bottom:471.413333pt;}
.y299{bottom:471.893333pt;}
.yd2{bottom:472.293333pt;}
.y267{bottom:474.053333pt;}
.yad{bottom:475.813333pt;}
.y161{bottom:475.973333pt;}
.y1b5{bottom:479.173333pt;}
.y198{bottom:479.493333pt;}
.y13d{bottom:479.893333pt;}
.y20a{bottom:480.293333pt;}
.y5b{bottom:480.533333pt;}
.y45{bottom:485.013333pt;}
.y15{bottom:487.013333pt;}
.y298{bottom:487.493333pt;}
.yd1{bottom:487.893333pt;}
.yea{bottom:489.413333pt;}
.yac{bottom:491.413333pt;}
.y1db{bottom:491.573333pt;}
.y1b4{bottom:494.773333pt;}
.y197{bottom:495.173333pt;}
.y13c{bottom:495.493333pt;}
.y209{bottom:495.893333pt;}
.y5a{bottom:496.133333pt;}
.y266{bottom:497.653333pt;}
.y97{bottom:499.173333pt;}
.y14{bottom:502.613333pt;}
.yd0{bottom:503.493333pt;}
.y120{bottom:505.813333pt;}
.y1da{bottom:507.253333pt;}
.y160{bottom:507.573333pt;}
.y196{bottom:510.773333pt;}
.y297{bottom:511.173333pt;}
.y208{bottom:511.493333pt;}
.y23b{bottom:511.893333pt;}
.y265{bottom:513.253333pt;}
.yab{bottom:515.013333pt;}
.y13{bottom:518.293333pt;}
.y1b3{bottom:518.453333pt;}
.ycf{bottom:519.173333pt;}
.y59{bottom:519.813333pt;}
.ye9{bottom:521.013333pt;}
.y1d9{bottom:522.853333pt;}
.y15f{bottom:523.253333pt;}
.y195{bottom:526.453333pt;}
.y296{bottom:526.773333pt;}
.y207{bottom:527.173333pt;}
.y23a{bottom:527.493333pt;}
.y11f{bottom:530.053333pt;}
.yce{bottom:534.773333pt;}
.y22a{bottom:535.173333pt;}
.ye8{bottom:536.693333pt;}
.y264{bottom:536.933333pt;}
.y175{bottom:537.413333pt;}
.y1d8{bottom:538.453333pt;}
.y15e{bottom:538.853333pt;}
.y42{bottom:540.613333pt;}
.y194{bottom:542.053333pt;}
.y12{bottom:542.213333pt;}
.y1f2{bottom:542.453333pt;}
.y237{bottom:542.773333pt;}
.y219{bottom:543.173333pt;}
.yaa{bottom:546.693333pt;}
.y1b2{bottom:550.053333pt;}
.yff{bottom:550.453333pt;}
.y13b{bottom:550.773333pt;}
.y58{bottom:551.413333pt;}
.ye7{bottom:552.293333pt;}
.y263{bottom:552.533333pt;}
.y193{bottom:557.653333pt;}
.y1f1{bottom:558.053333pt;}
.ycd{bottom:558.453333pt;}
.y206{bottom:558.773333pt;}
.y1d7{bottom:562.133333pt;}
.ya9{bottom:562.293333pt;}
.y1b1{bottom:565.653333pt;}
.y295{bottom:566.053333pt;}
.y13a{bottom:566.453333pt;}
.y229{bottom:566.773333pt;}
.y57{bottom:567.013333pt;}
.y11e{bottom:570.053333pt;}
.y96{bottom:570.373333pt;}
.y15d{bottom:570.453333pt;}
.ye6{bottom:572.933333pt;}
.y1f0{bottom:573.653333pt;}
.yfe{bottom:574.053333pt;}
.y205{bottom:574.453333pt;}
.y262{bottom:576.213333pt;}
.ya8{bottom:577.973333pt;}
.y192{bottom:581.333333pt;}
.y294{bottom:581.653333pt;}
.y139{bottom:582.053333pt;}
.y228{bottom:582.453333pt;}
.y56{bottom:582.693333pt;}
.y11{bottom:585.093333pt;}
.y15c{bottom:586.133333pt;}
.ycc{bottom:590.053333pt;}
.y261{bottom:591.813333pt;}
.y174{bottom:593.013333pt;}
.ya7{bottom:593.573333pt;}
.y1d6{bottom:593.733333pt;}
.y3f{bottom:596.133333pt;}
.y1b0{bottom:596.933333pt;}
.y1ef{bottom:597.333333pt;}
.y138{bottom:597.653333pt;}
.y227{bottom:598.053333pt;}
.y15b{bottom:601.733333pt;}
.y293{bottom:605.333333pt;}
.ycb{bottom:605.653333pt;}
.y1d5{bottom:609.413333pt;}
.y55{bottom:611.333333pt;}
.y191{bottom:612.933333pt;}
.y11d{bottom:613.333333pt;}
.y226{bottom:613.653333pt;}
.ya6{bottom:614.213333pt;}
.y260{bottom:615.413333pt;}
.y10{bottom:616.693333pt;}
.y15a{bottom:617.413333pt;}
.y1af{bottom:620.613333pt;}
.y292{bottom:620.933333pt;}
.yca{bottom:621.333333pt;}
.y1d4{bottom:625.013333pt;}
.y190{bottom:628.613333pt;}
.y1ee{bottom:628.933333pt;}
.y137{bottom:629.333333pt;}
.y25f{bottom:631.093333pt;}
.y159{bottom:633.013333pt;}
.yc9{bottom:636.933333pt;}
.y218{bottom:637.333333pt;}
.y3e{bottom:637.813333pt;}
.y1d3{bottom:640.613333pt;}
.y18f{bottom:644.213333pt;}
.y1ed{bottom:644.613333pt;}
.y95{bottom:644.933333pt;}
.y25e{bottom:646.693333pt;}
.yf{bottom:648.533333pt;}
.y158{bottom:648.613333pt;}
.y1ae{bottom:652.213333pt;}
.yc8{bottom:652.613333pt;}
.y217{bottom:652.933333pt;}
.y1d2{bottom:656.293333pt;}
.y18e{bottom:659.813333pt;}
.y1ec{bottom:660.213333pt;}
.y11c{bottom:660.613333pt;}
.y3d{bottom:664.293333pt;}
.y1ad{bottom:667.813333pt;}
.yc7{bottom:668.213333pt;}
.y216{bottom:668.613333pt;}
.y25d{bottom:670.373333pt;}
.y1d1{bottom:671.893333pt;}
.y157{bottom:672.293333pt;}
.y18d{bottom:675.493333pt;}
.y1eb{bottom:675.813333pt;}
.y11b{bottom:676.213333pt;}
.y94{bottom:676.613333pt;}
.y1ac{bottom:683.493333pt;}
.yc6{bottom:683.813333pt;}
.ye{bottom:683.893333pt;}
.y215{bottom:684.213333pt;}
.y25c{bottom:685.973333pt;}
.y3c{bottom:688.213333pt;}
.yfd{bottom:691.813333pt;}
.y93{bottom:692.213333pt;}
.y1d0{bottom:695.573333pt;}
.y18c{bottom:699.093333pt;}
.y291{bottom:699.493333pt;}
.y214{bottom:699.813333pt;}
.yd{bottom:699.893333pt;}
.y10f{bottom:699.973333pt;}
.y156{bottom:703.893333pt;}
.y11a{bottom:707.493333pt;}
.y92{bottom:707.813333pt;}
.y10e{bottom:708.133333pt;}
.y25b{bottom:709.573333pt;}
.yc5{bottom:715.493333pt;}
.yc{bottom:715.893333pt;}
.y155{bottom:719.573333pt;}
.y1ab{bottom:722.693333pt;}
.y119{bottom:723.093333pt;}
.y91{bottom:723.493333pt;}
.y25a{bottom:725.253333pt;}
.y1cf{bottom:727.173333pt;}
.yb{bottom:728.533333pt;}
.y18b{bottom:730.693333pt;}
.y3b{bottom:731.093333pt;}
.y225{bottom:731.493333pt;}
.y154{bottom:735.173333pt;}
.y118{bottom:738.693333pt;}
.y90{bottom:739.093333pt;}
.y1ce{bottom:742.773333pt;}
.y3a{bottom:746.693333pt;}
.y224{bottom:747.093333pt;}
.ya{bottom:747.893333pt;}
.y10d{bottom:748.053333pt;}
.y259{bottom:748.853333pt;}
.y153{bottom:750.773333pt;}
.y1aa{bottom:754.373333pt;}
.y8f{bottom:754.693333pt;}
.y1cd{bottom:758.453333pt;}
.y39{bottom:762.373333pt;}
.y223{bottom:762.693333pt;}
.y9{bottom:763.893333pt;}
.y258{bottom:764.533333pt;}
.y152{bottom:766.453333pt;}
.y1a9{bottom:769.973333pt;}
.y8e{bottom:770.373333pt;}
.y38{bottom:777.973333pt;}
.y222{bottom:778.373333pt;}
.y8{bottom:779.893333pt;}
.y1cc{bottom:782.053333pt;}
.yc4{bottom:785.973333pt;}
.y239{bottom:786.373333pt;}
.y257{bottom:788.133333pt;}
.y151{bottom:790.053333pt;}
.y37{bottom:793.653333pt;}
.y221{bottom:793.973333pt;}
.y7{bottom:795.893333pt;}
.yfc{bottom:801.653333pt;}
.y8d{bottom:801.973333pt;}
.y10c{bottom:803.573333pt;}
.y256{bottom:803.733333pt;}
.y18a{bottom:809.253333pt;}
.y220{bottom:809.653333pt;}
.y1cb{bottom:813.733333pt;}
.y117{bottom:817.253333pt;}
.y8c{bottom:817.653333pt;}
.y150{bottom:821.733333pt;}
.y6{bottom:824.613333pt;}
.y36{bottom:825.253333pt;}
.y255{bottom:827.413333pt;}
.y1ca{bottom:829.333333pt;}
.y173{bottom:832.853333pt;}
.y8b{bottom:833.253333pt;}
.y14f{bottom:837.333333pt;}
.y35{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y254{bottom:843.013333pt;}
.y1c9{bottom:844.933333pt;}
.y8a{bottom:848.853333pt;}
.y14e{bottom:852.933333pt;}
.y34{bottom:856.533333pt;}
.y136{bottom:856.853333pt;}
.y253{bottom:858.693333pt;}
.y10b{bottom:859.173333pt;}
.y1c8{bottom:860.613333pt;}
.y89{bottom:864.533333pt;}
.y14d{bottom:868.613333pt;}
.y33{bottom:872.133333pt;}
.y135{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y1c7{bottom:876.213333pt;}
.y88{bottom:880.133333pt;}
.yc3{bottom:880.533333pt;}
.y252{bottom:882.533333pt;}
.y14c{bottom:884.213333pt;}
.y134{bottom:888.133333pt;}
.y1c6{bottom:891.813333pt;}
.y87{bottom:895.813333pt;}
.yc2{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y14b{bottom:899.840000pt;}
.y32{bottom:903.840000pt;}
.y116{bottom:911.440000pt;}
.yc1{bottom:911.840000pt;}
.y10a{bottom:914.720000pt;}
.y1c5{bottom:915.760000pt;}
.y31{bottom:919.440000pt;}
.y14a{bottom:923.760000pt;}
.y251{bottom:925.520000pt;}
.y172{bottom:927.040000pt;}
.y86{bottom:927.440000pt;}
.y30{bottom:935.040000pt;}
.y133{bottom:935.440000pt;}
.y250{bottom:941.120000pt;}
.y85{bottom:943.040000pt;}
.y2f{bottom:950.720000pt;}
.y132{bottom:951.040000pt;}
.y84{bottom:958.720000pt;}
.y24f{bottom:965.040000pt;}
.y2e{bottom:966.320000pt;}
.y6f{bottom:966.720000pt;}
.y109{bottom:970.320000pt;}
.y83{bottom:974.320000pt;}
.y54{bottom:982.320000pt;}
.y82{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h18{height:23.600000pt;}
.h1a{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.hc{height:32.890957pt;}
.h16{height:33.312500pt;}
.h3{height:34.804688pt;}
.h10{height:39.200000pt;}
.hd{height:39.280000pt;}
.h15{height:39.306667pt;}
.h8{height:40.497500pt;}
.h7{height:45.246562pt;}
.h9{height:46.499062pt;}
.ha{height:49.581562pt;}
.h5{height:50.954062pt;}
.h13{height:53.309531pt;}
.he{height:54.880000pt;}
.hf{height:54.906667pt;}
.h1b{height:54.927899pt;}
.h19{height:54.960000pt;}
.h12{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h11{height:65.781915pt;}
.h17{height:66.625000pt;}
.h14{height:70.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:52.400000pt;}
.w5{width:55.920000pt;}
.w11{width:67.200000pt;}
.w1f{width:68.960000pt;}
.w3{width:69.520000pt;}
.wb{width:75.520000pt;}
.w15{width:75.680000pt;}
.wf{width:76.160000pt;}
.w24{width:77.280000pt;}
.wa{width:85.066667pt;}
.w1d{width:87.680000pt;}
.w1b{width:90.800000pt;}
.w6{width:92.960000pt;}
.w1c{width:95.786667pt;}
.w1a{width:99.120000pt;}
.wd{width:108.186667pt;}
.w19{width:109.946667pt;}
.w7{width:113.946667pt;}
.w1e{width:115.360000pt;}
.wc{width:115.680000pt;}
.w20{width:117.946667pt;}
.w16{width:120.346667pt;}
.w10{width:123.306667pt;}
.w13{width:124.746667pt;}
.w8{width:126.880000pt;}
.w14{width:132.960000pt;}
.w23{width:138.720000pt;}
.w4{width:138.906667pt;}
.w12{width:144.480000pt;}
.w22{width:145.786667pt;}
.we{width:154.640000pt;}
.w21{width:189.360000pt;}
.w17{width:228.400000pt;}
.w18{width:245.306667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x15{left:6.880000pt;}
.x1{left:60.480000pt;}
.x12{left:65.999988pt;}
.x1d{left:68.639988pt;}
.x11{left:70.719988pt;}
.x10{left:80.239988pt;}
.x13{left:82.959988pt;}
.xc{left:85.599988pt;}
.xd{left:87.679988pt;}
.x30{left:98.879988pt;}
.x16{left:114.240000pt;}
.x14{left:118.479988pt;}
.x5{left:131.360000pt;}
.x25{left:161.626655pt;}
.x2{left:170.186655pt;}
.x28{left:171.706667pt;}
.x2c{left:179.706667pt;}
.x26{left:182.186667pt;}
.x20{left:185.066667pt;}
.x17{left:199.946667pt;}
.x1e{left:230.826655pt;}
.xe{left:233.866655pt;}
.x21{left:252.986667pt;}
.x6{left:270.986667pt;}
.x18{left:276.186667pt;}
.x1f{left:298.666655pt;}
.x7{left:327.546667pt;}
.x29{left:362.906667pt;}
.x2d{left:369.706667pt;}
.x19{left:392.506667pt;}
.x22{left:398.186667pt;}
.x27{left:411.226667pt;}
.x8{left:421.146667pt;}
.x2a{left:459.413333pt;}
.x1a{left:501.333333pt;}
.x2e{left:516.213333pt;}
.x23{left:523.573333pt;}
.x9{left:535.733333pt;}
.x2b{left:547.813333pt;}
.x24{left:591.013322pt;}
.xb{left:615.013322pt;}
.xf{left:623.013322pt;}
.x2f{left:655.573333pt;}
.x1b{left:656.693333pt;}
.xa{left:663.333333pt;}
.x1c{left:696.053322pt;}
.x3{left:711.413322pt;}
}




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