
    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_a3be96831f7cef76665d7e1d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_05af889f855d4c4b08c78f27.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c0ade1ba7e5d47f667aaaebd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1b17039598a103ed2b9b3958.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946289;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_fb915d79dfba5e947f7a9d9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_26f231164bab9944988c82a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_6366965913bda4e70dc7c183.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9a63d33239216f4078cc82d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_2631ed0e32fe503a4680c463.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_42cd89158b6304e8c0399b51.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7eb03a1c5783958f8b200805.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-97.920000px;}
.v3{vertical-align:-83.520000px;}
.v2{vertical-align:-82.080000px;}
.v6{vertical-align:-27.360000px;}
.v4{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.360000px;}
.lsf{letter-spacing:-2.736000px;}
.lsa{letter-spacing:-1.728000px;}
.ls17{letter-spacing:-1.584000px;}
.ls5{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.296000px;}
.ls19{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.001800px;}
.ls12{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.ls1a{letter-spacing:1.152000px;}
.ls6{letter-spacing:1.260000px;}
.lse{letter-spacing:1.440000px;}
.ls13{letter-spacing:1.584000px;}
.ls1b{letter-spacing:2.160000px;}
.lsd{letter-spacing:2.880000px;}
.ls14{letter-spacing:3.600000px;}
.ls1{letter-spacing:9.360000px;}
.ls15{letter-spacing:18.000000px;}
.ls0{letter-spacing:46.800000px;}
.ls2{letter-spacing:237.036000px;}
.ls11{letter-spacing:450.156000px;}
.lsb{letter-spacing:2804.856000px;}
.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;}
}
.ws2{word-spacing:-22.140000px;}
.ws9{word-spacing:-20.880000px;}
.wsf{word-spacing:-19.584000px;}
.ws1{word-spacing:-19.440000px;}
.ws15{word-spacing:-19.152000px;}
.ws5{word-spacing:-18.504000px;}
.ws12{word-spacing:-18.288000px;}
.wse{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws3{word-spacing:-17.496000px;}
.ws14{word-spacing:-17.064000px;}
.wsc{word-spacing:-16.704000px;}
.ws4{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.416000px;}
.ws7{word-spacing:-16.272000px;}
.wsb{word-spacing:-15.264000px;}
.wsa{word-spacing:-12.600000px;}
.wsd{word-spacing:-11.880000px;}
.ws0{word-spacing:-11.160000px;}
.ws8{word-spacing:0.000000px;}
.ws13{word-spacing:1.560000px;}
._18{margin-left:-5.123040px;}
._3{margin-left:-3.402240px;}
._1{margin-left:-1.520640px;}
._0{width:1.520640px;}
._2{width:2.742240px;}
._c{width:4.008000px;}
._f{width:5.199840px;}
._6{width:6.480000px;}
._12{width:7.802400px;}
._10{width:9.072000px;}
._11{width:10.281120px;}
._7{width:11.715360px;}
._17{width:12.765600px;}
._9{width:13.976640px;}
._a{width:15.123360px;}
._b{width:16.508640px;}
._16{width:19.456320px;}
._19{width:20.520000px;}
._15{width:21.681600px;}
._e{width:22.986240px;}
._d{width:24.272640px;}
._13{width:26.199360px;}
._14{width:28.421280px;}
._1d{width:29.503200px;}
._1b{width:30.652800px;}
._1e{width:31.719840px;}
._1a{width:32.985600px;}
._1c{width:34.904640px;}
._4{width:73.760640px;}
._5{width:281.712000px;}
._8{width:888.260640px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs5{font-size:11.520000px;}
.fs6{font-size:21.600000px;}
.fs0{font-size:47.520000px;}
.fs1{font-size:60.480000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.960000px;}
.y4{bottom:4.680000px;}
.y11{bottom:16.920000px;}
.y1{bottom:38.880000px;}
.yc{bottom:41.790000px;}
.y7e{bottom:42.105000px;}
.y10{bottom:61.200000px;}
.yb{bottom:65.910000px;}
.yc0{bottom:66.600000px;}
.y7f{bottom:88.731000px;}
.ya{bottom:89.670000px;}
.ybf{bottom:90.396000px;}
.ye{bottom:97.590000px;}
.y7{bottom:107.670000px;}
.y9{bottom:112.710000px;}
.ybe{bottom:114.516000px;}
.y99{bottom:126.396000px;}
.y2d{bottom:127.476000px;}
.y58{bottom:131.076000px;}
.y7b{bottom:131.436000px;}
.ybd{bottom:138.276000px;}
.y6d{bottom:142.236000px;}
.y98{bottom:150.510000px;}
.y2c{bottom:151.230000px;}
.y57{bottom:155.190000px;}
.ybc{bottom:162.030000px;}
.y6c{bottom:165.990000px;}
.y97{bottom:174.630000px;}
.y2b{bottom:174.990000px;}
.y7a{bottom:176.070000px;}
.y56{bottom:178.950000px;}
.ybb{bottom:185.790000px;}
.y6b{bottom:189.750000px;}
.y8{bottom:190.155000px;}
.y6{bottom:196.635000px;}
.yd{bottom:196.995000px;}
.y96{bottom:198.435000px;}
.y2a{bottom:198.795000px;}
.yba{bottom:209.595000px;}
.y55{bottom:211.395000px;}
.y6a{bottom:213.555000px;}
.y95{bottom:222.195000px;}
.y54{bottom:231.915000px;}
.yb9{bottom:233.355000px;}
.y69{bottom:237.315000px;}
.y29{bottom:243.075000px;}
.y94{bottom:245.595000px;}
.yb8{bottom:257.115000px;}
.y68{bottom:261.075000px;}
.y28{bottom:270.435000px;}
.yb7{bottom:280.875000px;}
.y53{bottom:281.235000px;}
.y93{bottom:293.835000px;}
.yb6{bottom:304.995000px;}
.y67{bottom:305.715000px;}
.y52{bottom:308.595000px;}
.y27{bottom:314.715000px;}
.y92{bottom:317.595000px;}
.yb5{bottom:328.785000px;}
.y51{bottom:332.385000px;}
.y91{bottom:341.385000px;}
.y26{bottom:341.745000px;}
.yb4{bottom:352.545000px;}
.y50{bottom:356.145000px;}
.y90{bottom:365.145000px;}
.y25{bottom:365.865000px;}
.yb3{bottom:376.305000px;}
.y66{bottom:379.905000px;}
.y4f{bottom:380.265000px;}
.y8f{bottom:388.905000px;}
.y24{bottom:389.625000px;}
.yb2{bottom:400.065000px;}
.y65{bottom:403.665000px;}
.y4e{bottom:404.025000px;}
.y8e{bottom:413.025000px;}
.y23{bottom:413.385000px;}
.yb1{bottom:423.825000px;}
.y64{bottom:427.425000px;}
.y4d{bottom:427.785000px;}
.y8d{bottom:436.785000px;}
.y22{bottom:437.145000px;}
.yb0{bottom:447.630000px;}
.y63{bottom:451.230000px;}
.y4c{bottom:451.590000px;}
.y8c{bottom:460.590000px;}
.y21{bottom:460.950000px;}
.yaf{bottom:471.390000px;}
.y62{bottom:474.990000px;}
.y4b{bottom:475.350000px;}
.y8b{bottom:484.350000px;}
.y20{bottom:484.710000px;}
.yae{bottom:495.150000px;}
.y4a{bottom:499.110000px;}
.y8a{bottom:508.110000px;}
.y1f{bottom:508.470000px;}
.yad{bottom:519.270000px;}
.y61{bottom:522.510000px;}
.y49{bottom:522.870000px;}
.y89{bottom:531.870000px;}
.y1e{bottom:532.230000px;}
.yac{bottom:543.030000px;}
.y48{bottom:546.630000px;}
.y88{bottom:555.630000px;}
.y1d{bottom:556.350000px;}
.y79{bottom:562.110000px;}
.yab{bottom:566.790000px;}
.y47{bottom:570.390000px;}
.y60{bottom:570.750000px;}
.y87{bottom:579.420000px;}
.y1c{bottom:580.140000px;}
.y78{bottom:586.260000px;}
.yaa{bottom:590.580000px;}
.y7d{bottom:593.820000px;}
.y46{bottom:594.540000px;}
.y86{bottom:603.180000px;}
.y1b{bottom:603.900000px;}
.y77{bottom:610.380000px;}
.ya9{bottom:614.340000px;}
.y45{bottom:618.300000px;}
.y85{bottom:627.300000px;}
.y1a{bottom:627.660000px;}
.y76{bottom:634.140000px;}
.ya8{bottom:638.100000px;}
.y44{bottom:642.060000px;}
.y19{bottom:651.420000px;}
.y75{bottom:657.900000px;}
.ya7{bottom:661.860000px;}
.y43{bottom:665.820000px;}
.y84{bottom:674.820000px;}
.y18{bottom:675.180000px;}
.y74{bottom:682.020000px;}
.ya6{bottom:685.620000px;}
.y5f{bottom:686.700000px;}
.y42{bottom:689.580000px;}
.y7c{bottom:689.940000px;}
.y83{bottom:698.580000px;}
.y17{bottom:698.970000px;}
.y73{bottom:705.810000px;}
.ya5{bottom:710.130000px;}
.y41{bottom:713.370000px;}
.y5e{bottom:713.730000px;}
.y82{bottom:722.730000px;}
.y16{bottom:723.090000px;}
.y72{bottom:729.570000px;}
.ya4{bottom:733.890000px;}
.y40{bottom:737.490000px;}
.y81{bottom:746.130000px;}
.y15{bottom:746.850000px;}
.ya3{bottom:757.650000px;}
.y71{bottom:760.170000px;}
.y3f{bottom:761.250000px;}
.y80{bottom:770.250000px;}
.y14{bottom:770.610000px;}
.y70{bottom:777.090000px;}
.ya2{bottom:781.050000px;}
.y3e{bottom:785.010000px;}
.y13{bottom:794.010000px;}
.ya1{bottom:805.170000px;}
.y3d{bottom:808.410000px;}
.y5d{bottom:808.770000px;}
.y12{bottom:817.410000px;}
.y6f{bottom:821.730000px;}
.ya0{bottom:829.335000px;}
.y5c{bottom:832.575000px;}
.yf{bottom:852.735000px;}
.y9f{bottom:853.455000px;}
.y5b{bottom:856.335000px;}
.y3c{bottom:880.095000px;}
.y3b{bottom:903.855000px;}
.y5a{bottom:904.215000px;}
.y9e{bottom:927.255000px;}
.y3a{bottom:927.615000px;}
.y59{bottom:927.975000px;}
.y5{bottom:946.335000px;}
.y39{bottom:951.765000px;}
.y38{bottom:975.525000px;}
.y9d{bottom:995.685000px;}
.y37{bottom:999.285000px;}
.y36{bottom:1023.045000px;}
.y9c{bottom:1046.805000px;}
.y35{bottom:1047.165000px;}
.y9b{bottom:1070.565000px;}
.y34{bottom:1070.925000px;}
.y9a{bottom:1094.370000px;}
.y33{bottom:1094.730000px;}
.y32{bottom:1118.490000px;}
.y31{bottom:1142.250000px;}
.y3{bottom:1159.170000px;}
.y6e{bottom:1159.890000px;}
.y30{bottom:1167.090000px;}
.y2e{bottom:1207.440000px;}
.y2f{bottom:1223.280000px;}
.h6{height:5.653125px;}
.h5{height:6.120000px;}
.hd{height:11.306250px;}
.h2{height:16.200000px;}
.hf{height:21.199219px;}
.h3{height:46.615078px;}
.h10{height:46.638281px;}
.h12{height:49.992188px;}
.h4{height:59.357813px;}
.ha{height:70.628906px;}
.hc{height:70.664062px;}
.h9{height:72.562500px;}
.he{height:73.998281px;}
.h11{height:74.178281px;}
.h8{height:81.970312px;}
.hb{height:93.600000px;}
.h7{height:212.835000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:28.440000px;}
.w9{width:78.120000px;}
.w7{width:89.316000px;}
.w5{width:126.432000px;}
.w2{width:364.470000px;}
.w6{width:481.860000px;}
.w8{width:697.605000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x4{left:4.680000px;}
.xf{left:6.840000px;}
.xc{left:15.120000px;}
.xb{left:27.000000px;}
.xe{left:82.845000px;}
.x5{left:95.795987px;}
.x6{left:97.596000px;}
.x11{left:106.235987px;}
.x9{left:110.919000px;}
.xa{left:156.645000px;}
.x10{left:159.554987px;}
.xd{left:166.005000px;}
.x7{left:224.025000px;}
.x13{left:240.224987px;}
.x14{left:249.382500px;}
.x1{left:263.265000px;}
.x12{left:406.260000px;}
.x8{left:705.885000px;}
.x3{left:760.290000px;}
@media print{
.v1{vertical-align:-87.040000pt;}
.v3{vertical-align:-74.240000pt;}
.v2{vertical-align:-72.960000pt;}
.v6{vertical-align:-24.320000pt;}
.v4{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.320000pt;}
.lsf{letter-spacing:-2.432000pt;}
.lsa{letter-spacing:-1.536000pt;}
.ls17{letter-spacing:-1.408000pt;}
.ls5{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.152000pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.001600pt;}
.ls12{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:1.024000pt;}
.ls6{letter-spacing:1.120000pt;}
.lse{letter-spacing:1.280000pt;}
.ls13{letter-spacing:1.408000pt;}
.ls1b{letter-spacing:1.920000pt;}
.lsd{letter-spacing:2.560000pt;}
.ls14{letter-spacing:3.200000pt;}
.ls1{letter-spacing:8.320000pt;}
.ls15{letter-spacing:16.000000pt;}
.ls0{letter-spacing:41.600000pt;}
.ls2{letter-spacing:210.698667pt;}
.ls11{letter-spacing:400.138667pt;}
.lsb{letter-spacing:2493.205333pt;}
.ws2{word-spacing:-19.680000pt;}
.ws9{word-spacing:-18.560000pt;}
.wsf{word-spacing:-17.408000pt;}
.ws1{word-spacing:-17.280000pt;}
.ws15{word-spacing:-17.024000pt;}
.ws5{word-spacing:-16.448000pt;}
.ws12{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.552000pt;}
.ws14{word-spacing:-15.168000pt;}
.wsc{word-spacing:-14.848000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.592000pt;}
.ws7{word-spacing:-14.464000pt;}
.wsb{word-spacing:-13.568000pt;}
.wsa{word-spacing:-11.200000pt;}
.wsd{word-spacing:-10.560000pt;}
.ws0{word-spacing:-9.920000pt;}
.ws8{word-spacing:0.000000pt;}
.ws13{word-spacing:1.386667pt;}
._18{margin-left:-4.553813pt;}
._3{margin-left:-3.024213pt;}
._1{margin-left:-1.351680pt;}
._0{width:1.351680pt;}
._2{width:2.437547pt;}
._c{width:3.562667pt;}
._f{width:4.622080pt;}
._6{width:5.760000pt;}
._12{width:6.935467pt;}
._10{width:8.064000pt;}
._11{width:9.138773pt;}
._7{width:10.413653pt;}
._17{width:11.347200pt;}
._9{width:12.423680pt;}
._a{width:13.442987pt;}
._b{width:14.674347pt;}
._16{width:17.294507pt;}
._19{width:18.240000pt;}
._15{width:19.272533pt;}
._e{width:20.432213pt;}
._d{width:21.575680pt;}
._13{width:23.288320pt;}
._14{width:25.263360pt;}
._1d{width:26.225067pt;}
._1b{width:27.246933pt;}
._1e{width:28.195413pt;}
._1a{width:29.320533pt;}
._1c{width:31.026347pt;}
._4{width:65.565013pt;}
._5{width:250.410667pt;}
._8{width:789.565013pt;}
.fs2{font-size:5.120000pt;}
.fs5{font-size:10.240000pt;}
.fs6{font-size:19.200000pt;}
.fs0{font-size:42.240000pt;}
.fs1{font-size:53.760000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.520000pt;}
.y4{bottom:4.160000pt;}
.y11{bottom:15.040000pt;}
.y1{bottom:34.560000pt;}
.yc{bottom:37.146667pt;}
.y7e{bottom:37.426667pt;}
.y10{bottom:54.400000pt;}
.yb{bottom:58.586667pt;}
.yc0{bottom:59.200000pt;}
.y7f{bottom:78.872000pt;}
.ya{bottom:79.706667pt;}
.ybf{bottom:80.352000pt;}
.ye{bottom:86.746667pt;}
.y7{bottom:95.706667pt;}
.y9{bottom:100.186667pt;}
.ybe{bottom:101.792000pt;}
.y99{bottom:112.352000pt;}
.y2d{bottom:113.312000pt;}
.y58{bottom:116.512000pt;}
.y7b{bottom:116.832000pt;}
.ybd{bottom:122.912000pt;}
.y6d{bottom:126.432000pt;}
.y98{bottom:133.786667pt;}
.y2c{bottom:134.426667pt;}
.y57{bottom:137.946667pt;}
.ybc{bottom:144.026667pt;}
.y6c{bottom:147.546667pt;}
.y97{bottom:155.226667pt;}
.y2b{bottom:155.546667pt;}
.y7a{bottom:156.506667pt;}
.y56{bottom:159.066667pt;}
.ybb{bottom:165.146667pt;}
.y6b{bottom:168.666667pt;}
.y8{bottom:169.026667pt;}
.y6{bottom:174.786667pt;}
.yd{bottom:175.106667pt;}
.y96{bottom:176.386667pt;}
.y2a{bottom:176.706667pt;}
.yba{bottom:186.306667pt;}
.y55{bottom:187.906667pt;}
.y6a{bottom:189.826667pt;}
.y95{bottom:197.506667pt;}
.y54{bottom:206.146667pt;}
.yb9{bottom:207.426667pt;}
.y69{bottom:210.946667pt;}
.y29{bottom:216.066667pt;}
.y94{bottom:218.306667pt;}
.yb8{bottom:228.546667pt;}
.y68{bottom:232.066667pt;}
.y28{bottom:240.386667pt;}
.yb7{bottom:249.666667pt;}
.y53{bottom:249.986667pt;}
.y93{bottom:261.186667pt;}
.yb6{bottom:271.106667pt;}
.y67{bottom:271.746667pt;}
.y52{bottom:274.306667pt;}
.y27{bottom:279.746667pt;}
.y92{bottom:282.306667pt;}
.yb5{bottom:292.253333pt;}
.y51{bottom:295.453333pt;}
.y91{bottom:303.453333pt;}
.y26{bottom:303.773333pt;}
.yb4{bottom:313.373333pt;}
.y50{bottom:316.573333pt;}
.y90{bottom:324.573333pt;}
.y25{bottom:325.213333pt;}
.yb3{bottom:334.493333pt;}
.y66{bottom:337.693333pt;}
.y4f{bottom:338.013333pt;}
.y8f{bottom:345.693333pt;}
.y24{bottom:346.333333pt;}
.yb2{bottom:355.613333pt;}
.y65{bottom:358.813333pt;}
.y4e{bottom:359.133333pt;}
.y8e{bottom:367.133333pt;}
.y23{bottom:367.453333pt;}
.yb1{bottom:376.733333pt;}
.y64{bottom:379.933333pt;}
.y4d{bottom:380.253333pt;}
.y8d{bottom:388.253333pt;}
.y22{bottom:388.573333pt;}
.yb0{bottom:397.893333pt;}
.y63{bottom:401.093333pt;}
.y4c{bottom:401.413333pt;}
.y8c{bottom:409.413333pt;}
.y21{bottom:409.733333pt;}
.yaf{bottom:419.013333pt;}
.y62{bottom:422.213333pt;}
.y4b{bottom:422.533333pt;}
.y8b{bottom:430.533333pt;}
.y20{bottom:430.853333pt;}
.yae{bottom:440.133333pt;}
.y4a{bottom:443.653333pt;}
.y8a{bottom:451.653333pt;}
.y1f{bottom:451.973333pt;}
.yad{bottom:461.573333pt;}
.y61{bottom:464.453333pt;}
.y49{bottom:464.773333pt;}
.y89{bottom:472.773333pt;}
.y1e{bottom:473.093333pt;}
.yac{bottom:482.693333pt;}
.y48{bottom:485.893333pt;}
.y88{bottom:493.893333pt;}
.y1d{bottom:494.533333pt;}
.y79{bottom:499.653333pt;}
.yab{bottom:503.813333pt;}
.y47{bottom:507.013333pt;}
.y60{bottom:507.333333pt;}
.y87{bottom:515.040000pt;}
.y1c{bottom:515.680000pt;}
.y78{bottom:521.120000pt;}
.yaa{bottom:524.960000pt;}
.y7d{bottom:527.840000pt;}
.y46{bottom:528.480000pt;}
.y86{bottom:536.160000pt;}
.y1b{bottom:536.800000pt;}
.y77{bottom:542.560000pt;}
.ya9{bottom:546.080000pt;}
.y45{bottom:549.600000pt;}
.y85{bottom:557.600000pt;}
.y1a{bottom:557.920000pt;}
.y76{bottom:563.680000pt;}
.ya8{bottom:567.200000pt;}
.y44{bottom:570.720000pt;}
.y19{bottom:579.040000pt;}
.y75{bottom:584.800000pt;}
.ya7{bottom:588.320000pt;}
.y43{bottom:591.840000pt;}
.y84{bottom:599.840000pt;}
.y18{bottom:600.160000pt;}
.y74{bottom:606.240000pt;}
.ya6{bottom:609.440000pt;}
.y5f{bottom:610.400000pt;}
.y42{bottom:612.960000pt;}
.y7c{bottom:613.280000pt;}
.y83{bottom:620.960000pt;}
.y17{bottom:621.306667pt;}
.y73{bottom:627.386667pt;}
.ya5{bottom:631.226667pt;}
.y41{bottom:634.106667pt;}
.y5e{bottom:634.426667pt;}
.y82{bottom:642.426667pt;}
.y16{bottom:642.746667pt;}
.y72{bottom:648.506667pt;}
.ya4{bottom:652.346667pt;}
.y40{bottom:655.546667pt;}
.y81{bottom:663.226667pt;}
.y15{bottom:663.866667pt;}
.ya3{bottom:673.466667pt;}
.y71{bottom:675.706667pt;}
.y3f{bottom:676.666667pt;}
.y80{bottom:684.666667pt;}
.y14{bottom:684.986667pt;}
.y70{bottom:690.746667pt;}
.ya2{bottom:694.266667pt;}
.y3e{bottom:697.786667pt;}
.y13{bottom:705.786667pt;}
.ya1{bottom:715.706667pt;}
.y3d{bottom:718.586667pt;}
.y5d{bottom:718.906667pt;}
.y12{bottom:726.586667pt;}
.y6f{bottom:730.426667pt;}
.ya0{bottom:737.186667pt;}
.y5c{bottom:740.066667pt;}
.yf{bottom:757.986667pt;}
.y9f{bottom:758.626667pt;}
.y5b{bottom:761.186667pt;}
.y3c{bottom:782.306667pt;}
.y3b{bottom:803.426667pt;}
.y5a{bottom:803.746667pt;}
.y9e{bottom:824.226667pt;}
.y3a{bottom:824.546667pt;}
.y59{bottom:824.866667pt;}
.y5{bottom:841.186667pt;}
.y39{bottom:846.013333pt;}
.y38{bottom:867.133333pt;}
.y9d{bottom:885.053333pt;}
.y37{bottom:888.253333pt;}
.y36{bottom:909.373333pt;}
.y9c{bottom:930.493333pt;}
.y35{bottom:930.813333pt;}
.y9b{bottom:951.613333pt;}
.y34{bottom:951.933333pt;}
.y9a{bottom:972.773333pt;}
.y33{bottom:973.093333pt;}
.y32{bottom:994.213333pt;}
.y31{bottom:1015.333333pt;}
.y3{bottom:1030.373333pt;}
.y6e{bottom:1031.013333pt;}
.y30{bottom:1037.413333pt;}
.y2e{bottom:1073.280000pt;}
.y2f{bottom:1087.360000pt;}
.h6{height:5.025000pt;}
.h5{height:5.440000pt;}
.hd{height:10.050000pt;}
.h2{height:14.400000pt;}
.hf{height:18.843750pt;}
.h3{height:41.435625pt;}
.h10{height:41.456250pt;}
.h12{height:44.437500pt;}
.h4{height:52.762500pt;}
.ha{height:62.781250pt;}
.hc{height:62.812500pt;}
.h9{height:64.500000pt;}
.he{height:65.776250pt;}
.h11{height:65.936250pt;}
.h8{height:72.862500pt;}
.hb{height:83.200000pt;}
.h7{height:189.186667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:25.280000pt;}
.w9{width:69.440000pt;}
.w7{width:79.392000pt;}
.w5{width:112.384000pt;}
.w2{width:323.973333pt;}
.w6{width:428.320000pt;}
.w8{width:620.093333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x4{left:4.160000pt;}
.xf{left:6.080000pt;}
.xc{left:13.440000pt;}
.xb{left:24.000000pt;}
.xe{left:73.640000pt;}
.x5{left:85.151988pt;}
.x6{left:86.752000pt;}
.x11{left:94.431988pt;}
.x9{left:98.594667pt;}
.xa{left:139.240000pt;}
.x10{left:141.826655pt;}
.xd{left:147.560000pt;}
.x7{left:199.133333pt;}
.x13{left:213.533322pt;}
.x14{left:221.673333pt;}
.x1{left:234.013333pt;}
.x12{left:361.120000pt;}
.x8{left:627.453333pt;}
.x3{left:675.813333pt;}
}




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