
    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_a80ed246ec54cc98fee05a92.woff')format("woff");}.ff1{font-family:ff1;line-height:1.231445;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_4beb0700ad4b2d80c5c2961c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.231445;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_11a253c4ce44c6a1ff625245.woff')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_7340ce05a4778dacc011ed9f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_d5e1ac3094ef3a3f693957d9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.683594;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;}
.lse{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.143400px;}
.lsa{letter-spacing:-0.079800px;}
.lsf{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012600px;}
.ls5{letter-spacing:0.026280px;}
.lsb{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.140040px;}
.lsd{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.288000px;}
.ls9{letter-spacing:6.120000px;}
.ls3{letter-spacing:137.906280px;}
.ls6{letter-spacing:170.666280px;}
.ls4{letter-spacing:207.026280px;}
.ls7{letter-spacing:321.146280px;}
.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;}
}
.ws6{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.232000px;}
.ws9{word-spacing:-20.160000px;}
.ws8{word-spacing:-19.800000px;}
.ws7{word-spacing:-17.784000px;}
.ws1{word-spacing:-16.893720px;}
.ws4{word-spacing:-16.813920px;}
.ws3{word-spacing:-16.750320px;}
.ws2{word-spacing:-14.849640px;}
.ws0{word-spacing:0.000000px;}
._13{margin-left:-18.458520px;}
._14{margin-left:-16.056000px;}
._18{margin-left:-13.500000px;}
._15{margin-left:-12.446640px;}
._17{margin-left:-11.075880px;}
._10{margin-left:-9.619200px;}
._19{margin-left:-7.776000px;}
._11{margin-left:-6.733440px;}
._16{margin-left:-4.896000px;}
._12{margin-left:-2.553480px;}
._3{margin-left:-1.202400px;}
._f{width:1.116000px;}
._e{width:2.700000px;}
._1{width:4.929840px;}
._0{width:6.072120px;}
._2{width:7.320600px;}
._6{width:35.020200px;}
._5{width:136.280160px;}
._9{width:149.225760px;}
._4{width:187.906080px;}
._b{width:238.267200px;}
._7{width:308.603880px;}
._c{width:324.569880px;}
._d{width:347.982480px;}
._a{width:363.256680px;}
._8{width:372.026280px;}
.fc1{color:transparent;}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs1{font-size:47.880000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.539985px;}
.y60{bottom:96.030000px;}
.y33{bottom:116.640000px;}
.y5f{bottom:120.960000px;}
.y32{bottom:138.150000px;}
.y5e{bottom:143.370000px;}
.y31{bottom:159.660000px;}
.y5d{bottom:169.200000px;}
.y30{bottom:181.170000px;}
.y5c{bottom:192.600000px;}
.y2f{bottom:202.680000px;}
.y5b{bottom:207.900000px;}
.y2e{bottom:224.280000px;}
.y5a{bottom:233.760000px;}
.y2d{bottom:245.820000px;}
.y59{bottom:259.590000px;}
.y2c{bottom:267.330000px;}
.y58{bottom:282.990000px;}
.y2b{bottom:288.030000px;}
.y57{bottom:297.480000px;}
.y2a{bottom:306.030000px;}
.y56{bottom:319.800000px;}
.y29{bottom:327.540000px;}
.y55{bottom:345.630000px;}
.y28{bottom:348.330000px;}
.y27{bottom:366.330000px;}
.y54{bottom:369.120000px;}
.y53{bottom:383.520000px;}
.y26{bottom:387.840000px;}
.y52{bottom:405.030000px;}
.y25{bottom:409.350000px;}
.y51{bottom:427.440000px;}
.y24{bottom:430.050000px;}
.y23{bottom:448.050000px;}
.y50{bottom:453.270000px;}
.y22{bottom:469.560000px;}
.y4f{bottom:479.100000px;}
.y21{bottom:491.070000px;}
.y4e{bottom:502.500000px;}
.y20{bottom:512.580000px;}
.y4d{bottom:516.900000px;}
.y1f{bottom:534.180000px;}
.y4c{bottom:539.310000px;}
.y1e{bottom:555.690000px;}
.y4b{bottom:565.140000px;}
.y1d{bottom:577.200000px;}
.y4a{bottom:588.630000px;}
.y1c{bottom:598.710000px;}
.y49{bottom:603.030000px;}
.y1b{bottom:620.220000px;}
.y48{bottom:624.540000px;}
.y1a{bottom:641.730000px;}
.y47{bottom:646.980000px;}
.y19{bottom:663.270000px;}
.y46{bottom:672.810000px;}
.y18{bottom:684.780000px;}
.y45{bottom:698.550000px;}
.y17{bottom:706.290000px;}
.y44{bottom:722.040000px;}
.y16{bottom:727.800000px;}
.y43{bottom:736.440000px;}
.y15{bottom:749.310000px;}
.y42{bottom:758.850000px;}
.y14{bottom:770.910000px;}
.y41{bottom:784.680000px;}
.y13{bottom:792.420000px;}
.y40{bottom:808.080000px;}
.y12{bottom:813.930000px;}
.y3f{bottom:822.480000px;}
.y11{bottom:835.440000px;}
.y3e{bottom:844.890000px;}
.y10{bottom:856.950000px;}
.y3d{bottom:870.720000px;}
.yf{bottom:878.460000px;}
.y3c{bottom:896.550000px;}
.ye{bottom:899.970000px;}
.yd{bottom:921.480000px;}
.y3b{bottom:922.380000px;}
.y6a{bottom:935.340000px;}
.yc{bottom:942.990000px;}
.y3a{bottom:948.210000px;}
.y69{bottom:960.270000px;}
.yb{bottom:963.780000px;}
.y39{bottom:974.760000px;}
.y68{bottom:980.250000px;}
.ya{bottom:981.780000px;}
.y67{bottom:994.650000px;}
.y9{bottom:1003.290000px;}
.y38{bottom:1004.820000px;}
.y66{bottom:1017.060000px;}
.y8{bottom:1024.800000px;}
.y37{bottom:1034.970000px;}
.y65{bottom:1042.890000px;}
.y7{bottom:1046.310000px;}
.y36{bottom:1065.120000px;}
.y6{bottom:1067.040000px;}
.y64{bottom:1068.750000px;}
.y5{bottom:1085.040000px;}
.y63{bottom:1094.580000px;}
.y35{bottom:1096.740000px;}
.y4{bottom:1106.550000px;}
.y62{bottom:1120.410000px;}
.y3{bottom:1128.150000px;}
.y34{bottom:1135.530000px;}
.y61{bottom:1146.240000px;}
.y2{bottom:1149.660000px;}
.h8{height:35.947266px;}
.h3{height:47.809863px;}
.h2{height:60.031934px;}
.h7{height:64.019531px;}
.h6{height:71.894531px;}
.h5{height:83.757129px;}
.h4{height:107.841797px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.650000px;}
.x3{left:144.660000px;}
.x1{left:900.120000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.127467pt;}
.lsa{letter-spacing:-0.070933pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011200pt;}
.ls5{letter-spacing:0.023360pt;}
.lsb{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.124480pt;}
.lsd{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.256000pt;}
.ls9{letter-spacing:5.440000pt;}
.ls3{letter-spacing:122.583360pt;}
.ls6{letter-spacing:151.703360pt;}
.ls4{letter-spacing:184.023360pt;}
.ls7{letter-spacing:285.463360pt;}
.ws6{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws9{word-spacing:-17.920000pt;}
.ws8{word-spacing:-17.600000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.016640pt;}
.ws4{word-spacing:-14.945707pt;}
.ws3{word-spacing:-14.889173pt;}
.ws2{word-spacing:-13.199680pt;}
.ws0{word-spacing:0.000000pt;}
._13{margin-left:-16.407573pt;}
._14{margin-left:-14.272000pt;}
._18{margin-left:-12.000000pt;}
._15{margin-left:-11.063680pt;}
._17{margin-left:-9.845227pt;}
._10{margin-left:-8.550400pt;}
._19{margin-left:-6.912000pt;}
._11{margin-left:-5.985280pt;}
._16{margin-left:-4.352000pt;}
._12{margin-left:-2.269760pt;}
._3{margin-left:-1.068800pt;}
._f{width:0.992000pt;}
._e{width:2.400000pt;}
._1{width:4.382080pt;}
._0{width:5.397440pt;}
._2{width:6.507200pt;}
._6{width:31.129067pt;}
._5{width:121.137920pt;}
._9{width:132.645120pt;}
._4{width:167.027627pt;}
._b{width:211.793067pt;}
._7{width:274.314560pt;}
._c{width:288.506560pt;}
._d{width:309.317760pt;}
._a{width:322.894827pt;}
._8{width:330.690027pt;}
.fs5{font-size:32.000000pt;}
.fs1{font-size:42.560000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.479987pt;}
.y60{bottom:85.360000pt;}
.y33{bottom:103.680000pt;}
.y5f{bottom:107.520000pt;}
.y32{bottom:122.800000pt;}
.y5e{bottom:127.440000pt;}
.y31{bottom:141.920000pt;}
.y5d{bottom:150.400000pt;}
.y30{bottom:161.040000pt;}
.y5c{bottom:171.200000pt;}
.y2f{bottom:180.160000pt;}
.y5b{bottom:184.800000pt;}
.y2e{bottom:199.360000pt;}
.y5a{bottom:207.786667pt;}
.y2d{bottom:218.506667pt;}
.y59{bottom:230.746667pt;}
.y2c{bottom:237.626667pt;}
.y58{bottom:251.546667pt;}
.y2b{bottom:256.026667pt;}
.y57{bottom:264.426667pt;}
.y2a{bottom:272.026667pt;}
.y56{bottom:284.266667pt;}
.y29{bottom:291.146667pt;}
.y55{bottom:307.226667pt;}
.y28{bottom:309.626667pt;}
.y27{bottom:325.626667pt;}
.y54{bottom:328.106667pt;}
.y53{bottom:340.906667pt;}
.y26{bottom:344.746667pt;}
.y52{bottom:360.026667pt;}
.y25{bottom:363.866667pt;}
.y51{bottom:379.946667pt;}
.y24{bottom:382.266667pt;}
.y23{bottom:398.266667pt;}
.y50{bottom:402.906667pt;}
.y22{bottom:417.386667pt;}
.y4f{bottom:425.866667pt;}
.y21{bottom:436.506667pt;}
.y4e{bottom:446.666667pt;}
.y20{bottom:455.626667pt;}
.y4d{bottom:459.466667pt;}
.y1f{bottom:474.826667pt;}
.y4c{bottom:479.386667pt;}
.y1e{bottom:493.946667pt;}
.y4b{bottom:502.346667pt;}
.y1d{bottom:513.066667pt;}
.y4a{bottom:523.226667pt;}
.y1c{bottom:532.186667pt;}
.y49{bottom:536.026667pt;}
.y1b{bottom:551.306667pt;}
.y48{bottom:555.146667pt;}
.y1a{bottom:570.426667pt;}
.y47{bottom:575.093333pt;}
.y19{bottom:589.573333pt;}
.y46{bottom:598.053333pt;}
.y18{bottom:608.693333pt;}
.y45{bottom:620.933333pt;}
.y17{bottom:627.813333pt;}
.y44{bottom:641.813333pt;}
.y16{bottom:646.933333pt;}
.y43{bottom:654.613333pt;}
.y15{bottom:666.053333pt;}
.y42{bottom:674.533333pt;}
.y14{bottom:685.253333pt;}
.y41{bottom:697.493333pt;}
.y13{bottom:704.373333pt;}
.y40{bottom:718.293333pt;}
.y12{bottom:723.493333pt;}
.y3f{bottom:731.093333pt;}
.y11{bottom:742.613333pt;}
.y3e{bottom:751.013333pt;}
.y10{bottom:761.733333pt;}
.y3d{bottom:773.973333pt;}
.yf{bottom:780.853333pt;}
.y3c{bottom:796.933333pt;}
.ye{bottom:799.973333pt;}
.yd{bottom:819.093333pt;}
.y3b{bottom:819.893333pt;}
.y6a{bottom:831.413333pt;}
.yc{bottom:838.213333pt;}
.y3a{bottom:842.853333pt;}
.y69{bottom:853.573333pt;}
.yb{bottom:856.693333pt;}
.y39{bottom:866.453333pt;}
.y68{bottom:871.333333pt;}
.ya{bottom:872.693333pt;}
.y67{bottom:884.133333pt;}
.y9{bottom:891.813333pt;}
.y38{bottom:893.173333pt;}
.y66{bottom:904.053333pt;}
.y8{bottom:910.933333pt;}
.y37{bottom:919.973333pt;}
.y65{bottom:927.013333pt;}
.y7{bottom:930.053333pt;}
.y36{bottom:946.773333pt;}
.y6{bottom:948.480000pt;}
.y64{bottom:950.000000pt;}
.y5{bottom:964.480000pt;}
.y63{bottom:972.960000pt;}
.y35{bottom:974.880000pt;}
.y4{bottom:983.600000pt;}
.y62{bottom:995.920000pt;}
.y3{bottom:1002.800000pt;}
.y34{bottom:1009.360000pt;}
.y61{bottom:1018.880000pt;}
.y2{bottom:1021.920000pt;}
.h8{height:31.953125pt;}
.h3{height:42.497656pt;}
.h2{height:53.361719pt;}
.h7{height:56.906250pt;}
.h6{height:63.906250pt;}
.h5{height:74.450781pt;}
.h4{height:95.859375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.466667pt;}
.x3{left:128.586667pt;}
.x1{left:800.106667pt;}
}




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