
    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_4c894f23f660974dcc64dbdf.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_788e34494169b39c88e386c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_779b88c817f84ff0095fa410.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_5fdbe2f4300c87bdc04b667a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_554671c381a8277acc6c4623.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_41521603c01ad44440be97f2.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;}
.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;}
.ls4{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.360000px;}
.ls0{letter-spacing:2.700000px;}
.ls1{letter-spacing:3.420000px;}
.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:-108.072000px;}
.ws2{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-9.519120px;}
._0{margin-left:-7.308000px;}
._3{margin-left:-6.233760px;}
._4{margin-left:-4.906800px;}
._6{margin-left:-3.622320px;}
._2{margin-left:-2.527200px;}
._1{margin-left:-1.347840px;}
._7{width:1.010880px;}
._8{width:2.527440px;}
._11{width:3.855120px;}
._1a{width:4.874160px;}
._16{width:6.103920px;}
._9{width:8.002800px;}
._a{width:9.519120px;}
._c{width:11.372400px;}
._d{width:12.720240px;}
._18{width:14.405040px;}
._19{width:15.415920px;}
._1c{width:16.848000px;}
._10{width:17.943120px;}
._b{width:18.954000px;}
._5{width:20.049120px;}
._1e{width:22.323600px;}
._13{width:24.345360px;}
._1b{width:25.608960px;}
._e{width:26.956800px;}
._f{width:27.975600px;}
._17{width:29.061840px;}
._1f{width:30.832800px;}
._14{width:53.408160px;}
._15{width:54.730800px;}
._12{width:82.218240px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.y5{bottom:-39.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.436000px;}
.y4{bottom:6.300000px;}
.y6{bottom:16.740000px;}
.y2{bottom:56.916000px;}
.y4f{bottom:94.536000px;}
.y2a{bottom:123.516000px;}
.y4e{bottom:129.816000px;}
.y4d{bottom:155.910000px;}
.y29{bottom:161.670000px;}
.y4c{bottom:181.830000px;}
.y28{bottom:187.590000px;}
.y4b{bottom:207.930000px;}
.y27{bottom:213.690000px;}
.y4a{bottom:234.030000px;}
.y26{bottom:239.790000px;}
.y25{bottom:265.890000px;}
.y49{bottom:272.010000px;}
.y24{bottom:291.855000px;}
.y48{bottom:298.155000px;}
.y47{bottom:324.255000px;}
.y23{bottom:330.015000px;}
.y46{bottom:350.355000px;}
.y22{bottom:356.115000px;}
.y45{bottom:376.275000px;}
.y21{bottom:382.035000px;}
.y44{bottom:402.375000px;}
.y20{bottom:420.195000px;}
.y43{bottom:428.475000px;}
.y1f{bottom:446.295000px;}
.y42{bottom:454.575000px;}
.y1e{bottom:472.215000px;}
.y41{bottom:480.675000px;}
.y1d{bottom:498.315000px;}
.y40{bottom:506.595000px;}
.y1c{bottom:524.415000px;}
.y3f{bottom:532.695000px;}
.y1b{bottom:550.515000px;}
.y3e{bottom:558.795000px;}
.y3d{bottom:584.925000px;}
.y1a{bottom:588.525000px;}
.y3c{bottom:610.845000px;}
.y19{bottom:614.625000px;}
.y3b{bottom:636.945000px;}
.y18{bottom:640.725000px;}
.y3a{bottom:663.045000px;}
.y17{bottom:666.825000px;}
.y39{bottom:689.145000px;}
.y16{bottom:704.805000px;}
.y63{bottom:713.625000px;}
.y38{bottom:715.245000px;}
.y15{bottom:730.905000px;}
.y37{bottom:741.165000px;}
.y14{bottom:757.005000px;}
.y62{bottom:758.265000px;}
.y36{bottom:767.265000px;}
.y61{bottom:778.965000px;}
.y13{bottom:782.925000px;}
.y35{bottom:793.365000px;}
.y60{bottom:799.665000px;}
.y12{bottom:809.025000px;}
.y34{bottom:819.465000px;}
.y5f{bottom:820.365000px;}
.y11{bottom:835.125000px;}
.y5e{bottom:841.065000px;}
.y33{bottom:845.385000px;}
.y10{bottom:861.270000px;}
.y5d{bottom:861.810000px;}
.y32{bottom:871.530000px;}
.y5c{bottom:882.510000px;}
.yf{bottom:887.190000px;}
.y31{bottom:897.630000px;}
.y5b{bottom:903.210000px;}
.y30{bottom:923.730000px;}
.y5a{bottom:923.910000px;}
.ye{bottom:925.350000px;}
.y59{bottom:944.610000px;}
.y2f{bottom:961.710000px;}
.yd{bottom:963.330000px;}
.y58{bottom:965.310000px;}
.y57{bottom:986.010000px;}
.yc{bottom:989.430000px;}
.y2e{bottom:999.870000px;}
.y56{bottom:1006.710000px;}
.y2d{bottom:1025.790000px;}
.y55{bottom:1027.410000px;}
.yb{bottom:1034.610000px;}
.y54{bottom:1048.110000px;}
.y2c{bottom:1051.890000px;}
.y53{bottom:1068.810000px;}
.ya{bottom:1079.790000px;}
.y52{bottom:1089.510000px;}
.y2b{bottom:1090.050000px;}
.y9{bottom:1103.910000px;}
.y51{bottom:1110.210000px;}
.y8{bottom:1128.030000px;}
.y50{bottom:1130.940000px;}
.y1{bottom:1151.640000px;}
.y3{bottom:1225.080000px;}
.h3{height:31.680000px;}
.h2{height:50.484375px;}
.h5{height:51.660000px;}
.h8{height:59.066719px;}
.h9{height:62.261719px;}
.h7{height:72.846211px;}
.h6{height:87.761391px;}
.h4{height:93.392578px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:49.500000px;}
.w3{width:281.910000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:16.170000px;}
.x3{left:46.440000px;}
.x1{left:63.899987px;}
.x8{left:100.295987px;}
.x7{left:138.455987px;}
.x4{left:140.940000px;}
.x9{left:184.529987px;}
.xa{left:291.809987px;}
.x2{left:498.705000px;}
.x5{left:836.280000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls0{letter-spacing:2.400000pt;}
.ls1{letter-spacing:3.040000pt;}
.ws0{word-spacing:-96.064000pt;}
.ws2{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-8.461440pt;}
._0{margin-left:-6.496000pt;}
._3{margin-left:-5.541120pt;}
._4{margin-left:-4.361600pt;}
._6{margin-left:-3.219840pt;}
._2{margin-left:-2.246400pt;}
._1{margin-left:-1.198080pt;}
._7{width:0.898560pt;}
._8{width:2.246613pt;}
._11{width:3.426773pt;}
._1a{width:4.332587pt;}
._16{width:5.425707pt;}
._9{width:7.113600pt;}
._a{width:8.461440pt;}
._c{width:10.108800pt;}
._d{width:11.306880pt;}
._18{width:12.804480pt;}
._19{width:13.703040pt;}
._1c{width:14.976000pt;}
._10{width:15.949440pt;}
._b{width:16.848000pt;}
._5{width:17.821440pt;}
._1e{width:19.843200pt;}
._13{width:21.640320pt;}
._1b{width:22.763520pt;}
._e{width:23.961600pt;}
._f{width:24.867200pt;}
._17{width:25.832747pt;}
._1f{width:27.406933pt;}
._14{width:47.473920pt;}
._15{width:48.649600pt;}
._12{width:73.082880pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.y5{bottom:-34.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.832000pt;}
.y4{bottom:5.600000pt;}
.y6{bottom:14.880000pt;}
.y2{bottom:50.592000pt;}
.y4f{bottom:84.032000pt;}
.y2a{bottom:109.792000pt;}
.y4e{bottom:115.392000pt;}
.y4d{bottom:138.586667pt;}
.y29{bottom:143.706667pt;}
.y4c{bottom:161.626667pt;}
.y28{bottom:166.746667pt;}
.y4b{bottom:184.826667pt;}
.y27{bottom:189.946667pt;}
.y4a{bottom:208.026667pt;}
.y26{bottom:213.146667pt;}
.y25{bottom:236.346667pt;}
.y49{bottom:241.786667pt;}
.y24{bottom:259.426667pt;}
.y48{bottom:265.026667pt;}
.y47{bottom:288.226667pt;}
.y23{bottom:293.346667pt;}
.y46{bottom:311.426667pt;}
.y22{bottom:316.546667pt;}
.y45{bottom:334.466667pt;}
.y21{bottom:339.586667pt;}
.y44{bottom:357.666667pt;}
.y20{bottom:373.506667pt;}
.y43{bottom:380.866667pt;}
.y1f{bottom:396.706667pt;}
.y42{bottom:404.066667pt;}
.y1e{bottom:419.746667pt;}
.y41{bottom:427.266667pt;}
.y1d{bottom:442.946667pt;}
.y40{bottom:450.306667pt;}
.y1c{bottom:466.146667pt;}
.y3f{bottom:473.506667pt;}
.y1b{bottom:489.346667pt;}
.y3e{bottom:496.706667pt;}
.y3d{bottom:519.933333pt;}
.y1a{bottom:523.133333pt;}
.y3c{bottom:542.973333pt;}
.y19{bottom:546.333333pt;}
.y3b{bottom:566.173333pt;}
.y18{bottom:569.533333pt;}
.y3a{bottom:589.373333pt;}
.y17{bottom:592.733333pt;}
.y39{bottom:612.573333pt;}
.y16{bottom:626.493333pt;}
.y63{bottom:634.333333pt;}
.y38{bottom:635.773333pt;}
.y15{bottom:649.693333pt;}
.y37{bottom:658.813333pt;}
.y14{bottom:672.893333pt;}
.y62{bottom:674.013333pt;}
.y36{bottom:682.013333pt;}
.y61{bottom:692.413333pt;}
.y13{bottom:695.933333pt;}
.y35{bottom:705.213333pt;}
.y60{bottom:710.813333pt;}
.y12{bottom:719.133333pt;}
.y34{bottom:728.413333pt;}
.y5f{bottom:729.213333pt;}
.y11{bottom:742.333333pt;}
.y5e{bottom:747.613333pt;}
.y33{bottom:751.453333pt;}
.y10{bottom:765.573333pt;}
.y5d{bottom:766.053333pt;}
.y32{bottom:774.693333pt;}
.y5c{bottom:784.453333pt;}
.yf{bottom:788.613333pt;}
.y31{bottom:797.893333pt;}
.y5b{bottom:802.853333pt;}
.y30{bottom:821.093333pt;}
.y5a{bottom:821.253333pt;}
.ye{bottom:822.533333pt;}
.y59{bottom:839.653333pt;}
.y2f{bottom:854.853333pt;}
.yd{bottom:856.293333pt;}
.y58{bottom:858.053333pt;}
.y57{bottom:876.453333pt;}
.yc{bottom:879.493333pt;}
.y2e{bottom:888.773333pt;}
.y56{bottom:894.853333pt;}
.y2d{bottom:911.813333pt;}
.y55{bottom:913.253333pt;}
.yb{bottom:919.653333pt;}
.y54{bottom:931.653333pt;}
.y2c{bottom:935.013333pt;}
.y53{bottom:950.053333pt;}
.ya{bottom:959.813333pt;}
.y52{bottom:968.453333pt;}
.y2b{bottom:968.933333pt;}
.y9{bottom:981.253333pt;}
.y51{bottom:986.853333pt;}
.y8{bottom:1002.693333pt;}
.y50{bottom:1005.280000pt;}
.y1{bottom:1023.680000pt;}
.y3{bottom:1088.960000pt;}
.h3{height:28.160000pt;}
.h2{height:44.875000pt;}
.h5{height:45.920000pt;}
.h8{height:52.503750pt;}
.h9{height:55.343750pt;}
.h7{height:64.752187pt;}
.h6{height:78.010125pt;}
.h4{height:83.015625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:44.000000pt;}
.w3{width:250.586667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:14.373333pt;}
.x3{left:41.280000pt;}
.x1{left:56.799988pt;}
.x8{left:89.151988pt;}
.x7{left:123.071988pt;}
.x4{left:125.280000pt;}
.x9{left:164.026655pt;}
.xa{left:259.386655pt;}
.x2{left:443.293333pt;}
.x5{left:743.360000pt;}
}




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