
    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_c59ccfe9c70d384edb8338dc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.711000;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_7459c0a2be0084347c6e8022.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.043000;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_2c0b12ca47fba36b34032e42.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691895;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_1fee1cb61289550ff506c92a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.844727;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_9801d9ec22414359f6847741.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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;}
.ls5{letter-spacing:-0.720000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005400px;}
.ls4{letter-spacing:0.009000px;}
.ls3{letter-spacing:0.019200px;}
.ls0{letter-spacing:0.031800px;}
.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;}
}
.ws1{word-spacing:-66.000000px;}
.ws0{word-spacing:-13.140000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:0.720000px;}
._9{margin-left:-13.794000px;}
._12{margin-left:-8.262000px;}
._1a{margin-left:-7.255200px;}
._13{margin-left:-5.952000px;}
._19{margin-left:-3.819000px;}
._2{margin-left:-2.700000px;}
._0{margin-left:-1.035000px;}
._4{width:1.254000px;}
._b{width:2.454000px;}
._c{width:4.302000px;}
._5{width:5.520000px;}
._3{width:6.564000px;}
._d{width:7.581000px;}
._8{width:8.640000px;}
._1{width:9.882000px;}
._a{width:10.914000px;}
._f{width:11.988000px;}
._10{width:14.340000px;}
._6{width:16.296000px;}
._7{width:17.445000px;}
._11{width:18.696000px;}
._14{width:20.418000px;}
._e{width:21.582000px;}
._17{width:22.704000px;}
._16{width:24.696000px;}
._15{width:25.986000px;}
._18{width:27.645000px;}
._1b{width:29.106000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(175,47,95);}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:69.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:58.531050px;}
.y3c{bottom:74.281050px;}
.y3b{bottom:90.031050px;}
.yb5{bottom:105.473550px;}
.y3a{bottom:105.781050px;}
.y78{bottom:112.723050px;}
.yb4{bottom:121.223550px;}
.y39{bottom:121.531050px;}
.y77{bottom:128.473050px;}
.yb3{bottom:136.973550px;}
.y76{bottom:144.223050px;}
.y38{bottom:145.786050px;}
.y75{bottom:159.973050px;}
.yb2{bottom:161.228550px;}
.y37{bottom:161.536050px;}
.yb1{bottom:176.978550px;}
.y36{bottom:177.286050px;}
.y74{bottom:184.228050px;}
.yb0{bottom:192.728550px;}
.y35{bottom:193.036050px;}
.y73{bottom:199.978050px;}
.yaf{bottom:208.478550px;}
.y34{bottom:208.786050px;}
.y72{bottom:215.728050px;}
.yae{bottom:224.228550px;}
.y33{bottom:224.536050px;}
.y71{bottom:231.478050px;}
.y32{bottom:240.286050px;}
.y70{bottom:247.228050px;}
.yad{bottom:248.483550px;}
.yac{bottom:264.233550px;}
.y31{bottom:264.541050px;}
.y6f{bottom:271.483050px;}
.yab{bottom:279.983550px;}
.y30{bottom:280.291050px;}
.y6e{bottom:287.233050px;}
.yaa{bottom:295.733550px;}
.y2f{bottom:296.041050px;}
.y6d{bottom:302.983050px;}
.y6c{bottom:318.733050px;}
.ya9{bottom:319.988550px;}
.y2e{bottom:320.296050px;}
.y6b{bottom:334.483050px;}
.ya8{bottom:335.738550px;}
.y2d{bottom:344.551050px;}
.ya7{bottom:351.488550px;}
.y6a{bottom:358.738050px;}
.y2c{bottom:360.301050px;}
.ya6{bottom:367.238550px;}
.y69{bottom:374.488050px;}
.y2b{bottom:376.051050px;}
.ya5{bottom:382.988550px;}
.y68{bottom:390.238050px;}
.ya4{bottom:398.738550px;}
.y2a{bottom:400.306050px;}
.y67{bottom:405.988050px;}
.y29{bottom:416.056050px;}
.y66{bottom:421.738050px;}
.ya3{bottom:422.993550px;}
.y28{bottom:431.806050px;}
.y65{bottom:437.488050px;}
.ya2{bottom:438.743550px;}
.ya1{bottom:454.493550px;}
.y27{bottom:456.061050px;}
.y64{bottom:461.743050px;}
.ya0{bottom:470.243550px;}
.y26{bottom:471.811050px;}
.y63{bottom:477.493050px;}
.y9f{bottom:485.993550px;}
.y25{bottom:487.561050px;}
.y62{bottom:493.243050px;}
.y24{bottom:503.311050px;}
.y9e{bottom:510.248550px;}
.y61{bottom:517.498050px;}
.y9d{bottom:525.998550px;}
.y23{bottom:527.566050px;}
.y60{bottom:533.248050px;}
.y9c{bottom:541.748550px;}
.y22{bottom:543.316050px;}
.y5f{bottom:548.998050px;}
.y21{bottom:559.066050px;}
.y9b{bottom:566.003550px;}
.y5e{bottom:573.253050px;}
.y20{bottom:574.816050px;}
.y9a{bottom:581.753550px;}
.y5d{bottom:589.003050px;}
.y1f{bottom:590.566050px;}
.y99{bottom:597.503550px;}
.y5c{bottom:604.753050px;}
.y98{bottom:613.253550px;}
.y1e{bottom:614.821050px;}
.y5b{bottom:620.503050px;}
.y1d{bottom:630.571050px;}
.y97{bottom:637.508550px;}
.y5a{bottom:644.758050px;}
.y1c{bottom:646.321050px;}
.y96{bottom:653.258550px;}
.y59{bottom:660.508050px;}
.y95{bottom:669.008550px;}
.y1b{bottom:670.576050px;}
.y58{bottom:676.258050px;}
.y94{bottom:684.758550px;}
.y1a{bottom:686.326050px;}
.y57{bottom:692.008050px;}
.y19{bottom:702.076050px;}
.y56{bottom:707.758050px;}
.y93{bottom:709.013550px;}
.y55{bottom:723.496050px;}
.y92{bottom:724.763550px;}
.y18{bottom:726.331050px;}
.y17{bottom:742.081050px;}
.y54{bottom:747.751050px;}
.y91{bottom:749.018550px;}
.y53{bottom:763.501050px;}
.y90{bottom:764.768550px;}
.y16{bottom:766.336050px;}
.y8f{bottom:780.518550px;}
.y15{bottom:782.086050px;}
.y52{bottom:787.756050px;}
.y8e{bottom:796.268550px;}
.y14{bottom:797.836050px;}
.y51{bottom:803.506050px;}
.y13{bottom:813.586050px;}
.y50{bottom:819.256050px;}
.y8d{bottom:820.523550px;}
.y12{bottom:829.331850px;}
.y8c{bottom:836.273550px;}
.y4f{bottom:843.511050px;}
.y8b{bottom:852.023550px;}
.y11{bottom:853.586850px;}
.y4e{bottom:859.261050px;}
.y8a{bottom:867.773550px;}
.y10{bottom:869.336850px;}
.y4d{bottom:875.011050px;}
.y89{bottom:883.523550px;}
.yf{bottom:885.086850px;}
.y4c{bottom:890.761050px;}
.y88{bottom:899.273550px;}
.ye{bottom:900.836850px;}
.y4b{bottom:906.511050px;}
.y87{bottom:915.014700px;}
.yd{bottom:925.091850px;}
.y4a{bottom:930.766050px;}
.y86{bottom:939.269700px;}
.yc{bottom:940.841850px;}
.y49{bottom:946.516050px;}
.yc1{bottom:955.013550px;}
.y85{bottom:955.019700px;}
.yb{bottom:956.591850px;}
.y48{bottom:962.266050px;}
.yc0{bottom:970.763550px;}
.y84{bottom:970.769700px;}
.ya{bottom:980.846850px;}
.ybf{bottom:986.513550px;}
.y47{bottom:986.521050px;}
.y83{bottom:995.024700px;}
.y9{bottom:996.596850px;}
.y46{bottom:1002.271050px;}
.ybe{bottom:1010.768550px;}
.y82{bottom:1010.774700px;}
.y8{bottom:1012.346850px;}
.y45{bottom:1018.021050px;}
.ybd{bottom:1026.518550px;}
.y81{bottom:1026.524700px;}
.y7{bottom:1028.096850px;}
.ybc{bottom:1042.268550px;}
.y80{bottom:1042.274700px;}
.y44{bottom:1042.276050px;}
.y6{bottom:1043.846850px;}
.ybb{bottom:1058.018550px;}
.y7f{bottom:1058.024700px;}
.y43{bottom:1058.026050px;}
.y5{bottom:1068.101850px;}
.y7e{bottom:1073.774700px;}
.y42{bottom:1073.776050px;}
.yba{bottom:1082.273550px;}
.y4{bottom:1083.851850px;}
.y41{bottom:1089.526050px;}
.yb9{bottom:1098.023550px;}
.y7d{bottom:1098.029700px;}
.y3{bottom:1099.601850px;}
.yb8{bottom:1113.773550px;}
.y7c{bottom:1113.779700px;}
.y40{bottom:1113.781050px;}
.y2{bottom:1115.351850px;}
.yb7{bottom:1129.523550px;}
.y7b{bottom:1129.529700px;}
.y3f{bottom:1129.531050px;}
.yb6{bottom:1145.273550px;}
.y7a{bottom:1145.279700px;}
.y3e{bottom:1145.281050px;}
.y1{bottom:1152.101850px;}
.y79{bottom:1197.584700px;}
.h6{height:43.260000px;}
.h2{height:48.300000px;}
.h3{height:49.320000px;}
.h4{height:49.336800px;}
.h7{height:49.355400px;}
.h5{height:49.368000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.006900px;}
.x1{left:59.527500px;}
.x7{left:88.026900px;}
.x2{left:93.547500px;}
.x5{left:238.461900px;}
.x8{left:452.688450px;}
.x3{left:458.223000px;}
.x9{left:486.708450px;}
.x4{left:492.243000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004800pt;}
.ls4{letter-spacing:0.008000pt;}
.ls3{letter-spacing:0.017067pt;}
.ls0{letter-spacing:0.028267pt;}
.ws1{word-spacing:-58.666667pt;}
.ws0{word-spacing:-11.680000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.640000pt;}
._9{margin-left:-12.261333pt;}
._12{margin-left:-7.344000pt;}
._1a{margin-left:-6.449067pt;}
._13{margin-left:-5.290667pt;}
._19{margin-left:-3.394667pt;}
._2{margin-left:-2.400000pt;}
._0{margin-left:-0.920000pt;}
._4{width:1.114667pt;}
._b{width:2.181333pt;}
._c{width:3.824000pt;}
._5{width:4.906667pt;}
._3{width:5.834667pt;}
._d{width:6.738667pt;}
._8{width:7.680000pt;}
._1{width:8.784000pt;}
._a{width:9.701333pt;}
._f{width:10.656000pt;}
._10{width:12.746667pt;}
._6{width:14.485333pt;}
._7{width:15.506667pt;}
._11{width:16.618667pt;}
._14{width:18.149333pt;}
._e{width:19.184000pt;}
._17{width:20.181333pt;}
._16{width:21.952000pt;}
._15{width:23.098667pt;}
._18{width:24.573333pt;}
._1b{width:25.872000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:61.333333pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:52.027600pt;}
.y3c{bottom:66.027600pt;}
.y3b{bottom:80.027600pt;}
.yb5{bottom:93.754267pt;}
.y3a{bottom:94.027600pt;}
.y78{bottom:100.198267pt;}
.yb4{bottom:107.754267pt;}
.y39{bottom:108.027600pt;}
.y77{bottom:114.198267pt;}
.yb3{bottom:121.754267pt;}
.y76{bottom:128.198267pt;}
.y38{bottom:129.587600pt;}
.y75{bottom:142.198267pt;}
.yb2{bottom:143.314267pt;}
.y37{bottom:143.587600pt;}
.yb1{bottom:157.314267pt;}
.y36{bottom:157.587600pt;}
.y74{bottom:163.758267pt;}
.yb0{bottom:171.314267pt;}
.y35{bottom:171.587600pt;}
.y73{bottom:177.758267pt;}
.yaf{bottom:185.314267pt;}
.y34{bottom:185.587600pt;}
.y72{bottom:191.758267pt;}
.yae{bottom:199.314267pt;}
.y33{bottom:199.587600pt;}
.y71{bottom:205.758267pt;}
.y32{bottom:213.587600pt;}
.y70{bottom:219.758267pt;}
.yad{bottom:220.874267pt;}
.yac{bottom:234.874267pt;}
.y31{bottom:235.147600pt;}
.y6f{bottom:241.318267pt;}
.yab{bottom:248.874267pt;}
.y30{bottom:249.147600pt;}
.y6e{bottom:255.318267pt;}
.yaa{bottom:262.874267pt;}
.y2f{bottom:263.147600pt;}
.y6d{bottom:269.318267pt;}
.y6c{bottom:283.318267pt;}
.ya9{bottom:284.434267pt;}
.y2e{bottom:284.707600pt;}
.y6b{bottom:297.318267pt;}
.ya8{bottom:298.434267pt;}
.y2d{bottom:306.267600pt;}
.ya7{bottom:312.434267pt;}
.y6a{bottom:318.878267pt;}
.y2c{bottom:320.267600pt;}
.ya6{bottom:326.434267pt;}
.y69{bottom:332.878267pt;}
.y2b{bottom:334.267600pt;}
.ya5{bottom:340.434267pt;}
.y68{bottom:346.878267pt;}
.ya4{bottom:354.434267pt;}
.y2a{bottom:355.827600pt;}
.y67{bottom:360.878267pt;}
.y29{bottom:369.827600pt;}
.y66{bottom:374.878267pt;}
.ya3{bottom:375.994267pt;}
.y28{bottom:383.827600pt;}
.y65{bottom:388.878267pt;}
.ya2{bottom:389.994267pt;}
.ya1{bottom:403.994267pt;}
.y27{bottom:405.387600pt;}
.y64{bottom:410.438267pt;}
.ya0{bottom:417.994267pt;}
.y26{bottom:419.387600pt;}
.y63{bottom:424.438267pt;}
.y9f{bottom:431.994267pt;}
.y25{bottom:433.387600pt;}
.y62{bottom:438.438267pt;}
.y24{bottom:447.387600pt;}
.y9e{bottom:453.554267pt;}
.y61{bottom:459.998267pt;}
.y9d{bottom:467.554267pt;}
.y23{bottom:468.947600pt;}
.y60{bottom:473.998267pt;}
.y9c{bottom:481.554267pt;}
.y22{bottom:482.947600pt;}
.y5f{bottom:487.998267pt;}
.y21{bottom:496.947600pt;}
.y9b{bottom:503.114267pt;}
.y5e{bottom:509.558267pt;}
.y20{bottom:510.947600pt;}
.y9a{bottom:517.114267pt;}
.y5d{bottom:523.558267pt;}
.y1f{bottom:524.947600pt;}
.y99{bottom:531.114267pt;}
.y5c{bottom:537.558267pt;}
.y98{bottom:545.114267pt;}
.y1e{bottom:546.507600pt;}
.y5b{bottom:551.558267pt;}
.y1d{bottom:560.507600pt;}
.y97{bottom:566.674267pt;}
.y5a{bottom:573.118267pt;}
.y1c{bottom:574.507600pt;}
.y96{bottom:580.674267pt;}
.y59{bottom:587.118267pt;}
.y95{bottom:594.674267pt;}
.y1b{bottom:596.067600pt;}
.y58{bottom:601.118267pt;}
.y94{bottom:608.674267pt;}
.y1a{bottom:610.067600pt;}
.y57{bottom:615.118267pt;}
.y19{bottom:624.067600pt;}
.y56{bottom:629.118267pt;}
.y93{bottom:630.234267pt;}
.y55{bottom:643.107600pt;}
.y92{bottom:644.234267pt;}
.y18{bottom:645.627600pt;}
.y17{bottom:659.627600pt;}
.y54{bottom:664.667600pt;}
.y91{bottom:665.794267pt;}
.y53{bottom:678.667600pt;}
.y90{bottom:679.794267pt;}
.y16{bottom:681.187600pt;}
.y8f{bottom:693.794267pt;}
.y15{bottom:695.187600pt;}
.y52{bottom:700.227600pt;}
.y8e{bottom:707.794267pt;}
.y14{bottom:709.187600pt;}
.y51{bottom:714.227600pt;}
.y13{bottom:723.187600pt;}
.y50{bottom:728.227600pt;}
.y8d{bottom:729.354267pt;}
.y12{bottom:737.183867pt;}
.y8c{bottom:743.354267pt;}
.y4f{bottom:749.787600pt;}
.y8b{bottom:757.354267pt;}
.y11{bottom:758.743867pt;}
.y4e{bottom:763.787600pt;}
.y8a{bottom:771.354267pt;}
.y10{bottom:772.743867pt;}
.y4d{bottom:777.787600pt;}
.y89{bottom:785.354267pt;}
.yf{bottom:786.743867pt;}
.y4c{bottom:791.787600pt;}
.y88{bottom:799.354267pt;}
.ye{bottom:800.743867pt;}
.y4b{bottom:805.787600pt;}
.y87{bottom:813.346400pt;}
.yd{bottom:822.303867pt;}
.y4a{bottom:827.347600pt;}
.y86{bottom:834.906400pt;}
.yc{bottom:836.303867pt;}
.y49{bottom:841.347600pt;}
.yc1{bottom:848.900933pt;}
.y85{bottom:848.906400pt;}
.yb{bottom:850.303867pt;}
.y48{bottom:855.347600pt;}
.yc0{bottom:862.900933pt;}
.y84{bottom:862.906400pt;}
.ya{bottom:871.863867pt;}
.ybf{bottom:876.900933pt;}
.y47{bottom:876.907600pt;}
.y83{bottom:884.466400pt;}
.y9{bottom:885.863867pt;}
.y46{bottom:890.907600pt;}
.ybe{bottom:898.460933pt;}
.y82{bottom:898.466400pt;}
.y8{bottom:899.863867pt;}
.y45{bottom:904.907600pt;}
.ybd{bottom:912.460933pt;}
.y81{bottom:912.466400pt;}
.y7{bottom:913.863867pt;}
.ybc{bottom:926.460933pt;}
.y80{bottom:926.466400pt;}
.y44{bottom:926.467600pt;}
.y6{bottom:927.863867pt;}
.ybb{bottom:940.460933pt;}
.y7f{bottom:940.466400pt;}
.y43{bottom:940.467600pt;}
.y5{bottom:949.423867pt;}
.y7e{bottom:954.466400pt;}
.y42{bottom:954.467600pt;}
.yba{bottom:962.020933pt;}
.y4{bottom:963.423867pt;}
.y41{bottom:968.467600pt;}
.yb9{bottom:976.020933pt;}
.y7d{bottom:976.026400pt;}
.y3{bottom:977.423867pt;}
.yb8{bottom:990.020933pt;}
.y7c{bottom:990.026400pt;}
.y40{bottom:990.027600pt;}
.y2{bottom:991.423867pt;}
.yb7{bottom:1004.020933pt;}
.y7b{bottom:1004.026400pt;}
.y3f{bottom:1004.027600pt;}
.yb6{bottom:1018.020933pt;}
.y7a{bottom:1018.026400pt;}
.y3e{bottom:1018.027600pt;}
.y1{bottom:1024.090533pt;}
.y79{bottom:1064.519733pt;}
.h6{height:38.453333pt;}
.h2{height:42.933333pt;}
.h3{height:43.840000pt;}
.h4{height:43.854933pt;}
.h7{height:43.871467pt;}
.h5{height:43.882667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.006133pt;}
.x1{left:52.913333pt;}
.x7{left:78.246133pt;}
.x2{left:83.153333pt;}
.x5{left:211.966133pt;}
.x8{left:402.389733pt;}
.x3{left:407.309333pt;}
.x9{left:432.629733pt;}
.x4{left:437.549333pt;}
}




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