
    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_305564cc2edb93657771cd41.woff')format("woff");}.ff1{font-family:ff1;line-height:0.964844;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_2119592aabca752288475767.woff')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_455c5050d28857d930e1b6e1.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f7c900738eab175bb296a025.woff')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_3814bc795deb4cb0b7feebe1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_363a3d13943b7e9f5c454090.woff')format("woff");}.ff6{font-family:ff6;line-height:1.034180;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_4575b08d57f11bd3a32e1868.woff')format("woff");}.ff7{font-family:ff7;line-height:0.952637;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_41a3c6c47d1175f700ade8de.woff')format("woff");}.ff8{font-family:ff8;line-height:0.952637;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_70c565fc5bdc4797e3fefa88.woff')format("woff");}.ff9{font-family:ff9;line-height:1.034180;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_8cf360911b748fd2c5d65b51.woff')format("woff");}.ffa{font-family:ffa;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.302400px;}
.ls11{letter-spacing:-0.280200px;}
.ls14{letter-spacing:-0.274800px;}
.lse{letter-spacing:-0.237600px;}
.lsf{letter-spacing:-0.212400px;}
.ls21{letter-spacing:-0.169800px;}
.lsc{letter-spacing:-0.127200px;}
.ls6{letter-spacing:-0.032400px;}
.ls7{letter-spacing:-0.025920px;}
.ls18{letter-spacing:-0.018000px;}
.ls20{letter-spacing:-0.017280px;}
.ls1e{letter-spacing:-0.008640px;}
.lsb{letter-spacing:-0.005040px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.005040px;}
.ls2{letter-spacing:0.017280px;}
.ls1f{letter-spacing:0.025920px;}
.ls3{letter-spacing:0.052560px;}
.ls1c{letter-spacing:0.175200px;}
.ls1b{letter-spacing:0.179280px;}
.lsa{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.217200px;}
.ls16{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.280080px;}
.ls19{letter-spacing:0.280200px;}
.ls5{letter-spacing:0.302400px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.364800px;}
.ls13{letter-spacing:0.439800px;}
.ls1a{letter-spacing:0.482400px;}
.ls22{letter-spacing:0.550200px;}
.ls8{letter-spacing:0.666000px;}
.ls17{letter-spacing:1.620000px;}
.ls1d{letter-spacing:50.346720px;}
.ls4{letter-spacing:847.560000px;}
.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;}
}
.ws0{word-spacing:-40.039920px;}
.ws19{word-spacing:-25.920000px;}
.ws1b{word-spacing:-25.911360px;}
.ws18{word-spacing:-25.885440px;}
.ws1a{word-spacing:-25.876800px;}
.ws4{word-spacing:-25.868160px;}
.ws11{word-spacing:-17.964000px;}
.ws5{word-spacing:-15.606000px;}
.ws1d{word-spacing:-15.490200px;}
.ws13{word-spacing:-15.422400px;}
.wsf{word-spacing:-15.379800px;}
.ws15{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.220200px;}
.wse{word-spacing:-15.157200px;}
.ws8{word-spacing:-15.120000px;}
.ws16{word-spacing:-15.119280px;}
.ws17{word-spacing:-15.115200px;}
.ws6{word-spacing:-14.992560px;}
.ws10{word-spacing:-14.945040px;}
.ws2{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.934960px;}
.ws3{word-spacing:-14.907600px;}
.ws14{word-spacing:-14.812800px;}
.ws1c{word-spacing:-14.770200px;}
.wsb{word-spacing:-14.727600px;}
.wsa{word-spacing:-14.702400px;}
.ws1e{word-spacing:-14.665200px;}
.wsd{word-spacing:-14.659800px;}
.wsc{word-spacing:-14.637600px;}
.ws7{word-spacing:-9.720000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._1{width:1.020000px;}
._4{width:2.262480px;}
._5{width:3.882480px;}
._a{width:6.660000px;}
._b{width:8.062080px;}
._7{width:9.540000px;}
._8{width:39.561120px;}
._9{width:40.688400px;}
._6{width:91.458000px;}
._3{width:127.458000px;}
._2{width:658.938000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:77.760000px;}
.fsa{font-size:90.000000px;}
.fs0{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y55{bottom:3.600000px;}
.y8a{bottom:3.780000px;}
.y2a{bottom:3.960000px;}
.ybf{bottom:3.990000px;}
.y17d{bottom:4.005000px;}
.y52{bottom:4.140000px;}
.y18f{bottom:4.680000px;}
.y28{bottom:6.120000px;}
.y24b{bottom:6.300000px;}
.y281{bottom:8.460000px;}
.y250{bottom:12.240000px;}
.y244{bottom:12.420000px;}
.y257{bottom:12.450000px;}
.y24d{bottom:12.465000px;}
.y34{bottom:14.760000px;}
.ybd{bottom:20.700000px;}
.y2ba{bottom:20.730000px;}
.y88{bottom:20.745000px;}
.y49{bottom:20.880000px;}
.y3f{bottom:20.910000px;}
.y4d{bottom:20.925000px;}
.y2bf{bottom:22.860000px;}
.yd3{bottom:23.040000px;}
.y27f{bottom:23.070000px;}
.y189{bottom:33.480000px;}
.y32{bottom:33.660000px;}
.y27{bottom:33.690000px;}
.y77{bottom:37.620000px;}
.y10c{bottom:37.650000px;}
.y87{bottom:37.665000px;}
.ya5{bottom:37.800000px;}
.y3e{bottom:37.830000px;}
.y270{bottom:37.845000px;}
.y2be{bottom:48.240000px;}
.y141{bottom:48.420000px;}
.y128{bottom:50.445000px;}
.yd2{bottom:50.580000px;}
.yeb{bottom:50.625000px;}
.y76{bottom:54.540000px;}
.y3d{bottom:54.570000px;}
.y86{bottom:54.585000px;}
.ya4{bottom:54.720000px;}
.yd6{bottom:54.750000px;}
.y2a4{bottom:54.765000px;}
.y19c{bottom:56.160000px;}
.y23d{bottom:56.745000px;}
.y1f1{bottom:57.060000px;}
.y44{bottom:57.780000px;}
.y1f0{bottom:61.020000px;}
.y27d{bottom:61.560000px;}
.y13f{bottom:63.180000px;}
.y11d{bottom:63.900000px;}
.y2bc{bottom:64.440000px;}
.y100{bottom:65.340000px;}
.y54{bottom:67.860000px;}
.y23a{bottom:68.940000px;}
.y1d3{bottom:70.560000px;}
.y75{bottom:71.460000px;}
.y3c{bottom:71.490000px;}
.y85{bottom:71.505000px;}
.y25a{bottom:73.650000px;}
.y43{bottom:74.700000px;}
.y27c{bottom:75.060000px;}
.y159{bottom:76.860000px;}
.y2a9{bottom:77.220000px;}
.y19b{bottom:78.300000px;}
.y42{bottom:78.480000px;}
.y1e4{bottom:80.100000px;}
.y185{bottom:80.280000px;}
.yc1{bottom:82.980000px;}
.y23c{bottom:84.285000px;}
.y12b{bottom:88.200000px;}
.y84{bottom:88.245000px;}
.y74{bottom:88.380000px;}
.y3b{bottom:88.410000px;}
.ycf{bottom:88.425000px;}
.y1ef{bottom:88.605000px;}
.ye3{bottom:89.820000px;}
.y267{bottom:90.540000px;}
.y27a{bottom:90.570000px;}
.y239{bottom:91.080000px;}
.y173{bottom:91.440000px;}
.y41{bottom:91.800000px;}
.y1d2{bottom:92.520000px;}
.y172{bottom:95.220000px;}
.yff{bottom:99.900000px;}
.y1e3{bottom:102.240000px;}
.y27b{bottom:102.420000px;}
.y73{bottom:105.120000px;}
.y182{bottom:105.150000px;}
.y83{bottom:105.165000px;}
.y15e{bottom:105.300000px;}
.y3a{bottom:105.330000px;}
.yce{bottom:105.345000px;}
.y171{bottom:108.360000px;}
.y1b3{bottom:108.720000px;}
.ya3{bottom:109.440000px;}
.y158{bottom:111.240000px;}
.y238{bottom:113.040000px;}
.y13e{bottom:114.480000px;}
.y1d1{bottom:114.660000px;}
.y11c{bottom:115.200000px;}
.y2bb{bottom:115.740000px;}
.y298{bottom:116.640000px;}
.yc0{bottom:117.540000px;}
.y266{bottom:118.080000px;}
.y279{bottom:118.110000px;}
.y20d{bottom:120.600000px;}
.y15d{bottom:122.040000px;}
.y39{bottom:122.070000px;}
.y82{bottom:122.085000px;}
.y163{bottom:122.220000px;}
.y19a{bottom:122.250000px;}
.ycd{bottom:122.265000px;}
.ye2{bottom:124.200000px;}
.y278{bottom:124.380000px;}
.y170{bottom:125.280000px;}
.ya2{bottom:126.360000px;}
.y157{bottom:128.880000px;}
.y16f{bottom:129.060000px;}
.y192{bottom:129.600000px;}
.y237{bottom:135.180000px;}
.y1d0{bottom:136.620000px;}
.ybb{bottom:138.600000px;}
.y258{bottom:138.780000px;}
.y1f6{bottom:138.960000px;}
.y38{bottom:138.990000px;}
.y81{bottom:139.005000px;}
.y16e{bottom:142.560000px;}
.y20c{bottom:142.740000px;}
.ya1{bottom:143.145000px;}
.y2a8{bottom:145.440000px;}
.y40{bottom:148.860000px;}
.y13d{bottom:149.040000px;}
.y11b{bottom:149.760000px;}
.y1b2{bottom:151.020000px;}
.yba{bottom:155.565000px;}
.y181{bottom:155.730000px;}
.y80{bottom:155.745000px;}
.y72{bottom:155.910000px;}
.ycc{bottom:155.925000px;}
.y236{bottom:157.140000px;}
.ye1{bottom:158.760000px;}
.ya0{bottom:160.065000px;}
.y37{bottom:163.800000px;}
.y20b{bottom:164.700000px;}
.y26b{bottom:166.320000px;}
.y256{bottom:167.040000px;}
.y2b9{bottom:167.220000px;}
.y11a{bottom:167.400000px;}
.y297{bottom:167.940000px;}
.y1e2{bottom:171.180000px;}
.yb9{bottom:172.485000px;}
.y71{bottom:172.650000px;}
.y7f{bottom:172.665000px;}
.y199{bottom:172.830000px;}
.ycb{bottom:172.845000px;}
.y1b1{bottom:173.160000px;}
.ybe{bottom:173.340000px;}
.y16d{bottom:176.070000px;}
.y9f{bottom:176.985000px;}
.y235{bottom:179.310000px;}
.y1cf{bottom:180.750000px;}
.y13c{bottom:183.630000px;}
.yfe{bottom:185.790000px;}
.y20a{bottom:186.870000px;}
.yb8{bottom:189.405000px;}
.y70{bottom:189.570000px;}
.y7e{bottom:189.585000px;}
.y198{bottom:189.750000px;}
.yca{bottom:189.765000px;}
.ybc{bottom:191.010000px;}
.y1f5{bottom:191.745000px;}
.ye0{bottom:193.350000px;}
.y9e{bottom:193.905000px;}
.y1b0{bottom:195.150000px;}
.y16c{bottom:198.030000px;}
.y26a{bottom:200.910000px;}
.y234{bottom:201.270000px;}
.y255{bottom:201.630000px;}
.y119{bottom:201.990000px;}
.y1e1{bottom:205.770000px;}
.yb7{bottom:206.145000px;}
.y6f{bottom:206.490000px;}
.y7d{bottom:206.505000px;}
.y209{bottom:208.830000px;}
.ydf{bottom:210.990000px;}
.y2a7{bottom:213.870000px;}
.y156{bottom:214.050000px;}
.y1ce{bottom:215.310000px;}
.y1af{bottom:217.290000px;}
.y13b{bottom:218.010000px;}
.y1f4{bottom:219.285000px;}
.y296{bottom:219.450000px;}
.y118{bottom:219.630000px;}
.y16b{bottom:220.170000px;}
.yfd{bottom:220.350000px;}
.yb6{bottom:223.065000px;}
.y180{bottom:223.230000px;}
.y7c{bottom:223.245000px;}
.y6e{bottom:223.410000px;}
.yc9{bottom:223.425000px;}
.y254{bottom:223.590000px;}
.y208{bottom:230.970000px;}
.y9d{bottom:231.705000px;}
.y23{bottom:237.270000px;}
.y1ae{bottom:239.250000px;}
.yb5{bottom:239.985000px;}
.y6d{bottom:240.150000px;}
.y7b{bottom:240.165000px;}
.y197{bottom:240.330000px;}
.yc8{bottom:240.345000px;}
.y16a{bottom:242.130000px;}
.y233{bottom:245.370000px;}
.y155{bottom:248.610000px;}
.y9c{bottom:248.625000px;}
.y13a{bottom:252.570000px;}
.y207{bottom:252.930000px;}
.y2b8{bottom:253.110000px;}
.y117{bottom:254.010000px;}
.yfc{bottom:254.730000px;}
.y22{bottom:255.810000px;}
.yb4{bottom:256.905000px;}
.y6c{bottom:257.070000px;}
.y7a{bottom:257.085000px;}
.y196{bottom:257.250000px;}
.yc7{bottom:257.265000px;}
.y253{bottom:258.150000px;}
.y1cd{bottom:259.410000px;}
.y1e0{bottom:262.290000px;}
.y169{bottom:264.270000px;}
.y277{bottom:264.630000px;}
.y9b{bottom:265.545000px;}
.y232{bottom:267.510000px;}
.y269{bottom:269.130000px;}
.y295{bottom:270.750000px;}
.yb3{bottom:273.645000px;}
.y6b{bottom:273.990000px;}
.yc6{bottom:274.005000px;}
.y79{bottom:274.035000px;}
.y21{bottom:274.530000px;}
.y206{bottom:275.070000px;}
.y89{bottom:275.970000px;}
.y1cc{bottom:281.370000px;}
.y2a6{bottom:282.090000px;}
.y9a{bottom:282.285000px;}
.y154{bottom:282.990000px;}
.y139{bottom:287.130000px;}
.y116{bottom:288.570000px;}
.yfb{bottom:289.290000px;}
.y231{bottom:289.470000px;}
.yb2{bottom:290.565000px;}
.y17f{bottom:290.730000px;}
.y6a{bottom:290.910000px;}
.yc5{bottom:290.925000px;}
.y195{bottom:290.955000px;}
.y252{bottom:292.530000px;}
.y20{bottom:293.070000px;}
.yde{bottom:296.130000px;}
.y205{bottom:297.030000px;}
.y168{bottom:298.650000px;}
.y2b7{bottom:304.410000px;}
.yfa{bottom:306.930000px;}
.y1ad{bottom:307.470000px;}
.yb1{bottom:307.485000px;}
.y69{bottom:307.650000px;}
.yc4{bottom:307.845000px;}
.y276{bottom:307.875000px;}
.y194{bottom:310.035000px;}
.y230{bottom:311.610000px;}
.y1f{bottom:311.790000px;}
.y251{bottom:314.670000px;}
.y36{bottom:316.470000px;}
.y204{bottom:319.170000px;}
.y99{bottom:320.085000px;}
.y268{bottom:320.610000px;}
.y138{bottom:321.510000px;}
.y294{bottom:322.230000px;}
.y115{bottom:323.130000px;}
.yb0{bottom:324.405000px;}
.y68{bottom:324.570000px;}
.y275{bottom:324.615000px;}
.yc3{bottom:324.795000px;}
.y1ac{bottom:329.610000px;}
.y1e{bottom:330.330000px;}
.ydd{bottom:330.510000px;}
.y167{bottom:333.210000px;}
.y2a5{bottom:333.390000px;}
.y22f{bottom:333.570000px;}
.y153{bottom:334.470000px;}
.y98{bottom:337.005000px;}
.y193{bottom:337.575000px;}
.y137{bottom:339.150000px;}
.y203{bottom:341.130000px;}
.yaf{bottom:341.145000px;}
.y67{bottom:341.490000px;}
.y187{bottom:341.535000px;}
.y1ee{bottom:344.730000px;}
.y1df{bottom:347.430000px;}
.y24f{bottom:349.230000px;}
.y1cb{bottom:349.770000px;}
.y1ab{bottom:351.570000px;}
.y97{bottom:353.925000px;}
.y166{bottom:355.170000px;}
.y22e{bottom:355.710000px;}
.y114{bottom:357.510000px;}
.yae{bottom:358.065000px;}
.y186{bottom:358.275000px;}
.y66{bottom:358.455000px;}
.y1d{bottom:360.930000px;}
.y202{bottom:363.270000px;}
.ydc{bottom:365.070000px;}
.y152{bottom:368.850000px;}
.y1de{bottom:369.390000px;}
.y96{bottom:370.845000px;}
.y35{bottom:372.270000px;}
.y2b6{bottom:372.630000px;}
.y293{bottom:373.530000px;}
.y136{bottom:373.710000px;}
.yad{bottom:374.985000px;}
.yf9{bottom:375.150000px;}
.y65{bottom:375.195000px;}
.y165{bottom:377.310000px;}
.y22d{bottom:377.670000px;}
.y1c{bottom:379.470000px;}
.y274{bottom:383.430000px;}
.y24e{bottom:383.610000px;}
.y1ca{bottom:384.150000px;}
.y201{bottom:385.230000px;}
.y95{bottom:387.795000px;}
.y33{bottom:389.910000px;}
.y135{bottom:391.350000px;}
.yac{bottom:391.935000px;}
.y64{bottom:392.115000px;}
.y1aa{bottom:395.670000px;}
.y1b{bottom:398.190000px;}
.y164{bottom:399.270000px;}
.ydb{bottom:399.630000px;}
.y22c{bottom:399.810000px;}
.y2a3{bottom:401.610000px;}
.y151{bottom:403.410000px;}
.y1dd{bottom:403.950000px;}
.y94{bottom:404.535000px;}
.y24c{bottom:405.750000px;}
.y2b5{bottom:407.190000px;}
.y200{bottom:407.370000px;}
.yab{bottom:408.675000px;}
.y113{bottom:408.990000px;}
.y63{bottom:409.035000px;}
.yf8{bottom:409.710000px;}
.y1a{bottom:417.315000px;}
.y1a9{bottom:417.855000px;}
.y1c9{bottom:418.755000px;}
.y150{bottom:421.095000px;}
.y93{bottom:421.455000px;}
.y22b{bottom:421.815000px;}
.y292{bottom:424.875000px;}
.yaa{bottom:425.595000px;}
.y134{bottom:425.775000px;}
.y62{bottom:425.955000px;}
.y1ff{bottom:429.375000px;}
.y19{bottom:437.655000px;}
.y92{bottom:438.375000px;}
.y1a8{bottom:439.815000px;}
.y24a{bottom:440.175000px;}
.ya9{bottom:442.515000px;}
.y61{bottom:442.695000px;}
.y112{bottom:443.415000px;}
.y22a{bottom:443.955000px;}
.yf7{bottom:444.315000px;}
.y1dc{bottom:448.095000px;}
.y1fe{bottom:451.515000px;}
.y1c8{bottom:453.315000px;}
.y91{bottom:455.295000px;}
.y1ed{bottom:455.475000px;}
.y2b4{bottom:458.535000px;}
.ya8{bottom:459.435000px;}
.y60{bottom:459.615000px;}
.y18{bottom:460.155000px;}
.y133{bottom:460.335000px;}
.y111{bottom:461.055000px;}
.y1a7{bottom:461.955000px;}
.y249{bottom:462.315000px;}
.y229{bottom:465.915000px;}
.y184{bottom:469.155000px;}
.y1db{bottom:470.055000px;}
.y90{bottom:472.035000px;}
.y1fd{bottom:473.475000px;}
.y1c7{bottom:475.275000px;}
.ya7{bottom:476.175000px;}
.y291{bottom:476.355000px;}
.y5f{bottom:476.535000px;}
.yf6{bottom:478.695000px;}
.y17{bottom:485.175000px;}
.y228{bottom:488.055000px;}
.y191{bottom:489.315000px;}
.y1da{bottom:492.195000px;}
.ya6{bottom:493.095000px;}
.y5e{bottom:493.455000px;}
.y132{bottom:494.895000px;}
.y110{bottom:495.615000px;}
.y248{bottom:496.875000px;}
.yda{bottom:502.275000px;}
.y14f{bottom:506.235000px;}
.y8f{bottom:510.015000px;}
.y5d{bottom:510.195000px;}
.y16{bottom:510.375000px;}
.yf5{bottom:513.255000px;}
.y1d9{bottom:514.155000px;}
.y1fc{bottom:517.575000px;}
.y183{bottom:524.955000px;}
.y8e{bottom:526.935000px;}
.y5c{bottom:527.115000px;}
.y290{bottom:527.655000px;}
.y131{bottom:529.275000px;}
.y1a6{bottom:530.175000px;}
.y10f{bottom:530.895000px;}
.y227{bottom:532.155000px;}
.y15{bottom:535.395000px;}
.y1d8{bottom:536.295000px;}
.yd9{bottom:536.835000px;}
.y2a2{bottom:538.275000px;}
.y1fb{bottom:539.715000px;}
.y14e{bottom:540.795000px;}
.y8d{bottom:543.675000px;}
.y5b{bottom:544.035000px;}
.yf4{bottom:547.815000px;}
.y247{bottom:548.175000px;}
.y226{bottom:554.115000px;}
.y17e{bottom:559.515000px;}
.y1c6{bottom:560.415000px;}
.y14{bottom:560.595000px;}
.y5a{bottom:560.955000px;}
.y2b3{bottom:561.315000px;}
.y1fa{bottom:561.675000px;}
.y130{bottom:563.835000px;}
.yf3{bottom:565.275000px;}
.yd8{bottom:571.395000px;}
.y190{bottom:574.455000px;}
.y14d{bottom:575.175000px;}
.y225{bottom:576.255000px;}
.y8c{bottom:577.515000px;}
.y59{bottom:577.695000px;}
.y162{bottom:579.315000px;}
.y265{bottom:580.395000px;}
.y246{bottom:582.735000px;}
.y1f9{bottom:583.815000px;}
.y13{bottom:585.615000px;}
.y28f{bottom:589.755000px;}
.y1ec{bottom:591.195000px;}
.y8b{bottom:594.435000px;}
.y58{bottom:594.645000px;}
.y224{bottom:598.215000px;}
.y12f{bottom:598.395000px;}
.y10e{bottom:599.835000px;}
.y161{bottom:601.275000px;}
.y1d7{bottom:604.515000px;}
.y245{bottom:604.695000px;}
.yd7{bottom:605.775000px;}
.y2a1{bottom:606.495000px;}
.y12{bottom:610.815000px;}
.y57{bottom:611.565000px;}
.y2b2{bottom:612.795000px;}
.y264{bottom:614.775000px;}
.y1c5{bottom:616.215000px;}
.y10d{bottom:617.475000px;}
.y223{bottom:620.355000px;}
.yd5{bottom:623.415000px;}
.y14c{bottom:626.655000px;}
.y56{bottom:628.485000px;}
.y18e{bottom:630.075000px;}
.y1a5{bottom:632.235000px;}
.y12e{bottom:632.775000px;}
.yf2{bottom:633.675000px;}
.y10b{bottom:635.115000px;}
.y1c4{bottom:638.175000px;}
.y243{bottom:639.255000px;}
.y1f8{bottom:640.335000px;}
.y28e{bottom:641.055000px;}
.y11{bottom:641.775000px;}
.y222{bottom:642.315000px;}
.y160{bottom:645.375000px;}
.y1eb{bottom:646.995000px;}
.y263{bottom:649.335000px;}
.y2a0{bottom:657.795000px;}
.y1c3{bottom:660.345000px;}
.y14b{bottom:661.065000px;}
.y28d{bottom:663.225000px;}
.y2b1{bottom:664.125000px;}
.y221{bottom:664.485000px;}
.y1a4{bottom:666.645000px;}
.y12d{bottom:667.365000px;}
.y15f{bottom:667.545000px;}
.yf1{bottom:668.085000px;}
.y242{bottom:673.845000px;}
.y10{bottom:681.585000px;}
.y1c2{bottom:682.305000px;}
.y262{bottom:683.925000px;}
.y220{bottom:686.445000px;}
.y15c{bottom:689.505000px;}
.yd4{bottom:691.845000px;}
.y14a{bottom:695.625000px;}
.y241{bottom:695.805000px;}
.y12c{bottom:701.925000px;}
.yf0{bottom:702.645000px;}
.y1c1{bottom:704.445000px;}
.y1f7{bottom:708.585000px;}
.y29f{bottom:709.305000px;}
.y53{bottom:710.025000px;}
.yf{bottom:712.545000px;}
.y149{bottom:713.265000px;}
.y28c{bottom:714.525000px;}
.y1ea{bottom:715.245000px;}
.y2b0{bottom:715.425000px;}
.y240{bottom:717.945000px;}
.y12a{bottom:719.565000px;}
.yef{bottom:720.285000px;}
.y273{bottom:721.725000px;}
.yd1{bottom:726.225000px;}
.y1d6{bottom:726.405000px;}
.y31{bottom:728.925000px;}
.y51{bottom:729.645000px;}
.y21f{bottom:730.545000px;}
.y18d{bottom:732.165000px;}
.y261{bottom:735.225000px;}
.y28b{bottom:736.665000px;}
.y10a{bottom:737.205000px;}
.yee{bottom:737.925000px;}
.y1d5{bottom:748.545000px;}
.y50{bottom:749.445000px;}
.y21e{bottom:752.685000px;}
.yed{bottom:755.565000px;}
.y260{bottom:757.365000px;}
.y1f3{bottom:760.065000px;}
.ye{bottom:760.605000px;}
.y2af{bottom:766.905000px;}
.y1a3{bottom:768.705000px;}
.y23f{bottom:769.245000px;}
.y1e9{bottom:771.045000px;}
.y109{bottom:771.585000px;}
.y1c0{bottom:772.665000px;}
.y21d{bottom:774.645000px;}
.y272{bottom:777.525000px;}
.y148{bottom:781.485000px;}
.y30{bottom:784.725000px;}
.y18c{bottom:787.965000px;}
.y1a2{bottom:790.845000px;}
.y25f{bottom:791.745000px;}
.y28a{bottom:793.185000px;}
.y1bf{bottom:794.625000px;}
.y21c{bottom:796.785000px;}
.yd0{bottom:798.945000px;}
.y2ae{bottom:801.465000px;}
.y2f{bottom:802.365000px;}
.y4f{bottom:805.245000px;}
.y29e{bottom:812.085000px;}
.yd{bottom:812.985000px;}
.y147{bottom:816.045000px;}
.y1be{bottom:816.765000px;}
.y21b{bottom:818.745000px;}
.y15b{bottom:825.225000px;}
.y25e{bottom:826.305000px;}
.y289{bottom:827.565000px;}
.yc2{bottom:833.325000px;}
.y146{bottom:833.685000px;}
.y129{bottom:838.365000px;}
.y1bd{bottom:838.725000px;}
.y1e8{bottom:839.265000px;}
.yec{bottom:840.705000px;}
.y21a{bottom:840.885000px;}
.y108{bottom:844.305000px;}
.y271{bottom:845.745000px;}
.y25d{bottom:848.265000px;}
.y288{bottom:849.705000px;}
.yc{bottom:852.765000px;}
.y23e{bottom:854.385000px;}
.y18b{bottom:856.185000px;}
.y1bc{bottom:860.865000px;}
.y4e{bottom:861.045000px;}
.y219{bottom:862.845000px;}
.y29d{bottom:863.385000px;}
.y145{bottom:868.065000px;}
.y127{bottom:872.925000px;}
.yea{bottom:875.085000px;}
.yb{bottom:877.965000px;}
.y107{bottom:878.685000px;}
.y4c{bottom:880.485000px;}
.y1bb{bottom:882.825000px;}
.y78{bottom:884.085000px;}
.y218{bottom:884.985000px;}
.y23b{bottom:888.945000px;}
.y1a1{bottom:892.725000px;}
.y1e7{bottom:895.065000px;}
.y26f{bottom:897.045000px;}
.y17c{bottom:897.765000px;}
.y287{bottom:901.050000px;}
.y144{bottom:902.670000px;}
.ya{bottom:903.030000px;}
.y2ad{bottom:904.110000px;}
.y1ba{bottom:905.010000px;}
.y217{bottom:906.990000px;}
.y18a{bottom:911.850000px;}
.y106{bottom:913.290000px;}
.y29c{bottom:914.730000px;}
.y4b{bottom:915.090000px;}
.y286{bottom:923.190000px;}
.y1b9{bottom:926.970000px;}
.y1a0{bottom:927.330000px;}
.y9{bottom:928.230000px;}
.y216{bottom:929.130000px;}
.y4a{bottom:934.530000px;}
.y143{bottom:937.230000px;}
.y25c{bottom:939.390000px;}
.y126{bottom:945.510000px;}
.ye9{bottom:947.850000px;}
.y26e{bottom:948.570000px;}
.y17b{bottom:949.110000px;}
.y215{bottom:951.090000px;}
.y8{bottom:953.250000px;}
.y2c2{bottom:953.430000px;}
.y142{bottom:954.870000px;}
.y2ac{bottom:955.590000px;}
.y15a{bottom:960.990000px;}
.y19f{bottom:961.890000px;}
.y105{bottom:965.490000px;}
.y29b{bottom:966.210000px;}
.y48{bottom:969.090000px;}
.y1b8{bottom:971.070000px;}
.y2c1{bottom:972.510000px;}
.y214{bottom:973.230000px;}
.y285{bottom:974.490000px;}
.y7{bottom:978.450000px;}
.y125{bottom:980.070000px;}
.ye8{bottom:982.230000px;}
.y26d{bottom:983.130000px;}
.y140{bottom:989.250000px;}
.y2ab{bottom:989.970000px;}
.y1b7{bottom:993.210000px;}
.y213{bottom:995.190000px;}
.y19e{bottom:996.270000px;}
.y284{bottom:996.630000px;}
.y1f2{bottom:1001.490000px;}
.y6{bottom:1003.470000px;}
.y17a{bottom:1004.910000px;}
.y124{bottom:1014.630000px;}
.y1b6{bottom:1015.170000px;}
.ye7{bottom:1016.790000px;}
.y212{bottom:1017.330000px;}
.y29a{bottom:1017.510000px;}
.y2c0{bottom:1023.810000px;}
.y25b{bottom:1024.530000px;}
.y179{bottom:1026.870000px;}
.y5{bottom:1028.670000px;}
.y19d{bottom:1030.830000px;}
.y123{bottom:1032.090000px;}
.y104{bottom:1033.710000px;}
.y26c{bottom:1034.430000px;}
.y1b5{bottom:1037.310000px;}
.y211{bottom:1039.290000px;}
.y2e{bottom:1043.970000px;}
.y2d{bottom:1044.690000px;}
.y188{bottom:1047.750000px;}
.y283{bottom:1047.930000px;}
.y178{bottom:1049.010000px;}
.y122{bottom:1049.730000px;}
.ye6{bottom:1051.350000px;}
.y2aa{bottom:1052.070000px;}
.y4{bottom:1053.690000px;}
.y2bd{bottom:1058.370000px;}
.y47{bottom:1059.270000px;}
.y210{bottom:1061.430000px;}
.y2c{bottom:1062.330000px;}
.y1e6{bottom:1064.490000px;}
.y121{bottom:1067.370000px;}
.y103{bottom:1068.090000px;}
.y299{bottom:1068.990000px;}
.y282{bottom:1070.070000px;}
.y177{bottom:1070.970000px;}
.y259{bottom:1076.010000px;}
.y46{bottom:1078.890000px;}
.y2b{bottom:1079.970000px;}
.y1d4{bottom:1081.410000px;}
.y20f{bottom:1083.390000px;}
.y3{bottom:1084.650000px;}
.ye5{bottom:1085.730000px;}
.y176{bottom:1093.110000px;}
.y29{bottom:1097.610000px;}
.y45{bottom:1098.330000px;}
.y120{bottom:1101.930000px;}
.y102{bottom:1102.650000px;}
.ye4{bottom:1103.370000px;}
.y280{bottom:1104.450000px;}
.y20e{bottom:1105.530000px;}
.y175{bottom:1115.070000px;}
.y26{bottom:1115.970000px;}
.y1e5{bottom:1120.290000px;}
.y27e{bottom:1126.590000px;}
.y1b4{bottom:1127.490000px;}
.y2{bottom:1130.190000px;}
.y11f{bottom:1136.490000px;}
.y101{bottom:1137.210000px;}
.y174{bottom:1149.660000px;}
.y11e{bottom:1154.160000px;}
.y25{bottom:1175.760000px;}
.y1{bottom:1175.940000px;}
.y24{bottom:1194.840000px;}
.h12{height:2.005313px;}
.hc{height:16.740000px;}
.h26{height:16.776000px;}
.he{height:16.920000px;}
.h37{height:16.956000px;}
.h1b{height:18.720000px;}
.h20{height:18.900000px;}
.h1f{height:19.080000px;}
.h3b{height:21.240000px;}
.h3c{height:21.276000px;}
.h3e{height:21.420000px;}
.h3d{height:21.456000px;}
.h4e{height:27.540000px;}
.h1a{height:29.976328px;}
.h1c{height:33.660000px;}
.h2d{height:33.696000px;}
.h1d{height:33.840000px;}
.h1e{height:33.876000px;}
.h28{height:38.549138px;}
.hf{height:40.472227px;}
.h9{height:40.737305px;}
.h17{height:41.610234px;}
.h22{height:41.633789px;}
.h10{height:42.661046px;}
.h53{height:44.316000px;}
.h43{height:45.082617px;}
.h18{height:45.096328px;}
.hd{height:46.074727px;}
.h3{height:49.971094px;}
.h32{height:50.580000px;}
.h3f{height:50.616000px;}
.h31{height:50.760000px;}
.h51{height:50.796000px;}
.h19{height:51.070781px;}
.h27{height:54.900000px;}
.ha{height:54.936000px;}
.h14{height:55.080000px;}
.h7{height:58.651172px;}
.hb{height:58.661719px;}
.h4a{height:59.614102px;}
.h8{height:60.226875px;}
.h54{height:61.200000px;}
.h35{height:61.380000px;}
.h6{height:65.010937px;}
.h5{height:66.757500px;}
.h2e{height:67.500000px;}
.h2b{height:67.536000px;}
.h4c{height:67.895508px;}
.h11{height:71.280000px;}
.h2a{height:71.820000px;}
.h33{height:71.856000px;}
.h2f{height:72.000000px;}
.h2c{height:72.036000px;}
.h25{height:84.240000px;}
.h36{height:84.420000px;}
.h38{height:84.456000px;}
.h2{height:90.708398px;}
.h4f{height:94.896000px;}
.h45{height:101.160000px;}
.h30{height:101.196000px;}
.h46{height:101.340000px;}
.h42{height:101.376000px;}
.h4d{height:105.516000px;}
.h4{height:108.632812px;}
.h48{height:110.016000px;}
.h34{height:118.080000px;}
.h3a{height:135.000000px;}
.h39{height:135.036000px;}
.h50{height:139.320000px;}
.h52{height:139.356000px;}
.h16{height:151.950000px;}
.h47{height:168.690000px;}
.h4b{height:240.510000px;}
.h13{height:240.870000px;}
.h23{height:286.815000px;}
.h49{height:286.950000px;}
.h40{height:337.530000px;}
.h29{height:337.575000px;}
.h15{height:338.295000px;}
.h44{height:358.815000px;}
.h41{height:388.155000px;}
.h24{height:607.215000px;}
.h21{height:641.265000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:63.360000px;}
.w7{width:63.396000px;}
.w9{width:63.540000px;}
.wb{width:148.896000px;}
.w5{width:191.730000px;}
.wd{width:308.415000px;}
.we{width:329.610000px;}
.w4{width:384.195000px;}
.wc{width:638.025000px;}
.w6{width:769.290000px;}
.w3{width:786.930000px;}
.wa{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:8.100000px;}
.x1f{left:16.920000px;}
.x1d{left:23.580000px;}
.x39{left:35.100000px;}
.x19{left:52.245000px;}
.x7{left:53.999987px;}
.x2a{left:56.196000px;}
.x2c{left:58.499987px;}
.x15{left:62.820000px;}
.x1e{left:126.936000px;}
.x16{left:169.230000px;}
.x3a{left:183.090000px;}
.x35{left:186.870000px;}
.x20{left:191.190000px;}
.x31{left:199.470000px;}
.x2d{left:202.890000px;}
.x30{left:223.770000px;}
.x36{left:225.930000px;}
.x3b{left:231.330000px;}
.x4{left:238.529987px;}
.x29{left:251.175000px;}
.x18{left:255.270000px;}
.x5{left:257.969987px;}
.x2b{left:270.029987px;}
.x2f{left:276.195000px;}
.x6{left:288.929987px;}
.x21{left:319.575000px;}
.x34{left:328.035000px;}
.x13{left:329.654987px;}
.x1b{left:342.255000px;}
.x3{left:350.714987px;}
.x22{left:383.655000px;}
.x32{left:397.515000px;}
.x3c{left:403.995000px;}
.x1c{left:427.065000px;}
.x2{left:446.474987px;}
.x17{left:447.915000px;}
.x38{left:454.605000px;}
.x23{left:512.025000px;}
.x33{left:521.385000px;}
.x2e{left:533.625000px;}
.x37{left:535.785000px;}
.x24{left:576.105000px;}
.x1{left:601.844987px;}
.xd{left:607.604987px;}
.xf{left:610.124987px;}
.x12{left:617.684987px;}
.x10{left:631.904987px;}
.x11{left:636.044987px;}
.x1a{left:640.365000px;}
.xe{left:651.704987px;}
.xc{left:663.224987px;}
.x28{left:664.530000px;}
.xb{left:675.284987px;}
.x8{left:683.249987px;}
.x9{left:686.129987px;}
.x25{left:704.490000px;}
.x26{left:768.570000px;}
.x27{left:778.650000px;}
.xa{left:839.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.268800pt;}
.ls11{letter-spacing:-0.249067pt;}
.ls14{letter-spacing:-0.244267pt;}
.lse{letter-spacing:-0.211200pt;}
.lsf{letter-spacing:-0.188800pt;}
.ls21{letter-spacing:-0.150933pt;}
.lsc{letter-spacing:-0.113067pt;}
.ls6{letter-spacing:-0.028800pt;}
.ls7{letter-spacing:-0.023040pt;}
.ls18{letter-spacing:-0.016000pt;}
.ls20{letter-spacing:-0.015360pt;}
.ls1e{letter-spacing:-0.007680pt;}
.lsb{letter-spacing:-0.004480pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.004480pt;}
.ls2{letter-spacing:0.015360pt;}
.ls1f{letter-spacing:0.023040pt;}
.ls3{letter-spacing:0.046720pt;}
.ls1c{letter-spacing:0.155733pt;}
.ls1b{letter-spacing:0.159360pt;}
.lsa{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.193067pt;}
.ls16{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.248960pt;}
.ls19{letter-spacing:0.249067pt;}
.ls5{letter-spacing:0.268800pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.324267pt;}
.ls13{letter-spacing:0.390933pt;}
.ls1a{letter-spacing:0.428800pt;}
.ls22{letter-spacing:0.489067pt;}
.ls8{letter-spacing:0.592000pt;}
.ls17{letter-spacing:1.440000pt;}
.ls1d{letter-spacing:44.752640pt;}
.ls4{letter-spacing:753.386667pt;}
.ws0{word-spacing:-35.591040pt;}
.ws19{word-spacing:-23.040000pt;}
.ws1b{word-spacing:-23.032320pt;}
.ws18{word-spacing:-23.009280pt;}
.ws1a{word-spacing:-23.001600pt;}
.ws4{word-spacing:-22.993920pt;}
.ws11{word-spacing:-15.968000pt;}
.ws5{word-spacing:-13.872000pt;}
.ws1d{word-spacing:-13.769067pt;}
.ws13{word-spacing:-13.708800pt;}
.wsf{word-spacing:-13.670933pt;}
.ws15{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.529067pt;}
.wse{word-spacing:-13.473067pt;}
.ws8{word-spacing:-13.440000pt;}
.ws16{word-spacing:-13.439360pt;}
.ws17{word-spacing:-13.435733pt;}
.ws6{word-spacing:-13.326720pt;}
.ws10{word-spacing:-13.284480pt;}
.ws2{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.275520pt;}
.ws3{word-spacing:-13.251200pt;}
.ws14{word-spacing:-13.166933pt;}
.ws1c{word-spacing:-13.129067pt;}
.wsb{word-spacing:-13.091200pt;}
.wsa{word-spacing:-13.068800pt;}
.ws1e{word-spacing:-13.035733pt;}
.wsd{word-spacing:-13.030933pt;}
.wsc{word-spacing:-13.011200pt;}
.ws7{word-spacing:-8.640000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._1{width:0.906667pt;}
._4{width:2.011093pt;}
._5{width:3.451093pt;}
._a{width:5.920000pt;}
._b{width:7.166293pt;}
._7{width:8.480000pt;}
._8{width:35.165440pt;}
._9{width:36.167467pt;}
._6{width:81.296000pt;}
._3{width:113.296000pt;}
._2{width:585.722667pt;}
.fs7{font-size:2.560000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:69.120000pt;}
.fsa{font-size:80.000000pt;}
.fs0{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:3.200000pt;}
.y8a{bottom:3.360000pt;}
.y2a{bottom:3.520000pt;}
.ybf{bottom:3.546667pt;}
.y17d{bottom:3.560000pt;}
.y52{bottom:3.680000pt;}
.y18f{bottom:4.160000pt;}
.y28{bottom:5.440000pt;}
.y24b{bottom:5.600000pt;}
.y281{bottom:7.520000pt;}
.y250{bottom:10.880000pt;}
.y244{bottom:11.040000pt;}
.y257{bottom:11.066667pt;}
.y24d{bottom:11.080000pt;}
.y34{bottom:13.120000pt;}
.ybd{bottom:18.400000pt;}
.y2ba{bottom:18.426667pt;}
.y88{bottom:18.440000pt;}
.y49{bottom:18.560000pt;}
.y3f{bottom:18.586667pt;}
.y4d{bottom:18.600000pt;}
.y2bf{bottom:20.320000pt;}
.yd3{bottom:20.480000pt;}
.y27f{bottom:20.506667pt;}
.y189{bottom:29.760000pt;}
.y32{bottom:29.920000pt;}
.y27{bottom:29.946667pt;}
.y77{bottom:33.440000pt;}
.y10c{bottom:33.466667pt;}
.y87{bottom:33.480000pt;}
.ya5{bottom:33.600000pt;}
.y3e{bottom:33.626667pt;}
.y270{bottom:33.640000pt;}
.y2be{bottom:42.880000pt;}
.y141{bottom:43.040000pt;}
.y128{bottom:44.840000pt;}
.yd2{bottom:44.960000pt;}
.yeb{bottom:45.000000pt;}
.y76{bottom:48.480000pt;}
.y3d{bottom:48.506667pt;}
.y86{bottom:48.520000pt;}
.ya4{bottom:48.640000pt;}
.yd6{bottom:48.666667pt;}
.y2a4{bottom:48.680000pt;}
.y19c{bottom:49.920000pt;}
.y23d{bottom:50.440000pt;}
.y1f1{bottom:50.720000pt;}
.y44{bottom:51.360000pt;}
.y1f0{bottom:54.240000pt;}
.y27d{bottom:54.720000pt;}
.y13f{bottom:56.160000pt;}
.y11d{bottom:56.800000pt;}
.y2bc{bottom:57.280000pt;}
.y100{bottom:58.080000pt;}
.y54{bottom:60.320000pt;}
.y23a{bottom:61.280000pt;}
.y1d3{bottom:62.720000pt;}
.y75{bottom:63.520000pt;}
.y3c{bottom:63.546667pt;}
.y85{bottom:63.560000pt;}
.y25a{bottom:65.466667pt;}
.y43{bottom:66.400000pt;}
.y27c{bottom:66.720000pt;}
.y159{bottom:68.320000pt;}
.y2a9{bottom:68.640000pt;}
.y19b{bottom:69.600000pt;}
.y42{bottom:69.760000pt;}
.y1e4{bottom:71.200000pt;}
.y185{bottom:71.360000pt;}
.yc1{bottom:73.760000pt;}
.y23c{bottom:74.920000pt;}
.y12b{bottom:78.400000pt;}
.y84{bottom:78.440000pt;}
.y74{bottom:78.560000pt;}
.y3b{bottom:78.586667pt;}
.ycf{bottom:78.600000pt;}
.y1ef{bottom:78.760000pt;}
.ye3{bottom:79.840000pt;}
.y267{bottom:80.480000pt;}
.y27a{bottom:80.506667pt;}
.y239{bottom:80.960000pt;}
.y173{bottom:81.280000pt;}
.y41{bottom:81.600000pt;}
.y1d2{bottom:82.240000pt;}
.y172{bottom:84.640000pt;}
.yff{bottom:88.800000pt;}
.y1e3{bottom:90.880000pt;}
.y27b{bottom:91.040000pt;}
.y73{bottom:93.440000pt;}
.y182{bottom:93.466667pt;}
.y83{bottom:93.480000pt;}
.y15e{bottom:93.600000pt;}
.y3a{bottom:93.626667pt;}
.yce{bottom:93.640000pt;}
.y171{bottom:96.320000pt;}
.y1b3{bottom:96.640000pt;}
.ya3{bottom:97.280000pt;}
.y158{bottom:98.880000pt;}
.y238{bottom:100.480000pt;}
.y13e{bottom:101.760000pt;}
.y1d1{bottom:101.920000pt;}
.y11c{bottom:102.400000pt;}
.y2bb{bottom:102.880000pt;}
.y298{bottom:103.680000pt;}
.yc0{bottom:104.480000pt;}
.y266{bottom:104.960000pt;}
.y279{bottom:104.986667pt;}
.y20d{bottom:107.200000pt;}
.y15d{bottom:108.480000pt;}
.y39{bottom:108.506667pt;}
.y82{bottom:108.520000pt;}
.y163{bottom:108.640000pt;}
.y19a{bottom:108.666667pt;}
.ycd{bottom:108.680000pt;}
.ye2{bottom:110.400000pt;}
.y278{bottom:110.560000pt;}
.y170{bottom:111.360000pt;}
.ya2{bottom:112.320000pt;}
.y157{bottom:114.560000pt;}
.y16f{bottom:114.720000pt;}
.y192{bottom:115.200000pt;}
.y237{bottom:120.160000pt;}
.y1d0{bottom:121.440000pt;}
.ybb{bottom:123.200000pt;}
.y258{bottom:123.360000pt;}
.y1f6{bottom:123.520000pt;}
.y38{bottom:123.546667pt;}
.y81{bottom:123.560000pt;}
.y16e{bottom:126.720000pt;}
.y20c{bottom:126.880000pt;}
.ya1{bottom:127.240000pt;}
.y2a8{bottom:129.280000pt;}
.y40{bottom:132.320000pt;}
.y13d{bottom:132.480000pt;}
.y11b{bottom:133.120000pt;}
.y1b2{bottom:134.240000pt;}
.yba{bottom:138.280000pt;}
.y181{bottom:138.426667pt;}
.y80{bottom:138.440000pt;}
.y72{bottom:138.586667pt;}
.ycc{bottom:138.600000pt;}
.y236{bottom:139.680000pt;}
.ye1{bottom:141.120000pt;}
.ya0{bottom:142.280000pt;}
.y37{bottom:145.600000pt;}
.y20b{bottom:146.400000pt;}
.y26b{bottom:147.840000pt;}
.y256{bottom:148.480000pt;}
.y2b9{bottom:148.640000pt;}
.y11a{bottom:148.800000pt;}
.y297{bottom:149.280000pt;}
.y1e2{bottom:152.160000pt;}
.yb9{bottom:153.320000pt;}
.y71{bottom:153.466667pt;}
.y7f{bottom:153.480000pt;}
.y199{bottom:153.626667pt;}
.ycb{bottom:153.640000pt;}
.y1b1{bottom:153.920000pt;}
.ybe{bottom:154.080000pt;}
.y16d{bottom:156.506667pt;}
.y9f{bottom:157.320000pt;}
.y235{bottom:159.386667pt;}
.y1cf{bottom:160.666667pt;}
.y13c{bottom:163.226667pt;}
.yfe{bottom:165.146667pt;}
.y20a{bottom:166.106667pt;}
.yb8{bottom:168.360000pt;}
.y70{bottom:168.506667pt;}
.y7e{bottom:168.520000pt;}
.y198{bottom:168.666667pt;}
.yca{bottom:168.680000pt;}
.ybc{bottom:169.786667pt;}
.y1f5{bottom:170.440000pt;}
.ye0{bottom:171.866667pt;}
.y9e{bottom:172.360000pt;}
.y1b0{bottom:173.466667pt;}
.y16c{bottom:176.026667pt;}
.y26a{bottom:178.586667pt;}
.y234{bottom:178.906667pt;}
.y255{bottom:179.226667pt;}
.y119{bottom:179.546667pt;}
.y1e1{bottom:182.906667pt;}
.yb7{bottom:183.240000pt;}
.y6f{bottom:183.546667pt;}
.y7d{bottom:183.560000pt;}
.y209{bottom:185.626667pt;}
.ydf{bottom:187.546667pt;}
.y2a7{bottom:190.106667pt;}
.y156{bottom:190.266667pt;}
.y1ce{bottom:191.386667pt;}
.y1af{bottom:193.146667pt;}
.y13b{bottom:193.786667pt;}
.y1f4{bottom:194.920000pt;}
.y296{bottom:195.066667pt;}
.y118{bottom:195.226667pt;}
.y16b{bottom:195.706667pt;}
.yfd{bottom:195.866667pt;}
.yb6{bottom:198.280000pt;}
.y180{bottom:198.426667pt;}
.y7c{bottom:198.440000pt;}
.y6e{bottom:198.586667pt;}
.yc9{bottom:198.600000pt;}
.y254{bottom:198.746667pt;}
.y208{bottom:205.306667pt;}
.y9d{bottom:205.960000pt;}
.y23{bottom:210.906667pt;}
.y1ae{bottom:212.666667pt;}
.yb5{bottom:213.320000pt;}
.y6d{bottom:213.466667pt;}
.y7b{bottom:213.480000pt;}
.y197{bottom:213.626667pt;}
.yc8{bottom:213.640000pt;}
.y16a{bottom:215.226667pt;}
.y233{bottom:218.106667pt;}
.y155{bottom:220.986667pt;}
.y9c{bottom:221.000000pt;}
.y13a{bottom:224.506667pt;}
.y207{bottom:224.826667pt;}
.y2b8{bottom:224.986667pt;}
.y117{bottom:225.786667pt;}
.yfc{bottom:226.426667pt;}
.y22{bottom:227.386667pt;}
.yb4{bottom:228.360000pt;}
.y6c{bottom:228.506667pt;}
.y7a{bottom:228.520000pt;}
.y196{bottom:228.666667pt;}
.yc7{bottom:228.680000pt;}
.y253{bottom:229.466667pt;}
.y1cd{bottom:230.586667pt;}
.y1e0{bottom:233.146667pt;}
.y169{bottom:234.906667pt;}
.y277{bottom:235.226667pt;}
.y9b{bottom:236.040000pt;}
.y232{bottom:237.786667pt;}
.y269{bottom:239.226667pt;}
.y295{bottom:240.666667pt;}
.yb3{bottom:243.240000pt;}
.y6b{bottom:243.546667pt;}
.yc6{bottom:243.560000pt;}
.y79{bottom:243.586667pt;}
.y21{bottom:244.026667pt;}
.y206{bottom:244.506667pt;}
.y89{bottom:245.306667pt;}
.y1cc{bottom:250.106667pt;}
.y2a6{bottom:250.746667pt;}
.y9a{bottom:250.920000pt;}
.y154{bottom:251.546667pt;}
.y139{bottom:255.226667pt;}
.y116{bottom:256.506667pt;}
.yfb{bottom:257.146667pt;}
.y231{bottom:257.306667pt;}
.yb2{bottom:258.280000pt;}
.y17f{bottom:258.426667pt;}
.y6a{bottom:258.586667pt;}
.yc5{bottom:258.600000pt;}
.y195{bottom:258.626667pt;}
.y252{bottom:260.026667pt;}
.y20{bottom:260.506667pt;}
.yde{bottom:263.226667pt;}
.y205{bottom:264.026667pt;}
.y168{bottom:265.466667pt;}
.y2b7{bottom:270.586667pt;}
.yfa{bottom:272.826667pt;}
.y1ad{bottom:273.306667pt;}
.yb1{bottom:273.320000pt;}
.y69{bottom:273.466667pt;}
.yc4{bottom:273.640000pt;}
.y276{bottom:273.666667pt;}
.y194{bottom:275.586667pt;}
.y230{bottom:276.986667pt;}
.y1f{bottom:277.146667pt;}
.y251{bottom:279.706667pt;}
.y36{bottom:281.306667pt;}
.y204{bottom:283.706667pt;}
.y99{bottom:284.520000pt;}
.y268{bottom:284.986667pt;}
.y138{bottom:285.786667pt;}
.y294{bottom:286.426667pt;}
.y115{bottom:287.226667pt;}
.yb0{bottom:288.360000pt;}
.y68{bottom:288.506667pt;}
.y275{bottom:288.546667pt;}
.yc3{bottom:288.706667pt;}
.y1ac{bottom:292.986667pt;}
.y1e{bottom:293.626667pt;}
.ydd{bottom:293.786667pt;}
.y167{bottom:296.186667pt;}
.y2a5{bottom:296.346667pt;}
.y22f{bottom:296.506667pt;}
.y153{bottom:297.306667pt;}
.y98{bottom:299.560000pt;}
.y193{bottom:300.066667pt;}
.y137{bottom:301.466667pt;}
.y203{bottom:303.226667pt;}
.yaf{bottom:303.240000pt;}
.y67{bottom:303.546667pt;}
.y187{bottom:303.586667pt;}
.y1ee{bottom:306.426667pt;}
.y1df{bottom:308.826667pt;}
.y24f{bottom:310.426667pt;}
.y1cb{bottom:310.906667pt;}
.y1ab{bottom:312.506667pt;}
.y97{bottom:314.600000pt;}
.y166{bottom:315.706667pt;}
.y22e{bottom:316.186667pt;}
.y114{bottom:317.786667pt;}
.yae{bottom:318.280000pt;}
.y186{bottom:318.466667pt;}
.y66{bottom:318.626667pt;}
.y1d{bottom:320.826667pt;}
.y202{bottom:322.906667pt;}
.ydc{bottom:324.506667pt;}
.y152{bottom:327.866667pt;}
.y1de{bottom:328.346667pt;}
.y96{bottom:329.640000pt;}
.y35{bottom:330.906667pt;}
.y2b6{bottom:331.226667pt;}
.y293{bottom:332.026667pt;}
.y136{bottom:332.186667pt;}
.yad{bottom:333.320000pt;}
.yf9{bottom:333.466667pt;}
.y65{bottom:333.506667pt;}
.y165{bottom:335.386667pt;}
.y22d{bottom:335.706667pt;}
.y1c{bottom:337.306667pt;}
.y274{bottom:340.826667pt;}
.y24e{bottom:340.986667pt;}
.y1ca{bottom:341.466667pt;}
.y201{bottom:342.426667pt;}
.y95{bottom:344.706667pt;}
.y33{bottom:346.586667pt;}
.y135{bottom:347.866667pt;}
.yac{bottom:348.386667pt;}
.y64{bottom:348.546667pt;}
.y1aa{bottom:351.706667pt;}
.y1b{bottom:353.946667pt;}
.y164{bottom:354.906667pt;}
.ydb{bottom:355.226667pt;}
.y22c{bottom:355.386667pt;}
.y2a3{bottom:356.986667pt;}
.y151{bottom:358.586667pt;}
.y1dd{bottom:359.066667pt;}
.y94{bottom:359.586667pt;}
.y24c{bottom:360.666667pt;}
.y2b5{bottom:361.946667pt;}
.y200{bottom:362.106667pt;}
.yab{bottom:363.266667pt;}
.y113{bottom:363.546667pt;}
.y63{bottom:363.586667pt;}
.yf8{bottom:364.186667pt;}
.y1a{bottom:370.946667pt;}
.y1a9{bottom:371.426667pt;}
.y1c9{bottom:372.226667pt;}
.y150{bottom:374.306667pt;}
.y93{bottom:374.626667pt;}
.y22b{bottom:374.946667pt;}
.y292{bottom:377.666667pt;}
.yaa{bottom:378.306667pt;}
.y134{bottom:378.466667pt;}
.y62{bottom:378.626667pt;}
.y1ff{bottom:381.666667pt;}
.y19{bottom:389.026667pt;}
.y92{bottom:389.666667pt;}
.y1a8{bottom:390.946667pt;}
.y24a{bottom:391.266667pt;}
.ya9{bottom:393.346667pt;}
.y61{bottom:393.506667pt;}
.y112{bottom:394.146667pt;}
.y22a{bottom:394.626667pt;}
.yf7{bottom:394.946667pt;}
.y1dc{bottom:398.306667pt;}
.y1fe{bottom:401.346667pt;}
.y1c8{bottom:402.946667pt;}
.y91{bottom:404.706667pt;}
.y1ed{bottom:404.866667pt;}
.y2b4{bottom:407.586667pt;}
.ya8{bottom:408.386667pt;}
.y60{bottom:408.546667pt;}
.y18{bottom:409.026667pt;}
.y133{bottom:409.186667pt;}
.y111{bottom:409.826667pt;}
.y1a7{bottom:410.626667pt;}
.y249{bottom:410.946667pt;}
.y229{bottom:414.146667pt;}
.y184{bottom:417.026667pt;}
.y1db{bottom:417.826667pt;}
.y90{bottom:419.586667pt;}
.y1fd{bottom:420.866667pt;}
.y1c7{bottom:422.466667pt;}
.ya7{bottom:423.266667pt;}
.y291{bottom:423.426667pt;}
.y5f{bottom:423.586667pt;}
.yf6{bottom:425.506667pt;}
.y17{bottom:431.266667pt;}
.y228{bottom:433.826667pt;}
.y191{bottom:434.946667pt;}
.y1da{bottom:437.506667pt;}
.ya6{bottom:438.306667pt;}
.y5e{bottom:438.626667pt;}
.y132{bottom:439.906667pt;}
.y110{bottom:440.546667pt;}
.y248{bottom:441.666667pt;}
.yda{bottom:446.466667pt;}
.y14f{bottom:449.986667pt;}
.y8f{bottom:453.346667pt;}
.y5d{bottom:453.506667pt;}
.y16{bottom:453.666667pt;}
.yf5{bottom:456.226667pt;}
.y1d9{bottom:457.026667pt;}
.y1fc{bottom:460.066667pt;}
.y183{bottom:466.626667pt;}
.y8e{bottom:468.386667pt;}
.y5c{bottom:468.546667pt;}
.y290{bottom:469.026667pt;}
.y131{bottom:470.466667pt;}
.y1a6{bottom:471.266667pt;}
.y10f{bottom:471.906667pt;}
.y227{bottom:473.026667pt;}
.y15{bottom:475.906667pt;}
.y1d8{bottom:476.706667pt;}
.yd9{bottom:477.186667pt;}
.y2a2{bottom:478.466667pt;}
.y1fb{bottom:479.746667pt;}
.y14e{bottom:480.706667pt;}
.y8d{bottom:483.266667pt;}
.y5b{bottom:483.586667pt;}
.yf4{bottom:486.946667pt;}
.y247{bottom:487.266667pt;}
.y226{bottom:492.546667pt;}
.y17e{bottom:497.346667pt;}
.y1c6{bottom:498.146667pt;}
.y14{bottom:498.306667pt;}
.y5a{bottom:498.626667pt;}
.y2b3{bottom:498.946667pt;}
.y1fa{bottom:499.266667pt;}
.y130{bottom:501.186667pt;}
.yf3{bottom:502.466667pt;}
.yd8{bottom:507.906667pt;}
.y190{bottom:510.626667pt;}
.y14d{bottom:511.266667pt;}
.y225{bottom:512.226667pt;}
.y8c{bottom:513.346667pt;}
.y59{bottom:513.506667pt;}
.y162{bottom:514.946667pt;}
.y265{bottom:515.906667pt;}
.y246{bottom:517.986667pt;}
.y1f9{bottom:518.946667pt;}
.y13{bottom:520.546667pt;}
.y28f{bottom:524.226667pt;}
.y1ec{bottom:525.506667pt;}
.y8b{bottom:528.386667pt;}
.y58{bottom:528.573333pt;}
.y224{bottom:531.746667pt;}
.y12f{bottom:531.906667pt;}
.y10e{bottom:533.186667pt;}
.y161{bottom:534.466667pt;}
.y1d7{bottom:537.346667pt;}
.y245{bottom:537.506667pt;}
.yd7{bottom:538.466667pt;}
.y2a1{bottom:539.106667pt;}
.y12{bottom:542.946667pt;}
.y57{bottom:543.613333pt;}
.y2b2{bottom:544.706667pt;}
.y264{bottom:546.466667pt;}
.y1c5{bottom:547.746667pt;}
.y10d{bottom:548.866667pt;}
.y223{bottom:551.426667pt;}
.yd5{bottom:554.146667pt;}
.y14c{bottom:557.026667pt;}
.y56{bottom:558.653333pt;}
.y18e{bottom:560.066667pt;}
.y1a5{bottom:561.986667pt;}
.y12e{bottom:562.466667pt;}
.yf2{bottom:563.266667pt;}
.y10b{bottom:564.546667pt;}
.y1c4{bottom:567.266667pt;}
.y243{bottom:568.226667pt;}
.y1f8{bottom:569.186667pt;}
.y28e{bottom:569.826667pt;}
.y11{bottom:570.466667pt;}
.y222{bottom:570.946667pt;}
.y160{bottom:573.666667pt;}
.y1eb{bottom:575.106667pt;}
.y263{bottom:577.186667pt;}
.y2a0{bottom:584.706667pt;}
.y1c3{bottom:586.973333pt;}
.y14b{bottom:587.613333pt;}
.y28d{bottom:589.533333pt;}
.y2b1{bottom:590.333333pt;}
.y221{bottom:590.653333pt;}
.y1a4{bottom:592.573333pt;}
.y12d{bottom:593.213333pt;}
.y15f{bottom:593.373333pt;}
.yf1{bottom:593.853333pt;}
.y242{bottom:598.973333pt;}
.y10{bottom:605.853333pt;}
.y1c2{bottom:606.493333pt;}
.y262{bottom:607.933333pt;}
.y220{bottom:610.173333pt;}
.y15c{bottom:612.893333pt;}
.yd4{bottom:614.973333pt;}
.y14a{bottom:618.333333pt;}
.y241{bottom:618.493333pt;}
.y12c{bottom:623.933333pt;}
.yf0{bottom:624.573333pt;}
.y1c1{bottom:626.173333pt;}
.y1f7{bottom:629.853333pt;}
.y29f{bottom:630.493333pt;}
.y53{bottom:631.133333pt;}
.yf{bottom:633.373333pt;}
.y149{bottom:634.013333pt;}
.y28c{bottom:635.133333pt;}
.y1ea{bottom:635.773333pt;}
.y2b0{bottom:635.933333pt;}
.y240{bottom:638.173333pt;}
.y12a{bottom:639.613333pt;}
.yef{bottom:640.253333pt;}
.y273{bottom:641.533333pt;}
.yd1{bottom:645.533333pt;}
.y1d6{bottom:645.693333pt;}
.y31{bottom:647.933333pt;}
.y51{bottom:648.573333pt;}
.y21f{bottom:649.373333pt;}
.y18d{bottom:650.813333pt;}
.y261{bottom:653.533333pt;}
.y28b{bottom:654.813333pt;}
.y10a{bottom:655.293333pt;}
.yee{bottom:655.933333pt;}
.y1d5{bottom:665.373333pt;}
.y50{bottom:666.173333pt;}
.y21e{bottom:669.053333pt;}
.yed{bottom:671.613333pt;}
.y260{bottom:673.213333pt;}
.y1f3{bottom:675.613333pt;}
.ye{bottom:676.093333pt;}
.y2af{bottom:681.693333pt;}
.y1a3{bottom:683.293333pt;}
.y23f{bottom:683.773333pt;}
.y1e9{bottom:685.373333pt;}
.y109{bottom:685.853333pt;}
.y1c0{bottom:686.813333pt;}
.y21d{bottom:688.573333pt;}
.y272{bottom:691.133333pt;}
.y148{bottom:694.653333pt;}
.y30{bottom:697.533333pt;}
.y18c{bottom:700.413333pt;}
.y1a2{bottom:702.973333pt;}
.y25f{bottom:703.773333pt;}
.y28a{bottom:705.053333pt;}
.y1bf{bottom:706.333333pt;}
.y21c{bottom:708.253333pt;}
.yd0{bottom:710.173333pt;}
.y2ae{bottom:712.413333pt;}
.y2f{bottom:713.213333pt;}
.y4f{bottom:715.773333pt;}
.y29e{bottom:721.853333pt;}
.yd{bottom:722.653333pt;}
.y147{bottom:725.373333pt;}
.y1be{bottom:726.013333pt;}
.y21b{bottom:727.773333pt;}
.y15b{bottom:733.533333pt;}
.y25e{bottom:734.493333pt;}
.y289{bottom:735.613333pt;}
.yc2{bottom:740.733333pt;}
.y146{bottom:741.053333pt;}
.y129{bottom:745.213333pt;}
.y1bd{bottom:745.533333pt;}
.y1e8{bottom:746.013333pt;}
.yec{bottom:747.293333pt;}
.y21a{bottom:747.453333pt;}
.y108{bottom:750.493333pt;}
.y271{bottom:751.773333pt;}
.y25d{bottom:754.013333pt;}
.y288{bottom:755.293333pt;}
.yc{bottom:758.013333pt;}
.y23e{bottom:759.453333pt;}
.y18b{bottom:761.053333pt;}
.y1bc{bottom:765.213333pt;}
.y4e{bottom:765.373333pt;}
.y219{bottom:766.973333pt;}
.y29d{bottom:767.453333pt;}
.y145{bottom:771.613333pt;}
.y127{bottom:775.933333pt;}
.yea{bottom:777.853333pt;}
.yb{bottom:780.413333pt;}
.y107{bottom:781.053333pt;}
.y4c{bottom:782.653333pt;}
.y1bb{bottom:784.733333pt;}
.y78{bottom:785.853333pt;}
.y218{bottom:786.653333pt;}
.y23b{bottom:790.173333pt;}
.y1a1{bottom:793.533333pt;}
.y1e7{bottom:795.613333pt;}
.y26f{bottom:797.373333pt;}
.y17c{bottom:798.013333pt;}
.y287{bottom:800.933333pt;}
.y144{bottom:802.373333pt;}
.ya{bottom:802.693333pt;}
.y2ad{bottom:803.653333pt;}
.y1ba{bottom:804.453333pt;}
.y217{bottom:806.213333pt;}
.y18a{bottom:810.533333pt;}
.y106{bottom:811.813333pt;}
.y29c{bottom:813.093333pt;}
.y4b{bottom:813.413333pt;}
.y286{bottom:820.613333pt;}
.y1b9{bottom:823.973333pt;}
.y1a0{bottom:824.293333pt;}
.y9{bottom:825.093333pt;}
.y216{bottom:825.893333pt;}
.y4a{bottom:830.693333pt;}
.y143{bottom:833.093333pt;}
.y25c{bottom:835.013333pt;}
.y126{bottom:840.453333pt;}
.ye9{bottom:842.533333pt;}
.y26e{bottom:843.173333pt;}
.y17b{bottom:843.653333pt;}
.y215{bottom:845.413333pt;}
.y8{bottom:847.333333pt;}
.y2c2{bottom:847.493333pt;}
.y142{bottom:848.773333pt;}
.y2ac{bottom:849.413333pt;}
.y15a{bottom:854.213333pt;}
.y19f{bottom:855.013333pt;}
.y105{bottom:858.213333pt;}
.y29b{bottom:858.853333pt;}
.y48{bottom:861.413333pt;}
.y1b8{bottom:863.173333pt;}
.y2c1{bottom:864.453333pt;}
.y214{bottom:865.093333pt;}
.y285{bottom:866.213333pt;}
.y7{bottom:869.733333pt;}
.y125{bottom:871.173333pt;}
.ye8{bottom:873.093333pt;}
.y26d{bottom:873.893333pt;}
.y140{bottom:879.333333pt;}
.y2ab{bottom:879.973333pt;}
.y1b7{bottom:882.853333pt;}
.y213{bottom:884.613333pt;}
.y19e{bottom:885.573333pt;}
.y284{bottom:885.893333pt;}
.y1f2{bottom:890.213333pt;}
.y6{bottom:891.973333pt;}
.y17a{bottom:893.253333pt;}
.y124{bottom:901.893333pt;}
.y1b6{bottom:902.373333pt;}
.ye7{bottom:903.813333pt;}
.y212{bottom:904.293333pt;}
.y29a{bottom:904.453333pt;}
.y2c0{bottom:910.053333pt;}
.y25b{bottom:910.693333pt;}
.y179{bottom:912.773333pt;}
.y5{bottom:914.373333pt;}
.y19d{bottom:916.293333pt;}
.y123{bottom:917.413333pt;}
.y104{bottom:918.853333pt;}
.y26c{bottom:919.493333pt;}
.y1b5{bottom:922.053333pt;}
.y211{bottom:923.813333pt;}
.y2e{bottom:927.973333pt;}
.y2d{bottom:928.613333pt;}
.y188{bottom:931.333333pt;}
.y283{bottom:931.493333pt;}
.y178{bottom:932.453333pt;}
.y122{bottom:933.093333pt;}
.ye6{bottom:934.533333pt;}
.y2aa{bottom:935.173333pt;}
.y4{bottom:936.613333pt;}
.y2bd{bottom:940.773333pt;}
.y47{bottom:941.573333pt;}
.y210{bottom:943.493333pt;}
.y2c{bottom:944.293333pt;}
.y1e6{bottom:946.213333pt;}
.y121{bottom:948.773333pt;}
.y103{bottom:949.413333pt;}
.y299{bottom:950.213333pt;}
.y282{bottom:951.173333pt;}
.y177{bottom:951.973333pt;}
.y259{bottom:956.453333pt;}
.y46{bottom:959.013333pt;}
.y2b{bottom:959.973333pt;}
.y1d4{bottom:961.253333pt;}
.y20f{bottom:963.013333pt;}
.y3{bottom:964.133333pt;}
.ye5{bottom:965.093333pt;}
.y176{bottom:971.653333pt;}
.y29{bottom:975.653333pt;}
.y45{bottom:976.293333pt;}
.y120{bottom:979.493333pt;}
.y102{bottom:980.133333pt;}
.ye4{bottom:980.773333pt;}
.y280{bottom:981.733333pt;}
.y20e{bottom:982.693333pt;}
.y175{bottom:991.173333pt;}
.y26{bottom:991.973333pt;}
.y1e5{bottom:995.813333pt;}
.y27e{bottom:1001.413333pt;}
.y1b4{bottom:1002.213333pt;}
.y2{bottom:1004.613333pt;}
.y11f{bottom:1010.213333pt;}
.y101{bottom:1010.853333pt;}
.y174{bottom:1021.920000pt;}
.y11e{bottom:1025.920000pt;}
.y25{bottom:1045.120000pt;}
.y1{bottom:1045.280000pt;}
.y24{bottom:1062.080000pt;}
.h12{height:1.782500pt;}
.hc{height:14.880000pt;}
.h26{height:14.912000pt;}
.he{height:15.040000pt;}
.h37{height:15.072000pt;}
.h1b{height:16.640000pt;}
.h20{height:16.800000pt;}
.h1f{height:16.960000pt;}
.h3b{height:18.880000pt;}
.h3c{height:18.912000pt;}
.h3e{height:19.040000pt;}
.h3d{height:19.072000pt;}
.h4e{height:24.480000pt;}
.h1a{height:26.645625pt;}
.h1c{height:29.920000pt;}
.h2d{height:29.952000pt;}
.h1d{height:30.080000pt;}
.h1e{height:30.112000pt;}
.h28{height:34.265900pt;}
.hf{height:35.975313pt;}
.h9{height:36.210938pt;}
.h17{height:36.986875pt;}
.h22{height:37.007812pt;}
.h10{height:37.920930pt;}
.h53{height:39.392000pt;}
.h43{height:40.073438pt;}
.h18{height:40.085625pt;}
.hd{height:40.955312pt;}
.h3{height:44.418750pt;}
.h32{height:44.960000pt;}
.h3f{height:44.992000pt;}
.h31{height:45.120000pt;}
.h51{height:45.152000pt;}
.h19{height:45.396250pt;}
.h27{height:48.800000pt;}
.ha{height:48.832000pt;}
.h14{height:48.960000pt;}
.h7{height:52.134375pt;}
.hb{height:52.143750pt;}
.h4a{height:52.990313pt;}
.h8{height:53.535000pt;}
.h54{height:54.400000pt;}
.h35{height:54.560000pt;}
.h6{height:57.787500pt;}
.h5{height:59.340000pt;}
.h2e{height:60.000000pt;}
.h2b{height:60.032000pt;}
.h4c{height:60.351562pt;}
.h11{height:63.360000pt;}
.h2a{height:63.840000pt;}
.h33{height:63.872000pt;}
.h2f{height:64.000000pt;}
.h2c{height:64.032000pt;}
.h25{height:74.880000pt;}
.h36{height:75.040000pt;}
.h38{height:75.072000pt;}
.h2{height:80.629687pt;}
.h4f{height:84.352000pt;}
.h45{height:89.920000pt;}
.h30{height:89.952000pt;}
.h46{height:90.080000pt;}
.h42{height:90.112000pt;}
.h4d{height:93.792000pt;}
.h4{height:96.562500pt;}
.h48{height:97.792000pt;}
.h34{height:104.960000pt;}
.h3a{height:120.000000pt;}
.h39{height:120.032000pt;}
.h50{height:123.840000pt;}
.h52{height:123.872000pt;}
.h16{height:135.066667pt;}
.h47{height:149.946667pt;}
.h4b{height:213.786667pt;}
.h13{height:214.106667pt;}
.h23{height:254.946667pt;}
.h49{height:255.066667pt;}
.h40{height:300.026667pt;}
.h29{height:300.066667pt;}
.h15{height:300.706667pt;}
.h44{height:318.946667pt;}
.h41{height:345.026667pt;}
.h24{height:539.746667pt;}
.h21{height:570.013333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:56.320000pt;}
.w7{width:56.352000pt;}
.w9{width:56.480000pt;}
.wb{width:132.352000pt;}
.w5{width:170.426667pt;}
.wd{width:274.146667pt;}
.we{width:292.986667pt;}
.w4{width:341.506667pt;}
.wc{width:567.133333pt;}
.w6{width:683.813333pt;}
.w3{width:699.493333pt;}
.wa{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.200000pt;}
.x1f{left:15.040000pt;}
.x1d{left:20.960000pt;}
.x39{left:31.200000pt;}
.x19{left:46.440000pt;}
.x7{left:47.999988pt;}
.x2a{left:49.952000pt;}
.x2c{left:51.999988pt;}
.x15{left:55.840000pt;}
.x1e{left:112.832000pt;}
.x16{left:150.426667pt;}
.x3a{left:162.746667pt;}
.x35{left:166.106667pt;}
.x20{left:169.946667pt;}
.x31{left:177.306667pt;}
.x2d{left:180.346667pt;}
.x30{left:198.906667pt;}
.x36{left:200.826667pt;}
.x3b{left:205.626667pt;}
.x4{left:212.026655pt;}
.x29{left:223.266667pt;}
.x18{left:226.906667pt;}
.x5{left:229.306655pt;}
.x2b{left:240.026655pt;}
.x2f{left:245.506667pt;}
.x6{left:256.826655pt;}
.x21{left:284.066667pt;}
.x34{left:291.586667pt;}
.x13{left:293.026655pt;}
.x1b{left:304.226667pt;}
.x3{left:311.746655pt;}
.x22{left:341.026667pt;}
.x32{left:353.346667pt;}
.x3c{left:359.106667pt;}
.x1c{left:379.613333pt;}
.x2{left:396.866655pt;}
.x17{left:398.146667pt;}
.x38{left:404.093333pt;}
.x23{left:455.133333pt;}
.x33{left:463.453333pt;}
.x2e{left:474.333333pt;}
.x37{left:476.253333pt;}
.x24{left:512.093333pt;}
.x1{left:534.973322pt;}
.xd{left:540.093322pt;}
.xf{left:542.333322pt;}
.x12{left:549.053322pt;}
.x10{left:561.693322pt;}
.x11{left:565.373322pt;}
.x1a{left:569.213333pt;}
.xe{left:579.293322pt;}
.xc{left:589.533322pt;}
.x28{left:590.693333pt;}
.xb{left:600.253322pt;}
.x8{left:607.333322pt;}
.x9{left:609.893322pt;}
.x25{left:626.213333pt;}
.x26{left:683.173333pt;}
.x27{left:692.133333pt;}
.xa{left:745.893322pt;}
}




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