
    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_b9f6d19b81fc815458178bfb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_c7630328fff82cde7caca716.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_dbdeea0134dae28c31308728.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.751000;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_5c34f1768147f342e7e805c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.694000;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.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.696000px;}
.v1{vertical-align:39.054000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls2{letter-spacing:2.998354px;}
.ls0{letter-spacing:10.461300px;}
.ls5{letter-spacing:11.954850px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.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;}
}
.ws2a{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws18{word-spacing:-2.211697px;}
.ws1c{word-spacing:-2.032370px;}
.ws4{word-spacing:-1.171598px;}
.ws1d{word-spacing:-1.075961px;}
.ws6{word-spacing:-1.046070px;}
.ws19{word-spacing:-1.016185px;}
.ws22{word-spacing:-0.298878px;}
.ws1a{word-spacing:-0.239102px;}
.ws15{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.059776px;}
.ws10{word-spacing:-0.047821px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:0.059776px;}
.ws1b{word-spacing:0.119551px;}
.ws1e{word-spacing:0.179327px;}
.ws13{word-spacing:0.358654px;}
.ws28{word-spacing:0.376589px;}
.ws17{word-spacing:0.777083px;}
.ws5{word-spacing:0.962384px;}
.ws24{word-spacing:1.613941px;}
.ws0{word-spacing:2.511541px;}
.ws11{word-spacing:2.869236px;}
.ws12{word-spacing:3.219667px;}
.ws23{word-spacing:3.646312px;}
.ws1f{word-spacing:4.004965px;}
.ws27{word-spacing:4.250074px;}
.wsc{word-spacing:4.770079px;}
.wsd{word-spacing:4.853765px;}
.ws21{word-spacing:5.499355px;}
.ws20{word-spacing:6.037336px;}
.ws26{word-spacing:6.348211px;}
.ws25{word-spacing:6.778598px;}
.wsa{word-spacing:7.782761px;}
.ws29{word-spacing:11.907379px;}
.ws8{word-spacing:12.176255px;}
.ws2{word-spacing:12.928847px;}
.ws9{word-spacing:16.109478px;}
.wsb{word-spacing:26.109907px;}
.ws7{word-spacing:26.840252px;}
.wsf{word-spacing:54.982186px;}
._d{margin-left:-6.808433px;}
._e{margin-left:-5.439580px;}
._9{margin-left:-4.399495px;}
._1{margin-left:-3.096367px;}
._3{margin-left:-1.046070px;}
._4{width:2.301354px;}
._8{width:3.677938px;}
._a{width:11.094379px;}
._0{width:12.971268px;}
._13{width:14.025947px;}
._12{width:16.667395px;}
._c{width:18.679872px;}
._f{width:20.024820px;}
._10{width:22.535401px;}
._11{width:24.113466px;}
._2{width:25.192344px;}
._7{width:27.910570px;}
._5{width:30.587087px;}
._6{width:33.355008px;}
._b{width:56.810873px;}
._14{width:697.409647px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:81.772800px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y42{bottom:31.890000px;}
.y16{bottom:104.646000px;}
.y41{bottom:111.565500px;}
.y15{bottom:122.535000px;}
.y40{bottom:138.105000px;}
.y14{bottom:140.422500px;}
.y13{bottom:158.310000px;}
.y3f{bottom:164.646000px;}
.y12{bottom:176.199000px;}
.y3e{bottom:191.187000px;}
.y11{bottom:194.086500px;}
.y10{bottom:211.974000px;}
.y3d{bottom:217.726500px;}
.yf{bottom:229.863000px;}
.y3c{bottom:235.300500px;}
.y3b{bottom:261.841500px;}
.y3a{bottom:279.415500px;}
.y39{bottom:296.989500px;}
.ye{bottom:300.154500px;}
.yd{bottom:318.043500px;}
.y38{bottom:332.497500px;}
.yc{bottom:335.931000px;}
.y37{bottom:351.327000px;}
.yb{bottom:353.818500px;}
.y36{bottom:370.156500px;}
.ya{bottom:380.628000px;}
.y35{bottom:388.984500px;}
.y34{bottom:407.814000px;}
.y9{bottom:408.978000px;}
.y33{bottom:426.643500px;}
.y8{bottom:426.865500px;}
.y7{bottom:444.753000px;}
.y32{bottom:445.473000px;}
.y31{bottom:464.302500px;}
.y6{bottom:471.607500px;}
.y30{bottom:483.132000px;}
.y5{bottom:489.495000px;}
.y2f{bottom:501.961500px;}
.y4{bottom:507.384000px;}
.y2e{bottom:520.791000px;}
.y3{bottom:525.271500px;}
.y2d{bottom:539.620500px;}
.y2{bottom:543.159000px;}
.y2c{bottom:558.450000px;}
.y1{bottom:561.048000px;}
.y2b{bottom:577.279500px;}
.y2a{bottom:596.109000px;}
.y29{bottom:614.938500px;}
.y28{bottom:633.768000px;}
.y27{bottom:652.597500px;}
.y26{bottom:671.427000px;}
.y25{bottom:690.256500px;}
.y24{bottom:709.086000px;}
.y23{bottom:727.915500px;}
.y22{bottom:746.745000px;}
.y21{bottom:765.574500px;}
.y20{bottom:840.552000px;}
.y1f{bottom:879.138000px;}
.y1e{bottom:895.276500px;}
.y1d{bottom:915.756000px;}
.y1c{bottom:927.556500px;}
.y1b{bottom:948.036000px;}
.y1a{bottom:992.712000px;}
.y19{bottom:1032.631500px;}
.y18{bottom:1064.728500px;}
.y17{bottom:1092.972000px;}
.h8{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h9{height:34.813397px;}
.hd{height:35.052500px;}
.hc{height:38.734848px;}
.ha{height:39.165235px;}
.hb{height:43.516637px;}
.h4{height:43.815515px;}
.h7{height:54.405312px;}
.h5{height:77.469696px;}
.h6{height:97.930416px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x3{left:269.914500px;}
.x5{left:281.479500px;}
.x7{left:309.466500px;}
.x6{left:395.784000px;}
@media print{
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.285333pt;}
.v1{vertical-align:34.714667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls2{letter-spacing:2.665203pt;}
.ls0{letter-spacing:9.298933pt;}
.ls5{letter-spacing:10.626533pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ws2a{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws18{word-spacing:-1.965953pt;}
.ws1c{word-spacing:-1.806551pt;}
.ws4{word-spacing:-1.041421pt;}
.ws1d{word-spacing:-0.956410pt;}
.ws6{word-spacing:-0.929840pt;}
.ws19{word-spacing:-0.903276pt;}
.ws22{word-spacing:-0.265669pt;}
.ws1a{word-spacing:-0.212535pt;}
.ws15{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.053134pt;}
.ws10{word-spacing:-0.042507pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:0.053134pt;}
.ws1b{word-spacing:0.106268pt;}
.ws1e{word-spacing:0.159402pt;}
.ws13{word-spacing:0.318803pt;}
.ws28{word-spacing:0.334746pt;}
.ws17{word-spacing:0.690740pt;}
.ws5{word-spacing:0.855453pt;}
.ws24{word-spacing:1.434614pt;}
.ws0{word-spacing:2.232481pt;}
.ws11{word-spacing:2.550432pt;}
.ws12{word-spacing:2.861926pt;}
.ws23{word-spacing:3.241166pt;}
.ws1f{word-spacing:3.559969pt;}
.ws27{word-spacing:3.777843pt;}
.wsc{word-spacing:4.240070pt;}
.wsd{word-spacing:4.314458pt;}
.ws21{word-spacing:4.888316pt;}
.ws20{word-spacing:5.366521pt;}
.ws26{word-spacing:5.642854pt;}
.ws25{word-spacing:6.025421pt;}
.wsa{word-spacing:6.918010pt;}
.ws29{word-spacing:10.584337pt;}
.ws8{word-spacing:10.823338pt;}
.ws2{word-spacing:11.492308pt;}
.ws9{word-spacing:14.319536pt;}
.wsb{word-spacing:23.208806pt;}
.ws7{word-spacing:23.858002pt;}
.wsf{word-spacing:48.873054pt;}
._d{margin-left:-6.051940pt;}
._e{margin-left:-4.835182pt;}
._9{margin-left:-3.910662pt;}
._1{margin-left:-2.752326pt;}
._3{margin-left:-0.929840pt;}
._4{width:2.045648pt;}
._8{width:3.269278pt;}
._a{width:9.861670pt;}
._0{width:11.530016pt;}
._13{width:12.467508pt;}
._12{width:14.815462pt;}
._c{width:16.604331pt;}
._f{width:17.799840pt;}
._10{width:20.031468pt;}
._11{width:21.434192pt;}
._2{width:22.393195pt;}
._7{width:24.809395pt;}
._5{width:27.188522pt;}
._6{width:29.648896pt;}
._b{width:50.498554pt;}
._14{width:619.919686pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:72.686933pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:28.346667pt;}
.y16{bottom:93.018667pt;}
.y41{bottom:99.169333pt;}
.y15{bottom:108.920000pt;}
.y40{bottom:122.760000pt;}
.y14{bottom:124.820000pt;}
.y13{bottom:140.720000pt;}
.y3f{bottom:146.352000pt;}
.y12{bottom:156.621333pt;}
.y3e{bottom:169.944000pt;}
.y11{bottom:172.521333pt;}
.y10{bottom:188.421333pt;}
.y3d{bottom:193.534667pt;}
.yf{bottom:204.322667pt;}
.y3c{bottom:209.156000pt;}
.y3b{bottom:232.748000pt;}
.y3a{bottom:248.369333pt;}
.y39{bottom:263.990667pt;}
.ye{bottom:266.804000pt;}
.yd{bottom:282.705333pt;}
.y38{bottom:295.553333pt;}
.yc{bottom:298.605333pt;}
.y37{bottom:312.290667pt;}
.yb{bottom:314.505333pt;}
.y36{bottom:329.028000pt;}
.ya{bottom:338.336000pt;}
.y35{bottom:345.764000pt;}
.y34{bottom:362.501333pt;}
.y9{bottom:363.536000pt;}
.y33{bottom:379.238667pt;}
.y8{bottom:379.436000pt;}
.y7{bottom:395.336000pt;}
.y32{bottom:395.976000pt;}
.y31{bottom:412.713333pt;}
.y6{bottom:419.206667pt;}
.y30{bottom:429.450667pt;}
.y5{bottom:435.106667pt;}
.y2f{bottom:446.188000pt;}
.y4{bottom:451.008000pt;}
.y2e{bottom:462.925333pt;}
.y3{bottom:466.908000pt;}
.y2d{bottom:479.662667pt;}
.y2{bottom:482.808000pt;}
.y2c{bottom:496.400000pt;}
.y1{bottom:498.709333pt;}
.y2b{bottom:513.137333pt;}
.y2a{bottom:529.874667pt;}
.y29{bottom:546.612000pt;}
.y28{bottom:563.349333pt;}
.y27{bottom:580.086667pt;}
.y26{bottom:596.824000pt;}
.y25{bottom:613.561333pt;}
.y24{bottom:630.298667pt;}
.y23{bottom:647.036000pt;}
.y22{bottom:663.773333pt;}
.y21{bottom:680.510667pt;}
.y20{bottom:747.157333pt;}
.y1f{bottom:781.456000pt;}
.y1e{bottom:795.801333pt;}
.y1d{bottom:814.005333pt;}
.y1c{bottom:824.494667pt;}
.y1b{bottom:842.698667pt;}
.y1a{bottom:882.410667pt;}
.y19{bottom:917.894667pt;}
.y18{bottom:946.425333pt;}
.y17{bottom:971.530667pt;}
.h8{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h9{height:30.945242pt;}
.hd{height:31.157778pt;}
.hc{height:34.430976pt;}
.ha{height:34.813542pt;}
.hb{height:38.681455pt;}
.h4{height:38.947124pt;}
.h7{height:48.360277pt;}
.h5{height:68.861952pt;}
.h6{height:87.049259pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x3{left:239.924000pt;}
.x5{left:250.204000pt;}
.x7{left:275.081333pt;}
.x6{left:351.808000pt;}
}




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