
    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_ccf3c6799dbfa55baad21bc5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_13ba2aa4572f1710d79190ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_452c68d5a5d75ec8faa1526a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_f65479b3beacd40336ec34b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_00a1139b419594b44d2262c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050293;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_5ef5b6725ab4f84cd3441299.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172363;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_94b37b2fa6d71b8a115a0b15.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls5{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.256200px;}
.ls3{letter-spacing:49.961280px;}
.ls4{letter-spacing:849.185760px;}
.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:-66.240000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws0{word-spacing:-15.226440px;}
.ws1{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
._10{margin-left:-4.680000px;}
._9{margin-left:-3.623040px;}
._8{margin-left:-2.361600px;}
._0{margin-left:-1.010880px;}
._1{width:1.195200px;}
._f{width:2.220480px;}
._5{width:3.384000px;}
._6{width:4.680000px;}
._7{width:6.024000px;}
._2{width:7.488000px;}
._3{width:8.712000px;}
._4{width:10.152000px;}
._e{width:11.808000px;}
._13{width:13.536000px;}
._a{width:15.336000px;}
._b{width:16.704000px;}
._11{width:23.688000px;}
._12{width:25.060800px;}
._c{width:30.528000px;}
._d{width:31.840800px;}
._14{width:846.156000px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.480000px;}
.y20{bottom:130.680000px;}
.y6b{bottom:135.720000px;}
.y48{bottom:138.060000px;}
.y54{bottom:151.020000px;}
.y6a{bottom:159.510000px;}
.y47{bottom:162.030000px;}
.y1f{bottom:166.530000px;}
.y69{bottom:183.270000px;}
.y46{bottom:185.790000px;}
.y53{bottom:186.870000px;}
.y1e{bottom:202.350000px;}
.y68{bottom:207.210000px;}
.y45{bottom:209.550000px;}
.y52{bottom:210.630000px;}
.y1d{bottom:226.110000px;}
.y44{bottom:233.310000px;}
.y51{bottom:234.390000px;}
.y67{bottom:243.030000px;}
.y1c{bottom:250.050000px;}
.y50{bottom:258.150000px;}
.y43{bottom:269.130000px;}
.y1b{bottom:273.810000px;}
.y66{bottom:278.670000px;}
.y4f{bottom:282.090000px;}
.y40{bottom:292.350000px;}
.y1a{bottom:297.570000px;}
.y65{bottom:302.610000px;}
.y4e{bottom:305.850000px;}
.y42{bottom:306.750000px;}
.y36{bottom:325.290000px;}
.y64{bottom:326.370000px;}
.y3f{bottom:328.170000px;}
.y4d{bottom:329.610000px;}
.y19{bottom:333.390000px;}
.y41{bottom:335.910000px;}
.y35{bottom:349.050000px;}
.y3e{bottom:351.975000px;}
.y4c{bottom:353.415000px;}
.y63{bottom:363.315000px;}
.y18{bottom:370.335000px;}
.y34{bottom:372.855000px;}
.y3d{bottom:375.735000px;}
.y4b{bottom:390.315000px;}
.y33{bottom:396.795000px;}
.y3c{bottom:399.495000px;}
.y62{bottom:402.015000px;}
.y17{bottom:409.035000px;}
.y32{bottom:420.555000px;}
.y3b{bottom:423.435000px;}
.y61{bottom:425.775000px;}
.y4a{bottom:430.815000px;}
.y16{bottom:432.795000px;}
.y31{bottom:444.315000px;}
.y77{bottom:444.855000px;}
.y3a{bottom:447.195000px;}
.y15{bottom:456.555000px;}
.y49{bottom:459.975000px;}
.y60{bottom:461.595000px;}
.y76{bottom:479.955000px;}
.y30{bottom:480.135000px;}
.y39{bottom:483.015000px;}
.y5f{bottom:485.355000px;}
.y14{bottom:492.375000px;}
.y75{bottom:503.715000px;}
.y13{bottom:516.315000px;}
.y2f{bottom:517.035000px;}
.y38{bottom:517.575000px;}
.y5e{bottom:521.175000px;}
.y12{bottom:540.075000px;}
.y5d{bottom:544.935000px;}
.y74{bottom:545.505000px;}
.y37{bottom:546.585000px;}
.y2e{bottom:555.765000px;}
.y11{bottom:563.865000px;}
.y73{bottom:569.445000px;}
.y2d{bottom:579.525000px;}
.y5c{bottom:580.785000px;}
.y10{bottom:587.625000px;}
.y2c{bottom:603.285000px;}
.y5b{bottom:604.545000px;}
.y72{bottom:605.265000px;}
.yf{bottom:611.565000px;}
.y2b{bottom:627.225000px;}
.ye{bottom:635.325000px;}
.y5a{bottom:640.365000px;}
.y71{bottom:640.905000px;}
.y2a{bottom:650.985000px;}
.yd{bottom:659.085000px;}
.y59{bottom:664.305000px;}
.y70{bottom:665.745000px;}
.y29{bottom:674.745000px;}
.yc{bottom:682.845000px;}
.y58{bottom:699.945000px;}
.yb{bottom:706.785000px;}
.y28{bottom:710.565000px;}
.y57{bottom:723.885000px;}
.ya{bottom:730.545000px;}
.y6f{bottom:734.325000px;}
.y27{bottom:746.430000px;}
.y56{bottom:747.690000px;}
.y9{bottom:754.350000px;}
.y6e{bottom:758.130000px;}
.y26{bottom:770.190000px;}
.y55{bottom:782.070000px;}
.y8{bottom:791.250000px;}
.y25{bottom:793.950000px;}
.y6d{bottom:805.830000px;}
.y24{bottom:817.890000px;}
.y7{bottom:821.850000px;}
.y6{bottom:836.430000px;}
.y23{bottom:841.650000px;}
.y5{bottom:861.630000px;}
.y22{bottom:865.410000px;}
.y4{bottom:876.210000px;}
.y6c{bottom:877.470000px;}
.y3{bottom:898.350000px;}
.y21{bottom:901.230000px;}
.h4{height:38.139609px;}
.h5{height:59.019609px;}
.h3{height:59.038594px;}
.h9{height:60.226875px;}
.h8{height:65.010937px;}
.h1{height:65.884219px;}
.h6{height:70.664062px;}
.h7{height:72.562500px;}
.h2{height:84.898125px;}
.ha{height:121.179375px;}
.h0{height:1026.000000px;}
.w1{width:809.999988px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.x2{left:108.035988px;}
.x3{left:133.775988px;}
.x10{left:135.035988px;}
.xe{left:139.535988px;}
.x11{left:162.029988px;}
.xf{left:166.529988px;}
.x4{left:209.909988px;}
.xd{left:315.794988px;}
.x9{left:324.434988px;}
.x5{left:325.874988px;}
.x6{left:329.114988px;}
.xb{left:334.334988px;}
.x7{left:343.154988px;}
.xc{left:604.904988px;}
.x8{left:615.704988px;}
.xa{left:665.609988px;}
.x1{left:685.409988px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls5{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.227733pt;}
.ls3{letter-spacing:44.410027pt;}
.ls4{letter-spacing:754.831787pt;}
.ws3{word-spacing:-58.880000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws1{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
._10{margin-left:-4.160000pt;}
._9{margin-left:-3.220480pt;}
._8{margin-left:-2.099200pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.062400pt;}
._f{width:1.973760pt;}
._5{width:3.008000pt;}
._6{width:4.160000pt;}
._7{width:5.354667pt;}
._2{width:6.656000pt;}
._3{width:7.744000pt;}
._4{width:9.024000pt;}
._e{width:10.496000pt;}
._13{width:12.032000pt;}
._a{width:13.632000pt;}
._b{width:14.848000pt;}
._11{width:21.056000pt;}
._12{width:22.276267pt;}
._c{width:27.136000pt;}
._d{width:28.302933pt;}
._14{width:752.138667pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.760000pt;}
.y20{bottom:116.160000pt;}
.y6b{bottom:120.640000pt;}
.y48{bottom:122.720000pt;}
.y54{bottom:134.240000pt;}
.y6a{bottom:141.786667pt;}
.y47{bottom:144.026667pt;}
.y1f{bottom:148.026667pt;}
.y69{bottom:162.906667pt;}
.y46{bottom:165.146667pt;}
.y53{bottom:166.106667pt;}
.y1e{bottom:179.866667pt;}
.y68{bottom:184.186667pt;}
.y45{bottom:186.266667pt;}
.y52{bottom:187.226667pt;}
.y1d{bottom:200.986667pt;}
.y44{bottom:207.386667pt;}
.y51{bottom:208.346667pt;}
.y67{bottom:216.026667pt;}
.y1c{bottom:222.266667pt;}
.y50{bottom:229.466667pt;}
.y43{bottom:239.226667pt;}
.y1b{bottom:243.386667pt;}
.y66{bottom:247.706667pt;}
.y4f{bottom:250.746667pt;}
.y40{bottom:259.866667pt;}
.y1a{bottom:264.506667pt;}
.y65{bottom:268.986667pt;}
.y4e{bottom:271.866667pt;}
.y42{bottom:272.666667pt;}
.y36{bottom:289.146667pt;}
.y64{bottom:290.106667pt;}
.y3f{bottom:291.706667pt;}
.y4d{bottom:292.986667pt;}
.y19{bottom:296.346667pt;}
.y41{bottom:298.586667pt;}
.y35{bottom:310.266667pt;}
.y3e{bottom:312.866667pt;}
.y4c{bottom:314.146667pt;}
.y63{bottom:322.946667pt;}
.y18{bottom:329.186667pt;}
.y34{bottom:331.426667pt;}
.y3d{bottom:333.986667pt;}
.y4b{bottom:346.946667pt;}
.y33{bottom:352.706667pt;}
.y3c{bottom:355.106667pt;}
.y62{bottom:357.346667pt;}
.y17{bottom:363.586667pt;}
.y32{bottom:373.826667pt;}
.y3b{bottom:376.386667pt;}
.y61{bottom:378.466667pt;}
.y4a{bottom:382.946667pt;}
.y16{bottom:384.706667pt;}
.y31{bottom:394.946667pt;}
.y77{bottom:395.426667pt;}
.y3a{bottom:397.506667pt;}
.y15{bottom:405.826667pt;}
.y49{bottom:408.866667pt;}
.y60{bottom:410.306667pt;}
.y76{bottom:426.626667pt;}
.y30{bottom:426.786667pt;}
.y39{bottom:429.346667pt;}
.y5f{bottom:431.426667pt;}
.y14{bottom:437.666667pt;}
.y75{bottom:447.746667pt;}
.y13{bottom:458.946667pt;}
.y2f{bottom:459.586667pt;}
.y38{bottom:460.066667pt;}
.y5e{bottom:463.266667pt;}
.y12{bottom:480.066667pt;}
.y5d{bottom:484.386667pt;}
.y74{bottom:484.893333pt;}
.y37{bottom:485.853333pt;}
.y2e{bottom:494.013333pt;}
.y11{bottom:501.213333pt;}
.y73{bottom:506.173333pt;}
.y2d{bottom:515.133333pt;}
.y5c{bottom:516.253333pt;}
.y10{bottom:522.333333pt;}
.y2c{bottom:536.253333pt;}
.y5b{bottom:537.373333pt;}
.y72{bottom:538.013333pt;}
.yf{bottom:543.613333pt;}
.y2b{bottom:557.533333pt;}
.ye{bottom:564.733333pt;}
.y5a{bottom:569.213333pt;}
.y71{bottom:569.693333pt;}
.y2a{bottom:578.653333pt;}
.yd{bottom:585.853333pt;}
.y59{bottom:590.493333pt;}
.y70{bottom:591.773333pt;}
.y29{bottom:599.773333pt;}
.yc{bottom:606.973333pt;}
.y58{bottom:622.173333pt;}
.yb{bottom:628.253333pt;}
.y28{bottom:631.613333pt;}
.y57{bottom:643.453333pt;}
.ya{bottom:649.373333pt;}
.y6f{bottom:652.733333pt;}
.y27{bottom:663.493333pt;}
.y56{bottom:664.613333pt;}
.y9{bottom:670.533333pt;}
.y6e{bottom:673.893333pt;}
.y26{bottom:684.613333pt;}
.y55{bottom:695.173333pt;}
.y8{bottom:703.333333pt;}
.y25{bottom:705.733333pt;}
.y6d{bottom:716.293333pt;}
.y24{bottom:727.013333pt;}
.y7{bottom:730.533333pt;}
.y6{bottom:743.493333pt;}
.y23{bottom:748.133333pt;}
.y5{bottom:765.893333pt;}
.y22{bottom:769.253333pt;}
.y4{bottom:778.853333pt;}
.y6c{bottom:779.973333pt;}
.y3{bottom:798.533333pt;}
.y21{bottom:801.093333pt;}
.h4{height:33.901875pt;}
.h5{height:52.461875pt;}
.h3{height:52.478750pt;}
.h9{height:53.535000pt;}
.h8{height:57.787500pt;}
.h1{height:58.563750pt;}
.h6{height:62.812500pt;}
.h7{height:64.500000pt;}
.h2{height:75.465000pt;}
.ha{height:107.715000pt;}
.h0{height:912.000000pt;}
.w1{width:719.999989pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031989pt;}
.x3{left:118.911989pt;}
.x10{left:120.031989pt;}
.xe{left:124.031989pt;}
.x11{left:144.026656pt;}
.xf{left:148.026656pt;}
.x4{left:186.586656pt;}
.xd{left:280.706656pt;}
.x9{left:288.386656pt;}
.x5{left:289.666656pt;}
.x6{left:292.546656pt;}
.xb{left:297.186656pt;}
.x7{left:305.026656pt;}
.xc{left:537.693323pt;}
.x8{left:547.293323pt;}
.xa{left:591.653323pt;}
.x1{left:609.253323pt;}
}




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