
    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_795aee185e91d4f6d2a90d6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079102;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_cb5ea6a69d09b67007e44374.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.079102;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e12be3aeb74d05057283b279.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.726074;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:198.181440px;}
.ls0{letter-spacing:845.741280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-66.240000px;}
.ws2{word-spacing:-17.818560px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-77.608320px;}
._0{margin-left:-6.912000px;}
._2{margin-left:-4.752000px;}
._1{margin-left:-2.808000px;}
._8{margin-left:-1.582560px;}
._3{width:1.080000px;}
._6{width:2.687760px;}
._4{width:3.847680px;}
._5{width:5.290560px;}
._a{width:6.292800px;}
._b{width:7.345440px;}
._7{width:8.840640px;}
._15{width:10.087200px;}
._13{width:11.918880px;}
._14{width:12.961440px;}
._10{width:14.101920px;}
._21{width:15.897600px;}
._e{width:19.188000px;}
._d{width:20.262240px;}
._11{width:21.960000px;}
._22{width:23.309280px;}
._23{width:24.317280px;}
._20{width:25.369920px;}
._c{width:26.820000px;}
._f{width:31.132800px;}
._12{width:33.250560px;}
._19{width:34.842240px;}
._25{width:36.116640px;}
._1e{width:37.543680px;}
._1a{width:39.788640px;}
._1b{width:40.803840px;}
._1f{width:41.916000px;}
._24{width:46.103040px;}
._16{width:50.474880px;}
._17{width:51.593760px;}
._26{width:52.646400px;}
._28{width:58.923360px;}
._27{width:60.164640px;}
._1c{width:61.536960px;}
._1d{width:63.105120px;}
._18{width:80.938080px;}
.fc4{color:transparent;}
.fc3{color:rgb(15,26,23);}
.fc2{color:rgb(75,129,114);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:120.240000px;}
.fs7{font-size:144.000000px;}
.fs1{font-size:167.760000px;}
.fs2{font-size:216.000000px;}
.fs5{font-size:432.000000px;}
.y19{bottom:-79.920000px;}
.y18{bottom:-47.520000px;}
.y17{bottom:-28.980000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.539985px;}
.y16{bottom:3.420000px;}
.y1a{bottom:7.740000px;}
.y15{bottom:20.880000px;}
.y1b{bottom:43.200000px;}
.y2{bottom:46.260015px;}
.y14{bottom:46.440000px;}
.y4{bottom:109.620000px;}
.y1c{bottom:129.420000px;}
.y47{bottom:148.860000px;}
.y93{bottom:155.340000px;}
.y46{bottom:166.860000px;}
.y92{bottom:172.800000px;}
.y6f{bottom:174.960000px;}
.y45{bottom:184.890000px;}
.y44{bottom:190.110000px;}
.y6e{bottom:196.410000px;}
.y91{bottom:200.010000px;}
.y43{bottom:202.890000px;}
.y6d{bottom:217.650000px;}
.y42{bottom:220.890000px;}
.y41{bottom:226.110000px;}
.y6c{bottom:239.070000px;}
.y40{bottom:239.250000px;}
.y90{bottom:248.430000px;}
.y3f{bottom:262.830000px;}
.y6b{bottom:272.550000px;}
.y8f{bottom:281.910000px;}
.y3e{bottom:284.250000px;}
.y6a{bottom:293.790000px;}
.y8e{bottom:303.150000px;}
.y3d{bottom:305.670000px;}
.y69{bottom:315.210000px;}
.y8d{bottom:324.570000px;}
.y13{bottom:331.230000px;}
.y68{bottom:336.630000px;}
.y3c{bottom:338.970000px;}
.y8c{bottom:345.990000px;}
.y67{bottom:357.870000px;}
.y3b{bottom:360.390000px;}
.y8b{bottom:367.230000px;}
.y66{bottom:379.290000px;}
.y3a{bottom:381.810000px;}
.y8a{bottom:388.650000px;}
.y65{bottom:400.710000px;}
.y39{bottom:403.050000px;}
.y89{bottom:410.070000px;}
.y64{bottom:422.175000px;}
.y38{bottom:424.515000px;}
.y88{bottom:431.535000px;}
.y12{bottom:440.355000px;}
.y37{bottom:445.935000px;}
.y87{bottom:452.775000px;}
.y63{bottom:455.475000px;}
.y36{bottom:467.355000px;}
.y11{bottom:473.655000px;}
.y86{bottom:474.195000px;}
.y62{bottom:476.895000px;}
.y35{bottom:488.595000px;}
.y61{bottom:498.135000px;}
.y10{bottom:507.135000px;}
.y85{bottom:507.675000px;}
.y60{bottom:519.555000px;}
.y34{bottom:522.075000px;}
.y84{bottom:528.915000px;}
.yf{bottom:540.435000px;}
.y5f{bottom:540.975000px;}
.y33{bottom:543.315000px;}
.y83{bottom:550.335000px;}
.y5e{bottom:562.395000px;}
.y32{bottom:564.735000px;}
.y82{bottom:571.755000px;}
.ye{bottom:577.875000px;}
.y5d{bottom:583.635000px;}
.y31{bottom:586.155000px;}
.y81{bottom:592.995000px;}
.y5c{bottom:605.055000px;}
.y30{bottom:607.575000px;}
.y80{bottom:614.415000px;}
.yd{bottom:616.575000px;}
.y5b{bottom:626.475000px;}
.y2f{bottom:628.815000px;}
.y7f{bottom:635.835000px;}
.y5a{bottom:647.895000px;}
.y2e{bottom:650.235000px;}
.y7e{bottom:657.255000px;}
.yc{bottom:664.125000px;}
.y2d{bottom:671.685000px;}
.y7d{bottom:678.525000px;}
.y59{bottom:681.225000px;}
.y2c{bottom:693.105000px;}
.yb{bottom:699.045000px;}
.y7c{bottom:699.945000px;}
.y58{bottom:702.645000px;}
.y2b{bottom:714.345000px;}
.y57{bottom:723.885000px;}
.y7b{bottom:733.245000px;}
.y56{bottom:745.305000px;}
.y2a{bottom:747.825000px;}
.y7a{bottom:754.665000px;}
.ya{bottom:763.845000px;}
.y55{bottom:766.725000px;}
.y29{bottom:769.065000px;}
.y79{bottom:776.085000px;}
.y54{bottom:788.145000px;}
.y28{bottom:790.485000px;}
.y78{bottom:797.505000px;}
.y53{bottom:809.385000px;}
.y27{bottom:811.905000px;}
.y9{bottom:828.645000px;}
.y52{bottom:830.805000px;}
.y25{bottom:833.325000px;}
.y26{bottom:839.265000px;}
.y77{bottom:852.225000px;}
.y24{bottom:854.565000px;}
.y51{bottom:864.105000px;}
.y76{bottom:873.465000px;}
.y22{bottom:875.985000px;}
.y23{bottom:881.925000px;}
.y50{bottom:885.525000px;}
.y75{bottom:894.885000px;}
.y21{bottom:897.405000px;}
.y8{bottom:899.385000px;}
.y4f{bottom:906.990000px;}
.y74{bottom:916.350000px;}
.y4e{bottom:928.410000px;}
.y7{bottom:930.390000px;}
.y20{bottom:930.750000px;}
.y73{bottom:937.770000px;}
.y4d{bottom:949.650000px;}
.y72{bottom:959.010000px;}
.y1f{bottom:964.230000px;}
.y4c{bottom:971.070000px;}
.y71{bottom:980.430000px;}
.y6{bottom:980.790000px;}
.y4b{bottom:992.490000px;}
.y1e{bottom:993.930000px;}
.y70{bottom:1001.850000px;}
.y4a{bottom:1013.910000px;}
.y5{bottom:1031.190000px;}
.y49{bottom:1035.150000px;}
.y1d{bottom:1037.130000px;}
.y48{bottom:1056.570000px;}
.y3{bottom:1076.370000px;}
.he{height:31.236328px;}
.hd{height:33.735234px;}
.ha{height:46.854492px;}
.hf{height:51.852305px;}
.h3{height:57.474844px;}
.h6{height:62.472656px;}
.h9{height:76.320000px;}
.hb{height:85.860000px;}
.h2{height:91.980000px;}
.h7{height:104.329336px;}
.hc{height:124.945312px;}
.h4{height:145.561289px;}
.h5{height:187.417969px;}
.h8{height:374.835938px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:661.425000px;}
.w2{width:892.979973px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:10.259973px;}
.x2{left:108.035987px;}
.x14{left:111.095987px;}
.x15{left:112.715987px;}
.xd{left:117.755973px;}
.x8{left:128.916000px;}
.x4{left:148.535987px;}
.x11{left:161.129973px;}
.x12{left:166.169987px;}
.xe{left:187.949987px;}
.x16{left:198.029987px;}
.x7{left:202.529987px;}
.xb{left:205.959000px;}
.x9{left:220.539000px;}
.xf{left:242.129987px;}
.xa{left:257.439000px;}
.x13{left:324.074987px;}
.xc{left:330.699000px;}
.x6{left:346.394987px;}
.x10{left:380.414973px;}
.x5{left:384.014987px;}
.x3{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:176.161280pt;}
.ls0{letter-spacing:751.770027pt;}
.ws1{word-spacing:-58.880000pt;}
.ws2{word-spacing:-15.838720pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-68.985173pt;}
._0{margin-left:-6.144000pt;}
._2{margin-left:-4.224000pt;}
._1{margin-left:-2.496000pt;}
._8{margin-left:-1.406720pt;}
._3{width:0.960000pt;}
._6{width:2.389120pt;}
._4{width:3.420160pt;}
._5{width:4.702720pt;}
._a{width:5.593600pt;}
._b{width:6.529280pt;}
._7{width:7.858347pt;}
._15{width:8.966400pt;}
._13{width:10.594560pt;}
._14{width:11.521280pt;}
._10{width:12.535040pt;}
._21{width:14.131200pt;}
._e{width:17.056000pt;}
._d{width:18.010880pt;}
._11{width:19.520000pt;}
._22{width:20.719360pt;}
._23{width:21.615360pt;}
._20{width:22.551040pt;}
._c{width:23.840000pt;}
._f{width:27.673600pt;}
._12{width:29.556053pt;}
._19{width:30.970880pt;}
._25{width:32.103680pt;}
._1e{width:33.372160pt;}
._1a{width:35.367680pt;}
._1b{width:36.270080pt;}
._1f{width:37.258667pt;}
._24{width:40.980480pt;}
._16{width:44.866560pt;}
._17{width:45.861120pt;}
._26{width:46.796800pt;}
._28{width:52.376320pt;}
._27{width:53.479680pt;}
._1c{width:54.699520pt;}
._1d{width:56.093440pt;}
._18{width:71.944960pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:106.880000pt;}
.fs7{font-size:128.000000pt;}
.fs1{font-size:149.120000pt;}
.fs2{font-size:192.000000pt;}
.fs5{font-size:384.000000pt;}
.y19{bottom:-71.040000pt;}
.y18{bottom:-42.240000pt;}
.y17{bottom:-25.760000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.479987pt;}
.y16{bottom:3.040000pt;}
.y1a{bottom:6.880000pt;}
.y15{bottom:18.560000pt;}
.y1b{bottom:38.400000pt;}
.y2{bottom:41.120013pt;}
.y14{bottom:41.280000pt;}
.y4{bottom:97.440000pt;}
.y1c{bottom:115.040000pt;}
.y47{bottom:132.320000pt;}
.y93{bottom:138.080000pt;}
.y46{bottom:148.320000pt;}
.y92{bottom:153.600000pt;}
.y6f{bottom:155.520000pt;}
.y45{bottom:164.346667pt;}
.y44{bottom:168.986667pt;}
.y6e{bottom:174.586667pt;}
.y91{bottom:177.786667pt;}
.y43{bottom:180.346667pt;}
.y6d{bottom:193.466667pt;}
.y42{bottom:196.346667pt;}
.y41{bottom:200.986667pt;}
.y6c{bottom:212.506667pt;}
.y40{bottom:212.666667pt;}
.y90{bottom:220.826667pt;}
.y3f{bottom:233.626667pt;}
.y6b{bottom:242.266667pt;}
.y8f{bottom:250.586667pt;}
.y3e{bottom:252.666667pt;}
.y6a{bottom:261.146667pt;}
.y8e{bottom:269.466667pt;}
.y3d{bottom:271.706667pt;}
.y69{bottom:280.186667pt;}
.y8d{bottom:288.506667pt;}
.y13{bottom:294.426667pt;}
.y68{bottom:299.226667pt;}
.y3c{bottom:301.306667pt;}
.y8c{bottom:307.546667pt;}
.y67{bottom:318.106667pt;}
.y3b{bottom:320.346667pt;}
.y8b{bottom:326.426667pt;}
.y66{bottom:337.146667pt;}
.y3a{bottom:339.386667pt;}
.y8a{bottom:345.466667pt;}
.y65{bottom:356.186667pt;}
.y39{bottom:358.266667pt;}
.y89{bottom:364.506667pt;}
.y64{bottom:375.266667pt;}
.y38{bottom:377.346667pt;}
.y88{bottom:383.586667pt;}
.y12{bottom:391.426667pt;}
.y37{bottom:396.386667pt;}
.y87{bottom:402.466667pt;}
.y63{bottom:404.866667pt;}
.y36{bottom:415.426667pt;}
.y11{bottom:421.026667pt;}
.y86{bottom:421.506667pt;}
.y62{bottom:423.906667pt;}
.y35{bottom:434.306667pt;}
.y61{bottom:442.786667pt;}
.y10{bottom:450.786667pt;}
.y85{bottom:451.266667pt;}
.y60{bottom:461.826667pt;}
.y34{bottom:464.066667pt;}
.y84{bottom:470.146667pt;}
.yf{bottom:480.386667pt;}
.y5f{bottom:480.866667pt;}
.y33{bottom:482.946667pt;}
.y83{bottom:489.186667pt;}
.y5e{bottom:499.906667pt;}
.y32{bottom:501.986667pt;}
.y82{bottom:508.226667pt;}
.ye{bottom:513.666667pt;}
.y5d{bottom:518.786667pt;}
.y31{bottom:521.026667pt;}
.y81{bottom:527.106667pt;}
.y5c{bottom:537.826667pt;}
.y30{bottom:540.066667pt;}
.y80{bottom:546.146667pt;}
.yd{bottom:548.066667pt;}
.y5b{bottom:556.866667pt;}
.y2f{bottom:558.946667pt;}
.y7f{bottom:565.186667pt;}
.y5a{bottom:575.906667pt;}
.y2e{bottom:577.986667pt;}
.y7e{bottom:584.226667pt;}
.yc{bottom:590.333333pt;}
.y2d{bottom:597.053333pt;}
.y7d{bottom:603.133333pt;}
.y59{bottom:605.533333pt;}
.y2c{bottom:616.093333pt;}
.yb{bottom:621.373333pt;}
.y7c{bottom:622.173333pt;}
.y58{bottom:624.573333pt;}
.y2b{bottom:634.973333pt;}
.y57{bottom:643.453333pt;}
.y7b{bottom:651.773333pt;}
.y56{bottom:662.493333pt;}
.y2a{bottom:664.733333pt;}
.y7a{bottom:670.813333pt;}
.ya{bottom:678.973333pt;}
.y55{bottom:681.533333pt;}
.y29{bottom:683.613333pt;}
.y79{bottom:689.853333pt;}
.y54{bottom:700.573333pt;}
.y28{bottom:702.653333pt;}
.y78{bottom:708.893333pt;}
.y53{bottom:719.453333pt;}
.y27{bottom:721.693333pt;}
.y9{bottom:736.573333pt;}
.y52{bottom:738.493333pt;}
.y25{bottom:740.733333pt;}
.y26{bottom:746.013333pt;}
.y77{bottom:757.533333pt;}
.y24{bottom:759.613333pt;}
.y51{bottom:768.093333pt;}
.y76{bottom:776.413333pt;}
.y22{bottom:778.653333pt;}
.y23{bottom:783.933333pt;}
.y50{bottom:787.133333pt;}
.y75{bottom:795.453333pt;}
.y21{bottom:797.693333pt;}
.y8{bottom:799.453333pt;}
.y4f{bottom:806.213333pt;}
.y74{bottom:814.533333pt;}
.y4e{bottom:825.253333pt;}
.y7{bottom:827.013333pt;}
.y20{bottom:827.333333pt;}
.y73{bottom:833.573333pt;}
.y4d{bottom:844.133333pt;}
.y72{bottom:852.453333pt;}
.y1f{bottom:857.093333pt;}
.y4c{bottom:863.173333pt;}
.y71{bottom:871.493333pt;}
.y6{bottom:871.813333pt;}
.y4b{bottom:882.213333pt;}
.y1e{bottom:883.493333pt;}
.y70{bottom:890.533333pt;}
.y4a{bottom:901.253333pt;}
.y5{bottom:916.613333pt;}
.y49{bottom:920.133333pt;}
.y1d{bottom:921.893333pt;}
.y48{bottom:939.173333pt;}
.y3{bottom:956.773333pt;}
.he{height:27.765625pt;}
.hd{height:29.986875pt;}
.ha{height:41.648438pt;}
.hf{height:46.090938pt;}
.h3{height:51.088750pt;}
.h6{height:55.531250pt;}
.h9{height:67.840000pt;}
.hb{height:76.320000pt;}
.h2{height:81.760000pt;}
.h7{height:92.737187pt;}
.hc{height:111.062500pt;}
.h4{height:129.387812pt;}
.h5{height:166.593750pt;}
.h8{height:333.187500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:587.933333pt;}
.w2{width:793.759976pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.119976pt;}
.x2{left:96.031988pt;}
.x14{left:98.751988pt;}
.x15{left:100.191988pt;}
.xd{left:104.671976pt;}
.x8{left:114.592000pt;}
.x4{left:132.031988pt;}
.x11{left:143.226643pt;}
.x12{left:147.706655pt;}
.xe{left:167.066655pt;}
.x16{left:176.026655pt;}
.x7{left:180.026655pt;}
.xb{left:183.074667pt;}
.x9{left:196.034667pt;}
.xf{left:215.226655pt;}
.xa{left:228.834667pt;}
.x13{left:288.066655pt;}
.xc{left:293.954667pt;}
.x6{left:307.906655pt;}
.x10{left:338.146643pt;}
.x5{left:341.346655pt;}
.x3{left:396.866655pt;}
}




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