
    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_d54e896d26609542809b1c63.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_16b4a945480b3eb15396108d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_e7e018b3c721bf5b0fd43167.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_009b3c543cbc739db1e5ba86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_ea3c5652621e30dbe5ac5961.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-16.669921px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-7.980471px;}
._f{margin-left:-6.786804px;}
._3{margin-left:-5.343748px;}
._0{margin-left:-3.972657px;}
._15{margin-left:-2.661005px;}
._1{margin-left:-1.300779px;}
._20{width:2.680410px;}
._5{width:3.682792px;}
._6{width:4.931699px;}
._4{width:8.962259px;}
._e{width:13.472766px;}
._12{width:17.975350px;}
._8{width:21.673645px;}
._9{width:23.182173px;}
._7{width:26.854325px;}
._b{width:31.366191px;}
._1e{width:32.393359px;}
._11{width:34.640627px;}
._a{width:35.893371px;}
._1d{width:39.553535px;}
._d{width:41.220437px;}
._13{width:44.830080px;}
._14{width:48.140627px;}
._1b{width:49.162120px;}
._19{width:53.964936px;}
._c{width:63.203406px;}
._18{width:71.830080px;}
._16{width:75.140627px;}
._1a{width:88.640627px;}
._1c{width:115.921878px;}
._1f{width:119.894535px;}
._17{width:131.830079px;}
._10{width:149.291018px;}
.fc3{color:rgb(17,84,204);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.999999px;}
.fs2{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:112.240995px;}
.y77{bottom:114.041740px;}
.yb0{bottom:121.765139px;}
.y3a{bottom:129.489530px;}
.y76{bottom:131.290280px;}
.yaf{bottom:139.013674px;}
.y39{bottom:146.738065px;}
.y75{bottom:148.538815px;}
.yae{bottom:156.262210px;}
.y38{bottom:163.986595px;}
.y74{bottom:165.787360px;}
.yad{bottom:173.510745px;}
.y37{bottom:181.235140px;}
.y73{bottom:183.035885px;}
.yac{bottom:190.759280px;}
.y36{bottom:198.483670px;}
.y72{bottom:200.284420px;}
.yab{bottom:208.007815px;}
.y35{bottom:215.732205px;}
.y71{bottom:217.533071px;}
.yaa{bottom:225.256421px;}
.y34{bottom:232.980740px;}
.y70{bottom:238.456420px;}
.ya9{bottom:246.329949px;}
.y33{bottom:250.229275px;}
.y6f{bottom:255.704960px;}
.ya8{bottom:263.578484px;}
.y32{bottom:267.477820px;}
.y6e{bottom:272.953494px;}
.ya7{bottom:280.827020px;}
.y31{bottom:284.726344px;}
.y6d{bottom:290.202029px;}
.ya6{bottom:298.075554px;}
.y30{bottom:301.974880px;}
.y6c{bottom:307.450564px;}
.ya5{bottom:315.324089px;}
.y2f{bottom:319.223415px;}
.y6b{bottom:324.699100px;}
.ya4{bottom:332.572624px;}
.y2e{bottom:336.471950px;}
.y6a{bottom:341.947635px;}
.ya3{bottom:349.821160px;}
.y2d{bottom:353.720485px;}
.y69{bottom:359.196170px;}
.ya2{bottom:367.069695px;}
.y2c{bottom:370.969030px;}
.y68{bottom:376.444705px;}
.ya1{bottom:384.318230px;}
.y2b{bottom:388.217559px;}
.y67{bottom:393.693235px;}
.ya0{bottom:401.566765px;}
.y2a{bottom:405.466094px;}
.y66{bottom:410.941769px;}
.y9f{bottom:418.815086px;}
.y29{bottom:422.714629px;}
.y65{bottom:428.190304px;}
.y9e{bottom:439.588625px;}
.y28{bottom:439.963165px;}
.y64{bottom:445.438840px;}
.y9d{bottom:456.837152px;}
.y27{bottom:457.211700px;}
.y63{bottom:462.687375px;}
.y9c{bottom:474.085687px;}
.y26{bottom:474.460235px;}
.y62{bottom:479.935910px;}
.y9b{bottom:491.334223px;}
.y25{bottom:491.708770px;}
.y61{bottom:497.184445px;}
.y9a{bottom:508.582766px;}
.y24{bottom:508.957300px;}
.y60{bottom:514.432990px;}
.y99{bottom:525.831297px;}
.y23{bottom:526.205834px;}
.y5f{bottom:531.681519px;}
.y98{bottom:543.079832px;}
.y22{bottom:543.454369px;}
.y5e{bottom:548.930054px;}
.y97{bottom:560.328367px;}
.y21{bottom:560.702905px;}
.y5d{bottom:566.178589px;}
.y96{bottom:577.576975px;}
.y20{bottom:577.951440px;}
.y5c{bottom:583.427125px;}
.y95{bottom:594.900506px;}
.y1f{bottom:595.199975px;}
.y5b{bottom:600.675660px;}
.y1e{bottom:612.448510px;}
.y94{bottom:615.899050px;}
.y5a{bottom:617.924195px;}
.y1d{bottom:629.697055px;}
.ycc{bottom:632.095900px;}
.y93{bottom:633.147585px;}
.y59{bottom:635.172730px;}
.y1c{bottom:646.945597px;}
.y92{bottom:650.396120px;}
.y58{bottom:652.421260px;}
.ycb{bottom:655.419865px;}
.y1b{bottom:664.194132px;}
.y91{bottom:667.644655px;}
.y57{bottom:669.669800px;}
.yca{bottom:678.743110px;}
.y1a{bottom:681.442709px;}
.y90{bottom:684.893336px;}
.y56{bottom:686.918334px;}
.y19{bottom:698.691244px;}
.yc9{bottom:702.066649px;}
.y55{bottom:704.166869px;}
.y8f{bottom:706.041865px;}
.y18{bottom:715.939780px;}
.yc8{bottom:719.315184px;}
.y54{bottom:721.415404px;}
.y8e{bottom:723.290400px;}
.y17{bottom:733.188315px;}
.yc7{bottom:736.563719px;}
.y53{bottom:738.663940px;}
.y8d{bottom:740.538935px;}
.y16{bottom:750.436850px;}
.yc6{bottom:753.812255px;}
.y52{bottom:755.912475px;}
.y8c{bottom:757.787470px;}
.y15{bottom:767.685385px;}
.yc5{bottom:771.060789px;}
.y51{bottom:773.161010px;}
.y8b{bottom:775.035941px;}
.y14{bottom:784.933915px;}
.yc4{bottom:788.309324px;}
.y50{bottom:790.409545px;}
.y8a{bottom:795.959470px;}
.y13{bottom:802.182445px;}
.yc3{bottom:805.557859px;}
.y4f{bottom:807.658075px;}
.y89{bottom:813.208005px;}
.y12{bottom:819.430961px;}
.yc2{bottom:822.806395px;}
.y4e{bottom:824.906617px;}
.y88{bottom:830.456540px;}
.yc1{bottom:840.054930px;}
.y11{bottom:840.504476px;}
.y4d{bottom:842.155149px;}
.y87{bottom:847.705075px;}
.yc0{bottom:857.303465px;}
.y4c{bottom:859.403679px;}
.y10{bottom:861.578020px;}
.y86{bottom:864.953605px;}
.ybf{bottom:874.552000px;}
.y4b{bottom:876.652219px;}
.yf{bottom:878.826560px;}
.y85{bottom:882.202150px;}
.ybe{bottom:891.800530px;}
.y4a{bottom:894.218624px;}
.ye{bottom:896.075095px;}
.y84{bottom:899.450690px;}
.ybd{bottom:909.049070px;}
.y49{bottom:912.874150px;}
.yd{bottom:913.323625px;}
.y83{bottom:916.699225px;}
.ybc{bottom:926.297605px;}
.y48{bottom:930.122681px;}
.yc{bottom:930.572140px;}
.y82{bottom:933.947755px;}
.ybb{bottom:943.546511px;}
.y47{bottom:947.371215px;}
.yb{bottom:947.895700px;}
.y81{bottom:951.196285px;}
.yba{bottom:964.545044px;}
.y46{bottom:964.619750px;}
.ya{bottom:965.219234px;}
.y80{bottom:968.444825px;}
.yb9{bottom:981.793580px;}
.y45{bottom:981.868285px;}
.y9{bottom:982.467777px;}
.y7f{bottom:985.693360px;}
.yb8{bottom:999.042114px;}
.y44{bottom:999.116821px;}
.y8{bottom:999.716308px;}
.y7e{bottom:1002.941893px;}
.yb7{bottom:1016.290649px;}
.y43{bottom:1016.365356px;}
.y7{bottom:1016.964843px;}
.y7d{bottom:1020.190430px;}
.yb6{bottom:1033.539184px;}
.y42{bottom:1033.613891px;}
.y6{bottom:1034.213378px;}
.y7c{bottom:1037.438964px;}
.yb5{bottom:1050.787720px;}
.y41{bottom:1050.862426px;}
.y5{bottom:1051.461918px;}
.y7b{bottom:1054.687499px;}
.yb4{bottom:1068.036255px;}
.y40{bottom:1068.110961px;}
.y4{bottom:1068.785441px;}
.y7a{bottom:1071.936034px;}
.yb3{bottom:1085.284790px;}
.y3f{bottom:1085.359497px;}
.y79{bottom:1089.184570px;}
.y3{bottom:1090.194718px;}
.yb2{bottom:1102.533325px;}
.y3e{bottom:1102.608105px;}
.y78{bottom:1106.433105px;}
.y2{bottom:1110.892971px;}
.yb1{bottom:1119.781641px;}
.y3d{bottom:1123.681640px;}
.y1{bottom:1131.966210px;}
.y3c{bottom:1140.930175px;}
.h4{height:39.990233px;}
.h2{height:43.681640px;}
.h3{height:43.710936px;}
.h5{height:48.082032px;}
.h1{height:52.417969px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.x8{left:114.750000px;}
.x4{left:115.875000px;}
.x5{left:148.500000px;}
.x6{left:175.500000px;}
.x7{left:178.875000px;}
.x1{left:216.099761px;}
.x3{left:222.766265px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-14.817708pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-7.093752pt;}
._f{margin-left:-6.032714pt;}
._3{margin-left:-4.749998pt;}
._0{margin-left:-3.531250pt;}
._15{margin-left:-2.365338pt;}
._1{margin-left:-1.156248pt;}
._20{width:2.382586pt;}
._5{width:3.273593pt;}
._6{width:4.383733pt;}
._4{width:7.966452pt;}
._e{width:11.975792pt;}
._12{width:15.978089pt;}
._8{width:19.265462pt;}
._9{width:20.606376pt;}
._7{width:23.870511pt;}
._b{width:27.881059pt;}
._1e{width:28.794097pt;}
._11{width:30.791668pt;}
._a{width:31.905219pt;}
._1d{width:35.158698pt;}
._d{width:36.640388pt;}
._13{width:39.848960pt;}
._14{width:42.791668pt;}
._1b{width:43.699662pt;}
._19{width:47.968832pt;}
._c{width:56.180806pt;}
._18{width:63.848960pt;}
._16{width:66.791668pt;}
._1a{width:78.791668pt;}
._1c{width:103.041669pt;}
._1f{width:106.572920pt;}
._17{width:117.182292pt;}
._10{width:132.703127pt;}
.fs1{font-size:53.333332pt;}
.fs2{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:99.769773pt;}
.y77{bottom:101.370436pt;}
.yb0{bottom:108.235679pt;}
.y3a{bottom:115.101804pt;}
.y76{bottom:116.702471pt;}
.yaf{bottom:123.567710pt;}
.y39{bottom:130.433836pt;}
.y75{bottom:132.034503pt;}
.yae{bottom:138.899742pt;}
.y38{bottom:145.765863pt;}
.y74{bottom:147.366543pt;}
.yad{bottom:154.231773pt;}
.y37{bottom:161.097903pt;}
.y73{bottom:162.698564pt;}
.yac{bottom:169.563804pt;}
.y36{bottom:176.429929pt;}
.y72{bottom:178.030596pt;}
.yab{bottom:184.895836pt;}
.y35{bottom:191.761960pt;}
.y71{bottom:193.362730pt;}
.yaa{bottom:200.227930pt;}
.y34{bottom:207.093991pt;}
.y70{bottom:211.961263pt;}
.ya9{bottom:218.959954pt;}
.y33{bottom:222.426023pt;}
.y6f{bottom:227.293297pt;}
.ya8{bottom:234.291985pt;}
.y32{bottom:237.758063pt;}
.y6e{bottom:242.625328pt;}
.ya7{bottom:249.624017pt;}
.y31{bottom:253.090084pt;}
.y6d{bottom:257.957359pt;}
.ya6{bottom:264.956048pt;}
.y30{bottom:268.422116pt;}
.y6c{bottom:273.289390pt;}
.ya5{bottom:280.288079pt;}
.y2f{bottom:283.754147pt;}
.y6b{bottom:288.621422pt;}
.ya4{bottom:295.620110pt;}
.y2e{bottom:299.086178pt;}
.y6a{bottom:303.953453pt;}
.ya3{bottom:310.952142pt;}
.y2d{bottom:314.418209pt;}
.y69{bottom:319.285484pt;}
.ya2{bottom:326.284173pt;}
.y2c{bottom:329.750249pt;}
.y68{bottom:334.617516pt;}
.ya1{bottom:341.616204pt;}
.y2b{bottom:345.082275pt;}
.y67{bottom:349.949543pt;}
.ya0{bottom:356.948236pt;}
.y2a{bottom:360.414306pt;}
.y66{bottom:365.281573pt;}
.y9f{bottom:372.280076pt;}
.y29{bottom:375.746337pt;}
.y65{bottom:380.613604pt;}
.y9e{bottom:390.745444pt;}
.y28{bottom:391.078369pt;}
.y64{bottom:395.945636pt;}
.y9d{bottom:406.077468pt;}
.y27{bottom:406.410400pt;}
.y63{bottom:411.277667pt;}
.y9c{bottom:421.409499pt;}
.y26{bottom:421.742431pt;}
.y62{bottom:426.609698pt;}
.y9b{bottom:436.741531pt;}
.y25{bottom:437.074463pt;}
.y61{bottom:441.941729pt;}
.y9a{bottom:452.073569pt;}
.y24{bottom:452.406489pt;}
.y60{bottom:457.273769pt;}
.y99{bottom:467.405597pt;}
.y23{bottom:467.738519pt;}
.y5f{bottom:472.605795pt;}
.y98{bottom:482.737628pt;}
.y22{bottom:483.070550pt;}
.y5e{bottom:487.937826pt;}
.y97{bottom:498.069659pt;}
.y21{bottom:498.402582pt;}
.y5d{bottom:503.269857pt;}
.y96{bottom:513.401756pt;}
.y20{bottom:513.734613pt;}
.y5c{bottom:518.601889pt;}
.y95{bottom:528.800450pt;}
.y1f{bottom:529.066644pt;}
.y5b{bottom:533.933920pt;}
.y1e{bottom:544.398676pt;}
.y94{bottom:547.465822pt;}
.y5a{bottom:549.265951pt;}
.y1d{bottom:559.730716pt;}
.ycc{bottom:561.863022pt;}
.y93{bottom:562.797853pt;}
.y59{bottom:564.597983pt;}
.y1c{bottom:575.062753pt;}
.y92{bottom:578.129884pt;}
.y58{bottom:579.930009pt;}
.ycb{bottom:582.595435pt;}
.y1b{bottom:590.394784pt;}
.y91{bottom:593.461916pt;}
.y57{bottom:595.262044pt;}
.yca{bottom:603.327209pt;}
.y1a{bottom:605.726853pt;}
.y90{bottom:608.794076pt;}
.y56{bottom:610.594075pt;}
.y19{bottom:621.058884pt;}
.yc9{bottom:624.059243pt;}
.y55{bottom:625.926106pt;}
.y8f{bottom:627.592769pt;}
.y18{bottom:636.390916pt;}
.yc8{bottom:639.391274pt;}
.y54{bottom:641.258137pt;}
.y8e{bottom:642.924800pt;}
.y17{bottom:651.722947pt;}
.yc7{bottom:654.723305pt;}
.y53{bottom:656.590169pt;}
.y8d{bottom:658.256831pt;}
.y16{bottom:667.054978pt;}
.yc6{bottom:670.055337pt;}
.y52{bottom:671.922200pt;}
.y8c{bottom:673.588863pt;}
.y15{bottom:682.387009pt;}
.yc5{bottom:685.387368pt;}
.y51{bottom:687.254231pt;}
.y8b{bottom:688.920836pt;}
.y14{bottom:697.719036pt;}
.yc4{bottom:700.719399pt;}
.y50{bottom:702.586263pt;}
.y8a{bottom:707.519529pt;}
.y13{bottom:713.051063pt;}
.yc3{bottom:716.051430pt;}
.y4f{bottom:717.918289pt;}
.y89{bottom:722.851560pt;}
.y12{bottom:728.383076pt;}
.yc2{bottom:731.383462pt;}
.y4e{bottom:733.250327pt;}
.y88{bottom:738.183591pt;}
.yc1{bottom:746.715493pt;}
.y11{bottom:747.115090pt;}
.y4d{bottom:748.582355pt;}
.y87{bottom:753.515623pt;}
.yc0{bottom:762.047524pt;}
.y4c{bottom:763.914382pt;}
.y10{bottom:765.847129pt;}
.y86{bottom:768.847649pt;}
.ybf{bottom:777.379556pt;}
.y4b{bottom:779.246417pt;}
.yf{bottom:781.179164pt;}
.y85{bottom:784.179689pt;}
.ybe{bottom:792.711583pt;}
.y4a{bottom:794.860999pt;}
.ye{bottom:796.511196pt;}
.y84{bottom:799.511724pt;}
.ybd{bottom:808.043618pt;}
.y49{bottom:811.443689pt;}
.yd{bottom:811.843223pt;}
.y83{bottom:814.843756pt;}
.ybc{bottom:823.375649pt;}
.y48{bottom:826.775716pt;}
.yc{bottom:827.175236pt;}
.y82{bottom:830.175783pt;}
.ybb{bottom:838.708010pt;}
.y47{bottom:842.107747pt;}
.yb{bottom:842.573956pt;}
.y81{bottom:845.507809pt;}
.yba{bottom:857.373372pt;}
.y46{bottom:857.439778pt;}
.ya{bottom:857.972652pt;}
.y80{bottom:860.839844pt;}
.yb9{bottom:872.705404pt;}
.y45{bottom:872.771809pt;}
.y9{bottom:873.304690pt;}
.y7f{bottom:876.171876pt;}
.yb8{bottom:888.037435pt;}
.y44{bottom:888.103841pt;}
.y8{bottom:888.636718pt;}
.y7e{bottom:891.503905pt;}
.yb7{bottom:903.369466pt;}
.y43{bottom:903.435872pt;}
.y7{bottom:903.968749pt;}
.y7d{bottom:906.835937pt;}
.yb6{bottom:918.701497pt;}
.y42{bottom:918.767903pt;}
.y6{bottom:919.300780pt;}
.y7c{bottom:922.167968pt;}
.yb5{bottom:934.033529pt;}
.y41{bottom:934.099935pt;}
.y5{bottom:934.632816pt;}
.y7b{bottom:937.499999pt;}
.yb4{bottom:949.365560pt;}
.y40{bottom:949.431965pt;}
.y4{bottom:950.031503pt;}
.y7a{bottom:952.832030pt;}
.yb3{bottom:964.697591pt;}
.y3f{bottom:964.763997pt;}
.y79{bottom:968.164062pt;}
.y3{bottom:969.061971pt;}
.yb2{bottom:980.029623pt;}
.y3e{bottom:980.096094pt;}
.y78{bottom:983.496093pt;}
.y2{bottom:987.460418pt;}
.yb1{bottom:995.361459pt;}
.y3d{bottom:998.828124pt;}
.y1{bottom:1006.192187pt;}
.y3c{bottom:1014.160156pt;}
.h4{height:35.546874pt;}
.h2{height:38.828124pt;}
.h3{height:38.854166pt;}
.h5{height:42.739584pt;}
.h1{height:46.593750pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.x8{left:102.000000pt;}
.x4{left:103.000000pt;}
.x5{left:132.000000pt;}
.x6{left:156.000000pt;}
.x7{left:159.000000pt;}
.x1{left:192.088676pt;}
.x3{left:198.014458pt;}
}




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