
    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_51f7b18b5e056e91a06621f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_ee4af02e8364f6b1e58ed411.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976562;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_02ade50d8ec92eedcbcfb516.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_8b16ed440ab81c0b77476366.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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;}
.ls8{letter-spacing:-0.425400px;}
.ls7{letter-spacing:-0.378600px;}
.lse{letter-spacing:-0.376800px;}
.lsf{letter-spacing:-0.356400px;}
.lsc{letter-spacing:-0.171600px;}
.ls5{letter-spacing:-0.134400px;}
.ls9{letter-spacing:-0.110400px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.049680px;}
.ls1{letter-spacing:0.110400px;}
.lsa{letter-spacing:0.339000px;}
.ls10{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.766800px;}
.lsd{letter-spacing:0.768000px;}
.lsb{letter-spacing:0.816000px;}
.ls2{letter-spacing:132.033600px;}
.ls0{letter-spacing:132.084000px;}
.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;}
}
.ws14{word-spacing:-47.092200px;}
.ws5{word-spacing:-46.753200px;}
.ws12{word-spacing:-46.642800px;}
.ws2f{word-spacing:-46.581600px;}
.ws30{word-spacing:-46.396800px;}
.ws2c{word-spacing:-46.376400px;}
.ws2e{word-spacing:-35.100000px;}
.ws21{word-spacing:-0.545040px;}
.wse{word-spacing:-0.294480px;}
.ws11{word-spacing:-0.084960px;}
.ws31{word-spacing:0.000000px;}
.ws4{word-spacing:0.030960px;}
.ws1f{word-spacing:0.113760px;}
.ws10{word-spacing:0.249840px;}
.ws22{word-spacing:0.290880px;}
.ws23{word-spacing:0.333120px;}
.ws3{word-spacing:0.503280px;}
.ws1e{word-spacing:0.600480px;}
.wsc{word-spacing:0.675840px;}
.ws20{word-spacing:0.676800px;}
.wsf{word-spacing:0.830880px;}
.ws1{word-spacing:0.869760px;}
.ws2{word-spacing:0.917280px;}
.ws0{word-spacing:1.114560px;}
.wsa{word-spacing:1.136640px;}
.ws8{word-spacing:1.218240px;}
.ws2b{word-spacing:1.275840px;}
.ws9{word-spacing:2.070360px;}
.wsb{word-spacing:2.157840px;}
.ws2d{word-spacing:2.185200px;}
.wsd{word-spacing:3.006960px;}
.ws19{word-spacing:7.400160px;}
.ws18{word-spacing:8.173440px;}
.ws1c{word-spacing:8.753760px;}
.ws1a{word-spacing:9.300960px;}
.ws1d{word-spacing:9.371520px;}
.ws6{word-spacing:9.726240px;}
.ws7{word-spacing:9.826560px;}
.ws1b{word-spacing:9.990360px;}
.ws29{word-spacing:32.901120px;}
.ws28{word-spacing:33.440400px;}
.ws24{word-spacing:33.921360px;}
.ws25{word-spacing:34.050960px;}
.ws2a{word-spacing:34.438320px;}
.ws26{word-spacing:35.002800px;}
.ws27{word-spacing:35.910360px;}
.ws13{word-spacing:56.304720px;}
.ws17{word-spacing:56.373120px;}
.ws16{word-spacing:56.450880px;}
.ws15{word-spacing:57.054960px;}
._2{margin-left:-1.241520px;}
._9{width:1.080000px;}
._0{width:2.157840px;}
._a{width:3.938400px;}
._3{width:48.279840px;}
._1{width:49.301280px;}
._6{width:56.074320px;}
._7{width:57.121200px;}
._4{width:58.276560px;}
._8{width:81.735840px;}
._5{width:105.114240px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(30,100,200);}
.fs5{font-size:72.000000px;}
.fs4{font-size:180.000000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.fs3{font-size:300.240000px;}
.fs6{font-size:324.000000px;}
.fs7{font-size:324.144000px;}
.fs2{font-size:540.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:431.970000px;}
.y22{bottom:473.040000px;}
.y1b{bottom:510.630000px;}
.y21{bottom:559.440000px;}
.y1a{bottom:618.630000px;}
.y20{bottom:645.840000px;}
.y1f{bottom:732.240000px;}
.y1e{bottom:818.640000px;}
.y19{bottom:895.110000px;}
.y1d{bottom:905.040000px;}
.y1c{bottom:991.440000px;}
.y18{bottom:1012.830000px;}
.y13{bottom:1131.810000px;}
.y12{bottom:1203.810000px;}
.y2e{bottom:1235.880000px;}
.y11{bottom:1275.810000px;}
.y2d{bottom:1307.880000px;}
.y10{bottom:1347.810000px;}
.y2c{bottom:1379.880000px;}
.yf{bottom:1419.810000px;}
.y2b{bottom:1451.880000px;}
.ye{bottom:1491.810000px;}
.y2a{bottom:1523.880000px;}
.yd{bottom:1563.840000px;}
.y29{bottom:1595.880000px;}
.y28{bottom:1667.880000px;}
.y27{bottom:1739.880000px;}
.y30{bottom:1754.610000px;}
.y32{bottom:1758.420000px;}
.y26{bottom:1811.880000px;}
.y2f{bottom:1851.810000px;}
.y31{bottom:1855.620000px;}
.y25{bottom:1883.880000px;}
.y24{bottom:1955.880000px;}
.ya{bottom:2021.580000px;}
.yc{bottom:2217.420000px;}
.y9{bottom:2756.190000px;}
.y8{bottom:2828.190000px;}
.y7{bottom:2900.190000px;}
.y6{bottom:2972.190000px;}
.y5{bottom:3044.190000px;}
.y4{bottom:3116.190000px;}
.y3{bottom:3188.190000px;}
.y2{bottom:3267.210000px;}
.yb{bottom:4119.735000px;}
.y1{bottom:4127.115000px;}
.y15{bottom:4238.250000px;}
.y14{bottom:4395.750000px;}
.y17{bottom:4551.765000px;}
.y16{bottom:4656.210000px;}
.h7{height:52.734375px;}
.h6{height:131.835938px;}
.h2{height:175.605469px;}
.h3{height:175.710937px;}
.h5{height:219.902344px;}
.h8{height:237.304688px;}
.h9{height:237.410156px;}
.h4{height:395.507812px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x5{left:185.579947px;}
.x1{left:189.329947px;}
.x8{left:210.929947px;}
.x2{left:243.329947px;}
.x9{left:264.929947px;}
.x3{left:1868.069947px;}
.x4{left:1922.069947px;}
.x6{left:1950.404947px;}
.x7{left:2046.344947px;}
.xa{left:2250.929947px;}
.xb{left:3048.089947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.378133pt;}
.ls7{letter-spacing:-0.336533pt;}
.lse{letter-spacing:-0.334933pt;}
.lsf{letter-spacing:-0.316800pt;}
.lsc{letter-spacing:-0.152533pt;}
.ls5{letter-spacing:-0.119467pt;}
.ls9{letter-spacing:-0.098133pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.044160pt;}
.ls1{letter-spacing:0.098133pt;}
.lsa{letter-spacing:0.301333pt;}
.ls10{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.681600pt;}
.lsd{letter-spacing:0.682667pt;}
.lsb{letter-spacing:0.725333pt;}
.ls2{letter-spacing:117.363200pt;}
.ls0{letter-spacing:117.408000pt;}
.ws14{word-spacing:-41.859733pt;}
.ws5{word-spacing:-41.558400pt;}
.ws12{word-spacing:-41.460267pt;}
.ws2f{word-spacing:-41.405867pt;}
.ws30{word-spacing:-41.241600pt;}
.ws2c{word-spacing:-41.223467pt;}
.ws2e{word-spacing:-31.200000pt;}
.ws21{word-spacing:-0.484480pt;}
.wse{word-spacing:-0.261760pt;}
.ws11{word-spacing:-0.075520pt;}
.ws31{word-spacing:0.000000pt;}
.ws4{word-spacing:0.027520pt;}
.ws1f{word-spacing:0.101120pt;}
.ws10{word-spacing:0.222080pt;}
.ws22{word-spacing:0.258560pt;}
.ws23{word-spacing:0.296107pt;}
.ws3{word-spacing:0.447360pt;}
.ws1e{word-spacing:0.533760pt;}
.wsc{word-spacing:0.600747pt;}
.ws20{word-spacing:0.601600pt;}
.wsf{word-spacing:0.738560pt;}
.ws1{word-spacing:0.773120pt;}
.ws2{word-spacing:0.815360pt;}
.ws0{word-spacing:0.990720pt;}
.wsa{word-spacing:1.010347pt;}
.ws8{word-spacing:1.082880pt;}
.ws2b{word-spacing:1.134080pt;}
.ws9{word-spacing:1.840320pt;}
.wsb{word-spacing:1.918080pt;}
.ws2d{word-spacing:1.942400pt;}
.wsd{word-spacing:2.672853pt;}
.ws19{word-spacing:6.577920pt;}
.ws18{word-spacing:7.265280pt;}
.ws1c{word-spacing:7.781120pt;}
.ws1a{word-spacing:8.267520pt;}
.ws1d{word-spacing:8.330240pt;}
.ws6{word-spacing:8.645547pt;}
.ws7{word-spacing:8.734720pt;}
.ws1b{word-spacing:8.880320pt;}
.ws29{word-spacing:29.245440pt;}
.ws28{word-spacing:29.724800pt;}
.ws24{word-spacing:30.152320pt;}
.ws25{word-spacing:30.267520pt;}
.ws2a{word-spacing:30.611840pt;}
.ws26{word-spacing:31.113600pt;}
.ws27{word-spacing:31.920320pt;}
.ws13{word-spacing:50.048640pt;}
.ws17{word-spacing:50.109440pt;}
.ws16{word-spacing:50.178560pt;}
.ws15{word-spacing:50.715520pt;}
._2{margin-left:-1.103573pt;}
._9{width:0.960000pt;}
._0{width:1.918080pt;}
._a{width:3.500800pt;}
._3{width:42.915413pt;}
._1{width:43.823360pt;}
._6{width:49.843840pt;}
._7{width:50.774400pt;}
._4{width:51.801387pt;}
._8{width:72.654080pt;}
._5{width:93.434880pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:160.000000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.fs3{font-size:266.880000pt;}
.fs6{font-size:288.000000pt;}
.fs7{font-size:288.128000pt;}
.fs2{font-size:480.000000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:383.973333pt;}
.y22{bottom:420.480000pt;}
.y1b{bottom:453.893333pt;}
.y21{bottom:497.280000pt;}
.y1a{bottom:549.893333pt;}
.y20{bottom:574.080000pt;}
.y1f{bottom:650.880000pt;}
.y1e{bottom:727.680000pt;}
.y19{bottom:795.653333pt;}
.y1d{bottom:804.480000pt;}
.y1c{bottom:881.280000pt;}
.y18{bottom:900.293333pt;}
.y13{bottom:1006.053333pt;}
.y12{bottom:1070.053333pt;}
.y2e{bottom:1098.560000pt;}
.y11{bottom:1134.053333pt;}
.y2d{bottom:1162.560000pt;}
.y10{bottom:1198.053333pt;}
.y2c{bottom:1226.560000pt;}
.yf{bottom:1262.053333pt;}
.y2b{bottom:1290.560000pt;}
.ye{bottom:1326.053333pt;}
.y2a{bottom:1354.560000pt;}
.yd{bottom:1390.080000pt;}
.y29{bottom:1418.560000pt;}
.y28{bottom:1482.560000pt;}
.y27{bottom:1546.560000pt;}
.y30{bottom:1559.653333pt;}
.y32{bottom:1563.040000pt;}
.y26{bottom:1610.560000pt;}
.y2f{bottom:1646.053333pt;}
.y31{bottom:1649.440000pt;}
.y25{bottom:1674.560000pt;}
.y24{bottom:1738.560000pt;}
.ya{bottom:1796.960000pt;}
.yc{bottom:1971.040000pt;}
.y9{bottom:2449.946667pt;}
.y8{bottom:2513.946667pt;}
.y7{bottom:2577.946667pt;}
.y6{bottom:2641.946667pt;}
.y5{bottom:2705.946667pt;}
.y4{bottom:2769.946667pt;}
.y3{bottom:2833.946667pt;}
.y2{bottom:2904.186667pt;}
.yb{bottom:3661.986667pt;}
.y1{bottom:3668.546667pt;}
.y15{bottom:3767.333333pt;}
.y14{bottom:3907.333333pt;}
.y17{bottom:4046.013333pt;}
.y16{bottom:4138.853333pt;}
.h7{height:46.875000pt;}
.h6{height:117.187500pt;}
.h2{height:156.093750pt;}
.h3{height:156.187500pt;}
.h5{height:195.468750pt;}
.h8{height:210.937500pt;}
.h9{height:211.031250pt;}
.h4{height:351.562500pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x5{left:164.959953pt;}
.x1{left:168.293286pt;}
.x8{left:187.493286pt;}
.x2{left:216.293286pt;}
.x9{left:235.493286pt;}
.x3{left:1660.506619pt;}
.x4{left:1708.506619pt;}
.x6{left:1733.693286pt;}
.x7{left:1818.973286pt;}
.xa{left:2000.826619pt;}
.xb{left:2709.413286pt;}
}




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