
    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_c5e896ac5715a970ba538727.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.072754;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_091af3f15f1ba7df1b9e158a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e980fb1bcd749efc7b793580.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0650b8b04cfdf986496db11f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_22a7f2e3aeb4da4fb565aeb6.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.lsf{letter-spacing:-1.332000px;}
.lsb{letter-spacing:-1.182000px;}
.lsd{letter-spacing:-1.134000px;}
.lsa{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.978000px;}
.lsc{letter-spacing:-0.924000px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:1.134720px;}
.ls1{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.510560px;}
.ls7{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls6{letter-spacing:1.620000px;}
.ls5{letter-spacing:1.702080px;}
.ls4{letter-spacing:1.745280px;}
.ls3{letter-spacing:2.050560px;}
.ls11{letter-spacing:15.066720px;}
.ls10{letter-spacing:43.866720px;}
.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:-16.560000px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.962000px;}
.ws2{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.806000px;}
.ws7{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-2598.894000px;}
._5{margin-left:-1366.159680px;}
._b{margin-left:-1007.870400px;}
._7{margin-left:-931.253760px;}
._a{margin-left:-872.076000px;}
._d{margin-left:-575.213760px;}
._8{margin-left:-535.046400px;}
._c{margin-left:-182.779200px;}
._9{margin-left:-33.120000px;}
._19{margin-left:-9.278640px;}
._6{margin-left:-8.213760px;}
._f{margin-left:-6.569280px;}
._e{margin-left:-5.079840px;}
._10{margin-left:-3.174480px;}
._1{margin-left:-2.160000px;}
._4{margin-left:-1.059840px;}
._0{width:1.296000px;}
._2{width:2.376000px;}
._13{width:4.305600px;}
._12{width:5.391360px;}
._11{width:7.300800px;}
._17{width:9.254160px;}
._15{width:10.384560px;}
._14{width:11.817360px;}
._18{width:13.332720px;}
._16{width:50.088960px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:60.336000px;}
.y7b{bottom:86.616000px;}
.y6d{bottom:95.616000px;}
.y35{bottom:97.776000px;}
.y7a{bottom:106.416000px;}
.y6c{bottom:115.416000px;}
.y34{bottom:117.576000px;}
.y79{bottom:126.216000px;}
.y6b{bottom:135.216000px;}
.y33{bottom:137.376000px;}
.y78{bottom:146.016000px;}
.y6a{bottom:155.010000px;}
.y32{bottom:157.170000px;}
.y77{bottom:165.990000px;}
.y69{bottom:174.990000px;}
.y31{bottom:177.150000px;}
.y76{bottom:185.790000px;}
.y68{bottom:194.790000px;}
.y30{bottom:196.950000px;}
.y75{bottom:205.590000px;}
.y67{bottom:214.590000px;}
.y2f{bottom:216.750000px;}
.y74{bottom:225.390000px;}
.y66{bottom:234.390000px;}
.y2e{bottom:236.550000px;}
.y73{bottom:245.190000px;}
.y65{bottom:254.190000px;}
.y2d{bottom:256.350000px;}
.y72{bottom:265.170000px;}
.y64{bottom:274.170000px;}
.y2c{bottom:276.330000px;}
.y71{bottom:285.015000px;}
.y63{bottom:294.015000px;}
.y2b{bottom:296.175000px;}
.y70{bottom:304.815000px;}
.y62{bottom:313.815000px;}
.y2a{bottom:315.975000px;}
.y6f{bottom:324.615000px;}
.y61{bottom:333.615000px;}
.y29{bottom:335.775000px;}
.y6e{bottom:344.415000px;}
.y60{bottom:353.415000px;}
.y28{bottom:355.575000px;}
.y5f{bottom:373.395000px;}
.y27{bottom:375.555000px;}
.y5e{bottom:393.195000px;}
.y26{bottom:395.355000px;}
.y5d{bottom:412.995000px;}
.y25{bottom:415.155000px;}
.y5c{bottom:432.795000px;}
.y24{bottom:434.955000px;}
.y5b{bottom:452.595000px;}
.y23{bottom:454.755000px;}
.y5a{bottom:472.575000px;}
.y22{bottom:474.735000px;}
.y59{bottom:492.375000px;}
.y21{bottom:494.535000px;}
.y58{bottom:512.175000px;}
.y20{bottom:514.335000px;}
.y57{bottom:531.975000px;}
.y1f{bottom:534.135000px;}
.y56{bottom:551.775000px;}
.y1e{bottom:553.935000px;}
.y55{bottom:571.785000px;}
.y1d{bottom:576.105000px;}
.y54{bottom:591.585000px;}
.y1c{bottom:604.905000px;}
.y53{bottom:611.385000px;}
.y1b{bottom:624.705000px;}
.y52{bottom:631.185000px;}
.y1a{bottom:644.685000px;}
.y51{bottom:650.985000px;}
.y19{bottom:664.485000px;}
.y50{bottom:670.965000px;}
.y18{bottom:684.285000px;}
.y4f{bottom:690.765000px;}
.y17{bottom:704.085000px;}
.y4e{bottom:710.565000px;}
.y16{bottom:723.885000px;}
.y4d{bottom:730.365000px;}
.y15{bottom:743.865000px;}
.y4c{bottom:750.165000px;}
.y14{bottom:763.665000px;}
.y4b{bottom:770.145000px;}
.y13{bottom:783.465000px;}
.y4a{bottom:789.945000px;}
.y12{bottom:803.265000px;}
.y49{bottom:809.745000px;}
.y11{bottom:823.065000px;}
.y48{bottom:829.545000px;}
.y10{bottom:843.045000px;}
.y47{bottom:849.390000px;}
.yf{bottom:862.890000px;}
.y46{bottom:869.370000px;}
.ye{bottom:882.690000px;}
.y45{bottom:889.170000px;}
.yd{bottom:902.490000px;}
.y44{bottom:908.970000px;}
.yc{bottom:924.630000px;}
.y43{bottom:928.770000px;}
.yb{bottom:944.430000px;}
.y42{bottom:948.570000px;}
.ya{bottom:964.230000px;}
.y41{bottom:968.550000px;}
.y9{bottom:984.750000px;}
.y40{bottom:988.350000px;}
.y8{bottom:1005.990000px;}
.y3f{bottom:1008.150000px;}
.y3e{bottom:1027.950000px;}
.y7{bottom:1029.390000px;}
.y3d{bottom:1047.750000px;}
.y5{bottom:1066.470000px;}
.y3c{bottom:1067.730000px;}
.y3b{bottom:1087.530000px;}
.y4{bottom:1095.990000px;}
.y3a{bottom:1107.330000px;}
.y3{bottom:1125.330000px;}
.y39{bottom:1127.130000px;}
.y38{bottom:1146.960000px;}
.y2{bottom:1154.880000px;}
.y37{bottom:1166.940000px;}
.y1{bottom:1184.400000px;}
.y36{bottom:1193.400000px;}
.h7{height:41.726953px;}
.h6{height:51.210352px;}
.h5{height:58.651172px;}
.h9{height:61.423863px;}
.h8{height:62.211094px;}
.h3{height:65.010937px;}
.h2{height:68.956875px;}
.h4{height:99.687656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.179987px;}
.x3{left:80.999987px;}
.x4{left:108.035987px;}
.x2{left:314.354987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.184000pt;}
.lsb{letter-spacing:-1.050667pt;}
.lsd{letter-spacing:-1.008000pt;}
.lsa{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.869333pt;}
.lsc{letter-spacing:-0.821333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls1{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.342720pt;}
.ls7{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls6{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.512960pt;}
.ls4{letter-spacing:1.551360pt;}
.ls3{letter-spacing:1.822720pt;}
.ls11{letter-spacing:13.392640pt;}
.ls10{letter-spacing:38.992640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.410667pt;}
.ws2{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.272000pt;}
.ws7{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-2310.128000pt;}
._5{margin-left:-1214.364160pt;}
._b{margin-left:-895.884800pt;}
._7{margin-left:-827.781120pt;}
._a{margin-left:-775.178667pt;}
._d{margin-left:-511.301120pt;}
._8{margin-left:-475.596800pt;}
._c{margin-left:-162.470400pt;}
._9{margin-left:-29.440000pt;}
._19{margin-left:-8.247680pt;}
._6{margin-left:-7.301120pt;}
._f{margin-left:-5.839360pt;}
._e{margin-left:-4.515413pt;}
._10{margin-left:-2.821760pt;}
._1{margin-left:-1.920000pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._2{width:2.112000pt;}
._13{width:3.827200pt;}
._12{width:4.792320pt;}
._11{width:6.489600pt;}
._17{width:8.225920pt;}
._15{width:9.230720pt;}
._14{width:10.504320pt;}
._18{width:11.851307pt;}
._16{width:44.523520pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.632000pt;}
.y7b{bottom:76.992000pt;}
.y6d{bottom:84.992000pt;}
.y35{bottom:86.912000pt;}
.y7a{bottom:94.592000pt;}
.y6c{bottom:102.592000pt;}
.y34{bottom:104.512000pt;}
.y79{bottom:112.192000pt;}
.y6b{bottom:120.192000pt;}
.y33{bottom:122.112000pt;}
.y78{bottom:129.792000pt;}
.y6a{bottom:137.786667pt;}
.y32{bottom:139.706667pt;}
.y77{bottom:147.546667pt;}
.y69{bottom:155.546667pt;}
.y31{bottom:157.466667pt;}
.y76{bottom:165.146667pt;}
.y68{bottom:173.146667pt;}
.y30{bottom:175.066667pt;}
.y75{bottom:182.746667pt;}
.y67{bottom:190.746667pt;}
.y2f{bottom:192.666667pt;}
.y74{bottom:200.346667pt;}
.y66{bottom:208.346667pt;}
.y2e{bottom:210.266667pt;}
.y73{bottom:217.946667pt;}
.y65{bottom:225.946667pt;}
.y2d{bottom:227.866667pt;}
.y72{bottom:235.706667pt;}
.y64{bottom:243.706667pt;}
.y2c{bottom:245.626667pt;}
.y71{bottom:253.346667pt;}
.y63{bottom:261.346667pt;}
.y2b{bottom:263.266667pt;}
.y70{bottom:270.946667pt;}
.y62{bottom:278.946667pt;}
.y2a{bottom:280.866667pt;}
.y6f{bottom:288.546667pt;}
.y61{bottom:296.546667pt;}
.y29{bottom:298.466667pt;}
.y6e{bottom:306.146667pt;}
.y60{bottom:314.146667pt;}
.y28{bottom:316.066667pt;}
.y5f{bottom:331.906667pt;}
.y27{bottom:333.826667pt;}
.y5e{bottom:349.506667pt;}
.y26{bottom:351.426667pt;}
.y5d{bottom:367.106667pt;}
.y25{bottom:369.026667pt;}
.y5c{bottom:384.706667pt;}
.y24{bottom:386.626667pt;}
.y5b{bottom:402.306667pt;}
.y23{bottom:404.226667pt;}
.y5a{bottom:420.066667pt;}
.y22{bottom:421.986667pt;}
.y59{bottom:437.666667pt;}
.y21{bottom:439.586667pt;}
.y58{bottom:455.266667pt;}
.y20{bottom:457.186667pt;}
.y57{bottom:472.866667pt;}
.y1f{bottom:474.786667pt;}
.y56{bottom:490.466667pt;}
.y1e{bottom:492.386667pt;}
.y55{bottom:508.253333pt;}
.y1d{bottom:512.093333pt;}
.y54{bottom:525.853333pt;}
.y1c{bottom:537.693333pt;}
.y53{bottom:543.453333pt;}
.y1b{bottom:555.293333pt;}
.y52{bottom:561.053333pt;}
.y1a{bottom:573.053333pt;}
.y51{bottom:578.653333pt;}
.y19{bottom:590.653333pt;}
.y50{bottom:596.413333pt;}
.y18{bottom:608.253333pt;}
.y4f{bottom:614.013333pt;}
.y17{bottom:625.853333pt;}
.y4e{bottom:631.613333pt;}
.y16{bottom:643.453333pt;}
.y4d{bottom:649.213333pt;}
.y15{bottom:661.213333pt;}
.y4c{bottom:666.813333pt;}
.y14{bottom:678.813333pt;}
.y4b{bottom:684.573333pt;}
.y13{bottom:696.413333pt;}
.y4a{bottom:702.173333pt;}
.y12{bottom:714.013333pt;}
.y49{bottom:719.773333pt;}
.y11{bottom:731.613333pt;}
.y48{bottom:737.373333pt;}
.y10{bottom:749.373333pt;}
.y47{bottom:755.013333pt;}
.yf{bottom:767.013333pt;}
.y46{bottom:772.773333pt;}
.ye{bottom:784.613333pt;}
.y45{bottom:790.373333pt;}
.yd{bottom:802.213333pt;}
.y44{bottom:807.973333pt;}
.yc{bottom:821.893333pt;}
.y43{bottom:825.573333pt;}
.yb{bottom:839.493333pt;}
.y42{bottom:843.173333pt;}
.ya{bottom:857.093333pt;}
.y41{bottom:860.933333pt;}
.y9{bottom:875.333333pt;}
.y40{bottom:878.533333pt;}
.y8{bottom:894.213333pt;}
.y3f{bottom:896.133333pt;}
.y3e{bottom:913.733333pt;}
.y7{bottom:915.013333pt;}
.y3d{bottom:931.333333pt;}
.y5{bottom:947.973333pt;}
.y3c{bottom:949.093333pt;}
.y3b{bottom:966.693333pt;}
.y4{bottom:974.213333pt;}
.y3a{bottom:984.293333pt;}
.y3{bottom:1000.293333pt;}
.y39{bottom:1001.893333pt;}
.y38{bottom:1019.520000pt;}
.y2{bottom:1026.560000pt;}
.y37{bottom:1037.280000pt;}
.y1{bottom:1052.800000pt;}
.y36{bottom:1060.800000pt;}
.h7{height:37.090625pt;}
.h6{height:45.520312pt;}
.h5{height:52.134375pt;}
.h9{height:54.598989pt;}
.h8{height:55.298750pt;}
.h3{height:57.787500pt;}
.h2{height:61.295000pt;}
.h4{height:88.611250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.159988pt;}
.x3{left:71.999988pt;}
.x4{left:96.031988pt;}
.x2{left:279.426655pt;}
}




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