
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.250000px;}
.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;}
}
.ws3{word-spacing:-2.250000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:16.422363px;}
.ws0{word-spacing:135.013178px;}
._16{margin-left:-1569.506772px;}
._14{margin-left:-2.250000px;}
._15{margin-left:-1.105979px;}
._4{width:1.765160px;}
._1{width:3.412491px;}
._2{width:4.703109px;}
._5{width:6.473762px;}
._7{width:8.478836px;}
._c{width:9.556454px;}
._9{width:10.616567px;}
._3{width:11.866264px;}
._12{width:12.890532px;}
._8{width:14.918609px;}
._b{width:15.960937px;}
._f{width:16.964540px;}
._a{width:18.259276px;}
._e{width:19.418746px;}
._10{width:20.485656px;}
._13{width:21.638671px;}
._0{width:23.184310px;}
._d{width:25.039215px;}
._6{width:29.049842px;}
._11{width:36.513816px;}
._17{width:54.035131px;}
.fc8{color:transparent;}
.fc3{color:rgb(51,122,183);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(86,86,86);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(51,51,51);}
.fc2{color:rgb(4,4,4);}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(102,102,102);}
.fs7{font-size:44.999998px;}
.fs4{font-size:53.999998px;}
.fs0{font-size:62.999997px;}
.fs2{font-size:67.499997px;}
.fs5{font-size:71.999997px;}
.fs6{font-size:80.999997px;}
.fs1{font-size:98.999996px;}
.fs3{font-size:188.999992px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.054090px;}
.y61{bottom:3.005856px;}
.y5c{bottom:3.375000px;}
.y5b{bottom:4.500000px;}
.y59{bottom:15.749999px;}
.y60{bottom:19.880855px;}
.y63{bottom:37.124998px;}
.y5f{bottom:41.255854px;}
.y5e{bottom:159.706037px;}
.y3{bottom:588.005831px;}
.y4{bottom:590.730469px;}
.y5d{bottom:671.255828px;}
.y5a{bottom:699.434917px;}
.y58{bottom:1093.184900px;}
.y57{bottom:1176.380807px;}
.y56{bottom:1243.880804px;}
.y55{bottom:1286.630802px;}
.y54{bottom:1312.505801px;}
.y53{bottom:1355.255800px;}
.y52{bottom:1398.005798px;}
.y51{bottom:1423.880797px;}
.y50{bottom:1449.755796px;}
.y4f{bottom:1492.505794px;}
.y4e{bottom:1535.255792px;}
.y4d{bottom:1578.005790px;}
.y4c{bottom:1620.755788px;}
.y4b{bottom:1663.505787px;}
.y4a{bottom:1689.380786px;}
.y49{bottom:1715.255785px;}
.y48{bottom:1758.005783px;}
.y47{bottom:1843.505779px;}
.y46{bottom:1886.255777px;}
.y45{bottom:1971.755774px;}
.y44{bottom:1997.630773px;}
.y43{bottom:2023.505772px;}
.y42{bottom:2049.380771px;}
.y41{bottom:2075.255770px;}
.y40{bottom:2118.005768px;}
.y3f{bottom:2143.880767px;}
.y3e{bottom:2169.755766px;}
.y3d{bottom:2195.630765px;}
.y3c{bottom:2221.505763px;}
.y3b{bottom:2254.130762px;}
.y3a{bottom:2812.130739px;}
.y39{bottom:2838.005738px;}
.y38{bottom:2863.880737px;}
.y37{bottom:2889.755736px;}
.y36{bottom:2922.380734px;}
.y35{bottom:3383.630715px;}
.y34{bottom:3409.505714px;}
.y33{bottom:3435.380713px;}
.y32{bottom:3461.255712px;}
.y31{bottom:3487.130711px;}
.y30{bottom:3519.755709px;}
.y2f{bottom:4031.630688px;}
.y2e{bottom:4057.505687px;}
.y2d{bottom:4083.380686px;}
.y2c{bottom:4109.255685px;}
.y2b{bottom:4135.130684px;}
.y2a{bottom:4161.005683px;}
.y29{bottom:4186.880682px;}
.y28{bottom:4212.755680px;}
.y27{bottom:4238.630679px;}
.y26{bottom:4272.380678px;}
.y25{bottom:4733.630659px;}
.y24{bottom:4759.505658px;}
.y23{bottom:4785.380657px;}
.y22{bottom:4811.255656px;}
.y21{bottom:4837.130654px;}
.y20{bottom:4863.005653px;}
.y1f{bottom:4905.755652px;}
.y1e{bottom:4931.630651px;}
.y1d{bottom:4957.505649px;}
.y1c{bottom:4983.380648px;}
.y1b{bottom:5009.255647px;}
.y1a{bottom:5035.130646px;}
.y19{bottom:5061.005645px;}
.y18{bottom:5103.755643px;}
.y17{bottom:5129.630642px;}
.y16{bottom:5155.505641px;}
.y15{bottom:5181.380640px;}
.y14{bottom:5207.255639px;}
.y13{bottom:5233.130638px;}
.y12{bottom:5275.880636px;}
.y11{bottom:5301.755635px;}
.y10{bottom:5327.630634px;}
.yf{bottom:5353.505633px;}
.ye{bottom:5379.380632px;}
.yd{bottom:5405.255631px;}
.yc{bottom:5431.130630px;}
.yb{bottom:5457.005629px;}
.ya{bottom:5499.755627px;}
.y9{bottom:5525.630626px;}
.y8{bottom:5551.505625px;}
.y7{bottom:5577.380624px;}
.y6{bottom:5638.130621px;}
.y5{bottom:5689.880619px;}
.y62{bottom:5853.059702px;}
.y2{bottom:5857.505612px;}
.hc{height:42.749998px;}
.h9{height:44.999998px;}
.hd{height:49.499998px;}
.h7{height:51.299998px;}
.h3{height:59.849998px;}
.h5{height:64.124997px;}
.h8{height:68.399997px;}
.ha{height:76.949997px;}
.h4{height:94.049996px;}
.h6{height:179.549993px;}
.hb{height:449.999981px;}
.h1{height:5902.500000px;}
.h2{height:5902.505610px;}
.h0{height:5902.559700px;}
.w3{width:78.749997px;}
.w4{width:110.249995px;}
.w5{width:874.124964px;}
.w2{width:1966.499918px;}
.w1{width:1966.500000px;}
.w0{width:1966.680000px;}
.x0{left:0.000000px;}
.x22{left:19.494145px;}
.x2b{left:302.624987px;}
.x24{left:586.072247px;}
.x2{left:773.244114px;}
.x21{left:784.124967px;}
.x6{left:786.656217px;}
.x3{left:787.710905px;}
.x7{left:812.320279px;}
.x1{left:813.673800px;}
.xb{left:822.708956px;}
.x25{left:831.568330px;}
.x4{left:850.429652px;}
.x23{left:862.874964px;}
.x1f{left:881.578088px;}
.x12{left:889.382775px;}
.x1a{left:895.658171px;}
.x5{left:898.945275px;}
.x16{left:915.679649px;}
.x14{left:928.828086px;}
.x9{left:937.511680px;}
.x8{left:956.917929px;}
.x1c{left:992.109334px;}
.x1b{left:1035.228478px;}
.x19{left:1068.187455px;}
.x1d{left:1076.572226px;}
.x15{left:1081.072226px;}
.x17{left:1106.085891px;}
.x26{left:1163.373004px;}
.x1e{left:1170.369097px;}
.xc{left:1174.113232px;}
.x20{left:1186.558544px;}
.xd{left:1302.099561px;}
.x27{left:1372.587839px;}
.x13{left:1397.126901px;}
.xf{left:1413.773379px;}
.xe{left:1419.749941px;}
.x10{left:1470.919866px;}
.x18{left:1478.671813px;}
.x28{left:1509.960875px;}
.x11{left:1594.019465px;}
.x29{left:1603.195246px;}
.x2a{left:1634.220635px;}
.xa{left:1637.665953px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.000000pt;}
.ws3{word-spacing:-2.000000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:14.597656pt;}
.ws0{word-spacing:120.011714pt;}
._16{margin-left:-1395.117131pt;}
._14{margin-left:-2.000000pt;}
._15{margin-left:-0.983092pt;}
._4{width:1.569031pt;}
._1{width:3.033325pt;}
._2{width:4.180542pt;}
._5{width:5.754455pt;}
._7{width:7.536743pt;}
._c{width:8.494626pt;}
._9{width:9.436949pt;}
._3{width:10.547791pt;}
._12{width:11.458251pt;}
._8{width:13.260986pt;}
._b{width:14.187499pt;}
._f{width:15.079592pt;}
._a{width:16.230468pt;}
._e{width:17.261108pt;}
._10{width:18.209472pt;}
._13{width:19.234374pt;}
._0{width:20.608275pt;}
._d{width:22.257080pt;}
._6{width:25.822082pt;}
._11{width:32.456725pt;}
._17{width:48.031228pt;}
.fs7{font-size:39.999998pt;}
.fs4{font-size:47.999998pt;}
.fs0{font-size:55.999998pt;}
.fs2{font-size:59.999998pt;}
.fs5{font-size:63.999997pt;}
.fs6{font-size:71.999997pt;}
.fs1{font-size:87.999996pt;}
.fs3{font-size:167.999993pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.048080pt;}
.y61{bottom:2.671872pt;}
.y5c{bottom:3.000000pt;}
.y5b{bottom:4.000000pt;}
.y59{bottom:13.999999pt;}
.y60{bottom:17.671871pt;}
.y63{bottom:32.999999pt;}
.y5f{bottom:36.671870pt;}
.y5e{bottom:141.960922pt;}
.y3{bottom:522.671850pt;}
.y4{bottom:525.093750pt;}
.y5d{bottom:596.671847pt;}
.y5a{bottom:621.719926pt;}
.y58{bottom:971.719911pt;}
.y57{bottom:1045.671828pt;}
.y56{bottom:1105.671826pt;}
.y55{bottom:1143.671824pt;}
.y54{bottom:1166.671823pt;}
.y53{bottom:1204.671822pt;}
.y52{bottom:1242.671820pt;}
.y51{bottom:1265.671819pt;}
.y50{bottom:1288.671818pt;}
.y4f{bottom:1326.671817pt;}
.y4e{bottom:1364.671815pt;}
.y4d{bottom:1402.671814pt;}
.y4c{bottom:1440.671812pt;}
.y4b{bottom:1478.671810pt;}
.y4a{bottom:1501.671809pt;}
.y49{bottom:1524.671808pt;}
.y48{bottom:1562.671807pt;}
.y47{bottom:1638.671804pt;}
.y46{bottom:1676.671802pt;}
.y45{bottom:1752.671799pt;}
.y44{bottom:1775.671798pt;}
.y43{bottom:1798.671797pt;}
.y42{bottom:1821.671796pt;}
.y41{bottom:1844.671795pt;}
.y40{bottom:1882.671794pt;}
.y3f{bottom:1905.671793pt;}
.y3e{bottom:1928.671792pt;}
.y3d{bottom:1951.671791pt;}
.y3c{bottom:1974.671790pt;}
.y3b{bottom:2003.671789pt;}
.y3a{bottom:2499.671768pt;}
.y39{bottom:2522.671767pt;}
.y38{bottom:2545.671766pt;}
.y37{bottom:2568.671765pt;}
.y36{bottom:2597.671764pt;}
.y35{bottom:3007.671747pt;}
.y34{bottom:3030.671746pt;}
.y33{bottom:3053.671745pt;}
.y32{bottom:3076.671744pt;}
.y31{bottom:3099.671743pt;}
.y30{bottom:3128.671742pt;}
.y2f{bottom:3583.671723pt;}
.y2e{bottom:3606.671722pt;}
.y2d{bottom:3629.671721pt;}
.y2c{bottom:3652.671720pt;}
.y2b{bottom:3675.671719pt;}
.y2a{bottom:3698.671718pt;}
.y29{bottom:3721.671717pt;}
.y28{bottom:3744.671716pt;}
.y27{bottom:3767.671715pt;}
.y26{bottom:3797.671714pt;}
.y25{bottom:4207.671697pt;}
.y24{bottom:4230.671696pt;}
.y23{bottom:4253.671695pt;}
.y22{bottom:4276.671694pt;}
.y21{bottom:4299.671693pt;}
.y20{bottom:4322.671692pt;}
.y1f{bottom:4360.671690pt;}
.y1e{bottom:4383.671689pt;}
.y1d{bottom:4406.671688pt;}
.y1c{bottom:4429.671687pt;}
.y1b{bottom:4452.671686pt;}
.y1a{bottom:4475.671686pt;}
.y19{bottom:4498.671685pt;}
.y18{bottom:4536.671683pt;}
.y17{bottom:4559.671682pt;}
.y16{bottom:4582.671681pt;}
.y15{bottom:4605.671680pt;}
.y14{bottom:4628.671679pt;}
.y13{bottom:4651.671678pt;}
.y12{bottom:4689.671677pt;}
.y11{bottom:4712.671676pt;}
.y10{bottom:4735.671675pt;}
.yf{bottom:4758.671674pt;}
.ye{bottom:4781.671673pt;}
.yd{bottom:4804.671672pt;}
.yc{bottom:4827.671671pt;}
.yb{bottom:4850.671670pt;}
.ya{bottom:4888.671668pt;}
.y9{bottom:4911.671667pt;}
.y8{bottom:4934.671666pt;}
.y7{bottom:4957.671665pt;}
.y6{bottom:5011.671663pt;}
.y5{bottom:5057.671661pt;}
.y62{bottom:5202.719735pt;}
.y2{bottom:5206.671655pt;}
.hc{height:37.999998pt;}
.h9{height:39.999998pt;}
.hd{height:43.999998pt;}
.h7{height:45.599998pt;}
.h3{height:53.199998pt;}
.h5{height:56.999998pt;}
.h8{height:60.799997pt;}
.ha{height:68.399997pt;}
.h4{height:83.599997pt;}
.h6{height:159.599993pt;}
.hb{height:399.999983pt;}
.h1{height:5246.666667pt;}
.h2{height:5246.671653pt;}
.h0{height:5246.719733pt;}
.w3{width:69.999997pt;}
.w4{width:97.999996pt;}
.w5{width:776.999968pt;}
.w2{width:1747.999927pt;}
.w1{width:1748.000000pt;}
.w0{width:1748.160000pt;}
.x0{left:0.000000pt;}
.x22{left:17.328129pt;}
.x2b{left:268.999989pt;}
.x24{left:520.953108pt;}
.x2{left:687.328101pt;}
.x21{left:696.999971pt;}
.x6{left:699.249971pt;}
.x3{left:700.187471pt;}
.x7{left:722.062470pt;}
.x1{left:723.265600pt;}
.xb{left:731.296850pt;}
.x25{left:739.171849pt;}
.x4{left:755.937469pt;}
.x23{left:766.999968pt;}
.x1f{left:783.624967pt;}
.x12{left:790.562467pt;}
.x1a{left:796.140597pt;}
.x5{left:799.062467pt;}
.x16{left:813.937466pt;}
.x14{left:825.624966pt;}
.x9{left:833.343715pt;}
.x8{left:850.593715pt;}
.x1c{left:881.874963pt;}
.x1b{left:920.203092pt;}
.x19{left:949.499960pt;}
.x1d{left:956.953090pt;}
.x15{left:960.953090pt;}
.x17{left:983.187459pt;}
.x26{left:1034.109337pt;}
.x1e{left:1040.328087pt;}
.xc{left:1043.656207pt;}
.x20{left:1054.718706pt;}
.xd{left:1157.421832pt;}
.x27{left:1220.078079pt;}
.x13{left:1241.890578pt;}
.xf{left:1256.687448pt;}
.xe{left:1261.999947pt;}
.x10{left:1307.484326pt;}
.x18{left:1314.374945pt;}
.x28{left:1342.187444pt;}
.x11{left:1416.906191pt;}
.x29{left:1425.062441pt;}
.x2a{left:1452.640564pt;}
.xa{left:1455.703069pt;}
}




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