
    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_b53085e2dd15ec3e88255c7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_a04fda4345dd0dad1da2b200.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_988fe336618d87ecd3c888df.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_e3a28adeb4c84cf274c9bb7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_208e2fff421a3dad527bbbbe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918457;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;}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010620px;}
.lsd{letter-spacing:0.010626px;}
.ls2{letter-spacing:0.021282px;}
.lse{letter-spacing:0.731051px;}
.ls5{letter-spacing:1.451476px;}
.ls7{letter-spacing:2.171901px;}
.lsc{letter-spacing:2.173140px;}
.lsb{letter-spacing:2.892325px;}
.ls6{letter-spacing:3.612719px;}
.ls3{letter-spacing:8.655723px;}
.lsa{letter-spacing:10.096556px;}
.ls10{letter-spacing:12.978272px;}
.ls9{letter-spacing:20.182520px;}
.ls8{letter-spacing:20.902944px;}
.ls1{letter-spacing:23.784643px;}
.ls4{letter-spacing:49.719935px;}
.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:-30.239988px;}
.ws0{word-spacing:-17.999993px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-2.359568px;}
._1{margin-left:-1.225565px;}
._0{width:1.027329px;}
._15{width:2.042566px;}
._c{width:3.049634px;}
._6{width:4.390778px;}
._4{width:5.628800px;}
._5{width:6.747080px;}
._7{width:8.428961px;}
._8{width:9.845149px;}
._9{width:10.887832px;}
._2{width:12.233007px;}
._13{width:13.252450px;}
._11{width:14.401112px;}
._10{width:15.405296px;}
._f{width:16.694921px;}
._e{width:20.020880px;}
._d{width:21.051455px;}
._12{width:22.335798px;}
._3{width:23.459868px;}
._a{width:49.358540px;}
._b{width:50.672078px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y30{bottom:98.759960px;}
.y5f{bottom:100.200260px;}
.y5e{bottom:117.299953px;}
.y2f{bottom:119.639952px;}
.y5d{bottom:134.579946px;}
.y2e{bottom:140.339944px;}
.y5c{bottom:151.859939px;}
.y5b{bottom:169.139932px;}
.y2d{bottom:175.799930px;}
.y5a{bottom:186.419925px;}
.y2c{bottom:196.679921px;}
.y59{bottom:203.699919px;}
.y2b{bottom:217.379913px;}
.y58{bottom:220.799912px;}
.y2a{bottom:238.079905px;}
.y57{bottom:255.359898px;}
.y29{bottom:258.779896px;}
.y56{bottom:272.639891px;}
.y28{bottom:279.479888px;}
.y55{bottom:289.919884px;}
.y27{bottom:300.179880px;}
.y26{bottom:320.879872px;}
.y54{bottom:322.679871px;}
.y25{bottom:341.579863px;}
.y53{bottom:358.319857px;}
.y24{bottom:377.219849px;}
.y52{bottom:393.779842px;}
.y23{bottom:397.919841px;}
.y22{bottom:418.619833px;}
.y51{bottom:429.059828px;}
.y21{bottom:439.319824px;}
.y50{bottom:446.519821px;}
.y20{bottom:460.019816px;}
.y4f{bottom:463.619815px;}
.y1f{bottom:480.719808px;}
.y4e{bottom:480.899808px;}
.y4d{bottom:498.179801px;}
.y1e{bottom:501.419799px;}
.y4c{bottom:515.459794px;}
.y4b{bottom:532.739787px;}
.y1d{bottom:537.059785px;}
.y4a{bottom:550.019780px;}
.y1c{bottom:557.939777px;}
.y49{bottom:567.119773px;}
.y1b{bottom:578.639769px;}
.y48{bottom:584.399766px;}
.y1a{bottom:599.339760px;}
.y47{bottom:601.679759px;}
.y46{bottom:618.959752px;}
.y19{bottom:620.039752px;}
.y45{bottom:636.239746px;}
.y18{bottom:640.739744px;}
.y44{bottom:653.519739px;}
.y17{bottom:661.439735px;}
.y43{bottom:670.619732px;}
.y16{bottom:682.139727px;}
.y42{bottom:687.899725px;}
.y15{bottom:702.839719px;}
.y41{bottom:705.179718px;}
.y40{bottom:722.459711px;}
.y14{bottom:723.539711px;}
.y3f{bottom:739.739704px;}
.y13{bottom:758.999696px;}
.y3e{bottom:772.499691px;}
.y12{bottom:794.639682px;}
.y3d{bottom:808.139677px;}
.y11{bottom:815.519674px;}
.y6e{bottom:830.279668px;}
.y10{bottom:836.219666px;}
.y3c{bottom:843.959662px;}
.yf{bottom:856.919657px;}
.y6d{bottom:865.919654px;}
.ye{bottom:877.619649px;}
.y3b{bottom:879.599648px;}
.y6c{bottom:886.799645px;}
.y3a{bottom:900.479640px;}
.y6b{bottom:907.499637px;}
.yd{bottom:913.259635px;}
.y39{bottom:921.179632px;}
.y6a{bottom:928.199629px;}
.yc{bottom:934.139626px;}
.y38{bottom:941.879623px;}
.y69{bottom:948.899620px;}
.yb{bottom:954.839618px;}
.y37{bottom:962.579615px;}
.y68{bottom:969.599612px;}
.ya{bottom:975.539610px;}
.y9{bottom:996.239602px;}
.y36{bottom:998.039601px;}
.y67{bottom:1005.059598px;}
.y8{bottom:1016.939593px;}
.y66{bottom:1025.939590px;}
.y35{bottom:1033.859586px;}
.y7{bottom:1037.639585px;}
.y65{bottom:1046.639581px;}
.y6{bottom:1058.339577px;}
.y64{bottom:1067.339573px;}
.y34{bottom:1069.499572px;}
.y5{bottom:1079.039568px;}
.y63{bottom:1088.039565px;}
.y33{bottom:1090.379564px;}
.y4{bottom:1099.739560px;}
.y62{bottom:1108.739557px;}
.y3{bottom:1120.439552px;}
.y32{bottom:1125.839550px;}
.y2{bottom:1141.139544px;}
.y61{bottom:1144.379542px;}
.y1{bottom:1161.479535px;}
.y31{bottom:1161.659535px;}
.y60{bottom:1164.539534px;}
.h4{height:58.651148px;}
.h2{height:70.628878px;}
.h3{height:70.664034px;}
.h1{height:72.562471px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x2{left:220.319912px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009440pt;}
.lsd{letter-spacing:0.009446pt;}
.ls2{letter-spacing:0.018917pt;}
.lse{letter-spacing:0.649823pt;}
.ls5{letter-spacing:1.290201pt;}
.ls7{letter-spacing:1.930578pt;}
.lsc{letter-spacing:1.931680pt;}
.lsb{letter-spacing:2.570956pt;}
.ls6{letter-spacing:3.211305pt;}
.ls3{letter-spacing:7.693976pt;}
.lsa{letter-spacing:8.974716pt;}
.ls10{letter-spacing:11.536242pt;}
.ls9{letter-spacing:17.940017pt;}
.ls8{letter-spacing:18.580395pt;}
.ls1{letter-spacing:21.141905pt;}
.ls4{letter-spacing:44.195498pt;}
.ws1{word-spacing:-26.879989pt;}
.ws0{word-spacing:-15.999994pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-2.097393pt;}
._1{margin-left:-1.089392pt;}
._0{width:0.913181pt;}
._15{width:1.815614pt;}
._c{width:2.710786pt;}
._6{width:3.902914pt;}
._4{width:5.003378pt;}
._5{width:5.997404pt;}
._7{width:7.492410pt;}
._8{width:8.751243pt;}
._9{width:9.678073pt;}
._2{width:10.873784pt;}
._13{width:11.779956pt;}
._11{width:12.800989pt;}
._10{width:13.693596pt;}
._f{width:14.839929pt;}
._e{width:17.796338pt;}
._d{width:18.712405pt;}
._12{width:19.854043pt;}
._3{width:20.853216pt;}
._a{width:43.874258pt;}
._b{width:45.041847pt;}
.fs1{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:87.786632pt;}
.y5f{bottom:89.066898pt;}
.y5e{bottom:104.266625pt;}
.y2f{bottom:106.346624pt;}
.y5d{bottom:119.626619pt;}
.y2e{bottom:124.746617pt;}
.y5c{bottom:134.986613pt;}
.y5b{bottom:150.346607pt;}
.y2d{bottom:156.266604pt;}
.y5a{bottom:165.706600pt;}
.y2c{bottom:174.826597pt;}
.y59{bottom:181.066594pt;}
.y2b{bottom:193.226589pt;}
.y58{bottom:196.266588pt;}
.y2a{bottom:211.626582pt;}
.y57{bottom:226.986576pt;}
.y29{bottom:230.026575pt;}
.y56{bottom:242.346570pt;}
.y28{bottom:248.426567pt;}
.y55{bottom:257.706564pt;}
.y27{bottom:266.826560pt;}
.y26{bottom:285.226553pt;}
.y54{bottom:286.826552pt;}
.y25{bottom:303.626545pt;}
.y53{bottom:318.506539pt;}
.y24{bottom:335.306533pt;}
.y52{bottom:350.026527pt;}
.y23{bottom:353.706525pt;}
.y22{bottom:372.106518pt;}
.y51{bottom:381.386514pt;}
.y21{bottom:390.506510pt;}
.y50{bottom:396.906508pt;}
.y20{bottom:408.906503pt;}
.y4f{bottom:412.106502pt;}
.y1f{bottom:427.306496pt;}
.y4e{bottom:427.466496pt;}
.y4d{bottom:442.826490pt;}
.y1e{bottom:445.706488pt;}
.y4c{bottom:458.186483pt;}
.y4b{bottom:473.546477pt;}
.y1d{bottom:477.386476pt;}
.y4a{bottom:488.906471pt;}
.y1c{bottom:495.946468pt;}
.y49{bottom:504.106465pt;}
.y1b{bottom:514.346461pt;}
.y48{bottom:519.466459pt;}
.y1a{bottom:532.746454pt;}
.y47{bottom:534.826453pt;}
.y46{bottom:550.186447pt;}
.y19{bottom:551.146446pt;}
.y45{bottom:565.546440pt;}
.y18{bottom:569.546439pt;}
.y44{bottom:580.906434pt;}
.y17{bottom:587.946431pt;}
.y43{bottom:596.106428pt;}
.y16{bottom:606.346424pt;}
.y42{bottom:611.466422pt;}
.y15{bottom:624.746417pt;}
.y41{bottom:626.826416pt;}
.y40{bottom:642.186410pt;}
.y14{bottom:643.146409pt;}
.y3f{bottom:657.546404pt;}
.y13{bottom:674.666397pt;}
.y3e{bottom:686.666392pt;}
.y12{bottom:706.346384pt;}
.y3d{bottom:718.346379pt;}
.y11{bottom:724.906377pt;}
.y6e{bottom:738.026371pt;}
.y10{bottom:743.306369pt;}
.y3c{bottom:750.186367pt;}
.yf{bottom:761.706362pt;}
.y6d{bottom:769.706359pt;}
.ye{bottom:780.106355pt;}
.y3b{bottom:781.866354pt;}
.y6c{bottom:788.266351pt;}
.y3a{bottom:800.426346pt;}
.y6b{bottom:806.666344pt;}
.yd{bottom:811.786342pt;}
.y39{bottom:818.826339pt;}
.y6a{bottom:825.066337pt;}
.yc{bottom:830.346335pt;}
.y38{bottom:837.226332pt;}
.y69{bottom:843.466329pt;}
.yb{bottom:848.746327pt;}
.y37{bottom:855.626324pt;}
.y68{bottom:861.866322pt;}
.ya{bottom:867.146320pt;}
.y9{bottom:885.546312pt;}
.y36{bottom:887.146312pt;}
.y67{bottom:893.386309pt;}
.y8{bottom:903.946305pt;}
.y66{bottom:911.946302pt;}
.y35{bottom:918.986299pt;}
.y7{bottom:922.346298pt;}
.y65{bottom:930.346295pt;}
.y6{bottom:940.746290pt;}
.y64{bottom:948.746287pt;}
.y34{bottom:950.666286pt;}
.y5{bottom:959.146283pt;}
.y63{bottom:967.146280pt;}
.y33{bottom:969.226279pt;}
.y4{bottom:977.546276pt;}
.y62{bottom:985.546272pt;}
.y3{bottom:995.946268pt;}
.y32{bottom:1000.746266pt;}
.y2{bottom:1014.346261pt;}
.y61{bottom:1017.226260pt;}
.y1{bottom:1032.426254pt;}
.y31{bottom:1032.586254pt;}
.y60{bottom:1035.146253pt;}
.h4{height:52.134354pt;}
.h2{height:62.781225pt;}
.h3{height:62.812475pt;}
.h1{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x2{left:195.839922pt;}
}




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