
    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_49a6811a416c59009cfd133f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.214355;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_a708c6d6a93404b5839dd8e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.894043;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_fc4df4fb65af3409dd6f8ce3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.317383;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_9f818641947b0ff100b492bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.197754;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_2b86ae60c8f03cca5dd912e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.083984;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_f0927dd9a9cd25ea95fe3a83.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.197754;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;}
.v1{vertical-align:20.880000px;}
.ls6{letter-spacing:-0.453000px;}
.ls7{letter-spacing:-0.313200px;}
.ls9{letter-spacing:-0.276000px;}
.lsb{letter-spacing:-0.093000px;}
.lsa{letter-spacing:-0.043920px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024120px;}
.ls0{letter-spacing:0.046800px;}
.ls8{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.083880px;}
.ls4{letter-spacing:0.084000px;}
.lsc{letter-spacing:0.115800px;}
.lsd{letter-spacing:0.124920px;}
.ls3{letter-spacing:4.403880px;}
.lse{letter-spacing:11.620080px;}
.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:-32.292000px;}
.ws9{word-spacing:-26.092080px;}
.ws2{word-spacing:-25.778880px;}
.ws4{word-spacing:-20.779920px;}
.ws3{word-spacing:-18.022680px;}
.ws1{word-spacing:-17.975880px;}
.ws8{word-spacing:-17.931960px;}
.ws7{word-spacing:-17.662680px;}
.ws6{word-spacing:-14.370120px;}
.ws5{word-spacing:-14.316120px;}
.wsa{word-spacing:0.000000px;}
._1{margin-left:-1.022040px;}
._2{width:1.149120px;}
._f{width:2.150640px;}
._6{width:3.460440px;}
._5{width:4.537080px;}
._7{width:5.671200px;}
._8{width:6.711720px;}
._d{width:7.902480px;}
._4{width:9.300600px;}
._3{width:10.532520px;}
._13{width:11.778480px;}
._12{width:13.466880px;}
._10{width:14.669280px;}
._11{width:15.932280px;}
._e{width:21.943800px;}
._c{width:24.589080px;}
._b{width:107.747280px;}
._9{width:139.156200px;}
._a{width:198.203880px;}
._0{width:382.344120px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:11.880000px;}
.fs8{font-size:18.000000px;}
.fsa{font-size:24.120000px;}
.fs6{font-size:29.880000px;}
.fs3{font-size:36.000000px;}
.fsb{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:96.120000px;}
.fs4{font-size:108.000000px;}
.y59{bottom:-0.090000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:4.050000px;}
.y5f{bottom:5.130000px;}
.y9{bottom:7.830000px;}
.y3{bottom:11.250000px;}
.y5c{bottom:24.210000px;}
.y2{bottom:27.720000px;}
.y5b{bottom:41.040000px;}
.y8{bottom:42.030000px;}
.yc{bottom:57.240000px;}
.y7{bottom:63.000000px;}
.yb{bottom:77.940000px;}
.y6{bottom:82.080000px;}
.y4{bottom:92.160000px;}
.y5{bottom:95.670000px;}
.y41{bottom:117.000000px;}
.y40{bottom:137.700000px;}
.y3f{bottom:157.770000px;}
.y3e{bottom:175.500000px;}
.y3d{bottom:196.470000px;}
.y3c{bottom:216.300000px;}
.y3b{bottom:234.120000px;}
.y3a{bottom:255.000000px;}
.y39{bottom:274.350000px;}
.y38{bottom:285.960000px;}
.y37{bottom:312.060000px;}
.y5a{bottom:331.230000px;}
.y36{bottom:335.460000px;}
.y35{bottom:353.100000px;}
.y34{bottom:374.160000px;}
.y33{bottom:394.050000px;}
.y58{bottom:396.210000px;}
.y32{bottom:407.190000px;}
.y31{bottom:433.380000px;}
.y30{bottom:456.690000px;}
.y2f{bottom:474.330000px;}
.y2e{bottom:495.210000px;}
.y2d{bottom:516.090000px;}
.y2c{bottom:537.150000px;}
.y2b{bottom:557.940000px;}
.y2a{bottom:578.820000px;}
.y29{bottom:599.700000px;}
.y28{bottom:620.760000px;}
.y27{bottom:638.070000px;}
.y26{bottom:643.920000px;}
.y25{bottom:655.710000px;}
.y24{bottom:665.880000px;}
.y23{bottom:682.620000px;}
.y22{bottom:696.570000px;}
.y21{bottom:703.410000px;}
.y20{bottom:717.450000px;}
.y1f{bottom:724.290000px;}
.y57{bottom:735.180000px;}
.y1e{bottom:741.120000px;}
.y56{bottom:756.060000px;}
.y1d{bottom:757.770000px;}
.y1c{bottom:774.600000px;}
.y55{bottom:777.030000px;}
.y1b{bottom:791.340000px;}
.y54{bottom:797.910000px;}
.y1a{bottom:807.990000px;}
.y53{bottom:818.790000px;}
.y19{bottom:824.640000px;}
.y52{bottom:839.670000px;}
.y18{bottom:841.470000px;}
.y17{bottom:858.120000px;}
.y51{bottom:860.640000px;}
.y16{bottom:874.950000px;}
.y50{bottom:881.520000px;}
.y15{bottom:891.960000px;}
.y4f{bottom:902.400000px;}
.y14{bottom:909.420000px;}
.y5e{bottom:917.250000px;}
.y13{bottom:922.920000px;}
.y4e{bottom:923.280000px;}
.y4d{bottom:944.250000px;}
.y12{bottom:944.880000px;}
.y11{bottom:958.020000px;}
.y4c{bottom:965.130000px;}
.y10{bottom:981.420000px;}
.y4b{bottom:986.010000px;}
.yf{bottom:1001.670000px;}
.y4a{bottom:1006.890000px;}
.y49{bottom:1027.860000px;}
.ye{bottom:1035.060000px;}
.y48{bottom:1048.920000px;}
.yd{bottom:1065.060000px;}
.y47{bottom:1069.650000px;}
.ya{bottom:1082.340000px;}
.y46{bottom:1089.720000px;}
.y1{bottom:1098.900000px;}
.y45{bottom:1107.450000px;}
.y44{bottom:1128.240000px;}
.y43{bottom:1148.760000px;}
.y42{bottom:1172.610000px;}
.he{height:10.963477px;}
.hf{height:22.259180px;}
.h15{height:24.930000px;}
.hc{height:27.574805px;}
.h7{height:33.222656px;}
.h12{height:38.870508px;}
.h9{height:44.186133px;}
.h6{height:49.469766px;}
.hd{height:49.833984px;}
.h5{height:50.273438px;}
.h14{height:54.090000px;}
.h11{height:54.953437px;}
.h3{height:55.481836px;}
.h10{height:62.116172px;}
.hb{height:66.445312px;}
.ha{height:88.704492px;}
.h2{height:108.717000px;}
.h4{height:108.720000px;}
.h8{height:111.585938px;}
.h13{height:559.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:33.772500px;}
.w3{width:42.570000px;}
.w2{width:337.740000px;}
.w4{width:367.320000px;}
.w6{width:743.218500px;}
.w5{width:750.150000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x16{left:10.798500px;}
.x9{left:14.310000px;}
.x3{left:20.340000px;}
.x1{left:72.720000px;}
.x14{left:78.300000px;}
.xa{left:80.820000px;}
.x17{left:95.581500px;}
.xd{left:98.820000px;}
.x8{left:103.410000px;}
.x13{left:122.520000px;}
.x11{left:133.950000px;}
.x2{left:174.630000px;}
.x10{left:252.030000px;}
.x7{left:259.680000px;}
.x12{left:295.770000px;}
.xf{left:345.360000px;}
.x4{left:410.460000px;}
.xe{left:416.940000px;}
.xc{left:446.550000px;}
.x6{left:453.030000px;}
.x15{left:731.790000px;}
.xb{left:785.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6{letter-spacing:-0.402667pt;}
.ls7{letter-spacing:-0.278400pt;}
.ls9{letter-spacing:-0.245333pt;}
.lsb{letter-spacing:-0.082667pt;}
.lsa{letter-spacing:-0.039040pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021440pt;}
.ls0{letter-spacing:0.041600pt;}
.ls8{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.074560pt;}
.ls4{letter-spacing:0.074667pt;}
.lsc{letter-spacing:0.102933pt;}
.lsd{letter-spacing:0.111040pt;}
.ls3{letter-spacing:3.914560pt;}
.lse{letter-spacing:10.328960pt;}
.ws0{word-spacing:-28.704000pt;}
.ws9{word-spacing:-23.192960pt;}
.ws2{word-spacing:-22.914560pt;}
.ws4{word-spacing:-18.471040pt;}
.ws3{word-spacing:-16.020160pt;}
.ws1{word-spacing:-15.978560pt;}
.ws8{word-spacing:-15.939520pt;}
.ws7{word-spacing:-15.700160pt;}
.ws6{word-spacing:-12.773440pt;}
.ws5{word-spacing:-12.725440pt;}
.wsa{word-spacing:0.000000pt;}
._1{margin-left:-0.908480pt;}
._2{width:1.021440pt;}
._f{width:1.911680pt;}
._6{width:3.075947pt;}
._5{width:4.032960pt;}
._7{width:5.041067pt;}
._8{width:5.965973pt;}
._d{width:7.024427pt;}
._4{width:8.267200pt;}
._3{width:9.362240pt;}
._13{width:10.469760pt;}
._12{width:11.970560pt;}
._10{width:13.039360pt;}
._11{width:14.162027pt;}
._e{width:19.505600pt;}
._c{width:21.856960pt;}
._b{width:95.775360pt;}
._9{width:123.694400pt;}
._a{width:176.181227pt;}
._0{width:339.861440pt;}
.fs9{font-size:10.560000pt;}
.fs8{font-size:16.000000pt;}
.fsa{font-size:21.440000pt;}
.fs6{font-size:26.560000pt;}
.fs3{font-size:32.000000pt;}
.fsb{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:85.440000pt;}
.fs4{font-size:96.000000pt;}
.y59{bottom:-0.080000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:3.600000pt;}
.y5f{bottom:4.560000pt;}
.y9{bottom:6.960000pt;}
.y3{bottom:10.000000pt;}
.y5c{bottom:21.520000pt;}
.y2{bottom:24.640000pt;}
.y5b{bottom:36.480000pt;}
.y8{bottom:37.360000pt;}
.yc{bottom:50.880000pt;}
.y7{bottom:56.000000pt;}
.yb{bottom:69.280000pt;}
.y6{bottom:72.960000pt;}
.y4{bottom:81.920000pt;}
.y5{bottom:85.040000pt;}
.y41{bottom:104.000000pt;}
.y40{bottom:122.400000pt;}
.y3f{bottom:140.240000pt;}
.y3e{bottom:156.000000pt;}
.y3d{bottom:174.640000pt;}
.y3c{bottom:192.266667pt;}
.y3b{bottom:208.106667pt;}
.y3a{bottom:226.666667pt;}
.y39{bottom:243.866667pt;}
.y38{bottom:254.186667pt;}
.y37{bottom:277.386667pt;}
.y5a{bottom:294.426667pt;}
.y36{bottom:298.186667pt;}
.y35{bottom:313.866667pt;}
.y34{bottom:332.586667pt;}
.y33{bottom:350.266667pt;}
.y58{bottom:352.186667pt;}
.y32{bottom:361.946667pt;}
.y31{bottom:385.226667pt;}
.y30{bottom:405.946667pt;}
.y2f{bottom:421.626667pt;}
.y2e{bottom:440.186667pt;}
.y2d{bottom:458.746667pt;}
.y2c{bottom:477.466667pt;}
.y2b{bottom:495.946667pt;}
.y2a{bottom:514.506667pt;}
.y29{bottom:533.066667pt;}
.y28{bottom:551.786667pt;}
.y27{bottom:567.173333pt;}
.y26{bottom:572.373333pt;}
.y25{bottom:582.853333pt;}
.y24{bottom:591.893333pt;}
.y23{bottom:606.773333pt;}
.y22{bottom:619.173333pt;}
.y21{bottom:625.253333pt;}
.y20{bottom:637.733333pt;}
.y1f{bottom:643.813333pt;}
.y57{bottom:653.493333pt;}
.y1e{bottom:658.773333pt;}
.y56{bottom:672.053333pt;}
.y1d{bottom:673.573333pt;}
.y1c{bottom:688.533333pt;}
.y55{bottom:690.693333pt;}
.y1b{bottom:703.413333pt;}
.y54{bottom:709.253333pt;}
.y1a{bottom:718.213333pt;}
.y53{bottom:727.813333pt;}
.y19{bottom:733.013333pt;}
.y52{bottom:746.373333pt;}
.y18{bottom:747.973333pt;}
.y17{bottom:762.773333pt;}
.y51{bottom:765.013333pt;}
.y16{bottom:777.733333pt;}
.y50{bottom:783.573333pt;}
.y15{bottom:792.853333pt;}
.y4f{bottom:802.133333pt;}
.y14{bottom:808.373333pt;}
.y5e{bottom:815.333333pt;}
.y13{bottom:820.373333pt;}
.y4e{bottom:820.693333pt;}
.y4d{bottom:839.333333pt;}
.y12{bottom:839.893333pt;}
.y11{bottom:851.573333pt;}
.y4c{bottom:857.893333pt;}
.y10{bottom:872.373333pt;}
.y4b{bottom:876.453333pt;}
.yf{bottom:890.373333pt;}
.y4a{bottom:895.013333pt;}
.y49{bottom:913.653333pt;}
.ye{bottom:920.053333pt;}
.y48{bottom:932.373333pt;}
.yd{bottom:946.720000pt;}
.y47{bottom:950.800000pt;}
.ya{bottom:962.080000pt;}
.y46{bottom:968.640000pt;}
.y1{bottom:976.800000pt;}
.y45{bottom:984.400000pt;}
.y44{bottom:1002.880000pt;}
.y43{bottom:1021.120000pt;}
.y42{bottom:1042.320000pt;}
.he{height:9.745312pt;}
.hf{height:19.785937pt;}
.h15{height:22.160000pt;}
.hc{height:24.510938pt;}
.h7{height:29.531250pt;}
.h12{height:34.551562pt;}
.h9{height:39.276563pt;}
.h6{height:43.973125pt;}
.hd{height:44.296875pt;}
.h5{height:44.687500pt;}
.h14{height:48.080000pt;}
.h11{height:48.847500pt;}
.h3{height:49.317187pt;}
.h10{height:55.214375pt;}
.hb{height:59.062500pt;}
.ha{height:78.848438pt;}
.h2{height:96.637333pt;}
.h4{height:96.640000pt;}
.h8{height:99.187500pt;}
.h13{height:497.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:30.020000pt;}
.w3{width:37.840000pt;}
.w2{width:300.213333pt;}
.w4{width:326.506667pt;}
.w6{width:660.638667pt;}
.w5{width:666.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x16{left:9.598667pt;}
.x9{left:12.720000pt;}
.x3{left:18.080000pt;}
.x1{left:64.640000pt;}
.x14{left:69.600000pt;}
.xa{left:71.840000pt;}
.x17{left:84.961333pt;}
.xd{left:87.840000pt;}
.x8{left:91.920000pt;}
.x13{left:108.906667pt;}
.x11{left:119.066667pt;}
.x2{left:155.226667pt;}
.x10{left:224.026667pt;}
.x7{left:230.826667pt;}
.x12{left:262.906667pt;}
.xf{left:306.986667pt;}
.x4{left:364.853333pt;}
.xe{left:370.613333pt;}
.xc{left:396.933333pt;}
.x6{left:402.693333pt;}
.x15{left:650.480000pt;}
.xb{left:698.080000pt;}
}




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