
    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_97d6f475fba8843a2ee0bf6a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_f68e251c9e0a41b5f7f01105.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_58a2d9852bc0cbb2ed94283f.woff2')format("woff");}.ff3{font-family:ff3;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:50.399980px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.215860px;}
.ls4{letter-spacing:49.859980px;}
.ls2{letter-spacing:52.883979px;}
.ls3{letter-spacing:55.151978px;}
.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;}
}
.ws4{word-spacing:-20.339992px;}
.ws3{word-spacing:-19.038232px;}
.ws0{word-spacing:-16.487853px;}
.ws6{word-spacing:-2.519999px;}
.ws5{word-spacing:-1.529999px;}
.ws2{word-spacing:-0.915099px;}
.ws1{word-spacing:0.000000px;}
._7{margin-left:-7.080073px;}
._e{margin-left:-5.047251px;}
._2{margin-left:-3.114010px;}
._1{margin-left:-1.152000px;}
._4{width:1.026012px;}
._9{width:2.270096px;}
._b{width:3.490129px;}
._a{width:15.338110px;}
._6{width:16.357195px;}
._c{width:18.413993px;}
._10{width:20.429992px;}
._3{width:23.076010px;}
._0{width:31.103988px;}
._f{width:38.375973px;}
._d{width:239.890944px;}
._5{width:606.404617px;}
._8{width:786.527685px;}
.fc2{color:transparent;}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.999986px;}
.fs5{font-size:69.119972px;}
.fs0{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs9{font-size:81.359967px;}
.fs8{font-size:84.239966px;}
.fsc{font-size:89.999964px;}
.fs4{font-size:95.759962px;}
.fs6{font-size:107.999957px;}
.fs7{font-size:120.239952px;}
.fs3{font-size:125.999950px;}
.fs2{font-size:131.759947px;}
.fs1{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y2{bottom:37.560285px;}
.y22{bottom:181.919927px;}
.y55{bottom:211.439915px;}
.y1f{bottom:212.699915px;}
.y54{bottom:230.879908px;}
.y1e{bottom:234.479906px;}
.y3c{bottom:239.699904px;}
.y53{bottom:255.179898px;}
.y1d{bottom:256.439897px;}
.y3b{bottom:261.299895px;}
.y52{bottom:274.619890px;}
.y1c{bottom:278.219889px;}
.y3a{bottom:288.299885px;}
.y51{bottom:294.059882px;}
.y1b{bottom:300.179880px;}
.y50{bottom:313.499875px;}
.y39{bottom:315.299874px;}
.y1a{bottom:326.819869px;}
.y38{bottom:336.899865px;}
.y4f{bottom:337.799865px;}
.y19{bottom:348.779860px;}
.y4e{bottom:357.239857px;}
.y5f{bottom:361.019856px;}
.y37{bottom:363.899854px;}
.y18{bottom:370.559852px;}
.y4d{bottom:376.679849px;}
.y36{bottom:385.499846px;}
.y4c{bottom:396.119842px;}
.y17{bottom:397.379841px;}
.y5e{bottom:404.219838px;}
.y35{bottom:412.499835px;}
.y16{bottom:419.159832px;}
.y4b{bottom:420.419832px;}
.y34{bottom:434.099826px;}
.y4a{bottom:439.859824px;}
.y15{bottom:445.979822px;}
.y33{bottom:455.699818px;}
.y49{bottom:459.299816px;}
.y14{bottom:472.619811px;}
.y32{bottom:477.299809px;}
.y13{bottom:509.879796px;}
.y48{bottom:510.959796px;}
.y31{bottom:516.539793px;}
.y21{bottom:707.879717px;}
.y10{bottom:724.079710px;}
.y47{bottom:742.619703px;}
.y5d{bottom:746.039702px;}
.y30{bottom:753.959698px;}
.y46{bottom:771.419691px;}
.y2f{bottom:771.959691px;}
.y9{bottom:783.479687px;}
.y2e{bottom:794.459682px;}
.yf{bottom:796.079682px;}
.y5c{bottom:800.039680px;}
.y45{bottom:800.219680px;}
.y8{bottom:805.799678px;}
.y2d{bottom:812.459675px;}
.y5b{bottom:827.039669px;}
.y44{bottom:829.019668px;}
.y7{bottom:834.599666px;}
.y2c{bottom:834.959666px;}
.y5a{bottom:854.039658px;}
.y12{bottom:855.839658px;}
.y2b{bottom:857.459657px;}
.y43{bottom:857.819657px;}
.y11{bottom:868.439653px;}
.y2a{bottom:875.459650px;}
.y59{bottom:881.039648px;}
.y42{bottom:886.619645px;}
.y29{bottom:897.959641px;}
.y6{bottom:902.099639px;}
.y58{bottom:908.039637px;}
.y41{bottom:915.419634px;}
.y28{bottom:915.959634px;}
.ye{bottom:930.539628px;}
.y27{bottom:938.459625px;}
.y5{bottom:939.899624px;}
.y40{bottom:944.219622px;}
.yd{bottom:958.079617px;}
.y26{bottom:960.959616px;}
.y57{bottom:962.039615px;}
.y3f{bottom:973.019611px;}
.y4{bottom:977.699609px;}
.y25{bottom:983.459607px;}
.y56{bottom:983.639607px;}
.yc{bottom:993.359603px;}
.y3e{bottom:1002.719599px;}
.y24{bottom:1005.959598px;}
.y3{bottom:1016.759593px;}
.yb{bottom:1025.759590px;}
.y23{bottom:1035.839586px;}
.y3d{bottom:1042.499583px;}
.ya{bottom:1058.159577px;}
.y20{bottom:1058.339577px;}
.y1{bottom:1213.499515px;}
.h10{height:25.839833px;}
.h5{height:50.186230px;}
.h1{height:51.679667px;}
.h12{height:53.746854px;}
.he{height:58.398024px;}
.hd{height:59.073375px;}
.h8{height:60.465210px;}
.ha{height:61.164468px;}
.h14{height:64.599584px;}
.h15{height:68.733957px;}
.h4{height:69.528839px;}
.h6{height:77.519500px;}
.h11{height:78.097469px;}
.hc{height:84.855904px;}
.h7{height:86.305044px;}
.hf{height:87.303129px;}
.h3{height:91.485315px;}
.h13{height:93.867150px;}
.hb{height:94.573790px;}
.h2{height:104.554646px;}
.h9{height:111.564448px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x13{left:181.619927px;}
.x4{left:187.559925px;}
.xa{left:192.239923px;}
.x5{left:195.659922px;}
.xb{left:198.899920px;}
.x14{left:208.619917px;}
.xe{left:216.899913px;}
.x12{left:227.159909px;}
.x15{left:228.959908px;}
.x16{left:292.499883px;}
.xd{left:321.479871px;}
.xf{left:327.059869px;}
.x6{left:356.039858px;}
.x3{left:357.659857px;}
.x11{left:409.859836px;}
.x18{left:464.759814px;}
.x17{left:467.459813px;}
.x7{left:500.759800px;}
.x9{left:536.219786px;}
.xc{left:549.719780px;}
.x8{left:569.519772px;}
.x10{left:679.319728px;}
.x1{left:766.799693px;}
.x2{left:845.099662px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:44.799982pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.191875pt;}
.ls4{letter-spacing:44.319982pt;}
.ls2{letter-spacing:47.007981pt;}
.ls3{letter-spacing:49.023980pt;}
.ws4{word-spacing:-18.079993pt;}
.ws3{word-spacing:-16.922873pt;}
.ws0{word-spacing:-14.655869pt;}
.ws6{word-spacing:-2.239999pt;}
.ws5{word-spacing:-1.359999pt;}
.ws2{word-spacing:-0.813421pt;}
.ws1{word-spacing:0.000000pt;}
._7{margin-left:-6.293398pt;}
._e{margin-left:-4.486445pt;}
._2{margin-left:-2.768009pt;}
._1{margin-left:-1.024000pt;}
._4{width:0.912010pt;}
._9{width:2.017863pt;}
._b{width:3.102337pt;}
._a{width:13.633875pt;}
._6{width:14.539729pt;}
._c{width:16.367993pt;}
._10{width:18.159993pt;}
._3{width:20.512009pt;}
._0{width:27.647989pt;}
._f{width:34.111976pt;}
._d{width:213.236395pt;}
._5{width:539.026326pt;}
._8{width:699.135720pt;}
.fsa{font-size:31.999987pt;}
.fs5{font-size:61.439975pt;}
.fs0{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs9{font-size:72.319971pt;}
.fs8{font-size:74.879970pt;}
.fsc{font-size:79.999968pt;}
.fs4{font-size:85.119966pt;}
.fs6{font-size:95.999962pt;}
.fs7{font-size:106.879957pt;}
.fs3{font-size:111.999955pt;}
.fs2{font-size:117.119953pt;}
.fs1{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.386920pt;}
.y22{bottom:161.706602pt;}
.y55{bottom:187.946591pt;}
.y1f{bottom:189.066591pt;}
.y54{bottom:205.226585pt;}
.y1e{bottom:208.426583pt;}
.y3c{bottom:213.066581pt;}
.y53{bottom:226.826576pt;}
.y1d{bottom:227.946575pt;}
.y3b{bottom:232.266574pt;}
.y52{bottom:244.106569pt;}
.y1c{bottom:247.306568pt;}
.y3a{bottom:256.266564pt;}
.y51{bottom:261.386562pt;}
.y1b{bottom:266.826560pt;}
.y50{bottom:278.666555pt;}
.y39{bottom:280.266555pt;}
.y1a{bottom:290.506550pt;}
.y38{bottom:299.466547pt;}
.y4f{bottom:300.266547pt;}
.y19{bottom:310.026543pt;}
.y4e{bottom:317.546540pt;}
.y5f{bottom:320.906538pt;}
.y37{bottom:323.466537pt;}
.y18{bottom:329.386535pt;}
.y4d{bottom:334.826533pt;}
.y36{bottom:342.666530pt;}
.y4c{bottom:352.106526pt;}
.y17{bottom:353.226525pt;}
.y5e{bottom:359.306523pt;}
.y35{bottom:366.666520pt;}
.y16{bottom:372.586518pt;}
.y4b{bottom:373.706517pt;}
.y34{bottom:385.866512pt;}
.y4a{bottom:390.986510pt;}
.y15{bottom:396.426508pt;}
.y33{bottom:405.066505pt;}
.y49{bottom:408.266503pt;}
.y14{bottom:420.106499pt;}
.y32{bottom:424.266497pt;}
.y13{bottom:453.226485pt;}
.y48{bottom:454.186485pt;}
.y31{bottom:459.146483pt;}
.y21{bottom:629.226415pt;}
.y10{bottom:643.626409pt;}
.y47{bottom:660.106403pt;}
.y5d{bottom:663.146401pt;}
.y30{bottom:670.186399pt;}
.y46{bottom:685.706392pt;}
.y2f{bottom:686.186392pt;}
.y9{bottom:696.426388pt;}
.y2e{bottom:706.186384pt;}
.yf{bottom:707.626384pt;}
.y5c{bottom:711.146382pt;}
.y45{bottom:711.306382pt;}
.y8{bottom:716.266380pt;}
.y2d{bottom:722.186378pt;}
.y5b{bottom:735.146373pt;}
.y44{bottom:736.906372pt;}
.y7{bottom:741.866370pt;}
.y2c{bottom:742.186370pt;}
.y5a{bottom:759.146363pt;}
.y12{bottom:760.746362pt;}
.y2b{bottom:762.186362pt;}
.y43{bottom:762.506362pt;}
.y11{bottom:771.946358pt;}
.y2a{bottom:778.186355pt;}
.y59{bottom:783.146353pt;}
.y42{bottom:788.106351pt;}
.y29{bottom:798.186347pt;}
.y6{bottom:801.866346pt;}
.y58{bottom:807.146344pt;}
.y41{bottom:813.706341pt;}
.y28{bottom:814.186341pt;}
.ye{bottom:827.146336pt;}
.y27{bottom:834.186333pt;}
.y5{bottom:835.466332pt;}
.y40{bottom:839.306331pt;}
.yd{bottom:851.626326pt;}
.y26{bottom:854.186325pt;}
.y57{bottom:855.146325pt;}
.y3f{bottom:864.906321pt;}
.y4{bottom:869.066319pt;}
.y25{bottom:874.186317pt;}
.y56{bottom:874.346317pt;}
.yc{bottom:882.986313pt;}
.y3e{bottom:891.306310pt;}
.y24{bottom:894.186309pt;}
.y3{bottom:903.786305pt;}
.yb{bottom:911.786302pt;}
.y23{bottom:920.746298pt;}
.y3d{bottom:926.666296pt;}
.ya{bottom:940.586290pt;}
.y20{bottom:940.746290pt;}
.y1{bottom:1078.666235pt;}
.h10{height:22.968741pt;}
.h5{height:44.609982pt;}
.h1{height:45.937482pt;}
.h12{height:47.774981pt;}
.he{height:51.909354pt;}
.hd{height:52.509666pt;}
.h8{height:53.746854pt;}
.ha{height:54.368416pt;}
.h14{height:57.421852pt;}
.h15{height:61.096851pt;}
.h4{height:61.803413pt;}
.h6{height:68.906222pt;}
.h11{height:69.419972pt;}
.hc{height:75.427470pt;}
.h7{height:76.715594pt;}
.hf{height:77.602781pt;}
.h3{height:81.320280pt;}
.h13{height:83.437467pt;}
.hb{height:84.065591pt;}
.h2{height:92.937463pt;}
.h9{height:99.168398pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x13{left:161.439935pt;}
.x4{left:166.719933pt;}
.xa{left:170.879932pt;}
.x5{left:173.919930pt;}
.xb{left:176.799929pt;}
.x14{left:185.439926pt;}
.xe{left:192.799923pt;}
.x12{left:201.919919pt;}
.x15{left:203.519919pt;}
.x16{left:259.999896pt;}
.xd{left:285.759886pt;}
.xf{left:290.719884pt;}
.x6{left:316.479873pt;}
.x3{left:317.919873pt;}
.x11{left:364.319854pt;}
.x18{left:413.119835pt;}
.x17{left:415.519834pt;}
.x7{left:445.119822pt;}
.x9{left:476.639809pt;}
.xc{left:488.639805pt;}
.x8{left:506.239798pt;}
.x10{left:603.839758pt;}
.x1{left:681.599727pt;}
.x2{left:751.199700pt;}
}




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