
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_2aeb2a21499df0df49ee748c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.997000;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_af26e700773bb2c4b0722730.woff')format("woff");}.ff3{font-family:ff3;line-height:1.032000;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_b9391124dbb514f6eef63f9e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_5e79da733954c2daa9b253f4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.997000;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_5e79da733954c2daa9b253f4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4ddaeea678947f593b851d51.woff')format("woff");}.ff9{font-family:ff9;line-height:0.997000;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;}
.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;}
}
.ws0{word-spacing:-124.671461px;}
.ws2{word-spacing:-22.886459px;}
.ws3{word-spacing:-17.801639px;}
.ws4{word-spacing:-16.595999px;}
.ws1{word-spacing:-13.826542px;}
.ws5{word-spacing:0.000000px;}
._12{margin-left:-14.256431px;}
._4{margin-left:-4.929481px;}
._3{margin-left:-3.663911px;}
._0{margin-left:-2.659482px;}
._1{margin-left:-1.008132px;}
._2{width:1.406152px;}
._5{width:2.970068px;}
._9{width:8.320035px;}
._a{width:9.732319px;}
._e{width:14.375373px;}
._f{width:15.596013px;}
._7{width:24.341460px;}
._8{width:25.437835px;}
._6{width:27.079415px;}
._c{width:34.095699px;}
._b{width:35.515426px;}
._d{width:36.773748px;}
._11{width:48.205973px;}
._10{width:49.722564px;}
.fc4{color:transparent;}
.fc3{color:rgb(229,114,0);}
.fc2{color:rgb(255,49,49);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:53.999998px;}
.fs1{font-size:59.984997px;}
.fs7{font-size:71.999997px;}
.fs3{font-size:83.969997px;}
.fs4{font-size:101.969996px;}
.fs5{font-size:107.954996px;}
.fs8{font-size:107.999996px;}
.fs6{font-size:143.999994px;}
.fs0{font-size:197.577592px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.000008px;}
.y2{bottom:11.594793px;}
.y4d{bottom:23.346755px;}
.y4c{bottom:43.596754px;}
.y4b{bottom:63.846753px;}
.y4a{bottom:84.096752px;}
.y7{bottom:112.746631px;}
.y6{bottom:130.746631px;}
.y5{bottom:148.746630px;}
.y4{bottom:171.771833px;}
.y50{bottom:213.771627px;}
.y4f{bottom:234.021626px;}
.y4e{bottom:254.271625px;}
.y49{bottom:283.821684px;}
.y12{bottom:333.171742px;}
.y11{bottom:356.796741px;}
.y10{bottom:380.421740px;}
.yf{bottom:404.046739px;}
.ye{bottom:427.671738px;}
.yd{bottom:451.296737px;}
.yc{bottom:474.921736px;}
.yb{bottom:498.546735px;}
.y17{bottom:533.271938px;}
.y14{bottom:611.086799px;}
.y16{bottom:612.409186px;}
.y13{bottom:645.961797px;}
.y15{bottom:647.284185px;}
.y27{bottom:708.559242px;}
.y26{bottom:733.309241px;}
.y25{bottom:758.059240px;}
.y24{bottom:782.809239px;}
.y23{bottom:807.559238px;}
.y22{bottom:832.309237px;}
.y21{bottom:857.059236px;}
.y2b{bottom:905.472034px;}
.y2a{bottom:961.639772px;}
.y29{bottom:986.389771px;}
.y28{bottom:1011.139770px;}
.y2c{bottom:1059.477328px;}
.y34{bottom:1111.827266px;}
.y33{bottom:1136.577265px;}
.y32{bottom:1161.327264px;}
.y31{bottom:1186.077263px;}
.y30{bottom:1210.827262px;}
.y2f{bottom:1235.577261px;}
.y2e{bottom:1260.327259px;}
.y2d{bottom:1309.827257px;}
.y38{bottom:1353.664816px;}
.y36{bottom:1422.449869px;}
.y35{bottom:1447.199868px;}
.y37{bottom:1485.327142px;}
.y3b{bottom:1530.488708px;}
.y3a{bottom:1555.238707px;}
.y39{bottom:1579.988706px;}
.y41{bottom:1620.732604px;}
.y40{bottom:1696.707541px;}
.y3f{bottom:1721.457540px;}
.y3e{bottom:1746.207539px;}
.y3d{bottom:1770.957538px;}
.y3c{bottom:1795.707537px;}
.y42{bottom:1839.770095px;}
.y20{bottom:1949.828463px;}
.y1f{bottom:1979.078462px;}
.y1e{bottom:2008.328460px;}
.y1d{bottom:2107.650044px;}
.y1c{bottom:2136.900043px;}
.y1b{bottom:2263.367631px;}
.y1a{bottom:2292.617630px;}
.ya{bottom:2404.292552px;}
.y9{bottom:2433.542551px;}
.y8{bottom:2462.792549px;}
.y19{bottom:2496.749904px;}
.y48{bottom:2545.724896px;}
.y47{bottom:2574.974895px;}
.y46{bottom:2604.224894px;}
.y45{bottom:2633.474893px;}
.y44{bottom:2662.724891px;}
.y1{bottom:2663.099897px;}
.y43{bottom:2691.974890px;}
.y18{bottom:2748.149885px;}
.h6{height:44.603998px;}
.h5{height:49.547608px;}
.h2{height:58.679998px;}
.hb{height:59.471998px;}
.hc{height:68.399997px;}
.h7{height:69.359217px;}
.h8{height:84.227216px;}
.h9{height:89.170826px;}
.hd{height:89.207996px;}
.ha{height:118.943995px;}
.h3{height:163.199091px;}
.h4{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w1{width:159.839993px;}
.w2{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x7{left:23.804109px;}
.x4{left:24.913871px;}
.x2{left:26.125630px;}
.x13{left:28.143925px;}
.x11{left:43.015902px;}
.x12{left:55.601804px;}
.x16{left:57.269183px;}
.x14{left:58.729862px;}
.x15{left:61.463694px;}
.x1{left:65.159997px;}
.x3{left:109.981210px;}
.x5{left:219.476964px;}
.x6{left:220.945595px;}
.x17{left:274.645360px;}
.xc{left:399.744826px;}
.x8{left:404.701659px;}
.xe{left:421.349881px;}
.x10{left:437.150327px;}
.xd{left:531.176461px;}
.xf{left:576.810812px;}
.x9{left:669.230216px;}
.xa{left:804.915757px;}
.xb{left:822.915757px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-110.819076pt;}
.ws2{word-spacing:-20.343519pt;}
.ws3{word-spacing:-15.823679pt;}
.ws4{word-spacing:-14.751999pt;}
.ws1{word-spacing:-12.290259pt;}
.ws5{word-spacing:0.000000pt;}
._12{margin-left:-12.672383pt;}
._4{margin-left:-4.381761pt;}
._3{margin-left:-3.256810pt;}
._0{margin-left:-2.363984pt;}
._1{margin-left:-0.896117pt;}
._2{width:1.249913pt;}
._5{width:2.640061pt;}
._9{width:7.395587pt;}
._a{width:8.650950pt;}
._e{width:12.778109pt;}
._f{width:13.863123pt;}
._7{width:21.636853pt;}
._8{width:22.611409pt;}
._6{width:24.070591pt;}
._c{width:30.307288pt;}
._b{width:31.569268pt;}
._d{width:32.687776pt;}
._11{width:42.849754pt;}
._10{width:44.197835pt;}
.fs2{font-size:47.999998pt;}
.fs1{font-size:53.319997pt;}
.fs7{font-size:63.999997pt;}
.fs3{font-size:74.639997pt;}
.fs4{font-size:90.639996pt;}
.fs5{font-size:95.959996pt;}
.fs8{font-size:95.999996pt;}
.fs6{font-size:127.999995pt;}
.fs0{font-size:175.624526pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.000007pt;}
.y2{bottom:10.306483pt;}
.y4d{bottom:20.752671pt;}
.y4c{bottom:38.752670pt;}
.y4b{bottom:56.752670pt;}
.y4a{bottom:74.752669pt;}
.y7{bottom:100.219228pt;}
.y6{bottom:116.219227pt;}
.y5{bottom:132.219226pt;}
.y4{bottom:152.686074pt;}
.y50{bottom:190.019224pt;}
.y4f{bottom:208.019223pt;}
.y4e{bottom:226.019223pt;}
.y49{bottom:252.285941pt;}
.y12{bottom:296.152660pt;}
.y11{bottom:317.152659pt;}
.y10{bottom:338.152658pt;}
.yf{bottom:359.152657pt;}
.ye{bottom:380.152656pt;}
.yd{bottom:401.152655pt;}
.yc{bottom:422.152654pt;}
.yb{bottom:443.152654pt;}
.y17{bottom:474.019500pt;}
.y14{bottom:543.188265pt;}
.y16{bottom:544.363721pt;}
.y13{bottom:574.188264pt;}
.y15{bottom:575.363720pt;}
.y27{bottom:629.830438pt;}
.y26{bottom:651.830437pt;}
.y25{bottom:673.830436pt;}
.y24{bottom:695.830435pt;}
.y23{bottom:717.830434pt;}
.y22{bottom:739.830433pt;}
.y21{bottom:761.830432pt;}
.y2b{bottom:804.864030pt;}
.y2a{bottom:854.790908pt;}
.y29{bottom:876.790907pt;}
.y28{bottom:898.790907pt;}
.y2c{bottom:941.757625pt;}
.y34{bottom:988.290903pt;}
.y33{bottom:1010.290902pt;}
.y32{bottom:1032.290901pt;}
.y31{bottom:1054.290900pt;}
.y30{bottom:1076.290899pt;}
.y2f{bottom:1098.290898pt;}
.y2e{bottom:1120.290897pt;}
.y2d{bottom:1164.290895pt;}
.y38{bottom:1203.257614pt;}
.y36{bottom:1264.399883pt;}
.y35{bottom:1286.399882pt;}
.y37{bottom:1320.290793pt;}
.y3b{bottom:1360.434407pt;}
.y3a{bottom:1382.434406pt;}
.y39{bottom:1404.434405pt;}
.y41{bottom:1440.651204pt;}
.y40{bottom:1508.184481pt;}
.y3f{bottom:1530.184480pt;}
.y3e{bottom:1552.184479pt;}
.y3d{bottom:1574.184478pt;}
.y3c{bottom:1596.184477pt;}
.y42{bottom:1635.351196pt;}
.y20{bottom:1733.180856pt;}
.y1f{bottom:1759.180855pt;}
.y1e{bottom:1785.180854pt;}
.y1d{bottom:1873.466706pt;}
.y1c{bottom:1899.466705pt;}
.y1b{bottom:2011.882339pt;}
.y1a{bottom:2037.882337pt;}
.ya{bottom:2137.148935pt;}
.y9{bottom:2163.148934pt;}
.y8{bottom:2189.148933pt;}
.y19{bottom:2219.333248pt;}
.y48{bottom:2262.866575pt;}
.y47{bottom:2288.866573pt;}
.y46{bottom:2314.866572pt;}
.y45{bottom:2340.866571pt;}
.y44{bottom:2366.866570pt;}
.y1{bottom:2367.199908pt;}
.y43{bottom:2392.866569pt;}
.y18{bottom:2442.799898pt;}
.h6{height:39.647998pt;}
.h5{height:44.042318pt;}
.h2{height:52.159998pt;}
.hb{height:52.863998pt;}
.hc{height:60.799997pt;}
.h7{height:61.652637pt;}
.h8{height:74.868637pt;}
.h9{height:79.262957pt;}
.hd{height:79.295997pt;}
.ha{height:105.727996pt;}
.h3{height:145.065859pt;}
.h4{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w1{width:142.079994pt;}
.w2{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x7{left:21.159208pt;}
.x4{left:22.145663pt;}
.x2{left:23.222782pt;}
.x13{left:25.016823pt;}
.x11{left:38.236357pt;}
.x12{left:49.423826pt;}
.x16{left:50.905940pt;}
.x14{left:52.204322pt;}
.x15{left:54.634395pt;}
.x1{left:57.919998pt;}
.x3{left:97.761076pt;}
.x5{left:195.090635pt;}
.x6{left:196.396085pt;}
.x17{left:244.129209pt;}
.xc{left:355.328734pt;}
.x8{left:359.734808pt;}
.xe{left:374.533228pt;}
.x10{left:388.578068pt;}
.xd{left:472.156854pt;}
.xf{left:512.720722pt;}
.x9{left:594.871303pt;}
.xa{left:715.480673pt;}
.xb{left:731.480673pt;}
}




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