
    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_e6deac9e9c246f5e51fd0851.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_d5b4106af8546ace58df03db.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_ddd0f4e14cbc0649cd5cb529.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4c1c1316f4c8a7fd99d279f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999512;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls4{letter-spacing:-0.924000px;}
.ls5{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:39.881280px;}
.ls6{letter-spacing:46.002720px;}
.ls7{letter-spacing:64.002720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws8{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.016000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-3.406320px;}
._8{margin-left:-2.330640px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._12{width:2.616480px;}
._2{width:4.245600px;}
._11{width:5.248560px;}
._7{width:6.693120px;}
._6{width:7.828560px;}
._a{width:8.843040px;}
._f{width:10.805280px;}
._10{width:11.944080px;}
._13{width:13.359360px;}
._b{width:16.553520px;}
._c{width:18.144000px;}
._d{width:20.729040px;}
._e{width:22.118880px;}
._15{width:26.704560px;}
._14{width:28.196640px;}
._5{width:136.056000px;}
._4{width:636.906000px;}
._3{width:748.236000px;}
.fc4{color:rgb(26,28,30);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:32.400000px;}
.ya{bottom:36.180000px;}
.y9{bottom:51.660000px;}
.y46{bottom:115.236000px;}
.y42{bottom:120.816000px;}
.y41{bottom:137.916000px;}
.y40{bottom:155.190000px;}
.y3f{bottom:172.470000px;}
.y3e{bottom:189.750000px;}
.y67{bottom:191.190000px;}
.y3d{bottom:207.030000px;}
.y66{bottom:208.470000px;}
.y65{bottom:222.510000px;}
.y3c{bottom:224.310000px;}
.y3b{bottom:241.410000px;}
.y3a{bottom:258.690000px;}
.y39{bottom:275.970000px;}
.y38{bottom:293.250000px;}
.y81{bottom:301.350000px;}
.y37{bottom:310.530000px;}
.y36{bottom:327.630000px;}
.y80{bottom:330.870000px;}
.y35{bottom:344.955000px;}
.y7f{bottom:349.995000px;}
.y5f{bottom:356.835000px;}
.y34{bottom:362.235000px;}
.y7e{bottom:368.535000px;}
.y5e{bottom:374.115000px;}
.y58{bottom:375.195000px;}
.y33{bottom:379.515000px;}
.y7d{bottom:385.815000px;}
.y5d{bottom:391.395000px;}
.y57{bottom:392.475000px;}
.y32{bottom:396.795000px;}
.y7c{bottom:403.095000px;}
.y5c{bottom:405.435000px;}
.y56{bottom:409.755000px;}
.y31{bottom:414.075000px;}
.y7b{bottom:420.195000px;}
.y55{bottom:427.035000px;}
.y30{bottom:431.175000px;}
.y7a{bottom:437.475000px;}
.y54{bottom:444.135000px;}
.y2f{bottom:448.455000px;}
.y79{bottom:454.755000px;}
.y53{bottom:461.415000px;}
.y2e{bottom:465.735000px;}
.y78{bottom:472.035000px;}
.y52{bottom:478.695000px;}
.y2d{bottom:483.015000px;}
.y77{bottom:489.315000px;}
.y51{bottom:495.975000px;}
.y2c{bottom:500.295000px;}
.y76{bottom:506.595000px;}
.y50{bottom:513.255000px;}
.y2b{bottom:517.575000px;}
.y75{bottom:523.695000px;}
.y4f{bottom:530.355000px;}
.y64{bottom:530.895000px;}
.y2a{bottom:534.675000px;}
.y74{bottom:540.975000px;}
.y4e{bottom:547.635000px;}
.y63{bottom:548.175000px;}
.y29{bottom:551.955000px;}
.y73{bottom:558.255000px;}
.y4d{bottom:564.915000px;}
.y28{bottom:569.235000px;}
.y72{bottom:575.535000px;}
.y27{bottom:583.275000px;}
.y71{bottom:592.815000px;}
.y4c{bottom:600.555000px;}
.y26{bottom:603.825000px;}
.y70{bottom:610.125000px;}
.y4b{bottom:617.865000px;}
.y25{bottom:621.105000px;}
.y6f{bottom:627.225000px;}
.y4a{bottom:636.045000px;}
.y24{bottom:638.205000px;}
.y6e{bottom:644.505000px;}
.y49{bottom:653.325000px;}
.y23{bottom:655.485000px;}
.y6d{bottom:661.785000px;}
.y48{bottom:671.685000px;}
.y22{bottom:672.765000px;}
.y6c{bottom:679.065000px;}
.y47{bottom:688.965000px;}
.y21{bottom:690.045000px;}
.y6b{bottom:696.345000px;}
.y62{bottom:699.945000px;}
.y20{bottom:707.325000px;}
.y6a{bottom:713.445000px;}
.y5b{bottom:717.225000px;}
.y1f{bottom:724.425000px;}
.y69{bottom:730.725000px;}
.y5a{bottom:734.505000px;}
.y1e{bottom:741.705000px;}
.y68{bottom:748.005000px;}
.y59{bottom:748.545000px;}
.y61{bottom:751.785000px;}
.y1d{bottom:758.985000px;}
.y60{bottom:765.645000px;}
.y1c{bottom:776.265000px;}
.y1b{bottom:793.545000px;}
.y1a{bottom:810.825000px;}
.y19{bottom:827.925000px;}
.y18{bottom:845.205000px;}
.y17{bottom:862.485000px;}
.y16{bottom:879.810000px;}
.y15{bottom:897.090000px;}
.y14{bottom:911.130000px;}
.y45{bottom:914.370000px;}
.y13{bottom:931.470000px;}
.y44{bottom:948.750000px;}
.y12{bottom:953.970000px;}
.y11{bottom:966.030000px;}
.y43{bottom:983.310000px;}
.y10{bottom:988.530000px;}
.yf{bottom:1000.590000px;}
.ye{bottom:1017.690000px;}
.yd{bottom:1034.970000px;}
.yc{bottom:1052.250000px;}
.y8{bottom:1069.890000px;}
.y7{bottom:1088.250000px;}
.y6{bottom:1104.090000px;}
.y5{bottom:1121.910000px;}
.y4{bottom:1138.680000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h8{height:27.147656px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.h9{height:43.506914px;}
.ha{height:45.024258px;}
.h3{height:46.251562px;}
.hb{height:48.224531px;}
.h7{height:48.312422px;}
.h4{height:50.800781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x20{left:112.355987px;}
.x1c{left:114.875987px;}
.x22{left:115.955987px;}
.x1a{left:120.275987px;}
.x1b{left:121.895987px;}
.x2{left:123.155987px;}
.xd{left:132.155987px;}
.x15{left:135.035987px;}
.x7{left:142.595987px;}
.xb{left:150.149987px;}
.x4{left:157.169987px;}
.x1d{left:158.429987px;}
.x16{left:162.029987px;}
.x23{left:206.849987px;}
.xc{left:287.534987px;}
.x9{left:329.474987px;}
.xe{left:332.354987px;}
.x24{left:341.714987px;}
.xa{left:348.734987px;}
.x17{left:349.814987px;}
.x19{left:353.774987px;}
.x21{left:356.294987px;}
.x11{left:379.154987px;}
.x13{left:389.594987px;}
.x6{left:396.434987px;}
.x1e{left:398.594987px;}
.x5{left:412.274987px;}
.x8{left:419.834987px;}
.x12{left:446.474987px;}
.x3{left:518.504987px;}
.xf{left:731.669987px;}
.x14{left:757.049987px;}
.x10{left:785.129987px;}
.x18{left:804.749987px;}
.x1f{left:809.249987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls4{letter-spacing:-0.821333pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:35.450027pt;}
.ls6{letter-spacing:40.891307pt;}
.ls7{letter-spacing:56.891307pt;}
.ws5{word-spacing:-53.120000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.458667pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-3.027840pt;}
._8{margin-left:-2.071680pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._12{width:2.325760pt;}
._2{width:3.773867pt;}
._11{width:4.665387pt;}
._7{width:5.949440pt;}
._6{width:6.958720pt;}
._a{width:7.860480pt;}
._f{width:9.604693pt;}
._10{width:10.616960pt;}
._13{width:11.874987pt;}
._b{width:14.714240pt;}
._c{width:16.128000pt;}
._d{width:18.425813pt;}
._e{width:19.661227pt;}
._15{width:23.737387pt;}
._14{width:25.063680pt;}
._5{width:120.938667pt;}
._4{width:566.138667pt;}
._3{width:665.098667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:28.800000pt;}
.ya{bottom:32.160000pt;}
.y9{bottom:45.920000pt;}
.y46{bottom:102.432000pt;}
.y42{bottom:107.392000pt;}
.y41{bottom:122.592000pt;}
.y40{bottom:137.946667pt;}
.y3f{bottom:153.306667pt;}
.y3e{bottom:168.666667pt;}
.y67{bottom:169.946667pt;}
.y3d{bottom:184.026667pt;}
.y66{bottom:185.306667pt;}
.y65{bottom:197.786667pt;}
.y3c{bottom:199.386667pt;}
.y3b{bottom:214.586667pt;}
.y3a{bottom:229.946667pt;}
.y39{bottom:245.306667pt;}
.y38{bottom:260.666667pt;}
.y81{bottom:267.866667pt;}
.y37{bottom:276.026667pt;}
.y36{bottom:291.226667pt;}
.y80{bottom:294.106667pt;}
.y35{bottom:306.626667pt;}
.y7f{bottom:311.106667pt;}
.y5f{bottom:317.186667pt;}
.y34{bottom:321.986667pt;}
.y7e{bottom:327.586667pt;}
.y5e{bottom:332.546667pt;}
.y58{bottom:333.506667pt;}
.y33{bottom:337.346667pt;}
.y7d{bottom:342.946667pt;}
.y5d{bottom:347.906667pt;}
.y57{bottom:348.866667pt;}
.y32{bottom:352.706667pt;}
.y7c{bottom:358.306667pt;}
.y5c{bottom:360.386667pt;}
.y56{bottom:364.226667pt;}
.y31{bottom:368.066667pt;}
.y7b{bottom:373.506667pt;}
.y55{bottom:379.586667pt;}
.y30{bottom:383.266667pt;}
.y7a{bottom:388.866667pt;}
.y54{bottom:394.786667pt;}
.y2f{bottom:398.626667pt;}
.y79{bottom:404.226667pt;}
.y53{bottom:410.146667pt;}
.y2e{bottom:413.986667pt;}
.y78{bottom:419.586667pt;}
.y52{bottom:425.506667pt;}
.y2d{bottom:429.346667pt;}
.y77{bottom:434.946667pt;}
.y51{bottom:440.866667pt;}
.y2c{bottom:444.706667pt;}
.y76{bottom:450.306667pt;}
.y50{bottom:456.226667pt;}
.y2b{bottom:460.066667pt;}
.y75{bottom:465.506667pt;}
.y4f{bottom:471.426667pt;}
.y64{bottom:471.906667pt;}
.y2a{bottom:475.266667pt;}
.y74{bottom:480.866667pt;}
.y4e{bottom:486.786667pt;}
.y63{bottom:487.266667pt;}
.y29{bottom:490.626667pt;}
.y73{bottom:496.226667pt;}
.y4d{bottom:502.146667pt;}
.y28{bottom:505.986667pt;}
.y72{bottom:511.586667pt;}
.y27{bottom:518.466667pt;}
.y71{bottom:526.946667pt;}
.y4c{bottom:533.826667pt;}
.y26{bottom:536.733333pt;}
.y70{bottom:542.333333pt;}
.y4b{bottom:549.213333pt;}
.y25{bottom:552.093333pt;}
.y6f{bottom:557.533333pt;}
.y4a{bottom:565.373333pt;}
.y24{bottom:567.293333pt;}
.y6e{bottom:572.893333pt;}
.y49{bottom:580.733333pt;}
.y23{bottom:582.653333pt;}
.y6d{bottom:588.253333pt;}
.y48{bottom:597.053333pt;}
.y22{bottom:598.013333pt;}
.y6c{bottom:603.613333pt;}
.y47{bottom:612.413333pt;}
.y21{bottom:613.373333pt;}
.y6b{bottom:618.973333pt;}
.y62{bottom:622.173333pt;}
.y20{bottom:628.733333pt;}
.y6a{bottom:634.173333pt;}
.y5b{bottom:637.533333pt;}
.y1f{bottom:643.933333pt;}
.y69{bottom:649.533333pt;}
.y5a{bottom:652.893333pt;}
.y1e{bottom:659.293333pt;}
.y68{bottom:664.893333pt;}
.y59{bottom:665.373333pt;}
.y61{bottom:668.253333pt;}
.y1d{bottom:674.653333pt;}
.y60{bottom:680.573333pt;}
.y1c{bottom:690.013333pt;}
.y1b{bottom:705.373333pt;}
.y1a{bottom:720.733333pt;}
.y19{bottom:735.933333pt;}
.y18{bottom:751.293333pt;}
.y17{bottom:766.653333pt;}
.y16{bottom:782.053333pt;}
.y15{bottom:797.413333pt;}
.y14{bottom:809.893333pt;}
.y45{bottom:812.773333pt;}
.y13{bottom:827.973333pt;}
.y44{bottom:843.333333pt;}
.y12{bottom:847.973333pt;}
.y11{bottom:858.693333pt;}
.y43{bottom:874.053333pt;}
.y10{bottom:878.693333pt;}
.yf{bottom:889.413333pt;}
.ye{bottom:904.613333pt;}
.yd{bottom:919.973333pt;}
.yc{bottom:935.333333pt;}
.y8{bottom:951.013333pt;}
.y7{bottom:967.333333pt;}
.y6{bottom:981.413333pt;}
.y5{bottom:997.253333pt;}
.y4{bottom:1012.160000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h8{height:24.131250pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.h9{height:38.672812pt;}
.ha{height:40.021563pt;}
.h3{height:41.112500pt;}
.hb{height:42.866250pt;}
.h7{height:42.944375pt;}
.h4{height:45.156250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x20{left:99.871988pt;}
.x1c{left:102.111988pt;}
.x22{left:103.071988pt;}
.x1a{left:106.911988pt;}
.x1b{left:108.351988pt;}
.x2{left:109.471988pt;}
.xd{left:117.471988pt;}
.x15{left:120.031988pt;}
.x7{left:126.751988pt;}
.xb{left:133.466655pt;}
.x4{left:139.706655pt;}
.x1d{left:140.826655pt;}
.x16{left:144.026655pt;}
.x23{left:183.866655pt;}
.xc{left:255.586655pt;}
.x9{left:292.866655pt;}
.xe{left:295.426655pt;}
.x24{left:303.746655pt;}
.xa{left:309.986655pt;}
.x17{left:310.946655pt;}
.x19{left:314.466655pt;}
.x21{left:316.706655pt;}
.x11{left:337.026655pt;}
.x13{left:346.306655pt;}
.x6{left:352.386655pt;}
.x1e{left:354.306655pt;}
.x5{left:366.466655pt;}
.x8{left:373.186655pt;}
.x12{left:396.866655pt;}
.x3{left:460.893322pt;}
.xf{left:650.373322pt;}
.x14{left:672.933322pt;}
.x10{left:697.893322pt;}
.x18{left:715.333322pt;}
.x1f{left:719.333322pt;}
}




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