
    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_d860d9a415b64be6d8230d65.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_12e658098d44ddf4f17982a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_26ae5457a0637386d6a34df5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f41861d34cd6a511fe072419.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_73344993260c3fa5a3110488.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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:ff7;src:url('chunks/assets/font_8701b2db73b853abff17df0f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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:ff8;src:url('chunks/assets/font_d4a948468668883c0e2aee1c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-3.060000px;}
.lsb{letter-spacing:-0.259800px;}
.ls3{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.017280px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.090720px;}
.ls9{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.341280px;}
.ls7{letter-spacing:0.360000px;}
.lsc{letter-spacing:2.700000px;}
.ls0{letter-spacing:21.420000px;}
.ls4{letter-spacing:27.180000px;}
.ls1{letter-spacing:32.940000px;}
.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:-21.060000px;}
.ws2{word-spacing:-16.353480px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-5.644080px;}
._5{margin-left:-4.633200px;}
._e{margin-left:-3.453840px;}
._d{margin-left:-2.190240px;}
._0{margin-left:-1.095120px;}
._4{width:1.489440px;}
._1a{width:2.833680px;}
._1d{width:3.976320px;}
._19{width:5.081280px;}
._10{width:6.233760px;}
._9{width:7.244640px;}
._6{width:8.508240px;}
._1f{width:9.519120px;}
._1e{width:11.104320px;}
._f{width:12.299040px;}
._1c{width:13.306320px;}
._7{width:14.405040px;}
._8{width:15.517920px;}
._12{width:17.136240px;}
._11{width:18.683520px;}
._1{width:20.040240px;}
._20{width:22.829040px;}
._18{width:23.839920px;}
._21{width:24.877680px;}
._22{width:26.198640px;}
._23{width:27.263040px;}
._27{width:29.067120px;}
._16{width:30.242160px;}
._2{width:32.095440px;}
._c{width:33.134160px;}
._a{width:35.128080px;}
._b{width:36.232560px;}
._13{width:37.468080px;}
._26{width:39.495600px;}
._28{width:40.519440px;}
._25{width:42.288480px;}
._24{width:43.552080px;}
._17{width:48.606480px;}
._1b{width:49.954320px;}
._14{width:62.843040px;}
._15{width:63.880800px;}
._29{width:65.370240px;}
._2a{width:66.886560px;}
._2c{width:93.169440px;}
._2b{width:94.264560px;}
._2d{width:491.079360px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y5f{bottom:88.416000px;}
.y5e{bottom:92.916000px;}
.y64{bottom:106.956000px;}
.y65{bottom:110.736000px;}
.y2c{bottom:111.276000px;}
.y5d{bottom:117.756000px;}
.y5c{bottom:122.256000px;}
.y63{bottom:134.856000px;}
.y5b{bottom:135.036000px;}
.y2b{bottom:135.396000px;}
.y5a{bottom:139.536000px;}
.y62{bottom:159.150000px;}
.y59{bottom:165.450000px;}
.y2a{bottom:171.570000px;}
.y58{bottom:173.010000px;}
.y61{bottom:183.270000px;}
.y57{bottom:189.570000px;}
.y29{bottom:195.690000px;}
.y60{bottom:207.390000px;}
.y28{bottom:219.810000px;}
.y56{bottom:231.510000px;}
.y27{bottom:243.930000px;}
.y55{bottom:255.630000px;}
.y26{bottom:268.050000px;}
.y54{bottom:279.795000px;}
.y25{bottom:292.215000px;}
.y53{bottom:303.915000px;}
.y24{bottom:316.515000px;}
.y52{bottom:328.215000px;}
.y23{bottom:340.635000px;}
.y51{bottom:352.335000px;}
.y22{bottom:364.755000px;}
.y4f{bottom:376.455000px;}
.y50{bottom:384.015000px;}
.y21{bottom:388.875000px;}
.y4e{bottom:400.575000px;}
.y20{bottom:412.995000px;}
.y4d{bottom:424.695000px;}
.y4c{bottom:448.815000px;}
.y1f{bottom:449.175000px;}
.y4b{bottom:473.115000px;}
.y1e{bottom:473.295000px;}
.y4a{bottom:497.235000px;}
.y1d{bottom:497.415000px;}
.y49{bottom:521.355000px;}
.y1c{bottom:521.715000px;}
.y48{bottom:545.475000px;}
.y1b{bottom:545.835000px;}
.y47{bottom:569.625000px;}
.y1a{bottom:569.985000px;}
.y46{bottom:593.745000px;}
.y19{bottom:594.105000px;}
.y45{bottom:618.045000px;}
.y18{bottom:618.225000px;}
.y44{bottom:642.165000px;}
.y17{bottom:642.345000px;}
.y42{bottom:666.285000px;}
.y16{bottom:666.465000px;}
.y43{bottom:673.845000px;}
.y41{bottom:690.405000px;}
.y15{bottom:690.765000px;}
.y40{bottom:714.525000px;}
.y14{bottom:714.885000px;}
.y3f{bottom:738.645000px;}
.y13{bottom:739.005000px;}
.y3e{bottom:762.765000px;}
.y12{bottom:775.185000px;}
.y3d{bottom:787.065000px;}
.y11{bottom:799.305000px;}
.y3c{bottom:811.185000px;}
.y10{bottom:823.425000px;}
.y3b{bottom:835.305000px;}
.yf{bottom:847.590000px;}
.y39{bottom:859.470000px;}
.y3a{bottom:867.030000px;}
.ye{bottom:871.710000px;}
.y38{bottom:883.590000px;}
.yd{bottom:896.010000px;}
.y37{bottom:907.710000px;}
.yc{bottom:920.130000px;}
.y36{bottom:932.010000px;}
.yb{bottom:944.250000px;}
.y35{bottom:956.130000px;}
.ya{bottom:968.370000px;}
.y34{bottom:980.250000px;}
.y9{bottom:992.490000px;}
.y33{bottom:1004.370000px;}
.y8{bottom:1016.610000px;}
.y32{bottom:1028.490000px;}
.y31{bottom:1052.610000px;}
.y7{bottom:1058.730000px;}
.y2f{bottom:1076.730000px;}
.y6{bottom:1083.030000px;}
.y30{bottom:1084.290000px;}
.y2e{bottom:1101.030000px;}
.y5{bottom:1107.150000px;}
.y2d{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h8{height:40.550625px;}
.h5{height:52.998047px;}
.h6{height:56.320312px;}
.h9{height:62.327813px;}
.h4{height:75.519844px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.h7{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.x12{left:96.119987px;}
.x11{left:100.475987px;}
.x7{left:139.355987px;}
.x3{left:182.909987px;}
.x5{left:232.589987px;}
.x4{left:290.189987px;}
.x10{left:301.394987px;}
.x8{left:303.734973px;}
.x9{left:317.414987px;}
.xa{left:328.934973px;}
.x6{left:333.794987px;}
.xb{left:342.614987px;}
.x2{left:430.814987px;}
.xe{left:438.374973px;}
.xf{left:452.054987px;}
.xc{left:505.364973px;}
.xd{left:519.044987px;}
.x13{left:536.684973px;}
.x14{left:550.364987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-2.720000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls3{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.015360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.080640pt;}
.ls9{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.303360pt;}
.ls7{letter-spacing:0.320000pt;}
.lsc{letter-spacing:2.400000pt;}
.ls0{letter-spacing:19.040000pt;}
.ls4{letter-spacing:24.160000pt;}
.ls1{letter-spacing:29.280000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws2{word-spacing:-14.536427pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-5.016960pt;}
._5{margin-left:-4.118400pt;}
._e{margin-left:-3.070080pt;}
._d{margin-left:-1.946880pt;}
._0{margin-left:-0.973440pt;}
._4{width:1.323947pt;}
._1a{width:2.518827pt;}
._1d{width:3.534507pt;}
._19{width:4.516693pt;}
._10{width:5.541120pt;}
._9{width:6.439680pt;}
._6{width:7.562880pt;}
._1f{width:8.461440pt;}
._1e{width:9.870507pt;}
._f{width:10.932480pt;}
._1c{width:11.827840pt;}
._7{width:12.804480pt;}
._8{width:13.793707pt;}
._12{width:15.232213pt;}
._11{width:16.607573pt;}
._1{width:17.813547pt;}
._20{width:20.292480pt;}
._18{width:21.191040pt;}
._21{width:22.113493pt;}
._22{width:23.287680pt;}
._23{width:24.233813pt;}
._27{width:25.837440pt;}
._16{width:26.881920pt;}
._2{width:28.529280pt;}
._c{width:29.452587pt;}
._a{width:31.224960pt;}
._b{width:32.206720pt;}
._13{width:33.304960pt;}
._26{width:35.107200pt;}
._28{width:36.017280pt;}
._25{width:37.589760pt;}
._24{width:38.712960pt;}
._17{width:43.205760pt;}
._1b{width:44.403840pt;}
._14{width:55.860480pt;}
._15{width:56.782933pt;}
._29{width:58.106880pt;}
._2a{width:59.454720pt;}
._2c{width:82.817280pt;}
._2b{width:83.790720pt;}
._2d{width:436.514987pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y5f{bottom:78.592000pt;}
.y5e{bottom:82.592000pt;}
.y64{bottom:95.072000pt;}
.y65{bottom:98.432000pt;}
.y2c{bottom:98.912000pt;}
.y5d{bottom:104.672000pt;}
.y5c{bottom:108.672000pt;}
.y63{bottom:119.872000pt;}
.y5b{bottom:120.032000pt;}
.y2b{bottom:120.352000pt;}
.y5a{bottom:124.032000pt;}
.y62{bottom:141.466667pt;}
.y59{bottom:147.066667pt;}
.y2a{bottom:152.506667pt;}
.y58{bottom:153.786667pt;}
.y61{bottom:162.906667pt;}
.y57{bottom:168.506667pt;}
.y29{bottom:173.946667pt;}
.y60{bottom:184.346667pt;}
.y28{bottom:195.386667pt;}
.y56{bottom:205.786667pt;}
.y27{bottom:216.826667pt;}
.y55{bottom:227.226667pt;}
.y26{bottom:238.266667pt;}
.y54{bottom:248.706667pt;}
.y25{bottom:259.746667pt;}
.y53{bottom:270.146667pt;}
.y24{bottom:281.346667pt;}
.y52{bottom:291.746667pt;}
.y23{bottom:302.786667pt;}
.y51{bottom:313.186667pt;}
.y22{bottom:324.226667pt;}
.y4f{bottom:334.626667pt;}
.y50{bottom:341.346667pt;}
.y21{bottom:345.666667pt;}
.y4e{bottom:356.066667pt;}
.y20{bottom:367.106667pt;}
.y4d{bottom:377.506667pt;}
.y4c{bottom:398.946667pt;}
.y1f{bottom:399.266667pt;}
.y4b{bottom:420.546667pt;}
.y1e{bottom:420.706667pt;}
.y4a{bottom:441.986667pt;}
.y1d{bottom:442.146667pt;}
.y49{bottom:463.426667pt;}
.y1c{bottom:463.746667pt;}
.y48{bottom:484.866667pt;}
.y1b{bottom:485.186667pt;}
.y47{bottom:506.333333pt;}
.y1a{bottom:506.653333pt;}
.y46{bottom:527.773333pt;}
.y19{bottom:528.093333pt;}
.y45{bottom:549.373333pt;}
.y18{bottom:549.533333pt;}
.y44{bottom:570.813333pt;}
.y17{bottom:570.973333pt;}
.y42{bottom:592.253333pt;}
.y16{bottom:592.413333pt;}
.y43{bottom:598.973333pt;}
.y41{bottom:613.693333pt;}
.y15{bottom:614.013333pt;}
.y40{bottom:635.133333pt;}
.y14{bottom:635.453333pt;}
.y3f{bottom:656.573333pt;}
.y13{bottom:656.893333pt;}
.y3e{bottom:678.013333pt;}
.y12{bottom:689.053333pt;}
.y3d{bottom:699.613333pt;}
.y11{bottom:710.493333pt;}
.y3c{bottom:721.053333pt;}
.y10{bottom:731.933333pt;}
.y3b{bottom:742.493333pt;}
.yf{bottom:753.413333pt;}
.y39{bottom:763.973333pt;}
.y3a{bottom:770.693333pt;}
.ye{bottom:774.853333pt;}
.y38{bottom:785.413333pt;}
.yd{bottom:796.453333pt;}
.y37{bottom:806.853333pt;}
.yc{bottom:817.893333pt;}
.y36{bottom:828.453333pt;}
.yb{bottom:839.333333pt;}
.y35{bottom:849.893333pt;}
.ya{bottom:860.773333pt;}
.y34{bottom:871.333333pt;}
.y9{bottom:882.213333pt;}
.y33{bottom:892.773333pt;}
.y8{bottom:903.653333pt;}
.y32{bottom:914.213333pt;}
.y31{bottom:935.653333pt;}
.y7{bottom:941.093333pt;}
.y2f{bottom:957.093333pt;}
.y6{bottom:962.693333pt;}
.y30{bottom:963.813333pt;}
.y2e{bottom:978.693333pt;}
.y5{bottom:984.133333pt;}
.y2d{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h8{height:36.045000pt;}
.h5{height:47.109375pt;}
.h6{height:50.062500pt;}
.h9{height:55.402500pt;}
.h4{height:67.128750pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.h7{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.x12{left:85.439988pt;}
.x11{left:89.311988pt;}
.x7{left:123.871988pt;}
.x3{left:162.586655pt;}
.x5{left:206.746655pt;}
.x4{left:257.946655pt;}
.x10{left:267.906655pt;}
.x8{left:269.986643pt;}
.x9{left:282.146655pt;}
.xa{left:292.386643pt;}
.x6{left:296.706655pt;}
.xb{left:304.546655pt;}
.x2{left:382.946655pt;}
.xe{left:389.666643pt;}
.xf{left:401.826655pt;}
.xc{left:449.213310pt;}
.xd{left:461.373322pt;}
.x13{left:477.053310pt;}
.x14{left:489.213322pt;}
}




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