
    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_68e9fda6d1e90ead20a52989.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_63fc56434d44521531753eba.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_dc5beb0c3736aefa0708e3a8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_f6279ef34b96d3c4739614e0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_454252c76d73dc015137f934.woff')format("woff");}.ff5{font-family:ff5;line-height:0.968262;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_bd92ee31be5d466fe2fc7075.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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:27.360000px;}
.ls3{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.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:-27.000000px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.700000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._d{margin-left:-4.896000px;}
._5{margin-left:-3.175200px;}
._6{margin-left:-2.091600px;}
._0{margin-left:-1.008000px;}
._1{width:1.164000px;}
._2{width:2.293680px;}
._7{width:3.855840px;}
._4{width:5.816640px;}
._3{width:7.728960px;}
._e{width:9.432000px;}
._10{width:10.440000px;}
._8{width:11.520000px;}
._a{width:12.672000px;}
._9{width:13.884000px;}
._f{width:15.060000px;}
._b{width:28.656000px;}
._c{width:29.880000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:3.960000px;}
.y4e{bottom:5.040000px;}
.y4a{bottom:5.220000px;}
.y48{bottom:6.480000px;}
.y5d{bottom:21.960000px;}
.y50{bottom:21.990000px;}
.y53{bottom:24.660000px;}
.y6d{bottom:24.705000px;}
.y6a{bottom:42.660000px;}
.y8e{bottom:110.376000px;}
.y35{bottom:115.056000px;}
.y61{bottom:120.996000px;}
.y8d{bottom:131.076000px;}
.y34{bottom:135.756000px;}
.yae{bottom:146.196000px;}
.ya0{bottom:148.896000px;}
.y8c{bottom:151.770000px;}
.y33{bottom:156.450000px;}
.y60{bottom:163.290000px;}
.y8b{bottom:172.470000px;}
.y32{bottom:177.150000px;}
.y5f{bottom:185.790000px;}
.yad{bottom:187.590000px;}
.y9f{bottom:190.290000px;}
.y8a{bottom:193.170000px;}
.y31{bottom:197.850000px;}
.y5e{bottom:210.090000px;}
.y89{bottom:213.870000px;}
.y30{bottom:218.550000px;}
.yac{bottom:228.990000px;}
.y9e{bottom:231.690000px;}
.y5c{bottom:231.870000px;}
.y88{bottom:234.570000px;}
.y2f{bottom:239.250000px;}
.y87{bottom:255.270000px;}
.y2e{bottom:259.950000px;}
.yab{bottom:270.390000px;}
.y5b{bottom:271.290000px;}
.y9d{bottom:273.090000px;}
.y86{bottom:275.970000px;}
.y2d{bottom:280.650000px;}
.y5a{bottom:295.635000px;}
.y85{bottom:296.715000px;}
.y2c{bottom:301.395000px;}
.yaa{bottom:311.835000px;}
.y9c{bottom:314.535000px;}
.y84{bottom:317.415000px;}
.y2b{bottom:322.095000px;}
.y59{bottom:334.335000px;}
.y83{bottom:338.115000px;}
.y2a{bottom:342.795000px;}
.ya9{bottom:353.235000px;}
.y9b{bottom:355.935000px;}
.y58{bottom:356.835000px;}
.y82{bottom:358.815000px;}
.y29{bottom:363.495000px;}
.y81{bottom:379.515000px;}
.y28{bottom:384.195000px;}
.ya8{bottom:394.635000px;}
.y9a{bottom:397.335000px;}
.y57{bottom:398.955000px;}
.y80{bottom:400.215000px;}
.y27{bottom:404.895000px;}
.y7f{bottom:420.915000px;}
.y56{bottom:421.635000px;}
.y26{bottom:425.595000px;}
.ya7{bottom:435.855000px;}
.y99{bottom:438.555000px;}
.y7e{bottom:441.615000px;}
.y55{bottom:444.315000px;}
.y25{bottom:446.295000px;}
.y7d{bottom:462.315000px;}
.y24{bottom:466.995000px;}
.ya6{bottom:477.255000px;}
.y98{bottom:479.955000px;}
.y7c{bottom:483.015000px;}
.y52{bottom:486.435000px;}
.y23{bottom:487.695000px;}
.y7b{bottom:503.715000px;}
.y22{bottom:508.395000px;}
.ya5{bottom:518.655000px;}
.y97{bottom:521.355000px;}
.y7a{bottom:524.415000px;}
.y21{bottom:529.095000px;}
.y51{bottom:530.175000px;}
.y79{bottom:545.115000px;}
.y20{bottom:549.795000px;}
.y4f{bottom:551.955000px;}
.ya4{bottom:560.055000px;}
.y96{bottom:562.755000px;}
.y78{bottom:565.845000px;}
.y1f{bottom:570.525000px;}
.y77{bottom:586.545000px;}
.y1e{bottom:591.225000px;}
.y4d{bottom:591.585000px;}
.ya3{bottom:601.485000px;}
.y95{bottom:604.185000px;}
.y76{bottom:607.245000px;}
.y1d{bottom:611.925000px;}
.y4c{bottom:614.085000px;}
.y75{bottom:627.945000px;}
.y1c{bottom:632.625000px;}
.y4b{bottom:636.765000px;}
.ya2{bottom:642.885000px;}
.y94{bottom:645.585000px;}
.y74{bottom:648.645000px;}
.y1b{bottom:652.605000px;}
.y49{bottom:659.445000px;}
.y73{bottom:669.345000px;}
.y1a{bottom:669.885000px;}
.y47{bottom:683.565000px;}
.ya1{bottom:684.285000px;}
.y72{bottom:686.085000px;}
.y93{bottom:686.985000px;}
.y19{bottom:687.165000px;}
.y18{bottom:704.265000px;}
.y71{bottom:707.505000px;}
.y17{bottom:721.545000px;}
.y46{bottom:725.685000px;}
.y92{bottom:728.385000px;}
.y70{bottom:731.625000px;}
.y16{bottom:738.825000px;}
.y45{bottom:746.385000px;}
.y15{bottom:756.105000px;}
.y44{bottom:767.085000px;}
.y91{bottom:769.785000px;}
.y6f{bottom:770.325000px;}
.y14{bottom:773.385000px;}
.y43{bottom:787.785000px;}
.y13{bottom:790.665000px;}
.y12{bottom:808.485000px;}
.y90{bottom:811.185000px;}
.y6e{bottom:812.445000px;}
.y11{bottom:829.185000px;}
.y8f{bottom:831.885000px;}
.y6c{bottom:835.125000px;}
.y10{bottom:849.210000px;}
.y42{bottom:849.930000px;}
.yf{bottom:866.490000px;}
.y41{bottom:870.630000px;}
.y6b{bottom:878.910000px;}
.ye{bottom:888.990000px;}
.y40{bottom:891.330000px;}
.y69{bottom:900.690000px;}
.yd{bottom:901.050000px;}
.y3f{bottom:912.030000px;}
.yc{bottom:918.330000px;}
.y3e{bottom:932.730000px;}
.yb{bottom:935.430000px;}
.y3d{bottom:953.430000px;}
.ya{bottom:957.930000px;}
.y68{bottom:960.990000px;}
.y9{bottom:969.990000px;}
.y3c{bottom:974.130000px;}
.y8{bottom:987.270000px;}
.y3b{bottom:994.830000px;}
.y67{bottom:1003.110000px;}
.y7{bottom:1004.550000px;}
.y3a{bottom:1015.530000px;}
.y66{bottom:1025.790000px;}
.y6{bottom:1027.050000px;}
.y39{bottom:1036.230000px;}
.y5{bottom:1038.930000px;}
.y65{bottom:1049.910000px;}
.y4{bottom:1056.930000px;}
.y3{bottom:1077.630000px;}
.y64{bottom:1088.610000px;}
.y38{bottom:1098.330000px;}
.y2{bottom:1100.310000px;}
.y63{bottom:1111.110000px;}
.y37{bottom:1119.030000px;}
.y1{bottom:1131.300000px;}
.y62{bottom:1133.820000px;}
.y36{bottom:1139.760000px;}
.h13{height:20.700000px;}
.hc{height:21.780000px;}
.ha{height:21.960000px;}
.h10{height:21.996000px;}
.h8{height:23.220000px;}
.h6{height:34.114922px;}
.hf{height:38.700000px;}
.hd{height:38.736000px;}
.he{height:41.400000px;}
.h12{height:41.436000px;}
.h7{height:50.800781px;}
.h9{height:51.996094px;}
.h5{height:52.435898px;}
.hb{height:59.343750px;}
.h11{height:59.400000px;}
.h3{height:63.175781px;}
.h4{height:69.687773px;}
.h2{height:94.763672px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:705.525000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.xc{left:106.415987px;}
.xf{left:160.409987px;}
.x1{left:170.489987px;}
.xb{left:193.529987px;}
.x2{left:202.169987px;}
.xd{left:227.189987px;}
.x4{left:228.449987px;}
.xa{left:265.709987px;}
.x7{left:281.189987px;}
.x6{left:352.334987px;}
.x9{left:353.954987px;}
.x8{left:364.574987px;}
.x5{left:387.254987px;}
.x3{left:446.654987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ws0{word-spacing:-24.000000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._d{margin-left:-4.352000pt;}
._5{margin-left:-2.822400pt;}
._6{margin-left:-1.859200pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.034667pt;}
._2{width:2.038827pt;}
._7{width:3.427413pt;}
._4{width:5.170347pt;}
._3{width:6.870187pt;}
._e{width:8.384000pt;}
._10{width:9.280000pt;}
._8{width:10.240000pt;}
._a{width:11.264000pt;}
._9{width:12.341333pt;}
._f{width:13.386667pt;}
._b{width:25.472000pt;}
._c{width:26.560000pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:3.520000pt;}
.y4e{bottom:4.480000pt;}
.y4a{bottom:4.640000pt;}
.y48{bottom:5.760000pt;}
.y5d{bottom:19.520000pt;}
.y50{bottom:19.546667pt;}
.y53{bottom:21.920000pt;}
.y6d{bottom:21.960000pt;}
.y6a{bottom:37.920000pt;}
.y8e{bottom:98.112000pt;}
.y35{bottom:102.272000pt;}
.y61{bottom:107.552000pt;}
.y8d{bottom:116.512000pt;}
.y34{bottom:120.672000pt;}
.yae{bottom:129.952000pt;}
.ya0{bottom:132.352000pt;}
.y8c{bottom:134.906667pt;}
.y33{bottom:139.066667pt;}
.y60{bottom:145.146667pt;}
.y8b{bottom:153.306667pt;}
.y32{bottom:157.466667pt;}
.y5f{bottom:165.146667pt;}
.yad{bottom:166.746667pt;}
.y9f{bottom:169.146667pt;}
.y8a{bottom:171.706667pt;}
.y31{bottom:175.866667pt;}
.y5e{bottom:186.746667pt;}
.y89{bottom:190.106667pt;}
.y30{bottom:194.266667pt;}
.yac{bottom:203.546667pt;}
.y9e{bottom:205.946667pt;}
.y5c{bottom:206.106667pt;}
.y88{bottom:208.506667pt;}
.y2f{bottom:212.666667pt;}
.y87{bottom:226.906667pt;}
.y2e{bottom:231.066667pt;}
.yab{bottom:240.346667pt;}
.y5b{bottom:241.146667pt;}
.y9d{bottom:242.746667pt;}
.y86{bottom:245.306667pt;}
.y2d{bottom:249.466667pt;}
.y5a{bottom:262.786667pt;}
.y85{bottom:263.746667pt;}
.y2c{bottom:267.906667pt;}
.yaa{bottom:277.186667pt;}
.y9c{bottom:279.586667pt;}
.y84{bottom:282.146667pt;}
.y2b{bottom:286.306667pt;}
.y59{bottom:297.186667pt;}
.y83{bottom:300.546667pt;}
.y2a{bottom:304.706667pt;}
.ya9{bottom:313.986667pt;}
.y9b{bottom:316.386667pt;}
.y58{bottom:317.186667pt;}
.y82{bottom:318.946667pt;}
.y29{bottom:323.106667pt;}
.y81{bottom:337.346667pt;}
.y28{bottom:341.506667pt;}
.ya8{bottom:350.786667pt;}
.y9a{bottom:353.186667pt;}
.y57{bottom:354.626667pt;}
.y80{bottom:355.746667pt;}
.y27{bottom:359.906667pt;}
.y7f{bottom:374.146667pt;}
.y56{bottom:374.786667pt;}
.y26{bottom:378.306667pt;}
.ya7{bottom:387.426667pt;}
.y99{bottom:389.826667pt;}
.y7e{bottom:392.546667pt;}
.y55{bottom:394.946667pt;}
.y25{bottom:396.706667pt;}
.y7d{bottom:410.946667pt;}
.y24{bottom:415.106667pt;}
.ya6{bottom:424.226667pt;}
.y98{bottom:426.626667pt;}
.y7c{bottom:429.346667pt;}
.y52{bottom:432.386667pt;}
.y23{bottom:433.506667pt;}
.y7b{bottom:447.746667pt;}
.y22{bottom:451.906667pt;}
.ya5{bottom:461.026667pt;}
.y97{bottom:463.426667pt;}
.y7a{bottom:466.146667pt;}
.y21{bottom:470.306667pt;}
.y51{bottom:471.266667pt;}
.y79{bottom:484.546667pt;}
.y20{bottom:488.706667pt;}
.y4f{bottom:490.626667pt;}
.ya4{bottom:497.826667pt;}
.y96{bottom:500.226667pt;}
.y78{bottom:502.973333pt;}
.y1f{bottom:507.133333pt;}
.y77{bottom:521.373333pt;}
.y1e{bottom:525.533333pt;}
.y4d{bottom:525.853333pt;}
.ya3{bottom:534.653333pt;}
.y95{bottom:537.053333pt;}
.y76{bottom:539.773333pt;}
.y1d{bottom:543.933333pt;}
.y4c{bottom:545.853333pt;}
.y75{bottom:558.173333pt;}
.y1c{bottom:562.333333pt;}
.y4b{bottom:566.013333pt;}
.ya2{bottom:571.453333pt;}
.y94{bottom:573.853333pt;}
.y74{bottom:576.573333pt;}
.y1b{bottom:580.093333pt;}
.y49{bottom:586.173333pt;}
.y73{bottom:594.973333pt;}
.y1a{bottom:595.453333pt;}
.y47{bottom:607.613333pt;}
.ya1{bottom:608.253333pt;}
.y72{bottom:609.853333pt;}
.y93{bottom:610.653333pt;}
.y19{bottom:610.813333pt;}
.y18{bottom:626.013333pt;}
.y71{bottom:628.893333pt;}
.y17{bottom:641.373333pt;}
.y46{bottom:645.053333pt;}
.y92{bottom:647.453333pt;}
.y70{bottom:650.333333pt;}
.y16{bottom:656.733333pt;}
.y45{bottom:663.453333pt;}
.y15{bottom:672.093333pt;}
.y44{bottom:681.853333pt;}
.y91{bottom:684.253333pt;}
.y6f{bottom:684.733333pt;}
.y14{bottom:687.453333pt;}
.y43{bottom:700.253333pt;}
.y13{bottom:702.813333pt;}
.y12{bottom:718.653333pt;}
.y90{bottom:721.053333pt;}
.y6e{bottom:722.173333pt;}
.y11{bottom:737.053333pt;}
.y8f{bottom:739.453333pt;}
.y6c{bottom:742.333333pt;}
.y10{bottom:754.853333pt;}
.y42{bottom:755.493333pt;}
.yf{bottom:770.213333pt;}
.y41{bottom:773.893333pt;}
.y6b{bottom:781.253333pt;}
.ye{bottom:790.213333pt;}
.y40{bottom:792.293333pt;}
.y69{bottom:800.613333pt;}
.yd{bottom:800.933333pt;}
.y3f{bottom:810.693333pt;}
.yc{bottom:816.293333pt;}
.y3e{bottom:829.093333pt;}
.yb{bottom:831.493333pt;}
.y3d{bottom:847.493333pt;}
.ya{bottom:851.493333pt;}
.y68{bottom:854.213333pt;}
.y9{bottom:862.213333pt;}
.y3c{bottom:865.893333pt;}
.y8{bottom:877.573333pt;}
.y3b{bottom:884.293333pt;}
.y67{bottom:891.653333pt;}
.y7{bottom:892.933333pt;}
.y3a{bottom:902.693333pt;}
.y66{bottom:911.813333pt;}
.y6{bottom:912.933333pt;}
.y39{bottom:921.093333pt;}
.y5{bottom:923.493333pt;}
.y65{bottom:933.253333pt;}
.y4{bottom:939.493333pt;}
.y3{bottom:957.893333pt;}
.y64{bottom:967.653333pt;}
.y38{bottom:976.293333pt;}
.y2{bottom:978.053333pt;}
.y63{bottom:987.653333pt;}
.y37{bottom:994.693333pt;}
.y1{bottom:1005.600000pt;}
.y62{bottom:1007.840000pt;}
.y36{bottom:1013.120000pt;}
.h13{height:18.400000pt;}
.hc{height:19.360000pt;}
.ha{height:19.520000pt;}
.h10{height:19.552000pt;}
.h8{height:20.640000pt;}
.h6{height:30.324375pt;}
.hf{height:34.400000pt;}
.hd{height:34.432000pt;}
.he{height:36.800000pt;}
.h12{height:36.832000pt;}
.h7{height:45.156250pt;}
.h9{height:46.218750pt;}
.h5{height:46.609688pt;}
.hb{height:52.750000pt;}
.h11{height:52.800000pt;}
.h3{height:56.156250pt;}
.h4{height:61.944687pt;}
.h2{height:84.234375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:627.133333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.xc{left:94.591988pt;}
.xf{left:142.586655pt;}
.x1{left:151.546655pt;}
.xb{left:172.026655pt;}
.x2{left:179.706655pt;}
.xd{left:201.946655pt;}
.x4{left:203.066655pt;}
.xa{left:236.186655pt;}
.x7{left:249.946655pt;}
.x6{left:313.186655pt;}
.x9{left:314.626655pt;}
.x8{left:324.066655pt;}
.x5{left:344.226655pt;}
.x3{left:397.026655pt;}
}




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