
    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_d098ea05e479cb286652d156.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_f8b6fb2139ae9650a6e9b57d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_05bb936c1e5c891277b02ad1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_ad56ea91e81d892e2571b5a9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_1ae69d7d03ddbfbae87f1148.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172363;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_f42a48b907822643e70f55f3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cc4b731512e189d919168d7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_975cf681209b4c605971f0b0.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d3ad10817cc8b2cbb630d1ca.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c21d97eb1c977cffa08630d8.woff')format("woff");}.ffa{font-family:ffa;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;}
.ls9{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.187200px;}
.lsb{letter-spacing:0.275760px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:5.580000px;}
.ls3{letter-spacing:6.300000px;}
.lsa{letter-spacing:129.221280px;}
.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;}
}
.ws0{word-spacing:-21.795720px;}
.ws5{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.700000px;}
.ws2{word-spacing:-19.800000px;}
.ws1{word-spacing:-19.620000px;}
.ws3{word-spacing:-14.970240px;}
.ws6{word-spacing:0.000000px;}
._8{margin-left:-6.318000px;}
._9{margin-left:-4.913520px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.657200px;}
._3{width:1.029120px;}
._2{width:2.093760px;}
._4{width:3.340560px;}
._6{width:4.548960px;}
._5{width:6.155760px;}
._d{width:7.164000px;}
._c{width:8.649120px;}
._10{width:9.893280px;}
._15{width:11.431680px;}
._e{width:12.888720px;}
._f{width:14.461680px;}
._7{width:16.258320px;}
._16{width:18.368400px;}
._11{width:19.459440px;}
._a{width:22.576320px;}
._1a{width:24.682320px;}
._17{width:25.749840px;}
._b{width:28.361280px;}
._18{width:29.415840px;}
._19{width:34.201440px;}
._12{width:36.560160px;}
._13{width:37.856400px;}
._14{width:39.471360px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(30,78,120);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(196,88,17);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.860000px;}
.y4{bottom:7.200000px;}
.y33{bottom:8.100000px;}
.y36{bottom:8.280000px;}
.y8{bottom:11.340000px;}
.y7{bottom:12.780000px;}
.y5{bottom:19.440000px;}
.ya{bottom:22.320000px;}
.y3{bottom:35.640000px;}
.y38{bottom:35.820000px;}
.y3c{bottom:35.865000px;}
.y35{bottom:36.000000px;}
.y32{bottom:36.030000px;}
.y50{bottom:44.820000px;}
.y45{bottom:60.480000px;}
.y30{bottom:65.700000px;}
.y4f{bottom:72.576000px;}
.y2{bottom:72.720000px;}
.y44{bottom:88.236000px;}
.y2f{bottom:93.636000px;}
.y4e{bottom:100.296000px;}
.y43{bottom:116.136000px;}
.y2e{bottom:121.356000px;}
.y4d{bottom:128.196000px;}
.y42{bottom:143.856000px;}
.y2d{bottom:149.076000px;}
.y4c{bottom:155.910000px;}
.y41{bottom:171.570000px;}
.y2c{bottom:176.790000px;}
.y4b{bottom:183.630000px;}
.y40{bottom:199.470000px;}
.y2b{bottom:204.690000px;}
.y4a{bottom:211.350000px;}
.y3f{bottom:227.190000px;}
.y2a{bottom:232.410000px;}
.y49{bottom:239.250000px;}
.y3e{bottom:254.910000px;}
.y29{bottom:260.130000px;}
.y48{bottom:266.970000px;}
.y3d{bottom:282.630000px;}
.y28{bottom:288.030000px;}
.y47{bottom:294.690000px;}
.y3b{bottom:303.150000px;}
.y27{bottom:315.750000px;}
.y46{bottom:322.410000px;}
.y26{bottom:343.515000px;}
.y3a{bottom:359.355000px;}
.y25{bottom:371.235000px;}
.y24{bottom:399.135000px;}
.y39{bottom:415.695000px;}
.y23{bottom:426.855000px;}
.y22{bottom:454.575000px;}
.y37{bottom:472.035000px;}
.y21{bottom:482.475000px;}
.y20{bottom:510.195000px;}
.y34{bottom:528.195000px;}
.y1f{bottom:537.915000px;}
.y1e{bottom:565.635000px;}
.y31{bottom:584.535000px;}
.y1d{bottom:593.535000px;}
.y1c{bottom:621.285000px;}
.y1b{bottom:649.005000px;}
.y1a{bottom:676.725000px;}
.y19{bottom:704.625000px;}
.y18{bottom:732.345000px;}
.y17{bottom:760.065000px;}
.y16{bottom:787.965000px;}
.y15{bottom:815.685000px;}
.y14{bottom:843.405000px;}
.y13{bottom:871.125000px;}
.y12{bottom:899.070000px;}
.y11{bottom:926.790000px;}
.y10{bottom:954.510000px;}
.yf{bottom:982.410000px;}
.ye{bottom:1010.130000px;}
.yd{bottom:1037.850000px;}
.yc{bottom:1065.570000px;}
.yb{bottom:1093.470000px;}
.y1{bottom:1165.320000px;}
.y9{bottom:1256.580000px;}
.h5{height:19.440000px;}
.h7{height:26.100000px;}
.h3{height:48.224531px;}
.hf{height:55.440000px;}
.h10{height:55.476000px;}
.he{height:55.620000px;}
.hd{height:55.656000px;}
.h8{height:58.651172px;}
.hb{height:59.066719px;}
.hc{height:59.436914px;}
.h6{height:65.884219px;}
.h4{height:75.849609px;}
.ha{height:82.676953px;}
.h9{height:84.898125px;}
.h11{height:86.585445px;}
.h2{height:92.340000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:64.836000px;}
.w8{width:203.610000px;}
.w7{width:205.770000px;}
.w3{width:207.255000px;}
.w6{width:364.245000px;}
.w2{width:625.470000px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x6{left:4.500000px;}
.x19{left:18.936000px;}
.x17{left:22.356000px;}
.x11{left:33.660000px;}
.x12{left:38.340000px;}
.x1a{left:42.156000px;}
.x14{left:43.776000px;}
.x4{left:62.280000px;}
.x7{left:63.719987px;}
.x1c{left:81.936000px;}
.x15{left:91.290000px;}
.x16{left:92.340000px;}
.x8{left:112.895987px;}
.xf{left:115.590000px;}
.x18{left:130.170000px;}
.x1{left:137.736000px;}
.x1b{left:147.090000px;}
.xa{left:246.449987px;}
.x1e{left:276.554987px;}
.xb{left:282.854987px;}
.xc{left:286.274987px;}
.x2{left:340.269000px;}
.x1d{left:408.134987px;}
.x10{left:429.405000px;}
.x9{left:451.904987px;}
.x13{left:635.910000px;}
.x5{left:752.550000px;}
.xd{left:766.619987px;}
.xe{left:840.239987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.166400pt;}
.lsb{letter-spacing:0.245120pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:4.960000pt;}
.ls3{letter-spacing:5.600000pt;}
.lsa{letter-spacing:114.863360pt;}
.ws0{word-spacing:-19.373973pt;}
.ws5{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.400000pt;}
.ws2{word-spacing:-17.600000pt;}
.ws1{word-spacing:-17.440000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws6{word-spacing:0.000000pt;}
._8{margin-left:-5.616000pt;}
._9{margin-left:-4.367573pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-1.473067pt;}
._3{width:0.914773pt;}
._2{width:1.861120pt;}
._4{width:2.969387pt;}
._6{width:4.043520pt;}
._5{width:5.471787pt;}
._d{width:6.368000pt;}
._c{width:7.688107pt;}
._10{width:8.794027pt;}
._15{width:10.161493pt;}
._e{width:11.456640pt;}
._f{width:12.854827pt;}
._7{width:14.451840pt;}
._16{width:16.327467pt;}
._11{width:17.297280pt;}
._a{width:20.067840pt;}
._1a{width:21.939840pt;}
._17{width:22.888747pt;}
._b{width:25.210027pt;}
._18{width:26.147413pt;}
._19{width:30.401280pt;}
._12{width:32.497920pt;}
._13{width:33.650133pt;}
._14{width:35.085653pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.320000pt;}
.y4{bottom:6.400000pt;}
.y33{bottom:7.200000pt;}
.y36{bottom:7.360000pt;}
.y8{bottom:10.080000pt;}
.y7{bottom:11.360000pt;}
.y5{bottom:17.280000pt;}
.ya{bottom:19.840000pt;}
.y3{bottom:31.680000pt;}
.y38{bottom:31.840000pt;}
.y3c{bottom:31.880000pt;}
.y35{bottom:32.000000pt;}
.y32{bottom:32.026667pt;}
.y50{bottom:39.840000pt;}
.y45{bottom:53.760000pt;}
.y30{bottom:58.400000pt;}
.y4f{bottom:64.512000pt;}
.y2{bottom:64.640000pt;}
.y44{bottom:78.432000pt;}
.y2f{bottom:83.232000pt;}
.y4e{bottom:89.152000pt;}
.y43{bottom:103.232000pt;}
.y2e{bottom:107.872000pt;}
.y4d{bottom:113.952000pt;}
.y42{bottom:127.872000pt;}
.y2d{bottom:132.512000pt;}
.y4c{bottom:138.586667pt;}
.y41{bottom:152.506667pt;}
.y2c{bottom:157.146667pt;}
.y4b{bottom:163.226667pt;}
.y40{bottom:177.306667pt;}
.y2b{bottom:181.946667pt;}
.y4a{bottom:187.866667pt;}
.y3f{bottom:201.946667pt;}
.y2a{bottom:206.586667pt;}
.y49{bottom:212.666667pt;}
.y3e{bottom:226.586667pt;}
.y29{bottom:231.226667pt;}
.y48{bottom:237.306667pt;}
.y3d{bottom:251.226667pt;}
.y28{bottom:256.026667pt;}
.y47{bottom:261.946667pt;}
.y3b{bottom:269.466667pt;}
.y27{bottom:280.666667pt;}
.y46{bottom:286.586667pt;}
.y26{bottom:305.346667pt;}
.y3a{bottom:319.426667pt;}
.y25{bottom:329.986667pt;}
.y24{bottom:354.786667pt;}
.y39{bottom:369.506667pt;}
.y23{bottom:379.426667pt;}
.y22{bottom:404.066667pt;}
.y37{bottom:419.586667pt;}
.y21{bottom:428.866667pt;}
.y20{bottom:453.506667pt;}
.y34{bottom:469.506667pt;}
.y1f{bottom:478.146667pt;}
.y1e{bottom:502.786667pt;}
.y31{bottom:519.586667pt;}
.y1d{bottom:527.586667pt;}
.y1c{bottom:552.253333pt;}
.y1b{bottom:576.893333pt;}
.y1a{bottom:601.533333pt;}
.y19{bottom:626.333333pt;}
.y18{bottom:650.973333pt;}
.y17{bottom:675.613333pt;}
.y16{bottom:700.413333pt;}
.y15{bottom:725.053333pt;}
.y14{bottom:749.693333pt;}
.y13{bottom:774.333333pt;}
.y12{bottom:799.173333pt;}
.y11{bottom:823.813333pt;}
.y10{bottom:848.453333pt;}
.yf{bottom:873.253333pt;}
.ye{bottom:897.893333pt;}
.yd{bottom:922.533333pt;}
.yc{bottom:947.173333pt;}
.yb{bottom:971.973333pt;}
.y1{bottom:1035.840000pt;}
.y9{bottom:1116.960000pt;}
.h5{height:17.280000pt;}
.h7{height:23.200000pt;}
.h3{height:42.866250pt;}
.hf{height:49.280000pt;}
.h10{height:49.312000pt;}
.he{height:49.440000pt;}
.hd{height:49.472000pt;}
.h8{height:52.134375pt;}
.hb{height:52.503750pt;}
.hc{height:52.832812pt;}
.h6{height:58.563750pt;}
.h4{height:67.421875pt;}
.ha{height:73.490625pt;}
.h9{height:75.465000pt;}
.h11{height:76.964840pt;}
.h2{height:82.080000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:57.632000pt;}
.w8{width:180.986667pt;}
.w7{width:182.906667pt;}
.w3{width:184.226667pt;}
.w6{width:323.773333pt;}
.w2{width:555.973333pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x6{left:4.000000pt;}
.x19{left:16.832000pt;}
.x17{left:19.872000pt;}
.x11{left:29.920000pt;}
.x12{left:34.080000pt;}
.x1a{left:37.472000pt;}
.x14{left:38.912000pt;}
.x4{left:55.360000pt;}
.x7{left:56.639988pt;}
.x1c{left:72.832000pt;}
.x15{left:81.146667pt;}
.x16{left:82.080000pt;}
.x8{left:100.351988pt;}
.xf{left:102.746667pt;}
.x18{left:115.706667pt;}
.x1{left:122.432000pt;}
.x1b{left:130.746667pt;}
.xa{left:219.066655pt;}
.x1e{left:245.826655pt;}
.xb{left:251.426655pt;}
.xc{left:254.466655pt;}
.x2{left:302.461333pt;}
.x1d{left:362.786655pt;}
.x10{left:381.693333pt;}
.x9{left:401.693321pt;}
.x13{left:565.253333pt;}
.x5{left:668.933333pt;}
.xd{left:681.439988pt;}
.xe{left:746.879988pt;}
}




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