
    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_7223ed9d4f5e281ae7fcb47e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a763df7bb52c766f1dd102af.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_b1cd310166590f6827bcbcd4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_e8a0603349ccaea8a7eefe87.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_c0492880157df9d4dbf28f34.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_540e9645daa229ec443c0c2c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_81699d58f094be04751981cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.073242;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_010c26be2516b1ad6fc0fef0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_be9f7680e448bd17367c856b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_f210eee033c35a24cd02720c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.ls19{letter-spacing:-0.480960px;}
.ls16{letter-spacing:-0.420840px;}
.ls17{letter-spacing:-0.360720px;}
.ls12{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.300600px;}
.ls20{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.240480px;}
.ls18{letter-spacing:-0.180360px;}
.lsd{letter-spacing:-0.162000px;}
.ls10{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.120240px;}
.lse{letter-spacing:-0.108000px;}
.ls1f{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.065880px;}
.ls15{letter-spacing:-0.060120px;}
.lsf{letter-spacing:-0.054000px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.060120px;}
.ls6{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.083880px;}
.ls3{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.120240px;}
.ls7{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.167760px;}
.lsa{letter-spacing:0.168336px;}
.ls1e{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.180360px;}
.ls1d{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.420840px;}
.ls26{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.781560px;}
.ls23{letter-spacing:2.880000px;}
.ls25{letter-spacing:3.240000px;}
.ls24{letter-spacing:3.600000px;}
.ls21{letter-spacing:4.680000px;}
.ls1c{letter-spacing:5.040000px;}
.ls28{letter-spacing:5.470920px;}
.ls27{letter-spacing:6.480000px;}
.ls22{letter-spacing:9.720000px;}
.ls29{letter-spacing:206.370000px;}
.ls0{letter-spacing:731.538000px;}
.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;}
}
.ws47{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws60{word-spacing:-18.000000px;}
.ws61{word-spacing:-17.928000px;}
.ws2a{word-spacing:-17.856000px;}
.ws2e{word-spacing:-16.172280px;}
.ws2f{word-spacing:-16.052040px;}
.ws2c{word-spacing:-15.811560px;}
.ws30{word-spacing:-15.691320px;}
.ws2d{word-spacing:-15.510960px;}
.ws8{word-spacing:-15.210360px;}
.ws9{word-spacing:-15.030000px;}
.ws48{word-spacing:-14.969880px;}
.ws2b{word-spacing:-14.849640px;}
.ws74{word-spacing:-14.729400px;}
.wsa{word-spacing:-14.609160px;}
.ws1{word-spacing:-13.587120px;}
.ws6{word-spacing:-12.780000px;}
.ws2{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.204000px;}
.ws4{word-spacing:-12.150000px;}
.ws7{word-spacing:-9.720000px;}
.ws54{word-spacing:-4.680000px;}
.ws55{word-spacing:-4.320000px;}
.ws49{word-spacing:-4.032000px;}
.ws1d{word-spacing:-3.960000px;}
.ws3a{word-spacing:-3.384000px;}
.ws22{word-spacing:-3.312000px;}
.ws21{word-spacing:-3.240000px;}
.ws18{word-spacing:-2.952000px;}
.ws57{word-spacing:-2.880000px;}
.ws76{word-spacing:-2.664000px;}
.ws6f{word-spacing:-2.520000px;}
.ws73{word-spacing:-2.304000px;}
.ws63{word-spacing:-2.232000px;}
.ws14{word-spacing:-2.160000px;}
.ws5c{word-spacing:-1.944000px;}
.ws1c{word-spacing:-1.872000px;}
.ws16{word-spacing:-1.800000px;}
.ws1a{word-spacing:-1.512000px;}
.ws19{word-spacing:-1.440000px;}
.ws3e{word-spacing:-1.152000px;}
.ws23{word-spacing:-1.080000px;}
.ws70{word-spacing:-0.792000px;}
.ws3f{word-spacing:-0.720000px;}
.ws46{word-spacing:-0.661320px;}
.ws38{word-spacing:-0.504000px;}
.ws15{word-spacing:-0.432000px;}
.ws26{word-spacing:-0.360720px;}
.ws37{word-spacing:-0.360000px;}
.ws45{word-spacing:-0.300600px;}
.ws7b{word-spacing:-0.180360px;}
.ws11{word-spacing:-0.167760px;}
.ws44{word-spacing:-0.120240px;}
.ws10{word-spacing:-0.083880px;}
.ws12{word-spacing:-0.078120px;}
.ws32{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.060120px;}
.wsb{word-spacing:0.000000px;}
.ws43{word-spacing:0.060120px;}
.wsc{word-spacing:0.065880px;}
.ws50{word-spacing:0.072000px;}
.ws3{word-spacing:0.108000px;}
.wsd{word-spacing:0.120240px;}
.wse{word-spacing:0.162000px;}
.wsf{word-spacing:0.167760px;}
.ws27{word-spacing:0.180360px;}
.ws58{word-spacing:0.216000px;}
.ws7c{word-spacing:0.240480px;}
.ws24{word-spacing:0.288000px;}
.ws5f{word-spacing:0.324000px;}
.ws4c{word-spacing:0.360000px;}
.ws42{word-spacing:0.360720px;}
.ws7a{word-spacing:0.541080px;}
.ws77{word-spacing:0.576000px;}
.ws4a{word-spacing:0.648000px;}
.ws25{word-spacing:0.661320px;}
.ws31{word-spacing:0.720000px;}
.ws62{word-spacing:1.080000px;}
.ws41{word-spacing:1.296000px;}
.ws3b{word-spacing:1.440000px;}
.ws71{word-spacing:1.728000px;}
.ws72{word-spacing:1.800000px;}
.ws17{word-spacing:2.088000px;}
.ws40{word-spacing:2.160000px;}
.ws3d{word-spacing:2.448000px;}
.ws5a{word-spacing:2.520000px;}
.ws75{word-spacing:2.736000px;}
.ws1b{word-spacing:2.880000px;}
.ws34{word-spacing:3.168000px;}
.ws35{word-spacing:3.240000px;}
.ws5d{word-spacing:3.456000px;}
.ws36{word-spacing:3.528000px;}
.ws5e{word-spacing:3.600000px;}
.ws33{word-spacing:3.888000px;}
.ws4d{word-spacing:3.960000px;}
.ws67{word-spacing:4.248000px;}
.ws82{word-spacing:4.320000px;}
.ws80{word-spacing:4.536000px;}
.ws5b{word-spacing:4.608000px;}
.ws56{word-spacing:4.680000px;}
.ws20{word-spacing:4.896000px;}
.ws1e{word-spacing:4.968000px;}
.ws39{word-spacing:5.040000px;}
.ws79{word-spacing:5.290560px;}
.ws1f{word-spacing:5.400000px;}
.ws4f{word-spacing:5.688000px;}
.ws3c{word-spacing:5.760000px;}
.ws85{word-spacing:5.976000px;}
.ws7e{word-spacing:6.408000px;}
.ws78{word-spacing:6.480000px;}
.ws59{word-spacing:7.200000px;}
.ws4b{word-spacing:7.848000px;}
.ws65{word-spacing:7.920000px;}
.ws81{word-spacing:8.280000px;}
.ws51{word-spacing:8.568000px;}
.ws64{word-spacing:9.648000px;}
.ws7f{word-spacing:11.808000px;}
.ws53{word-spacing:11.880000px;}
.ws6d{word-spacing:12.600000px;}
.ws6a{word-spacing:13.176000px;}
.ws4e{word-spacing:13.608000px;}
.ws52{word-spacing:13.680000px;}
.ws87{word-spacing:18.648000px;}
.ws86{word-spacing:20.880000px;}
.ws83{word-spacing:23.976000px;}
.ws84{word-spacing:24.480000px;}
.ws66{word-spacing:24.768000px;}
.ws6e{word-spacing:26.568000px;}
.ws6b{word-spacing:29.088000px;}
.ws29{word-spacing:38.416680px;}
.ws28{word-spacing:38.657160px;}
.ws68{word-spacing:42.336000px;}
.ws69{word-spacing:42.696000px;}
.ws6c{word-spacing:84.168000px;}
.ws7d{word-spacing:176.512320px;}
._5{margin-left:-39.260088px;}
._3{margin-left:-3.960000px;}
._7{margin-left:-2.300400px;}
._0{margin-left:-1.009800px;}
._1{width:1.009800px;}
._6{width:2.017800px;}
._2{width:3.096000px;}
._4{width:4.327200px;}
._8{width:13.536000px;}
._9{width:62.955360px;}
._d{width:843.984000px;}
._b{width:1161.000000px;}
._a{width:1215.000000px;}
._c{width:1242.000000px;}
.fc5{color:transparent;}
.fc4{color:rgb(118,113,113);}
.fc2{color:rgb(196,89,17);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:38.880000px;}
.fs7{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:78.120000px;}
.fs5{font-size:83.880000px;}
.fs3{font-size:108.000000px;}
.yae{bottom:-31.590000px;}
.ybd{bottom:-29.520000px;}
.y0{bottom:0.000000px;}
.yad{bottom:3.690000px;}
.ybc{bottom:5.760000px;}
.y9{bottom:16.020000px;}
.y91{bottom:21.600000px;}
.y7b{bottom:22.590000px;}
.yba{bottom:24.840000px;}
.y25{bottom:34.470000px;}
.y23{bottom:51.750000px;}
.y7{bottom:79.830000px;}
.y6{bottom:112.590000px;}
.y8{bottom:113.670000px;}
.y5{bottom:145.440000px;}
.y21{bottom:165.505500px;}
.y79{bottom:170.730000px;}
.y3d{bottom:176.580000px;}
.y9e{bottom:182.785680px;}
.y20{bottom:188.010000px;}
.yc2{bottom:189.900000px;}
.yb8{bottom:195.030000px;}
.y78{bottom:195.480000px;}
.y3c{bottom:200.430000px;}
.y9d{bottom:205.200000px;}
.y1f{bottom:212.760000px;}
.y77{bottom:216.180000px;}
.yc1{bottom:218.880000px;}
.y3b{bottom:224.190000px;}
.y9c{bottom:229.950000px;}
.y1e{bottom:233.460000px;}
.y8f{bottom:243.990000px;}
.y3a{bottom:248.040000px;}
.y9b{bottom:250.650000px;}
.y76{bottom:252.990000px;}
.y8e{bottom:267.750000px;}
.y39{bottom:271.800000px;}
.y75{bottom:276.750000px;}
.ya0{bottom:281.880000px;}
.y9a{bottom:286.020000px;}
.y38{bottom:295.650000px;}
.y1d{bottom:298.260000px;}
.y74{bottom:300.600000px;}
.y99{bottom:311.310000px;}
.y37{bottom:319.410000px;}
.y1c{bottom:322.020000px;}
.y73{bottom:324.360000px;}
.y98{bottom:335.070000px;}
.y36{bottom:343.260000px;}
.y1b{bottom:345.870000px;}
.y72{bottom:348.210000px;}
.y97{bottom:358.920000px;}
.y35{bottom:367.020000px;}
.y1a{bottom:369.630000px;}
.y8d{bottom:371.970000px;}
.y71{bottom:380.970000px;}
.y96{bottom:383.220000px;}
.y34{bottom:390.870000px;}
.y8c{bottom:395.730000px;}
.y22{bottom:395.820000px;}
.y3f{bottom:404.100000px;}
.y70{bottom:404.730000px;}
.y95{bottom:408.510000px;}
.y26{bottom:413.010000px;}
.y33{bottom:414.630000px;}
.y6f{bottom:428.580000px;}
.y24{bottom:430.290000px;}
.y94{bottom:432.270000px;}
.y32{bottom:438.480000px;}
.y6e{bottom:452.340000px;}
.y31{bottom:462.240000px;}
.y93{bottom:465.120000px;}
.y19{bottom:468.270000px;}
.y6d{bottom:476.190000px;}
.y9f{bottom:490.320000px;}
.y30{bottom:491.490000px;}
.y3e{bottom:499.410000px;}
.y6c{bottom:499.950000px;}
.yac{bottom:511.263360px;}
.y53{bottom:511.894440px;}
.y90{bottom:515.070000px;}
.y6b{bottom:523.800000px;}
.yab{bottom:528.457680px;}
.y52{bottom:534.484530px;}
.yaa{bottom:545.742180px;}
.y6a{bottom:547.560000px;}
.y8b{bottom:548.100000px;}
.y51{bottom:551.498490px;}
.ya9{bottom:563.026680px;}
.y50{bottom:568.512450px;}
.y8a{bottom:573.390000px;}
.ya8{bottom:580.221000px;}
.y69{bottom:580.410000px;}
.y4f{bottom:589.930200px;}
.yb7{bottom:594.000000px;}
.y89{bottom:597.150000px;}
.ya7{bottom:597.505500px;}
.y68{bottom:604.170000px;}
.y4e{bottom:606.944160px;}
.ya6{bottom:614.790000px;}
.y88{bottom:621.000000px;}
.y4d{bottom:623.958120px;}
.yb6{bottom:626.760000px;}
.y67{bottom:628.020000px;}
.ybb{bottom:630.450000px;}
.y87{bottom:644.760000px;}
.yc0{bottom:645.030000px;}
.y4c{bottom:645.375870px;}
.ya5{bottom:649.971270px;}
.y66{bottom:651.780000px;}
.yb5{bottom:659.610000px;}
.y4b{bottom:662.389830px;}
.ya4{bottom:667.255770px;}
.y86{bottom:668.610000px;}
.y65{bottom:675.630000px;}
.y4a{bottom:679.403790px;}
.ya3{bottom:684.540270px;}
.y85{bottom:692.370000px;}
.y64{bottom:699.390000px;}
.y7a{bottom:700.650000px;}
.y49{bottom:700.821540px;}
.ya2{bottom:701.734590px;}
.y7c{bottom:707.400000px;}
.y84{bottom:716.220000px;}
.y48{bottom:717.835500px;}
.y63{bottom:723.240000px;}
.yb4{bottom:725.220000px;}
.ya1{bottom:737.010000px;}
.y47{bottom:739.343430px;}
.y83{bottom:739.980000px;}
.y62{bottom:747.000000px;}
.y46{bottom:756.357390px;}
.yb3{bottom:757.980000px;}
.y18{bottom:758.700000px;}
.y82{bottom:763.830000px;}
.y61{bottom:770.850000px;}
.y45{bottom:777.775140px;}
.yb2{bottom:781.830000px;}
.y17{bottom:783.090000px;}
.y60{bottom:794.610000px;}
.y44{bottom:794.789100px;}
.y81{bottom:796.590000px;}
.yb1{bottom:805.590000px;}
.y16{bottom:808.290000px;}
.y43{bottom:816.297030px;}
.y5f{bottom:818.460000px;}
.y80{bottom:820.440000px;}
.yb0{bottom:829.440000px;}
.y15{bottom:832.140000px;}
.y42{bottom:833.310990px;}
.y5e{bottom:842.760000px;}
.y7f{bottom:844.200000px;}
.yaf{bottom:853.200000px;}
.y14{bottom:855.900000px;}
.y41{bottom:867.414060px;}
.y5d{bottom:868.050000px;}
.y92{bottom:877.050000px;}
.y13{bottom:879.660000px;}
.ybf{bottom:881.460000px;}
.y40{bottom:885.420000px;}
.y7e{bottom:891.810000px;}
.y5c{bottom:900.810000px;}
.y12{bottom:903.510000px;}
.ybe{bottom:910.440000px;}
.y7d{bottom:915.660000px;}
.yb9{bottom:919.710000px;}
.y5b{bottom:924.660000px;}
.y11{bottom:927.270000px;}
.y2f{bottom:939.420000px;}
.y5a{bottom:948.420000px;}
.y10{bottom:951.120000px;}
.y2e{bottom:963.270000px;}
.y59{bottom:972.270000px;}
.yf{bottom:974.880000px;}
.y2d{bottom:987.030000px;}
.y58{bottom:996.030000px;}
.ye{bottom:997.563150px;}
.y2c{bottom:1010.790000px;}
.yd{bottom:1018.530000px;}
.y57{bottom:1019.790000px;}
.y2b{bottom:1034.640000px;}
.yc{bottom:1040.670000px;}
.y56{bottom:1043.640000px;}
.y2a{bottom:1058.400000px;}
.y55{bottom:1067.400000px;}
.y29{bottom:1082.250000px;}
.yb{bottom:1083.510000px;}
.y54{bottom:1091.250000px;}
.y28{bottom:1115.010000px;}
.ya{bottom:1134.540000px;}
.yc3{bottom:1138.770000px;}
.y27{bottom:1138.860000px;}
.y4{bottom:1171.620000px;}
.y3{bottom:1192.045500px;}
.y2{bottom:1208.610000px;}
.y1{bottom:1225.890000px;}
.h1c{height:19.800000px;}
.h6{height:32.850000px;}
.hd{height:34.114922px;}
.h18{height:34.290000px;}
.h16{height:36.540000px;}
.h4{height:38.759766px;}
.h1b{height:38.790000px;}
.h13{height:40.070215px;}
.h17{height:46.300781px;}
.h3{height:47.286914px;}
.h1d{height:47.988281px;}
.ha{height:49.199766px;}
.h14{height:50.021719px;}
.h10{height:51.548203px;}
.h19{height:52.751777px;}
.he{height:52.898555px;}
.h9{height:58.921875px;}
.h5{height:63.175781px;}
.h11{height:63.351562px;}
.h8{height:63.930234px;}
.hf{height:65.790000px;}
.hc{height:68.545723px;}
.h7{height:68.643984px;}
.h15{height:71.854805px;}
.hb{height:71.979609px;}
.h2{height:75.600000px;}
.h1a{height:295.920000px;}
.h12{height:416.791500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:39.060000px;}
.w7{width:298.890000px;}
.w4{width:349.198500px;}
.w9{width:357.300000px;}
.w5{width:361.980000px;}
.w8{width:413.100000px;}
.w6{width:445.950000px;}
.w3{width:524.251500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:10.800000px;}
.x18{left:17.280000px;}
.x24{left:44.640000px;}
.x1b{left:66.150000px;}
.x1d{left:101.880000px;}
.x3{left:127.620000px;}
.x22{left:130.050000px;}
.x6{left:154.800000px;}
.x1{left:179.370000px;}
.x23{left:214.110000px;}
.xd{left:222.120000px;}
.xf{left:232.920000px;}
.x10{left:238.050000px;}
.x7{left:250.920000px;}
.x4{left:297.180000px;}
.xc{left:343.620000px;}
.x1a{left:379.620000px;}
.x9{left:386.460000px;}
.x26{left:420.120000px;}
.x27{left:435.870000px;}
.x25{left:452.520000px;}
.x17{left:457.650000px;}
.x11{left:465.120000px;}
.x5{left:466.650000px;}
.x12{left:476.370000px;}
.x15{left:487.170270px;}
.x19{left:491.580000px;}
.x13{left:494.550000px;}
.x14{left:527.135040px;}
.x2{left:529.119000px;}
.x1c{left:536.940000px;}
.x16{left:539.369460px;}
.x1e{left:567.180000px;}
.x1f{left:569.340000px;}
.x20{left:570.420000px;}
.x8{left:593.100000px;}
.x21{left:780.390000px;}
.xb{left:781.560000px;}
.xa{left:829.168650px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls19{letter-spacing:-0.427520pt;}
.ls16{letter-spacing:-0.374080pt;}
.ls17{letter-spacing:-0.320640pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.267200pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.213760pt;}
.ls18{letter-spacing:-0.160320pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.106880pt;}
.lse{letter-spacing:-0.096000pt;}
.ls1f{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.058560pt;}
.ls15{letter-spacing:-0.053440pt;}
.lsf{letter-spacing:-0.048000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.053440pt;}
.ls6{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.074560pt;}
.ls3{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.106880pt;}
.ls7{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.149120pt;}
.lsa{letter-spacing:0.149632pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.160320pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.374080pt;}
.ls26{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.694720pt;}
.ls23{letter-spacing:2.560000pt;}
.ls25{letter-spacing:2.880000pt;}
.ls24{letter-spacing:3.200000pt;}
.ls21{letter-spacing:4.160000pt;}
.ls1c{letter-spacing:4.480000pt;}
.ls28{letter-spacing:4.863040pt;}
.ls27{letter-spacing:5.760000pt;}
.ls22{letter-spacing:8.640000pt;}
.ls29{letter-spacing:183.440000pt;}
.ls0{letter-spacing:650.256000pt;}
.ws47{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws60{word-spacing:-16.000000pt;}
.ws61{word-spacing:-15.936000pt;}
.ws2a{word-spacing:-15.872000pt;}
.ws2e{word-spacing:-14.375360pt;}
.ws2f{word-spacing:-14.268480pt;}
.ws2c{word-spacing:-14.054720pt;}
.ws30{word-spacing:-13.947840pt;}
.ws2d{word-spacing:-13.787520pt;}
.ws8{word-spacing:-13.520320pt;}
.ws9{word-spacing:-13.360000pt;}
.ws48{word-spacing:-13.306560pt;}
.ws2b{word-spacing:-13.199680pt;}
.ws74{word-spacing:-13.092800pt;}
.wsa{word-spacing:-12.985920pt;}
.ws1{word-spacing:-12.077440pt;}
.ws6{word-spacing:-11.360000pt;}
.ws2{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.800000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws54{word-spacing:-4.160000pt;}
.ws55{word-spacing:-3.840000pt;}
.ws49{word-spacing:-3.584000pt;}
.ws1d{word-spacing:-3.520000pt;}
.ws3a{word-spacing:-3.008000pt;}
.ws22{word-spacing:-2.944000pt;}
.ws21{word-spacing:-2.880000pt;}
.ws18{word-spacing:-2.624000pt;}
.ws57{word-spacing:-2.560000pt;}
.ws76{word-spacing:-2.368000pt;}
.ws6f{word-spacing:-2.240000pt;}
.ws73{word-spacing:-2.048000pt;}
.ws63{word-spacing:-1.984000pt;}
.ws14{word-spacing:-1.920000pt;}
.ws5c{word-spacing:-1.728000pt;}
.ws1c{word-spacing:-1.664000pt;}
.ws16{word-spacing:-1.600000pt;}
.ws1a{word-spacing:-1.344000pt;}
.ws19{word-spacing:-1.280000pt;}
.ws3e{word-spacing:-1.024000pt;}
.ws23{word-spacing:-0.960000pt;}
.ws70{word-spacing:-0.704000pt;}
.ws3f{word-spacing:-0.640000pt;}
.ws46{word-spacing:-0.587840pt;}
.ws38{word-spacing:-0.448000pt;}
.ws15{word-spacing:-0.384000pt;}
.ws26{word-spacing:-0.320640pt;}
.ws37{word-spacing:-0.320000pt;}
.ws45{word-spacing:-0.267200pt;}
.ws7b{word-spacing:-0.160320pt;}
.ws11{word-spacing:-0.149120pt;}
.ws44{word-spacing:-0.106880pt;}
.ws10{word-spacing:-0.074560pt;}
.ws12{word-spacing:-0.069440pt;}
.ws32{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.053440pt;}
.wsb{word-spacing:0.000000pt;}
.ws43{word-spacing:0.053440pt;}
.wsc{word-spacing:0.058560pt;}
.ws50{word-spacing:0.064000pt;}
.ws3{word-spacing:0.096000pt;}
.wsd{word-spacing:0.106880pt;}
.wse{word-spacing:0.144000pt;}
.wsf{word-spacing:0.149120pt;}
.ws27{word-spacing:0.160320pt;}
.ws58{word-spacing:0.192000pt;}
.ws7c{word-spacing:0.213760pt;}
.ws24{word-spacing:0.256000pt;}
.ws5f{word-spacing:0.288000pt;}
.ws4c{word-spacing:0.320000pt;}
.ws42{word-spacing:0.320640pt;}
.ws7a{word-spacing:0.480960pt;}
.ws77{word-spacing:0.512000pt;}
.ws4a{word-spacing:0.576000pt;}
.ws25{word-spacing:0.587840pt;}
.ws31{word-spacing:0.640000pt;}
.ws62{word-spacing:0.960000pt;}
.ws41{word-spacing:1.152000pt;}
.ws3b{word-spacing:1.280000pt;}
.ws71{word-spacing:1.536000pt;}
.ws72{word-spacing:1.600000pt;}
.ws17{word-spacing:1.856000pt;}
.ws40{word-spacing:1.920000pt;}
.ws3d{word-spacing:2.176000pt;}
.ws5a{word-spacing:2.240000pt;}
.ws75{word-spacing:2.432000pt;}
.ws1b{word-spacing:2.560000pt;}
.ws34{word-spacing:2.816000pt;}
.ws35{word-spacing:2.880000pt;}
.ws5d{word-spacing:3.072000pt;}
.ws36{word-spacing:3.136000pt;}
.ws5e{word-spacing:3.200000pt;}
.ws33{word-spacing:3.456000pt;}
.ws4d{word-spacing:3.520000pt;}
.ws67{word-spacing:3.776000pt;}
.ws82{word-spacing:3.840000pt;}
.ws80{word-spacing:4.032000pt;}
.ws5b{word-spacing:4.096000pt;}
.ws56{word-spacing:4.160000pt;}
.ws20{word-spacing:4.352000pt;}
.ws1e{word-spacing:4.416000pt;}
.ws39{word-spacing:4.480000pt;}
.ws79{word-spacing:4.702720pt;}
.ws1f{word-spacing:4.800000pt;}
.ws4f{word-spacing:5.056000pt;}
.ws3c{word-spacing:5.120000pt;}
.ws85{word-spacing:5.312000pt;}
.ws7e{word-spacing:5.696000pt;}
.ws78{word-spacing:5.760000pt;}
.ws59{word-spacing:6.400000pt;}
.ws4b{word-spacing:6.976000pt;}
.ws65{word-spacing:7.040000pt;}
.ws81{word-spacing:7.360000pt;}
.ws51{word-spacing:7.616000pt;}
.ws64{word-spacing:8.576000pt;}
.ws7f{word-spacing:10.496000pt;}
.ws53{word-spacing:10.560000pt;}
.ws6d{word-spacing:11.200000pt;}
.ws6a{word-spacing:11.712000pt;}
.ws4e{word-spacing:12.096000pt;}
.ws52{word-spacing:12.160000pt;}
.ws87{word-spacing:16.576000pt;}
.ws86{word-spacing:18.560000pt;}
.ws83{word-spacing:21.312000pt;}
.ws84{word-spacing:21.760000pt;}
.ws66{word-spacing:22.016000pt;}
.ws6e{word-spacing:23.616000pt;}
.ws6b{word-spacing:25.856000pt;}
.ws29{word-spacing:34.148160pt;}
.ws28{word-spacing:34.361920pt;}
.ws68{word-spacing:37.632000pt;}
.ws69{word-spacing:37.952000pt;}
.ws6c{word-spacing:74.816000pt;}
.ws7d{word-spacing:156.899840pt;}
._5{margin-left:-34.897856pt;}
._3{margin-left:-3.520000pt;}
._7{margin-left:-2.044800pt;}
._0{margin-left:-0.897600pt;}
._1{width:0.897600pt;}
._6{width:1.793600pt;}
._2{width:2.752000pt;}
._4{width:3.846400pt;}
._8{width:12.032000pt;}
._9{width:55.960320pt;}
._d{width:750.208000pt;}
._b{width:1032.000000pt;}
._a{width:1080.000000pt;}
._c{width:1104.000000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.440000pt;}
.fs5{font-size:74.560000pt;}
.fs3{font-size:96.000000pt;}
.yae{bottom:-28.080000pt;}
.ybd{bottom:-26.240000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:3.280000pt;}
.ybc{bottom:5.120000pt;}
.y9{bottom:14.240000pt;}
.y91{bottom:19.200000pt;}
.y7b{bottom:20.080000pt;}
.yba{bottom:22.080000pt;}
.y25{bottom:30.640000pt;}
.y23{bottom:46.000000pt;}
.y7{bottom:70.960000pt;}
.y6{bottom:100.080000pt;}
.y8{bottom:101.040000pt;}
.y5{bottom:129.280000pt;}
.y21{bottom:147.116000pt;}
.y79{bottom:151.760000pt;}
.y3d{bottom:156.960000pt;}
.y9e{bottom:162.476160pt;}
.y20{bottom:167.120000pt;}
.yc2{bottom:168.800000pt;}
.yb8{bottom:173.360000pt;}
.y78{bottom:173.760000pt;}
.y3c{bottom:178.160000pt;}
.y9d{bottom:182.400000pt;}
.y1f{bottom:189.120000pt;}
.y77{bottom:192.160000pt;}
.yc1{bottom:194.560000pt;}
.y3b{bottom:199.280000pt;}
.y9c{bottom:204.400000pt;}
.y1e{bottom:207.520000pt;}
.y8f{bottom:216.880000pt;}
.y3a{bottom:220.480000pt;}
.y9b{bottom:222.800000pt;}
.y76{bottom:224.880000pt;}
.y8e{bottom:238.000000pt;}
.y39{bottom:241.600000pt;}
.y75{bottom:246.000000pt;}
.ya0{bottom:250.560000pt;}
.y9a{bottom:254.240000pt;}
.y38{bottom:262.800000pt;}
.y1d{bottom:265.120000pt;}
.y74{bottom:267.200000pt;}
.y99{bottom:276.720000pt;}
.y37{bottom:283.920000pt;}
.y1c{bottom:286.240000pt;}
.y73{bottom:288.320000pt;}
.y98{bottom:297.840000pt;}
.y36{bottom:305.120000pt;}
.y1b{bottom:307.440000pt;}
.y72{bottom:309.520000pt;}
.y97{bottom:319.040000pt;}
.y35{bottom:326.240000pt;}
.y1a{bottom:328.560000pt;}
.y8d{bottom:330.640000pt;}
.y71{bottom:338.640000pt;}
.y96{bottom:340.640000pt;}
.y34{bottom:347.440000pt;}
.y8c{bottom:351.760000pt;}
.y22{bottom:351.840000pt;}
.y3f{bottom:359.200000pt;}
.y70{bottom:359.760000pt;}
.y95{bottom:363.120000pt;}
.y26{bottom:367.120000pt;}
.y33{bottom:368.560000pt;}
.y6f{bottom:380.960000pt;}
.y24{bottom:382.480000pt;}
.y94{bottom:384.240000pt;}
.y32{bottom:389.760000pt;}
.y6e{bottom:402.080000pt;}
.y31{bottom:410.880000pt;}
.y93{bottom:413.440000pt;}
.y19{bottom:416.240000pt;}
.y6d{bottom:423.280000pt;}
.y9f{bottom:435.840000pt;}
.y30{bottom:436.880000pt;}
.y3e{bottom:443.920000pt;}
.y6c{bottom:444.400000pt;}
.yac{bottom:454.456320pt;}
.y53{bottom:455.017280pt;}
.y90{bottom:457.840000pt;}
.y6b{bottom:465.600000pt;}
.yab{bottom:469.740160pt;}
.y52{bottom:475.097360pt;}
.yaa{bottom:485.104160pt;}
.y6a{bottom:486.720000pt;}
.y8b{bottom:487.200000pt;}
.y51{bottom:490.220880pt;}
.ya9{bottom:500.468160pt;}
.y50{bottom:505.344400pt;}
.y8a{bottom:509.680000pt;}
.ya8{bottom:515.752000pt;}
.y69{bottom:515.920000pt;}
.y4f{bottom:524.382400pt;}
.yb7{bottom:528.000000pt;}
.y89{bottom:530.800000pt;}
.ya7{bottom:531.116000pt;}
.y68{bottom:537.040000pt;}
.y4e{bottom:539.505920pt;}
.ya6{bottom:546.480000pt;}
.y88{bottom:552.000000pt;}
.y4d{bottom:554.629440pt;}
.yb6{bottom:557.120000pt;}
.y67{bottom:558.240000pt;}
.ybb{bottom:560.400000pt;}
.y87{bottom:573.120000pt;}
.yc0{bottom:573.360000pt;}
.y4c{bottom:573.667440pt;}
.ya5{bottom:577.752240pt;}
.y66{bottom:579.360000pt;}
.yb5{bottom:586.320000pt;}
.y4b{bottom:588.790960pt;}
.ya4{bottom:593.116240pt;}
.y86{bottom:594.320000pt;}
.y65{bottom:600.560000pt;}
.y4a{bottom:603.914480pt;}
.ya3{bottom:608.480240pt;}
.y85{bottom:615.440000pt;}
.y64{bottom:621.680000pt;}
.y7a{bottom:622.800000pt;}
.y49{bottom:622.952480pt;}
.ya2{bottom:623.764080pt;}
.y7c{bottom:628.800000pt;}
.y84{bottom:636.640000pt;}
.y48{bottom:638.076000pt;}
.y63{bottom:642.880000pt;}
.yb4{bottom:644.640000pt;}
.ya1{bottom:655.120000pt;}
.y47{bottom:657.194160pt;}
.y83{bottom:657.760000pt;}
.y62{bottom:664.000000pt;}
.y46{bottom:672.317680pt;}
.yb3{bottom:673.760000pt;}
.y18{bottom:674.400000pt;}
.y82{bottom:678.960000pt;}
.y61{bottom:685.200000pt;}
.y45{bottom:691.355680pt;}
.yb2{bottom:694.960000pt;}
.y17{bottom:696.080000pt;}
.y60{bottom:706.320000pt;}
.y44{bottom:706.479200pt;}
.y81{bottom:708.080000pt;}
.yb1{bottom:716.080000pt;}
.y16{bottom:718.480000pt;}
.y43{bottom:725.597360pt;}
.y5f{bottom:727.520000pt;}
.y80{bottom:729.280000pt;}
.yb0{bottom:737.280000pt;}
.y15{bottom:739.680000pt;}
.y42{bottom:740.720880pt;}
.y5e{bottom:749.120000pt;}
.y7f{bottom:750.400000pt;}
.yaf{bottom:758.400000pt;}
.y14{bottom:760.800000pt;}
.y41{bottom:771.034720pt;}
.y5d{bottom:771.600000pt;}
.y92{bottom:779.600000pt;}
.y13{bottom:781.920000pt;}
.ybf{bottom:783.520000pt;}
.y40{bottom:787.040000pt;}
.y7e{bottom:792.720000pt;}
.y5c{bottom:800.720000pt;}
.y12{bottom:803.120000pt;}
.ybe{bottom:809.280000pt;}
.y7d{bottom:813.920000pt;}
.yb9{bottom:817.520000pt;}
.y5b{bottom:821.920000pt;}
.y11{bottom:824.240000pt;}
.y2f{bottom:835.040000pt;}
.y5a{bottom:843.040000pt;}
.y10{bottom:845.440000pt;}
.y2e{bottom:856.240000pt;}
.y59{bottom:864.240000pt;}
.yf{bottom:866.560000pt;}
.y2d{bottom:877.360000pt;}
.y58{bottom:885.360000pt;}
.ye{bottom:886.722800pt;}
.y2c{bottom:898.480000pt;}
.yd{bottom:905.360000pt;}
.y57{bottom:906.480000pt;}
.y2b{bottom:919.680000pt;}
.yc{bottom:925.040000pt;}
.y56{bottom:927.680000pt;}
.y2a{bottom:940.800000pt;}
.y55{bottom:948.800000pt;}
.y29{bottom:962.000000pt;}
.yb{bottom:963.120000pt;}
.y54{bottom:970.000000pt;}
.y28{bottom:991.120000pt;}
.ya{bottom:1008.480000pt;}
.yc3{bottom:1012.240000pt;}
.y27{bottom:1012.320000pt;}
.y4{bottom:1041.440000pt;}
.y3{bottom:1059.596000pt;}
.y2{bottom:1074.320000pt;}
.y1{bottom:1089.680000pt;}
.h1c{height:17.600000pt;}
.h6{height:29.200000pt;}
.hd{height:30.324375pt;}
.h18{height:30.480000pt;}
.h16{height:32.480000pt;}
.h4{height:34.453125pt;}
.h1b{height:34.480000pt;}
.h13{height:35.617969pt;}
.h17{height:41.156250pt;}
.h3{height:42.032812pt;}
.h1d{height:42.656250pt;}
.ha{height:43.733125pt;}
.h14{height:44.463750pt;}
.h10{height:45.820625pt;}
.h19{height:46.890469pt;}
.he{height:47.020937pt;}
.h9{height:52.375000pt;}
.h5{height:56.156250pt;}
.h11{height:56.312500pt;}
.h8{height:56.826875pt;}
.hf{height:58.480000pt;}
.hc{height:60.929531pt;}
.h7{height:61.016875pt;}
.h15{height:63.870937pt;}
.hb{height:63.981875pt;}
.h2{height:67.200000pt;}
.h1a{height:263.040000pt;}
.h12{height:370.481333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.720000pt;}
.w7{width:265.680000pt;}
.w4{width:310.398667pt;}
.w9{width:317.600000pt;}
.w5{width:321.760000pt;}
.w8{width:367.200000pt;}
.w6{width:396.400000pt;}
.w3{width:466.001333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.600000pt;}
.x18{left:15.360000pt;}
.x24{left:39.680000pt;}
.x1b{left:58.800000pt;}
.x1d{left:90.560000pt;}
.x3{left:113.440000pt;}
.x22{left:115.600000pt;}
.x6{left:137.600000pt;}
.x1{left:159.440000pt;}
.x23{left:190.320000pt;}
.xd{left:197.440000pt;}
.xf{left:207.040000pt;}
.x10{left:211.600000pt;}
.x7{left:223.040000pt;}
.x4{left:264.160000pt;}
.xc{left:305.440000pt;}
.x1a{left:337.440000pt;}
.x9{left:343.520000pt;}
.x26{left:373.440000pt;}
.x27{left:387.440000pt;}
.x25{left:402.240000pt;}
.x17{left:406.800000pt;}
.x11{left:413.440000pt;}
.x5{left:414.800000pt;}
.x12{left:423.440000pt;}
.x15{left:433.040240pt;}
.x19{left:436.960000pt;}
.x13{left:439.600000pt;}
.x14{left:468.564480pt;}
.x2{left:470.328000pt;}
.x1c{left:477.280000pt;}
.x16{left:479.439520pt;}
.x1e{left:504.160000pt;}
.x1f{left:506.080000pt;}
.x20{left:507.040000pt;}
.x8{left:527.200000pt;}
.x21{left:693.680000pt;}
.xb{left:694.720000pt;}
.xa{left:737.038800pt;}
}




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