
    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_44ab2ef4ff2bc355e74aa6bc.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_6df2a0020c58e2ccae5a5110.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_a9bd87f0896943d45be177fb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_c604a6b328e0504e6e3fe420.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_659110efbedd9631ec187477.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_eb81db9fd17994bc7f2c8214.woff')format("woff");}.ff6{font-family:ff6;line-height:1.061035;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_2011c0829742e469e31ee3f7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cfb9cfbfc1519ac9c9daca5c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.208008;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_e2c6b888b49e337b11802c97.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_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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;}
.v8{vertical-align:-15.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:18.000000px;}
.v5{vertical-align:30.240000px;}
.v4{vertical-align:35.280000px;}
.v7{vertical-align:46.800000px;}
.ls26{letter-spacing:-0.444600px;}
.ls29{letter-spacing:-0.391800px;}
.ls1f{letter-spacing:-0.383400px;}
.ls2d{letter-spacing:-0.299400px;}
.ls31{letter-spacing:-0.262200px;}
.ls18{letter-spacing:-0.186600px;}
.lsf{letter-spacing:-0.181200px;}
.ls27{letter-spacing:-0.162000px;}
.lsa{letter-spacing:-0.135000px;}
.ls39{letter-spacing:-0.128400px;}
.ls38{letter-spacing:-0.125400px;}
.lsd{letter-spacing:-0.121200px;}
.ls3c{letter-spacing:-0.096600px;}
.ls9{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls43{letter-spacing:-0.068400px;}
.ls2e{letter-spacing:-0.067200px;}
.ls1c{letter-spacing:-0.066000px;}
.lsb{letter-spacing:-0.063600px;}
.ls20{letter-spacing:-0.055800px;}
.ls34{letter-spacing:-0.049680px;}
.ls40{letter-spacing:-0.037800px;}
.ls8{letter-spacing:-0.036000px;}
.ls2c{letter-spacing:-0.031680px;}
.ls32{letter-spacing:-0.018360px;}
.ls1a{letter-spacing:-0.014760px;}
.ls3a{letter-spacing:-0.013320px;}
.ls42{letter-spacing:-0.009000px;}
.ls1e{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014760px;}
.ls14{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls2b{letter-spacing:0.051840px;}
.ls5{letter-spacing:0.060480px;}
.ls1b{letter-spacing:0.060600px;}
.ls24{letter-spacing:0.064800px;}
.ls33{letter-spacing:0.068400px;}
.ls2{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.074160px;}
.ls3{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls21{letter-spacing:0.097560px;}
.ls3b{letter-spacing:0.097800px;}
.ls22{letter-spacing:0.098280px;}
.ls1d{letter-spacing:0.105000px;}
.ls13{letter-spacing:0.111240px;}
.ls2a{letter-spacing:0.127200px;}
.ls16{letter-spacing:0.143040px;}
.ls7{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.153360px;}
.ls19{letter-spacing:0.173400px;}
.lse{letter-spacing:0.178800px;}
.ls37{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.180480px;}
.ls30{letter-spacing:0.180600px;}
.ls17{letter-spacing:0.203400px;}
.ls3f{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls2f{letter-spacing:1.526400px;}
.ls3e{letter-spacing:1.533600px;}
.ls12{letter-spacing:5.052240px;}
.ls3d{letter-spacing:14.246640px;}
.ls41{letter-spacing:17.013600px;}
.ls36{letter-spacing:47.726640px;}
.ls25{letter-spacing:63.566640px;}
.ls35{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;}
}
.ws10{word-spacing:-47.118840px;}
.ws11{word-spacing:-32.937840px;}
.ws6{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.ws1a{word-spacing:-13.407000px;}
.wsb{word-spacing:-13.399800px;}
.ws18{word-spacing:-13.353600px;}
.ws20{word-spacing:-13.324200px;}
.ws26{word-spacing:-13.287000px;}
.wsf{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.218840px;}
.ws23{word-spacing:-13.217400px;}
.ws1f{word-spacing:-13.213080px;}
.wsc{word-spacing:-13.211640px;}
.ws22{word-spacing:-13.188600px;}
.ws1c{word-spacing:-13.176720px;}
.ws3{word-spacing:-13.162800px;}
.wsd{word-spacing:-13.160400px;}
.ws19{word-spacing:-13.159200px;}
.ws24{word-spacing:-13.158000px;}
.ws1b{word-spacing:-13.141800px;}
.ws21{word-spacing:-13.129800px;}
.ws1d{word-spacing:-13.101000px;}
.ws1e{word-spacing:-13.098000px;}
.ws16{word-spacing:-13.064400px;}
.wsa{word-spacing:-13.039800px;}
.ws25{word-spacing:-12.927000px;}
.ws13{word-spacing:-12.843000px;}
.ws0{word-spacing:-11.844000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws7{word-spacing:-8.732400px;}
.ws15{word-spacing:-8.614200px;}
.ws17{word-spacing:-8.553600px;}
.ws8{word-spacing:-8.372400px;}
.ws14{word-spacing:-6.573600px;}
.ws9{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._10{margin-left:-3.214195px;}
._9{margin-left:-2.142360px;}
._0{margin-left:-1.086000px;}
._2{width:1.246884px;}
._f{width:2.309820px;}
._7{width:3.547200px;}
._8{width:4.644275px;}
._a{width:6.252600px;}
._d{width:7.306918px;}
._4{width:8.493355px;}
._3{width:9.499200px;}
._b{width:10.521000px;}
._c{width:11.783400px;}
._11{width:12.860520px;}
._29{width:14.316240px;}
._e{width:15.330600px;}
._12{width:16.412760px;}
._13{width:17.615641px;}
._5{width:18.757200px;}
._6{width:19.784402px;}
._1a{width:21.042000px;}
._1b{width:22.221241px;}
._14{width:24.222240px;}
._16{width:25.671240px;}
._15{width:26.914320px;}
._24{width:28.316520px;}
._17{width:29.699280px;}
._3e{width:30.743160px;}
._1{width:32.631600px;}
._19{width:33.814560px;}
._28{width:36.072000px;}
._1f{width:39.566640px;}
._1c{width:41.362560px;}
._3f{width:42.405397px;}
._18{width:43.707240px;}
._1e{width:45.033720px;}
._36{width:46.172160px;}
._2a{width:49.298400px;}
._40{width:50.404320px;}
._41{width:51.530880px;}
._25{width:52.544880px;}
._26{width:53.687160px;}
._39{width:55.022760px;}
._38{width:56.091960px;}
._43{width:63.563760px;}
._44{width:64.701840px;}
._2f{width:69.979680px;}
._2e{width:71.061840px;}
._21{width:73.466640px;}
._31{width:74.488680px;}
._3d{width:86.632920px;}
._2c{width:88.135920px;}
._42{width:92.909160px;}
._32{width:94.388400px;}
._2d{width:98.837280px;}
._1d{width:100.099800px;}
._30{width:103.105800px;}
._23{width:108.937440px;}
._22{width:110.380320px;}
._20{width:114.288120px;}
._35{width:125.229960px;}
._2b{width:129.738960px;}
._3a{width:131.602680px;}
._33{width:137.795040px;}
._3b{width:144.949320px;}
._3c{width:155.650680px;}
._27{width:168.756840px;}
._37{width:199.057320px;}
._34{width:203.325840px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.880000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:3.600000px;}
.yad{bottom:7.830000px;}
.y1a5{bottom:7.860000px;}
.ya5{bottom:7.920000px;}
.yee{bottom:7.950000px;}
.y5a{bottom:17.730000px;}
.yaf{bottom:20.970000px;}
.yef{bottom:21.000000px;}
.yb1{bottom:25.380000px;}
.y166{bottom:25.410000px;}
.yac{bottom:25.470000px;}
.yed{bottom:25.500000px;}
.y1af{bottom:29.970000px;}
.y59{bottom:31.770000px;}
.ya9{bottom:38.520000px;}
.yab{bottom:43.020000px;}
.yb4{bottom:43.050000px;}
.ye8{bottom:43.110000px;}
.yec{bottom:43.140000px;}
.y1ae{bottom:47.520000px;}
.yd2{bottom:56.160000px;}
.ya8{bottom:60.570000px;}
.yb3{bottom:60.600000px;}
.yd1{bottom:60.660000px;}
.y16f{bottom:60.690000px;}
.yaa{bottom:64.350000px;}
.y1ad{bottom:65.070000px;}
.y58{bottom:72.750000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.ya7{bottom:78.210000px;}
.y1ac{bottom:82.710000px;}
.y1a9{bottom:95.760000px;}
.y1{bottom:101.640000px;}
.yd3{bottom:115.050000px;}
.y151{bottom:118.200000px;}
.y259{bottom:123.870000px;}
.y7e{bottom:124.050000px;}
.yae{bottom:125.220000px;}
.yf9{bottom:126.300000px;}
.y17e{bottom:128.910000px;}
.y1ab{bottom:131.880000px;}
.y247{bottom:132.510000px;}
.y223{bottom:133.320000px;}
.y1dd{bottom:133.860000px;}
.y57{bottom:137.010000px;}
.y7d{bottom:141.690000px;}
.y28{bottom:142.140000px;}
.yf8{bottom:143.850000px;}
.y19a{bottom:144.390000px;}
.y17d{bottom:146.460000px;}
.y204{bottom:149.250000px;}
.y246{bottom:150.060000px;}
.y258{bottom:150.510000px;}
.y222{bottom:150.870000px;}
.y126{bottom:153.840000px;}
.y7c{bottom:159.240000px;}
.y27{bottom:159.690000px;}
.y1dc{bottom:160.500000px;}
.yf7{bottom:161.490000px;}
.y199{bottom:161.940000px;}
.y17c{bottom:164.100000px;}
.y203{bottom:166.800000px;}
.y257{bottom:168.060000px;}
.y221{bottom:168.510000px;}
.y125{bottom:171.390000px;}
.y245{bottom:176.610000px;}
.y26{bottom:177.330000px;}
.yd0{bottom:177.510000px;}
.yf6{bottom:179.040000px;}
.y56{bottom:179.310000px;}
.y198{bottom:179.580000px;}
.y17b{bottom:181.650000px;}
.y1db{bottom:187.050000px;}
.y124{bottom:188.940000px;}
.y150{bottom:189.390000px;}
.y202{bottom:193.440000px;}
.y256{bottom:194.610000px;}
.y25{bottom:194.880000px;}
.y220{bottom:195.060000px;}
.y7b{bottom:195.690000px;}
.yf5{bottom:196.680000px;}
.y197{bottom:197.130000px;}
.y17a{bottom:199.200000px;}
.y244{bottom:203.250000px;}
.ya6{bottom:205.320000px;}
.y123{bottom:206.580000px;}
.y14f{bottom:206.940000px;}
.y201{bottom:210.990000px;}
.y255{bottom:212.250000px;}
.y24{bottom:212.430000px;}
.y21f{bottom:212.610000px;}
.y7a{bottom:213.240000px;}
.y1da{bottom:213.600000px;}
.y196{bottom:214.680000px;}
.y55{bottom:214.860000px;}
.y179{bottom:216.840000px;}
.yf4{bottom:223.230000px;}
.y122{bottom:224.130000px;}
.y14e{bottom:224.580000px;}
.y243{bottom:229.800000px;}
.y23{bottom:230.070000px;}
.y79{bottom:230.790000px;}
.y195{bottom:232.320000px;}
.y1aa{bottom:234.030000px;}
.y178{bottom:234.390000px;}
.y200{bottom:237.540000px;}
.y273{bottom:238.800000px;}
.y21e{bottom:239.250000px;}
.y1d9{bottom:240.240000px;}
.y121{bottom:241.680000px;}
.y14d{bottom:242.130000px;}
.y53{bottom:247.080000px;}
.y22{bottom:247.620000px;}
.y194{bottom:249.870000px;}
.y177{bottom:252.030000px;}
.y52{bottom:254.640000px;}
.y1ff{bottom:255.180000px;}
.yf3{bottom:255.810000px;}
.y242{bottom:256.440000px;}
.y21d{bottom:256.800000px;}
.y78{bottom:257.430000px;}
.y1d8{bottom:257.790000px;}
.y120{bottom:259.320000px;}
.y14c{bottom:259.680000px;}
.y1a8{bottom:261.390000px;}
.y21{bottom:265.260000px;}
.y272{bottom:265.440000px;}
.y54{bottom:266.340000px;}
.y193{bottom:267.510000px;}
.y176{bottom:269.580000px;}
.y21c{bottom:274.440000px;}
.ycf{bottom:275.250000px;}
.y11f{bottom:276.870000px;}
.y14b{bottom:277.320000px;}
.y1fe{bottom:281.730000px;}
.y241{bottom:282.990000px;}
.y1d7{bottom:284.430000px;}
.y192{bottom:285.060000px;}
.y175{bottom:287.130000px;}
.yf2{bottom:291.720000px;}
.y271{bottom:291.990000px;}
.y77{bottom:293.340000px;}
.y11e{bottom:294.510000px;}
.y14a{bottom:294.870000px;}
.y51{bottom:296.940000px;}
.y240{bottom:300.540000px;}
.y20{bottom:300.810000px;}
.y21b{bottom:300.990000px;}
.y191{bottom:302.610000px;}
.ya4{bottom:302.970000px;}
.y1fd{bottom:308.370000px;}
.y1d6{bottom:310.980000px;}
.y11d{bottom:312.060000px;}
.y149{bottom:312.510000px;}
.y174{bottom:313.770000px;}
.y1f{bottom:318.360000px;}
.y21a{bottom:318.540000px;}
.y190{bottom:320.250000px;}
.y23f{bottom:327.180000px;}
.y1d5{bottom:328.530000px;}
.y11c{bottom:329.610000px;}
.y148{bottom:330.060000px;}
.y50{bottom:332.580000px;}
.y1fc{bottom:334.920000px;}
.y1e{bottom:336.000000px;}
.y270{bottom:336.180000px;}
.yf1{bottom:337.350000px;}
.yce{bottom:337.710000px;}
.y18f{bottom:337.800000px;}
.y76{bottom:341.580000px;}
.y23e{bottom:344.730000px;}
.y219{bottom:345.180000px;}
.y11b{bottom:347.250000px;}
.y147{bottom:347.610000px;}
.y173{bottom:349.320000px;}
.y4f{bottom:350.130000px;}
.ya3{bottom:351.660000px;}
.y1d{bottom:353.550000px;}
.y254{bottom:353.730000px;}
.y1d4{bottom:355.170000px;}
.y18e{bottom:355.440000px;}
.y75{bottom:359.130000px;}
.y1fb{bottom:361.470000px;}
.y26f{bottom:362.730000px;}
.y11a{bottom:364.800000px;}
.y146{bottom:365.250000px;}
.y172{bottom:366.870000px;}
.y4e{bottom:367.770000px;}
.y1c{bottom:371.190000px;}
.y23d{bottom:371.370000px;}
.y218{bottom:371.730000px;}
.y1d3{bottom:372.720000px;}
.y18d{bottom:372.990000px;}
.y1a7{bottom:376.590000px;}
.y74{bottom:376.770000px;}
.y1fa{bottom:379.110000px;}
.y26e{bottom:380.370000px;}
.y119{bottom:382.440000px;}
.y145{bottom:382.800000px;}
.y171{bottom:384.510000px;}
.y4d{bottom:385.320000px;}
.ya2{bottom:387.300000px;}
.y1b{bottom:388.740000px;}
.y217{bottom:389.370000px;}
.y18c{bottom:390.540000px;}
.y73{bottom:394.320000px;}
.y1f9{bottom:396.660000px;}
.y23c{bottom:397.920000px;}
.y1d2{bottom:399.360000px;}
.yf0{bottom:399.900000px;}
.y118{bottom:399.990000px;}
.ycd{bottom:400.260000px;}
.y144{bottom:400.440000px;}
.ya1{bottom:404.850000px;}
.y26d{bottom:406.920000px;}
.y18b{bottom:408.180000px;}
.y170{bottom:411.060000px;}
.y4c{bottom:411.870000px;}
.y72{bottom:411.960000px;}
.y23b{bottom:415.470000px;}
.y1a{bottom:415.650000px;}
.y216{bottom:415.920000px;}
.y143{bottom:417.990000px;}
.ya0{bottom:422.400000px;}
.y1f8{bottom:423.300000px;}
.y26c{bottom:424.470000px;}
.y1d1{bottom:425.910000px;}
.y117{bottom:426.540000px;}
.y71{bottom:429.510000px;}
.y18a{bottom:434.730000px;}
.y142{bottom:435.540000px;}
.y1a6{bottom:439.140000px;}
.y9f{bottom:440.040000px;}
.y1f7{bottom:440.850000px;}
.y16e{bottom:441.030000px;}
.y23a{bottom:442.110000px;}
.y215{bottom:442.470000px;}
.y1d0{bottom:443.460000px;}
.ycc{bottom:445.170000px;}
.y70{bottom:447.060000px;}
.y4b{bottom:447.510000px;}
.y26b{bottom:451.110000px;}
.y141{bottom:453.180000px;}
.y239{bottom:459.660000px;}
.y214{bottom:460.110000px;}
.y116{bottom:462.180000px;}
.yeb{bottom:462.360000px;}
.y19{bottom:463.890000px;}
.y6f{bottom:464.700000px;}
.y4a{bottom:465.060000px;}
.y1a4{bottom:466.500000px;}
.y1f6{bottom:467.400000px;}
.y26a{bottom:468.660000px;}
.y1cf{bottom:470.130000px;}
.y189{bottom:470.400000px;}
.y140{bottom:470.760000px;}
.y9e{bottom:475.620000px;}
.y115{bottom:479.760000px;}
.y18{bottom:481.830000px;}
.y49{bottom:482.730000px;}
.y1f5{bottom:485.070000px;}
.y238{bottom:486.330000px;}
.y213{bottom:486.690000px;}
.y188{bottom:487.950000px;}
.y13f{bottom:488.400000px;}
.y6e{bottom:491.280000px;}
.y9d{bottom:493.260000px;}
.ycb{bottom:493.890000px;}
.y269{bottom:495.330000px;}
.y1ce{bottom:496.680000px;}
.y114{bottom:497.400000px;}
.y237{bottom:503.880000px;}
.y187{bottom:505.500000px;}
.y13e{bottom:505.950000px;}
.y48{bottom:509.280000px;}
.y9c{bottom:510.810000px;}
.y1f4{bottom:511.620000px;}
.y253{bottom:512.880000px;}
.y212{bottom:513.330000px;}
.y1cd{bottom:514.230000px;}
.y113{bottom:514.950000px;}
.y17{bottom:518.910000px;}
.y16d{bottom:521.160000px;}
.y268{bottom:521.880000px;}
.y186{bottom:523.140000px;}
.y163{bottom:523.500000px;}
.yea{bottom:524.940000px;}
.y6d{bottom:526.920000px;}
.y1f3{bottom:529.260000px;}
.yca{bottom:529.440000px;}
.y236{bottom:530.430000px;}
.y211{bottom:530.880000px;}
.y112{bottom:532.500000px;}
.y16{bottom:536.460000px;}
.y267{bottom:539.430000px;}
.y185{bottom:540.690000px;}
.y1cc{bottom:540.870000px;}
.y162{bottom:541.140000px;}
.y6c{bottom:544.470000px;}
.y47{bottom:545.190000px;}
.y9b{bottom:546.360000px;}
.y1a3{bottom:546.630000px;}
.yc9{bottom:547.080000px;}
.y235{bottom:548.070000px;}
.y210{bottom:548.430000px;}
.y111{bottom:550.140000px;}
.y15{bottom:554.010000px;}
.y1f2{bottom:555.810000px;}
.y252{bottom:557.070000px;}
.y184{bottom:558.330000px;}
.y1cb{bottom:558.420000px;}
.y6b{bottom:562.020000px;}
.y9a{bottom:564.000000px;}
.yc8{bottom:564.630000px;}
.y266{bottom:566.070000px;}
.y110{bottom:567.690000px;}
.y13d{bottom:568.140000px;}
.ye9{bottom:569.850000px;}
.y14{bottom:571.650000px;}
.y234{bottom:574.620000px;}
.y20f{bottom:575.070000px;}
.y183{bottom:575.880000px;}
.y161{bottom:576.690000px;}
.y6a{bottom:579.660000px;}
.y99{bottom:581.550000px;}
.yc7{bottom:582.180000px;}
.y1f1{bottom:582.360000px;}
.y265{bottom:583.620000px;}
.y1ca{bottom:585.060000px;}
.y10f{bottom:585.330000px;}
.y13c{bottom:585.690000px;}
.y13{bottom:589.200000px;}
.y233{bottom:592.260000px;}
.y20e{bottom:592.620000px;}
.y46{bottom:593.430000px;}
.y160{bottom:594.330000px;}
.y69{bottom:597.210000px;}
.y98{bottom:599.190000px;}
.yc6{bottom:599.820000px;}
.y16c{bottom:601.260000px;}
.y1c9{bottom:602.610000px;}
.y10e{bottom:602.880000px;}
.y13b{bottom:603.330000px;}
.y12{bottom:606.840000px;}
.y1f0{bottom:609.000000px;}
.y1a2{bottom:609.090000px;}
.y264{bottom:610.260000px;}
.y45{bottom:611.070000px;}
.y15f{bottom:611.880000px;}
.y68{bottom:614.850000px;}
.y97{bottom:616.740000px;}
.yc5{bottom:617.370000px;}
.y232{bottom:618.810000px;}
.y20d{bottom:619.260000px;}
.y10d{bottom:620.430000px;}
.y13a{bottom:620.880000px;}
.y11{bottom:624.390000px;}
.y1ef{bottom:626.550000px;}
.y263{bottom:627.810000px;}
.y44{bottom:628.620000px;}
.y1c8{bottom:629.160000px;}
.y15e{bottom:629.430000px;}
.ye7{bottom:632.310000px;}
.y96{bottom:634.290000px;}
.yc4{bottom:635.010000px;}
.y231{bottom:636.360000px;}
.y10c{bottom:638.070000px;}
.y139{bottom:638.430000px;}
.y67{bottom:641.400000px;}
.y10{bottom:641.940000px;}
.y251{bottom:645.360000px;}
.y20c{bottom:645.810000px;}
.y15d{bottom:647.070000px;}
.y95{bottom:651.930000px;}
.y1ee{bottom:653.190000px;}
.y262{bottom:654.360000px;}
.y182{bottom:655.260000px;}
.y10b{bottom:655.620000px;}
.y1c7{bottom:655.800000px;}
.y138{bottom:656.070000px;}
.yf{bottom:659.580000px;}
.y230{bottom:663.000000px;}
.y20b{bottom:663.360000px;}
.y16b{bottom:663.810000px;}
.y43{bottom:664.260000px;}
.y15c{bottom:664.620000px;}
.y94{bottom:669.480000px;}
.yc3{bottom:670.560000px;}
.y1ed{bottom:670.740000px;}
.y250{bottom:672.000000px;}
.y10a{bottom:673.260000px;}
.y137{bottom:673.620000px;}
.y66{bottom:676.950000px;}
.ye{bottom:677.130000px;}
.y42{bottom:681.810000px;}
.y15b{bottom:682.260000px;}
.y1c6{bottom:682.350000px;}
.y93{bottom:687.120000px;}
.yc2{bottom:688.110000px;}
.y1a1{bottom:689.190000px;}
.y22f{bottom:689.550000px;}
.y20a{bottom:690.000000px;}
.y109{bottom:690.810000px;}
.y136{bottom:691.260000px;}
.y65{bottom:694.590000px;}
.yd{bottom:694.770000px;}
.y1ec{bottom:697.290000px;}
.y261{bottom:698.550000px;}
.y41{bottom:699.360000px;}
.y15a{bottom:699.810000px;}
.y92{bottom:704.670000px;}
.yc1{bottom:705.750000px;}
.y108{bottom:708.360000px;}
.y135{bottom:708.810000px;}
.y1c5{bottom:708.990000px;}
.y64{bottom:712.140000px;}
.yc{bottom:712.320000px;}
.ye6{bottom:712.410000px;}
.y22e{bottom:716.190000px;}
.y1a0{bottom:716.550000px;}
.y40{bottom:717.000000px;}
.y159{bottom:717.360000px;}
.y91{bottom:722.220000px;}
.yc0{bottom:723.300000px;}
.y1eb{bottom:723.930000px;}
.y107{bottom:726.000000px;}
.y134{bottom:726.360000px;}
.y63{bottom:729.780000px;}
.yb{bottom:729.870000px;}
.y209{bottom:734.190000px;}
.y3f{bottom:734.550000px;}
.y158{bottom:735.000000px;}
.y1c4{bottom:735.900000px;}
.y90{bottom:739.860000px;}
.ybf{bottom:740.940000px;}
.y22d{bottom:742.740000px;}
.y106{bottom:743.550000px;}
.y16a{bottom:743.910000px;}
.y133{bottom:744.000000px;}
.y1ea{bottom:750.480000px;}
.y3e{bottom:752.190000px;}
.y157{bottom:752.550000px;}
.y62{bottom:756.330000px;}
.ya{bottom:756.870000px;}
.y8f{bottom:757.410000px;}
.ybe{bottom:758.490000px;}
.y24f{bottom:760.290000px;}
.y208{bottom:760.740000px;}
.y105{bottom:761.190000px;}
.y132{bottom:761.550000px;}
.y22c{bottom:769.290000px;}
.y3d{bottom:769.740000px;}
.ybd{bottom:776.040000px;}
.y1e9{bottom:777.030000px;}
.y207{bottom:778.290000px;}
.ye5{bottom:778.740000px;}
.y19f{bottom:779.010000px;}
.y131{bottom:779.190000px;}
.y8e{bottom:784.050000px;}
.y1c3{bottom:784.140000px;}
.y22b{bottom:786.930000px;}
.y61{bottom:791.880000px;}
.ybc{bottom:793.680000px;}
.y104{bottom:796.290000px;}
.y130{bottom:796.740000px;}
.y1c2{bottom:801.690000px;}
.y9{bottom:803.580000px;}
.y1e8{bottom:803.670000px;}
.y24e{bottom:804.480000px;}
.y206{bottom:804.930000px;}
.y3c{bottom:805.290000px;}
.y169{bottom:806.370000px;}
.ybb{bottom:811.230000px;}
.y22a{bottom:813.480000px;}
.y103{bottom:813.930000px;}
.ye4{bottom:814.290000px;}
.y156{bottom:814.740000px;}
.y1c1{bottom:819.330000px;}
.y8d{bottom:819.600000px;}
.y260{bottom:822.030000px;}
.y3b{bottom:822.930000px;}
.y60{bottom:824.100000px;}
.yba{bottom:828.780000px;}
.y1e7{bottom:830.220000px;}
.y229{bottom:831.030000px;}
.y102{bottom:831.480000px;}
.ye3{bottom:831.930000px;}
.y155{bottom:832.290000px;}
.y1c0{bottom:836.880000px;}
.y8c{bottom:837.150000px;}
.y8{bottom:839.130000px;}
.y3a{bottom:840.480000px;}
.y19e{bottom:841.560000px;}
.y24d{bottom:848.670000px;}
.y181{bottom:849.030000px;}
.ye2{bottom:849.480000px;}
.y154{bottom:849.930000px;}
.y1bf{bottom:854.520000px;}
.y8b{bottom:854.790000px;}
.y1e6{bottom:856.860000px;}
.y228{bottom:857.670000px;}
.y39{bottom:858.030000px;}
.yb9{bottom:864.420000px;}
.y25f{bottom:866.220000px;}
.y180{bottom:866.670000px;}
.ye1{bottom:867.030000px;}
.y153{bottom:867.480000px;}
.y168{bottom:868.920000px;}
.y1be{bottom:872.070000px;}
.y8a{bottom:872.340000px;}
.y1e5{bottom:874.410000px;}
.y7{bottom:874.950000px;}
.y227{bottom:875.220000px;}
.y38{bottom:875.670000px;}
.yb8{bottom:881.970000px;}
.y17f{bottom:884.220000px;}
.y152{bottom:885.030000px;}
.y1bd{bottom:889.620000px;}
.y24c{bottom:892.860000px;}
.y37{bottom:893.220000px;}
.y101{bottom:893.670000px;}
.yb7{bottom:899.610000px;}
.y89{bottom:899.790000px;}
.y1e4{bottom:900.960000px;}
.y226{bottom:901.860000px;}
.ye0{bottom:902.670000px;}
.y19d{bottom:904.020000px;}
.y1bc{bottom:907.260000px;}
.y25e{bottom:910.410000px;}
.y36{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y100{bottom:911.220000px;}
.yb6{bottom:917.160000px;}
.y88{bottom:917.340000px;}
.y24b{bottom:919.410000px;}
.ydf{bottom:920.220000px;}
.y1bb{bottom:924.810000px;}
.y1e3{bottom:927.600000px;}
.y35{bottom:928.410000px;}
.yff{bottom:928.860000px;}
.y12f{bottom:929.220000px;}
.y167{bottom:931.380000px;}
.y87{bottom:934.890000px;}
.y24a{bottom:936.960000px;}
.y205{bottom:937.410000px;}
.yde{bottom:937.860000px;}
.y1ba{bottom:942.450000px;}
.yb5{bottom:943.710000px;}
.y34{bottom:945.960000px;}
.yfe{bottom:946.410000px;}
.y12e{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.y86{bottom:952.440000px;}
.y1e2{bottom:954.150000px;}
.y25d{bottom:954.600000px;}
.y225{bottom:954.960000px;}
.ydd{bottom:955.410000px;}
.y1b9{bottom:960.000000px;}
.y33{bottom:963.600000px;}
.yfd{bottom:963.960000px;}
.y12d{bottom:964.410000px;}
.y19c{bottom:966.570000px;}
.y224{bottom:972.600000px;}
.ydc{bottom:972.960000px;}
.yb2{bottom:976.740000px;}
.y1b8{bottom:977.550000px;}
.y85{bottom:979.890000px;}
.y1e1{bottom:980.790000px;}
.y249{bottom:981.150000px;}
.yfc{bottom:981.600000px;}
.y12c{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y274{bottom:990.150000px;}
.ydb{bottom:990.600000px;}
.y165{bottom:993.930000px;}
.y1b7{bottom:995.190000px;}
.y84{bottom:997.530000px;}
.y25c{bottom:998.790000px;}
.y32{bottom:999.150000px;}
.y12b{bottom:999.600000px;}
.y1e0{bottom:1007.340000px;}
.y248{bottom:1007.790000px;}
.yda{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y1b6{bottom:1012.770000px;}
.y83{bottom:1015.110000px;}
.y31{bottom:1016.820000px;}
.y12a{bottom:1017.180000px;}
.y25b{bottom:1025.370000px;}
.yd9{bottom:1025.820000px;}
.y19b{bottom:1029.060000px;}
.y1b5{bottom:1030.320000px;}
.y1df{bottom:1033.920000px;}
.y30{bottom:1034.370000px;}
.y129{bottom:1034.820000px;}
.y82{bottom:1042.560000px;}
.y25a{bottom:1042.920000px;}
.yd8{bottom:1043.370000px;}
.y1b4{bottom:1047.960000px;}
.y5f{bottom:1048.050000px;}
.y2f{bottom:1051.920000px;}
.y128{bottom:1052.370000px;}
.y164{bottom:1056.420000px;}
.yb0{bottom:1056.870000px;}
.y81{bottom:1060.110000px;}
.y1de{bottom:1060.560000px;}
.yd7{bottom:1060.920000px;}
.y1b3{bottom:1065.510000px;}
.yfb{bottom:1069.560000px;}
.y127{bottom:1069.920000px;}
.y80{bottom:1077.750000px;}
.yd6{bottom:1078.560000px;}
.y1b2{bottom:1083.150000px;}
.y5e{bottom:1083.600000px;}
.yfa{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y7f{bottom:1095.300000px;}
.yd5{bottom:1096.110000px;}
.y1b1{bottom:1100.700000px;}
.y5d{bottom:1101.240000px;}
.y2d{bottom:1105.110000px;}
.yd4{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y1b0{bottom:1127.610000px;}
.y5c{bottom:1137.420000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h23{height:26.550000px;}
.h19{height:26.580000px;}
.h14{height:26.640000px;}
.h2{height:32.566289px;}
.hd{height:35.497617px;}
.h11{height:40.539023px;}
.h10{height:43.200000px;}
.h1a{height:44.100000px;}
.h1c{height:44.190000px;}
.h16{height:44.383535px;}
.h3{height:44.538574px;}
.he{height:50.667539px;}
.h6{height:50.902383px;}
.h8{height:55.779258px;}
.h7{height:59.503535px;}
.h1f{height:59.973223px;}
.h1b{height:61.740000px;}
.h20{height:61.770000px;}
.h13{height:61.793886px;}
.h22{height:61.830000px;}
.h1e{height:61.860000px;}
.ha{height:62.585859px;}
.h5{height:65.204473px;}
.h9{height:68.582109px;}
.hb{height:70.777617px;}
.h12{height:71.261719px;}
.h17{height:79.290000px;}
.h18{height:79.320000px;}
.h1d{height:79.380000px;}
.h21{height:79.410000px;}
.hc{height:80.907539px;}
.hf{height:82.297617px;}
.h4{height:83.019902px;}
.h15{height:96.930000px;}
.h25{height:101.430000px;}
.h24{height:114.480000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:5.490000px;}
.w4{width:5.580000px;}
.we{width:34.920000px;}
.w24{width:43.200000px;}
.w1d{width:43.290000px;}
.w1f{width:72.270000px;}
.wa{width:77.400000px;}
.w18{width:77.940000px;}
.w15{width:80.280000px;}
.w9{width:94.080000px;}
.w13{width:95.340000px;}
.wf{width:104.610000px;}
.w17{width:104.790000px;}
.w19{width:108.270000px;}
.w23{width:110.610000px;}
.w1e{width:111.450000px;}
.w20{width:116.100000px;}
.w1c{width:133.470000px;}
.w21{width:137.550000px;}
.w1b{width:138.060000px;}
.wc{width:140.880000px;}
.w1a{width:145.440000px;}
.w22{width:169.380000px;}
.w11{width:174.810000px;}
.w14{width:186.930000px;}
.w12{width:206.280000px;}
.w10{width:232.110000px;}
.wb{width:236.910000px;}
.wd{width:262.440000px;}
.w16{width:355.170000px;}
.w6{width:413.520000px;}
.w8{width:424.230000px;}
.w7{width:452.640000px;}
.w3{width:463.350000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x8{left:-2.340000px;}
.x0{left:0.000000px;}
.x19{left:3.960000px;}
.x15{left:11.520000px;}
.x14{left:14.940000px;}
.x13{left:20.880000px;}
.x1{left:68.040000px;}
.x17{left:95.039987px;}
.x2c{left:111.239987px;}
.x18{left:122.039987px;}
.x1a{left:146.970000px;}
.x21{left:164.820000px;}
.x1e{left:174.090000px;}
.x29{left:180.930000px;}
.x2{left:192.719987px;}
.x24{left:252.930000px;}
.x22{left:352.470000px;}
.xd{left:359.399987px;}
.x25{left:361.920000px;}
.x2a{left:370.740000px;}
.x4{left:377.309987px;}
.x1b{left:384.600000px;}
.x1f{left:406.920000px;}
.x12{left:416.640000px;}
.x5{left:418.889987px;}
.x23{left:433.560000px;}
.xe{left:443.819973px;}
.xf{left:452.550000px;}
.x6{left:454.529987px;}
.x10{left:458.040000px;}
.x7{left:463.260000px;}
.x9{left:468.750000px;}
.xa{left:474.240000px;}
.x11{left:478.289987px;}
.xb{left:479.640000px;}
.xc{left:488.999987px;}
.x26{left:508.110000px;}
.x1c{left:526.290000px;}
.x20{left:582.450000px;}
.x27{left:646.980000px;}
.x2b{left:679.110000px;}
.x16{left:767.309987px;}
.x28{left:781.170000px;}
.x1d{left:789.540000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v8{vertical-align:-13.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:16.000000pt;}
.v5{vertical-align:26.880000pt;}
.v4{vertical-align:31.360000pt;}
.v7{vertical-align:41.600000pt;}
.ls26{letter-spacing:-0.395200pt;}
.ls29{letter-spacing:-0.348267pt;}
.ls1f{letter-spacing:-0.340800pt;}
.ls2d{letter-spacing:-0.266133pt;}
.ls31{letter-spacing:-0.233067pt;}
.ls18{letter-spacing:-0.165867pt;}
.lsf{letter-spacing:-0.161067pt;}
.ls27{letter-spacing:-0.144000pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls39{letter-spacing:-0.114133pt;}
.ls38{letter-spacing:-0.111467pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls3c{letter-spacing:-0.085867pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls43{letter-spacing:-0.060800pt;}
.ls2e{letter-spacing:-0.059733pt;}
.ls1c{letter-spacing:-0.058667pt;}
.lsb{letter-spacing:-0.056533pt;}
.ls20{letter-spacing:-0.049600pt;}
.ls34{letter-spacing:-0.044160pt;}
.ls40{letter-spacing:-0.033600pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls2c{letter-spacing:-0.028160pt;}
.ls32{letter-spacing:-0.016320pt;}
.ls1a{letter-spacing:-0.013120pt;}
.ls3a{letter-spacing:-0.011840pt;}
.ls42{letter-spacing:-0.008000pt;}
.ls1e{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013120pt;}
.ls14{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls2b{letter-spacing:0.046080pt;}
.ls5{letter-spacing:0.053760pt;}
.ls1b{letter-spacing:0.053867pt;}
.ls24{letter-spacing:0.057600pt;}
.ls33{letter-spacing:0.060800pt;}
.ls2{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.065920pt;}
.ls3{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls21{letter-spacing:0.086720pt;}
.ls3b{letter-spacing:0.086933pt;}
.ls22{letter-spacing:0.087360pt;}
.ls1d{letter-spacing:0.093333pt;}
.ls13{letter-spacing:0.098880pt;}
.ls2a{letter-spacing:0.113067pt;}
.ls16{letter-spacing:0.127147pt;}
.ls7{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.136320pt;}
.ls19{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.158933pt;}
.ls37{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.160427pt;}
.ls30{letter-spacing:0.160533pt;}
.ls17{letter-spacing:0.180800pt;}
.ls3f{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:1.356800pt;}
.ls3e{letter-spacing:1.363200pt;}
.ls12{letter-spacing:4.490880pt;}
.ls3d{letter-spacing:12.663680pt;}
.ls41{letter-spacing:15.123200pt;}
.ls36{letter-spacing:42.423680pt;}
.ls25{letter-spacing:56.503680pt;}
.ls35{letter-spacing:71.863680pt;}
.ws10{word-spacing:-41.883413pt;}
.ws11{word-spacing:-29.278080pt;}
.ws6{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.ws1a{word-spacing:-11.917333pt;}
.wsb{word-spacing:-11.910933pt;}
.ws18{word-spacing:-11.869867pt;}
.ws20{word-spacing:-11.843733pt;}
.ws26{word-spacing:-11.810667pt;}
.wsf{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.750080pt;}
.ws23{word-spacing:-11.748800pt;}
.ws1f{word-spacing:-11.744960pt;}
.wsc{word-spacing:-11.743680pt;}
.ws22{word-spacing:-11.723200pt;}
.ws1c{word-spacing:-11.712640pt;}
.ws3{word-spacing:-11.700267pt;}
.wsd{word-spacing:-11.698133pt;}
.ws19{word-spacing:-11.697067pt;}
.ws24{word-spacing:-11.696000pt;}
.ws1b{word-spacing:-11.681600pt;}
.ws21{word-spacing:-11.670933pt;}
.ws1d{word-spacing:-11.645333pt;}
.ws1e{word-spacing:-11.642667pt;}
.ws16{word-spacing:-11.612800pt;}
.wsa{word-spacing:-11.590933pt;}
.ws25{word-spacing:-11.490667pt;}
.ws13{word-spacing:-11.416000pt;}
.ws0{word-spacing:-10.528000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws7{word-spacing:-7.762133pt;}
.ws15{word-spacing:-7.657067pt;}
.ws17{word-spacing:-7.603200pt;}
.ws8{word-spacing:-7.442133pt;}
.ws14{word-spacing:-5.843200pt;}
.ws9{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._10{margin-left:-2.857063pt;}
._9{margin-left:-1.904320pt;}
._0{margin-left:-0.965333pt;}
._2{width:1.108341pt;}
._f{width:2.053174pt;}
._7{width:3.153067pt;}
._8{width:4.128244pt;}
._a{width:5.557867pt;}
._d{width:6.495039pt;}
._4{width:7.549649pt;}
._3{width:8.443734pt;}
._b{width:9.352000pt;}
._c{width:10.474133pt;}
._11{width:11.431573pt;}
._29{width:12.725547pt;}
._e{width:13.627200pt;}
._12{width:14.589120pt;}
._13{width:15.658348pt;}
._5{width:16.673066pt;}
._6{width:17.586135pt;}
._1a{width:18.704000pt;}
._1b{width:19.752214pt;}
._14{width:21.530880pt;}
._16{width:22.818880pt;}
._15{width:23.923840pt;}
._24{width:25.170240pt;}
._17{width:26.399360pt;}
._3e{width:27.327253pt;}
._1{width:29.005867pt;}
._19{width:30.057387pt;}
._28{width:32.064000pt;}
._1f{width:35.170347pt;}
._1c{width:36.766720pt;}
._3f{width:37.693686pt;}
._18{width:38.850880pt;}
._1e{width:40.029973pt;}
._36{width:41.041920pt;}
._2a{width:43.820800pt;}
._40{width:44.803840pt;}
._41{width:45.805227pt;}
._25{width:46.706560pt;}
._26{width:47.721920pt;}
._39{width:48.909120pt;}
._38{width:49.859520pt;}
._43{width:56.501120pt;}
._44{width:57.512747pt;}
._2f{width:62.204160pt;}
._2e{width:63.166080pt;}
._21{width:65.303680pt;}
._31{width:66.212160pt;}
._3d{width:77.007040pt;}
._2c{width:78.343040pt;}
._42{width:82.585920pt;}
._32{width:83.900800pt;}
._2d{width:87.855360pt;}
._1d{width:88.977600pt;}
._30{width:91.649600pt;}
._23{width:96.833280pt;}
._22{width:98.115840pt;}
._20{width:101.589440pt;}
._35{width:111.315520pt;}
._2b{width:115.323520pt;}
._3a{width:116.980160pt;}
._33{width:122.484480pt;}
._3b{width:128.843840pt;}
._3c{width:138.356160pt;}
._27{width:150.006080pt;}
._37{width:176.939840pt;}
._34{width:180.734080pt;}
.fs8{font-size:26.560000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:3.200000pt;}
.yad{bottom:6.960000pt;}
.y1a5{bottom:6.986667pt;}
.ya5{bottom:7.040000pt;}
.yee{bottom:7.066667pt;}
.y5a{bottom:15.760000pt;}
.yaf{bottom:18.640000pt;}
.yef{bottom:18.666667pt;}
.yb1{bottom:22.560000pt;}
.y166{bottom:22.586667pt;}
.yac{bottom:22.640000pt;}
.yed{bottom:22.666667pt;}
.y1af{bottom:26.640000pt;}
.y59{bottom:28.240000pt;}
.ya9{bottom:34.240000pt;}
.yab{bottom:38.240000pt;}
.yb4{bottom:38.266667pt;}
.ye8{bottom:38.320000pt;}
.yec{bottom:38.346667pt;}
.y1ae{bottom:42.240000pt;}
.yd2{bottom:49.920000pt;}
.ya8{bottom:53.840000pt;}
.yb3{bottom:53.866667pt;}
.yd1{bottom:53.920000pt;}
.y16f{bottom:53.946667pt;}
.yaa{bottom:57.200000pt;}
.y1ad{bottom:57.840000pt;}
.y58{bottom:64.666667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.ya7{bottom:69.520000pt;}
.y1ac{bottom:73.520000pt;}
.y1a9{bottom:85.120000pt;}
.y1{bottom:90.346667pt;}
.yd3{bottom:102.266667pt;}
.y151{bottom:105.066667pt;}
.y259{bottom:110.106667pt;}
.y7e{bottom:110.266667pt;}
.yae{bottom:111.306667pt;}
.yf9{bottom:112.266667pt;}
.y17e{bottom:114.586667pt;}
.y1ab{bottom:117.226667pt;}
.y247{bottom:117.786667pt;}
.y223{bottom:118.506667pt;}
.y1dd{bottom:118.986667pt;}
.y57{bottom:121.786667pt;}
.y7d{bottom:125.946667pt;}
.y28{bottom:126.346667pt;}
.yf8{bottom:127.866667pt;}
.y19a{bottom:128.346667pt;}
.y17d{bottom:130.186667pt;}
.y204{bottom:132.666667pt;}
.y246{bottom:133.386667pt;}
.y258{bottom:133.786667pt;}
.y222{bottom:134.106667pt;}
.y126{bottom:136.746667pt;}
.y7c{bottom:141.546667pt;}
.y27{bottom:141.946667pt;}
.y1dc{bottom:142.666667pt;}
.yf7{bottom:143.546667pt;}
.y199{bottom:143.946667pt;}
.y17c{bottom:145.866667pt;}
.y203{bottom:148.266667pt;}
.y257{bottom:149.386667pt;}
.y221{bottom:149.786667pt;}
.y125{bottom:152.346667pt;}
.y245{bottom:156.986667pt;}
.y26{bottom:157.626667pt;}
.yd0{bottom:157.786667pt;}
.yf6{bottom:159.146667pt;}
.y56{bottom:159.386667pt;}
.y198{bottom:159.626667pt;}
.y17b{bottom:161.466667pt;}
.y1db{bottom:166.266667pt;}
.y124{bottom:167.946667pt;}
.y150{bottom:168.346667pt;}
.y202{bottom:171.946667pt;}
.y256{bottom:172.986667pt;}
.y25{bottom:173.226667pt;}
.y220{bottom:173.386667pt;}
.y7b{bottom:173.946667pt;}
.yf5{bottom:174.826667pt;}
.y197{bottom:175.226667pt;}
.y17a{bottom:177.066667pt;}
.y244{bottom:180.666667pt;}
.ya6{bottom:182.506667pt;}
.y123{bottom:183.626667pt;}
.y14f{bottom:183.946667pt;}
.y201{bottom:187.546667pt;}
.y255{bottom:188.666667pt;}
.y24{bottom:188.826667pt;}
.y21f{bottom:188.986667pt;}
.y7a{bottom:189.546667pt;}
.y1da{bottom:189.866667pt;}
.y196{bottom:190.826667pt;}
.y55{bottom:190.986667pt;}
.y179{bottom:192.746667pt;}
.yf4{bottom:198.426667pt;}
.y122{bottom:199.226667pt;}
.y14e{bottom:199.626667pt;}
.y243{bottom:204.266667pt;}
.y23{bottom:204.506667pt;}
.y79{bottom:205.146667pt;}
.y195{bottom:206.506667pt;}
.y1aa{bottom:208.026667pt;}
.y178{bottom:208.346667pt;}
.y200{bottom:211.146667pt;}
.y273{bottom:212.266667pt;}
.y21e{bottom:212.666667pt;}
.y1d9{bottom:213.546667pt;}
.y121{bottom:214.826667pt;}
.y14d{bottom:215.226667pt;}
.y53{bottom:219.626667pt;}
.y22{bottom:220.106667pt;}
.y194{bottom:222.106667pt;}
.y177{bottom:224.026667pt;}
.y52{bottom:226.346667pt;}
.y1ff{bottom:226.826667pt;}
.yf3{bottom:227.386667pt;}
.y242{bottom:227.946667pt;}
.y21d{bottom:228.266667pt;}
.y78{bottom:228.826667pt;}
.y1d8{bottom:229.146667pt;}
.y120{bottom:230.506667pt;}
.y14c{bottom:230.826667pt;}
.y1a8{bottom:232.346667pt;}
.y21{bottom:235.786667pt;}
.y272{bottom:235.946667pt;}
.y54{bottom:236.746667pt;}
.y193{bottom:237.786667pt;}
.y176{bottom:239.626667pt;}
.y21c{bottom:243.946667pt;}
.ycf{bottom:244.666667pt;}
.y11f{bottom:246.106667pt;}
.y14b{bottom:246.506667pt;}
.y1fe{bottom:250.426667pt;}
.y241{bottom:251.546667pt;}
.y1d7{bottom:252.826667pt;}
.y192{bottom:253.386667pt;}
.y175{bottom:255.226667pt;}
.yf2{bottom:259.306667pt;}
.y271{bottom:259.546667pt;}
.y77{bottom:260.746667pt;}
.y11e{bottom:261.786667pt;}
.y14a{bottom:262.106667pt;}
.y51{bottom:263.946667pt;}
.y240{bottom:267.146667pt;}
.y20{bottom:267.386667pt;}
.y21b{bottom:267.546667pt;}
.y191{bottom:268.986667pt;}
.ya4{bottom:269.306667pt;}
.y1fd{bottom:274.106667pt;}
.y1d6{bottom:276.426667pt;}
.y11d{bottom:277.386667pt;}
.y149{bottom:277.786667pt;}
.y174{bottom:278.906667pt;}
.y1f{bottom:282.986667pt;}
.y21a{bottom:283.146667pt;}
.y190{bottom:284.666667pt;}
.y23f{bottom:290.826667pt;}
.y1d5{bottom:292.026667pt;}
.y11c{bottom:292.986667pt;}
.y148{bottom:293.386667pt;}
.y50{bottom:295.626667pt;}
.y1fc{bottom:297.706667pt;}
.y1e{bottom:298.666667pt;}
.y270{bottom:298.826667pt;}
.yf1{bottom:299.866667pt;}
.yce{bottom:300.186667pt;}
.y18f{bottom:300.266667pt;}
.y76{bottom:303.626667pt;}
.y23e{bottom:306.426667pt;}
.y219{bottom:306.826667pt;}
.y11b{bottom:308.666667pt;}
.y147{bottom:308.986667pt;}
.y173{bottom:310.506667pt;}
.y4f{bottom:311.226667pt;}
.ya3{bottom:312.586667pt;}
.y1d{bottom:314.266667pt;}
.y254{bottom:314.426667pt;}
.y1d4{bottom:315.706667pt;}
.y18e{bottom:315.946667pt;}
.y75{bottom:319.226667pt;}
.y1fb{bottom:321.306667pt;}
.y26f{bottom:322.426667pt;}
.y11a{bottom:324.266667pt;}
.y146{bottom:324.666667pt;}
.y172{bottom:326.106667pt;}
.y4e{bottom:326.906667pt;}
.y1c{bottom:329.946667pt;}
.y23d{bottom:330.106667pt;}
.y218{bottom:330.426667pt;}
.y1d3{bottom:331.306667pt;}
.y18d{bottom:331.546667pt;}
.y1a7{bottom:334.746667pt;}
.y74{bottom:334.906667pt;}
.y1fa{bottom:336.986667pt;}
.y26e{bottom:338.106667pt;}
.y119{bottom:339.946667pt;}
.y145{bottom:340.266667pt;}
.y171{bottom:341.786667pt;}
.y4d{bottom:342.506667pt;}
.ya2{bottom:344.266667pt;}
.y1b{bottom:345.546667pt;}
.y217{bottom:346.106667pt;}
.y18c{bottom:347.146667pt;}
.y73{bottom:350.506667pt;}
.y1f9{bottom:352.586667pt;}
.y23c{bottom:353.706667pt;}
.y1d2{bottom:354.986667pt;}
.yf0{bottom:355.466667pt;}
.y118{bottom:355.546667pt;}
.ycd{bottom:355.786667pt;}
.y144{bottom:355.946667pt;}
.ya1{bottom:359.866667pt;}
.y26d{bottom:361.706667pt;}
.y18b{bottom:362.826667pt;}
.y170{bottom:365.386667pt;}
.y4c{bottom:366.106667pt;}
.y72{bottom:366.186667pt;}
.y23b{bottom:369.306667pt;}
.y1a{bottom:369.466667pt;}
.y216{bottom:369.706667pt;}
.y143{bottom:371.546667pt;}
.ya0{bottom:375.466667pt;}
.y1f8{bottom:376.266667pt;}
.y26c{bottom:377.306667pt;}
.y1d1{bottom:378.586667pt;}
.y117{bottom:379.146667pt;}
.y71{bottom:381.786667pt;}
.y18a{bottom:386.426667pt;}
.y142{bottom:387.146667pt;}
.y1a6{bottom:390.346667pt;}
.y9f{bottom:391.146667pt;}
.y1f7{bottom:391.866667pt;}
.y16e{bottom:392.026667pt;}
.y23a{bottom:392.986667pt;}
.y215{bottom:393.306667pt;}
.y1d0{bottom:394.186667pt;}
.ycc{bottom:395.706667pt;}
.y70{bottom:397.386667pt;}
.y4b{bottom:397.786667pt;}
.y26b{bottom:400.986667pt;}
.y141{bottom:402.826667pt;}
.y239{bottom:408.586667pt;}
.y214{bottom:408.986667pt;}
.y116{bottom:410.826667pt;}
.yeb{bottom:410.986667pt;}
.y19{bottom:412.346667pt;}
.y6f{bottom:413.066667pt;}
.y4a{bottom:413.386667pt;}
.y1a4{bottom:414.666667pt;}
.y1f6{bottom:415.466667pt;}
.y26a{bottom:416.586667pt;}
.y1cf{bottom:417.893333pt;}
.y189{bottom:418.133333pt;}
.y140{bottom:418.453333pt;}
.y9e{bottom:422.773333pt;}
.y115{bottom:426.453333pt;}
.y18{bottom:428.293333pt;}
.y49{bottom:429.093333pt;}
.y1f5{bottom:431.173333pt;}
.y238{bottom:432.293333pt;}
.y213{bottom:432.613333pt;}
.y188{bottom:433.733333pt;}
.y13f{bottom:434.133333pt;}
.y6e{bottom:436.693333pt;}
.y9d{bottom:438.453333pt;}
.ycb{bottom:439.013333pt;}
.y269{bottom:440.293333pt;}
.y1ce{bottom:441.493333pt;}
.y114{bottom:442.133333pt;}
.y237{bottom:447.893333pt;}
.y187{bottom:449.333333pt;}
.y13e{bottom:449.733333pt;}
.y48{bottom:452.693333pt;}
.y9c{bottom:454.053333pt;}
.y1f4{bottom:454.773333pt;}
.y253{bottom:455.893333pt;}
.y212{bottom:456.293333pt;}
.y1cd{bottom:457.093333pt;}
.y113{bottom:457.733333pt;}
.y17{bottom:461.253333pt;}
.y16d{bottom:463.253333pt;}
.y268{bottom:463.893333pt;}
.y186{bottom:465.013333pt;}
.y163{bottom:465.333333pt;}
.yea{bottom:466.613333pt;}
.y6d{bottom:468.373333pt;}
.y1f3{bottom:470.453333pt;}
.yca{bottom:470.613333pt;}
.y236{bottom:471.493333pt;}
.y211{bottom:471.893333pt;}
.y112{bottom:473.333333pt;}
.y16{bottom:476.853333pt;}
.y267{bottom:479.493333pt;}
.y185{bottom:480.613333pt;}
.y1cc{bottom:480.773333pt;}
.y162{bottom:481.013333pt;}
.y6c{bottom:483.973333pt;}
.y47{bottom:484.613333pt;}
.y9b{bottom:485.653333pt;}
.y1a3{bottom:485.893333pt;}
.yc9{bottom:486.293333pt;}
.y235{bottom:487.173333pt;}
.y210{bottom:487.493333pt;}
.y111{bottom:489.013333pt;}
.y15{bottom:492.453333pt;}
.y1f2{bottom:494.053333pt;}
.y252{bottom:495.173333pt;}
.y184{bottom:496.293333pt;}
.y1cb{bottom:496.373333pt;}
.y6b{bottom:499.573333pt;}
.y9a{bottom:501.333333pt;}
.yc8{bottom:501.893333pt;}
.y266{bottom:503.173333pt;}
.y110{bottom:504.613333pt;}
.y13d{bottom:505.013333pt;}
.ye9{bottom:506.533333pt;}
.y14{bottom:508.133333pt;}
.y234{bottom:510.773333pt;}
.y20f{bottom:511.173333pt;}
.y183{bottom:511.893333pt;}
.y161{bottom:512.613333pt;}
.y6a{bottom:515.253333pt;}
.y99{bottom:516.933333pt;}
.yc7{bottom:517.493333pt;}
.y1f1{bottom:517.653333pt;}
.y265{bottom:518.773333pt;}
.y1ca{bottom:520.053333pt;}
.y10f{bottom:520.293333pt;}
.y13c{bottom:520.613333pt;}
.y13{bottom:523.733333pt;}
.y233{bottom:526.453333pt;}
.y20e{bottom:526.773333pt;}
.y46{bottom:527.493333pt;}
.y160{bottom:528.293333pt;}
.y69{bottom:530.853333pt;}
.y98{bottom:532.613333pt;}
.yc6{bottom:533.173333pt;}
.y16c{bottom:534.453333pt;}
.y1c9{bottom:535.653333pt;}
.y10e{bottom:535.893333pt;}
.y13b{bottom:536.293333pt;}
.y12{bottom:539.413333pt;}
.y1f0{bottom:541.333333pt;}
.y1a2{bottom:541.413333pt;}
.y264{bottom:542.453333pt;}
.y45{bottom:543.173333pt;}
.y15f{bottom:543.893333pt;}
.y68{bottom:546.533333pt;}
.y97{bottom:548.213333pt;}
.yc5{bottom:548.773333pt;}
.y232{bottom:550.053333pt;}
.y20d{bottom:550.453333pt;}
.y10d{bottom:551.493333pt;}
.y13a{bottom:551.893333pt;}
.y11{bottom:555.013333pt;}
.y1ef{bottom:556.933333pt;}
.y263{bottom:558.053333pt;}
.y44{bottom:558.773333pt;}
.y1c8{bottom:559.253333pt;}
.y15e{bottom:559.493333pt;}
.ye7{bottom:562.053333pt;}
.y96{bottom:563.813333pt;}
.yc4{bottom:564.453333pt;}
.y231{bottom:565.653333pt;}
.y10c{bottom:567.173333pt;}
.y139{bottom:567.493333pt;}
.y67{bottom:570.133333pt;}
.y10{bottom:570.613333pt;}
.y251{bottom:573.653333pt;}
.y20c{bottom:574.053333pt;}
.y15d{bottom:575.173333pt;}
.y95{bottom:579.493333pt;}
.y1ee{bottom:580.613333pt;}
.y262{bottom:581.653333pt;}
.y182{bottom:582.453333pt;}
.y10b{bottom:582.773333pt;}
.y1c7{bottom:582.933333pt;}
.y138{bottom:583.173333pt;}
.yf{bottom:586.293333pt;}
.y230{bottom:589.333333pt;}
.y20b{bottom:589.653333pt;}
.y16b{bottom:590.053333pt;}
.y43{bottom:590.453333pt;}
.y15c{bottom:590.773333pt;}
.y94{bottom:595.093333pt;}
.yc3{bottom:596.053333pt;}
.y1ed{bottom:596.213333pt;}
.y250{bottom:597.333333pt;}
.y10a{bottom:598.453333pt;}
.y137{bottom:598.773333pt;}
.y66{bottom:601.733333pt;}
.ye{bottom:601.893333pt;}
.y42{bottom:606.053333pt;}
.y15b{bottom:606.453333pt;}
.y1c6{bottom:606.533333pt;}
.y93{bottom:610.773333pt;}
.yc2{bottom:611.653333pt;}
.y1a1{bottom:612.613333pt;}
.y22f{bottom:612.933333pt;}
.y20a{bottom:613.333333pt;}
.y109{bottom:614.053333pt;}
.y136{bottom:614.453333pt;}
.y65{bottom:617.413333pt;}
.yd{bottom:617.573333pt;}
.y1ec{bottom:619.813333pt;}
.y261{bottom:620.933333pt;}
.y41{bottom:621.653333pt;}
.y15a{bottom:622.053333pt;}
.y92{bottom:626.373333pt;}
.yc1{bottom:627.333333pt;}
.y108{bottom:629.653333pt;}
.y135{bottom:630.053333pt;}
.y1c5{bottom:630.213333pt;}
.y64{bottom:633.013333pt;}
.yc{bottom:633.173333pt;}
.ye6{bottom:633.253333pt;}
.y22e{bottom:636.613333pt;}
.y1a0{bottom:636.933333pt;}
.y40{bottom:637.333333pt;}
.y159{bottom:637.653333pt;}
.y91{bottom:641.973333pt;}
.yc0{bottom:642.933333pt;}
.y1eb{bottom:643.493333pt;}
.y107{bottom:645.333333pt;}
.y134{bottom:645.653333pt;}
.y63{bottom:648.693333pt;}
.yb{bottom:648.773333pt;}
.y209{bottom:652.613333pt;}
.y3f{bottom:652.933333pt;}
.y158{bottom:653.333333pt;}
.y1c4{bottom:654.133333pt;}
.y90{bottom:657.653333pt;}
.ybf{bottom:658.613333pt;}
.y22d{bottom:660.213333pt;}
.y106{bottom:660.933333pt;}
.y16a{bottom:661.253333pt;}
.y133{bottom:661.333333pt;}
.y1ea{bottom:667.093333pt;}
.y3e{bottom:668.613333pt;}
.y157{bottom:668.933333pt;}
.y62{bottom:672.293333pt;}
.ya{bottom:672.773333pt;}
.y8f{bottom:673.253333pt;}
.ybe{bottom:674.213333pt;}
.y24f{bottom:675.813333pt;}
.y208{bottom:676.213333pt;}
.y105{bottom:676.613333pt;}
.y132{bottom:676.933333pt;}
.y22c{bottom:683.813333pt;}
.y3d{bottom:684.213333pt;}
.ybd{bottom:689.813333pt;}
.y1e9{bottom:690.693333pt;}
.y207{bottom:691.813333pt;}
.ye5{bottom:692.213333pt;}
.y19f{bottom:692.453333pt;}
.y131{bottom:692.613333pt;}
.y8e{bottom:696.933333pt;}
.y1c3{bottom:697.013333pt;}
.y22b{bottom:699.493333pt;}
.y61{bottom:703.893333pt;}
.ybc{bottom:705.493333pt;}
.y104{bottom:707.813333pt;}
.y130{bottom:708.213333pt;}
.y1c2{bottom:712.613333pt;}
.y9{bottom:714.293333pt;}
.y1e8{bottom:714.373333pt;}
.y24e{bottom:715.093333pt;}
.y206{bottom:715.493333pt;}
.y3c{bottom:715.813333pt;}
.y169{bottom:716.773333pt;}
.ybb{bottom:721.093333pt;}
.y22a{bottom:723.093333pt;}
.y103{bottom:723.493333pt;}
.ye4{bottom:723.813333pt;}
.y156{bottom:724.213333pt;}
.y1c1{bottom:728.293333pt;}
.y8d{bottom:728.533333pt;}
.y260{bottom:730.693333pt;}
.y3b{bottom:731.493333pt;}
.y60{bottom:732.533333pt;}
.yba{bottom:736.693333pt;}
.y1e7{bottom:737.973333pt;}
.y229{bottom:738.693333pt;}
.y102{bottom:739.093333pt;}
.ye3{bottom:739.493333pt;}
.y155{bottom:739.813333pt;}
.y1c0{bottom:743.893333pt;}
.y8c{bottom:744.133333pt;}
.y8{bottom:745.893333pt;}
.y3a{bottom:747.093333pt;}
.y19e{bottom:748.053333pt;}
.y24d{bottom:754.373333pt;}
.y181{bottom:754.693333pt;}
.ye2{bottom:755.093333pt;}
.y154{bottom:755.493333pt;}
.y1bf{bottom:759.573333pt;}
.y8b{bottom:759.813333pt;}
.y1e6{bottom:761.653333pt;}
.y228{bottom:762.373333pt;}
.y39{bottom:762.693333pt;}
.yb9{bottom:768.373333pt;}
.y25f{bottom:769.973333pt;}
.y180{bottom:770.373333pt;}
.ye1{bottom:770.693333pt;}
.y153{bottom:771.093333pt;}
.y168{bottom:772.373333pt;}
.y1be{bottom:775.173333pt;}
.y8a{bottom:775.413333pt;}
.y1e5{bottom:777.253333pt;}
.y7{bottom:777.733333pt;}
.y227{bottom:777.973333pt;}
.y38{bottom:778.373333pt;}
.yb8{bottom:783.973333pt;}
.y17f{bottom:785.973333pt;}
.y152{bottom:786.693333pt;}
.y1bd{bottom:790.773333pt;}
.y24c{bottom:793.653333pt;}
.y37{bottom:793.973333pt;}
.y101{bottom:794.373333pt;}
.yb7{bottom:799.653333pt;}
.y89{bottom:799.813333pt;}
.y1e4{bottom:800.853333pt;}
.y226{bottom:801.653333pt;}
.ye0{bottom:802.373333pt;}
.y19d{bottom:803.573333pt;}
.y1bc{bottom:806.453333pt;}
.y25e{bottom:809.253333pt;}
.y36{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y100{bottom:809.973333pt;}
.yb6{bottom:815.253333pt;}
.y88{bottom:815.413333pt;}
.y24b{bottom:817.253333pt;}
.ydf{bottom:817.973333pt;}
.y1bb{bottom:822.053333pt;}
.y1e3{bottom:824.533333pt;}
.y35{bottom:825.253333pt;}
.yff{bottom:825.653333pt;}
.y12f{bottom:825.973333pt;}
.y167{bottom:827.893333pt;}
.y87{bottom:831.013333pt;}
.y24a{bottom:832.853333pt;}
.y205{bottom:833.253333pt;}
.yde{bottom:833.653333pt;}
.y1ba{bottom:837.733333pt;}
.yb5{bottom:838.853333pt;}
.y34{bottom:840.853333pt;}
.yfe{bottom:841.253333pt;}
.y12e{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.y86{bottom:846.613333pt;}
.y1e2{bottom:848.133333pt;}
.y25d{bottom:848.533333pt;}
.y225{bottom:848.853333pt;}
.ydd{bottom:849.253333pt;}
.y1b9{bottom:853.333333pt;}
.y33{bottom:856.533333pt;}
.yfd{bottom:856.853333pt;}
.y12d{bottom:857.253333pt;}
.y19c{bottom:859.173333pt;}
.y224{bottom:864.533333pt;}
.ydc{bottom:864.853333pt;}
.yb2{bottom:868.213333pt;}
.y1b8{bottom:868.933333pt;}
.y85{bottom:871.013333pt;}
.y1e1{bottom:871.813333pt;}
.y249{bottom:872.133333pt;}
.yfc{bottom:872.533333pt;}
.y12c{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y274{bottom:880.133333pt;}
.ydb{bottom:880.533333pt;}
.y165{bottom:883.493333pt;}
.y1b7{bottom:884.613333pt;}
.y84{bottom:886.693333pt;}
.y25c{bottom:887.813333pt;}
.y32{bottom:888.133333pt;}
.y12b{bottom:888.533333pt;}
.y1e0{bottom:895.413333pt;}
.y248{bottom:895.813333pt;}
.yda{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y1b6{bottom:900.240000pt;}
.y83{bottom:902.320000pt;}
.y31{bottom:903.840000pt;}
.y12a{bottom:904.160000pt;}
.y25b{bottom:911.440000pt;}
.yd9{bottom:911.840000pt;}
.y19b{bottom:914.720000pt;}
.y1b5{bottom:915.840000pt;}
.y1df{bottom:919.040000pt;}
.y30{bottom:919.440000pt;}
.y129{bottom:919.840000pt;}
.y82{bottom:926.720000pt;}
.y25a{bottom:927.040000pt;}
.yd8{bottom:927.440000pt;}
.y1b4{bottom:931.520000pt;}
.y5f{bottom:931.600000pt;}
.y2f{bottom:935.040000pt;}
.y128{bottom:935.440000pt;}
.y164{bottom:939.040000pt;}
.yb0{bottom:939.440000pt;}
.y81{bottom:942.320000pt;}
.y1de{bottom:942.720000pt;}
.yd7{bottom:943.040000pt;}
.y1b3{bottom:947.120000pt;}
.yfb{bottom:950.720000pt;}
.y127{bottom:951.040000pt;}
.y80{bottom:958.000000pt;}
.yd6{bottom:958.720000pt;}
.y1b2{bottom:962.800000pt;}
.y5e{bottom:963.200000pt;}
.yfa{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y7f{bottom:973.600000pt;}
.yd5{bottom:974.320000pt;}
.y1b1{bottom:978.400000pt;}
.y5d{bottom:978.880000pt;}
.y2d{bottom:982.320000pt;}
.yd4{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y1b0{bottom:1002.320000pt;}
.y5c{bottom:1011.040000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h23{height:23.600000pt;}
.h19{height:23.626667pt;}
.h14{height:23.680000pt;}
.h2{height:28.947812pt;}
.hd{height:31.553437pt;}
.h11{height:36.034687pt;}
.h10{height:38.400000pt;}
.h1a{height:39.200000pt;}
.h1c{height:39.280000pt;}
.h16{height:39.452031pt;}
.h3{height:39.589844pt;}
.he{height:45.037812pt;}
.h6{height:45.246562pt;}
.h8{height:49.581562pt;}
.h7{height:52.892031pt;}
.h1f{height:53.309531pt;}
.h1b{height:54.880000pt;}
.h20{height:54.906667pt;}
.h13{height:54.927899pt;}
.h22{height:54.960000pt;}
.h1e{height:54.986667pt;}
.ha{height:55.631875pt;}
.h5{height:57.959531pt;}
.h9{height:60.961875pt;}
.hb{height:62.913437pt;}
.h12{height:63.343750pt;}
.h17{height:70.480000pt;}
.h18{height:70.506667pt;}
.h1d{height:70.560000pt;}
.h21{height:70.586667pt;}
.hc{height:71.917812pt;}
.hf{height:73.153438pt;}
.h4{height:73.795469pt;}
.h15{height:86.160000pt;}
.h25{height:90.160000pt;}
.h24{height:101.760000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:4.880000pt;}
.w4{width:4.960000pt;}
.we{width:31.040000pt;}
.w24{width:38.400000pt;}
.w1d{width:38.480000pt;}
.w1f{width:64.240000pt;}
.wa{width:68.800000pt;}
.w18{width:69.280000pt;}
.w15{width:71.360000pt;}
.w9{width:83.626667pt;}
.w13{width:84.746667pt;}
.wf{width:92.986667pt;}
.w17{width:93.146667pt;}
.w19{width:96.240000pt;}
.w23{width:98.320000pt;}
.w1e{width:99.066667pt;}
.w20{width:103.200000pt;}
.w1c{width:118.640000pt;}
.w21{width:122.266667pt;}
.w1b{width:122.720000pt;}
.wc{width:125.226667pt;}
.w1a{width:129.280000pt;}
.w22{width:150.560000pt;}
.w11{width:155.386667pt;}
.w14{width:166.160000pt;}
.w12{width:183.360000pt;}
.w10{width:206.320000pt;}
.wb{width:210.586667pt;}
.wd{width:233.280000pt;}
.w16{width:315.706667pt;}
.w6{width:367.573333pt;}
.w8{width:377.093333pt;}
.w7{width:402.346667pt;}
.w3{width:411.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x8{left:-2.080000pt;}
.x0{left:0.000000pt;}
.x19{left:3.520000pt;}
.x15{left:10.240000pt;}
.x14{left:13.280000pt;}
.x13{left:18.560000pt;}
.x1{left:60.480000pt;}
.x17{left:84.479988pt;}
.x2c{left:98.879988pt;}
.x18{left:108.479988pt;}
.x1a{left:130.640000pt;}
.x21{left:146.506667pt;}
.x1e{left:154.746667pt;}
.x29{left:160.826667pt;}
.x2{left:171.306655pt;}
.x24{left:224.826667pt;}
.x22{left:313.306667pt;}
.xd{left:319.466655pt;}
.x25{left:321.706667pt;}
.x2a{left:329.546667pt;}
.x4{left:335.386655pt;}
.x1b{left:341.866667pt;}
.x1f{left:361.706667pt;}
.x12{left:370.346667pt;}
.x5{left:372.346655pt;}
.x23{left:385.386667pt;}
.xe{left:394.506643pt;}
.xf{left:402.266667pt;}
.x6{left:404.026655pt;}
.x10{left:407.146667pt;}
.x7{left:411.786667pt;}
.x9{left:416.666667pt;}
.xa{left:421.546667pt;}
.x11{left:425.146655pt;}
.xb{left:426.346667pt;}
.xc{left:434.666655pt;}
.x26{left:451.653333pt;}
.x1c{left:467.813333pt;}
.x20{left:517.733333pt;}
.x27{left:575.093333pt;}
.x2b{left:603.653333pt;}
.x16{left:682.053322pt;}
.x28{left:694.373333pt;}
.x1d{left:701.813333pt;}
.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; }
  