
    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_13dbf7131755421f50cb7454.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_137342c8c20d0b43211f1156.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_42f555d4eb7119a00a510fec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_d7afa0e58afae1622dc67c2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.152400px;}
.ls8{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.080640px;}
.ls2{letter-spacing:0.109200px;}
.ls9{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.152640px;}
.lsc{letter-spacing:0.612000px;}
.ls5{letter-spacing:5.940000px;}
.ls3{letter-spacing:9.360000px;}
.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;}
}
.ws4{word-spacing:-16.712400px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.407600px;}
.ws7{word-spacing:-14.112000px;}
.ws5{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.482000px;}
.ws3{word-spacing:-13.392000px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-4.432320px;}
._2{margin-left:-3.312000px;}
._0{margin-left:-1.725120px;}
._1{width:1.222560px;}
._7{width:2.652480px;}
._e{width:4.374720px;}
._f{width:5.606400px;}
._b{width:6.626880px;}
._a{width:7.882560px;}
._12{width:8.893440px;}
._d{width:9.936000px;}
._3{width:11.658240px;}
._4{width:12.787200px;}
._c{width:14.070720px;}
._8{width:15.433920px;}
._9{width:18.017280px;}
._10{width:19.607040px;}
._13{width:21.461760px;}
._14{width:23.413920px;}
._15{width:25.315200px;}
._16{width:26.694720px;}
._5{width:28.748160px;}
._6{width:30.738240px;}
._17{width:31.861200px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y81{bottom:114.696000px;}
.yaa{bottom:115.956000px;}
.y2b{bottom:120.096000px;}
.yc4{bottom:121.536000px;}
.y6a{bottom:129.636000px;}
.y80{bottom:136.476000px;}
.ya9{bottom:137.736000px;}
.y2a{bottom:141.876000px;}
.y56{bottom:143.316000px;}
.y69{bottom:151.410000px;}
.y7f{bottom:158.250000px;}
.ya8{bottom:159.690000px;}
.y29{bottom:163.650000px;}
.y55{bottom:165.090000px;}
.y68{bottom:173.190000px;}
.y7e{bottom:180.030000px;}
.ya7{bottom:181.470000px;}
.y28{bottom:185.610000px;}
.y54{bottom:186.870000px;}
.ya5{bottom:188.310000px;}
.y67{bottom:195.150000px;}
.y7d{bottom:201.990000px;}
.ya6{bottom:203.250000px;}
.y27{bottom:207.390000px;}
.y53{bottom:208.650000px;}
.y66{bottom:216.930000px;}
.y7c{bottom:223.770000px;}
.ya4{bottom:225.030000px;}
.y26{bottom:229.170000px;}
.y52{bottom:230.610000px;}
.yc3{bottom:231.870000px;}
.y65{bottom:238.710000px;}
.y7b{bottom:245.550000px;}
.ya3{bottom:246.990000px;}
.y25{bottom:250.950000px;}
.y51{bottom:252.390000px;}
.y64{bottom:260.490000px;}
.yad{bottom:266.070000px;}
.y7a{bottom:267.330000px;}
.ya2{bottom:268.770000px;}
.y24{bottom:272.910000px;}
.y50{bottom:274.170000px;}
.y63{bottom:282.495000px;}
.y79{bottom:289.155000px;}
.ya1{bottom:290.595000px;}
.y23{bottom:294.735000px;}
.yac{bottom:302.835000px;}
.y62{bottom:304.275000px;}
.y4f{bottom:311.115000px;}
.ya0{bottom:312.375000px;}
.y22{bottom:316.515000px;}
.y61{bottom:326.055000px;}
.yc2{bottom:327.495000px;}
.y4e{bottom:332.895000px;}
.y9f{bottom:334.155000px;}
.y21{bottom:338.295000px;}
.yab{bottom:339.735000px;}
.y60{bottom:347.835000px;}
.yc1{bottom:349.275000px;}
.y4d{bottom:354.675000px;}
.y9e{bottom:356.115000px;}
.y20{bottom:360.075000px;}
.y5f{bottom:369.615000px;}
.y4c{bottom:376.455000px;}
.y9d{bottom:377.895000px;}
.y1f{bottom:382.035000px;}
.yc0{bottom:385.995000px;}
.y5e{bottom:391.575000px;}
.y4b{bottom:398.415000px;}
.y9c{bottom:399.675000px;}
.y1e{bottom:403.815000px;}
.y5d{bottom:413.355000px;}
.y4a{bottom:420.195000px;}
.y9b{bottom:421.455000px;}
.ybf{bottom:422.895000px;}
.y1d{bottom:425.595000px;}
.y5c{bottom:435.135000px;}
.y8c{bottom:441.975000px;}
.y9a{bottom:443.415000px;}
.ybe{bottom:444.675000px;}
.y1c{bottom:447.375000px;}
.y49{bottom:456.915000px;}
.y8b{bottom:463.755000px;}
.y99{bottom:465.195000px;}
.y1b{bottom:469.335000px;}
.y48{bottom:478.875000px;}
.ybd{bottom:481.575000px;}
.y8a{bottom:485.535000px;}
.y98{bottom:486.975000px;}
.y1a{bottom:491.115000px;}
.y47{bottom:500.655000px;}
.ybc{bottom:503.355000px;}
.y89{bottom:507.495000px;}
.y97{bottom:508.755000px;}
.y19{bottom:512.895000px;}
.y46{bottom:522.435000px;}
.y88{bottom:529.275000px;}
.y96{bottom:530.535000px;}
.y18{bottom:534.675000px;}
.ybb{bottom:540.255000px;}
.y45{bottom:544.215000px;}
.y87{bottom:551.055000px;}
.y95{bottom:552.495000px;}
.y17{bottom:556.455000px;}
.y78{bottom:559.335000px;}
.yba{bottom:562.035000px;}
.y44{bottom:566.025000px;}
.y94{bottom:574.305000px;}
.y77{bottom:581.145000px;}
.y43{bottom:587.985000px;}
.y16{bottom:593.385000px;}
.y93{bottom:596.085000px;}
.yb9{bottom:598.785000px;}
.y76{bottom:602.925000px;}
.y42{bottom:609.765000px;}
.y15{bottom:615.165000px;}
.y92{bottom:617.865000px;}
.yb8{bottom:620.745000px;}
.y75{bottom:624.705000px;}
.y41{bottom:631.545000px;}
.y14{bottom:636.945000px;}
.y91{bottom:639.825000px;}
.y74{bottom:646.485000px;}
.y5b{bottom:653.325000px;}
.yb7{bottom:657.465000px;}
.y13{bottom:658.905000px;}
.y90{bottom:661.605000px;}
.y40{bottom:668.445000px;}
.y5a{bottom:675.285000px;}
.yc9{bottom:679.245000px;}
.y8f{bottom:683.385000px;}
.y3f{bottom:690.225000px;}
.yb6{bottom:694.365000px;}
.y12{bottom:695.625000px;}
.y59{bottom:697.065000px;}
.y8e{bottom:705.165000px;}
.y3e{bottom:712.005000px;}
.yc8{bottom:716.145000px;}
.y11{bottom:717.405000px;}
.y58{bottom:718.845000px;}
.y8d{bottom:726.945000px;}
.yb5{bottom:731.085000px;}
.y3d{bottom:733.785000px;}
.y10{bottom:739.365000px;}
.y57{bottom:740.625000px;}
.y73{bottom:748.905000px;}
.yb4{bottom:752.865000px;}
.y3c{bottom:755.745000px;}
.yf{bottom:761.145000px;}
.y86{bottom:762.405000px;}
.y72{bottom:770.685000px;}
.y3b{bottom:777.525000px;}
.ye{bottom:782.925000px;}
.y85{bottom:784.365000px;}
.yb3{bottom:789.765000px;}
.y71{bottom:792.465000px;}
.y3a{bottom:799.305000px;}
.y84{bottom:806.145000px;}
.yb2{bottom:811.545000px;}
.y70{bottom:814.245000px;}
.yd{bottom:819.825000px;}
.y39{bottom:821.085000px;}
.y83{bottom:827.925000px;}
.yc7{bottom:833.325000px;}
.y6f{bottom:836.205000px;}
.yc{bottom:841.605000px;}
.y38{bottom:842.865000px;}
.yb1{bottom:848.490000px;}
.y6e{bottom:858.030000px;}
.yb{bottom:863.430000px;}
.y37{bottom:864.870000px;}
.yb0{bottom:870.270000px;}
.y6d{bottom:879.810000px;}
.ya{bottom:885.210000px;}
.y36{bottom:886.650000px;}
.yc6{bottom:892.050000px;}
.y6c{bottom:901.590000px;}
.y9{bottom:906.990000px;}
.y35{bottom:908.430000px;}
.y6b{bottom:923.370000px;}
.y8{bottom:928.950000px;}
.y82{bottom:930.210000px;}
.y34{bottom:945.330000px;}
.y7{bottom:965.670000px;}
.y33{bottom:967.110000px;}
.yaf{bottom:987.450000px;}
.y32{bottom:988.890000px;}
.y6{bottom:1002.570000px;}
.yc5{bottom:1009.410000px;}
.y31{bottom:1010.670000px;}
.y5{bottom:1024.350000px;}
.y30{bottom:1032.450000px;}
.y4{bottom:1046.130000px;}
.y2f{bottom:1054.410000px;}
.yae{bottom:1061.250000px;}
.y3{bottom:1067.910000px;}
.y2e{bottom:1076.190000px;}
.y2d{bottom:1097.970000px;}
.y2{bottom:1104.810000px;}
.y2c{bottom:1119.750000px;}
.y1{bottom:1141.740000px;}
.h3{height:59.383125px;}
.h4{height:64.978594px;}
.h2{height:65.010937px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.656000px;}
.x6{left:170.130000px;}
.x1{left:363.495000px;}
.x3{left:364.575000px;}
.x4{left:369.615000px;}
.x5{left:446.475000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.135467pt;}
.ls8{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.071680pt;}
.ls2{letter-spacing:0.097067pt;}
.ls9{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.135680pt;}
.lsc{letter-spacing:0.544000pt;}
.ls5{letter-spacing:5.280000pt;}
.ls3{letter-spacing:8.320000pt;}
.ws4{word-spacing:-14.855467pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.584533pt;}
.ws7{word-spacing:-12.544000pt;}
.ws5{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.984000pt;}
.ws3{word-spacing:-11.904000pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-3.939840pt;}
._2{margin-left:-2.944000pt;}
._0{margin-left:-1.533440pt;}
._1{width:1.086720pt;}
._7{width:2.357760pt;}
._e{width:3.888640pt;}
._f{width:4.983467pt;}
._b{width:5.890560pt;}
._a{width:7.006720pt;}
._12{width:7.905280pt;}
._d{width:8.832000pt;}
._3{width:10.362880pt;}
._4{width:11.366400pt;}
._c{width:12.507307pt;}
._8{width:13.719040pt;}
._9{width:16.015360pt;}
._10{width:17.428480pt;}
._13{width:19.077120pt;}
._14{width:20.812373pt;}
._15{width:22.502400pt;}
._16{width:23.728640pt;}
._5{width:25.553920pt;}
._6{width:27.322880pt;}
._17{width:28.321067pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:101.952000pt;}
.yaa{bottom:103.072000pt;}
.y2b{bottom:106.752000pt;}
.yc4{bottom:108.032000pt;}
.y6a{bottom:115.232000pt;}
.y80{bottom:121.312000pt;}
.ya9{bottom:122.432000pt;}
.y2a{bottom:126.112000pt;}
.y56{bottom:127.392000pt;}
.y69{bottom:134.586667pt;}
.y7f{bottom:140.666667pt;}
.ya8{bottom:141.946667pt;}
.y29{bottom:145.466667pt;}
.y55{bottom:146.746667pt;}
.y68{bottom:153.946667pt;}
.y7e{bottom:160.026667pt;}
.ya7{bottom:161.306667pt;}
.y28{bottom:164.986667pt;}
.y54{bottom:166.106667pt;}
.ya5{bottom:167.386667pt;}
.y67{bottom:173.466667pt;}
.y7d{bottom:179.546667pt;}
.ya6{bottom:180.666667pt;}
.y27{bottom:184.346667pt;}
.y53{bottom:185.466667pt;}
.y66{bottom:192.826667pt;}
.y7c{bottom:198.906667pt;}
.ya4{bottom:200.026667pt;}
.y26{bottom:203.706667pt;}
.y52{bottom:204.986667pt;}
.yc3{bottom:206.106667pt;}
.y65{bottom:212.186667pt;}
.y7b{bottom:218.266667pt;}
.ya3{bottom:219.546667pt;}
.y25{bottom:223.066667pt;}
.y51{bottom:224.346667pt;}
.y64{bottom:231.546667pt;}
.yad{bottom:236.506667pt;}
.y7a{bottom:237.626667pt;}
.ya2{bottom:238.906667pt;}
.y24{bottom:242.586667pt;}
.y50{bottom:243.706667pt;}
.y63{bottom:251.106667pt;}
.y79{bottom:257.026667pt;}
.ya1{bottom:258.306667pt;}
.y23{bottom:261.986667pt;}
.yac{bottom:269.186667pt;}
.y62{bottom:270.466667pt;}
.y4f{bottom:276.546667pt;}
.ya0{bottom:277.666667pt;}
.y22{bottom:281.346667pt;}
.y61{bottom:289.826667pt;}
.yc2{bottom:291.106667pt;}
.y4e{bottom:295.906667pt;}
.y9f{bottom:297.026667pt;}
.y21{bottom:300.706667pt;}
.yab{bottom:301.986667pt;}
.y60{bottom:309.186667pt;}
.yc1{bottom:310.466667pt;}
.y4d{bottom:315.266667pt;}
.y9e{bottom:316.546667pt;}
.y20{bottom:320.066667pt;}
.y5f{bottom:328.546667pt;}
.y4c{bottom:334.626667pt;}
.y9d{bottom:335.906667pt;}
.y1f{bottom:339.586667pt;}
.yc0{bottom:343.106667pt;}
.y5e{bottom:348.066667pt;}
.y4b{bottom:354.146667pt;}
.y9c{bottom:355.266667pt;}
.y1e{bottom:358.946667pt;}
.y5d{bottom:367.426667pt;}
.y4a{bottom:373.506667pt;}
.y9b{bottom:374.626667pt;}
.ybf{bottom:375.906667pt;}
.y1d{bottom:378.306667pt;}
.y5c{bottom:386.786667pt;}
.y8c{bottom:392.866667pt;}
.y9a{bottom:394.146667pt;}
.ybe{bottom:395.266667pt;}
.y1c{bottom:397.666667pt;}
.y49{bottom:406.146667pt;}
.y8b{bottom:412.226667pt;}
.y99{bottom:413.506667pt;}
.y1b{bottom:417.186667pt;}
.y48{bottom:425.666667pt;}
.ybd{bottom:428.066667pt;}
.y8a{bottom:431.586667pt;}
.y98{bottom:432.866667pt;}
.y1a{bottom:436.546667pt;}
.y47{bottom:445.026667pt;}
.ybc{bottom:447.426667pt;}
.y89{bottom:451.106667pt;}
.y97{bottom:452.226667pt;}
.y19{bottom:455.906667pt;}
.y46{bottom:464.386667pt;}
.y88{bottom:470.466667pt;}
.y96{bottom:471.586667pt;}
.y18{bottom:475.266667pt;}
.ybb{bottom:480.226667pt;}
.y45{bottom:483.746667pt;}
.y87{bottom:489.826667pt;}
.y95{bottom:491.106667pt;}
.y17{bottom:494.626667pt;}
.y78{bottom:497.186667pt;}
.yba{bottom:499.586667pt;}
.y44{bottom:503.133333pt;}
.y94{bottom:510.493333pt;}
.y77{bottom:516.573333pt;}
.y43{bottom:522.653333pt;}
.y16{bottom:527.453333pt;}
.y93{bottom:529.853333pt;}
.yb9{bottom:532.253333pt;}
.y76{bottom:535.933333pt;}
.y42{bottom:542.013333pt;}
.y15{bottom:546.813333pt;}
.y92{bottom:549.213333pt;}
.yb8{bottom:551.773333pt;}
.y75{bottom:555.293333pt;}
.y41{bottom:561.373333pt;}
.y14{bottom:566.173333pt;}
.y91{bottom:568.733333pt;}
.y74{bottom:574.653333pt;}
.y5b{bottom:580.733333pt;}
.yb7{bottom:584.413333pt;}
.y13{bottom:585.693333pt;}
.y90{bottom:588.093333pt;}
.y40{bottom:594.173333pt;}
.y5a{bottom:600.253333pt;}
.yc9{bottom:603.773333pt;}
.y8f{bottom:607.453333pt;}
.y3f{bottom:613.533333pt;}
.yb6{bottom:617.213333pt;}
.y12{bottom:618.333333pt;}
.y59{bottom:619.613333pt;}
.y8e{bottom:626.813333pt;}
.y3e{bottom:632.893333pt;}
.yc8{bottom:636.573333pt;}
.y11{bottom:637.693333pt;}
.y58{bottom:638.973333pt;}
.y8d{bottom:646.173333pt;}
.yb5{bottom:649.853333pt;}
.y3d{bottom:652.253333pt;}
.y10{bottom:657.213333pt;}
.y57{bottom:658.333333pt;}
.y73{bottom:665.693333pt;}
.yb4{bottom:669.213333pt;}
.y3c{bottom:671.773333pt;}
.yf{bottom:676.573333pt;}
.y86{bottom:677.693333pt;}
.y72{bottom:685.053333pt;}
.y3b{bottom:691.133333pt;}
.ye{bottom:695.933333pt;}
.y85{bottom:697.213333pt;}
.yb3{bottom:702.013333pt;}
.y71{bottom:704.413333pt;}
.y3a{bottom:710.493333pt;}
.y84{bottom:716.573333pt;}
.yb2{bottom:721.373333pt;}
.y70{bottom:723.773333pt;}
.yd{bottom:728.733333pt;}
.y39{bottom:729.853333pt;}
.y83{bottom:735.933333pt;}
.yc7{bottom:740.733333pt;}
.y6f{bottom:743.293333pt;}
.yc{bottom:748.093333pt;}
.y38{bottom:749.213333pt;}
.yb1{bottom:754.213333pt;}
.y6e{bottom:762.693333pt;}
.yb{bottom:767.493333pt;}
.y37{bottom:768.773333pt;}
.yb0{bottom:773.573333pt;}
.y6d{bottom:782.053333pt;}
.ya{bottom:786.853333pt;}
.y36{bottom:788.133333pt;}
.yc6{bottom:792.933333pt;}
.y6c{bottom:801.413333pt;}
.y9{bottom:806.213333pt;}
.y35{bottom:807.493333pt;}
.y6b{bottom:820.773333pt;}
.y8{bottom:825.733333pt;}
.y82{bottom:826.853333pt;}
.y34{bottom:840.293333pt;}
.y7{bottom:858.373333pt;}
.y33{bottom:859.653333pt;}
.yaf{bottom:877.733333pt;}
.y32{bottom:879.013333pt;}
.y6{bottom:891.173333pt;}
.yc5{bottom:897.253333pt;}
.y31{bottom:898.373333pt;}
.y5{bottom:910.533333pt;}
.y30{bottom:917.733333pt;}
.y4{bottom:929.893333pt;}
.y2f{bottom:937.253333pt;}
.yae{bottom:943.333333pt;}
.y3{bottom:949.253333pt;}
.y2e{bottom:956.613333pt;}
.y2d{bottom:975.973333pt;}
.y2{bottom:982.053333pt;}
.y2c{bottom:995.333333pt;}
.y1{bottom:1014.880000pt;}
.h3{height:52.785000pt;}
.h4{height:57.758750pt;}
.h2{height:57.787500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.472000pt;}
.x6{left:151.226667pt;}
.x1{left:323.106667pt;}
.x3{left:324.066667pt;}
.x4{left:328.546667pt;}
.x5{left:396.866667pt;}
}




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