
    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_d2870d8f2a9b21ac821bc742.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921000;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_1e707f19a7e85d4bb6d95020.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_4fbede8c47374d91162f0659.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921213;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_fe715dac423fc2efb01b1f0c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_8e01475e0e4ce1673b3578df.woff')format("woff");}.ff5{font-family:ff5;line-height:0.701000;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;}
.ls0{letter-spacing:-0.014400px;}
.ls3{letter-spacing:-0.011635px;}
.ls4{letter-spacing:-0.008400px;}
.ls2{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.453600px;}
.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:-50.040000px;}
.ws15{word-spacing:-20.469600px;}
.ws13{word-spacing:-20.016000px;}
.ws14{word-spacing:-5.198400px;}
.wsb{word-spacing:-2.858400px;}
.wsd{word-spacing:-2.563200px;}
.ws19{word-spacing:-1.807200px;}
.wsf{word-spacing:-0.540000px;}
.ws7{word-spacing:-0.129600px;}
.ws1a{word-spacing:-0.050400px;}
.ws1c{word-spacing:0.000000px;}
.ws24{word-spacing:0.468000px;}
.ws6{word-spacing:0.727200px;}
.ws2{word-spacing:1.152000px;}
.ws8{word-spacing:2.001600px;}
.ws12{word-spacing:2.335200px;}
.ws23{word-spacing:2.491200px;}
.ws17{word-spacing:2.894400px;}
.ws5{word-spacing:3.340800px;}
.ws11{word-spacing:3.851053px;}
.ws1d{word-spacing:4.096800px;}
.ws1{word-spacing:4.492800px;}
.ws21{word-spacing:4.874400px;}
.wsa{word-spacing:5.004000px;}
.ws16{word-spacing:5.745600px;}
.ws9{word-spacing:6.004800px;}
.wse{word-spacing:6.321600px;}
.ws1b{word-spacing:8.942400px;}
.ws20{word-spacing:10.008000px;}
.ws18{word-spacing:11.822400px;}
.ws10{word-spacing:13.104000px;}
.ws1e{word-spacing:13.636800px;}
.ws1f{word-spacing:15.480000px;}
.wsc{word-spacing:15.832800px;}
.ws4{word-spacing:18.187200px;}
.ws22{word-spacing:19.476000px;}
.ws3{word-spacing:23.558400px;}
.ws25{word-spacing:29.815200px;}
._9{margin-left:-10.818000px;}
._19{margin-left:-9.000000px;}
._d{margin-left:-6.487200px;}
._10{margin-left:-5.356800px;}
._2{margin-left:-3.528000px;}
._8{margin-left:-2.520000px;}
._0{margin-left:-1.411200px;}
._3{width:1.440000px;}
._1{width:2.484000px;}
._a{width:3.600000px;}
._c{width:6.710400px;}
._11{width:10.533600px;}
._7{width:12.708000px;}
._f{width:14.025600px;}
._b{width:15.091200px;}
._6{width:16.495200px;}
._12{width:19.015200px;}
._13{width:20.030400px;}
._16{width:22.795200px;}
._14{width:24.602400px;}
._15{width:27.424800px;}
._5{width:30.672000px;}
._17{width:32.623200px;}
._4{width:36.388800px;}
._18{width:42.141600px;}
._e{width:59.551200px;}
.fc2{color:rgb(248,152,40);}
.fc1{color:rgb(158,28,32);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:116.346000px;}
.fs2{font-size:180.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.082500px;}
.y28{bottom:26.067750px;}
.yb{bottom:30.184950px;}
.y26{bottom:124.767900px;}
.y4b{bottom:130.125900px;}
.y25{bottom:146.367900px;}
.y4a{bottom:151.725900px;}
.y49{bottom:186.302100px;}
.y24{bottom:189.729900px;}
.y48{bottom:207.902100px;}
.y23{bottom:218.142900px;}
.y47{bottom:229.502100px;}
.y22{bottom:239.742900px;}
.y21{bottom:261.342900px;}
.y46{bottom:264.078300px;}
.y20{bottom:282.942900px;}
.y45{bottom:285.678300px;}
.y1f{bottom:304.542900px;}
.y44{bottom:320.254500px;}
.y1e{bottom:326.142900px;}
.y43{bottom:354.830700px;}
.y1d{bottom:362.428500px;}
.y42{bottom:389.406900px;}
.y41{bottom:411.006900px;}
.y1c{bottom:430.017600px;}
.y40{bottom:445.583100px;}
.y1b{bottom:451.617600px;}
.y3f{bottom:467.183100px;}
.y1a{bottom:473.217600px;}
.y19{bottom:494.817600px;}
.y3e{bottom:501.759300px;}
.y18{bottom:516.417600px;}
.y3d{bottom:523.359300px;}
.y17{bottom:538.017600px;}
.y16{bottom:574.017600px;}
.y3c{bottom:582.144900px;}
.y15{bottom:595.617600px;}
.y14{bottom:617.217600px;}
.y13{bottom:638.817600px;}
.y12{bottom:660.417600px;}
.y3b{bottom:661.181100px;}
.y11{bottom:682.017600px;}
.y3a{bottom:682.781100px;}
.y39{bottom:704.381100px;}
.y10{bottom:706.094400px;}
.yf{bottom:727.694400px;}
.y38{bottom:747.581100px;}
.ye{bottom:749.294400px;}
.y37{bottom:769.181100px;}
.yd{bottom:770.894400px;}
.y36{bottom:790.781100px;}
.yc{bottom:809.971950px;}
.y35{bottom:812.381100px;}
.y34{bottom:833.981100px;}
.y33{bottom:855.581100px;}
.y9{bottom:867.318150px;}
.y32{bottom:877.181100px;}
.y8{bottom:891.317550px;}
.y31{bottom:898.781100px;}
.y7{bottom:915.316950px;}
.y6{bottom:939.316350px;}
.y30{bottom:941.981100px;}
.y5{bottom:963.315750px;}
.y2f{bottom:963.581100px;}
.y2e{bottom:985.181100px;}
.y4{bottom:987.315150px;}
.y2d{bottom:1006.781100px;}
.y3{bottom:1011.314550px;}
.y2c{bottom:1028.381100px;}
.y2{bottom:1035.313950px;}
.y2b{bottom:1049.981100px;}
.y2a{bottom:1071.581100px;}
.ya{bottom:1090.959750px;}
.y29{bottom:1106.157750px;}
.y27{bottom:1210.098300px;}
.h2{height:49.752000px;}
.h5{height:51.552000px;}
.h6{height:80.511432px;}
.h4{height:128.880000px;}
.h3{height:154.656000px;}
.h1{height:1262.835000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.707000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:42.313050px;}
.x3{left:63.572850px;}
.x5{left:80.257800px;}
.x4{left:546.412800px;}
.x2{left:579.110400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:-0.010342pt;}
.ls4{letter-spacing:-0.007467pt;}
.ls2{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.403200pt;}
.ws0{word-spacing:-44.480000pt;}
.ws15{word-spacing:-18.195200pt;}
.ws13{word-spacing:-17.792000pt;}
.ws14{word-spacing:-4.620800pt;}
.wsb{word-spacing:-2.540800pt;}
.wsd{word-spacing:-2.278400pt;}
.ws19{word-spacing:-1.606400pt;}
.wsf{word-spacing:-0.480000pt;}
.ws7{word-spacing:-0.115200pt;}
.ws1a{word-spacing:-0.044800pt;}
.ws1c{word-spacing:0.000000pt;}
.ws24{word-spacing:0.416000pt;}
.ws6{word-spacing:0.646400pt;}
.ws2{word-spacing:1.024000pt;}
.ws8{word-spacing:1.779200pt;}
.ws12{word-spacing:2.075733pt;}
.ws23{word-spacing:2.214400pt;}
.ws17{word-spacing:2.572800pt;}
.ws5{word-spacing:2.969600pt;}
.ws11{word-spacing:3.423158pt;}
.ws1d{word-spacing:3.641600pt;}
.ws1{word-spacing:3.993600pt;}
.ws21{word-spacing:4.332800pt;}
.wsa{word-spacing:4.448000pt;}
.ws16{word-spacing:5.107200pt;}
.ws9{word-spacing:5.337600pt;}
.wse{word-spacing:5.619200pt;}
.ws1b{word-spacing:7.948800pt;}
.ws20{word-spacing:8.896000pt;}
.ws18{word-spacing:10.508800pt;}
.ws10{word-spacing:11.648000pt;}
.ws1e{word-spacing:12.121600pt;}
.ws1f{word-spacing:13.760000pt;}
.wsc{word-spacing:14.073600pt;}
.ws4{word-spacing:16.166400pt;}
.ws22{word-spacing:17.312000pt;}
.ws3{word-spacing:20.940800pt;}
.ws25{word-spacing:26.502400pt;}
._9{margin-left:-9.616000pt;}
._19{margin-left:-8.000000pt;}
._d{margin-left:-5.766400pt;}
._10{margin-left:-4.761600pt;}
._2{margin-left:-3.136000pt;}
._8{margin-left:-2.240000pt;}
._0{margin-left:-1.254400pt;}
._3{width:1.280000pt;}
._1{width:2.208000pt;}
._a{width:3.200000pt;}
._c{width:5.964800pt;}
._11{width:9.363200pt;}
._7{width:11.296000pt;}
._f{width:12.467200pt;}
._b{width:13.414400pt;}
._6{width:14.662400pt;}
._12{width:16.902400pt;}
._13{width:17.804800pt;}
._16{width:20.262400pt;}
._14{width:21.868800pt;}
._15{width:24.377600pt;}
._5{width:27.264000pt;}
._17{width:28.998400pt;}
._4{width:32.345600pt;}
._18{width:37.459200pt;}
._e{width:52.934400pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:103.418667pt;}
.fs2{font-size:160.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.073333pt;}
.y28{bottom:23.171333pt;}
.yb{bottom:26.831067pt;}
.y26{bottom:110.904800pt;}
.y4b{bottom:115.667467pt;}
.y25{bottom:130.104800pt;}
.y4a{bottom:134.867467pt;}
.y49{bottom:165.601867pt;}
.y24{bottom:168.648800pt;}
.y48{bottom:184.801867pt;}
.y23{bottom:193.904800pt;}
.y47{bottom:204.001867pt;}
.y22{bottom:213.104800pt;}
.y21{bottom:232.304800pt;}
.y46{bottom:234.736267pt;}
.y20{bottom:251.504800pt;}
.y45{bottom:253.936267pt;}
.y1f{bottom:270.704800pt;}
.y44{bottom:284.670667pt;}
.y1e{bottom:289.904800pt;}
.y43{bottom:315.405067pt;}
.y1d{bottom:322.158667pt;}
.y42{bottom:346.139467pt;}
.y41{bottom:365.339467pt;}
.y1c{bottom:382.237867pt;}
.y40{bottom:396.073867pt;}
.y1b{bottom:401.437867pt;}
.y3f{bottom:415.273867pt;}
.y1a{bottom:420.637867pt;}
.y19{bottom:439.837867pt;}
.y3e{bottom:446.008267pt;}
.y18{bottom:459.037867pt;}
.y3d{bottom:465.208267pt;}
.y17{bottom:478.237867pt;}
.y16{bottom:510.237867pt;}
.y3c{bottom:517.462133pt;}
.y15{bottom:529.437867pt;}
.y14{bottom:548.637867pt;}
.y13{bottom:567.837867pt;}
.y12{bottom:587.037867pt;}
.y3b{bottom:587.716533pt;}
.y11{bottom:606.237867pt;}
.y3a{bottom:606.916533pt;}
.y39{bottom:626.116533pt;}
.y10{bottom:627.639467pt;}
.yf{bottom:646.839467pt;}
.y38{bottom:664.516533pt;}
.ye{bottom:666.039467pt;}
.y37{bottom:683.716533pt;}
.yd{bottom:685.239467pt;}
.y36{bottom:702.916533pt;}
.yc{bottom:719.975067pt;}
.y35{bottom:722.116533pt;}
.y34{bottom:741.316533pt;}
.y33{bottom:760.516533pt;}
.y9{bottom:770.949467pt;}
.y32{bottom:779.716533pt;}
.y8{bottom:792.282267pt;}
.y31{bottom:798.916533pt;}
.y7{bottom:813.615067pt;}
.y6{bottom:834.947867pt;}
.y30{bottom:837.316533pt;}
.y5{bottom:856.280667pt;}
.y2f{bottom:856.516533pt;}
.y2e{bottom:875.716533pt;}
.y4{bottom:877.613467pt;}
.y2d{bottom:894.916533pt;}
.y3{bottom:898.946267pt;}
.y2c{bottom:914.116533pt;}
.y2{bottom:920.279067pt;}
.y2b{bottom:933.316533pt;}
.y2a{bottom:952.516533pt;}
.ya{bottom:969.742000pt;}
.y29{bottom:983.251333pt;}
.y27{bottom:1075.642933pt;}
.h2{height:44.224000pt;}
.h5{height:45.824000pt;}
.h6{height:71.565717pt;}
.h4{height:114.560000pt;}
.h3{height:137.472000pt;}
.h1{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.517333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:37.611600pt;}
.x3{left:56.509200pt;}
.x5{left:71.340267pt;}
.x4{left:485.700267pt;}
.x2{left:514.764800pt;}
}




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