
    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_9967098beebbe601d0027c44.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_d689fa3b337c1212786658e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060547;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_689a2290894b2d0c1b578c68.woff')format("woff");}.ff3{font-family:ff3;line-height:1.105957;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_d923735217358d5afb3479ff.woff')format("woff");}.ff4{font-family:ff4;line-height:1.335449;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_42170cac56c27663fd90ec53.woff')format("woff");}.ff5{font-family:ff5;line-height:1.335449;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:ff6;src:url('chunks/assets/font_9678badd17bf4724995cdf2a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.024414;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;}
.ls3{letter-spacing:-2.016000px;}
.ls6{letter-spacing:-0.840000px;}
.lsc{letter-spacing:-0.207000px;}
.ls7{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.138000px;}
.ls9{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:1.488000px;}
.ls8{letter-spacing:3.174000px;}
.ls1{letter-spacing:6.000000px;}
.ls2{letter-spacing:6.300000px;}
.ls4{letter-spacing:7.260000px;}
.ls0{letter-spacing:7.275000px;}
.lsb{letter-spacing:8.175000px;}
.lse{letter-spacing:8.820000px;}
.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;}
}
.wsa{word-spacing:-29.250000px;}
.ws0{word-spacing:-28.350000px;}
.wsf{word-spacing:-26.523000px;}
.ws1{word-spacing:-18.102000px;}
.ws11{word-spacing:-17.703000px;}
.ws8{word-spacing:-17.043000px;}
.wsb{word-spacing:-16.836000px;}
.ws10{word-spacing:-15.561000px;}
.ws12{word-spacing:-14.820000px;}
.ws4{word-spacing:-7.260000px;}
.ws13{word-spacing:-6.300000px;}
.ws2{word-spacing:-6.000000px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:0.060000px;}
.wse{word-spacing:0.138000px;}
.ws7{word-spacing:0.180000px;}
.wsd{word-spacing:0.207000px;}
.ws6{word-spacing:0.840000px;}
.wsc{word-spacing:0.912000px;}
.ws3{word-spacing:2.016000px;}
._c{margin-left:-8.424000px;}
._a{margin-left:-6.573000px;}
._b{margin-left:-4.884000px;}
._14{margin-left:-3.738600px;}
._7{margin-left:-2.651400px;}
._4{margin-left:-1.338000px;}
._0{width:1.147200px;}
._3{width:2.269200px;}
._6{width:3.439800px;}
._5{width:5.027400px;}
._2{width:6.135600px;}
._8{width:8.079000px;}
._9{width:9.388800px;}
._d{width:10.953000px;}
._13{width:12.108600px;}
._e{width:13.283400px;}
._f{width:14.296500px;}
._17{width:15.799800px;}
._10{width:23.265000px;}
._15{width:446.812200px;}
._1{width:448.380000px;}
._11{width:578.400000px;}
._12{width:940.215000px;}
._16{width:942.840000px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y49{bottom:106.165350px;}
.y1f{bottom:106.217700px;}
.y6f{bottom:106.268850px;}
.y90{bottom:118.904100px;}
.y48{bottom:126.589350px;}
.y1e{bottom:126.745200px;}
.y6e{bottom:127.227600px;}
.y8f{bottom:139.154100px;}
.y47{bottom:147.013350px;}
.y1d{bottom:147.272700px;}
.y6d{bottom:148.186350px;}
.y8e{bottom:159.404100px;}
.y46{bottom:167.437350px;}
.y1c{bottom:167.800200px;}
.y6c{bottom:169.145100px;}
.y8d{bottom:179.654100px;}
.y45{bottom:187.861350px;}
.y1b{bottom:188.327700px;}
.y6b{bottom:190.103850px;}
.y8c{bottom:199.904100px;}
.y44{bottom:208.285350px;}
.y1a{bottom:208.855200px;}
.y6a{bottom:211.062600px;}
.y8b{bottom:220.154100px;}
.y43{bottom:228.709350px;}
.y19{bottom:229.382700px;}
.y69{bottom:232.021350px;}
.y42{bottom:249.133350px;}
.y18{bottom:249.910200px;}
.y68{bottom:252.980100px;}
.y8a{bottom:253.154100px;}
.y41{bottom:269.557350px;}
.y17{bottom:270.437700px;}
.y67{bottom:273.938850px;}
.y40{bottom:289.981350px;}
.y16{bottom:290.965200px;}
.y89{bottom:294.599100px;}
.y66{bottom:294.897600px;}
.y3f{bottom:310.405350px;}
.y15{bottom:311.492700px;}
.y88{bottom:314.853600px;}
.y65{bottom:315.856350px;}
.y3e{bottom:330.829350px;}
.y14{bottom:332.020200px;}
.y64{bottom:336.815100px;}
.y87{bottom:343.613100px;}
.y3d{bottom:351.253350px;}
.y13{bottom:352.547700px;}
.y63{bottom:357.773850px;}
.y86{bottom:363.867600px;}
.y3c{bottom:371.677350px;}
.y62{bottom:378.732600px;}
.y3b{bottom:392.101350px;}
.y85{bottom:392.627100px;}
.y61{bottom:399.691350px;}
.y12{bottom:402.834300px;}
.y3a{bottom:412.525350px;}
.y84{bottom:412.881600px;}
.y60{bottom:420.650100px;}
.y11{bottom:424.104300px;}
.y39{bottom:432.949350px;}
.y5f{bottom:441.608850px;}
.y83{bottom:441.641100px;}
.y10{bottom:445.374300px;}
.y38{bottom:453.373350px;}
.y82{bottom:461.895600px;}
.y5e{bottom:462.567600px;}
.yf{bottom:466.644300px;}
.y37{bottom:473.797350px;}
.y81{bottom:482.150100px;}
.y5d{bottom:483.526350px;}
.y36{bottom:494.221350px;}
.y5c{bottom:504.485100px;}
.y80{bottom:510.909600px;}
.y35{bottom:514.645350px;}
.ye{bottom:517.671900px;}
.y5b{bottom:525.443850px;}
.y7f{bottom:531.164100px;}
.y34{bottom:535.069350px;}
.y5a{bottom:546.402600px;}
.yd{bottom:549.444900px;}
.y33{bottom:555.493350px;}
.y7e{bottom:559.923600px;}
.y59{bottom:567.361350px;}
.y32{bottom:575.917350px;}
.y7d{bottom:580.178100px;}
.yc{bottom:581.217900px;}
.y58{bottom:588.320100px;}
.y31{bottom:596.341350px;}
.y7c{bottom:608.937600px;}
.y57{bottom:609.278850px;}
.yb{bottom:612.990900px;}
.y30{bottom:616.765350px;}
.y56{bottom:630.237600px;}
.y2f{bottom:637.189350px;}
.ya{bottom:644.745000px;}
.y55{bottom:651.196350px;}
.y2e{bottom:657.613350px;}
.y7b{bottom:659.683350px;}
.y54{bottom:672.155100px;}
.y9{bottom:676.524000px;}
.y2d{bottom:678.037350px;}
.y7a{bottom:679.934850px;}
.y53{bottom:693.113850px;}
.y2c{bottom:698.461350px;}
.y79{bottom:700.186350px;}
.y8{bottom:708.303000px;}
.y52{bottom:714.072600px;}
.y2b{bottom:718.885350px;}
.y78{bottom:720.437850px;}
.y51{bottom:735.031350px;}
.y2a{bottom:739.309350px;}
.y7{bottom:740.073750px;}
.y77{bottom:740.689350px;}
.y50{bottom:755.990100px;}
.y29{bottom:759.733350px;}
.y76{bottom:760.940850px;}
.y4f{bottom:776.948850px;}
.y28{bottom:780.157350px;}
.y75{bottom:781.192350px;}
.y4e{bottom:797.907600px;}
.y27{bottom:800.581350px;}
.y74{bottom:801.443850px;}
.y6{bottom:801.608250px;}
.y4d{bottom:818.866350px;}
.y26{bottom:821.005350px;}
.y73{bottom:821.695350px;}
.y5{bottom:831.383250px;}
.y4c{bottom:839.825100px;}
.y25{bottom:841.429350px;}
.y72{bottom:841.946850px;}
.y4{bottom:852.653250px;}
.y4b{bottom:860.783850px;}
.y24{bottom:861.853350px;}
.y71{bottom:862.198350px;}
.y4a{bottom:881.742600px;}
.y23{bottom:882.277350px;}
.y3{bottom:882.428250px;}
.y70{bottom:882.449850px;}
.y22{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:948.189000px;}
.y20{bottom:966.189000px;}
.ha{height:39.726562px;}
.hd{height:49.658203px;}
.h4{height:50.947266px;}
.h3{height:52.141113px;}
.hb{height:53.494629px;}
.h7{height:58.589355px;}
.h2{height:63.684082px;}
.h8{height:64.687500px;}
.hc{height:67.921875px;}
.h5{height:71.326172px;}
.h9{height:74.390625px;}
.h6{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:80.964300px;}
.x6{left:82.482300px;}
.x1{left:83.686650px;}
.x5{left:84.862800px;}
.x8{left:104.236350px;}
.x4{left:105.683550px;}
.x2{left:232.076250px;}
.x3{left:233.583000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.792000pt;}
.ls6{letter-spacing:-0.746667pt;}
.lsc{letter-spacing:-0.184000pt;}
.ls7{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.122667pt;}
.ls9{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:1.322667pt;}
.ls8{letter-spacing:2.821333pt;}
.ls1{letter-spacing:5.333333pt;}
.ls2{letter-spacing:5.600000pt;}
.ls4{letter-spacing:6.453333pt;}
.ls0{letter-spacing:6.466667pt;}
.lsb{letter-spacing:7.266667pt;}
.lse{letter-spacing:7.840000pt;}
.wsa{word-spacing:-26.000000pt;}
.ws0{word-spacing:-25.200000pt;}
.wsf{word-spacing:-23.576000pt;}
.ws1{word-spacing:-16.090667pt;}
.ws11{word-spacing:-15.736000pt;}
.ws8{word-spacing:-15.149333pt;}
.wsb{word-spacing:-14.965333pt;}
.ws10{word-spacing:-13.832000pt;}
.ws12{word-spacing:-13.173333pt;}
.ws4{word-spacing:-6.453333pt;}
.ws13{word-spacing:-5.600000pt;}
.ws2{word-spacing:-5.333333pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:0.053333pt;}
.wse{word-spacing:0.122667pt;}
.ws7{word-spacing:0.160000pt;}
.wsd{word-spacing:0.184000pt;}
.ws6{word-spacing:0.746667pt;}
.wsc{word-spacing:0.810667pt;}
.ws3{word-spacing:1.792000pt;}
._c{margin-left:-7.488000pt;}
._a{margin-left:-5.842667pt;}
._b{margin-left:-4.341333pt;}
._14{margin-left:-3.323200pt;}
._7{margin-left:-2.356800pt;}
._4{margin-left:-1.189333pt;}
._0{width:1.019733pt;}
._3{width:2.017067pt;}
._6{width:3.057600pt;}
._5{width:4.468800pt;}
._2{width:5.453867pt;}
._8{width:7.181333pt;}
._9{width:8.345600pt;}
._d{width:9.736000pt;}
._13{width:10.763200pt;}
._e{width:11.807467pt;}
._f{width:12.708000pt;}
._17{width:14.044267pt;}
._10{width:20.680000pt;}
._15{width:397.166400pt;}
._1{width:398.560000pt;}
._11{width:514.133333pt;}
._12{width:835.746667pt;}
._16{width:838.080000pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y49{bottom:94.369200pt;}
.y1f{bottom:94.415733pt;}
.y6f{bottom:94.461200pt;}
.y90{bottom:105.692533pt;}
.y48{bottom:112.523867pt;}
.y1e{bottom:112.662400pt;}
.y6e{bottom:113.091200pt;}
.y8f{bottom:123.692533pt;}
.y47{bottom:130.678533pt;}
.y1d{bottom:130.909067pt;}
.y6d{bottom:131.721200pt;}
.y8e{bottom:141.692533pt;}
.y46{bottom:148.833200pt;}
.y1c{bottom:149.155733pt;}
.y6c{bottom:150.351200pt;}
.y8d{bottom:159.692533pt;}
.y45{bottom:166.987867pt;}
.y1b{bottom:167.402400pt;}
.y6b{bottom:168.981200pt;}
.y8c{bottom:177.692533pt;}
.y44{bottom:185.142533pt;}
.y1a{bottom:185.649067pt;}
.y6a{bottom:187.611200pt;}
.y8b{bottom:195.692533pt;}
.y43{bottom:203.297200pt;}
.y19{bottom:203.895733pt;}
.y69{bottom:206.241200pt;}
.y42{bottom:221.451867pt;}
.y18{bottom:222.142400pt;}
.y68{bottom:224.871200pt;}
.y8a{bottom:225.025867pt;}
.y41{bottom:239.606533pt;}
.y17{bottom:240.389067pt;}
.y67{bottom:243.501200pt;}
.y40{bottom:257.761200pt;}
.y16{bottom:258.635733pt;}
.y89{bottom:261.865867pt;}
.y66{bottom:262.131200pt;}
.y3f{bottom:275.915867pt;}
.y15{bottom:276.882400pt;}
.y88{bottom:279.869867pt;}
.y65{bottom:280.761200pt;}
.y3e{bottom:294.070533pt;}
.y14{bottom:295.129067pt;}
.y64{bottom:299.391200pt;}
.y87{bottom:305.433867pt;}
.y3d{bottom:312.225200pt;}
.y13{bottom:313.375733pt;}
.y63{bottom:318.021200pt;}
.y86{bottom:323.437867pt;}
.y3c{bottom:330.379867pt;}
.y62{bottom:336.651200pt;}
.y3b{bottom:348.534533pt;}
.y85{bottom:349.001867pt;}
.y61{bottom:355.281200pt;}
.y12{bottom:358.074933pt;}
.y3a{bottom:366.689200pt;}
.y84{bottom:367.005867pt;}
.y60{bottom:373.911200pt;}
.y11{bottom:376.981600pt;}
.y39{bottom:384.843867pt;}
.y5f{bottom:392.541200pt;}
.y83{bottom:392.569867pt;}
.y10{bottom:395.888267pt;}
.y38{bottom:402.998533pt;}
.y82{bottom:410.573867pt;}
.y5e{bottom:411.171200pt;}
.yf{bottom:414.794933pt;}
.y37{bottom:421.153200pt;}
.y81{bottom:428.577867pt;}
.y5d{bottom:429.801200pt;}
.y36{bottom:439.307867pt;}
.y5c{bottom:448.431200pt;}
.y80{bottom:454.141867pt;}
.y35{bottom:457.462533pt;}
.ye{bottom:460.152800pt;}
.y5b{bottom:467.061200pt;}
.y7f{bottom:472.145867pt;}
.y34{bottom:475.617200pt;}
.y5a{bottom:485.691200pt;}
.yd{bottom:488.395467pt;}
.y33{bottom:493.771867pt;}
.y7e{bottom:497.709867pt;}
.y59{bottom:504.321200pt;}
.y32{bottom:511.926533pt;}
.y7d{bottom:515.713867pt;}
.yc{bottom:516.638133pt;}
.y58{bottom:522.951200pt;}
.y31{bottom:530.081200pt;}
.y7c{bottom:541.277867pt;}
.y57{bottom:541.581200pt;}
.yb{bottom:544.880800pt;}
.y30{bottom:548.235867pt;}
.y56{bottom:560.211200pt;}
.y2f{bottom:566.390533pt;}
.ya{bottom:573.106667pt;}
.y55{bottom:578.841200pt;}
.y2e{bottom:584.545200pt;}
.y7b{bottom:586.385200pt;}
.y54{bottom:597.471200pt;}
.y9{bottom:601.354667pt;}
.y2d{bottom:602.699867pt;}
.y7a{bottom:604.386533pt;}
.y53{bottom:616.101200pt;}
.y2c{bottom:620.854533pt;}
.y79{bottom:622.387867pt;}
.y8{bottom:629.602667pt;}
.y52{bottom:634.731200pt;}
.y2b{bottom:639.009200pt;}
.y78{bottom:640.389200pt;}
.y51{bottom:653.361200pt;}
.y2a{bottom:657.163867pt;}
.y7{bottom:657.843333pt;}
.y77{bottom:658.390533pt;}
.y50{bottom:671.991200pt;}
.y29{bottom:675.318533pt;}
.y76{bottom:676.391867pt;}
.y4f{bottom:690.621200pt;}
.y28{bottom:693.473200pt;}
.y75{bottom:694.393200pt;}
.y4e{bottom:709.251200pt;}
.y27{bottom:711.627867pt;}
.y74{bottom:712.394533pt;}
.y6{bottom:712.540667pt;}
.y4d{bottom:727.881200pt;}
.y26{bottom:729.782533pt;}
.y73{bottom:730.395867pt;}
.y5{bottom:739.007333pt;}
.y4c{bottom:746.511200pt;}
.y25{bottom:747.937200pt;}
.y72{bottom:748.397200pt;}
.y4{bottom:757.914000pt;}
.y4b{bottom:765.141200pt;}
.y24{bottom:766.091867pt;}
.y71{bottom:766.398533pt;}
.y4a{bottom:783.771200pt;}
.y23{bottom:784.246533pt;}
.y3{bottom:784.380667pt;}
.y70{bottom:784.399867pt;}
.y22{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:842.834667pt;}
.y20{bottom:858.834667pt;}
.ha{height:35.312500pt;}
.hd{height:44.140625pt;}
.h4{height:45.286458pt;}
.h3{height:46.347656pt;}
.hb{height:47.550781pt;}
.h7{height:52.079427pt;}
.h2{height:56.608073pt;}
.h8{height:57.500000pt;}
.hc{height:60.375000pt;}
.h5{height:63.401042pt;}
.h9{height:66.125000pt;}
.h6{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:71.968267pt;}
.x6{left:73.317600pt;}
.x1{left:74.388133pt;}
.x5{left:75.433600pt;}
.x8{left:92.654533pt;}
.x4{left:93.940933pt;}
.x2{left:206.290000pt;}
.x3{left:207.629333pt;}
}




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