
    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_ac36ff6d020d6fe88709250b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_e951343d4b220eb76140eb0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.722656;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;}
.lsf{letter-spacing:-1.010880px;}
.lsc{letter-spacing:-0.961920px;}
.ls10{letter-spacing:-0.421200px;}
.ls17{letter-spacing:-0.384480px;}
.ls14{letter-spacing:-0.336960px;}
.ls0{letter-spacing:-0.324000px;}
.ls9{letter-spacing:-0.287280px;}
.ls1a{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.192240px;}
.ls12{letter-spacing:-0.168480px;}
.ls1{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.095760px;}
.ls13{letter-spacing:-0.084240px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.084240px;}
.ls6{letter-spacing:0.095760px;}
.lsd{letter-spacing:0.168480px;}
.ls5{letter-spacing:0.191520px;}
.ls16{letter-spacing:0.192240px;}
.ls11{letter-spacing:0.252720px;}
.ls8{letter-spacing:0.287280px;}
.lsb{letter-spacing:0.360720px;}
.ls18{letter-spacing:0.384480px;}
.lsa{letter-spacing:23.166000px;}
.ls15{letter-spacing:30.348000px;}
.ls4{letter-spacing:50.037240px;}
.ls2{letter-spacing:65.772000px;}
.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;}
}
.ws29{word-spacing:-79.776000px;}
.ws33{word-spacing:-59.616000px;}
.ws2a{word-spacing:-52.866000px;}
.ws34{word-spacing:-29.808000px;}
.ws24{word-spacing:-29.592000px;}
.ws7{word-spacing:-26.525520px;}
.ws1c{word-spacing:-23.587200px;}
.ws1b{word-spacing:-23.166000px;}
.wsf{word-spacing:-3.366720px;}
.ws19{word-spacing:-2.695680px;}
.ws13{word-spacing:-2.527200px;}
.ws17{word-spacing:-2.442960px;}
.ws1e{word-spacing:-2.358720px;}
.ws18{word-spacing:-2.021760px;}
.ws1a{word-spacing:-1.937520px;}
.ws22{word-spacing:-1.769040px;}
.ws26{word-spacing:-1.728000px;}
.ws14{word-spacing:-1.684800px;}
.ws32{word-spacing:-1.345680px;}
.ws12{word-spacing:-1.095120px;}
.ws21{word-spacing:-1.010880px;}
.ws25{word-spacing:-1.008000px;}
.ws2d{word-spacing:-0.768960px;}
.wsa{word-spacing:-0.670320px;}
.ws3{word-spacing:-0.648000px;}
.ws2c{word-spacing:-0.576720px;}
.ws2f{word-spacing:-0.384480px;}
.wsb{word-spacing:-0.287280px;}
.ws15{word-spacing:-0.252720px;}
.ws2{word-spacing:-0.216000px;}
.ws30{word-spacing:-0.192240px;}
.ws11{word-spacing:-0.168480px;}
.ws8{word-spacing:-0.095760px;}
.ws23{word-spacing:-0.084240px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:0.095760px;}
.ws28{word-spacing:0.108000px;}
.ws10{word-spacing:0.120240px;}
.ws1d{word-spacing:0.168480px;}
.ws9{word-spacing:0.191520px;}
.ws31{word-spacing:0.192240px;}
.ws35{word-spacing:0.216000px;}
.ws2b{word-spacing:0.288000px;}
.ws27{word-spacing:0.324000px;}
.ws1f{word-spacing:0.336960px;}
.wsc{word-spacing:0.383040px;}
.ws2e{word-spacing:0.384480px;}
.ws20{word-spacing:0.421200px;}
.ws36{word-spacing:0.432000px;}
.ws1{word-spacing:0.648000px;}
.ws16{word-spacing:1.010880px;}
.ws6{word-spacing:1.188000px;}
.ws0{word-spacing:1.296000px;}
.ws5{word-spacing:1.404000px;}
.wsd{word-spacing:1.627920px;}
._3{margin-left:-2.797200px;}
._2{margin-left:-1.080000px;}
._0{width:1.069200px;}
._1{width:2.721600px;}
._4{width:3.802464px;}
._5{width:55.352160px;}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(53,53,53);}
.fc1{color:rgb(19,44,72);}
.fc0{color:rgb(23,141,187);}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs6{font-size:144.000000px;}
.fs8{font-size:192.240000px;}
.fs2{font-size:216.000000px;}
.fs7{font-size:288.000000px;}
.fs0{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:129.240660px;}
.y38{bottom:147.780000px;}
.y2c{bottom:156.904920px;}
.y37{bottom:176.940000px;}
.y28{bottom:181.097400px;}
.y2a{bottom:185.680800px;}
.y3{bottom:213.882600px;}
.y2b{bottom:214.480800px;}
.y36{bottom:221.220000px;}
.y27{bottom:247.900800px;}
.y35{bottom:250.380000px;}
.y2{bottom:269.142450px;}
.y34{bottom:294.480000px;}
.y22{bottom:328.327500px;}
.yd{bottom:336.600180px;}
.y33{bottom:338.580000px;}
.y1b{bottom:353.456580px;}
.y21{bottom:360.727500px;}
.y18{bottom:363.544320px;}
.yc{bottom:365.400000px;}
.y1{bottom:366.342450px;}
.y32{bottom:367.740000px;}
.y1a{bottom:378.665400px;}
.y17{bottom:388.753140px;}
.y20{bottom:393.127500px;}
.y19{bottom:403.874220px;}
.yb{bottom:409.140000px;}
.y31{bottom:412.020000px;}
.y1f{bottom:425.527500px;}
.y8{bottom:428.940000px;}
.y16{bottom:429.083040px;}
.y30{bottom:441.180000px;}
.y24{bottom:446.400000px;}
.ya{bottom:452.880180px;}
.y15{bottom:454.291860px;}
.y1e{bottom:457.927500px;}
.y7{bottom:461.340000px;}
.y23{bottom:478.800000px;}
.y9{bottom:481.680000px;}
.y26{bottom:483.542850px;}
.y2f{bottom:485.280000px;}
.y6{bottom:493.740000px;}
.y14{bottom:494.432220px;}
.y13{bottom:519.641040px;}
.y5{bottom:526.140000px;}
.y2e{bottom:529.380000px;}
.y12{bottom:544.849860px;}
.y25{bottom:569.942850px;}
.y11{bottom:570.058680px;}
.y10{bottom:595.267500px;}
.y2d{bottom:613.346250px;}
.yf{bottom:654.048120px;}
.y1d{bottom:655.320000px;}
.y4{bottom:678.146250px;}
.ye{bottom:690.060000px;}
.y1c{bottom:698.520000px;}
.h6{height:89.884080px;}
.h4{height:102.175920px;}
.h2{height:115.236000px;}
.h5{height:128.296080px;}
.h7{height:153.648000px;}
.h9{height:205.120080px;}
.h3{height:230.472000px;}
.h8{height:307.296000px;}
.h1{height:345.708000px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1{left:316.612500px;}
.x2{left:357.112500px;}
.x3{left:370.612500px;}
.x4{left:404.452350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.898560pt;}
.lsc{letter-spacing:-0.855040pt;}
.ls10{letter-spacing:-0.374400pt;}
.ls17{letter-spacing:-0.341760pt;}
.ls14{letter-spacing:-0.299520pt;}
.ls0{letter-spacing:-0.288000pt;}
.ls9{letter-spacing:-0.255360pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.170880pt;}
.ls12{letter-spacing:-0.149760pt;}
.ls1{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.085120pt;}
.ls13{letter-spacing:-0.074880pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.074880pt;}
.ls6{letter-spacing:0.085120pt;}
.lsd{letter-spacing:0.149760pt;}
.ls5{letter-spacing:0.170240pt;}
.ls16{letter-spacing:0.170880pt;}
.ls11{letter-spacing:0.224640pt;}
.ls8{letter-spacing:0.255360pt;}
.lsb{letter-spacing:0.320640pt;}
.ls18{letter-spacing:0.341760pt;}
.lsa{letter-spacing:20.592000pt;}
.ls15{letter-spacing:26.976000pt;}
.ls4{letter-spacing:44.477547pt;}
.ls2{letter-spacing:58.464000pt;}
.ws29{word-spacing:-70.912000pt;}
.ws33{word-spacing:-52.992000pt;}
.ws2a{word-spacing:-46.992000pt;}
.ws34{word-spacing:-26.496000pt;}
.ws24{word-spacing:-26.304000pt;}
.ws7{word-spacing:-23.578240pt;}
.ws1c{word-spacing:-20.966400pt;}
.ws1b{word-spacing:-20.592000pt;}
.wsf{word-spacing:-2.992640pt;}
.ws19{word-spacing:-2.396160pt;}
.ws13{word-spacing:-2.246400pt;}
.ws17{word-spacing:-2.171520pt;}
.ws1e{word-spacing:-2.096640pt;}
.ws18{word-spacing:-1.797120pt;}
.ws1a{word-spacing:-1.722240pt;}
.ws22{word-spacing:-1.572480pt;}
.ws26{word-spacing:-1.536000pt;}
.ws14{word-spacing:-1.497600pt;}
.ws32{word-spacing:-1.196160pt;}
.ws12{word-spacing:-0.973440pt;}
.ws21{word-spacing:-0.898560pt;}
.ws25{word-spacing:-0.896000pt;}
.ws2d{word-spacing:-0.683520pt;}
.wsa{word-spacing:-0.595840pt;}
.ws3{word-spacing:-0.576000pt;}
.ws2c{word-spacing:-0.512640pt;}
.ws2f{word-spacing:-0.341760pt;}
.wsb{word-spacing:-0.255360pt;}
.ws15{word-spacing:-0.224640pt;}
.ws2{word-spacing:-0.192000pt;}
.ws30{word-spacing:-0.170880pt;}
.ws11{word-spacing:-0.149760pt;}
.ws8{word-spacing:-0.085120pt;}
.ws23{word-spacing:-0.074880pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:0.085120pt;}
.ws28{word-spacing:0.096000pt;}
.ws10{word-spacing:0.106880pt;}
.ws1d{word-spacing:0.149760pt;}
.ws9{word-spacing:0.170240pt;}
.ws31{word-spacing:0.170880pt;}
.ws35{word-spacing:0.192000pt;}
.ws2b{word-spacing:0.256000pt;}
.ws27{word-spacing:0.288000pt;}
.ws1f{word-spacing:0.299520pt;}
.wsc{word-spacing:0.340480pt;}
.ws2e{word-spacing:0.341760pt;}
.ws20{word-spacing:0.374400pt;}
.ws36{word-spacing:0.384000pt;}
.ws1{word-spacing:0.576000pt;}
.ws16{word-spacing:0.898560pt;}
.ws6{word-spacing:1.056000pt;}
.ws0{word-spacing:1.152000pt;}
.ws5{word-spacing:1.248000pt;}
.wsd{word-spacing:1.447040pt;}
._3{margin-left:-2.486400pt;}
._2{margin-left:-0.960000pt;}
._0{width:0.950400pt;}
._1{width:2.419200pt;}
._4{width:3.379968pt;}
._5{width:49.201920pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs6{font-size:128.000000pt;}
.fs8{font-size:170.880000pt;}
.fs2{font-size:192.000000pt;}
.fs7{font-size:256.000000pt;}
.fs0{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:114.880587pt;}
.y38{bottom:131.360000pt;}
.y2c{bottom:139.471040pt;}
.y37{bottom:157.280000pt;}
.y28{bottom:160.975467pt;}
.y2a{bottom:165.049600pt;}
.y3{bottom:190.117867pt;}
.y2b{bottom:190.649600pt;}
.y36{bottom:196.640000pt;}
.y27{bottom:220.356267pt;}
.y35{bottom:222.560000pt;}
.y2{bottom:239.237733pt;}
.y34{bottom:261.760000pt;}
.y22{bottom:291.846667pt;}
.yd{bottom:299.200160pt;}
.y33{bottom:300.960000pt;}
.y1b{bottom:314.183627pt;}
.y21{bottom:320.646667pt;}
.y18{bottom:323.150507pt;}
.yc{bottom:324.800000pt;}
.y1{bottom:325.637733pt;}
.y32{bottom:326.880000pt;}
.y1a{bottom:336.591467pt;}
.y17{bottom:345.558347pt;}
.y20{bottom:349.446667pt;}
.y19{bottom:358.999307pt;}
.yb{bottom:363.680000pt;}
.y31{bottom:366.240000pt;}
.y1f{bottom:378.246667pt;}
.y8{bottom:381.280000pt;}
.y16{bottom:381.407147pt;}
.y30{bottom:392.160000pt;}
.y24{bottom:396.800000pt;}
.ya{bottom:402.560160pt;}
.y15{bottom:403.814987pt;}
.y1e{bottom:407.046667pt;}
.y7{bottom:410.080000pt;}
.y23{bottom:425.600000pt;}
.y9{bottom:428.160000pt;}
.y26{bottom:429.815867pt;}
.y2f{bottom:431.360000pt;}
.y6{bottom:438.880000pt;}
.y14{bottom:439.495307pt;}
.y13{bottom:461.903147pt;}
.y5{bottom:467.680000pt;}
.y2e{bottom:470.560000pt;}
.y12{bottom:484.310987pt;}
.y25{bottom:506.615867pt;}
.y11{bottom:506.718827pt;}
.y10{bottom:529.126667pt;}
.y2d{bottom:545.196667pt;}
.yf{bottom:581.376107pt;}
.y1d{bottom:582.506667pt;}
.y4{bottom:602.796667pt;}
.ye{bottom:613.386667pt;}
.y1c{bottom:620.906667pt;}
.h6{height:79.896960pt;}
.h4{height:90.823040pt;}
.h2{height:102.432000pt;}
.h5{height:114.040960pt;}
.h7{height:136.576000pt;}
.h9{height:182.328960pt;}
.h3{height:204.864000pt;}
.h8{height:273.152000pt;}
.h1{height:307.296000pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1{left:281.433333pt;}
.x2{left:317.433333pt;}
.x3{left:329.433333pt;}
.x4{left:359.513200pt;}
}




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