
    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;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:660.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:0.000000px;}
._f{margin-left:-6594.693421px;}
._16{margin-left:-6516.429457px;}
._1f{margin-left:-1314.796993px;}
._9{margin-left:-64.729614px;}
._0{margin-left:-49.419021px;}
._1b{margin-left:-32.581971px;}
._20{margin-left:-31.440622px;}
._1c{margin-left:-30.095507px;}
._18{margin-left:-28.479401px;}
._e{margin-left:-27.194595px;}
._15{margin-left:-24.803649px;}
._1d{margin-left:-22.399703px;}
._5{margin-left:-21.388183px;}
._4{margin-left:-19.743530px;}
._1a{margin-left:-18.168291px;}
._8{margin-left:-17.001709px;}
._1e{margin-left:-15.274743px;}
._b{margin-left:-14.071884px;}
._19{margin-left:-13.045298px;}
._12{margin-left:-12.035408px;}
._a{margin-left:-10.753052px;}
._1{margin-left:-9.307525px;}
._2{margin-left:-8.281128px;}
._10{margin-left:-7.267508px;}
._6{margin-left:-6.051590px;}
._3{margin-left:-4.762207px;}
._7{margin-left:-2.779724px;}
._c{margin-left:-1.314881px;}
._11{width:292.599200px;}
._13{width:1245.716536px;}
._17{width:1380.108084px;}
._21{width:4033.744138px;}
._14{width:6316.882207px;}
._d{width:6895.922406px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs4{font-size:120.000000px;}
.fs9{font-size:180.000000px;}
.fs7{font-size:240.000000px;}
.fs3{font-size:300.000000px;}
.fs6{font-size:420.000000px;}
.fs2{font-size:480.000000px;}
.fs1{font-size:600.000000px;}
.fs0{font-size:816.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:15.000000px;}
.y4{bottom:33.000000px;}
.y4a{bottom:97.500000px;}
.y3{bottom:118.500000px;}
.y7{bottom:120.000000px;}
.y49{bottom:123.000000px;}
.y7f{bottom:126.000000px;}
.yad{bottom:141.000000px;}
.y7e{bottom:145.500000px;}
.y8{bottom:148.500000px;}
.y7d{bottom:165.000000px;}
.y9a{bottom:169.500000px;}
.y48{bottom:174.000000px;}
.y7c{bottom:184.500000px;}
.yac{bottom:190.500000px;}
.y20{bottom:198.000000px;}
.y47{bottom:199.500000px;}
.y7b{bottom:204.000000px;}
.y99{bottom:219.000000px;}
.y7a{bottom:223.500000px;}
.y46{bottom:225.000000px;}
.yab{bottom:240.000000px;}
.y79{bottom:243.000000px;}
.y45{bottom:250.500000px;}
.yb7{bottom:261.000000px;}
.y78{bottom:262.500000px;}
.y1f{bottom:264.000000px;}
.y98{bottom:268.500000px;}
.y44{bottom:276.000000px;}
.y77{bottom:282.000000px;}
.yaa{bottom:289.500000px;}
.y43{bottom:301.500000px;}
.y97{bottom:318.000000px;}
.y76{bottom:321.000000px;}
.y42{bottom:327.000000px;}
.y1d{bottom:330.000000px;}
.ya9{bottom:339.000000px;}
.y75{bottom:340.500000px;}
.y41{bottom:352.500000px;}
.y74{bottom:360.000000px;}
.y96{bottom:367.500000px;}
.y40{bottom:378.000000px;}
.y73{bottom:379.500000px;}
.ya8{bottom:388.500000px;}
.y1c{bottom:396.000000px;}
.y72{bottom:399.000000px;}
.y3f{bottom:403.500000px;}
.y95{bottom:417.000000px;}
.y71{bottom:418.500000px;}
.y3e{bottom:429.000000px;}
.y70{bottom:438.000000px;}
.y3d{bottom:454.500000px;}
.y6f{bottom:457.500000px;}
.y1b{bottom:462.000000px;}
.y94{bottom:466.500000px;}
.y6e{bottom:477.000000px;}
.y3c{bottom:480.000000px;}
.ya7{bottom:487.500000px;}
.y6d{bottom:496.500000px;}
.y3b{bottom:505.500000px;}
.y88{bottom:507.000000px;}
.y6c{bottom:516.000000px;}
.y1a{bottom:528.000000px;}
.y3a{bottom:531.000000px;}
.y6b{bottom:535.500000px;}
.ya6{bottom:537.000000px;}
.y6a{bottom:555.000000px;}
.y39{bottom:556.500000px;}
.yb5{bottom:564.000000px;}
.y93{bottom:565.500000px;}
.y87{bottom:573.000000px;}
.y69{bottom:574.500000px;}
.y38{bottom:582.000000px;}
.ya5{bottom:586.500000px;}
.ye{bottom:591.000000px;}
.y19{bottom:594.000000px;}
.y37{bottom:607.500000px;}
.y68{bottom:613.500000px;}
.y92{bottom:615.000000px;}
.y36{bottom:633.000000px;}
.ya4{bottom:636.000000px;}
.y86{bottom:639.000000px;}
.yb4{bottom:648.000000px;}
.y67{bottom:652.500000px;}
.y35{bottom:658.500000px;}
.y18{bottom:660.000000px;}
.y91{bottom:664.500000px;}
.y66{bottom:672.000000px;}
.y34{bottom:684.000000px;}
.ya3{bottom:685.500000px;}
.y65{bottom:691.500000px;}
.y85{bottom:705.000000px;}
.y33{bottom:709.500000px;}
.y64{bottom:711.000000px;}
.y90{bottom:714.000000px;}
.y17{bottom:726.000000px;}
.y63{bottom:730.500000px;}
.yb3{bottom:732.000000px;}
.y32{bottom:735.000000px;}
.y62{bottom:750.000000px;}
.yd{bottom:756.000000px;}
.y31{bottom:760.500000px;}
.y8f{bottom:763.500000px;}
.y61{bottom:769.500000px;}
.y84{bottom:771.000000px;}
.ya2{bottom:784.500000px;}
.y30{bottom:786.000000px;}
.y60{bottom:789.000000px;}
.y16{bottom:792.000000px;}
.y5f{bottom:808.500000px;}
.y2f{bottom:811.500000px;}
.y8e{bottom:813.000000px;}
.yb2{bottom:816.000000px;}
.y5e{bottom:828.000000px;}
.ya1{bottom:834.000000px;}
.y2e{bottom:837.000000px;}
.y5d{bottom:847.500000px;}
.y15{bottom:858.000000px;}
.y2d{bottom:862.500000px;}
.y5c{bottom:867.000000px;}
.ya0{bottom:883.500000px;}
.y5b{bottom:886.500000px;}
.y2c{bottom:888.000000px;}
.yb1{bottom:900.000000px;}
.y83{bottom:903.000000px;}
.y5a{bottom:906.000000px;}
.y8d{bottom:912.000000px;}
.y2b{bottom:913.500000px;}
.yf{bottom:921.000000px;}
.yc{bottom:921.000046px;}
.y14{bottom:924.000000px;}
.y59{bottom:925.500000px;}
.y9f{bottom:933.000000px;}
.y2a{bottom:939.000000px;}
.y58{bottom:945.000000px;}
.y8c{bottom:961.500000px;}
.y29{bottom:964.500000px;}
.y82{bottom:969.000000px;}
.y9e{bottom:982.500000px;}
.y57{bottom:984.000000px;}
.y13{bottom:990.000000px;}
.y56{bottom:1003.500000px;}
.y8b{bottom:1011.000000px;}
.y28{bottom:1015.500000px;}
.y55{bottom:1023.000000px;}
.y9d{bottom:1032.000000px;}
.y81{bottom:1035.000000px;}
.y27{bottom:1041.000000px;}
.y54{bottom:1042.500000px;}
.y12{bottom:1056.000000px;}
.y8a{bottom:1060.500000px;}
.y53{bottom:1062.000000px;}
.y26{bottom:1066.500000px;}
.yb0{bottom:1068.000000px;}
.y52{bottom:1081.500000px;}
.yb{bottom:1086.000000px;}
.y25{bottom:1092.000000px;}
.y51{bottom:1101.000000px;}
.y89{bottom:1110.000000px;}
.y24{bottom:1117.500000px;}
.y50{bottom:1120.500000px;}
.ya{bottom:1125.000000px;}
.y9c{bottom:1131.000000px;}
.y4f{bottom:1140.000000px;}
.y23{bottom:1143.000000px;}
.yaf{bottom:1152.000000px;}
.y4e{bottom:1159.500000px;}
.y80{bottom:1167.000000px;}
.y22{bottom:1168.500000px;}
.y4d{bottom:1179.000000px;}
.y9b{bottom:1180.500000px;}
.y21{bottom:1194.000000px;}
.y4c{bottom:1198.500000px;}
.y9{bottom:1250.999978px;}
.y2{bottom:1251.000000px;}
.y10{bottom:1251.000022px;}
.yb6{bottom:1340.999967px;}
.y11{bottom:1340.999990px;}
.yae{bottom:1341.000000px;}
.y1e{bottom:1341.000012px;}
.y4b{bottom:1341.000022px;}
.y1{bottom:1409.999965px;}
.y5{bottom:1576.500025px;}
.hb{height:68.400000px;}
.h7{height:85.500000px;}
.h6{height:114.000000px;}
.h5{height:114.000138px;}
.hc{height:171.000000px;}
.ha{height:228.000000px;}
.h4{height:285.000000px;}
.h8{height:399.000000px;}
.h3{height:456.000000px;}
.h2{height:570.000000px;}
.h1{height:775.200000px;}
.h9{height:1230.000000px;}
.h0{height:1620.000000px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x1{left:15.000000px;}
.x8{left:16.500000px;}
.x9{left:552.000000px;}
.x2{left:841.486817px;}
.x3{left:1092.688476px;}
.x6{left:1413.000000px;}
.x7{left:1500.000000px;}
.x5{left:2229.111329px;}
.x4{left:2234.890137px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:586.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-5861.949708pt;}
._16{margin-left:-5792.381740pt;}
._1f{margin-left:-1168.708439pt;}
._9{margin-left:-57.537435pt;}
._0{margin-left:-43.928019pt;}
._1b{margin-left:-28.961752pt;}
._20{margin-left:-27.947219pt;}
._1c{margin-left:-26.751562pt;}
._18{margin-left:-25.315023pt;}
._e{margin-left:-24.172974pt;}
._15{margin-left:-22.047688pt;}
._1d{margin-left:-19.910848pt;}
._5{margin-left:-19.011719pt;}
._4{margin-left:-17.549805pt;}
._1a{margin-left:-16.149592pt;}
._8{margin-left:-15.112630pt;}
._1e{margin-left:-13.577549pt;}
._b{margin-left:-12.508342pt;}
._19{margin-left:-11.595820pt;}
._12{margin-left:-10.698140pt;}
._a{margin-left:-9.558268pt;}
._1{margin-left:-8.273356pt;}
._2{margin-left:-7.361003pt;}
._10{margin-left:-6.460007pt;}
._6{margin-left:-5.379191pt;}
._3{margin-left:-4.233073pt;}
._7{margin-left:-2.470866pt;}
._c{margin-left:-1.168783pt;}
._11{width:260.088178pt;}
._13{width:1107.303588pt;}
._17{width:1226.762742pt;}
._21{width:3585.550345pt;}
._14{width:5615.006406pt;}
._d{width:6129.708805pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs4{font-size:106.666667pt;}
.fs9{font-size:160.000000pt;}
.fs7{font-size:213.333333pt;}
.fs3{font-size:266.666667pt;}
.fs6{font-size:373.333333pt;}
.fs2{font-size:426.666667pt;}
.fs1{font-size:533.333333pt;}
.fs0{font-size:725.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:13.333333pt;}
.y4{bottom:29.333333pt;}
.y4a{bottom:86.666667pt;}
.y3{bottom:105.333333pt;}
.y7{bottom:106.666667pt;}
.y49{bottom:109.333333pt;}
.y7f{bottom:112.000000pt;}
.yad{bottom:125.333333pt;}
.y7e{bottom:129.333333pt;}
.y8{bottom:132.000000pt;}
.y7d{bottom:146.666667pt;}
.y9a{bottom:150.666667pt;}
.y48{bottom:154.666667pt;}
.y7c{bottom:164.000000pt;}
.yac{bottom:169.333333pt;}
.y20{bottom:176.000000pt;}
.y47{bottom:177.333333pt;}
.y7b{bottom:181.333333pt;}
.y99{bottom:194.666667pt;}
.y7a{bottom:198.666667pt;}
.y46{bottom:200.000000pt;}
.yab{bottom:213.333333pt;}
.y79{bottom:216.000000pt;}
.y45{bottom:222.666667pt;}
.yb7{bottom:232.000000pt;}
.y78{bottom:233.333333pt;}
.y1f{bottom:234.666667pt;}
.y98{bottom:238.666667pt;}
.y44{bottom:245.333333pt;}
.y77{bottom:250.666667pt;}
.yaa{bottom:257.333333pt;}
.y43{bottom:268.000000pt;}
.y97{bottom:282.666667pt;}
.y76{bottom:285.333333pt;}
.y42{bottom:290.666667pt;}
.y1d{bottom:293.333333pt;}
.ya9{bottom:301.333333pt;}
.y75{bottom:302.666667pt;}
.y41{bottom:313.333333pt;}
.y74{bottom:320.000000pt;}
.y96{bottom:326.666667pt;}
.y40{bottom:336.000000pt;}
.y73{bottom:337.333333pt;}
.ya8{bottom:345.333333pt;}
.y1c{bottom:352.000000pt;}
.y72{bottom:354.666667pt;}
.y3f{bottom:358.666667pt;}
.y95{bottom:370.666667pt;}
.y71{bottom:372.000000pt;}
.y3e{bottom:381.333333pt;}
.y70{bottom:389.333333pt;}
.y3d{bottom:404.000000pt;}
.y6f{bottom:406.666667pt;}
.y1b{bottom:410.666667pt;}
.y94{bottom:414.666667pt;}
.y6e{bottom:424.000000pt;}
.y3c{bottom:426.666667pt;}
.ya7{bottom:433.333333pt;}
.y6d{bottom:441.333333pt;}
.y3b{bottom:449.333333pt;}
.y88{bottom:450.666667pt;}
.y6c{bottom:458.666667pt;}
.y1a{bottom:469.333333pt;}
.y3a{bottom:472.000000pt;}
.y6b{bottom:476.000000pt;}
.ya6{bottom:477.333333pt;}
.y6a{bottom:493.333333pt;}
.y39{bottom:494.666667pt;}
.yb5{bottom:501.333333pt;}
.y93{bottom:502.666667pt;}
.y87{bottom:509.333333pt;}
.y69{bottom:510.666667pt;}
.y38{bottom:517.333333pt;}
.ya5{bottom:521.333333pt;}
.ye{bottom:525.333333pt;}
.y19{bottom:528.000000pt;}
.y37{bottom:540.000000pt;}
.y68{bottom:545.333333pt;}
.y92{bottom:546.666667pt;}
.y36{bottom:562.666667pt;}
.ya4{bottom:565.333333pt;}
.y86{bottom:568.000000pt;}
.yb4{bottom:576.000000pt;}
.y67{bottom:580.000000pt;}
.y35{bottom:585.333333pt;}
.y18{bottom:586.666667pt;}
.y91{bottom:590.666667pt;}
.y66{bottom:597.333333pt;}
.y34{bottom:608.000000pt;}
.ya3{bottom:609.333333pt;}
.y65{bottom:614.666667pt;}
.y85{bottom:626.666667pt;}
.y33{bottom:630.666667pt;}
.y64{bottom:632.000000pt;}
.y90{bottom:634.666667pt;}
.y17{bottom:645.333333pt;}
.y63{bottom:649.333333pt;}
.yb3{bottom:650.666667pt;}
.y32{bottom:653.333333pt;}
.y62{bottom:666.666667pt;}
.yd{bottom:672.000000pt;}
.y31{bottom:676.000000pt;}
.y8f{bottom:678.666667pt;}
.y61{bottom:684.000000pt;}
.y84{bottom:685.333333pt;}
.ya2{bottom:697.333333pt;}
.y30{bottom:698.666667pt;}
.y60{bottom:701.333333pt;}
.y16{bottom:704.000000pt;}
.y5f{bottom:718.666667pt;}
.y2f{bottom:721.333333pt;}
.y8e{bottom:722.666667pt;}
.yb2{bottom:725.333333pt;}
.y5e{bottom:736.000000pt;}
.ya1{bottom:741.333333pt;}
.y2e{bottom:744.000000pt;}
.y5d{bottom:753.333333pt;}
.y15{bottom:762.666667pt;}
.y2d{bottom:766.666667pt;}
.y5c{bottom:770.666667pt;}
.ya0{bottom:785.333333pt;}
.y5b{bottom:788.000000pt;}
.y2c{bottom:789.333333pt;}
.yb1{bottom:800.000000pt;}
.y83{bottom:802.666667pt;}
.y5a{bottom:805.333333pt;}
.y8d{bottom:810.666667pt;}
.y2b{bottom:812.000000pt;}
.yf{bottom:818.666667pt;}
.yc{bottom:818.666708pt;}
.y14{bottom:821.333333pt;}
.y59{bottom:822.666667pt;}
.y9f{bottom:829.333333pt;}
.y2a{bottom:834.666667pt;}
.y58{bottom:840.000000pt;}
.y8c{bottom:854.666667pt;}
.y29{bottom:857.333333pt;}
.y82{bottom:861.333333pt;}
.y9e{bottom:873.333333pt;}
.y57{bottom:874.666667pt;}
.y13{bottom:880.000000pt;}
.y56{bottom:892.000000pt;}
.y8b{bottom:898.666667pt;}
.y28{bottom:902.666667pt;}
.y55{bottom:909.333333pt;}
.y9d{bottom:917.333333pt;}
.y81{bottom:920.000000pt;}
.y27{bottom:925.333333pt;}
.y54{bottom:926.666667pt;}
.y12{bottom:938.666667pt;}
.y8a{bottom:942.666667pt;}
.y53{bottom:944.000000pt;}
.y26{bottom:948.000000pt;}
.yb0{bottom:949.333333pt;}
.y52{bottom:961.333333pt;}
.yb{bottom:965.333333pt;}
.y25{bottom:970.666667pt;}
.y51{bottom:978.666667pt;}
.y89{bottom:986.666667pt;}
.y24{bottom:993.333333pt;}
.y50{bottom:996.000000pt;}
.ya{bottom:1000.000000pt;}
.y9c{bottom:1005.333333pt;}
.y4f{bottom:1013.333333pt;}
.y23{bottom:1016.000000pt;}
.yaf{bottom:1024.000000pt;}
.y4e{bottom:1030.666667pt;}
.y80{bottom:1037.333333pt;}
.y22{bottom:1038.666667pt;}
.y4d{bottom:1048.000000pt;}
.y9b{bottom:1049.333333pt;}
.y21{bottom:1061.333333pt;}
.y4c{bottom:1065.333333pt;}
.y9{bottom:1111.999980pt;}
.y2{bottom:1112.000000pt;}
.y10{bottom:1112.000020pt;}
.yb6{bottom:1191.999971pt;}
.y11{bottom:1191.999991pt;}
.yae{bottom:1192.000000pt;}
.y1e{bottom:1192.000011pt;}
.y4b{bottom:1192.000020pt;}
.y1{bottom:1253.333303pt;}
.y5{bottom:1401.333356pt;}
.hb{height:60.800000pt;}
.h7{height:76.000000pt;}
.h6{height:101.333333pt;}
.h5{height:101.333456pt;}
.hc{height:152.000000pt;}
.ha{height:202.666667pt;}
.h4{height:253.333333pt;}
.h8{height:354.666667pt;}
.h3{height:405.333333pt;}
.h2{height:506.666667pt;}
.h1{height:689.066667pt;}
.h9{height:1093.333333pt;}
.h0{height:1440.000000pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x1{left:13.333333pt;}
.x8{left:14.666667pt;}
.x9{left:490.666667pt;}
.x2{left:747.988281pt;}
.x3{left:971.278645pt;}
.x6{left:1256.000000pt;}
.x7{left:1333.333333pt;}
.x5{left:1981.432292pt;}
.x4{left:1986.569011pt;}
}




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