
    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_0fcc18f883b88bfb413e1f4d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d4a623f94f56cfda72c63017.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_1bf1804698f01cb6a3f4c556.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.883301;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_ed9168b8c9f74ab287ecc3b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_9ecc3ccb80830bf5c20d6aea.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e57aeafc5b34365b5a5ed3dd.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_af07093013c0b2b812aa966a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_185185a46d50acee10fb1e11.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_b5fa11f98a571aba0488010c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.463800px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.792000px;}
.ls7{letter-spacing:17.424000px;}
.ls6{letter-spacing:53.424000px;}
.ls5{letter-spacing:136.944000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws1{word-spacing:-24.120000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-14.506440px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-3.542400px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._a{width:2.208960px;}
._3{width:3.219840px;}
._7{width:5.074560px;}
._9{width:6.408480px;}
._6{width:7.836000px;}
._15{width:8.840640px;}
._5{width:9.869280px;}
._c{width:10.941120px;}
._b{width:12.272160px;}
._14{width:13.654560px;}
._d{width:15.154560px;}
._4{width:16.750560px;}
._11{width:19.350720px;}
._12{width:20.465280px;}
._13{width:21.476160px;}
._16{width:22.680480px;}
._f{width:23.774400px;}
._e{width:24.966720px;}
._10{width:27.126720px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y67{bottom:105.516000px;}
.y55{bottom:105.876000px;}
.y33{bottom:123.516000px;}
.y93{bottom:132.876000px;}
.y32{bottom:147.636000px;}
.y72{bottom:147.996000px;}
.y92{bottom:156.630000px;}
.y31{bottom:171.390000px;}
.y71{bottom:171.750000px;}
.y91{bottom:180.390000px;}
.y30{bottom:195.195000px;}
.y90{bottom:204.195000px;}
.y70{bottom:214.995000px;}
.y2f{bottom:218.955000px;}
.y8f{bottom:227.595000px;}
.y2e{bottom:242.715000px;}
.y8e{bottom:251.715000px;}
.y2d{bottom:266.475000px;}
.y8d{bottom:275.475000px;}
.y2c{bottom:290.235000px;}
.y8c{bottom:299.595000px;}
.y2b{bottom:313.995000px;}
.y8b{bottom:323.385000px;}
.y2a{bottom:338.145000px;}
.y8a{bottom:347.145000px;}
.y29{bottom:361.905000px;}
.y89{bottom:370.905000px;}
.y66{bottom:376.305000px;}
.y28{bottom:385.665000px;}
.y54{bottom:393.225000px;}
.y88{bottom:394.665000px;}
.y65{bottom:400.065000px;}
.y27{bottom:409.425000px;}
.y53{bottom:417.345000px;}
.y87{bottom:418.425000px;}
.y64{bottom:423.825000px;}
.y26{bottom:433.185000px;}
.y52{bottom:441.105000px;}
.y86{bottom:442.185000px;}
.y63{bottom:447.630000px;}
.y25{bottom:456.990000px;}
.y51{bottom:464.910000px;}
.y85{bottom:465.990000px;}
.y62{bottom:471.390000px;}
.y24{bottom:480.750000px;}
.y50{bottom:488.670000px;}
.y84{bottom:490.110000px;}
.y61{bottom:495.150000px;}
.y23{bottom:504.510000px;}
.y4f{bottom:512.430000px;}
.y83{bottom:513.870000px;}
.y60{bottom:518.910000px;}
.y22{bottom:528.630000px;}
.y4e{bottom:536.550000px;}
.y82{bottom:537.630000px;}
.y5f{bottom:542.310000px;}
.y21{bottom:552.390000px;}
.y4d{bottom:560.310000px;}
.y81{bottom:561.390000px;}
.y5e{bottom:566.790000px;}
.y6f{bottom:571.830000px;}
.y20{bottom:576.180000px;}
.y4c{bottom:584.100000px;}
.y80{bottom:585.180000px;}
.y5d{bottom:590.580000px;}
.y6e{bottom:595.620000px;}
.y1f{bottom:599.940000px;}
.y4b{bottom:607.860000px;}
.y7f{bottom:608.940000px;}
.y5c{bottom:614.340000px;}
.y6d{bottom:619.740000px;}
.y1e{bottom:623.700000px;}
.y4a{bottom:631.620000px;}
.y7e{bottom:632.700000px;}
.y5b{bottom:638.100000px;}
.y6c{bottom:643.500000px;}
.y1d{bottom:647.460000px;}
.y49{bottom:655.380000px;}
.y7d{bottom:656.460000px;}
.y5a{bottom:661.860000px;}
.y6b{bottom:667.260000px;}
.y1c{bottom:671.220000px;}
.y48{bottom:679.140000px;}
.y7c{bottom:680.220000px;}
.y59{bottom:685.260000px;}
.y6a{bottom:691.020000px;}
.y1b{bottom:694.980000px;}
.y47{bottom:702.930000px;}
.y7b{bottom:704.370000px;}
.y58{bottom:705.450000px;}
.y69{bottom:714.450000px;}
.y1a{bottom:718.770000px;}
.y46{bottom:727.050000px;}
.y7a{bottom:728.130000px;}
.y68{bottom:734.250000px;}
.y19{bottom:742.890000px;}
.y45{bottom:750.810000px;}
.y79{bottom:751.890000px;}
.y18{bottom:766.650000px;}
.y44{bottom:774.570000px;}
.y78{bottom:775.650000px;}
.y17{bottom:790.410000px;}
.y43{bottom:798.330000px;}
.y77{bottom:799.410000px;}
.y16{bottom:813.810000px;}
.y42{bottom:822.090000px;}
.y76{bottom:823.170000px;}
.y15{bottom:837.615000px;}
.y41{bottom:845.895000px;}
.y75{bottom:846.975000px;}
.y14{bottom:861.735000px;}
.y40{bottom:869.655000px;}
.y74{bottom:870.375000px;}
.y13{bottom:885.495000px;}
.y73{bottom:890.175000px;}
.y3f{bottom:893.415000px;}
.y12{bottom:909.255000px;}
.y3e{bottom:917.175000px;}
.y11{bottom:933.375000px;}
.y3d{bottom:941.295000px;}
.y10{bottom:956.805000px;}
.y3c{bottom:965.085000px;}
.yf{bottom:980.565000px;}
.y3b{bottom:988.845000px;}
.ye{bottom:1004.685000px;}
.y3a{bottom:1012.605000px;}
.yd{bottom:1028.085000px;}
.y39{bottom:1036.365000px;}
.yc{bottom:1054.365000px;}
.y38{bottom:1059.765000px;}
.y57{bottom:1060.125000px;}
.y95{bottom:1083.570000px;}
.y37{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y94{bottom:1107.330000px;}
.y36{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y35{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y56{bottom:1155.210000px;}
.y34{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h5{height:27.000000px;}
.h7{height:50.229844px;}
.hb{height:50.273438px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.ha{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.hc{height:74.004654px;}
.h9{height:94.689844px;}
.h8{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w3{width:298.905000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x8{left:39.270000px;}
.x5{left:95.796000px;}
.xa{left:104.075987px;}
.xb{left:119.915987px;}
.x18{left:127.835987px;}
.x11{left:149.111987px;}
.xf{left:153.794987px;}
.x3{left:190.154987px;}
.x6{left:290.634000px;}
.x10{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.xc{left:351.869987px;}
.xe{left:370.229987px;}
.x7{left:394.710000px;}
.xd{left:446.579987px;}
.x9{left:498.780000px;}
.x16{left:510.659987px;}
.x14{left:590.969987px;}
.x13{left:607.529987px;}
.x12{left:632.054987px;}
.x15{left:634.934987px;}
.x17{left:765.644987px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.412267pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.704000pt;}
.ls7{letter-spacing:15.488000pt;}
.ls6{letter-spacing:47.488000pt;}
.ls5{letter-spacing:121.728000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-3.148800pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._a{width:1.963520pt;}
._3{width:2.862080pt;}
._7{width:4.510720pt;}
._9{width:5.696427pt;}
._6{width:6.965333pt;}
._15{width:7.858347pt;}
._5{width:8.772693pt;}
._c{width:9.725440pt;}
._b{width:10.908587pt;}
._14{width:12.137387pt;}
._d{width:13.470720pt;}
._4{width:14.889387pt;}
._11{width:17.200640pt;}
._12{width:18.191360pt;}
._13{width:19.089920pt;}
._16{width:20.160427pt;}
._f{width:21.132800pt;}
._e{width:22.192640pt;}
._10{width:24.112640pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y67{bottom:93.792000pt;}
.y55{bottom:94.112000pt;}
.y33{bottom:109.792000pt;}
.y93{bottom:118.112000pt;}
.y32{bottom:131.232000pt;}
.y72{bottom:131.552000pt;}
.y92{bottom:139.226667pt;}
.y31{bottom:152.346667pt;}
.y71{bottom:152.666667pt;}
.y91{bottom:160.346667pt;}
.y30{bottom:173.506667pt;}
.y90{bottom:181.506667pt;}
.y70{bottom:191.106667pt;}
.y2f{bottom:194.626667pt;}
.y8f{bottom:202.306667pt;}
.y2e{bottom:215.746667pt;}
.y8e{bottom:223.746667pt;}
.y2d{bottom:236.866667pt;}
.y8d{bottom:244.866667pt;}
.y2c{bottom:257.986667pt;}
.y8c{bottom:266.306667pt;}
.y2b{bottom:279.106667pt;}
.y8b{bottom:287.453333pt;}
.y2a{bottom:300.573333pt;}
.y8a{bottom:308.573333pt;}
.y29{bottom:321.693333pt;}
.y89{bottom:329.693333pt;}
.y66{bottom:334.493333pt;}
.y28{bottom:342.813333pt;}
.y54{bottom:349.533333pt;}
.y88{bottom:350.813333pt;}
.y65{bottom:355.613333pt;}
.y27{bottom:363.933333pt;}
.y53{bottom:370.973333pt;}
.y87{bottom:371.933333pt;}
.y64{bottom:376.733333pt;}
.y26{bottom:385.053333pt;}
.y52{bottom:392.093333pt;}
.y86{bottom:393.053333pt;}
.y63{bottom:397.893333pt;}
.y25{bottom:406.213333pt;}
.y51{bottom:413.253333pt;}
.y85{bottom:414.213333pt;}
.y62{bottom:419.013333pt;}
.y24{bottom:427.333333pt;}
.y50{bottom:434.373333pt;}
.y84{bottom:435.653333pt;}
.y61{bottom:440.133333pt;}
.y23{bottom:448.453333pt;}
.y4f{bottom:455.493333pt;}
.y83{bottom:456.773333pt;}
.y60{bottom:461.253333pt;}
.y22{bottom:469.893333pt;}
.y4e{bottom:476.933333pt;}
.y82{bottom:477.893333pt;}
.y5f{bottom:482.053333pt;}
.y21{bottom:491.013333pt;}
.y4d{bottom:498.053333pt;}
.y81{bottom:499.013333pt;}
.y5e{bottom:503.813333pt;}
.y6f{bottom:508.293333pt;}
.y20{bottom:512.160000pt;}
.y4c{bottom:519.200000pt;}
.y80{bottom:520.160000pt;}
.y5d{bottom:524.960000pt;}
.y6e{bottom:529.440000pt;}
.y1f{bottom:533.280000pt;}
.y4b{bottom:540.320000pt;}
.y7f{bottom:541.280000pt;}
.y5c{bottom:546.080000pt;}
.y6d{bottom:550.880000pt;}
.y1e{bottom:554.400000pt;}
.y4a{bottom:561.440000pt;}
.y7e{bottom:562.400000pt;}
.y5b{bottom:567.200000pt;}
.y6c{bottom:572.000000pt;}
.y1d{bottom:575.520000pt;}
.y49{bottom:582.560000pt;}
.y7d{bottom:583.520000pt;}
.y5a{bottom:588.320000pt;}
.y6b{bottom:593.120000pt;}
.y1c{bottom:596.640000pt;}
.y48{bottom:603.680000pt;}
.y7c{bottom:604.640000pt;}
.y59{bottom:609.120000pt;}
.y6a{bottom:614.240000pt;}
.y1b{bottom:617.760000pt;}
.y47{bottom:624.826667pt;}
.y7b{bottom:626.106667pt;}
.y58{bottom:627.066667pt;}
.y69{bottom:635.066667pt;}
.y1a{bottom:638.906667pt;}
.y46{bottom:646.266667pt;}
.y7a{bottom:647.226667pt;}
.y68{bottom:652.666667pt;}
.y19{bottom:660.346667pt;}
.y45{bottom:667.386667pt;}
.y79{bottom:668.346667pt;}
.y18{bottom:681.466667pt;}
.y44{bottom:688.506667pt;}
.y78{bottom:689.466667pt;}
.y17{bottom:702.586667pt;}
.y43{bottom:709.626667pt;}
.y77{bottom:710.586667pt;}
.y16{bottom:723.386667pt;}
.y42{bottom:730.746667pt;}
.y76{bottom:731.706667pt;}
.y15{bottom:744.546667pt;}
.y41{bottom:751.906667pt;}
.y75{bottom:752.866667pt;}
.y14{bottom:765.986667pt;}
.y40{bottom:773.026667pt;}
.y74{bottom:773.666667pt;}
.y13{bottom:787.106667pt;}
.y73{bottom:791.266667pt;}
.y3f{bottom:794.146667pt;}
.y12{bottom:808.226667pt;}
.y3e{bottom:815.266667pt;}
.y11{bottom:829.666667pt;}
.y3d{bottom:836.706667pt;}
.y10{bottom:850.493333pt;}
.y3c{bottom:857.853333pt;}
.yf{bottom:871.613333pt;}
.y3b{bottom:878.973333pt;}
.ye{bottom:893.053333pt;}
.y3a{bottom:900.093333pt;}
.yd{bottom:913.853333pt;}
.y39{bottom:921.213333pt;}
.yc{bottom:937.213333pt;}
.y38{bottom:942.013333pt;}
.y57{bottom:942.333333pt;}
.y95{bottom:963.173333pt;}
.y37{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y94{bottom:984.293333pt;}
.y36{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y35{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y56{bottom:1026.853333pt;}
.y34{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h5{height:24.000000pt;}
.h7{height:44.648750pt;}
.hb{height:44.687500pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.ha{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.hc{height:65.781915pt;}
.h9{height:84.168750pt;}
.h8{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w3{width:265.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x8{left:34.906667pt;}
.x5{left:85.152000pt;}
.xa{left:92.511988pt;}
.xb{left:106.591988pt;}
.x18{left:113.631988pt;}
.x11{left:132.543988pt;}
.xf{left:136.706655pt;}
.x3{left:169.026655pt;}
.x6{left:258.341333pt;}
.x10{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.xc{left:312.773322pt;}
.xe{left:329.093322pt;}
.x7{left:350.853333pt;}
.xd{left:396.959988pt;}
.x9{left:443.360000pt;}
.x16{left:453.919988pt;}
.x14{left:525.306655pt;}
.x13{left:540.026655pt;}
.x12{left:561.826655pt;}
.x15{left:564.386655pt;}
.x17{left:680.573322pt;}
.x1{left:709.053322pt;}
}




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