
    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_f079e6ebe10f2cd9576e3faa.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_0ec385ceb05c7a0afcd84cd4.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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_735b71edb0d82e0471cb4770.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_38a8d88b0611afe5460b37d7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_afdb9bafadeff2ae5509f60b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_4fe016243358270abad73614.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_1473f2be982d42282fccc92e.woff2')format("woff");}.ff8{font-family:ff8;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;}
.lsc{letter-spacing:-2.880000px;}
.lsb{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.924000px;}
.ls8{letter-spacing:53.424000px;}
.ls7{letter-spacing:82.380000px;}
.ls4{letter-spacing:89.580000px;}
.ls5{letter-spacing:93.900000px;}
.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:-72.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws4{word-spacing:-15.120000px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-4.855680px;}
._5{margin-left:-3.562560px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.410560px;}
._4{width:3.666240px;}
._e{width:4.860480px;}
._f{width:5.881440px;}
._d{width:7.704000px;}
._10{width:8.809920px;}
._c{width:10.022400px;}
._14{width:11.435040px;}
._15{width:12.513600px;}
._8{width:13.635360px;}
._6{width:14.650560px;}
._7{width:16.084320px;}
._18{width:19.958400px;}
._1a{width:21.006240px;}
._12{width:24.408000px;}
._19{width:26.510880px;}
._16{width:29.554560px;}
._17{width:31.881120px;}
._a{width:33.037440px;}
._9{width:34.085280px;}
._13{width:87.048000px;}
._11{width:187.954560px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc5{color:rgb(46,46,46);}
.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;}
.y34{bottom:16.200000px;}
.y48{bottom:18.360000px;}
.y3d{bottom:19.440000px;}
.y43{bottom:20.160000px;}
.y33{bottom:39.960000px;}
.y30{bottom:41.040000px;}
.y47{bottom:42.150000px;}
.y3c{bottom:43.200000px;}
.y42{bottom:43.920000px;}
.y8{bottom:57.240000px;}
.y32{bottom:63.390000px;}
.y35{bottom:63.750000px;}
.y2f{bottom:64.800000px;}
.y46{bottom:65.550000px;}
.y49{bottom:65.910000px;}
.y3b{bottom:66.960000px;}
.y41{bottom:67.320000px;}
.y44{bottom:67.680000px;}
.y5{bottom:73.476000px;}
.y3a{bottom:91.080000px;}
.y39{bottom:114.885000px;}
.y28{bottom:119.196000px;}
.y5b{bottom:121.356000px;}
.y76{bottom:131.436000px;}
.y38{bottom:138.285000px;}
.y3f{bottom:138.645000px;}
.y27{bottom:143.316000px;}
.y5a{bottom:145.116000px;}
.y75{bottom:155.190000px;}
.y37{bottom:162.045000px;}
.y3e{bottom:162.405000px;}
.y26{bottom:167.070000px;}
.y59{bottom:168.870000px;}
.y74{bottom:179.310000px;}
.y25{bottom:190.830000px;}
.y58{bottom:192.630000px;}
.y73{bottom:203.115000px;}
.y24{bottom:214.635000px;}
.y57{bottom:216.075000px;}
.y72{bottom:226.875000px;}
.y23{bottom:238.395000px;}
.y56{bottom:240.195000px;}
.y71{bottom:250.275000px;}
.y7d{bottom:250.635000px;}
.y22{bottom:262.155000px;}
.y55{bottom:264.315000px;}
.y70{bottom:274.395000px;}
.y21{bottom:285.915000px;}
.y54{bottom:288.075000px;}
.y6f{bottom:298.155000px;}
.y20{bottom:309.675000px;}
.y53{bottom:311.835000px;}
.y6e{bottom:321.945000px;}
.y1f{bottom:333.465000px;}
.y52{bottom:335.625000px;}
.y6d{bottom:345.705000px;}
.y1e{bottom:357.225000px;}
.y51{bottom:359.385000px;}
.y6c{bottom:369.825000px;}
.y1d{bottom:377.025000px;}
.y50{bottom:383.145000px;}
.y6b{bottom:393.585000px;}
.y4f{bottom:406.905000px;}
.y6a{bottom:417.345000px;}
.y4e{bottom:431.025000px;}
.y69{bottom:440.745000px;}
.y7c{bottom:441.105000px;}
.y4d{bottom:454.830000px;}
.y68{bottom:464.910000px;}
.y4c{bottom:478.590000px;}
.y67{bottom:488.670000px;}
.y4b{bottom:502.350000px;}
.y66{bottom:512.430000px;}
.y4a{bottom:526.110000px;}
.y65{bottom:536.190000px;}
.y45{bottom:543.030000px;}
.y64{bottom:559.950000px;}
.y63{bottom:584.100000px;}
.y62{bottom:607.860000px;}
.y40{bottom:625.860000px;}
.y61{bottom:631.620000px;}
.y60{bottom:655.020000px;}
.y7b{bottom:655.380000px;}
.y1c{bottom:679.140000px;}
.y7a{bottom:702.570000px;}
.y1b{bottom:702.930000px;}
.y36{bottom:710.490000px;}
.y79{bottom:726.330000px;}
.y1a{bottom:726.690000px;}
.y19{bottom:750.450000px;}
.y18{bottom:774.210000px;}
.y5f{bottom:774.570000px;}
.y17{bottom:798.330000px;}
.y78{bottom:821.730000px;}
.y16{bottom:822.090000px;}
.y15{bottom:845.895000px;}
.y14{bottom:869.655000px;}
.y31{bottom:889.815000px;}
.y13{bottom:893.415000px;}
.y12{bottom:917.175000px;}
.y11{bottom:940.935000px;}
.y10{bottom:964.725000px;}
.y5e{bottom:965.085000px;}
.y2e{bottom:970.485000px;}
.yf{bottom:988.485000px;}
.y77{bottom:988.845000px;}
.ye{bottom:1012.605000px;}
.yd{bottom:1036.005000px;}
.y5d{bottom:1036.365000px;}
.y2d{bottom:1059.765000px;}
.yc{bottom:1060.125000px;}
.y2c{bottom:1083.570000px;}
.y5c{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y2b{bottom:1107.690000px;}
.ya{bottom:1117.410000px;}
.y2a{bottom:1131.450000px;}
.y9{bottom:1149.090000px;}
.y29{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h5{height:27.000000px;}
.h7{height:50.229844px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.hf{height:74.004654px;}
.hb{height:79.956000px;}
.ha{height:81.360000px;}
.he{height:82.116000px;}
.hd{height:83.916000px;}
.h8{height:97.233750px;}
.hc{height:178.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:104.076000px;}
.w6{width:184.755000px;}
.w3{width:298.905000px;}
.w5{width:467.460000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:7.560000px;}
.x8{left:43.230000px;}
.x5{left:95.796000px;}
.xa{left:96.875987px;}
.x16{left:117.035987px;}
.x13{left:120.275987px;}
.x18{left:127.835987px;}
.xb{left:144.791987px;}
.xd{left:149.111987px;}
.x17{left:158.834987px;}
.x3{left:196.274987px;}
.xf{left:235.544987px;}
.x6{left:290.634000px;}
.x10{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.xc{left:383.909987px;}
.xe{left:391.469987px;}
.x7{left:394.710000px;}
.x9{left:498.780000px;}
.x15{left:588.450000px;}
.x12{left:742.244987px;}
.x1{left:797.684987px;}
.x11{left:800.249987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-2.560000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.821333pt;}
.ls8{letter-spacing:47.488000pt;}
.ls7{letter-spacing:73.226667pt;}
.ls4{letter-spacing:79.626667pt;}
.ls5{letter-spacing:83.466667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-4.316160pt;}
._5{margin-left:-3.166720pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.142720pt;}
._4{width:3.258880pt;}
._e{width:4.320427pt;}
._f{width:5.227947pt;}
._d{width:6.848000pt;}
._10{width:7.831040pt;}
._c{width:8.908800pt;}
._14{width:10.164480pt;}
._15{width:11.123200pt;}
._8{width:12.120320pt;}
._6{width:13.022720pt;}
._7{width:14.297173pt;}
._18{width:17.740800pt;}
._1a{width:18.672213pt;}
._12{width:21.696000pt;}
._19{width:23.565227pt;}
._16{width:26.270720pt;}
._17{width:28.338773pt;}
._a{width:29.366613pt;}
._9{width:30.298027pt;}
._13{width:77.376000pt;}
._11{width:167.070720pt;}
.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;}
.y34{bottom:14.400000pt;}
.y48{bottom:16.320000pt;}
.y3d{bottom:17.280000pt;}
.y43{bottom:17.920000pt;}
.y33{bottom:35.520000pt;}
.y30{bottom:36.480000pt;}
.y47{bottom:37.466667pt;}
.y3c{bottom:38.400000pt;}
.y42{bottom:39.040000pt;}
.y8{bottom:50.880000pt;}
.y32{bottom:56.346667pt;}
.y35{bottom:56.666667pt;}
.y2f{bottom:57.600000pt;}
.y46{bottom:58.266667pt;}
.y49{bottom:58.586667pt;}
.y3b{bottom:59.520000pt;}
.y41{bottom:59.840000pt;}
.y44{bottom:60.160000pt;}
.y5{bottom:65.312000pt;}
.y3a{bottom:80.960000pt;}
.y39{bottom:102.120000pt;}
.y28{bottom:105.952000pt;}
.y5b{bottom:107.872000pt;}
.y76{bottom:116.832000pt;}
.y38{bottom:122.920000pt;}
.y3f{bottom:123.240000pt;}
.y27{bottom:127.392000pt;}
.y5a{bottom:128.992000pt;}
.y75{bottom:137.946667pt;}
.y37{bottom:144.040000pt;}
.y3e{bottom:144.360000pt;}
.y26{bottom:148.506667pt;}
.y59{bottom:150.106667pt;}
.y74{bottom:159.386667pt;}
.y25{bottom:169.626667pt;}
.y58{bottom:171.226667pt;}
.y73{bottom:180.546667pt;}
.y24{bottom:190.786667pt;}
.y57{bottom:192.066667pt;}
.y72{bottom:201.666667pt;}
.y23{bottom:211.906667pt;}
.y56{bottom:213.506667pt;}
.y71{bottom:222.466667pt;}
.y7d{bottom:222.786667pt;}
.y22{bottom:233.026667pt;}
.y55{bottom:234.946667pt;}
.y70{bottom:243.906667pt;}
.y21{bottom:254.146667pt;}
.y54{bottom:256.066667pt;}
.y6f{bottom:265.026667pt;}
.y20{bottom:275.266667pt;}
.y53{bottom:277.186667pt;}
.y6e{bottom:286.173333pt;}
.y1f{bottom:296.413333pt;}
.y52{bottom:298.333333pt;}
.y6d{bottom:307.293333pt;}
.y1e{bottom:317.533333pt;}
.y51{bottom:319.453333pt;}
.y6c{bottom:328.733333pt;}
.y1d{bottom:335.133333pt;}
.y50{bottom:340.573333pt;}
.y6b{bottom:349.853333pt;}
.y4f{bottom:361.693333pt;}
.y6a{bottom:370.973333pt;}
.y4e{bottom:383.133333pt;}
.y69{bottom:391.773333pt;}
.y7c{bottom:392.093333pt;}
.y4d{bottom:404.293333pt;}
.y68{bottom:413.253333pt;}
.y4c{bottom:425.413333pt;}
.y67{bottom:434.373333pt;}
.y4b{bottom:446.533333pt;}
.y66{bottom:455.493333pt;}
.y4a{bottom:467.653333pt;}
.y65{bottom:476.613333pt;}
.y45{bottom:482.693333pt;}
.y64{bottom:497.733333pt;}
.y63{bottom:519.200000pt;}
.y62{bottom:540.320000pt;}
.y40{bottom:556.320000pt;}
.y61{bottom:561.440000pt;}
.y60{bottom:582.240000pt;}
.y7b{bottom:582.560000pt;}
.y1c{bottom:603.680000pt;}
.y7a{bottom:624.506667pt;}
.y1b{bottom:624.826667pt;}
.y36{bottom:631.546667pt;}
.y79{bottom:645.626667pt;}
.y1a{bottom:645.946667pt;}
.y19{bottom:667.066667pt;}
.y18{bottom:688.186667pt;}
.y5f{bottom:688.506667pt;}
.y17{bottom:709.626667pt;}
.y78{bottom:730.426667pt;}
.y16{bottom:730.746667pt;}
.y15{bottom:751.906667pt;}
.y14{bottom:773.026667pt;}
.y31{bottom:790.946667pt;}
.y13{bottom:794.146667pt;}
.y12{bottom:815.266667pt;}
.y11{bottom:836.386667pt;}
.y10{bottom:857.533333pt;}
.y5e{bottom:857.853333pt;}
.y2e{bottom:862.653333pt;}
.yf{bottom:878.653333pt;}
.y77{bottom:878.973333pt;}
.ye{bottom:900.093333pt;}
.yd{bottom:920.893333pt;}
.y5d{bottom:921.213333pt;}
.y2d{bottom:942.013333pt;}
.yc{bottom:942.333333pt;}
.y2c{bottom:963.173333pt;}
.y5c{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y2b{bottom:984.613333pt;}
.ya{bottom:993.253333pt;}
.y2a{bottom:1005.733333pt;}
.y9{bottom:1021.413333pt;}
.y29{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h5{height:24.000000pt;}
.h7{height:44.648750pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.hf{height:65.781915pt;}
.hb{height:71.072000pt;}
.ha{height:72.320000pt;}
.he{height:72.992000pt;}
.hd{height:74.592000pt;}
.h8{height:86.430000pt;}
.hc{height:158.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.512000pt;}
.w6{width:164.226667pt;}
.w3{width:265.693333pt;}
.w5{width:415.520000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:6.720000pt;}
.x8{left:38.426667pt;}
.x5{left:85.152000pt;}
.xa{left:86.111988pt;}
.x16{left:104.031988pt;}
.x13{left:106.911988pt;}
.x18{left:113.631988pt;}
.xb{left:128.703988pt;}
.xd{left:132.543988pt;}
.x17{left:141.186655pt;}
.x3{left:174.466655pt;}
.xf{left:209.373322pt;}
.x6{left:258.341333pt;}
.x10{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.xc{left:341.253322pt;}
.xe{left:347.973322pt;}
.x7{left:350.853333pt;}
.x9{left:443.360000pt;}
.x15{left:523.066667pt;}
.x12{left:659.773322pt;}
.x1{left:709.053322pt;}
.x11{left:711.333322pt;}
}




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