
    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_beeaf93f1bddbe5bb80cc9f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061035;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_537582db5f9d8d0810f53c51.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_c6d8879cc7f6a3e14cfa49ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.968262;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_d59b2650d03ac1f4343a91c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_03987a0055c12fe6ffa493e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_a5e7616af97ff4d89f1ec46a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_05cd1355e58c3826a1c5568d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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;}
.ls2{letter-spacing:-0.452400px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.498000px;}
.ls1{letter-spacing:0.666000px;}
.ls4{letter-spacing:7.920000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-13.680000px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:2.429280px;}
._e{margin-left:-2.334240px;}
._2{margin-left:-1.296000px;}
._1{width:1.224000px;}
._3{width:2.372640px;}
._6{width:3.891360px;}
._1c{width:5.142240px;}
._7{width:6.336000px;}
._10{width:8.352000px;}
._f{width:9.360000px;}
._12{width:11.399520px;}
._11{width:13.422240px;}
._b{width:14.760000px;}
._1b{width:15.840000px;}
._4{width:16.920000px;}
._0{width:18.390240px;}
._5{width:20.304000px;}
._a{width:22.248000px;}
._1a{width:23.316480px;}
._1d{width:24.406080px;}
._1e{width:26.022240px;}
._1f{width:28.864800px;}
._17{width:30.012480px;}
._d{width:31.608000px;}
._14{width:33.234240px;}
._13{width:34.506240px;}
._9{width:36.504000px;}
._19{width:37.656000px;}
._18{width:38.952000px;}
._c{width:41.256000px;}
._16{width:58.752000px;}
._15{width:59.904000px;}
._8{width:78.192000px;}
.fc3{color:transparent;}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:72.144000px;}
.fs3{font-size:83.520000px;}
.yc{bottom:-19.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:22.500000px;}
.ya{bottom:43.740000px;}
.y3{bottom:57.240000px;}
.y9{bottom:64.260000px;}
.y2{bottom:76.680000px;}
.y8{bottom:85.170000px;}
.y7{bottom:105.690000px;}
.y2f{bottom:110.556000px;}
.y69{bottom:111.996000px;}
.y2e{bottom:115.956000px;}
.y6{bottom:126.570000px;}
.y2d{bottom:126.756000px;}
.y68{bottom:135.756000px;}
.y50{bottom:138.996000px;}
.y5{bottom:147.090000px;}
.y7c{bottom:158.430000px;}
.y7b{bottom:176.070000px;}
.y4f{bottom:177.870000px;}
.y67{bottom:180.750000px;}
.y2c{bottom:183.990000px;}
.y4e{bottom:201.630000px;}
.y66{bottom:204.555000px;}
.y2b{bottom:207.795000px;}
.y7a{bottom:209.235000px;}
.y4d{bottom:225.435000px;}
.y79{bottom:226.515000px;}
.y65{bottom:228.315000px;}
.y2a{bottom:231.555000px;}
.y78{bottom:244.515000px;}
.y4c{bottom:249.195000px;}
.y77{bottom:262.515000px;}
.y4b{bottom:272.955000px;}
.y29{bottom:276.555000px;}
.y76{bottom:280.155000px;}
.y4a{bottom:297.075000px;}
.y28{bottom:300.315000px;}
.y75{bottom:315.795000px;}
.y64{bottom:317.955000px;}
.y49{bottom:320.865000px;}
.y27{bottom:324.105000px;}
.y63{bottom:341.745000px;}
.y48{bottom:344.625000px;}
.y74{bottom:350.385000px;}
.y62{bottom:365.505000px;}
.y47{bottom:368.385000px;}
.y26{bottom:368.745000px;}
.y73{bottom:374.505000px;}
.y61{bottom:389.265000px;}
.y46{bottom:392.145000px;}
.y25{bottom:392.505000px;}
.y72{bottom:398.265000px;}
.y24{bottom:416.265000px;}
.y60{bottom:434.265000px;}
.y45{bottom:436.830000px;}
.y23{bottom:440.430000px;}
.y44{bottom:460.950000px;}
.y22{bottom:464.190000px;}
.y5f{bottom:478.950000px;}
.y43{bottom:484.710000px;}
.y5e{bottom:502.710000px;}
.y42{bottom:508.470000px;}
.y21{bottom:508.830000px;}
.y41{bottom:532.230000px;}
.y5d{bottom:547.710000px;}
.y20{bottom:550.230000px;}
.y40{bottom:556.020000px;}
.y5c{bottom:571.500000px;}
.y71{bottom:576.900000px;}
.y1f{bottom:577.620000px;}
.y4{bottom:590.760000px;}
.y5b{bottom:595.260000px;}
.y3f{bottom:601.020000px;}
.y1e{bottom:601.380000px;}
.y5a{bottom:619.020000px;}
.y70{bottom:621.900000px;}
.y3e{bottom:624.780000px;}
.y1d{bottom:625.140000px;}
.y59{bottom:642.780000px;}
.y6f{bottom:645.660000px;}
.y3d{bottom:648.540000px;}
.y1c{bottom:648.900000px;}
.y58{bottom:666.540000px;}
.y3c{bottom:672.330000px;}
.y1b{bottom:672.690000px;}
.y57{bottom:690.330000px;}
.y1a{bottom:696.450000px;}
.y56{bottom:714.450000px;}
.y3b{bottom:716.970000px;}
.y19{bottom:720.210000px;}
.y55{bottom:738.210000px;}
.y3a{bottom:740.730000px;}
.y18{bottom:744.330000px;}
.y6e{bottom:761.970000px;}
.y54{bottom:782.850000px;}
.y39{bottom:785.775000px;}
.y17{bottom:789.015000px;}
.y53{bottom:806.655000px;}
.y16{bottom:812.775000px;}
.y38{bottom:830.415000px;}
.y15{bottom:836.535000px;}
.y37{bottom:854.175000px;}
.y14{bottom:860.295000px;}
.y6d{bottom:875.415000px;}
.y36{bottom:878.295000px;}
.y13{bottom:884.415000px;}
.y52{bottom:899.175000px;}
.y12{bottom:908.205000px;}
.y35{bottom:922.965000px;}
.y34{bottom:946.725000px;}
.y11{bottom:952.845000px;}
.y6c{bottom:967.965000px;}
.y33{bottom:970.485000px;}
.y6b{bottom:991.725000px;}
.y32{bottom:994.245000px;}
.yf{bottom:996.765000px;}
.y10{bottom:1002.165000px;}
.y6a{bottom:1015.485000px;}
.y51{bottom:1018.410000px;}
.ye{bottom:1036.410000px;}
.y31{bottom:1039.290000px;}
.yd{bottom:1060.530000px;}
.y30{bottom:1063.050000px;}
.y1{bottom:1118.130000px;}
.ha{height:29.671875px;}
.h7{height:32.045625px;}
.hb{height:45.101250px;}
.h6{height:49.848750px;}
.h9{height:50.027344px;}
.h8{height:50.800781px;}
.hc{height:51.996094px;}
.h1{height:55.825312px;}
.h3{height:59.343750px;}
.h4{height:59.462437px;}
.h5{height:60.315469px;}
.h2{height:163.800000px;}
.h0{height:1188.000000px;}
.w2{width:278.280000px;}
.w3{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:12.090000px;}
.x6{left:22.530000px;}
.x4{left:29.010000px;}
.x8{left:36.210000px;}
.x7{left:44.130000px;}
.x5{left:49.890000px;}
.xa{left:62.490000px;}
.x1{left:135.071986px;}
.xb{left:139.215000px;}
.x17{left:144.071986px;}
.x18{left:152.714986px;}
.xc{left:157.034986px;}
.x14{left:173.954986px;}
.x11{left:189.074986px;}
.xd{left:290.984986px;}
.x16{left:294.944986px;}
.x13{left:351.149986px;}
.x15{left:371.669986px;}
.x19{left:383.909986px;}
.xe{left:399.779986px;}
.x3{left:502.200000px;}
.xf{left:513.209973px;}
.x10{left:518.249986px;}
.x2{left:710.204986px;}
.x12{left:783.329986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.402133pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.442667pt;}
.ls1{letter-spacing:0.592000pt;}
.ls4{letter-spacing:7.040000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.160000pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:2.159360pt;}
._e{margin-left:-2.074880pt;}
._2{margin-left:-1.152000pt;}
._1{width:1.088000pt;}
._3{width:2.109013pt;}
._6{width:3.458987pt;}
._1c{width:4.570880pt;}
._7{width:5.632000pt;}
._10{width:7.424000pt;}
._f{width:8.320000pt;}
._12{width:10.132907pt;}
._11{width:11.930880pt;}
._b{width:13.120000pt;}
._1b{width:14.080000pt;}
._4{width:15.040000pt;}
._0{width:16.346880pt;}
._5{width:18.048000pt;}
._a{width:19.776000pt;}
._1a{width:20.725760pt;}
._1d{width:21.694293pt;}
._1e{width:23.130880pt;}
._1f{width:25.657600pt;}
._17{width:26.677760pt;}
._d{width:28.096000pt;}
._14{width:29.541547pt;}
._13{width:30.672213pt;}
._9{width:32.448000pt;}
._19{width:33.472000pt;}
._18{width:34.624000pt;}
._c{width:36.672000pt;}
._16{width:52.224000pt;}
._15{width:53.248000pt;}
._8{width:69.504000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:64.128000pt;}
.fs3{font-size:74.240000pt;}
.yc{bottom:-17.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:20.000000pt;}
.ya{bottom:38.880000pt;}
.y3{bottom:50.880000pt;}
.y9{bottom:57.120000pt;}
.y2{bottom:68.160000pt;}
.y8{bottom:75.706667pt;}
.y7{bottom:93.946667pt;}
.y2f{bottom:98.272000pt;}
.y69{bottom:99.552000pt;}
.y2e{bottom:103.072000pt;}
.y6{bottom:112.506667pt;}
.y2d{bottom:112.672000pt;}
.y68{bottom:120.672000pt;}
.y50{bottom:123.552000pt;}
.y5{bottom:130.746667pt;}
.y7c{bottom:140.826667pt;}
.y7b{bottom:156.506667pt;}
.y4f{bottom:158.106667pt;}
.y67{bottom:160.666667pt;}
.y2c{bottom:163.546667pt;}
.y4e{bottom:179.226667pt;}
.y66{bottom:181.826667pt;}
.y2b{bottom:184.706667pt;}
.y7a{bottom:185.986667pt;}
.y4d{bottom:200.386667pt;}
.y79{bottom:201.346667pt;}
.y65{bottom:202.946667pt;}
.y2a{bottom:205.826667pt;}
.y78{bottom:217.346667pt;}
.y4c{bottom:221.506667pt;}
.y77{bottom:233.346667pt;}
.y4b{bottom:242.626667pt;}
.y29{bottom:245.826667pt;}
.y76{bottom:249.026667pt;}
.y4a{bottom:264.066667pt;}
.y28{bottom:266.946667pt;}
.y75{bottom:280.706667pt;}
.y64{bottom:282.626667pt;}
.y49{bottom:285.213333pt;}
.y27{bottom:288.093333pt;}
.y63{bottom:303.773333pt;}
.y48{bottom:306.333333pt;}
.y74{bottom:311.453333pt;}
.y62{bottom:324.893333pt;}
.y47{bottom:327.453333pt;}
.y26{bottom:327.773333pt;}
.y73{bottom:332.893333pt;}
.y61{bottom:346.013333pt;}
.y46{bottom:348.573333pt;}
.y25{bottom:348.893333pt;}
.y72{bottom:354.013333pt;}
.y24{bottom:370.013333pt;}
.y60{bottom:386.013333pt;}
.y45{bottom:388.293333pt;}
.y23{bottom:391.493333pt;}
.y44{bottom:409.733333pt;}
.y22{bottom:412.613333pt;}
.y5f{bottom:425.733333pt;}
.y43{bottom:430.853333pt;}
.y5e{bottom:446.853333pt;}
.y42{bottom:451.973333pt;}
.y21{bottom:452.293333pt;}
.y41{bottom:473.093333pt;}
.y5d{bottom:486.853333pt;}
.y20{bottom:489.093333pt;}
.y40{bottom:494.240000pt;}
.y5c{bottom:508.000000pt;}
.y71{bottom:512.800000pt;}
.y1f{bottom:513.440000pt;}
.y4{bottom:525.120000pt;}
.y5b{bottom:529.120000pt;}
.y3f{bottom:534.240000pt;}
.y1e{bottom:534.560000pt;}
.y5a{bottom:550.240000pt;}
.y70{bottom:552.800000pt;}
.y3e{bottom:555.360000pt;}
.y1d{bottom:555.680000pt;}
.y59{bottom:571.360000pt;}
.y6f{bottom:573.920000pt;}
.y3d{bottom:576.480000pt;}
.y1c{bottom:576.800000pt;}
.y58{bottom:592.480000pt;}
.y3c{bottom:597.626667pt;}
.y1b{bottom:597.946667pt;}
.y57{bottom:613.626667pt;}
.y1a{bottom:619.066667pt;}
.y56{bottom:635.066667pt;}
.y3b{bottom:637.306667pt;}
.y19{bottom:640.186667pt;}
.y55{bottom:656.186667pt;}
.y3a{bottom:658.426667pt;}
.y18{bottom:661.626667pt;}
.y6e{bottom:677.306667pt;}
.y54{bottom:695.866667pt;}
.y39{bottom:698.466667pt;}
.y17{bottom:701.346667pt;}
.y53{bottom:717.026667pt;}
.y16{bottom:722.466667pt;}
.y38{bottom:738.146667pt;}
.y15{bottom:743.586667pt;}
.y37{bottom:759.266667pt;}
.y14{bottom:764.706667pt;}
.y6d{bottom:778.146667pt;}
.y36{bottom:780.706667pt;}
.y13{bottom:786.146667pt;}
.y52{bottom:799.266667pt;}
.y12{bottom:807.293333pt;}
.y35{bottom:820.413333pt;}
.y34{bottom:841.533333pt;}
.y11{bottom:846.973333pt;}
.y6c{bottom:860.413333pt;}
.y33{bottom:862.653333pt;}
.y6b{bottom:881.533333pt;}
.y32{bottom:883.773333pt;}
.yf{bottom:886.013333pt;}
.y10{bottom:890.813333pt;}
.y6a{bottom:902.653333pt;}
.y51{bottom:905.253333pt;}
.ye{bottom:921.253333pt;}
.y31{bottom:923.813333pt;}
.yd{bottom:942.693333pt;}
.y30{bottom:944.933333pt;}
.y1{bottom:993.893333pt;}
.ha{height:26.375000pt;}
.h7{height:28.485000pt;}
.hb{height:40.090000pt;}
.h6{height:44.310000pt;}
.h9{height:44.468750pt;}
.h8{height:45.156250pt;}
.hc{height:46.218750pt;}
.h1{height:49.622500pt;}
.h3{height:52.750000pt;}
.h4{height:52.855500pt;}
.h5{height:53.613750pt;}
.h2{height:145.600000pt;}
.h0{height:1056.000000pt;}
.w2{width:247.360000pt;}
.w3{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:10.746667pt;}
.x6{left:20.026667pt;}
.x4{left:25.786667pt;}
.x8{left:32.186667pt;}
.x7{left:39.226667pt;}
.x5{left:44.346667pt;}
.xa{left:55.546667pt;}
.x1{left:120.063988pt;}
.xb{left:123.746667pt;}
.x17{left:128.063988pt;}
.x18{left:135.746655pt;}
.xc{left:139.586655pt;}
.x14{left:154.626655pt;}
.x11{left:168.066655pt;}
.xd{left:258.653321pt;}
.x16{left:262.173321pt;}
.x13{left:312.133321pt;}
.x15{left:330.373321pt;}
.x19{left:341.253321pt;}
.xe{left:355.359988pt;}
.x3{left:446.400000pt;}
.xf{left:456.186642pt;}
.x10{left:460.666655pt;}
.x2{left:631.293321pt;}
.x12{left:696.293321pt;}
}




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