
    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_0dfc98d959c6d4c0e046e798.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4780a61f5b8dd30959e62e6a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.372070;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_503f727fe64fe9f64639098b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_2b4927bffabfc691445098b6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_d408f6624e82e3bbd3a87670.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ce96f52e4a24ba2cf59a4ede.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2a1854aea0ea13319da53037.woff')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.129600px;}
.ls0{letter-spacing:0.153360px;}
.ls8{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:1.080000px;}
.lsb{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.026720px;}
.ls4{letter-spacing:72.413280px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.020000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws3{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.008000px;}
._0{width:1.195200px;}
._2{width:2.241120px;}
._3{width:3.810720px;}
._b{width:4.864560px;}
._c{width:6.165600px;}
._6{width:7.248240px;}
._4{width:8.306640px;}
._5{width:10.030560px;}
._8{width:11.756880px;}
._7{width:12.848400px;}
._e{width:13.888080px;}
._f{width:16.170720px;}
._d{width:170.964000px;}
._a{width:186.264000px;}
._9{width:201.204000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.420000px;}
.y4{bottom:21.960000px;}
.yaf{bottom:63.900000px;}
.y45{bottom:64.080000px;}
.y8c{bottom:66.240000px;}
.y77{bottom:68.580000px;}
.yae{bottom:81.000000px;}
.y44{bottom:81.180000px;}
.y8b{bottom:83.520000px;}
.y76{bottom:86.220000px;}
.yad{bottom:98.316000px;}
.y43{bottom:98.496000px;}
.y8a{bottom:100.836000px;}
.y75{bottom:103.536000px;}
.yac{bottom:115.596000px;}
.y42{bottom:115.776000px;}
.y89{bottom:118.116000px;}
.y74{bottom:120.456000px;}
.yab{bottom:132.876000px;}
.y41{bottom:133.056000px;}
.y73{bottom:134.316000px;}
.y88{bottom:135.396000px;}
.yaa{bottom:150.150000px;}
.y40{bottom:150.330000px;}
.y87{bottom:153.030000px;}
.ya9{bottom:167.250000px;}
.y3f{bottom:167.430000px;}
.y86{bottom:170.130000px;}
.ya8{bottom:184.530000px;}
.y3e{bottom:184.710000px;}
.y85{bottom:187.050000px;}
.y84{bottom:201.090000px;}
.ya7{bottom:201.810000px;}
.y3d{bottom:201.990000px;}
.ya6{bottom:219.090000px;}
.y3c{bottom:219.270000px;}
.ya5{bottom:236.370000px;}
.y3b{bottom:236.550000px;}
.ya4{bottom:253.650000px;}
.y3a{bottom:253.830000px;}
.ya3{bottom:270.750000px;}
.y39{bottom:270.930000px;}
.ya2{bottom:288.030000px;}
.y38{bottom:288.210000px;}
.ya1{bottom:305.310000px;}
.y37{bottom:305.490000px;}
.ya0{bottom:322.590000px;}
.y36{bottom:322.770000px;}
.y9f{bottom:339.870000px;}
.y35{bottom:340.050000px;}
.y9e{bottom:357.195000px;}
.y34{bottom:357.375000px;}
.y9d{bottom:374.295000px;}
.y33{bottom:374.475000px;}
.y9c{bottom:391.575000px;}
.y32{bottom:391.755000px;}
.y72{bottom:406.695000px;}
.y9b{bottom:408.855000px;}
.y31{bottom:409.035000px;}
.y71{bottom:423.975000px;}
.y9a{bottom:425.775000px;}
.y30{bottom:426.315000px;}
.y70{bottom:441.075000px;}
.y99{bottom:443.415000px;}
.y2f{bottom:443.595000px;}
.y6f{bottom:457.995000px;}
.y98{bottom:460.695000px;}
.y2e{bottom:460.875000px;}
.y83{bottom:472.035000px;}
.y6e{bottom:475.635000px;}
.y97{bottom:477.795000px;}
.y2d{bottom:477.975000px;}
.y82{bottom:489.675000px;}
.y6d{bottom:492.915000px;}
.y96{bottom:494.715000px;}
.y2c{bottom:495.255000px;}
.y81{bottom:506.955000px;}
.y95{bottom:508.575000px;}
.y6c{bottom:510.195000px;}
.y2b{bottom:512.175000px;}
.y80{bottom:524.055000px;}
.y6b{bottom:527.295000px;}
.y2a{bottom:529.815000px;}
.y7f{bottom:541.335000px;}
.y6a{bottom:544.575000px;}
.y29{bottom:547.095000px;}
.y7e{bottom:555.015000px;}
.y69{bottom:561.855000px;}
.y28{bottom:564.195000px;}
.y68{bottom:579.135000px;}
.y27{bottom:581.475000px;}
.y67{bottom:596.415000px;}
.y26{bottom:598.755000px;}
.y66{bottom:613.695000px;}
.y25{bottom:616.065000px;}
.y65{bottom:630.825000px;}
.y24{bottom:632.985000px;}
.y64{bottom:648.105000px;}
.y23{bottom:650.625000px;}
.y63{bottom:665.385000px;}
.y22{bottom:667.725000px;}
.y62{bottom:682.665000px;}
.y21{bottom:685.005000px;}
.y61{bottom:699.945000px;}
.y20{bottom:702.285000px;}
.y60{bottom:717.225000px;}
.y1f{bottom:719.565000px;}
.y5f{bottom:734.325000px;}
.y1e{bottom:736.845000px;}
.y5e{bottom:751.605000px;}
.y1d{bottom:754.125000px;}
.y5d{bottom:768.885000px;}
.y1c{bottom:770.865000px;}
.y94{bottom:780.585000px;}
.y5c{bottom:786.165000px;}
.y1b{bottom:788.505000px;}
.y93{bottom:798.225000px;}
.y5b{bottom:803.445000px;}
.y1a{bottom:805.785000px;}
.y92{bottom:815.505000px;}
.y5a{bottom:820.725000px;}
.y19{bottom:823.065000px;}
.y7d{bottom:826.485000px;}
.y91{bottom:832.785000px;}
.y59{bottom:837.825000px;}
.y18{bottom:839.985000px;}
.y7c{bottom:843.765000px;}
.y90{bottom:849.885000px;}
.y58{bottom:855.105000px;}
.y17{bottom:857.625000px;}
.y7b{bottom:861.045000px;}
.y8f{bottom:867.165000px;}
.y57{bottom:872.385000px;}
.y16{bottom:874.770000px;}
.y7a{bottom:877.830000px;}
.y8e{bottom:884.130000px;}
.y56{bottom:889.710000px;}
.y79{bottom:891.870000px;}
.y15{bottom:892.050000px;}
.y8d{bottom:897.990000px;}
.y55{bottom:906.990000px;}
.y14{bottom:908.970000px;}
.y54{bottom:924.090000px;}
.y13{bottom:928.230000px;}
.y53{bottom:941.370000px;}
.y12{bottom:946.050000px;}
.y52{bottom:958.650000px;}
.y11{bottom:963.330000px;}
.y51{bottom:975.930000px;}
.y10{bottom:980.610000px;}
.y50{bottom:993.210000px;}
.yf{bottom:997.890000px;}
.y4f{bottom:1010.490000px;}
.ye{bottom:1014.990000px;}
.y4e{bottom:1027.590000px;}
.yd{bottom:1032.270000px;}
.y4d{bottom:1044.870000px;}
.yc{bottom:1051.890000px;}
.y4c{bottom:1062.150000px;}
.yb{bottom:1068.990000px;}
.y4b{bottom:1079.430000px;}
.ya{bottom:1086.270000px;}
.y4a{bottom:1096.710000px;}
.y9{bottom:1103.550000px;}
.y49{bottom:1113.990000px;}
.y8{bottom:1121.190000px;}
.y48{bottom:1131.090000px;}
.y7{bottom:1141.920000px;}
.y47{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.y78{bottom:1165.320000px;}
.y46{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h3{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.614102px;}
.h7{height:60.226875px;}
.h8{height:61.423863px;}
.h5{height:65.124096px;}
.h4{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:54.000000px;}
.xd{left:81.000000px;}
.xe{left:108.036000px;}
.x6{left:174.450000px;}
.xb{left:209.730000px;}
.x9{left:212.430000px;}
.xc{left:239.070000px;}
.xa{left:249.870000px;}
.x3{left:256.710000px;}
.x2{left:268.770000px;}
.x7{left:316.155000px;}
.x1{left:360.075000px;}
.x8{left:394.455000px;}
.xf{left:688.470000px;}
.x12{left:690.810000px;}
.x11{left:691.890000px;}
.x10{left:695.130000px;}
.x13{left:697.470000px;}
.x4{left:821.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.115200pt;}
.ls0{letter-spacing:0.136320pt;}
.ls8{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.960000pt;}
.lsb{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.ls4{letter-spacing:64.367360pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.240000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.062400pt;}
._2{width:1.992107pt;}
._3{width:3.387307pt;}
._b{width:4.324053pt;}
._c{width:5.480533pt;}
._6{width:6.442880pt;}
._4{width:7.383680pt;}
._5{width:8.916053pt;}
._8{width:10.450560pt;}
._7{width:11.420800pt;}
._e{width:12.344960pt;}
._f{width:14.373973pt;}
._d{width:151.968000pt;}
._a{width:165.568000pt;}
._9{width:178.848000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.040000pt;}
.y4{bottom:19.520000pt;}
.yaf{bottom:56.800000pt;}
.y45{bottom:56.960000pt;}
.y8c{bottom:58.880000pt;}
.y77{bottom:60.960000pt;}
.yae{bottom:72.000000pt;}
.y44{bottom:72.160000pt;}
.y8b{bottom:74.240000pt;}
.y76{bottom:76.640000pt;}
.yad{bottom:87.392000pt;}
.y43{bottom:87.552000pt;}
.y8a{bottom:89.632000pt;}
.y75{bottom:92.032000pt;}
.yac{bottom:102.752000pt;}
.y42{bottom:102.912000pt;}
.y89{bottom:104.992000pt;}
.y74{bottom:107.072000pt;}
.yab{bottom:118.112000pt;}
.y41{bottom:118.272000pt;}
.y73{bottom:119.392000pt;}
.y88{bottom:120.352000pt;}
.yaa{bottom:133.466667pt;}
.y40{bottom:133.626667pt;}
.y87{bottom:136.026667pt;}
.ya9{bottom:148.666667pt;}
.y3f{bottom:148.826667pt;}
.y86{bottom:151.226667pt;}
.ya8{bottom:164.026667pt;}
.y3e{bottom:164.186667pt;}
.y85{bottom:166.266667pt;}
.y84{bottom:178.746667pt;}
.ya7{bottom:179.386667pt;}
.y3d{bottom:179.546667pt;}
.ya6{bottom:194.746667pt;}
.y3c{bottom:194.906667pt;}
.ya5{bottom:210.106667pt;}
.y3b{bottom:210.266667pt;}
.ya4{bottom:225.466667pt;}
.y3a{bottom:225.626667pt;}
.ya3{bottom:240.666667pt;}
.y39{bottom:240.826667pt;}
.ya2{bottom:256.026667pt;}
.y38{bottom:256.186667pt;}
.ya1{bottom:271.386667pt;}
.y37{bottom:271.546667pt;}
.ya0{bottom:286.746667pt;}
.y36{bottom:286.906667pt;}
.y9f{bottom:302.106667pt;}
.y35{bottom:302.266667pt;}
.y9e{bottom:317.506667pt;}
.y34{bottom:317.666667pt;}
.y9d{bottom:332.706667pt;}
.y33{bottom:332.866667pt;}
.y9c{bottom:348.066667pt;}
.y32{bottom:348.226667pt;}
.y72{bottom:361.506667pt;}
.y9b{bottom:363.426667pt;}
.y31{bottom:363.586667pt;}
.y71{bottom:376.866667pt;}
.y9a{bottom:378.466667pt;}
.y30{bottom:378.946667pt;}
.y70{bottom:392.066667pt;}
.y99{bottom:394.146667pt;}
.y2f{bottom:394.306667pt;}
.y6f{bottom:407.106667pt;}
.y98{bottom:409.506667pt;}
.y2e{bottom:409.666667pt;}
.y83{bottom:419.586667pt;}
.y6e{bottom:422.786667pt;}
.y97{bottom:424.706667pt;}
.y2d{bottom:424.866667pt;}
.y82{bottom:435.266667pt;}
.y6d{bottom:438.146667pt;}
.y96{bottom:439.746667pt;}
.y2c{bottom:440.226667pt;}
.y81{bottom:450.626667pt;}
.y95{bottom:452.066667pt;}
.y6c{bottom:453.506667pt;}
.y2b{bottom:455.266667pt;}
.y80{bottom:465.826667pt;}
.y6b{bottom:468.706667pt;}
.y2a{bottom:470.946667pt;}
.y7f{bottom:481.186667pt;}
.y6a{bottom:484.066667pt;}
.y29{bottom:486.306667pt;}
.y7e{bottom:493.346667pt;}
.y69{bottom:499.426667pt;}
.y28{bottom:501.506667pt;}
.y68{bottom:514.786667pt;}
.y27{bottom:516.866667pt;}
.y67{bottom:530.146667pt;}
.y26{bottom:532.226667pt;}
.y66{bottom:545.506667pt;}
.y25{bottom:547.613333pt;}
.y65{bottom:560.733333pt;}
.y24{bottom:562.653333pt;}
.y64{bottom:576.093333pt;}
.y23{bottom:578.333333pt;}
.y63{bottom:591.453333pt;}
.y22{bottom:593.533333pt;}
.y62{bottom:606.813333pt;}
.y21{bottom:608.893333pt;}
.y61{bottom:622.173333pt;}
.y20{bottom:624.253333pt;}
.y60{bottom:637.533333pt;}
.y1f{bottom:639.613333pt;}
.y5f{bottom:652.733333pt;}
.y1e{bottom:654.973333pt;}
.y5e{bottom:668.093333pt;}
.y1d{bottom:670.333333pt;}
.y5d{bottom:683.453333pt;}
.y1c{bottom:685.213333pt;}
.y94{bottom:693.853333pt;}
.y5c{bottom:698.813333pt;}
.y1b{bottom:700.893333pt;}
.y93{bottom:709.533333pt;}
.y5b{bottom:714.173333pt;}
.y1a{bottom:716.253333pt;}
.y92{bottom:724.893333pt;}
.y5a{bottom:729.533333pt;}
.y19{bottom:731.613333pt;}
.y7d{bottom:734.653333pt;}
.y91{bottom:740.253333pt;}
.y59{bottom:744.733333pt;}
.y18{bottom:746.653333pt;}
.y7c{bottom:750.013333pt;}
.y90{bottom:755.453333pt;}
.y58{bottom:760.093333pt;}
.y17{bottom:762.333333pt;}
.y7b{bottom:765.373333pt;}
.y8f{bottom:770.813333pt;}
.y57{bottom:775.453333pt;}
.y16{bottom:777.573333pt;}
.y7a{bottom:780.293333pt;}
.y8e{bottom:785.893333pt;}
.y56{bottom:790.853333pt;}
.y79{bottom:792.773333pt;}
.y15{bottom:792.933333pt;}
.y8d{bottom:798.213333pt;}
.y55{bottom:806.213333pt;}
.y14{bottom:807.973333pt;}
.y54{bottom:821.413333pt;}
.y13{bottom:825.093333pt;}
.y53{bottom:836.773333pt;}
.y12{bottom:840.933333pt;}
.y52{bottom:852.133333pt;}
.y11{bottom:856.293333pt;}
.y51{bottom:867.493333pt;}
.y10{bottom:871.653333pt;}
.y50{bottom:882.853333pt;}
.yf{bottom:887.013333pt;}
.y4f{bottom:898.213333pt;}
.ye{bottom:902.213333pt;}
.y4e{bottom:913.413333pt;}
.yd{bottom:917.573333pt;}
.y4d{bottom:928.773333pt;}
.yc{bottom:935.013333pt;}
.y4c{bottom:944.133333pt;}
.yb{bottom:950.213333pt;}
.y4b{bottom:959.493333pt;}
.ya{bottom:965.573333pt;}
.y4a{bottom:974.853333pt;}
.y9{bottom:980.933333pt;}
.y49{bottom:990.213333pt;}
.y8{bottom:996.613333pt;}
.y48{bottom:1005.413333pt;}
.y7{bottom:1015.040000pt;}
.y47{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.y78{bottom:1035.840000pt;}
.y46{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h3{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.990313pt;}
.h7{height:53.535000pt;}
.h8{height:54.598989pt;}
.h5{height:57.888085pt;}
.h4{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:48.000000pt;}
.xd{left:72.000000pt;}
.xe{left:96.032000pt;}
.x6{left:155.066667pt;}
.xb{left:186.426667pt;}
.x9{left:188.826667pt;}
.xc{left:212.506667pt;}
.xa{left:222.106667pt;}
.x3{left:228.186667pt;}
.x2{left:238.906667pt;}
.x7{left:281.026667pt;}
.x1{left:320.066667pt;}
.x8{left:350.626667pt;}
.xf{left:611.973333pt;}
.x12{left:614.053333pt;}
.x11{left:615.013333pt;}
.x10{left:617.893333pt;}
.x13{left:619.973333pt;}
.x4{left:729.920000pt;}
}




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