
    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_9f009b2d3b54a75baad1023a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_506179e94d1f837a3bb50053.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_d90256cd01c3bfdceec7c2b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.006000px;}
.ls2{letter-spacing:0.012000px;}
.ls7{letter-spacing:0.096000px;}
.ls3{letter-spacing:1.494000px;}
.ls5{letter-spacing:1.500000px;}
.ls4{letter-spacing:1.506000px;}
.ls1{letter-spacing:1.518000px;}
.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;}
}
.ws24{word-spacing:-18.198000px;}
.ws84{word-spacing:-18.012000px;}
.ws63{word-spacing:-17.910000px;}
.wsb3{word-spacing:-17.892000px;}
.ws26{word-spacing:-17.778000px;}
.ws78{word-spacing:-17.718000px;}
.wsba{word-spacing:-17.688000px;}
.ws86{word-spacing:-17.664000px;}
.ws5a{word-spacing:-17.586000px;}
.wsb{word-spacing:-17.508000px;}
.ws40{word-spacing:-17.484000px;}
.ws31{word-spacing:-17.460000px;}
.ws7b{word-spacing:-17.454000px;}
.ws7e{word-spacing:-17.448000px;}
.wsbb{word-spacing:-17.424000px;}
.wsa3{word-spacing:-17.370000px;}
.ws69{word-spacing:-17.328000px;}
.ws5e{word-spacing:-17.322000px;}
.wsae{word-spacing:-17.316000px;}
.wsb0{word-spacing:-17.304000px;}
.wsd{word-spacing:-17.292000px;}
.ws9b{word-spacing:-17.268000px;}
.ws51{word-spacing:-17.250000px;}
.ws46{word-spacing:-17.232000px;}
.wsa5{word-spacing:-17.220000px;}
.ws49{word-spacing:-17.172000px;}
.ws1b{word-spacing:-17.166000px;}
.ws2e{word-spacing:-17.142000px;}
.ws9a{word-spacing:-17.124000px;}
.wsb4{word-spacing:-17.106000px;}
.wsad{word-spacing:-17.088000px;}
.ws83{word-spacing:-17.082000px;}
.wsc{word-spacing:-17.046000px;}
.ws14{word-spacing:-17.022000px;}
.wsbd{word-spacing:-17.010000px;}
.ws50{word-spacing:-16.944000px;}
.wsa9{word-spacing:-16.938000px;}
.wsb7{word-spacing:-16.932000px;}
.wsb6{word-spacing:-16.920000px;}
.ws9d{word-spacing:-16.884000px;}
.ws52{word-spacing:-16.878000px;}
.wsbe{word-spacing:-16.866000px;}
.ws8a{word-spacing:-16.854000px;}
.ws1f{word-spacing:-16.848000px;}
.ws71{word-spacing:-16.842000px;}
.ws4b{word-spacing:-16.830000px;}
.ws10{word-spacing:-16.824000px;}
.wsc3{word-spacing:-16.812000px;}
.ws66{word-spacing:-16.794000px;}
.ws53{word-spacing:-16.782000px;}
.ws4d{word-spacing:-16.770000px;}
.ws25{word-spacing:-16.728000px;}
.ws16{word-spacing:-16.722000px;}
.ws5c{word-spacing:-16.692000px;}
.ws30{word-spacing:-16.680000px;}
.ws5d{word-spacing:-16.662000px;}
.ws9e{word-spacing:-16.632000px;}
.wsa1{word-spacing:-16.626000px;}
.wsa4{word-spacing:-16.620000px;}
.ws5b{word-spacing:-16.614000px;}
.wsaf{word-spacing:-16.602000px;}
.ws99{word-spacing:-16.584000px;}
.wsf{word-spacing:-16.578000px;}
.ws4c{word-spacing:-16.572000px;}
.ws7f{word-spacing:-16.566000px;}
.ws77{word-spacing:-16.554000px;}
.ws55{word-spacing:-16.542000px;}
.ws8b{word-spacing:-16.530000px;}
.wsb1{word-spacing:-16.524000px;}
.ws7{word-spacing:-16.500000px;}
.ws3f{word-spacing:-16.488000px;}
.ws60{word-spacing:-16.476000px;}
.ws2f{word-spacing:-16.470000px;}
.ws21{word-spacing:-16.464000px;}
.ws95{word-spacing:-16.458000px;}
.ws74{word-spacing:-16.452000px;}
.ws11{word-spacing:-16.446000px;}
.ws34{word-spacing:-16.428000px;}
.ws97{word-spacing:-16.422000px;}
.ws58{word-spacing:-16.410000px;}
.ws6a{word-spacing:-16.398000px;}
.ws2d{word-spacing:-16.380000px;}
.wsa0{word-spacing:-16.374000px;}
.ws3d{word-spacing:-16.368000px;}
.ws88{word-spacing:-16.350000px;}
.ws42{word-spacing:-16.344000px;}
.ws73{word-spacing:-16.338000px;}
.ws87{word-spacing:-16.332000px;}
.ws22{word-spacing:-16.326000px;}
.ws41{word-spacing:-16.308000px;}
.ws35{word-spacing:-16.296000px;}
.ws82{word-spacing:-16.290000px;}
.ws3b{word-spacing:-16.272000px;}
.ws6c{word-spacing:-16.242000px;}
.ws13{word-spacing:-16.230000px;}
.ws8f{word-spacing:-16.200000px;}
.wsc4{word-spacing:-16.188000px;}
.wsac{word-spacing:-16.182000px;}
.ws1d{word-spacing:-16.170000px;}
.ws39{word-spacing:-16.164000px;}
.ws7c{word-spacing:-16.152000px;}
.ws81{word-spacing:-16.140000px;}
.ws29{word-spacing:-16.134000px;}
.ws17{word-spacing:-16.128000px;}
.ws7a{word-spacing:-16.122000px;}
.ws75{word-spacing:-16.104000px;}
.ws18{word-spacing:-16.026000px;}
.ws6f{word-spacing:-16.020000px;}
.ws4f{word-spacing:-16.014000px;}
.ws70{word-spacing:-16.008000px;}
.ws3c{word-spacing:-15.984000px;}
.ws15{word-spacing:-15.978000px;}
.wsbc{word-spacing:-15.960000px;}
.ws43{word-spacing:-15.906000px;}
.ws2a{word-spacing:-15.900000px;}
.ws37{word-spacing:-15.882000px;}
.ws61{word-spacing:-15.834000px;}
.ws36{word-spacing:-15.828000px;}
.ws45{word-spacing:-15.822000px;}
.ws93{word-spacing:-15.816000px;}
.wsb8{word-spacing:-15.798000px;}
.ws64{word-spacing:-15.738000px;}
.wscd{word-spacing:-15.720000px;}
.ws4e{word-spacing:-15.696000px;}
.ws1e{word-spacing:-15.684000px;}
.ws3e{word-spacing:-15.678000px;}
.wsb9{word-spacing:-15.672000px;}
.wsc0{word-spacing:-15.630000px;}
.ws98{word-spacing:-15.594000px;}
.ws72{word-spacing:-15.588000px;}
.ws27{word-spacing:-15.540000px;}
.ws2b{word-spacing:-15.510000px;}
.ws59{word-spacing:-15.474000px;}
.ws2c{word-spacing:-15.342000px;}
.ws33{word-spacing:-15.312000px;}
.ws32{word-spacing:-15.300000px;}
.ws6e{word-spacing:-15.240000px;}
.ws1c{word-spacing:-15.198000px;}
.wsa8{word-spacing:-15.114000px;}
.ws28{word-spacing:-15.042000px;}
.wsc1{word-spacing:-15.000000px;}
.ws7d{word-spacing:-14.892000px;}
.ws48{word-spacing:-14.850000px;}
.ws38{word-spacing:-14.748000px;}
.wsbf{word-spacing:-14.664000px;}
.ws3a{word-spacing:-14.520000px;}
.wsd4{word-spacing:-14.274000px;}
.ws0{word-spacing:-14.250000px;}
.ws6{word-spacing:-13.950000px;}
.ws2{word-spacing:-13.500000px;}
.ws8c{word-spacing:-12.375000px;}
.wsc8{word-spacing:-12.105000px;}
.ws90{word-spacing:-12.078000px;}
.wscc{word-spacing:-11.974500px;}
.wsc6{word-spacing:-11.898000px;}
.wsce{word-spacing:-11.668500px;}
.wscb{word-spacing:-11.529000px;}
.wsca{word-spacing:-11.475000px;}
.wsc9{word-spacing:-11.466000px;}
.wsc5{word-spacing:-11.322000px;}
.wsc2{word-spacing:-11.250000px;}
.wsd1{word-spacing:-10.903500px;}
.wsd3{word-spacing:-10.525500px;}
.wsd2{word-spacing:-10.480500px;}
.wsd0{word-spacing:-10.462500px;}
.wsc7{word-spacing:-10.242000px;}
.ws3{word-spacing:-10.125000px;}
.wsb5{word-spacing:-1.572000px;}
.ws8d{word-spacing:-1.002000px;}
.ws1a{word-spacing:-0.978000px;}
.ws19{word-spacing:-0.780000px;}
.ws62{word-spacing:-0.768000px;}
.ws92{word-spacing:-0.738000px;}
.ws23{word-spacing:-0.726000px;}
.ws96{word-spacing:-0.714000px;}
.ws91{word-spacing:-0.708000px;}
.wse{word-spacing:-0.696000px;}
.ws68{word-spacing:-0.654000px;}
.ws65{word-spacing:-0.636000px;}
.wsb2{word-spacing:-0.624000px;}
.ws76{word-spacing:-0.498000px;}
.ws4{word-spacing:0.000000px;}
.ws67{word-spacing:0.552000px;}
.ws89{word-spacing:0.558000px;}
.ws9c{word-spacing:0.588000px;}
.ws8e{word-spacing:0.636000px;}
.ws47{word-spacing:0.660000px;}
.ws9{word-spacing:0.678000px;}
.ws80{word-spacing:0.684000px;}
.ws94{word-spacing:0.756000px;}
.ws56{word-spacing:0.768000px;}
.ws6b{word-spacing:0.786000px;}
.ws6d{word-spacing:0.792000px;}
.ws57{word-spacing:0.798000px;}
.wsa2{word-spacing:0.810000px;}
.ws85{word-spacing:0.816000px;}
.wsa7{word-spacing:0.846000px;}
.wsaa{word-spacing:0.876000px;}
.ws9f{word-spacing:0.882000px;}
.wsab{word-spacing:0.942000px;}
.ws4a{word-spacing:0.996000px;}
.ws44{word-spacing:1.002000px;}
.ws5{word-spacing:1.014000px;}
.wsa6{word-spacing:1.122000px;}
.ws54{word-spacing:1.140000px;}
.ws20{word-spacing:1.182000px;}
.wsa{word-spacing:1.224000px;}
.ws79{word-spacing:1.434000px;}
.ws5f{word-spacing:1.464000px;}
.ws12{word-spacing:1.578000px;}
.ws1{word-spacing:3.067500px;}
.wscf{word-spacing:5.340000px;}
.ws8{word-spacing:35.706000px;}
._13{margin-left:-10.494000px;}
._c{margin-left:-8.922000px;}
._d{margin-left:-7.209000px;}
._6{margin-left:-6.090000px;}
._7{margin-left:-5.064000px;}
._9{margin-left:-4.050000px;}
._5{margin-left:-3.024000px;}
._1{margin-left:-1.482000px;}
._0{width:1.482000px;}
._2{width:3.021000px;}
._e{width:5.220000px;}
._10{width:6.804000px;}
._16{width:13.200000px;}
._11{width:14.238000px;}
._14{width:16.758000px;}
._12{width:18.198000px;}
._f{width:19.500000px;}
._17{width:21.288000px;}
._15{width:23.400000px;}
._b{width:46.380000px;}
._4{width:47.880000px;}
._3{width:69.012000px;}
._a{width:456.978000px;}
._8{width:1246.380000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:40.500000px;}
.fs9{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:47.911425px;}
.y9a{bottom:49.411425px;}
.y70{bottom:50.536425px;}
.ya5{bottom:51.286425px;}
.y46{bottom:63.286425px;}
.y99{bottom:66.661425px;}
.ya4{bottom:67.036425px;}
.y6f{bottom:67.786425px;}
.y45{bottom:80.536425px;}
.ya3{bottom:82.786425px;}
.y98{bottom:83.911425px;}
.y6e{bottom:85.036425px;}
.y1c{bottom:87.286425px;}
.y44{bottom:97.786425px;}
.ya2{bottom:98.536425px;}
.y97{bottom:101.161425px;}
.y1b{bottom:102.286425px;}
.ya1{bottom:114.286425px;}
.y43{bottom:115.036425px;}
.y1a{bottom:117.286425px;}
.y6d{bottom:119.536425px;}
.y96{bottom:127.036425px;}
.ya0{bottom:130.036425px;}
.y19{bottom:132.286425px;}
.y6c{bottom:136.786425px;}
.y71{bottom:145.411425px;}
.y9f{bottom:145.786425px;}
.y18{bottom:147.286425px;}
.y42{bottom:149.536425px;}
.y6b{bottom:154.036425px;}
.y9e{bottom:161.536425px;}
.y17{bottom:162.286425px;}
.y41{bottom:166.786425px;}
.y6a{bottom:171.286425px;}
.y16{bottom:177.286425px;}
.y95{bottom:179.911425px;}
.y40{bottom:184.036425px;}
.y69{bottom:188.536425px;}
.y15{bottom:192.286425px;}
.y9d{bottom:193.036425px;}
.y94{bottom:197.161425px;}
.y3f{bottom:201.286425px;}
.y68{bottom:205.786425px;}
.y14{bottom:207.286425px;}
.y9c{bottom:208.786425px;}
.y93{bottom:214.411425px;}
.y13{bottom:222.286425px;}
.y67{bottom:223.036425px;}
.y9b{bottom:224.536425px;}
.y3e{bottom:227.161425px;}
.y92{bottom:231.661425px;}
.y12{bottom:237.286425px;}
.y66{bottom:240.286425px;}
.y91{bottom:248.911425px;}
.y65{bottom:257.536425px;}
.y90{bottom:266.161425px;}
.y11{bottom:267.286425px;}
.y3d{bottom:270.286425px;}
.y64{bottom:274.786425px;}
.y8f{bottom:283.411425px;}
.y3c{bottom:287.536425px;}
.y63{bottom:292.036425px;}
.y8e{bottom:300.661425px;}
.y10{bottom:303.286425px;}
.y3b{bottom:304.786425px;}
.y62{bottom:309.286425px;}
.y8d{bottom:317.911425px;}
.yf{bottom:318.286425px;}
.y3a{bottom:322.036425px;}
.y61{bottom:326.536425px;}
.y8c{bottom:335.161425px;}
.ye{bottom:339.286425px;}
.y60{bottom:343.786425px;}
.y8b{bottom:352.411425px;}
.yd{bottom:354.286425px;}
.y39{bottom:356.536425px;}
.y5f{bottom:361.036425px;}
.yc{bottom:369.286425px;}
.y8a{bottom:369.661425px;}
.y38{bottom:373.786425px;}
.y5e{bottom:378.286425px;}
.yb{bottom:384.286425px;}
.y89{bottom:386.911425px;}
.y37{bottom:391.036425px;}
.y5d{bottom:395.536425px;}
.ya{bottom:399.286425px;}
.y88{bottom:404.161425px;}
.y36{bottom:408.286425px;}
.y5c{bottom:412.786425px;}
.y9{bottom:414.286425px;}
.y87{bottom:421.411425px;}
.y35{bottom:425.536425px;}
.y8{bottom:429.286425px;}
.y5b{bottom:430.036425px;}
.y73{bottom:438.661425px;}
.y7{bottom:444.286425px;}
.y5a{bottom:447.286425px;}
.y86{bottom:455.911425px;}
.y6{bottom:459.286425px;}
.yba{bottom:463.036425px;}
.y59{bottom:464.536425px;}
.y85{bottom:473.161425px;}
.y5{bottom:474.286425px;}
.yb9{bottom:478.786425px;}
.y58{bottom:481.786425px;}
.y4{bottom:489.286425px;}
.y84{bottom:490.411425px;}
.yb8{bottom:494.536425px;}
.y57{bottom:499.036425px;}
.y3{bottom:504.286425px;}
.y34{bottom:506.536425px;}
.y83{bottom:507.661425px;}
.yb7{bottom:510.286425px;}
.y56{bottom:516.286425px;}
.y2{bottom:519.286425px;}
.y33{bottom:521.536425px;}
.y82{bottom:524.911425px;}
.yb6{bottom:526.036425px;}
.y55{bottom:533.536425px;}
.yb5{bottom:541.786425px;}
.y81{bottom:542.161425px;}
.y32{bottom:542.536425px;}
.y1{bottom:549.286425px;}
.y54{bottom:550.786425px;}
.y31{bottom:557.536425px;}
.y80{bottom:559.411425px;}
.y53{bottom:568.036425px;}
.y30{bottom:572.536425px;}
.yb4{bottom:573.286425px;}
.y7f{bottom:576.661425px;}
.y52{bottom:585.286425px;}
.y2f{bottom:587.536425px;}
.yb3{bottom:589.036425px;}
.y72{bottom:593.911425px;}
.y2e{bottom:602.536425px;}
.yb2{bottom:604.786425px;}
.y7e{bottom:611.161425px;}
.y2d{bottom:617.536425px;}
.y51{bottom:619.786425px;}
.yb1{bottom:620.536425px;}
.y7d{bottom:628.411425px;}
.y2c{bottom:632.536425px;}
.yb0{bottom:636.286425px;}
.y50{bottom:637.036425px;}
.y7c{bottom:645.661425px;}
.y2b{bottom:647.536425px;}
.yaf{bottom:652.036425px;}
.y4f{bottom:654.286425px;}
.y2a{bottom:662.536425px;}
.y7b{bottom:662.911425px;}
.yae{bottom:667.786425px;}
.y4e{bottom:671.536425px;}
.y29{bottom:677.536425px;}
.y7a{bottom:680.161425px;}
.yad{bottom:683.536425px;}
.y4d{bottom:688.786425px;}
.y28{bottom:692.536425px;}
.y79{bottom:697.411425px;}
.yac{bottom:699.286425px;}
.y4c{bottom:706.036425px;}
.y78{bottom:714.661425px;}
.yab{bottom:715.036425px;}
.y22{bottom:720.286425px;}
.y27{bottom:722.536425px;}
.y4b{bottom:723.286425px;}
.yaa{bottom:730.786425px;}
.y77{bottom:731.911425px;}
.y21{bottom:738.286425px;}
.y4a{bottom:740.536425px;}
.ya9{bottom:746.536425px;}
.y76{bottom:749.161425px;}
.y49{bottom:757.786425px;}
.y26{bottom:758.536425px;}
.ya8{bottom:762.286425px;}
.y75{bottom:766.411425px;}
.y25{bottom:773.536425px;}
.y48{bottom:775.036425px;}
.ya7{bottom:778.036425px;}
.y20{bottom:783.286425px;}
.y74{bottom:783.661425px;}
.y47{bottom:792.286425px;}
.ya6{bottom:793.786425px;}
.y24{bottom:794.536425px;}
.y1f{bottom:807.286425px;}
.y23{bottom:809.536425px;}
.y1e{bottom:858.286425px;}
.h5{height:51.216000px;}
.h4{height:57.618000px;}
.h2{height:60.819000px;}
.h3{height:61.788000px;}
.ha{height:64.020000px;}
.hb{height:65.040000px;}
.h8{height:70.422000px;}
.h9{height:71.544000px;}
.h7{height:76.824000px;}
.h6{height:102.432000px;}
.h1{height:909.750000px;}
.h0{height:910.086615px;}
.w1{width:594.750000px;}
.w0{width:594.862200px;}
.x0{left:0.000000px;}
.x1{left:50.868600px;}
.x4{left:65.667600px;}
.x3{left:73.469100px;}
.x2{left:410.868600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005333pt;}
.ls2{letter-spacing:0.010667pt;}
.ls7{letter-spacing:0.085333pt;}
.ls3{letter-spacing:1.328000pt;}
.ls5{letter-spacing:1.333333pt;}
.ls4{letter-spacing:1.338667pt;}
.ls1{letter-spacing:1.349333pt;}
.ws24{word-spacing:-16.176000pt;}
.ws84{word-spacing:-16.010667pt;}
.ws63{word-spacing:-15.920000pt;}
.wsb3{word-spacing:-15.904000pt;}
.ws26{word-spacing:-15.802667pt;}
.ws78{word-spacing:-15.749333pt;}
.wsba{word-spacing:-15.722667pt;}
.ws86{word-spacing:-15.701333pt;}
.ws5a{word-spacing:-15.632000pt;}
.wsb{word-spacing:-15.562667pt;}
.ws40{word-spacing:-15.541333pt;}
.ws31{word-spacing:-15.520000pt;}
.ws7b{word-spacing:-15.514667pt;}
.ws7e{word-spacing:-15.509333pt;}
.wsbb{word-spacing:-15.488000pt;}
.wsa3{word-spacing:-15.440000pt;}
.ws69{word-spacing:-15.402667pt;}
.ws5e{word-spacing:-15.397333pt;}
.wsae{word-spacing:-15.392000pt;}
.wsb0{word-spacing:-15.381333pt;}
.wsd{word-spacing:-15.370667pt;}
.ws9b{word-spacing:-15.349333pt;}
.ws51{word-spacing:-15.333333pt;}
.ws46{word-spacing:-15.317333pt;}
.wsa5{word-spacing:-15.306667pt;}
.ws49{word-spacing:-15.264000pt;}
.ws1b{word-spacing:-15.258667pt;}
.ws2e{word-spacing:-15.237333pt;}
.ws9a{word-spacing:-15.221333pt;}
.wsb4{word-spacing:-15.205333pt;}
.wsad{word-spacing:-15.189333pt;}
.ws83{word-spacing:-15.184000pt;}
.wsc{word-spacing:-15.152000pt;}
.ws14{word-spacing:-15.130667pt;}
.wsbd{word-spacing:-15.120000pt;}
.ws50{word-spacing:-15.061333pt;}
.wsa9{word-spacing:-15.056000pt;}
.wsb7{word-spacing:-15.050667pt;}
.wsb6{word-spacing:-15.040000pt;}
.ws9d{word-spacing:-15.008000pt;}
.ws52{word-spacing:-15.002667pt;}
.wsbe{word-spacing:-14.992000pt;}
.ws8a{word-spacing:-14.981333pt;}
.ws1f{word-spacing:-14.976000pt;}
.ws71{word-spacing:-14.970667pt;}
.ws4b{word-spacing:-14.960000pt;}
.ws10{word-spacing:-14.954667pt;}
.wsc3{word-spacing:-14.944000pt;}
.ws66{word-spacing:-14.928000pt;}
.ws53{word-spacing:-14.917333pt;}
.ws4d{word-spacing:-14.906667pt;}
.ws25{word-spacing:-14.869333pt;}
.ws16{word-spacing:-14.864000pt;}
.ws5c{word-spacing:-14.837333pt;}
.ws30{word-spacing:-14.826667pt;}
.ws5d{word-spacing:-14.810667pt;}
.ws9e{word-spacing:-14.784000pt;}
.wsa1{word-spacing:-14.778667pt;}
.wsa4{word-spacing:-14.773333pt;}
.ws5b{word-spacing:-14.768000pt;}
.wsaf{word-spacing:-14.757333pt;}
.ws99{word-spacing:-14.741333pt;}
.wsf{word-spacing:-14.736000pt;}
.ws4c{word-spacing:-14.730667pt;}
.ws7f{word-spacing:-14.725333pt;}
.ws77{word-spacing:-14.714667pt;}
.ws55{word-spacing:-14.704000pt;}
.ws8b{word-spacing:-14.693333pt;}
.wsb1{word-spacing:-14.688000pt;}
.ws7{word-spacing:-14.666667pt;}
.ws3f{word-spacing:-14.656000pt;}
.ws60{word-spacing:-14.645333pt;}
.ws2f{word-spacing:-14.640000pt;}
.ws21{word-spacing:-14.634667pt;}
.ws95{word-spacing:-14.629333pt;}
.ws74{word-spacing:-14.624000pt;}
.ws11{word-spacing:-14.618667pt;}
.ws34{word-spacing:-14.602667pt;}
.ws97{word-spacing:-14.597333pt;}
.ws58{word-spacing:-14.586667pt;}
.ws6a{word-spacing:-14.576000pt;}
.ws2d{word-spacing:-14.560000pt;}
.wsa0{word-spacing:-14.554667pt;}
.ws3d{word-spacing:-14.549333pt;}
.ws88{word-spacing:-14.533333pt;}
.ws42{word-spacing:-14.528000pt;}
.ws73{word-spacing:-14.522667pt;}
.ws87{word-spacing:-14.517333pt;}
.ws22{word-spacing:-14.512000pt;}
.ws41{word-spacing:-14.496000pt;}
.ws35{word-spacing:-14.485333pt;}
.ws82{word-spacing:-14.480000pt;}
.ws3b{word-spacing:-14.464000pt;}
.ws6c{word-spacing:-14.437333pt;}
.ws13{word-spacing:-14.426667pt;}
.ws8f{word-spacing:-14.400000pt;}
.wsc4{word-spacing:-14.389333pt;}
.wsac{word-spacing:-14.384000pt;}
.ws1d{word-spacing:-14.373333pt;}
.ws39{word-spacing:-14.368000pt;}
.ws7c{word-spacing:-14.357333pt;}
.ws81{word-spacing:-14.346667pt;}
.ws29{word-spacing:-14.341333pt;}
.ws17{word-spacing:-14.336000pt;}
.ws7a{word-spacing:-14.330667pt;}
.ws75{word-spacing:-14.314667pt;}
.ws18{word-spacing:-14.245333pt;}
.ws6f{word-spacing:-14.240000pt;}
.ws4f{word-spacing:-14.234667pt;}
.ws70{word-spacing:-14.229333pt;}
.ws3c{word-spacing:-14.208000pt;}
.ws15{word-spacing:-14.202667pt;}
.wsbc{word-spacing:-14.186667pt;}
.ws43{word-spacing:-14.138667pt;}
.ws2a{word-spacing:-14.133333pt;}
.ws37{word-spacing:-14.117333pt;}
.ws61{word-spacing:-14.074667pt;}
.ws36{word-spacing:-14.069333pt;}
.ws45{word-spacing:-14.064000pt;}
.ws93{word-spacing:-14.058667pt;}
.wsb8{word-spacing:-14.042667pt;}
.ws64{word-spacing:-13.989333pt;}
.wscd{word-spacing:-13.973333pt;}
.ws4e{word-spacing:-13.952000pt;}
.ws1e{word-spacing:-13.941333pt;}
.ws3e{word-spacing:-13.936000pt;}
.wsb9{word-spacing:-13.930667pt;}
.wsc0{word-spacing:-13.893333pt;}
.ws98{word-spacing:-13.861333pt;}
.ws72{word-spacing:-13.856000pt;}
.ws27{word-spacing:-13.813333pt;}
.ws2b{word-spacing:-13.786667pt;}
.ws59{word-spacing:-13.754667pt;}
.ws2c{word-spacing:-13.637333pt;}
.ws33{word-spacing:-13.610667pt;}
.ws32{word-spacing:-13.600000pt;}
.ws6e{word-spacing:-13.546667pt;}
.ws1c{word-spacing:-13.509333pt;}
.wsa8{word-spacing:-13.434667pt;}
.ws28{word-spacing:-13.370667pt;}
.wsc1{word-spacing:-13.333333pt;}
.ws7d{word-spacing:-13.237333pt;}
.ws48{word-spacing:-13.200000pt;}
.ws38{word-spacing:-13.109333pt;}
.wsbf{word-spacing:-13.034667pt;}
.ws3a{word-spacing:-12.906667pt;}
.wsd4{word-spacing:-12.688000pt;}
.ws0{word-spacing:-12.666667pt;}
.ws6{word-spacing:-12.400000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws8c{word-spacing:-11.000000pt;}
.wsc8{word-spacing:-10.760000pt;}
.ws90{word-spacing:-10.736000pt;}
.wscc{word-spacing:-10.644000pt;}
.wsc6{word-spacing:-10.576000pt;}
.wsce{word-spacing:-10.372000pt;}
.wscb{word-spacing:-10.248000pt;}
.wsca{word-spacing:-10.200000pt;}
.wsc9{word-spacing:-10.192000pt;}
.wsc5{word-spacing:-10.064000pt;}
.wsc2{word-spacing:-10.000000pt;}
.wsd1{word-spacing:-9.692000pt;}
.wsd3{word-spacing:-9.356000pt;}
.wsd2{word-spacing:-9.316000pt;}
.wsd0{word-spacing:-9.300000pt;}
.wsc7{word-spacing:-9.104000pt;}
.ws3{word-spacing:-9.000000pt;}
.wsb5{word-spacing:-1.397333pt;}
.ws8d{word-spacing:-0.890667pt;}
.ws1a{word-spacing:-0.869333pt;}
.ws19{word-spacing:-0.693333pt;}
.ws62{word-spacing:-0.682667pt;}
.ws92{word-spacing:-0.656000pt;}
.ws23{word-spacing:-0.645333pt;}
.ws96{word-spacing:-0.634667pt;}
.ws91{word-spacing:-0.629333pt;}
.wse{word-spacing:-0.618667pt;}
.ws68{word-spacing:-0.581333pt;}
.ws65{word-spacing:-0.565333pt;}
.wsb2{word-spacing:-0.554667pt;}
.ws76{word-spacing:-0.442667pt;}
.ws4{word-spacing:0.000000pt;}
.ws67{word-spacing:0.490667pt;}
.ws89{word-spacing:0.496000pt;}
.ws9c{word-spacing:0.522667pt;}
.ws8e{word-spacing:0.565333pt;}
.ws47{word-spacing:0.586667pt;}
.ws9{word-spacing:0.602667pt;}
.ws80{word-spacing:0.608000pt;}
.ws94{word-spacing:0.672000pt;}
.ws56{word-spacing:0.682667pt;}
.ws6b{word-spacing:0.698667pt;}
.ws6d{word-spacing:0.704000pt;}
.ws57{word-spacing:0.709333pt;}
.wsa2{word-spacing:0.720000pt;}
.ws85{word-spacing:0.725333pt;}
.wsa7{word-spacing:0.752000pt;}
.wsaa{word-spacing:0.778667pt;}
.ws9f{word-spacing:0.784000pt;}
.wsab{word-spacing:0.837333pt;}
.ws4a{word-spacing:0.885333pt;}
.ws44{word-spacing:0.890667pt;}
.ws5{word-spacing:0.901333pt;}
.wsa6{word-spacing:0.997333pt;}
.ws54{word-spacing:1.013333pt;}
.ws20{word-spacing:1.050667pt;}
.wsa{word-spacing:1.088000pt;}
.ws79{word-spacing:1.274667pt;}
.ws5f{word-spacing:1.301333pt;}
.ws12{word-spacing:1.402667pt;}
.ws1{word-spacing:2.726667pt;}
.wscf{word-spacing:4.746667pt;}
.ws8{word-spacing:31.738667pt;}
._13{margin-left:-9.328000pt;}
._c{margin-left:-7.930667pt;}
._d{margin-left:-6.408000pt;}
._6{margin-left:-5.413333pt;}
._7{margin-left:-4.501333pt;}
._9{margin-left:-3.600000pt;}
._5{margin-left:-2.688000pt;}
._1{margin-left:-1.317333pt;}
._0{width:1.317333pt;}
._2{width:2.685333pt;}
._e{width:4.640000pt;}
._10{width:6.048000pt;}
._16{width:11.733333pt;}
._11{width:12.656000pt;}
._14{width:14.896000pt;}
._12{width:16.176000pt;}
._f{width:17.333333pt;}
._17{width:18.922667pt;}
._15{width:20.800000pt;}
._b{width:41.226667pt;}
._4{width:42.560000pt;}
._3{width:61.344000pt;}
._a{width:406.202667pt;}
._8{width:1107.893333pt;}
.fs2{font-size:36.000000pt;}
.fs9{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:42.587933pt;}
.y9a{bottom:43.921267pt;}
.y70{bottom:44.921267pt;}
.ya5{bottom:45.587933pt;}
.y46{bottom:56.254600pt;}
.y99{bottom:59.254600pt;}
.ya4{bottom:59.587933pt;}
.y6f{bottom:60.254600pt;}
.y45{bottom:71.587933pt;}
.ya3{bottom:73.587933pt;}
.y98{bottom:74.587933pt;}
.y6e{bottom:75.587933pt;}
.y1c{bottom:77.587933pt;}
.y44{bottom:86.921267pt;}
.ya2{bottom:87.587933pt;}
.y97{bottom:89.921267pt;}
.y1b{bottom:90.921267pt;}
.ya1{bottom:101.587933pt;}
.y43{bottom:102.254600pt;}
.y1a{bottom:104.254600pt;}
.y6d{bottom:106.254600pt;}
.y96{bottom:112.921267pt;}
.ya0{bottom:115.587933pt;}
.y19{bottom:117.587933pt;}
.y6c{bottom:121.587933pt;}
.y71{bottom:129.254600pt;}
.y9f{bottom:129.587933pt;}
.y18{bottom:130.921267pt;}
.y42{bottom:132.921267pt;}
.y6b{bottom:136.921267pt;}
.y9e{bottom:143.587933pt;}
.y17{bottom:144.254600pt;}
.y41{bottom:148.254600pt;}
.y6a{bottom:152.254600pt;}
.y16{bottom:157.587933pt;}
.y95{bottom:159.921267pt;}
.y40{bottom:163.587933pt;}
.y69{bottom:167.587933pt;}
.y15{bottom:170.921267pt;}
.y9d{bottom:171.587933pt;}
.y94{bottom:175.254600pt;}
.y3f{bottom:178.921267pt;}
.y68{bottom:182.921267pt;}
.y14{bottom:184.254600pt;}
.y9c{bottom:185.587933pt;}
.y93{bottom:190.587933pt;}
.y13{bottom:197.587933pt;}
.y67{bottom:198.254600pt;}
.y9b{bottom:199.587933pt;}
.y3e{bottom:201.921267pt;}
.y92{bottom:205.921267pt;}
.y12{bottom:210.921267pt;}
.y66{bottom:213.587933pt;}
.y91{bottom:221.254600pt;}
.y65{bottom:228.921267pt;}
.y90{bottom:236.587933pt;}
.y11{bottom:237.587933pt;}
.y3d{bottom:240.254600pt;}
.y64{bottom:244.254600pt;}
.y8f{bottom:251.921267pt;}
.y3c{bottom:255.587933pt;}
.y63{bottom:259.587933pt;}
.y8e{bottom:267.254600pt;}
.y10{bottom:269.587933pt;}
.y3b{bottom:270.921267pt;}
.y62{bottom:274.921267pt;}
.y8d{bottom:282.587933pt;}
.yf{bottom:282.921267pt;}
.y3a{bottom:286.254600pt;}
.y61{bottom:290.254600pt;}
.y8c{bottom:297.921267pt;}
.ye{bottom:301.587933pt;}
.y60{bottom:305.587933pt;}
.y8b{bottom:313.254600pt;}
.yd{bottom:314.921267pt;}
.y39{bottom:316.921267pt;}
.y5f{bottom:320.921267pt;}
.yc{bottom:328.254600pt;}
.y8a{bottom:328.587933pt;}
.y38{bottom:332.254600pt;}
.y5e{bottom:336.254600pt;}
.yb{bottom:341.587933pt;}
.y89{bottom:343.921267pt;}
.y37{bottom:347.587933pt;}
.y5d{bottom:351.587933pt;}
.ya{bottom:354.921267pt;}
.y88{bottom:359.254600pt;}
.y36{bottom:362.921267pt;}
.y5c{bottom:366.921267pt;}
.y9{bottom:368.254600pt;}
.y87{bottom:374.587933pt;}
.y35{bottom:378.254600pt;}
.y8{bottom:381.587933pt;}
.y5b{bottom:382.254600pt;}
.y73{bottom:389.921267pt;}
.y7{bottom:394.921267pt;}
.y5a{bottom:397.587933pt;}
.y86{bottom:405.254600pt;}
.y6{bottom:408.254600pt;}
.yba{bottom:411.587933pt;}
.y59{bottom:412.921267pt;}
.y85{bottom:420.587933pt;}
.y5{bottom:421.587933pt;}
.yb9{bottom:425.587933pt;}
.y58{bottom:428.254600pt;}
.y4{bottom:434.921267pt;}
.y84{bottom:435.921267pt;}
.yb8{bottom:439.587933pt;}
.y57{bottom:443.587933pt;}
.y3{bottom:448.254600pt;}
.y34{bottom:450.254600pt;}
.y83{bottom:451.254600pt;}
.yb7{bottom:453.587933pt;}
.y56{bottom:458.921267pt;}
.y2{bottom:461.587933pt;}
.y33{bottom:463.587933pt;}
.y82{bottom:466.587933pt;}
.yb6{bottom:467.587933pt;}
.y55{bottom:474.254600pt;}
.yb5{bottom:481.587933pt;}
.y81{bottom:481.921267pt;}
.y32{bottom:482.254600pt;}
.y1{bottom:488.254600pt;}
.y54{bottom:489.587933pt;}
.y31{bottom:495.587933pt;}
.y80{bottom:497.254600pt;}
.y53{bottom:504.921267pt;}
.y30{bottom:508.921267pt;}
.yb4{bottom:509.587933pt;}
.y7f{bottom:512.587933pt;}
.y52{bottom:520.254600pt;}
.y2f{bottom:522.254600pt;}
.yb3{bottom:523.587933pt;}
.y72{bottom:527.921267pt;}
.y2e{bottom:535.587933pt;}
.yb2{bottom:537.587933pt;}
.y7e{bottom:543.254600pt;}
.y2d{bottom:548.921267pt;}
.y51{bottom:550.921267pt;}
.yb1{bottom:551.587933pt;}
.y7d{bottom:558.587933pt;}
.y2c{bottom:562.254600pt;}
.yb0{bottom:565.587933pt;}
.y50{bottom:566.254600pt;}
.y7c{bottom:573.921267pt;}
.y2b{bottom:575.587933pt;}
.yaf{bottom:579.587933pt;}
.y4f{bottom:581.587933pt;}
.y2a{bottom:588.921267pt;}
.y7b{bottom:589.254600pt;}
.yae{bottom:593.587933pt;}
.y4e{bottom:596.921267pt;}
.y29{bottom:602.254600pt;}
.y7a{bottom:604.587933pt;}
.yad{bottom:607.587933pt;}
.y4d{bottom:612.254600pt;}
.y28{bottom:615.587933pt;}
.y79{bottom:619.921267pt;}
.yac{bottom:621.587933pt;}
.y4c{bottom:627.587933pt;}
.y78{bottom:635.254600pt;}
.yab{bottom:635.587933pt;}
.y22{bottom:640.254600pt;}
.y27{bottom:642.254600pt;}
.y4b{bottom:642.921267pt;}
.yaa{bottom:649.587933pt;}
.y77{bottom:650.587933pt;}
.y21{bottom:656.254600pt;}
.y4a{bottom:658.254600pt;}
.ya9{bottom:663.587933pt;}
.y76{bottom:665.921267pt;}
.y49{bottom:673.587933pt;}
.y26{bottom:674.254600pt;}
.ya8{bottom:677.587933pt;}
.y75{bottom:681.254600pt;}
.y25{bottom:687.587933pt;}
.y48{bottom:688.921267pt;}
.ya7{bottom:691.587933pt;}
.y20{bottom:696.254600pt;}
.y74{bottom:696.587933pt;}
.y47{bottom:704.254600pt;}
.ya6{bottom:705.587933pt;}
.y24{bottom:706.254600pt;}
.y1f{bottom:717.587933pt;}
.y23{bottom:719.587933pt;}
.y1e{bottom:762.921267pt;}
.h5{height:45.525333pt;}
.h4{height:51.216000pt;}
.h2{height:54.061333pt;}
.h3{height:54.922667pt;}
.ha{height:56.906667pt;}
.hb{height:57.813333pt;}
.h8{height:62.597333pt;}
.h9{height:63.594667pt;}
.h7{height:68.288000pt;}
.h6{height:91.050667pt;}
.h1{height:808.666667pt;}
.h0{height:808.965880pt;}
.w1{width:528.666667pt;}
.w0{width:528.766400pt;}
.x0{left:0.000000pt;}
.x1{left:45.216533pt;}
.x4{left:58.371200pt;}
.x3{left:65.305867pt;}
.x2{left:365.216533pt;}
}




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