
    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_576c2c14dd419a057091345e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_191b75e7cc6e3d1adf3f623a.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_ceae00ce3af23c6b34859bd3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_96393a36962c6afe47081f3a.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m5{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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:19.634572px;}
.ls2{letter-spacing:194.525322px;}
.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:0.000000px;}
._10{margin-left:-10.423189px;}
._5{margin-left:-2.548747px;}
._0{margin-left:-1.064033px;}
._1{width:1.077105px;}
._8{width:2.166132px;}
._15{width:3.556537px;}
._7{width:4.576526px;}
._2{width:6.381060px;}
._3{width:7.450045px;}
._14{width:8.840668px;}
._19{width:9.903959px;}
._b{width:11.615467px;}
._1b{width:12.986463px;}
._1c{width:14.145204px;}
._1a{width:15.167827px;}
._18{width:16.332400px;}
._12{width:19.258185px;}
._11{width:20.478333px;}
._13{width:21.728190px;}
._e{width:25.513628px;}
._f{width:26.526109px;}
._a{width:28.610126px;}
._6{width:30.104976px;}
._4{width:31.205006px;}
._9{width:32.849216px;}
._17{width:34.106547px;}
._c{width:36.525510px;}
._d{width:37.686693px;}
._16{width:194.525202px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs5{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.900277px;}
.y1{bottom:78.060269px;}
.y28{bottom:110.099956px;}
.y50{bottom:119.099952px;}
.y27{bottom:127.379949px;}
.y4f{bottom:139.799944px;}
.y26{bottom:144.659942px;}
.y4e{bottom:160.499936px;}
.y25{bottom:162.299935px;}
.y24{bottom:169.859932px;}
.y23{bottom:181.199928px;}
.y4d{bottom:201.899919px;}
.y4c{bottom:222.599911px;}
.y22{bottom:237.179905px;}
.y4b{bottom:260.939896px;}
.y21{bottom:275.879890px;}
.y4a{bottom:299.639880px;}
.y20{bottom:314.759874px;}
.y49{bottom:338.879864px;}
.y1f{bottom:353.639859px;}
.y48{bottom:377.579849px;}
.y1e{bottom:391.979843px;}
.y47{bottom:401.519839px;}
.y1d{bottom:413.219835px;}
.y46{bottom:425.279830px;}
.y1c{bottom:433.919826px;}
.y45{bottom:449.039820px;}
.y1b{bottom:454.619818px;}
.y44{bottom:472.799811px;}
.y1a{bottom:475.319810px;}
.y19{bottom:496.019802px;}
.y43{bottom:511.319795px;}
.y18{bottom:516.719793px;}
.y17{bottom:537.419785px;}
.y42{bottom:550.019780px;}
.y16{bottom:558.119777px;}
.y15{bottom:578.819768px;}
.y41{bottom:588.899764px;}
.y14{bottom:599.519760px;}
.y40{bottom:610.139756px;}
.y13{bottom:620.219752px;}
.y3f{bottom:630.839748px;}
.y12{bottom:640.919744px;}
.y3e{bottom:651.539739px;}
.y64{bottom:656.579737px;}
.y11{bottom:661.619735px;}
.y3d{bottom:672.239731px;}
.y10{bottom:682.319727px;}
.y3c{bottom:692.939723px;}
.y63{bottom:695.819722px;}
.y3b{bottom:713.639715px;}
.y62{bottom:716.519713px;}
.yf{bottom:720.659712px;}
.y3a{bottom:734.339706px;}
.y61{bottom:737.219705px;}
.y39{bottom:755.039698px;}
.y60{bottom:757.919697px;}
.ye{bottom:759.359696px;}
.y38{bottom:775.739690px;}
.y37{bottom:796.439681px;}
.y5f{bottom:796.619681px;}
.yd{bottom:798.599681px;}
.y36{bottom:817.139673px;}
.y5e{bottom:817.319673px;}
.yc{bottom:837.299665px;}
.y35{bottom:837.839665px;}
.y5d{bottom:838.019665px;}
.y34{bottom:858.539657px;}
.y5c{bottom:858.719657px;}
.ya{bottom:875.819650px;}
.y33{bottom:879.239648px;}
.y5b{bottom:879.419648px;}
.yb{bottom:884.099646px;}
.y9{bottom:899.579640px;}
.y32{bottom:899.939640px;}
.y5a{bottom:918.119633px;}
.y31{bottom:920.639632px;}
.y59{bottom:938.639625px;}
.y8{bottom:939.719624px;}
.y30{bottom:941.339623px;}
.y58{bottom:959.339616px;}
.y2f{bottom:962.039615px;}
.y57{bottom:980.039608px;}
.y7{bottom:982.379607px;}
.y2e{bottom:982.739607px;}
.y56{bottom:1000.739600px;}
.y2d{bottom:1003.439599px;}
.y55{bottom:1021.439591px;}
.y2c{bottom:1024.139590px;}
.y6{bottom:1025.219590px;}
.y54{bottom:1059.779576px;}
.y2b{bottom:1062.299575px;}
.y5{bottom:1068.059573px;}
.y53{bottom:1098.659561px;}
.y2a{bottom:1101.179560px;}
.y4{bottom:1113.239555px;}
.y52{bottom:1119.899552px;}
.y3{bottom:1137.359545px;}
.y29{bottom:1140.419544px;}
.y51{bottom:1140.599544px;}
.h6{height:25.913662px;}
.h1{height:44.149201px;}
.h4{height:48.616856px;}
.h7{height:58.651148px;}
.h5{height:70.664034px;}
.h3{height:72.562471px;}
.h2{height:84.898091px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620716px;}
.xd{left:132.479947px;}
.x3{left:150.479940px;}
.x7{left:154.979938px;}
.xe{left:180.719630px;}
.x4{left:237.960038px;}
.xa{left:249.119446px;}
.x6{left:266.219080px;}
.xb{left:278.279470px;}
.xc{left:410.939101px;}
.x1{left:442.259823px;}
.x5{left:446.399329px;}
.x8{left:620.819752px;}
.x9{left:626.939749px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:17.452953pt;}
.ls2{letter-spacing:172.911398pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-9.265057pt;}
._5{margin-left:-2.265553pt;}
._0{margin-left:-0.945807pt;}
._1{width:0.957426pt;}
._8{width:1.925451pt;}
._15{width:3.161366pt;}
._7{width:4.068023pt;}
._2{width:5.672053pt;}
._3{width:6.622263pt;}
._14{width:7.858371pt;}
._19{width:8.803519pt;}
._b{width:10.324860pt;}
._1b{width:11.543522pt;}
._1c{width:12.573515pt;}
._1a{width:13.482513pt;}
._18{width:14.517689pt;}
._12{width:17.118386pt;}
._11{width:18.202963pt;}
._13{width:19.313946pt;}
._e{width:22.678780pt;}
._f{width:23.578763pt;}
._a{width:25.431223pt;}
._6{width:26.759979pt;}
._4{width:27.737783pt;}
._9{width:29.199303pt;}
._17{width:30.316931pt;}
._c{width:32.467120pt;}
._d{width:33.499282pt;}
._16{width:172.911291pt;}
.fs4{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs5{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.466913pt;}
.y1{bottom:69.386906pt;}
.y28{bottom:97.866628pt;}
.y50{bottom:105.866624pt;}
.y27{bottom:113.226621pt;}
.y4f{bottom:124.266617pt;}
.y26{bottom:128.586615pt;}
.y4e{bottom:142.666610pt;}
.y25{bottom:144.266609pt;}
.y24{bottom:150.986606pt;}
.y23{bottom:161.066602pt;}
.y4d{bottom:179.466595pt;}
.y4c{bottom:197.866588pt;}
.y22{bottom:210.826582pt;}
.y4b{bottom:231.946574pt;}
.y21{bottom:245.226569pt;}
.y4a{bottom:266.346560pt;}
.y20{bottom:279.786555pt;}
.y49{bottom:301.226546pt;}
.y1f{bottom:314.346541pt;}
.y48{bottom:335.626532pt;}
.y1e{bottom:348.426527pt;}
.y47{bottom:356.906524pt;}
.y1d{bottom:367.306520pt;}
.y46{bottom:378.026515pt;}
.y1c{bottom:385.706512pt;}
.y45{bottom:399.146507pt;}
.y1b{bottom:404.106505pt;}
.y44{bottom:420.266499pt;}
.y1a{bottom:422.506498pt;}
.y19{bottom:440.906490pt;}
.y43{bottom:454.506485pt;}
.y18{bottom:459.306483pt;}
.y17{bottom:477.706476pt;}
.y42{bottom:488.906471pt;}
.y16{bottom:496.106468pt;}
.y15{bottom:514.506461pt;}
.y41{bottom:523.466457pt;}
.y14{bottom:532.906454pt;}
.y40{bottom:542.346450pt;}
.y13{bottom:551.306446pt;}
.y3f{bottom:560.746442pt;}
.y12{bottom:569.706439pt;}
.y3e{bottom:579.146435pt;}
.y64{bottom:583.626433pt;}
.y11{bottom:588.106431pt;}
.y3d{bottom:597.546428pt;}
.y10{bottom:606.506424pt;}
.y3c{bottom:615.946420pt;}
.y63{bottom:618.506419pt;}
.y3b{bottom:634.346413pt;}
.y62{bottom:636.906412pt;}
.yf{bottom:640.586410pt;}
.y3a{bottom:652.746406pt;}
.y61{bottom:655.306405pt;}
.y39{bottom:671.146398pt;}
.y60{bottom:673.706397pt;}
.ye{bottom:674.986397pt;}
.y38{bottom:689.546391pt;}
.y37{bottom:707.946383pt;}
.y5f{bottom:708.106383pt;}
.yd{bottom:709.866383pt;}
.y36{bottom:726.346376pt;}
.y5e{bottom:726.506376pt;}
.yc{bottom:744.266369pt;}
.y35{bottom:744.746369pt;}
.y5d{bottom:744.906369pt;}
.y34{bottom:763.146361pt;}
.y5c{bottom:763.306361pt;}
.ya{bottom:778.506355pt;}
.y33{bottom:781.546354pt;}
.y5b{bottom:781.706354pt;}
.yb{bottom:785.866352pt;}
.y9{bottom:799.626347pt;}
.y32{bottom:799.946347pt;}
.y5a{bottom:816.106340pt;}
.y31{bottom:818.346339pt;}
.y59{bottom:834.346333pt;}
.y8{bottom:835.306333pt;}
.y30{bottom:836.746332pt;}
.y58{bottom:852.746326pt;}
.y2f{bottom:855.146325pt;}
.y57{bottom:871.146318pt;}
.y7{bottom:873.226317pt;}
.y2e{bottom:873.546317pt;}
.y56{bottom:889.546311pt;}
.y2d{bottom:891.946310pt;}
.y55{bottom:907.946303pt;}
.y2c{bottom:910.346303pt;}
.y6{bottom:911.306302pt;}
.y54{bottom:942.026290pt;}
.y2b{bottom:944.266289pt;}
.y5{bottom:949.386287pt;}
.y53{bottom:976.586276pt;}
.y2a{bottom:978.826275pt;}
.y4{bottom:989.546271pt;}
.y52{bottom:995.466268pt;}
.y3{bottom:1010.986262pt;}
.y29{bottom:1013.706261pt;}
.y51{bottom:1013.866261pt;}
.h6{height:23.034366pt;}
.h1{height:39.243734pt;}
.h4{height:43.214983pt;}
.h7{height:52.134354pt;}
.h5{height:62.812475pt;}
.h3{height:64.499974pt;}
.h2{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440636pt;}
.xd{left:117.759953pt;}
.x3{left:133.759946pt;}
.x7{left:137.759945pt;}
.xe{left:160.639671pt;}
.x4{left:211.520034pt;}
.xa{left:221.439508pt;}
.x6{left:236.639182pt;}
.xb{left:247.359529pt;}
.xc{left:365.279201pt;}
.x1{left:393.119843pt;}
.x5{left:396.799403pt;}
.x8{left:551.839779pt;}
.x9{left:557.279777pt;}
}




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