
    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_a9159ef357740048179b9592.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893000;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_f169c68a6adec34879cc32cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.068000;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_2256ffa42e83ffb8be31a961.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_162d99cf3db63f3efbdb66e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.621000;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_2b0d78f14640311d69b77aaa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_262bdbc04711e66ded51d539.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.114000;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_883e9c181d5b1c7a2b0f7b43.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727000;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_053145052ecba9a2ac48d472.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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:ff9;src:url('chunks/assets/font_cbc01173a9b081bafea7a671.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.679000;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:ffa;src:url('chunks/assets/font_3aa5be60ea9832f70bf7ff4d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.909000;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:ffb;src:url('chunks/assets/font_13a3b1fef3fe9f112fb4728a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.669000;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);}
.v2{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.648000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000518px;}
.ls0{letter-spacing:0.001593px;}
.ls3{letter-spacing:2.984915px;}
.ls1{letter-spacing:2.990915px;}
.ls4{letter-spacing:29.612915px;}
.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;}
}
.ws25{word-spacing:-16.704014px;}
.ws19{word-spacing:-15.918559px;}
.ws28{word-spacing:-15.525831px;}
.ws26{word-spacing:-15.322922px;}
.ws20{word-spacing:-15.264013px;}
.ws22{word-spacing:-15.227767px;}
.ws1c{word-spacing:-14.936740px;}
.ws1a{word-spacing:-14.602921px;}
.ws24{word-spacing:-14.413103px;}
.ws9{word-spacing:-14.282194px;}
.ws21{word-spacing:-14.013830px;}
.ws15{word-spacing:-12.580374px;}
.ws17{word-spacing:-11.794919px;}
.ws12{word-spacing:-11.664010px;}
.ws29{word-spacing:-11.205828px;}
.ws2c{word-spacing:-11.140373px;}
.wsd{word-spacing:-11.009464px;}
.ws18{word-spacing:-10.878555px;}
.ws5{word-spacing:-10.852373px;}
.ws1e{word-spacing:-10.813100px;}
.ws2a{word-spacing:-10.282918px;}
.ws1d{word-spacing:-9.955645px;}
.ws10{word-spacing:-9.831281px;}
.ws8{word-spacing:-9.111280px;}
.ws7{word-spacing:-8.194916px;}
.ws6{word-spacing:-8.129461px;}
.wsb{word-spacing:-7.933098px;}
.wsc{word-spacing:-7.867643px;}
.ws11{word-spacing:-6.951279px;}
.ws14{word-spacing:-6.885824px;}
.wse{word-spacing:-5.949395px;}
.wsf{word-spacing:-5.904005px;}
.ws16{word-spacing:-4.333095px;}
.wsa{word-spacing:-3.940367px;}
.ws13{word-spacing:-0.065455px;}
.ws2d{word-spacing:0.000000px;}
.ws27{word-spacing:15.765210px;}
.ws1b{word-spacing:16.585543px;}
.ws23{word-spacing:17.229210px;}
.ws2{word-spacing:18.345254px;}
.ws3{word-spacing:18.399053px;}
.ws2b{word-spacing:21.285210px;}
.ws1f{word-spacing:21.637543px;}
.ws1{word-spacing:32.881490px;}
.ws0{word-spacing:39.767574px;}
.ws4{word-spacing:50.969174px;}
._15{margin-left:-3.856444px;}
._1{margin-left:-2.754470px;}
._3{margin-left:-1.560154px;}
._7{width:1.066809px;}
._6{width:2.117507px;}
._0{width:3.305357px;}
._17{width:14.829790px;}
._14{width:17.653851px;}
._a{width:19.332067px;}
._11{width:21.056846px;}
._5{width:22.718123px;}
._e{width:23.961761px;}
._8{width:25.679852px;}
._10{width:27.004411px;}
._b{width:28.102983px;}
._c{width:30.436389px;}
._13{width:32.727300px;}
._16{width:35.899306px;}
._9{width:37.036547px;}
._f{width:41.503594px;}
._d{width:44.358683px;}
._12{width:48.526771px;}
._4{width:51.054682px;}
._2{width:418.275150px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(153,0,0);}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1e{bottom:39.976500px;}
.y1d{bottom:406.780500px;}
.y1c{bottom:440.554500px;}
.y1b{bottom:474.327000px;}
.y1a{bottom:508.101000px;}
.y19{bottom:541.873500px;}
.y18{bottom:572.515500px;}
.y17{bottom:617.347500px;}
.y16{bottom:637.671000px;}
.y15{bottom:657.994500px;}
.y14{bottom:678.318000px;}
.y13{bottom:698.641500px;}
.y12{bottom:718.966500px;}
.y11{bottom:739.290000px;}
.y10{bottom:759.613500px;}
.yf{bottom:779.937000px;}
.ye{bottom:800.260500px;}
.yd{bottom:820.585500px;}
.yc{bottom:840.909000px;}
.yb{bottom:861.232500px;}
.ya{bottom:881.556000px;}
.y9{bottom:901.879500px;}
.y8{bottom:950.508000px;}
.y7{bottom:1056.118500px;}
.y6{bottom:1076.443500px;}
.y5{bottom:1098.931500px;}
.y4{bottom:1116.864000px;}
.y3{bottom:1134.796500px;}
.y2{bottom:1145.068500px;}
.y1{bottom:1187.313000px;}
.h4{height:39.057638px;}
.h5{height:47.847313px;}
.h6{height:56.552774px;}
.h2{height:72.407972px;}
.h3{height:74.456778px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:74.409000px;}
.x1{left:79.491000px;}
.x9{left:82.545000px;}
.x2{left:85.867500px;}
.x6{left:99.814500px;}
.x5{left:218.283000px;}
.x8{left:391.374000px;}
.x4{left:437.860500px;}
.xa{left:442.389000px;}
.x3{left:491.577000px;}
@media print{
.v2{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.242667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000460pt;}
.ls0{letter-spacing:0.001416pt;}
.ls3{letter-spacing:2.653258pt;}
.ls1{letter-spacing:2.658591pt;}
.ls4{letter-spacing:26.322591pt;}
.ws25{word-spacing:-14.848012pt;}
.ws19{word-spacing:-14.149830pt;}
.ws28{word-spacing:-13.800739pt;}
.ws26{word-spacing:-13.620375pt;}
.ws20{word-spacing:-13.568011pt;}
.ws22{word-spacing:-13.535793pt;}
.ws1c{word-spacing:-13.277102pt;}
.ws1a{word-spacing:-12.980374pt;}
.ws24{word-spacing:-12.811647pt;}
.ws9{word-spacing:-12.695283pt;}
.ws21{word-spacing:-12.456738pt;}
.ws15{word-spacing:-11.182555pt;}
.ws17{word-spacing:-10.484372pt;}
.ws12{word-spacing:-10.368009pt;}
.ws29{word-spacing:-9.960736pt;}
.ws2c{word-spacing:-9.902554pt;}
.wsd{word-spacing:-9.786190pt;}
.ws18{word-spacing:-9.669826pt;}
.ws5{word-spacing:-9.646553pt;}
.ws1e{word-spacing:-9.611644pt;}
.ws2a{word-spacing:-9.140371pt;}
.ws1d{word-spacing:-8.849462pt;}
.ws10{word-spacing:-8.738916pt;}
.ws8{word-spacing:-8.098916pt;}
.ws7{word-spacing:-7.284370pt;}
.ws6{word-spacing:-7.226188pt;}
.wsb{word-spacing:-7.051642pt;}
.wsc{word-spacing:-6.993460pt;}
.ws11{word-spacing:-6.178914pt;}
.ws14{word-spacing:-6.120732pt;}
.wse{word-spacing:-5.288351pt;}
.wsf{word-spacing:-5.248004pt;}
.ws16{word-spacing:-3.851640pt;}
.wsa{word-spacing:-3.502548pt;}
.ws13{word-spacing:-0.058182pt;}
.ws2d{word-spacing:0.000000pt;}
.ws27{word-spacing:14.013520pt;}
.ws1b{word-spacing:14.742705pt;}
.ws23{word-spacing:15.314854pt;}
.ws2{word-spacing:16.306893pt;}
.ws3{word-spacing:16.354714pt;}
.ws2b{word-spacing:18.920187pt;}
.ws1f{word-spacing:19.233371pt;}
.ws1{word-spacing:29.227991pt;}
.ws0{word-spacing:35.348955pt;}
.ws4{word-spacing:45.305933pt;}
._15{margin-left:-3.427950pt;}
._1{margin-left:-2.448418pt;}
._3{margin-left:-1.386803pt;}
._7{width:0.948275pt;}
._6{width:1.882228pt;}
._0{width:2.938095pt;}
._17{width:13.182035pt;}
._14{width:15.692312pt;}
._a{width:17.184059pt;}
._11{width:18.717196pt;}
._5{width:20.193887pt;}
._e{width:21.299343pt;}
._8{width:22.826535pt;}
._10{width:24.003921pt;}
._b{width:24.980429pt;}
._c{width:27.054568pt;}
._13{width:29.090933pt;}
._16{width:31.910494pt;}
._9{width:32.921375pt;}
._f{width:36.892083pt;}
._d{width:39.429941pt;}
._12{width:43.134908pt;}
._4{width:45.381939pt;}
._2{width:371.800134pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:35.534667pt;}
.y1d{bottom:361.582667pt;}
.y1c{bottom:391.604000pt;}
.y1b{bottom:421.624000pt;}
.y1a{bottom:451.645333pt;}
.y19{bottom:481.665333pt;}
.y18{bottom:508.902667pt;}
.y17{bottom:548.753333pt;}
.y16{bottom:566.818667pt;}
.y15{bottom:584.884000pt;}
.y14{bottom:602.949333pt;}
.y13{bottom:621.014667pt;}
.y12{bottom:639.081333pt;}
.y11{bottom:657.146667pt;}
.y10{bottom:675.212000pt;}
.yf{bottom:693.277333pt;}
.ye{bottom:711.342667pt;}
.yd{bottom:729.409333pt;}
.yc{bottom:747.474667pt;}
.yb{bottom:765.540000pt;}
.ya{bottom:783.605333pt;}
.y9{bottom:801.670667pt;}
.y8{bottom:844.896000pt;}
.y7{bottom:938.772000pt;}
.y6{bottom:956.838667pt;}
.y5{bottom:976.828000pt;}
.y4{bottom:992.768000pt;}
.y3{bottom:1008.708000pt;}
.y2{bottom:1017.838667pt;}
.y1{bottom:1055.389333pt;}
.h4{height:34.717901pt;}
.h5{height:42.530945pt;}
.h6{height:50.269133pt;}
.h2{height:64.362642pt;}
.h3{height:66.183803pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:66.141333pt;}
.x1{left:70.658667pt;}
.x9{left:73.373333pt;}
.x2{left:76.326667pt;}
.x6{left:88.724000pt;}
.x5{left:194.029333pt;}
.x8{left:347.888000pt;}
.x4{left:389.209333pt;}
.xa{left:393.234667pt;}
.x3{left:436.957333pt;}
}




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