
    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_da78ab05f7bca5ec59ae0a6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.886719;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_85399df50c63c955a7535576.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.886719;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_131d201255c3ba0a93f78fc2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.934082;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_29e9c89df7bf799aea948a6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112793;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_cd579097e0b413ddf1cb0949.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.125000;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_84c935585ab8d816d4683df9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_d15ae9e49aacb6c91373482a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.717285;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:ff8;src:url('chunks/assets/font_50cd0476436a10f9c3d2ecde.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966000;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;}
.ls5{letter-spacing:-0.032400px;}
.ls6{letter-spacing:-0.028800px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.021600px;}
.ls4{letter-spacing:0.028800px;}
.ls3{letter-spacing:0.043200px;}
.ls1{letter-spacing:0.684000px;}
.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:-45.036000px;}
.ws2{word-spacing:-24.948000px;}
.ws0{word-spacing:0.000000px;}
._13{margin-left:-2744.746200px;}
._1{margin-left:-38.438400px;}
._3{margin-left:-25.174800px;}
._0{margin-left:-23.155200px;}
._17{margin-left:-21.841200px;}
._e{margin-left:-20.232000px;}
._15{margin-left:-18.439200px;}
._10{margin-left:-16.329600px;}
._2{margin-left:-15.195600px;}
._18{margin-left:-14.043600px;}
._8{margin-left:-13.008600px;}
._a{margin-left:-11.592000px;}
._4{margin-left:-10.080000px;}
._d{margin-left:-8.804280px;}
._16{margin-left:-7.128000px;}
._14{margin-left:-5.832000px;}
._5{margin-left:-4.644000px;}
._c{margin-left:-2.995200px;}
._6{margin-left:-1.512000px;}
._7{width:1.512000px;}
._9{width:3.528000px;}
._11{width:4.670400px;}
._12{width:6.544800px;}
._b{width:11.354400px;}
._f{width:12.684600px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:72.000000px;}
.fs7{font-size:72.000076px;}
.fsa{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.fs6{font-size:144.000000px;}
.fs5{font-size:162.000000px;}
.fs9{font-size:168.000000px;}
.fs8{font-size:180.000000px;}
.fs4{font-size:216.000000px;}
.fs1{font-size:252.000000px;}
.fs0{font-size:384.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.500000px;}
.y5{bottom:6.000000px;}
.y15{bottom:14.904166px;}
.y1{bottom:30.000000px;}
.y14{bottom:38.904191px;}
.y26{bottom:50.250000px;}
.y6{bottom:51.000000px;}
.y2c{bottom:105.000000px;}
.y50{bottom:143.250000px;}
.y4d{bottom:177.000000px;}
.y13{bottom:193.595850px;}
.y20{bottom:201.750000px;}
.y41{bottom:205.500000px;}
.y1f{bottom:251.250000px;}
.y36{bottom:268.500000px;}
.y67{bottom:273.750000px;}
.y23{bottom:275.250000px;}
.y4c{bottom:276.000000px;}
.y2d{bottom:279.750000px;}
.y64{bottom:300.000000px;}
.y1e{bottom:300.750000px;}
.y12{bottom:303.750000px;}
.y40{bottom:304.500000px;}
.y4b{bottom:325.500000px;}
.y2b{bottom:345.000000px;}
.y63{bottom:349.500000px;}
.y1d{bottom:350.250000px;}
.y3f{bottom:354.000000px;}
.y11{bottom:357.750000px;}
.y4a{bottom:375.000000px;}
.y59{bottom:387.750000px;}
.y7c{bottom:397.500000px;}
.y62{bottom:399.000000px;}
.y1c{bottom:399.750000px;}
.y3e{bottom:403.500000px;}
.y10{bottom:413.250000px;}
.y35{bottom:417.000000px;}
.y49{bottom:424.500000px;}
.y58{bottom:437.250000px;}
.y7b{bottom:447.000000px;}
.y61{bottom:448.500000px;}
.y1b{bottom:449.250000px;}
.y2a{bottom:450.000000px;}
.y3d{bottom:453.000000px;}
.y5d{bottom:463.500000px;}
.y34{bottom:466.500000px;}
.yf{bottom:467.250000px;}
.y74{bottom:472.500000px;}
.y48{bottom:474.000000px;}
.y57{bottom:486.750000px;}
.y7a{bottom:496.500000px;}
.y6b{bottom:497.250000px;}
.y60{bottom:498.000000px;}
.y3c{bottom:502.500000px;}
.y5c{bottom:513.000000px;}
.y33{bottom:516.000000px;}
.y73{bottom:522.000000px;}
.y47{bottom:523.500000px;}
.ye{bottom:524.250000px;}
.y56{bottom:536.250000px;}
.y79{bottom:546.000000px;}
.y6a{bottom:546.750000px;}
.y5f{bottom:547.500000px;}
.y1a{bottom:548.250000px;}
.y3b{bottom:552.000000px;}
.y5b{bottom:562.500000px;}
.y32{bottom:565.500000px;}
.y72{bottom:571.500000px;}
.y46{bottom:573.000000px;}
.yd{bottom:581.250000px;}
.y55{bottom:585.750000px;}
.y78{bottom:595.500000px;}
.y69{bottom:596.250000px;}
.y3{bottom:597.000000px;}
.y3a{bottom:601.500000px;}
.y29{bottom:609.000000px;}
.y5a{bottom:612.000000px;}
.y31{bottom:615.000000px;}
.y71{bottom:621.000000px;}
.y45{bottom:622.500000px;}
.yc{bottom:635.250000px;}
.y77{bottom:645.000000px;}
.y68{bottom:645.750000px;}
.y5e{bottom:646.500000px;}
.y19{bottom:647.250000px;}
.y28{bottom:661.500000px;}
.y70{bottom:670.500000px;}
.y2{bottom:678.000000px;}
.yb{bottom:692.250000px;}
.y76{bottom:694.500000px;}
.y18{bottom:696.750000px;}
.y39{bottom:700.500000px;}
.y30{bottom:714.000000px;}
.y44{bottom:721.500000px;}
.y17{bottom:746.250000px;}
.ya{bottom:747.750000px;}
.y65{bottom:750.750000px;}
.y27{bottom:768.000000px;}
.y52{bottom:774.750000px;}
.y6f{bottom:780.000000px;}
.y6e{bottom:784.500000px;}
.y6c{bottom:786.000000px;}
.y54{bottom:788.250000px;}
.y66{bottom:794.250000px;}
.y6d{bottom:796.500000px;}
.y38{bottom:799.500000px;}
.y75{bottom:801.000000px;}
.y9{bottom:803.250000px;}
.y2f{bottom:813.000000px;}
.y43{bottom:820.500000px;}
.y4f{bottom:825.750000px;}
.y16{bottom:845.250000px;}
.y8{bottom:858.750000px;}
.y51{bottom:868.500000px;}
.y25{bottom:878.250000px;}
.y4e{bottom:893.250000px;}
.y42{bottom:896.250000px;}
.y7d{bottom:901.500000px;}
.y2e{bottom:942.750000px;}
.y22{bottom:956.250000px;}
.y53{bottom:1060.500000px;}
.y37{bottom:1071.000000px;}
.y24{bottom:1072.500000px;}
.y7{bottom:1075.500000px;}
.y21{bottom:1089.000000px;}
.h4{height:22.500000px;}
.h5{height:51.820312px;}
.ha{height:56.527050px;}
.hb{height:63.576067px;}
.h11{height:73.746094px;}
.hf{height:84.780000px;}
.h6{height:94.816406px;}
.he{height:103.289062px;}
.hd{height:126.421875px;}
.h9{height:128.882812px;}
.h8{height:144.993164px;}
.h10{height:150.363281px;}
.hc{height:161.103516px;}
.h7{height:189.632812px;}
.h3{height:221.484375px;}
.h2{height:337.500000px;}
.h1{height:1152.000000px;}
.h0{height:1182.000000px;}
.w1{width:225.000000px;}
.w2{width:500.782650px;}
.w0{width:1536.000000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x4{left:7.500000px;}
.x12{left:36.262935px;}
.x17{left:39.262935px;}
.xe{left:40.762935px;}
.xa{left:42.262935px;}
.x16{left:51.262935px;}
.x21{left:52.762935px;}
.xc{left:54.262935px;}
.x15{left:60.262935px;}
.x18{left:73.762935px;}
.x10{left:76.762935px;}
.x13{left:78.262935px;}
.x20{left:82.762935px;}
.x1d{left:87.262935px;}
.x1f{left:93.262935px;}
.x11{left:94.762935px;}
.xd{left:100.762935px;}
.x1e{left:118.762935px;}
.x1a{left:120.262935px;}
.x7{left:127.762935px;}
.x2{left:131.816895px;}
.x1{left:141.098880px;}
.x1c{left:157.762950px;}
.x8{left:168.262935px;}
.x1b{left:258.061500px;}
.x5{left:323.041313px;}
.xf{left:344.118471px;}
.x14{left:424.561500px;}
.x19{left:500.440500px;}
.xb{left:535.561500px;}
.x6{left:577.471500px;}
.x9{left:886.717350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.028800pt;}
.ls6{letter-spacing:-0.025600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.019200pt;}
.ls4{letter-spacing:0.025600pt;}
.ls3{letter-spacing:0.038400pt;}
.ls1{letter-spacing:0.608000pt;}
.ws1{word-spacing:-40.032000pt;}
.ws2{word-spacing:-22.176000pt;}
.ws0{word-spacing:0.000000pt;}
._13{margin-left:-2439.774400pt;}
._1{margin-left:-34.167467pt;}
._3{margin-left:-22.377600pt;}
._0{margin-left:-20.582400pt;}
._17{margin-left:-19.414400pt;}
._e{margin-left:-17.984000pt;}
._15{margin-left:-16.390400pt;}
._10{margin-left:-14.515200pt;}
._2{margin-left:-13.507200pt;}
._18{margin-left:-12.483200pt;}
._8{margin-left:-11.563200pt;}
._a{margin-left:-10.304000pt;}
._4{margin-left:-8.960000pt;}
._d{margin-left:-7.826027pt;}
._16{margin-left:-6.336000pt;}
._14{margin-left:-5.184000pt;}
._5{margin-left:-4.128000pt;}
._c{margin-left:-2.662400pt;}
._6{margin-left:-1.344000pt;}
._7{width:1.344000pt;}
._9{width:3.136000pt;}
._11{width:4.151467pt;}
._12{width:5.817600pt;}
._b{width:10.092800pt;}
._f{width:11.275200pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:64.000068pt;}
.fsa{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.fs6{font-size:128.000000pt;}
.fs5{font-size:144.000000pt;}
.fs9{font-size:149.333333pt;}
.fs8{font-size:160.000000pt;}
.fs4{font-size:192.000000pt;}
.fs1{font-size:224.000000pt;}
.fs0{font-size:341.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.000000pt;}
.y5{bottom:5.333333pt;}
.y15{bottom:13.248147pt;}
.y1{bottom:26.666667pt;}
.y14{bottom:34.581503pt;}
.y26{bottom:44.666667pt;}
.y6{bottom:45.333333pt;}
.y2c{bottom:93.333333pt;}
.y50{bottom:127.333333pt;}
.y4d{bottom:157.333333pt;}
.y13{bottom:172.085200pt;}
.y20{bottom:179.333333pt;}
.y41{bottom:182.666667pt;}
.y1f{bottom:223.333333pt;}
.y36{bottom:238.666667pt;}
.y67{bottom:243.333333pt;}
.y23{bottom:244.666667pt;}
.y4c{bottom:245.333333pt;}
.y2d{bottom:248.666667pt;}
.y64{bottom:266.666667pt;}
.y1e{bottom:267.333333pt;}
.y12{bottom:270.000000pt;}
.y40{bottom:270.666667pt;}
.y4b{bottom:289.333333pt;}
.y2b{bottom:306.666667pt;}
.y63{bottom:310.666667pt;}
.y1d{bottom:311.333333pt;}
.y3f{bottom:314.666667pt;}
.y11{bottom:318.000000pt;}
.y4a{bottom:333.333333pt;}
.y59{bottom:344.666667pt;}
.y7c{bottom:353.333333pt;}
.y62{bottom:354.666667pt;}
.y1c{bottom:355.333333pt;}
.y3e{bottom:358.666667pt;}
.y10{bottom:367.333333pt;}
.y35{bottom:370.666667pt;}
.y49{bottom:377.333333pt;}
.y58{bottom:388.666667pt;}
.y7b{bottom:397.333333pt;}
.y61{bottom:398.666667pt;}
.y1b{bottom:399.333333pt;}
.y2a{bottom:400.000000pt;}
.y3d{bottom:402.666667pt;}
.y5d{bottom:412.000000pt;}
.y34{bottom:414.666667pt;}
.yf{bottom:415.333333pt;}
.y74{bottom:420.000000pt;}
.y48{bottom:421.333333pt;}
.y57{bottom:432.666667pt;}
.y7a{bottom:441.333333pt;}
.y6b{bottom:442.000000pt;}
.y60{bottom:442.666667pt;}
.y3c{bottom:446.666667pt;}
.y5c{bottom:456.000000pt;}
.y33{bottom:458.666667pt;}
.y73{bottom:464.000000pt;}
.y47{bottom:465.333333pt;}
.ye{bottom:466.000000pt;}
.y56{bottom:476.666667pt;}
.y79{bottom:485.333333pt;}
.y6a{bottom:486.000000pt;}
.y5f{bottom:486.666667pt;}
.y1a{bottom:487.333333pt;}
.y3b{bottom:490.666667pt;}
.y5b{bottom:500.000000pt;}
.y32{bottom:502.666667pt;}
.y72{bottom:508.000000pt;}
.y46{bottom:509.333333pt;}
.yd{bottom:516.666667pt;}
.y55{bottom:520.666667pt;}
.y78{bottom:529.333333pt;}
.y69{bottom:530.000000pt;}
.y3{bottom:530.666667pt;}
.y3a{bottom:534.666667pt;}
.y29{bottom:541.333333pt;}
.y5a{bottom:544.000000pt;}
.y31{bottom:546.666667pt;}
.y71{bottom:552.000000pt;}
.y45{bottom:553.333333pt;}
.yc{bottom:564.666667pt;}
.y77{bottom:573.333333pt;}
.y68{bottom:574.000000pt;}
.y5e{bottom:574.666667pt;}
.y19{bottom:575.333333pt;}
.y28{bottom:588.000000pt;}
.y70{bottom:596.000000pt;}
.y2{bottom:602.666667pt;}
.yb{bottom:615.333333pt;}
.y76{bottom:617.333333pt;}
.y18{bottom:619.333333pt;}
.y39{bottom:622.666667pt;}
.y30{bottom:634.666667pt;}
.y44{bottom:641.333333pt;}
.y17{bottom:663.333333pt;}
.ya{bottom:664.666667pt;}
.y65{bottom:667.333333pt;}
.y27{bottom:682.666667pt;}
.y52{bottom:688.666667pt;}
.y6f{bottom:693.333333pt;}
.y6e{bottom:697.333333pt;}
.y6c{bottom:698.666667pt;}
.y54{bottom:700.666667pt;}
.y66{bottom:706.000000pt;}
.y6d{bottom:708.000000pt;}
.y38{bottom:710.666667pt;}
.y75{bottom:712.000000pt;}
.y9{bottom:714.000000pt;}
.y2f{bottom:722.666667pt;}
.y43{bottom:729.333333pt;}
.y4f{bottom:734.000000pt;}
.y16{bottom:751.333333pt;}
.y8{bottom:763.333333pt;}
.y51{bottom:772.000000pt;}
.y25{bottom:780.666667pt;}
.y4e{bottom:794.000000pt;}
.y42{bottom:796.666667pt;}
.y7d{bottom:801.333333pt;}
.y2e{bottom:838.000000pt;}
.y22{bottom:850.000000pt;}
.y53{bottom:942.666667pt;}
.y37{bottom:952.000000pt;}
.y24{bottom:953.333333pt;}
.y7{bottom:956.000000pt;}
.y21{bottom:968.000000pt;}
.h4{height:20.000000pt;}
.h5{height:46.062500pt;}
.ha{height:50.246267pt;}
.hb{height:56.512060pt;}
.h11{height:65.552083pt;}
.hf{height:75.360000pt;}
.h6{height:84.281250pt;}
.he{height:91.812500pt;}
.hd{height:112.375000pt;}
.h9{height:114.562500pt;}
.h8{height:128.882812pt;}
.h10{height:133.656250pt;}
.hc{height:143.203125pt;}
.h7{height:168.562500pt;}
.h3{height:196.875000pt;}
.h2{height:300.000000pt;}
.h1{height:1024.000000pt;}
.h0{height:1050.666667pt;}
.w1{width:200.000000pt;}
.w2{width:445.140133pt;}
.w0{width:1365.333333pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x4{left:6.666667pt;}
.x12{left:32.233720pt;}
.x17{left:34.900387pt;}
.xe{left:36.233720pt;}
.xa{left:37.567053pt;}
.x16{left:45.567053pt;}
.x21{left:46.900387pt;}
.xc{left:48.233720pt;}
.x15{left:53.567053pt;}
.x18{left:65.567053pt;}
.x10{left:68.233720pt;}
.x13{left:69.567053pt;}
.x20{left:73.567053pt;}
.x1d{left:77.567053pt;}
.x1f{left:82.900387pt;}
.x11{left:84.233720pt;}
.xd{left:89.567053pt;}
.x1e{left:105.567053pt;}
.x1a{left:106.900387pt;}
.x7{left:113.567053pt;}
.x2{left:117.170573pt;}
.x1{left:125.421227pt;}
.x1c{left:140.233733pt;}
.x8{left:149.567053pt;}
.x1b{left:229.388000pt;}
.x5{left:287.147833pt;}
.xf{left:305.883085pt;}
.x14{left:377.388000pt;}
.x19{left:444.836000pt;}
.xb{left:476.054667pt;}
.x6{left:513.308000pt;}
.x9{left:788.193200pt;}
}




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