
    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_c3d5a25ea5da11ba12e62389.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_f643d36872c289272a908d6b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_4e010b7d9684507d5ad3f611.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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:-60.479400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.297680px;}
.lsf{letter-spacing:-10.429560px;}
.lsd{letter-spacing:-6.113880px;}
.ls7{letter-spacing:-4.539240px;}
.ls3{letter-spacing:-1.681200px;}
.ls5{letter-spacing:-1.344960px;}
.ls9{letter-spacing:-1.260000px;}
.lsc{letter-spacing:-1.198800px;}
.lse{letter-spacing:-0.119880px;}
.lsa{letter-spacing:-0.108000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.057600px;}
.ls2{letter-spacing:0.059940px;}
.ls8{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.119880px;}
.ls6{letter-spacing:0.144000px;}
.ls1{letter-spacing:530.948520px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1{word-spacing:-36.650160px;}
.ws0{word-spacing:-36.313920px;}
.ws4{word-spacing:-33.455880px;}
.ws2{word-spacing:-32.688000px;}
.ws3{word-spacing:-32.544000px;}
.ws14{word-spacing:-27.212760px;}
.ws13{word-spacing:-27.092880px;}
.wsa{word-spacing:-24.516000px;}
.ws26{word-spacing:-1.584000px;}
.ws25{word-spacing:-1.296000px;}
.ws28{word-spacing:-1.008000px;}
.ws2a{word-spacing:-0.900000px;}
.ws22{word-spacing:-0.864000px;}
.ws23{word-spacing:-0.576000px;}
.ws2d{word-spacing:-0.432000px;}
.ws21{word-spacing:-0.144000px;}
.ws2f{word-spacing:-0.119880px;}
.ws2b{word-spacing:-0.108000px;}
.ws27{word-spacing:0.000000px;}
.ws2c{word-spacing:0.108000px;}
.ws20{word-spacing:0.144000px;}
.ws29{word-spacing:0.324000px;}
.ws8{word-spacing:0.442800px;}
.ws9{word-spacing:0.475200px;}
.ws7{word-spacing:0.572400px;}
.ws24{word-spacing:0.576000px;}
.ws2e{word-spacing:0.648000px;}
.ws6{word-spacing:0.885600px;}
.wsf{word-spacing:1.078920px;}
.ws5{word-spacing:1.188000px;}
.wsb{word-spacing:1.512000px;}
.ws1c{word-spacing:27.212760px;}
.ws15{word-spacing:39.932028px;}
.wse{word-spacing:167.364468px;}
.ws1d{word-spacing:224.822952px;}
.ws19{word-spacing:291.967740px;}
.ws12{word-spacing:352.866780px;}
.ws1b{word-spacing:371.628000px;}
.ws10{word-spacing:375.536088px;}
.wsc{word-spacing:421.258320px;}
.ws18{word-spacing:443.615940px;}
.ws16{word-spacing:448.255296px;}
.ws1a{word-spacing:468.131400px;}
.ws11{word-spacing:504.574920px;}
.wsd{word-spacing:504.934560px;}
.ws17{word-spacing:675.787536px;}
.ws1e{word-spacing:676.315008px;}
.ws1f{word-spacing:1036.062900px;}
._b{margin-left:-23.400000px;}
._4{margin-left:-18.936000px;}
._8{margin-left:-17.400960px;}
._c{margin-left:-14.220000px;}
._a{margin-left:-12.240000px;}
._6{margin-left:-10.794600px;}
._3{margin-left:-9.119880px;}
._e{margin-left:-8.100000px;}
._d{margin-left:-7.098840px;}
._9{margin-left:-4.028760px;}
._2{margin-left:-3.024000px;}
._1{margin-left:-1.513080px;}
._0{width:1.344960px;}
._7{width:3.211092px;}
._11{width:4.603392px;}
._12{width:6.293700px;}
._15{width:9.146844px;}
._14{width:10.381608px;}
._13{width:469.605924px;}
._f{width:519.394680px;}
._10{width:524.475000px;}
._5{width:1685.130000px;}
.fc1{color:rgb(255,153,51);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:108.000000px;}
.fs4{font-size:119.880000px;}
.fs1{font-size:144.000000px;}
.fs0{font-size:168.120000px;}
.fs3{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:272.460000px;}
.y33{bottom:315.660000px;}
.y32{bottom:358.860000px;}
.y45{bottom:383.795820px;}
.y31{bottom:402.060000px;}
.y44{bottom:437.801760px;}
.y30{bottom:445.260000px;}
.y2f{bottom:488.460000px;}
.y43{bottom:517.132350px;}
.y2e{bottom:531.660000px;}
.y42{bottom:571.138290px;}
.y2d{bottom:574.860000px;}
.y2c{bottom:618.060000px;}
.y41{bottom:625.144230px;}
.y2b{bottom:661.260000px;}
.y40{bottom:679.150170px;}
.y2a{bottom:704.460000px;}
.y3f{bottom:733.156110px;}
.y29{bottom:749.190000px;}
.y3e{bottom:787.162050px;}
.y20{bottom:790.485000px;}
.y1f{bottom:833.685000px;}
.y3d{bottom:854.294850px;}
.y1e{bottom:876.885000px;}
.y1d{bottom:920.085000px;}
.y28{bottom:926.392500px;}
.y1c{bottom:963.285000px;}
.y27{bottom:982.897350px;}
.y1b{bottom:1006.485000px;}
.y26{bottom:1026.097350px;}
.y1a{bottom:1049.685000px;}
.y25{bottom:1069.297350px;}
.y19{bottom:1092.885000px;}
.y24{bottom:1112.497350px;}
.y18{bottom:1136.085000px;}
.y23{bottom:1155.697350px;}
.y17{bottom:1179.285000px;}
.y22{bottom:1198.897350px;}
.y16{bottom:1222.485000px;}
.y21{bottom:1243.627350px;}
.y15{bottom:1265.685000px;}
.y14{bottom:1308.885000px;}
.y13{bottom:1352.085000px;}
.y12{bottom:1411.934850px;}
.y11{bottom:1455.134850px;}
.y10{bottom:1498.334850px;}
.yf{bottom:1541.534850px;}
.ye{bottom:1584.734850px;}
.yd{bottom:1627.934850px;}
.yc{bottom:1671.134850px;}
.yb{bottom:1714.334850px;}
.ya{bottom:1759.065000px;}
.y9{bottom:1811.966100px;}
.y8{bottom:1855.166100px;}
.y7{bottom:1898.366100px;}
.y6{bottom:1941.566100px;}
.y5{bottom:1984.766100px;}
.y4{bottom:2027.966100px;}
.y3{bottom:2071.166100px;}
.y2{bottom:2114.366100px;}
.y1{bottom:2159.096250px;}
.y3c{bottom:2172.005100px;}
.y3b{bottom:2207.186100px;}
.y3a{bottom:2239.586100px;}
.y39{bottom:2271.986100px;}
.y38{bottom:2304.386100px;}
.y37{bottom:2336.786100px;}
.y36{bottom:2373.956250px;}
.y35{bottom:2427.956250px;}
.h7{height:82.183359px;}
.h4{height:89.068359px;}
.h6{height:98.829879px;}
.h9{height:98.865879px;}
.h3{height:118.757812px;}
.h8{height:121.163559px;}
.h2{height:138.649746px;}
.h5{height:148.447266px;}
.h0{height:2525.670000px;}
.h1{height:2526.000000px;}
.w1{width:1785.750000px;}
.w0{width:1785.780000px;}
.x0{left:0.000000px;}
.x4{left:44.737500px;}
.x1{left:46.800000px;}
.xe{left:72.982500px;}
.x2{left:214.800000px;}
.xc{left:219.525000px;}
.x6{left:228.840000px;}
.xa{left:247.524000px;}
.x8{left:280.680000px;}
.x7{left:501.270000px;}
.x5{left:907.612500px;}
.x3{left:912.112500px;}
.xb{left:1165.605000px;}
.x9{left:1191.363000px;}
.xd{left:1291.911000px;}
@media print{
.v1{vertical-align:-53.759467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.820160pt;}
.lsf{letter-spacing:-9.270720pt;}
.lsd{letter-spacing:-5.434560pt;}
.ls7{letter-spacing:-4.034880pt;}
.ls3{letter-spacing:-1.494400pt;}
.ls5{letter-spacing:-1.195520pt;}
.ls9{letter-spacing:-1.120000pt;}
.lsc{letter-spacing:-1.065600pt;}
.lse{letter-spacing:-0.106560pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.051200pt;}
.ls2{letter-spacing:0.053280pt;}
.ls8{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.106560pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1{letter-spacing:471.954240pt;}
.ws1{word-spacing:-32.577920pt;}
.ws0{word-spacing:-32.279040pt;}
.ws4{word-spacing:-29.738560pt;}
.ws2{word-spacing:-29.056000pt;}
.ws3{word-spacing:-28.928000pt;}
.ws14{word-spacing:-24.189120pt;}
.ws13{word-spacing:-24.082560pt;}
.wsa{word-spacing:-21.792000pt;}
.ws26{word-spacing:-1.408000pt;}
.ws25{word-spacing:-1.152000pt;}
.ws28{word-spacing:-0.896000pt;}
.ws2a{word-spacing:-0.800000pt;}
.ws22{word-spacing:-0.768000pt;}
.ws23{word-spacing:-0.512000pt;}
.ws2d{word-spacing:-0.384000pt;}
.ws21{word-spacing:-0.128000pt;}
.ws2f{word-spacing:-0.106560pt;}
.ws2b{word-spacing:-0.096000pt;}
.ws27{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.096000pt;}
.ws20{word-spacing:0.128000pt;}
.ws29{word-spacing:0.288000pt;}
.ws8{word-spacing:0.393600pt;}
.ws9{word-spacing:0.422400pt;}
.ws7{word-spacing:0.508800pt;}
.ws24{word-spacing:0.512000pt;}
.ws2e{word-spacing:0.576000pt;}
.ws6{word-spacing:0.787200pt;}
.wsf{word-spacing:0.959040pt;}
.ws5{word-spacing:1.056000pt;}
.wsb{word-spacing:1.344000pt;}
.ws1c{word-spacing:24.189120pt;}
.ws15{word-spacing:35.495136pt;}
.wse{word-spacing:148.768416pt;}
.ws1d{word-spacing:199.842624pt;}
.ws19{word-spacing:259.526880pt;}
.ws12{word-spacing:313.659360pt;}
.ws1b{word-spacing:330.336000pt;}
.ws10{word-spacing:333.809856pt;}
.wsc{word-spacing:374.451840pt;}
.ws18{word-spacing:394.325280pt;}
.ws16{word-spacing:398.449152pt;}
.ws1a{word-spacing:416.116800pt;}
.ws11{word-spacing:448.511040pt;}
.wsd{word-spacing:448.830720pt;}
.ws17{word-spacing:600.700032pt;}
.ws1e{word-spacing:601.168896pt;}
.ws1f{word-spacing:920.944800pt;}
._b{margin-left:-20.800000pt;}
._4{margin-left:-16.832000pt;}
._8{margin-left:-15.467520pt;}
._c{margin-left:-12.640000pt;}
._a{margin-left:-10.880000pt;}
._6{margin-left:-9.595200pt;}
._3{margin-left:-8.106560pt;}
._e{margin-left:-7.200000pt;}
._d{margin-left:-6.310080pt;}
._9{margin-left:-3.581120pt;}
._2{margin-left:-2.688000pt;}
._1{margin-left:-1.344960pt;}
._0{width:1.195520pt;}
._7{width:2.854304pt;}
._11{width:4.091904pt;}
._12{width:5.594400pt;}
._15{width:8.130528pt;}
._14{width:9.228096pt;}
._13{width:417.427488pt;}
._f{width:461.684160pt;}
._10{width:466.200000pt;}
._5{width:1497.893333pt;}
.fs2{font-size:96.000000pt;}
.fs4{font-size:106.560000pt;}
.fs1{font-size:128.000000pt;}
.fs0{font-size:149.440000pt;}
.fs3{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:242.186667pt;}
.y33{bottom:280.586667pt;}
.y32{bottom:318.986667pt;}
.y45{bottom:341.151840pt;}
.y31{bottom:357.386667pt;}
.y44{bottom:389.157120pt;}
.y30{bottom:395.786667pt;}
.y2f{bottom:434.186667pt;}
.y43{bottom:459.673200pt;}
.y2e{bottom:472.586667pt;}
.y42{bottom:507.678480pt;}
.y2d{bottom:510.986667pt;}
.y2c{bottom:549.386667pt;}
.y41{bottom:555.683760pt;}
.y2b{bottom:587.786667pt;}
.y40{bottom:603.689040pt;}
.y2a{bottom:626.186667pt;}
.y3f{bottom:651.694320pt;}
.y29{bottom:665.946667pt;}
.y3e{bottom:699.699600pt;}
.y20{bottom:702.653333pt;}
.y1f{bottom:741.053333pt;}
.y3d{bottom:759.373200pt;}
.y1e{bottom:779.453333pt;}
.y1d{bottom:817.853333pt;}
.y28{bottom:823.460000pt;}
.y1c{bottom:856.253333pt;}
.y27{bottom:873.686533pt;}
.y1b{bottom:894.653333pt;}
.y26{bottom:912.086533pt;}
.y1a{bottom:933.053333pt;}
.y25{bottom:950.486533pt;}
.y19{bottom:971.453333pt;}
.y24{bottom:988.886533pt;}
.y18{bottom:1009.853333pt;}
.y23{bottom:1027.286533pt;}
.y17{bottom:1048.253333pt;}
.y22{bottom:1065.686533pt;}
.y16{bottom:1086.653333pt;}
.y21{bottom:1105.446533pt;}
.y15{bottom:1125.053333pt;}
.y14{bottom:1163.453333pt;}
.y13{bottom:1201.853333pt;}
.y12{bottom:1255.053200pt;}
.y11{bottom:1293.453200pt;}
.y10{bottom:1331.853200pt;}
.yf{bottom:1370.253200pt;}
.ye{bottom:1408.653200pt;}
.yd{bottom:1447.053200pt;}
.yc{bottom:1485.453200pt;}
.yb{bottom:1523.853200pt;}
.ya{bottom:1563.613333pt;}
.y9{bottom:1610.636533pt;}
.y8{bottom:1649.036533pt;}
.y7{bottom:1687.436533pt;}
.y6{bottom:1725.836533pt;}
.y5{bottom:1764.236533pt;}
.y4{bottom:1802.636533pt;}
.y3{bottom:1841.036533pt;}
.y2{bottom:1879.436533pt;}
.y1{bottom:1919.196667pt;}
.y3c{bottom:1930.671200pt;}
.y3b{bottom:1961.943200pt;}
.y3a{bottom:1990.743200pt;}
.y39{bottom:2019.543200pt;}
.y38{bottom:2048.343200pt;}
.y37{bottom:2077.143200pt;}
.y36{bottom:2110.183333pt;}
.y35{bottom:2158.183333pt;}
.h7{height:73.051875pt;}
.h4{height:79.171875pt;}
.h6{height:87.848781pt;}
.h9{height:87.880781pt;}
.h3{height:105.562500pt;}
.h8{height:107.700941pt;}
.h2{height:123.244219pt;}
.h5{height:131.953125pt;}
.h0{height:2245.040000pt;}
.h1{height:2245.333333pt;}
.w1{width:1587.333333pt;}
.w0{width:1587.360000pt;}
.x0{left:0.000000pt;}
.x4{left:39.766667pt;}
.x1{left:41.600000pt;}
.xe{left:64.873333pt;}
.x2{left:190.933333pt;}
.xc{left:195.133333pt;}
.x6{left:203.413333pt;}
.xa{left:220.021333pt;}
.x8{left:249.493333pt;}
.x7{left:445.573333pt;}
.x5{left:806.766667pt;}
.x3{left:810.766667pt;}
.xb{left:1036.093333pt;}
.x9{left:1058.989333pt;}
.xd{left:1148.365333pt;}
}




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