
    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_676b288e8f6cae9576e3e0ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_7009cd36b6e4d52583318c32.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_b0070eec65606e39d802d92c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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;}
.m6{transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152778,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200704,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202899,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206522,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209559,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224576,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.257028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257028,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-13.856850px;}
.ls5{letter-spacing:-12.316500px;}
.ls15{letter-spacing:-12.071775px;}
.ls6{letter-spacing:-10.215225px;}
.ls14{letter-spacing:-8.520000px;}
.ls12{letter-spacing:-7.811775px;}
.ls13{letter-spacing:-7.098225px;}
.ls11{letter-spacing:-6.390000px;}
.lsa{letter-spacing:-5.681775px;}
.ls9{letter-spacing:-4.260000px;}
.lsf{letter-spacing:-3.551775px;}
.lsc{letter-spacing:-2.838225px;}
.ls7{letter-spacing:-2.130000px;}
.lsd{letter-spacing:-1.421775px;}
.lsb{letter-spacing:-0.708225px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.708225px;}
.ls2{letter-spacing:1.421775px;}
.ls1{letter-spacing:2.130000px;}
.ls17{letter-spacing:2.504550px;}
.ls3{letter-spacing:3.551775px;}
.lse{letter-spacing:3.694950px;}
.ls16{letter-spacing:7.265700px;}
.ls10{letter-spacing:7.476300px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._12{margin-left:-15.363927px;}
._d{margin-left:-8.823525px;}
._f{margin-left:-7.369800px;}
._3{margin-left:-5.857500px;}
._5{margin-left:-4.510275px;}
._1{margin-left:-3.248250px;}
._b{margin-left:-2.199225px;}
._4{margin-left:-1.118250px;}
._7{width:1.704000px;}
._8{width:2.784975px;}
._0{width:4.632750px;}
._c{width:5.735025px;}
._2{width:6.922500px;}
._9{width:8.956650px;}
._6{width:10.458300px;}
._a{width:11.858775px;}
._e{width:13.142100px;}
._11{width:15.378600px;}
._10{width:18.232800px;}
.fc0{color:transparent;}
.fs6{font-size:44.250000px;}
.fs4{font-size:51.000000px;}
.fs3{font-size:51.750000px;}
.fs2{font-size:53.250000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:186.750000px;}
.fs1{font-size:191.250000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:115.680375px;}
.y40{bottom:115.697100px;}
.y3e{bottom:130.443937px;}
.y3d{bottom:145.566937px;}
.y3c{bottom:160.689938px;}
.y3b{bottom:175.453500px;}
.y39{bottom:190.451775px;}
.y3a{bottom:190.576500px;}
.y38{bottom:205.215337px;}
.y37{bottom:220.338337px;}
.y36{bottom:235.461337px;}
.y35{bottom:250.224900px;}
.y34{bottom:264.988462px;}
.y33{bottom:280.111462px;}
.y32{bottom:294.875025px;}
.y31{bottom:309.638587px;}
.y30{bottom:324.761587px;}
.y2f{bottom:339.525150px;}
.y2e{bottom:354.288712px;}
.y2d{bottom:369.411712px;}
.y2c{bottom:384.175275px;}
.y2b{bottom:398.938837px;}
.y2a{bottom:413.702400px;}
.y29{bottom:428.825400px;}
.y28{bottom:443.588962px;}
.y27{bottom:458.352525px;}
.y26{bottom:473.475525px;}
.y25{bottom:488.239087px;}
.y24{bottom:503.362087px;}
.y23{bottom:518.485087px;}
.y41{bottom:518.536500px;}
.y22{bottom:533.608087px;}
.y21{bottom:548.371650px;}
.y20{bottom:563.494650px;}
.y1f{bottom:578.617650px;}
.y1e{bottom:593.740650px;}
.y1d{bottom:608.504212px;}
.y1c{bottom:623.627212px;}
.y1b{bottom:638.750212px;}
.y1a{bottom:653.513775px;}
.y19{bottom:668.636775px;}
.y18{bottom:683.759775px;}
.y17{bottom:698.523337px;}
.y16{bottom:713.286900px;}
.y15{bottom:728.769337px;}
.y14{bottom:743.532900px;}
.y13{bottom:758.655900px;}
.y11{bottom:773.395650px;}
.y12{bottom:773.416650px;}
.y10{bottom:788.518650px;}
.yf{bottom:802.922775px;}
.ye{bottom:818.045775px;}
.yd{bottom:832.809338px;}
.yc{bottom:847.932338px;}
.ya{bottom:862.685850px;}
.yb{bottom:862.695900px;}
.y9{bottom:877.089975px;}
.y8{bottom:892.212975px;}
.y6{bottom:906.603337px;}
.y7{bottom:906.617100px;}
.y5{bottom:921.726337px;}
.y4{bottom:936.489900px;}
.y3{bottom:951.612900px;}
.y2{bottom:966.735900px;}
.y1{bottom:1030.455450px;}
.hb{height:46.151367px;}
.h6{height:53.191406px;}
.h5{height:53.973633px;}
.h4{height:55.538086px;}
.h7{height:56.320312px;}
.h2{height:194.774414px;}
.h3{height:199.467773px;}
.h0{height:1087.472550px;}
.h1{height:1087.500000px;}
.h9{height:1088.192550px;}
.ha{height:1088.250000px;}
.h8{height:1096.500000px;}
.hc{height:1104.000000px;}
.w3{width:927.632550px;}
.w4{width:927.750000px;}
.w2{width:939.000000px;}
.w1{width:940.500000px;}
.w0{width:940.592550px;}
.x0{left:0.000000px;}
.xb{left:24.242737px;}
.xa{left:25.297425px;}
.x4{left:26.426700px;}
.x1{left:28.215600px;}
.xc{left:138.376050px;}
.xd{left:143.776500px;}
.x5{left:150.256200px;}
.x2{left:151.696500px;}
.xe{left:157.096800px;}
.x6{left:168.975300px;}
.x7{left:171.855900px;}
.x8{left:185.176200px;}
.xf{left:213.616500px;}
.x3{left:219.016800px;}
.x9{left:226.576050px;}
.x10{left:468.496650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-12.317200pt;}
.ls5{letter-spacing:-10.948000pt;}
.ls15{letter-spacing:-10.730467pt;}
.ls6{letter-spacing:-9.080200pt;}
.ls14{letter-spacing:-7.573333pt;}
.ls12{letter-spacing:-6.943800pt;}
.ls13{letter-spacing:-6.309533pt;}
.ls11{letter-spacing:-5.680000pt;}
.lsa{letter-spacing:-5.050467pt;}
.ls9{letter-spacing:-3.786667pt;}
.lsf{letter-spacing:-3.157133pt;}
.lsc{letter-spacing:-2.522867pt;}
.ls7{letter-spacing:-1.893333pt;}
.lsd{letter-spacing:-1.263800pt;}
.lsb{letter-spacing:-0.629533pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.629533pt;}
.ls2{letter-spacing:1.263800pt;}
.ls1{letter-spacing:1.893333pt;}
.ls17{letter-spacing:2.226267pt;}
.ls3{letter-spacing:3.157133pt;}
.lse{letter-spacing:3.284400pt;}
.ls16{letter-spacing:6.458400pt;}
.ls10{letter-spacing:6.645600pt;}
.ws0{word-spacing:0.000000pt;}
._12{margin-left:-13.656824pt;}
._d{margin-left:-7.843133pt;}
._f{margin-left:-6.550933pt;}
._3{margin-left:-5.206667pt;}
._5{margin-left:-4.009133pt;}
._1{margin-left:-2.887333pt;}
._b{margin-left:-1.954867pt;}
._4{margin-left:-0.994000pt;}
._7{width:1.514667pt;}
._8{width:2.475533pt;}
._0{width:4.118000pt;}
._c{width:5.097800pt;}
._2{width:6.153333pt;}
._9{width:7.961467pt;}
._6{width:9.296267pt;}
._a{width:10.541133pt;}
._e{width:11.681867pt;}
._11{width:13.669867pt;}
._10{width:16.206933pt;}
.fs6{font-size:39.333333pt;}
.fs4{font-size:45.333333pt;}
.fs3{font-size:46.000000pt;}
.fs2{font-size:47.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:166.000000pt;}
.fs1{font-size:170.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:102.827000pt;}
.y40{bottom:102.841867pt;}
.y3e{bottom:115.950167pt;}
.y3d{bottom:129.392833pt;}
.y3c{bottom:142.835500pt;}
.y3b{bottom:155.958667pt;}
.y39{bottom:169.290467pt;}
.y3a{bottom:169.401333pt;}
.y38{bottom:182.413633pt;}
.y37{bottom:195.856300pt;}
.y36{bottom:209.298967pt;}
.y35{bottom:222.422133pt;}
.y34{bottom:235.545300pt;}
.y33{bottom:248.987967pt;}
.y32{bottom:262.111133pt;}
.y31{bottom:275.234300pt;}
.y30{bottom:288.676967pt;}
.y2f{bottom:301.800133pt;}
.y2e{bottom:314.923300pt;}
.y2d{bottom:328.365967pt;}
.y2c{bottom:341.489133pt;}
.y2b{bottom:354.612300pt;}
.y2a{bottom:367.735467pt;}
.y29{bottom:381.178133pt;}
.y28{bottom:394.301300pt;}
.y27{bottom:407.424467pt;}
.y26{bottom:420.867133pt;}
.y25{bottom:433.990300pt;}
.y24{bottom:447.432967pt;}
.y23{bottom:460.875633pt;}
.y41{bottom:460.921333pt;}
.y22{bottom:474.318300pt;}
.y21{bottom:487.441467pt;}
.y20{bottom:500.884133pt;}
.y1f{bottom:514.326800pt;}
.y1e{bottom:527.769467pt;}
.y1d{bottom:540.892633pt;}
.y1c{bottom:554.335300pt;}
.y1b{bottom:567.777967pt;}
.y1a{bottom:580.901133pt;}
.y19{bottom:594.343800pt;}
.y18{bottom:607.786467pt;}
.y17{bottom:620.909633pt;}
.y16{bottom:634.032800pt;}
.y15{bottom:647.794967pt;}
.y14{bottom:660.918133pt;}
.y13{bottom:674.360800pt;}
.y11{bottom:687.462800pt;}
.y12{bottom:687.481467pt;}
.y10{bottom:700.905467pt;}
.yf{bottom:713.709133pt;}
.ye{bottom:727.151800pt;}
.yd{bottom:740.274967pt;}
.yc{bottom:753.717633pt;}
.ya{bottom:766.831867pt;}
.yb{bottom:766.840800pt;}
.y9{bottom:779.635533pt;}
.y8{bottom:793.078200pt;}
.y6{bottom:805.869633pt;}
.y7{bottom:805.881867pt;}
.y5{bottom:819.312300pt;}
.y4{bottom:832.435467pt;}
.y3{bottom:845.878133pt;}
.y2{bottom:859.320800pt;}
.y1{bottom:915.960400pt;}
.hb{height:41.023438pt;}
.h6{height:47.281250pt;}
.h5{height:47.976562pt;}
.h4{height:49.367188pt;}
.h7{height:50.062500pt;}
.h2{height:173.132812pt;}
.h3{height:177.304688pt;}
.h0{height:966.642267pt;}
.h1{height:966.666667pt;}
.h9{height:967.282267pt;}
.ha{height:967.333333pt;}
.h8{height:974.666667pt;}
.hc{height:981.333333pt;}
.w3{width:824.562267pt;}
.w4{width:824.666667pt;}
.w2{width:834.666667pt;}
.w1{width:836.000000pt;}
.w0{width:836.082267pt;}
.x0{left:0.000000pt;}
.xb{left:21.549100pt;}
.xa{left:22.486600pt;}
.x4{left:23.490400pt;}
.x1{left:25.080533pt;}
.xc{left:123.000933pt;}
.xd{left:127.801333pt;}
.x5{left:133.561067pt;}
.x2{left:134.841333pt;}
.xe{left:139.641600pt;}
.x6{left:150.200267pt;}
.x7{left:152.760800pt;}
.x8{left:164.601067pt;}
.xf{left:189.881333pt;}
.x3{left:194.681600pt;}
.x9{left:201.400933pt;}
.x10{left:416.441467pt;}
}




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