
    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_24a180592bc77f8ba0b51c45.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_7aea6c070faf4cfcb5b0abf1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_ec172366662ebceb870fb1a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_e1fd77b3461dffd484745c49.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.692383;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_74721d7e879aa5254cc87bec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.757812;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);}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:38.880000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.058800px;}
.ls18{letter-spacing:0.059580px;}
.ls1a{letter-spacing:0.059760px;}
.ls4{letter-spacing:0.083520px;}
.ls6{letter-spacing:0.106200px;}
.ls13{letter-spacing:0.119400px;}
.ls19{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.120600px;}
.ls9{letter-spacing:0.160560px;}
.ls17{letter-spacing:0.164040px;}
.ls1{letter-spacing:0.167040px;}
.ls8{letter-spacing:0.203400px;}
.lsb{letter-spacing:0.216600px;}
.ls5{letter-spacing:0.250560px;}
.lsf{letter-spacing:0.295200px;}
.lsd{letter-spacing:0.334080px;}
.ls10{letter-spacing:0.480000px;}
.ls11{letter-spacing:5.913000px;}
.ls14{letter-spacing:6.211200px;}
.lsc{letter-spacing:7.173600px;}
.ls7{letter-spacing:13.111200px;}
.lse{letter-spacing:13.867800px;}
.ls15{letter-spacing:15.576000px;}
.lsa{letter-spacing:34.773600px;}
.ls3{letter-spacing:195.119880px;}
.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;}
}
.ws6{word-spacing:-21.214080px;}
.ws4{word-spacing:-21.130560px;}
.ws2{word-spacing:-21.047040px;}
.ws3{word-spacing:-20.963520px;}
.ws1{word-spacing:-20.880000px;}
.ws8{word-spacing:-15.059520px;}
.ws7{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.500000px;}
.ws0{word-spacing:0.000000px;}
._2b{margin-left:-1.002240px;}
._0{width:1.002240px;}
._1{width:2.108520px;}
._7{width:4.008960px;}
._8{width:5.094720px;}
._3{width:6.180480px;}
._5{width:7.683840px;}
._9{width:8.769600px;}
._a{width:10.022400px;}
._b{width:11.776320px;}
._c{width:12.810120px;}
._d{width:14.198400px;}
._14{width:15.284160px;}
._13{width:16.787520px;}
._e{width:18.541440px;}
._6{width:19.627200px;}
._f{width:22.466880px;}
._4{width:23.719680px;}
._11{width:25.390200px;}
._18{width:26.893440px;}
._16{width:27.895680px;}
._15{width:28.981440px;}
._23{width:30.651840px;}
._12{width:32.322240px;}
._17{width:33.491520px;}
._1e{width:34.994880px;}
._10{width:35.997240px;}
._1d{width:37.082880px;}
._26{width:38.085120px;}
._25{width:39.087360px;}
._19{width:40.089600px;}
._24{width:41.760000px;}
._20{width:43.012800px;}
._1f{width:44.098560px;}
._22{width:45.518400px;}
._21{width:46.854720px;}
._28{width:48.024120px;}
._1b{width:50.696640px;}
._1a{width:51.698880px;}
._27{width:54.037440px;}
._2a{width:57.461760px;}
._29{width:58.547520px;}
._2e{width:64.511880px;}
._2c{width:74.517000px;}
._2d{width:110.949000px;}
._2f{width:119.401800px;}
._1c{width:174.240000px;}
._2{width:195.119880px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:21.259500px;}
.y27{bottom:95.541060px;}
.y1d{bottom:100.041060px;}
.y37{bottom:125.601060px;}
.y26{bottom:130.461000px;}
.y1c{bottom:134.961000px;}
.y36{bottom:142.341000px;}
.y35{bottom:158.901000px;}
.y25{bottom:165.381000px;}
.y1b{bottom:169.881000px;}
.y34{bottom:182.301000px;}
.y33{bottom:192.201000px;}
.y24{bottom:200.121000px;}
.y1a{bottom:204.621000px;}
.y32{bottom:208.761000px;}
.y31{bottom:225.321000px;}
.y23{bottom:235.041000px;}
.y19{bottom:239.541000px;}
.y30{bottom:241.881000px;}
.y2f{bottom:265.461000px;}
.y22{bottom:269.961000px;}
.y18{bottom:274.461000px;}
.y2e{bottom:275.181000px;}
.y2d{bottom:291.741000px;}
.y21{bottom:304.881000px;}
.y2c{bottom:308.481000px;}
.y17{bottom:309.381000px;}
.y2b{bottom:331.881000px;}
.y20{bottom:339.801000px;}
.y2a{bottom:342.501000px;}
.y16{bottom:344.301000px;}
.y1f{bottom:374.541000px;}
.y15{bottom:379.041000px;}
.y1e{bottom:409.461000px;}
.y14{bottom:413.961000px;}
.y29{bottom:444.381000px;}
.y13{bottom:448.881000px;}
.y28{bottom:481.461000px;}
.y12{bottom:483.801000px;}
.y11{bottom:518.721000px;}
.y10{bottom:553.461000px;}
.yf{bottom:588.381000px;}
.ye{bottom:623.301000px;}
.yd{bottom:658.221000px;}
.y4e{bottom:678.381000px;}
.yc{bottom:693.141000px;}
.y4d{bottom:694.941000px;}
.y4c{bottom:711.501000px;}
.yb{bottom:727.881000px;}
.y4b{bottom:728.241000px;}
.y4a{bottom:744.801000px;}
.y49{bottom:761.361000px;}
.ya{bottom:762.801000px;}
.y48{bottom:778.101000px;}
.y9{bottom:797.721150px;}
.y47{bottom:801.501000px;}
.y46{bottom:811.221150px;}
.y45{bottom:827.781000px;}
.y8{bottom:832.641000px;}
.y44{bottom:844.521000px;}
.y43{bottom:861.081150px;}
.y7{bottom:867.561150px;}
.y42{bottom:877.641000px;}
.y41{bottom:894.381000px;}
.y6{bottom:902.301000px;}
.y40{bottom:910.941000px;}
.y3f{bottom:934.341000px;}
.y5{bottom:937.221000px;}
.y3e{bottom:944.061150px;}
.y3d{bottom:960.801000px;}
.y4{bottom:972.141000px;}
.y3c{bottom:984.201000px;}
.y3b{bottom:993.921000px;}
.y3{bottom:1007.061150px;}
.y3a{bottom:1010.661000px;}
.y39{bottom:1034.061150px;}
.y2{bottom:1041.981000px;}
.y38{bottom:1044.681000px;}
.ha{height:27.014766px;}
.hb{height:41.522695px;}
.h9{height:50.027344px;}
.h2{height:57.175313px;}
.h3{height:58.031719px;}
.h8{height:63.292500px;}
.h5{height:75.451289px;}
.h4{height:76.031719px;}
.h7{height:76.399908px;}
.h6{height:76.400508px;}
.h1{height:1145.481150px;}
.h0{height:1188.000000px;}
.w1{width:875.481150px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:21.259500px;}
.x4{left:106.379880px;}
.x5{left:160.379850px;}
.x3{left:270.644850px;}
.x2{left:306.184950px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:34.560000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.052267pt;}
.ls18{letter-spacing:0.052960pt;}
.ls1a{letter-spacing:0.053120pt;}
.ls4{letter-spacing:0.074240pt;}
.ls6{letter-spacing:0.094400pt;}
.ls13{letter-spacing:0.106133pt;}
.ls19{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.107200pt;}
.ls9{letter-spacing:0.142720pt;}
.ls17{letter-spacing:0.145813pt;}
.ls1{letter-spacing:0.148480pt;}
.ls8{letter-spacing:0.180800pt;}
.lsb{letter-spacing:0.192533pt;}
.ls5{letter-spacing:0.222720pt;}
.lsf{letter-spacing:0.262400pt;}
.lsd{letter-spacing:0.296960pt;}
.ls10{letter-spacing:0.426667pt;}
.ls11{letter-spacing:5.256000pt;}
.ls14{letter-spacing:5.521067pt;}
.lsc{letter-spacing:6.376533pt;}
.ls7{letter-spacing:11.654400pt;}
.lse{letter-spacing:12.326933pt;}
.ls15{letter-spacing:13.845333pt;}
.lsa{letter-spacing:30.909867pt;}
.ls3{letter-spacing:173.439893pt;}
.ws6{word-spacing:-18.856960pt;}
.ws4{word-spacing:-18.782720pt;}
.ws2{word-spacing:-18.708480pt;}
.ws3{word-spacing:-18.634240pt;}
.ws1{word-spacing:-18.560000pt;}
.ws8{word-spacing:-13.386240pt;}
.ws7{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws0{word-spacing:0.000000pt;}
._2b{margin-left:-0.890880pt;}
._0{width:0.890880pt;}
._1{width:1.874240pt;}
._7{width:3.563520pt;}
._8{width:4.528640pt;}
._3{width:5.493760pt;}
._5{width:6.830080pt;}
._9{width:7.795200pt;}
._a{width:8.908800pt;}
._b{width:10.467840pt;}
._c{width:11.386773pt;}
._d{width:12.620800pt;}
._14{width:13.585920pt;}
._13{width:14.922240pt;}
._e{width:16.481280pt;}
._6{width:17.446400pt;}
._f{width:19.970560pt;}
._4{width:21.084160pt;}
._11{width:22.569067pt;}
._18{width:23.905280pt;}
._16{width:24.796160pt;}
._15{width:25.761280pt;}
._23{width:27.246080pt;}
._12{width:28.730880pt;}
._17{width:29.770240pt;}
._1e{width:31.106560pt;}
._10{width:31.997547pt;}
._1d{width:32.962560pt;}
._26{width:33.853440pt;}
._25{width:34.744320pt;}
._19{width:35.635200pt;}
._24{width:37.120000pt;}
._20{width:38.233600pt;}
._1f{width:39.198720pt;}
._22{width:40.460800pt;}
._21{width:41.648640pt;}
._28{width:42.688107pt;}
._1b{width:45.063680pt;}
._1a{width:45.954560pt;}
._27{width:48.033280pt;}
._2a{width:51.077120pt;}
._29{width:52.042240pt;}
._2e{width:57.343893pt;}
._2c{width:66.237333pt;}
._2d{width:98.621333pt;}
._2f{width:106.134933pt;}
._1c{width:154.880000pt;}
._2{width:173.439893pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:18.897333pt;}
.y27{bottom:84.925387pt;}
.y1d{bottom:88.925387pt;}
.y37{bottom:111.645387pt;}
.y26{bottom:115.965333pt;}
.y1c{bottom:119.965333pt;}
.y36{bottom:126.525333pt;}
.y35{bottom:141.245333pt;}
.y25{bottom:147.005333pt;}
.y1b{bottom:151.005333pt;}
.y34{bottom:162.045333pt;}
.y33{bottom:170.845333pt;}
.y24{bottom:177.885333pt;}
.y1a{bottom:181.885333pt;}
.y32{bottom:185.565333pt;}
.y31{bottom:200.285333pt;}
.y23{bottom:208.925333pt;}
.y19{bottom:212.925333pt;}
.y30{bottom:215.005333pt;}
.y2f{bottom:235.965333pt;}
.y22{bottom:239.965333pt;}
.y18{bottom:243.965333pt;}
.y2e{bottom:244.605333pt;}
.y2d{bottom:259.325333pt;}
.y21{bottom:271.005333pt;}
.y2c{bottom:274.205333pt;}
.y17{bottom:275.005333pt;}
.y2b{bottom:295.005333pt;}
.y20{bottom:302.045333pt;}
.y2a{bottom:304.445333pt;}
.y16{bottom:306.045333pt;}
.y1f{bottom:332.925333pt;}
.y15{bottom:336.925333pt;}
.y1e{bottom:363.965333pt;}
.y14{bottom:367.965333pt;}
.y29{bottom:395.005333pt;}
.y13{bottom:399.005333pt;}
.y28{bottom:427.965333pt;}
.y12{bottom:430.045333pt;}
.y11{bottom:461.085333pt;}
.y10{bottom:491.965333pt;}
.yf{bottom:523.005333pt;}
.ye{bottom:554.045333pt;}
.yd{bottom:585.085333pt;}
.y4e{bottom:603.005333pt;}
.yc{bottom:616.125333pt;}
.y4d{bottom:617.725333pt;}
.y4c{bottom:632.445333pt;}
.yb{bottom:647.005333pt;}
.y4b{bottom:647.325333pt;}
.y4a{bottom:662.045333pt;}
.y49{bottom:676.765333pt;}
.ya{bottom:678.045333pt;}
.y48{bottom:691.645333pt;}
.y9{bottom:709.085467pt;}
.y47{bottom:712.445333pt;}
.y46{bottom:721.085467pt;}
.y45{bottom:735.805333pt;}
.y8{bottom:740.125333pt;}
.y44{bottom:750.685333pt;}
.y43{bottom:765.405467pt;}
.y7{bottom:771.165467pt;}
.y42{bottom:780.125333pt;}
.y41{bottom:795.005333pt;}
.y6{bottom:802.045333pt;}
.y40{bottom:809.725333pt;}
.y3f{bottom:830.525333pt;}
.y5{bottom:833.085333pt;}
.y3e{bottom:839.165467pt;}
.y3d{bottom:854.045333pt;}
.y4{bottom:864.125333pt;}
.y3c{bottom:874.845333pt;}
.y3b{bottom:883.485333pt;}
.y3{bottom:895.165467pt;}
.y3a{bottom:898.365333pt;}
.y39{bottom:919.165467pt;}
.y2{bottom:926.205333pt;}
.y38{bottom:928.605333pt;}
.ha{height:24.013125pt;}
.hb{height:36.909063pt;}
.h9{height:44.468750pt;}
.h2{height:50.822500pt;}
.h3{height:51.583750pt;}
.h8{height:56.260000pt;}
.h5{height:67.067812pt;}
.h4{height:67.583750pt;}
.h7{height:67.911029pt;}
.h6{height:67.911562pt;}
.h1{height:1018.205467pt;}
.h0{height:1056.000000pt;}
.w1{width:778.205467pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:18.897333pt;}
.x4{left:94.559893pt;}
.x5{left:142.559867pt;}
.x3{left:240.573200pt;}
.x2{left:272.164400pt;}
}




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