
    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_137f1c996eda8313491d6aa7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.791000;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_09ff5164e32586b5de30ab30.woff')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_ba077db58d312e2f7fa5657a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.705000;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_51c837422622e1f664042e9b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.679000;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_415065e3f606ab33f9837a6a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.053000;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_89a3b66dcf2144205b4c28a2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.171387;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_2060f05fca35299b9a7ed7a0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_fd5b53ce7de41d5f6d4c252b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.128000;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:ff9;src:url('chunks/assets/font_d0c6ba8a740cf0a6c95e7b81.woff')format("woff");}.ff9{font-family:ff9;line-height:0.915000;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:ffa;src:url('chunks/assets/font_955918c11a1a64a65b0f7569.woff')format("woff");}.ffa{font-family:ffa;line-height:0.753000;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:ffb;src:url('chunks/assets/font_a6ef28432296477e212eaff6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.734863;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:ffc;src:url('chunks/assets/font_37888fc9a7544e5ce1f160d3.woff')format("woff");}.ffc{font-family:ffc;line-height:1.101074;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-54.260893px;}
.ws0{word-spacing:-40.276300px;}
.ws7{word-spacing:-32.984998px;}
.ws3{word-spacing:-22.312891px;}
.ws1{word-spacing:-21.780850px;}
.ws4{word-spacing:-17.841644px;}
.ws6{word-spacing:-12.000262px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-2.285468px;}
._2{width:2.083075px;}
._4{width:3.412589px;}
._5{width:5.016757px;}
._1{width:6.437702px;}
._3{width:8.137289px;}
._7{width:9.176773px;}
._6{width:10.376882px;}
._8{width:17.318611px;}
.fc2{color:rgb(255,214,47);}
.fc5{color:rgb(0,196,204);}
.fc1{color:rgb(255,222,89);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(254,254,254);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:42.000130px;}
.fsc{font-size:42.000523px;}
.fs7{font-size:48.000145px;}
.fs6{font-size:48.000598px;}
.fs9{font-size:48.001047px;}
.fsb{font-size:53.999998px;}
.fs3{font-size:60.480150px;}
.fsa{font-size:65.969996px;}
.fs1{font-size:73.833390px;}
.fs0{font-size:80.552601px;}
.fs2{font-size:101.422230px;}
.fs4{font-size:113.984995px;}
.fs5{font-size:119.969995px;}
.fsd{font-size:125.954995px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000018px;}
.y34{bottom:15.936504px;}
.yf{bottom:21.052166px;}
.y1b{bottom:92.465630px;}
.y1a{bottom:108.465679px;}
.y18{bottom:109.578691px;}
.y19{bottom:126.691789px;}
.y17{bottom:127.804657px;}
.y30{bottom:266.919407px;}
.y2f{bottom:298.920106px;}
.y2e{bottom:314.920455px;}
.y8{bottom:326.428982px;}
.y2d{bottom:330.920804px;}
.y16{bottom:343.919979px;}
.y7{bottom:346.848325px;}
.y2c{bottom:346.921153px;}
.y13{bottom:354.233327px;}
.y15{bottom:359.920027px;}
.y2b{bottom:362.921502px;}
.y12{bottom:372.459268px;}
.y14{bottom:378.146317px;}
.y2a{bottom:378.921851px;}
.y29{bottom:394.922200px;}
.y28{bottom:410.922549px;}
.y27{bottom:426.922898px;}
.y26{bottom:442.923247px;}
.y6{bottom:445.190247px;}
.y3{bottom:455.394862px;}
.y25{bottom:458.923596px;}
.y5{bottom:471.263587px;}
.y24{bottom:474.923946px;}
.y2{bottom:484.830032px;}
.y23{bottom:490.924295px;}
.y4{bottom:497.336927px;}
.y22{bottom:506.924644px;}
.y21{bottom:522.924993px;}
.y38{bottom:529.041600px;}
.y20{bottom:538.925342px;}
.y1f{bottom:554.925691px;}
.y1e{bottom:570.926040px;}
.y37{bottom:572.916598px;}
.y1d{bottom:586.926389px;}
.ye{bottom:595.853260px;}
.yb{bottom:596.815046px;}
.y11{bottom:598.166365px;}
.y1c{bottom:602.926738px;}
.yd{bottom:614.079374px;}
.y10{bottom:616.392306px;}
.y36{bottom:616.791596px;}
.ya{bottom:632.815044px;}
.y35{bottom:660.666594px;}
.y9{bottom:668.815043px;}
.yc{bottom:801.820865px;}
.y33{bottom:816.458081px;}
.y32{bottom:834.458080px;}
.y31{bottom:872.008733px;}
.h10{height:30.454480px;}
.hc{height:32.176858px;}
.hb{height:36.773549px;}
.hf{height:37.961998px;}
.hd{height:43.968959px;}
.ha{height:44.695869px;}
.h7{height:48.444600px;}
.he{height:49.279587px;}
.h4{height:59.140545px;}
.h3{height:62.992134px;}
.h6{height:67.547205px;}
.h5{height:69.778494px;}
.h9{height:111.710342px;}
.h8{height:112.731160px;}
.h11{height:117.283289px;}
.h2{height:893.249963px;}
.h0{height:893.249981px;}
.h1{height:893.250000px;}
.w2{width:628.874974px;}
.w0{width:628.875000px;}
.w1{width:629.250000px;}
.x0{left:0.000000px;}
.x17{left:21.762349px;}
.x18{left:27.481116px;}
.x10{left:33.137383px;}
.x6{left:38.485724px;}
.x7{left:42.762852px;}
.x16{left:43.858358px;}
.xf{left:51.690356px;}
.x4{left:54.994409px;}
.x11{left:64.668729px;}
.x2{left:116.158268px;}
.x1c{left:119.602410px;}
.x3{left:139.345491px;}
.x5{left:149.733621px;}
.x1d{left:159.153190px;}
.x1{left:171.387756px;}
.x1f{left:181.811392px;}
.x1e{left:187.348501px;}
.x9{left:235.838695px;}
.xd{left:237.274639px;}
.x14{left:242.899709px;}
.xa{left:261.666849px;}
.xe{left:266.144071px;}
.x15{left:283.894125px;}
.x19{left:463.368605px;}
.x12{left:472.837690px;}
.xb{left:480.736604px;}
.xc{left:484.232321px;}
.x13{left:497.222527px;}
.x1a{left:504.780104px;}
.x1b{left:599.286792px;}
.x8{left:606.011474px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-48.231905pt;}
.ws0{word-spacing:-35.801156pt;}
.ws7{word-spacing:-29.319998pt;}
.ws3{word-spacing:-19.833681pt;}
.ws1{word-spacing:-19.360756pt;}
.ws4{word-spacing:-15.859239pt;}
.ws6{word-spacing:-10.666899pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-2.031527pt;}
._2{width:1.851623pt;}
._4{width:3.033412pt;}
._5{width:4.459339pt;}
._1{width:5.722401pt;}
._3{width:7.233146pt;}
._7{width:8.157132pt;}
._6{width:9.223895pt;}
._8{width:15.394321pt;}
.fs8{font-size:37.333449pt;}
.fsc{font-size:37.333798pt;}
.fs7{font-size:42.666796pt;}
.fs6{font-size:42.667198pt;}
.fs9{font-size:42.667598pt;}
.fsb{font-size:47.999998pt;}
.fs3{font-size:53.760133pt;}
.fsa{font-size:58.639997pt;}
.fs1{font-size:65.629680pt;}
.fs0{font-size:71.602312pt;}
.fs2{font-size:90.153093pt;}
.fs4{font-size:101.319996pt;}
.fs5{font-size:106.639996pt;}
.fsd{font-size:111.959995pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000016pt;}
.y34{bottom:14.165782pt;}
.yf{bottom:18.713037pt;}
.y1b{bottom:82.191671pt;}
.y1a{bottom:96.413937pt;}
.y18{bottom:97.403281pt;}
.y19{bottom:112.614923pt;}
.y17{bottom:113.604139pt;}
.y30{bottom:237.261695pt;}
.y2f{bottom:265.706760pt;}
.y2e{bottom:279.929293pt;}
.y8{bottom:290.159095pt;}
.y2d{bottom:294.151826pt;}
.y16{bottom:305.706648pt;}
.y7{bottom:308.309622pt;}
.y2c{bottom:308.374358pt;}
.y13{bottom:314.874068pt;}
.y15{bottom:319.928913pt;}
.y2b{bottom:322.596891pt;}
.y12{bottom:331.074905pt;}
.y14{bottom:336.130060pt;}
.y2a{bottom:336.819423pt;}
.y29{bottom:351.041956pt;}
.y28{bottom:365.264488pt;}
.y27{bottom:379.487021pt;}
.y26{bottom:393.709553pt;}
.y6{bottom:395.724664pt;}
.y3{bottom:404.795433pt;}
.y25{bottom:407.932086pt;}
.y5{bottom:418.900966pt;}
.y24{bottom:422.154618pt;}
.y2{bottom:430.960028pt;}
.y23{bottom:436.377151pt;}
.y4{bottom:442.077269pt;}
.y22{bottom:450.599683pt;}
.y21{bottom:464.822216pt;}
.y38{bottom:470.259200pt;}
.y20{bottom:479.044748pt;}
.y1f{bottom:493.267281pt;}
.y1e{bottom:507.489813pt;}
.y37{bottom:509.259198pt;}
.y1d{bottom:521.712346pt;}
.ye{bottom:529.647343pt;}
.yb{bottom:530.502263pt;}
.y11{bottom:531.703435pt;}
.y1c{bottom:535.934878pt;}
.yd{bottom:545.848332pt;}
.y10{bottom:547.904272pt;}
.y36{bottom:548.259196pt;}
.ya{bottom:562.502261pt;}
.y35{bottom:587.259195pt;}
.y9{bottom:594.502260pt;}
.yc{bottom:712.729658pt;}
.y33{bottom:725.740517pt;}
.y32{bottom:741.740516pt;}
.y31{bottom:775.118874pt;}
.h10{height:27.070649pt;}
.hc{height:28.601651pt;}
.hb{height:32.687599pt;}
.hf{height:33.743999pt;}
.hd{height:39.083519pt;}
.ha{height:39.729662pt;}
.h7{height:43.061867pt;}
.he{height:43.804078pt;}
.h4{height:52.569374pt;}
.h3{height:55.993008pt;}
.h6{height:60.041960pt;}
.h5{height:62.025328pt;}
.h9{height:99.298082pt;}
.h8{height:100.205476pt;}
.h11{height:104.251812pt;}
.h2{height:793.999967pt;}
.h0{height:793.999983pt;}
.h1{height:794.000000pt;}
.w2{width:558.999977pt;}
.w0{width:559.000000pt;}
.w1{width:559.333333pt;}
.x0{left:0.000000pt;}
.x17{left:19.344310pt;}
.x18{left:24.427659pt;}
.x10{left:29.455452pt;}
.x6{left:34.209533pt;}
.x7{left:38.011424pt;}
.x16{left:38.985207pt;}
.xf{left:45.946983pt;}
.x4{left:48.883919pt;}
.x11{left:57.483315pt;}
.x2{left:103.251794pt;}
.x1c{left:106.313253pt;}
.x3{left:123.862658pt;}
.x5{left:133.096552pt;}
.x1d{left:141.469502pt;}
.x1{left:152.344672pt;}
.x1f{left:161.610126pt;}
.x1e{left:166.532001pt;}
.x9{left:209.634396pt;}
.xd{left:210.910790pt;}
.x14{left:215.910852pt;}
.xa{left:232.592755pt;}
.xe{left:236.572508pt;}
.x15{left:252.350333pt;}
.x19{left:411.883204pt;}
.x12{left:420.300169pt;}
.xb{left:427.321425pt;}
.xc{left:430.428730pt;}
.x13{left:441.975580pt;}
.x1a{left:448.693426pt;}
.x1b{left:532.699370pt;}
.x8{left:538.676866pt;}
}




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