
    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_a9e7fff2e82fc8f9b7c6a764.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_fe8bbd51fb929987ba3c152a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006000;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_9d3dceae2ac7f544cfb7cf3d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_1d4eb3125067dbd17747414e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.881836;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_45867ac5a47c7d0d5c321a0f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.771484;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);}
.v2{vertical-align:-84.186000px;}
.v3{vertical-align:-59.532000px;}
.v1{vertical-align:-2.556000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:50.174934px;}
.ls0{letter-spacing:93.404616px;}
.ls2{letter-spacing:133.996824px;}
.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:-149.774040px;}
.ws4{word-spacing:-74.865960px;}
.ws2{word-spacing:-62.395320px;}
.ws0{word-spacing:-53.019720px;}
.ws3{word-spacing:-49.924680px;}
.ws5{word-spacing:-34.934640px;}
.ws6{word-spacing:-0.129600px;}
.ws7{word-spacing:0.000000px;}
._b{margin-left:-211.156680px;}
._7{margin-left:-47.571930px;}
._6{margin-left:-40.323780px;}
._9{margin-left:-22.323348px;}
._4{margin-left:-15.090228px;}
._5{margin-left:-11.247354px;}
._e{margin-left:-9.942936px;}
._d{margin-left:-8.576046px;}
._8{margin-left:-6.841026px;}
._1{margin-left:-5.758920px;}
._3{margin-left:-4.486284px;}
._0{margin-left:-3.455352px;}
._2{margin-left:-1.427454px;}
._a{width:1.008216px;}
._c{width:2.052048px;}
.fc4{color:rgb(144,191,220);}
.fc2{color:rgb(198,217,112);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(108,171,233);}
.fs5{font-size:84.018000px;}
.fs9{font-size:91.842000px;}
.fs8{font-size:129.600000px;}
.fs7{font-size:134.364000px;}
.fs6{font-size:192.018000px;}
.fs1{font-size:203.922000px;}
.fs3{font-size:239.982000px;}
.fs0{font-size:287.946000px;}
.fs4{font-size:360.054000px;}
.fs2{font-size:576.054000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y20{bottom:155.325000px;}
.y1f{bottom:180.538500px;}
.y26{bottom:394.624500px;}
.y4c{bottom:465.675000px;}
.y25{bottom:527.712000px;}
.y4b{bottom:536.002500px;}
.y24{bottom:603.312000px;}
.y4a{bottom:606.330000px;}
.y49{bottom:676.659000px;}
.y23{bottom:678.912000px;}
.y48{bottom:746.986500px;}
.y22{bottom:754.512000px;}
.y47{bottom:827.688000px;}
.y21{bottom:838.743000px;}
.y41{bottom:1102.492500px;}
.y40{bottom:1148.839500px;}
.y3f{bottom:1195.186500px;}
.y3e{bottom:1241.532000px;}
.y3d{bottom:1287.879000px;}
.y39{bottom:1533.813000px;}
.y38{bottom:1580.158500px;}
.y44{bottom:1611.325500px;}
.y46{bottom:1625.442000px;}
.y37{bottom:1626.505500px;}
.y43{bottom:1651.635000px;}
.y45{bottom:1671.789000px;}
.y42{bottom:1691.943000px;}
.y36{bottom:1719.198000px;}
.y35{bottom:1765.545000px;}
.y3c{bottom:2065.564500px;}
.y3b{bottom:2105.872500px;}
.y3a{bottom:2146.180500px;}
.y17{bottom:2160.936000px;}
.y16{bottom:2222.121000px;}
.y15{bottom:2283.307500px;}
.y14{bottom:2344.492500px;}
.y13{bottom:2405.679000px;}
.y34{bottom:2430.127500px;}
.y12{bottom:2466.864000px;}
.y33{bottom:2500.455000px;}
.y11{bottom:2528.050500px;}
.y32{bottom:2570.782500px;}
.y10{bottom:2589.235500px;}
.y31{bottom:2641.110000px;}
.yf{bottom:2650.422000px;}
.y30{bottom:2711.437500px;}
.ye{bottom:2711.608500px;}
.yd{bottom:2772.793500px;}
.y2f{bottom:2781.765000px;}
.yc{bottom:2843.121000px;}
.y2e{bottom:2856.303000px;}
.yb{bottom:2913.448500px;}
.ya{bottom:2983.776000px;}
.y2d{bottom:3021.747000px;}
.y9{bottom:3054.103500px;}
.y2c{bottom:3092.074500px;}
.y8{bottom:3124.431000px;}
.y2b{bottom:3162.402000px;}
.y7{bottom:3195.397500px;}
.y6{bottom:3265.086000px;}
.y2a{bottom:3303.057000px;}
.y5{bottom:3335.413500px;}
.y29{bottom:3373.384500px;}
.y4{bottom:3406.380000px;}
.y28{bottom:3443.712000px;}
.y3{bottom:3476.070000px;}
.y27{bottom:3518.248500px;}
.y2{bottom:3550.606500px;}
.y1d{bottom:3758.527500px;}
.y1c{bottom:3823.327500px;}
.y1b{bottom:3888.127500px;}
.y1a{bottom:3952.927500px;}
.y1e{bottom:4083.930000px;}
.y19{bottom:4216.252500px;}
.y18{bottom:4389.052500px;}
.h8{height:60.880230px;}
.hc{height:96.468330px;}
.hd{height:96.474330px;}
.ha{height:102.788460px;}
.hb{height:136.092690px;}
.h9{height:146.893770px;}
.h4{height:156.000330px;}
.h6{height:183.586230px;}
.h3{height:220.278690px;}
.h7{height:275.441310px;}
.h5{height:440.681310px;}
.h2{height:5055.505500px;}
.h0{height:5055.548031px;}
.h1{height:5055.750000px;}
.w2{width:3575.776500px;}
.w0{width:3575.820472px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x24{left:205.369500px;}
.x25{left:206.859000px;}
.x12{left:231.646500px;}
.xb{left:239.896500px;}
.x10{left:243.127500px;}
.x5{left:266.641500px;}
.x21{left:378.382500px;}
.x1f{left:382.762500px;}
.x20{left:384.846000px;}
.xc{left:441.949500px;}
.x7{left:694.474500px;}
.xf{left:714.373500px;}
.x14{left:758.125500px;}
.x11{left:763.525500px;}
.x16{left:773.901000px;}
.x15{left:821.055000px;}
.x1c{left:822.586500px;}
.x13{left:824.031000px;}
.x19{left:826.795500px;}
.x17{left:830.239500px;}
.x1a{left:832.536000px;}
.x1d{left:835.980000px;}
.x18{left:851.074500px;}
.x1e{left:857.791500px;}
.x1b{left:867.657000px;}
.x9{left:997.767000px;}
.x6{left:1138.380000px;}
.xa{left:1174.989000px;}
.x8{left:1275.420000px;}
.x22{left:1277.886000px;}
.x23{left:1304.716500px;}
.xd{left:1522.630500px;}
.xe{left:1562.938500px;}
.x2{left:1957.861500px;}
.x3{left:1959.349500px;}
.x4{left:2011.861500px;}
.x1{left:2443.692000px;}
@media print{
.v2{vertical-align:-74.832000pt;}
.v3{vertical-align:-52.917333pt;}
.v1{vertical-align:-2.272000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:44.599941pt;}
.ls0{letter-spacing:83.026325pt;}
.ls2{letter-spacing:119.108288pt;}
.ws1{word-spacing:-133.132480pt;}
.ws4{word-spacing:-66.547520pt;}
.ws2{word-spacing:-55.462507pt;}
.ws0{word-spacing:-47.128640pt;}
.ws3{word-spacing:-44.377493pt;}
.ws5{word-spacing:-31.053013pt;}
.ws6{word-spacing:-0.115200pt;}
.ws7{word-spacing:0.000000pt;}
._b{margin-left:-187.694827pt;}
._7{margin-left:-42.286160pt;}
._6{margin-left:-35.843360pt;}
._9{margin-left:-19.842976pt;}
._4{margin-left:-13.413536pt;}
._5{margin-left:-9.997648pt;}
._e{margin-left:-8.838165pt;}
._d{margin-left:-7.623152pt;}
._8{margin-left:-6.080912pt;}
._1{margin-left:-5.119040pt;}
._3{margin-left:-3.987808pt;}
._0{margin-left:-3.071424pt;}
._2{margin-left:-1.268848pt;}
._a{width:0.896192pt;}
._c{width:1.824043pt;}
.fs5{font-size:74.682667pt;}
.fs9{font-size:81.637333pt;}
.fs8{font-size:115.200000pt;}
.fs7{font-size:119.434667pt;}
.fs6{font-size:170.682667pt;}
.fs1{font-size:181.264000pt;}
.fs3{font-size:213.317333pt;}
.fs0{font-size:255.952000pt;}
.fs4{font-size:320.048000pt;}
.fs2{font-size:512.048000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y20{bottom:138.066667pt;}
.y1f{bottom:160.478667pt;}
.y26{bottom:350.777333pt;}
.y4c{bottom:413.933333pt;}
.y25{bottom:469.077333pt;}
.y4b{bottom:476.446667pt;}
.y24{bottom:536.277333pt;}
.y4a{bottom:538.960000pt;}
.y49{bottom:601.474667pt;}
.y23{bottom:603.477333pt;}
.y48{bottom:663.988000pt;}
.y22{bottom:670.677333pt;}
.y47{bottom:735.722667pt;}
.y21{bottom:745.549333pt;}
.y41{bottom:979.993333pt;}
.y40{bottom:1021.190667pt;}
.y3f{bottom:1062.388000pt;}
.y3e{bottom:1103.584000pt;}
.y3d{bottom:1144.781333pt;}
.y39{bottom:1363.389333pt;}
.y38{bottom:1404.585333pt;}
.y44{bottom:1432.289333pt;}
.y46{bottom:1444.837333pt;}
.y37{bottom:1445.782667pt;}
.y43{bottom:1468.120000pt;}
.y45{bottom:1486.034667pt;}
.y42{bottom:1503.949333pt;}
.y36{bottom:1528.176000pt;}
.y35{bottom:1569.373333pt;}
.y3c{bottom:1836.057333pt;}
.y3b{bottom:1871.886667pt;}
.y3a{bottom:1907.716000pt;}
.y17{bottom:1920.832000pt;}
.y16{bottom:1975.218667pt;}
.y15{bottom:2029.606667pt;}
.y14{bottom:2083.993333pt;}
.y13{bottom:2138.381333pt;}
.y34{bottom:2160.113333pt;}
.y12{bottom:2192.768000pt;}
.y33{bottom:2222.626667pt;}
.y11{bottom:2247.156000pt;}
.y32{bottom:2285.140000pt;}
.y10{bottom:2301.542667pt;}
.y31{bottom:2347.653333pt;}
.yf{bottom:2355.930667pt;}
.y30{bottom:2410.166667pt;}
.ye{bottom:2410.318667pt;}
.yd{bottom:2464.705333pt;}
.y2f{bottom:2472.680000pt;}
.yc{bottom:2527.218667pt;}
.y2e{bottom:2538.936000pt;}
.yb{bottom:2589.732000pt;}
.ya{bottom:2652.245333pt;}
.y2d{bottom:2685.997333pt;}
.y9{bottom:2714.758667pt;}
.y2c{bottom:2748.510667pt;}
.y8{bottom:2777.272000pt;}
.y2b{bottom:2811.024000pt;}
.y7{bottom:2840.353333pt;}
.y6{bottom:2902.298667pt;}
.y2a{bottom:2936.050667pt;}
.y5{bottom:2964.812000pt;}
.y29{bottom:2998.564000pt;}
.y4{bottom:3027.893333pt;}
.y28{bottom:3061.077333pt;}
.y3{bottom:3089.840000pt;}
.y27{bottom:3127.332000pt;}
.y2{bottom:3156.094667pt;}
.y1d{bottom:3340.913333pt;}
.y1c{bottom:3398.513333pt;}
.y1b{bottom:3456.113333pt;}
.y1a{bottom:3513.713333pt;}
.y1e{bottom:3630.160000pt;}
.y19{bottom:3747.780000pt;}
.y18{bottom:3901.380000pt;}
.h8{height:54.115760pt;}
.hc{height:85.749627pt;}
.hd{height:85.754960pt;}
.ha{height:91.367520pt;}
.hb{height:120.971280pt;}
.h9{height:130.572240pt;}
.h4{height:138.666960pt;}
.h6{height:163.187760pt;}
.h3{height:195.803280pt;}
.h7{height:244.836720pt;}
.h5{height:391.716720pt;}
.h2{height:4493.782667pt;}
.h0{height:4493.820472pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.468000pt;}
.w0{width:3178.507087pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x24{left:182.550667pt;}
.x25{left:183.874667pt;}
.x12{left:205.908000pt;}
.xb{left:213.241333pt;}
.x10{left:216.113333pt;}
.x5{left:237.014667pt;}
.x21{left:336.340000pt;}
.x1f{left:340.233333pt;}
.x20{left:342.085333pt;}
.xc{left:392.844000pt;}
.x7{left:617.310667pt;}
.xf{left:634.998667pt;}
.x14{left:673.889333pt;}
.x11{left:678.689333pt;}
.x16{left:687.912000pt;}
.x15{left:729.826667pt;}
.x1c{left:731.188000pt;}
.x13{left:732.472000pt;}
.x19{left:734.929333pt;}
.x17{left:737.990667pt;}
.x1a{left:740.032000pt;}
.x1d{left:743.093333pt;}
.x18{left:756.510667pt;}
.x1e{left:762.481333pt;}
.x1b{left:771.250667pt;}
.x9{left:886.904000pt;}
.x6{left:1011.893333pt;}
.xa{left:1044.434667pt;}
.x8{left:1133.706667pt;}
.x22{left:1135.898667pt;}
.x23{left:1159.748000pt;}
.xd{left:1353.449333pt;}
.xe{left:1389.278667pt;}
.x2{left:1740.321333pt;}
.x3{left:1741.644000pt;}
.x4{left:1788.321333pt;}
.x1{left:2172.170667pt;}
}




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