
    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_524a652ad6f142ec9160745e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3a61126b58393b0627bc0eaa.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_09f7a26ca3201bb9d8ca7dd4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_9d701327c24f9e76a059cf82.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_9d1595f05c7d07f85f208885.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.163086;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_9885d21f1656b8adfacaf6de.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7c1d5ec65fe4afef56406f77.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-18.180000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.900000px;}
.ls5{letter-spacing:19.524000px;}
.ls1{letter-spacing:113.880000px;}
.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;}
}
.ws2{word-spacing:-32.400000px;}
.ws7{word-spacing:-30.456000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.ws0{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
._9{margin-left:-3.668640px;}
._5{margin-left:-2.484000px;}
._0{margin-left:-1.263600px;}
._1{width:1.159920px;}
._7{width:2.183040px;}
._4{width:3.240000px;}
._6{width:4.539600px;}
._3{width:5.652000px;}
._2{width:6.786000px;}
._8{width:8.086800px;}
._a{width:40.500000px;}
._b{width:54.900000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:59.904000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:2.880000px;}
.y68{bottom:20.880000px;}
.y67{bottom:38.880000px;}
.y66{bottom:56.880000px;}
.y65{bottom:74.880000px;}
.y64{bottom:92.880000px;}
.y63{bottom:110.880000px;}
.y2c{bottom:122.436000px;}
.y62{bottom:128.925000px;}
.y2b{bottom:140.436000px;}
.y61{bottom:146.925000px;}
.y2a{bottom:158.430000px;}
.y60{bottom:164.925000px;}
.y6a{bottom:167.610000px;}
.y29{bottom:176.430000px;}
.y5f{bottom:182.925000px;}
.y28{bottom:194.430000px;}
.y5e{bottom:200.925000px;}
.y69{bottom:203.430000px;}
.y27{bottom:212.430000px;}
.y5d{bottom:218.925000px;}
.y5c{bottom:222.150000px;}
.y26{bottom:230.430000px;}
.y25{bottom:248.430000px;}
.y24{bottom:266.430000px;}
.y6c{bottom:279.690000px;}
.y23{bottom:284.430000px;}
.y22{bottom:302.430000px;}
.y21{bottom:320.430000px;}
.y20{bottom:338.475000px;}
.y1f{bottom:356.475000px;}
.y55{bottom:367.815000px;}
.y1e{bottom:374.475000px;}
.y54{bottom:385.815000px;}
.y93{bottom:397.335000px;}
.y53{bottom:403.815000px;}
.y1d{bottom:411.195000px;}
.y92{bottom:413.895000px;}
.y52{bottom:421.815000px;}
.y91{bottom:430.455000px;}
.y51{bottom:439.815000px;}
.y90{bottom:446.835000px;}
.y5a{bottom:457.275000px;}
.y50{bottom:457.815000px;}
.y1c{bottom:459.615000px;}
.y8f{bottom:463.395000px;}
.y1b{bottom:476.175000px;}
.y8e{bottom:479.955000px;}
.y59{bottom:489.315000px;}
.y4f{bottom:494.535000px;}
.y8d{bottom:496.335000px;}
.y58{bottom:507.315000px;}
.y1a{bottom:509.115000px;}
.y8c{bottom:512.895000px;}
.y57{bottom:525.315000px;}
.y19{bottom:525.675000px;}
.y8b{bottom:529.455000px;}
.y18{bottom:542.055000px;}
.y4e{bottom:543.315000px;}
.y8a{bottom:545.835000px;}
.y17{bottom:558.615000px;}
.y4d{bottom:561.315000px;}
.y89{bottom:562.395000px;}
.y16{bottom:575.175000px;}
.y88{bottom:578.955000px;}
.y4c{bottom:579.315000px;}
.y15{bottom:591.555000px;}
.y87{bottom:595.335000px;}
.y4b{bottom:597.315000px;}
.y14{bottom:608.145000px;}
.y86{bottom:611.925000px;}
.y4a{bottom:615.345000px;}
.y13{bottom:624.705000px;}
.y85{bottom:628.485000px;}
.y49{bottom:633.345000px;}
.y12{bottom:641.085000px;}
.y84{bottom:644.865000px;}
.y48{bottom:651.345000px;}
.y11{bottom:657.645000px;}
.y83{bottom:661.425000px;}
.y47{bottom:669.345000px;}
.y10{bottom:674.205000px;}
.y46{bottom:687.345000px;}
.yf{bottom:690.585000px;}
.y82{bottom:697.065000px;}
.y45{bottom:705.345000px;}
.ye{bottom:707.145000px;}
.y44{bottom:723.345000px;}
.yd{bottom:723.705000px;}
.yc{bottom:740.085000px;}
.y43{bottom:741.345000px;}
.y81{bottom:745.845000px;}
.yb{bottom:756.645000px;}
.y42{bottom:759.345000px;}
.y80{bottom:763.845000px;}
.ya{bottom:773.205000px;}
.y41{bottom:777.345000px;}
.y7f{bottom:781.845000px;}
.y40{bottom:795.345000px;}
.y7e{bottom:799.845000px;}
.y3f{bottom:813.345000px;}
.y7d{bottom:817.845000px;}
.y6b{bottom:823.680000px;}
.y3e{bottom:831.345000px;}
.y9{bottom:835.845000px;}
.y7b{bottom:843.585000px;}
.y3d{bottom:849.345000px;}
.y7c{bottom:854.565000px;}
.y8{bottom:855.645000px;}
.y7a{bottom:861.225000px;}
.y3c{bottom:867.345000px;}
.y7{bottom:872.250000px;}
.y79{bottom:878.550000px;}
.y3b{bottom:885.390000px;}
.y78{bottom:895.830000px;}
.y6{bottom:899.610000px;}
.y3a{bottom:903.390000px;}
.y77{bottom:912.930000px;}
.y39{bottom:921.390000px;}
.y76{bottom:930.210000px;}
.y38{bottom:939.390000px;}
.y75{bottom:947.490000px;}
.y5{bottom:954.150000px;}
.y37{bottom:957.390000px;}
.y74{bottom:964.770000px;}
.y36{bottom:975.390000px;}
.y4{bottom:981.150000px;}
.y73{bottom:982.050000px;}
.y35{bottom:993.390000px;}
.y72{bottom:999.150000px;}
.y3{bottom:1008.150000px;}
.y34{bottom:1011.390000px;}
.y71{bottom:1016.430000px;}
.y33{bottom:1029.390000px;}
.y70{bottom:1033.710000px;}
.y32{bottom:1047.390000px;}
.y6f{bottom:1050.990000px;}
.y31{bottom:1065.390000px;}
.y6e{bottom:1068.270000px;}
.y2{bottom:1071.150000px;}
.y30{bottom:1083.390000px;}
.y6d{bottom:1085.550000px;}
.y2f{bottom:1101.390000px;}
.y1{bottom:1134.150000px;}
.y2e{bottom:1138.140000px;}
.y56{bottom:1141.560000px;}
.y2d{bottom:1162.800000px;}
.h9{height:18.000000px;}
.hb{height:33.480000px;}
.h4{height:35.332031px;}
.h5{height:52.998047px;}
.h6{height:54.421875px;}
.h10{height:55.503491px;}
.h8{height:58.651172px;}
.he{height:58.792500px;}
.h3{height:59.038594px;}
.hd{height:59.439023px;}
.hf{height:72.562500px;}
.h7{height:74.953125px;}
.h2{height:84.898125px;}
.ha{height:234.030000px;}
.hc{height:294.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:84.816000px;}
.w5{width:116.820000px;}
.w6{width:127.656000px;}
.w3{width:202.350000px;}
.w7{width:531.645000px;}
.w8{width:608.760000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:5.220000px;}
.x11{left:10.800000px;}
.x12{left:31.680000px;}
.x13{left:42.300000px;}
.x9{left:127.655987px;}
.x15{left:134.495987px;}
.x14{left:138.815987px;}
.xb{left:144.755987px;}
.x2{left:154.109987px;}
.x3{left:170.849987px;}
.xc{left:180.750000px;}
.x7{left:250.049987px;}
.x6{left:292.034987px;}
.x5{left:301.574987px;}
.x4{left:313.814987px;}
.x8{left:337.214987px;}
.xe{left:383.115000px;}
.x1{left:446.474987px;}
.xf{left:467.925000px;}
.x10{left:584.745000px;}
.xa{left:765.509987px;}
@media print{
.v2{vertical-align:-16.160000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls5{letter-spacing:17.354667pt;}
.ls1{letter-spacing:101.226667pt;}
.ws2{word-spacing:-28.800000pt;}
.ws7{word-spacing:-27.072000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws0{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
._9{margin-left:-3.261013pt;}
._5{margin-left:-2.208000pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.031040pt;}
._7{width:1.940480pt;}
._4{width:2.880000pt;}
._6{width:4.035200pt;}
._3{width:5.024000pt;}
._2{width:6.032000pt;}
._8{width:7.188267pt;}
._a{width:36.000000pt;}
._b{width:48.800000pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:53.248000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:2.560000pt;}
.y68{bottom:18.560000pt;}
.y67{bottom:34.560000pt;}
.y66{bottom:50.560000pt;}
.y65{bottom:66.560000pt;}
.y64{bottom:82.560000pt;}
.y63{bottom:98.560000pt;}
.y2c{bottom:108.832000pt;}
.y62{bottom:114.600000pt;}
.y2b{bottom:124.832000pt;}
.y61{bottom:130.600000pt;}
.y2a{bottom:140.826667pt;}
.y60{bottom:146.600000pt;}
.y6a{bottom:148.986667pt;}
.y29{bottom:156.826667pt;}
.y5f{bottom:162.600000pt;}
.y28{bottom:172.826667pt;}
.y5e{bottom:178.600000pt;}
.y69{bottom:180.826667pt;}
.y27{bottom:188.826667pt;}
.y5d{bottom:194.600000pt;}
.y5c{bottom:197.466667pt;}
.y26{bottom:204.826667pt;}
.y25{bottom:220.826667pt;}
.y24{bottom:236.826667pt;}
.y6c{bottom:248.613333pt;}
.y23{bottom:252.826667pt;}
.y22{bottom:268.826667pt;}
.y21{bottom:284.826667pt;}
.y20{bottom:300.866667pt;}
.y1f{bottom:316.866667pt;}
.y55{bottom:326.946667pt;}
.y1e{bottom:332.866667pt;}
.y54{bottom:342.946667pt;}
.y93{bottom:353.186667pt;}
.y53{bottom:358.946667pt;}
.y1d{bottom:365.506667pt;}
.y92{bottom:367.906667pt;}
.y52{bottom:374.946667pt;}
.y91{bottom:382.626667pt;}
.y51{bottom:390.946667pt;}
.y90{bottom:397.186667pt;}
.y5a{bottom:406.466667pt;}
.y50{bottom:406.946667pt;}
.y1c{bottom:408.546667pt;}
.y8f{bottom:411.906667pt;}
.y1b{bottom:423.266667pt;}
.y8e{bottom:426.626667pt;}
.y59{bottom:434.946667pt;}
.y4f{bottom:439.586667pt;}
.y8d{bottom:441.186667pt;}
.y58{bottom:450.946667pt;}
.y1a{bottom:452.546667pt;}
.y8c{bottom:455.906667pt;}
.y57{bottom:466.946667pt;}
.y19{bottom:467.266667pt;}
.y8b{bottom:470.626667pt;}
.y18{bottom:481.826667pt;}
.y4e{bottom:482.946667pt;}
.y8a{bottom:485.186667pt;}
.y17{bottom:496.546667pt;}
.y4d{bottom:498.946667pt;}
.y89{bottom:499.906667pt;}
.y16{bottom:511.266667pt;}
.y88{bottom:514.626667pt;}
.y4c{bottom:514.946667pt;}
.y15{bottom:525.826667pt;}
.y87{bottom:529.186667pt;}
.y4b{bottom:530.946667pt;}
.y14{bottom:540.573333pt;}
.y86{bottom:543.933333pt;}
.y4a{bottom:546.973333pt;}
.y13{bottom:555.293333pt;}
.y85{bottom:558.653333pt;}
.y49{bottom:562.973333pt;}
.y12{bottom:569.853333pt;}
.y84{bottom:573.213333pt;}
.y48{bottom:578.973333pt;}
.y11{bottom:584.573333pt;}
.y83{bottom:587.933333pt;}
.y47{bottom:594.973333pt;}
.y10{bottom:599.293333pt;}
.y46{bottom:610.973333pt;}
.yf{bottom:613.853333pt;}
.y82{bottom:619.613333pt;}
.y45{bottom:626.973333pt;}
.ye{bottom:628.573333pt;}
.y44{bottom:642.973333pt;}
.yd{bottom:643.293333pt;}
.yc{bottom:657.853333pt;}
.y43{bottom:658.973333pt;}
.y81{bottom:662.973333pt;}
.yb{bottom:672.573333pt;}
.y42{bottom:674.973333pt;}
.y80{bottom:678.973333pt;}
.ya{bottom:687.293333pt;}
.y41{bottom:690.973333pt;}
.y7f{bottom:694.973333pt;}
.y40{bottom:706.973333pt;}
.y7e{bottom:710.973333pt;}
.y3f{bottom:722.973333pt;}
.y7d{bottom:726.973333pt;}
.y6b{bottom:732.160000pt;}
.y3e{bottom:738.973333pt;}
.y9{bottom:742.973333pt;}
.y7b{bottom:749.853333pt;}
.y3d{bottom:754.973333pt;}
.y7c{bottom:759.613333pt;}
.y8{bottom:760.573333pt;}
.y7a{bottom:765.533333pt;}
.y3c{bottom:770.973333pt;}
.y7{bottom:775.333333pt;}
.y79{bottom:780.933333pt;}
.y3b{bottom:787.013333pt;}
.y78{bottom:796.293333pt;}
.y6{bottom:799.653333pt;}
.y3a{bottom:803.013333pt;}
.y77{bottom:811.493333pt;}
.y39{bottom:819.013333pt;}
.y76{bottom:826.853333pt;}
.y38{bottom:835.013333pt;}
.y75{bottom:842.213333pt;}
.y5{bottom:848.133333pt;}
.y37{bottom:851.013333pt;}
.y74{bottom:857.573333pt;}
.y36{bottom:867.013333pt;}
.y4{bottom:872.133333pt;}
.y73{bottom:872.933333pt;}
.y35{bottom:883.013333pt;}
.y72{bottom:888.133333pt;}
.y3{bottom:896.133333pt;}
.y34{bottom:899.013333pt;}
.y71{bottom:903.493333pt;}
.y33{bottom:915.013333pt;}
.y70{bottom:918.853333pt;}
.y32{bottom:931.013333pt;}
.y6f{bottom:934.213333pt;}
.y31{bottom:947.013333pt;}
.y6e{bottom:949.573333pt;}
.y2{bottom:952.133333pt;}
.y30{bottom:963.013333pt;}
.y6d{bottom:964.933333pt;}
.y2f{bottom:979.013333pt;}
.y1{bottom:1008.133333pt;}
.y2e{bottom:1011.680000pt;}
.y56{bottom:1014.720000pt;}
.y2d{bottom:1033.600000pt;}
.h9{height:16.000000pt;}
.hb{height:29.760000pt;}
.h4{height:31.406250pt;}
.h5{height:47.109375pt;}
.h6{height:48.375000pt;}
.h10{height:49.336436pt;}
.h8{height:52.134375pt;}
.he{height:52.260000pt;}
.h3{height:52.478750pt;}
.hd{height:52.834688pt;}
.hf{height:64.500000pt;}
.h7{height:66.625000pt;}
.h2{height:75.465000pt;}
.ha{height:208.026667pt;}
.hc{height:261.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:75.392000pt;}
.w5{width:103.840000pt;}
.w6{width:113.472000pt;}
.w3{width:179.866667pt;}
.w7{width:472.573333pt;}
.w8{width:541.120000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:4.640000pt;}
.x11{left:9.600000pt;}
.x12{left:28.160000pt;}
.x13{left:37.600000pt;}
.x9{left:113.471988pt;}
.x15{left:119.551988pt;}
.x14{left:123.391988pt;}
.xb{left:128.671988pt;}
.x2{left:136.986655pt;}
.x3{left:151.866655pt;}
.xc{left:160.666667pt;}
.x7{left:222.266655pt;}
.x6{left:259.586655pt;}
.x5{left:268.066655pt;}
.x4{left:278.946655pt;}
.x8{left:299.746655pt;}
.xe{left:340.546667pt;}
.x1{left:396.866655pt;}
.xf{left:415.933333pt;}
.x10{left:519.773333pt;}
.xa{left:680.453322pt;}
}




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