
    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_3668086d8023a6970da56a8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_fe17e75e06f841291c1d99b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_033ff5c930027bffac8087bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.220215;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_53b6d516175aa7e22a14f714.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1d16e0f927aba1b4e2f14bd0.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fe8414728f15bcbaba0b1060.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.181152;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_27a1d9236cb43f8aaf115080.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.306000px;}
.lsa{letter-spacing:-0.274200px;}
.ls8{letter-spacing:-0.152400px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.228960px;}
.ls7{letter-spacing:0.229200px;}
.ls9{letter-spacing:0.322800px;}
.ls6{letter-spacing:0.744000px;}
.ls3{letter-spacing:20.826720px;}
.ls0{letter-spacing:37.025280px;}
.ls2{letter-spacing:64.026720px;}
.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;}
}
.ws1{word-spacing:-66.240000px;}
.ws4{word-spacing:-21.358320px;}
.ws2{word-spacing:-21.035520px;}
.ws5{word-spacing:-20.761320px;}
.ws0{word-spacing:-11.898000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.134000px;}
._1{width:1.254000px;}
._a{width:2.881920px;}
._8{width:3.937440px;}
._10{width:5.498880px;}
._c{width:6.574560px;}
._d{width:7.827600px;}
._3{width:9.501840px;}
._2{width:11.055600px;}
._9{width:13.088400px;}
._b{width:14.344800px;}
._13{width:16.016640px;}
._14{width:17.091360px;}
._f{width:18.614880px;}
._e{width:19.900080px;}
._16{width:21.948720px;}
._4{width:23.127120px;}
._5{width:24.205440px;}
._6{width:31.076160px;}
._7{width:32.095200px;}
._11{width:36.573120px;}
._17{width:38.186640px;}
._12{width:39.705120px;}
._15{width:40.829760px;}
._19{width:46.108800px;}
._1a{width:47.151600px;}
._18{width:49.574880px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.700000px;}
.y2{bottom:72.900000px;}
.y30{bottom:104.040000px;}
.y2f{bottom:124.920000px;}
.y2e{bottom:146.880000px;}
.y2d{bottom:168.660000px;}
.y5c{bottom:190.440000px;}
.y2c{bottom:190.620000px;}
.y2b{bottom:211.530000px;}
.y5b{bottom:213.510000px;}
.y5a{bottom:236.550000px;}
.y2a{bottom:247.530000px;}
.y59{bottom:258.510000px;}
.y29{bottom:268.410000px;}
.y58{bottom:280.470000px;}
.y28{bottom:290.370000px;}
.y57{bottom:302.250000px;}
.y27{bottom:312.150000px;}
.y56{bottom:323.310000px;}
.y26{bottom:334.110000px;}
.y55{bottom:345.090000px;}
.y25{bottom:356.070000px;}
.y54{bottom:367.050000px;}
.y24{bottom:377.850000px;}
.y53{bottom:388.830000px;}
.y23{bottom:399.810000px;}
.y52{bottom:410.790000px;}
.y22{bottom:420.690000px;}
.y51{bottom:432.615000px;}
.y21{bottom:442.695000px;}
.y50{bottom:453.675000px;}
.y20{bottom:464.475000px;}
.y4f{bottom:475.455000px;}
.y1f{bottom:486.435000px;}
.y4e{bottom:496.515000px;}
.y1e{bottom:508.215000px;}
.y4d{bottom:518.295000px;}
.y1d{bottom:530.175000px;}
.y4c{bottom:540.255000px;}
.y1c{bottom:551.055000px;}
.y4b{bottom:562.035000px;}
.y1b{bottom:573.015000px;}
.y4a{bottom:583.995000px;}
.y1a{bottom:594.795000px;}
.y49{bottom:605.775000px;}
.y19{bottom:616.755000px;}
.y48{bottom:627.735000px;}
.y18{bottom:637.635000px;}
.y47{bottom:649.515000px;}
.y17{bottom:659.595000px;}
.y46{bottom:671.505000px;}
.y16{bottom:681.405000px;}
.y45{bottom:693.285000px;}
.y15{bottom:703.365000px;}
.y44{bottom:714.345000px;}
.y14{bottom:725.145000px;}
.y13{bottom:747.105000px;}
.y43{bottom:750.345000px;}
.y12{bottom:768.885000px;}
.y42{bottom:771.225000px;}
.y11{bottom:789.945000px;}
.y41{bottom:793.185000px;}
.y40{bottom:814.965000px;}
.y10{bottom:825.945000px;}
.y3f{bottom:836.925000px;}
.y3e{bottom:858.705000px;}
.yf{bottom:862.665000px;}
.y3d{bottom:880.665000px;}
.ye{bottom:885.705000px;}
.y3c{bottom:901.545000px;}
.yd{bottom:908.070000px;}
.y3b{bottom:923.550000px;}
.yc{bottom:928.950000px;}
.y3a{bottom:945.330000px;}
.yb{bottom:950.010000px;}
.y39{bottom:967.290000px;}
.ya{bottom:970.890000px;}
.y38{bottom:989.070000px;}
.y9{bottom:991.950000px;}
.y37{bottom:1011.030000px;}
.y8{bottom:1012.830000px;}
.y36{bottom:1032.990000px;}
.y7{bottom:1034.610000px;}
.y35{bottom:1054.770000px;}
.y6{bottom:1072.950000px;}
.y34{bottom:1076.730000px;}
.y33{bottom:1098.510000px;}
.y5{bottom:1113.090000px;}
.y32{bottom:1120.470000px;}
.y4{bottom:1138.470000px;}
.y31{bottom:1141.350000px;}
.y1{bottom:1197.000000px;}
.h3{height:32.905898px;}
.h2{height:44.534180px;}
.h7{height:58.242656px;}
.h9{height:60.577031px;}
.h6{height:61.423863px;}
.h8{height:64.558125px;}
.h5{height:68.084282px;}
.h4{height:72.984375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.416000px;}
.x3{left:111.456000px;}
.x7{left:127.656000px;}
.x6{left:149.076000px;}
.x4{left:164.370000px;}
.x5{left:212.610000px;}
.x2{left:801.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.272000pt;}
.lsa{letter-spacing:-0.243733pt;}
.ls8{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.203520pt;}
.ls7{letter-spacing:0.203733pt;}
.ls9{letter-spacing:0.286933pt;}
.ls6{letter-spacing:0.661333pt;}
.ls3{letter-spacing:18.512640pt;}
.ls0{letter-spacing:32.911360pt;}
.ls2{letter-spacing:56.912640pt;}
.ws1{word-spacing:-58.880000pt;}
.ws4{word-spacing:-18.985173pt;}
.ws2{word-spacing:-18.698240pt;}
.ws5{word-spacing:-18.454507pt;}
.ws0{word-spacing:-10.576000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.114667pt;}
._a{width:2.561707pt;}
._8{width:3.499947pt;}
._10{width:4.887893pt;}
._c{width:5.844053pt;}
._d{width:6.957867pt;}
._3{width:8.446080pt;}
._2{width:9.827200pt;}
._9{width:11.634133pt;}
._b{width:12.750933pt;}
._13{width:14.237013pt;}
._14{width:15.192320pt;}
._f{width:16.546560pt;}
._e{width:17.688960pt;}
._16{width:19.509973pt;}
._4{width:20.557440pt;}
._5{width:21.515947pt;}
._6{width:27.623253pt;}
._7{width:28.529067pt;}
._11{width:32.509440pt;}
._17{width:33.943680pt;}
._12{width:35.293440pt;}
._15{width:36.293120pt;}
._19{width:40.985600pt;}
._1a{width:41.912533pt;}
._18{width:44.066560pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.400000pt;}
.y2{bottom:64.800000pt;}
.y30{bottom:92.480000pt;}
.y2f{bottom:111.040000pt;}
.y2e{bottom:130.560000pt;}
.y2d{bottom:149.920000pt;}
.y5c{bottom:169.280000pt;}
.y2c{bottom:169.440000pt;}
.y2b{bottom:188.026667pt;}
.y5b{bottom:189.786667pt;}
.y5a{bottom:210.266667pt;}
.y2a{bottom:220.026667pt;}
.y59{bottom:229.786667pt;}
.y29{bottom:238.586667pt;}
.y58{bottom:249.306667pt;}
.y28{bottom:258.106667pt;}
.y57{bottom:268.666667pt;}
.y27{bottom:277.466667pt;}
.y56{bottom:287.386667pt;}
.y26{bottom:296.986667pt;}
.y55{bottom:306.746667pt;}
.y25{bottom:316.506667pt;}
.y54{bottom:326.266667pt;}
.y24{bottom:335.866667pt;}
.y53{bottom:345.626667pt;}
.y23{bottom:355.386667pt;}
.y52{bottom:365.146667pt;}
.y22{bottom:373.946667pt;}
.y51{bottom:384.546667pt;}
.y21{bottom:393.506667pt;}
.y50{bottom:403.266667pt;}
.y20{bottom:412.866667pt;}
.y4f{bottom:422.626667pt;}
.y1f{bottom:432.386667pt;}
.y4e{bottom:441.346667pt;}
.y1e{bottom:451.746667pt;}
.y4d{bottom:460.706667pt;}
.y1d{bottom:471.266667pt;}
.y4c{bottom:480.226667pt;}
.y1c{bottom:489.826667pt;}
.y4b{bottom:499.586667pt;}
.y1b{bottom:509.346667pt;}
.y4a{bottom:519.106667pt;}
.y1a{bottom:528.706667pt;}
.y49{bottom:538.466667pt;}
.y19{bottom:548.226667pt;}
.y48{bottom:557.986667pt;}
.y18{bottom:566.786667pt;}
.y47{bottom:577.346667pt;}
.y17{bottom:586.306667pt;}
.y46{bottom:596.893333pt;}
.y16{bottom:605.693333pt;}
.y45{bottom:616.253333pt;}
.y15{bottom:625.213333pt;}
.y44{bottom:634.973333pt;}
.y14{bottom:644.573333pt;}
.y13{bottom:664.093333pt;}
.y43{bottom:666.973333pt;}
.y12{bottom:683.453333pt;}
.y42{bottom:685.533333pt;}
.y11{bottom:702.173333pt;}
.y41{bottom:705.053333pt;}
.y40{bottom:724.413333pt;}
.y10{bottom:734.173333pt;}
.y3f{bottom:743.933333pt;}
.y3e{bottom:763.293333pt;}
.yf{bottom:766.813333pt;}
.y3d{bottom:782.813333pt;}
.ye{bottom:787.293333pt;}
.y3c{bottom:801.373333pt;}
.yd{bottom:807.173333pt;}
.y3b{bottom:820.933333pt;}
.yc{bottom:825.733333pt;}
.y3a{bottom:840.293333pt;}
.yb{bottom:844.453333pt;}
.y39{bottom:859.813333pt;}
.ya{bottom:863.013333pt;}
.y38{bottom:879.173333pt;}
.y9{bottom:881.733333pt;}
.y37{bottom:898.693333pt;}
.y8{bottom:900.293333pt;}
.y36{bottom:918.213333pt;}
.y7{bottom:919.653333pt;}
.y35{bottom:937.573333pt;}
.y6{bottom:953.733333pt;}
.y34{bottom:957.093333pt;}
.y33{bottom:976.453333pt;}
.y5{bottom:989.413333pt;}
.y32{bottom:995.973333pt;}
.y4{bottom:1011.973333pt;}
.y31{bottom:1014.533333pt;}
.y1{bottom:1064.000000pt;}
.h3{height:29.249687pt;}
.h2{height:39.585938pt;}
.h7{height:51.771250pt;}
.h9{height:53.846250pt;}
.h6{height:54.598989pt;}
.h8{height:57.385000pt;}
.h5{height:60.519362pt;}
.h4{height:64.875000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.592000pt;}
.x3{left:99.072000pt;}
.x7{left:113.472000pt;}
.x6{left:132.512000pt;}
.x4{left:146.106667pt;}
.x5{left:188.986667pt;}
.x2{left:712.773333pt;}
}




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