
    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_d36050133cb0b128f7e7a5f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_d33144e4afe66c0d65211dfe.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_25e77cf9fce213b6bbe0c16f.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_1a7ee8a792b357e2406903b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_9524896807f4a1f1f2bf872d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_20162fe9a4a310d4a85a330c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b4fe3fe526a3bc10d456aed5.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls5{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.000001px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.864000px;}
.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:-18.864000px;}
.ws2{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.999999px;}
.ws5{word-spacing:-17.784000px;}
.ws1{word-spacing:0.000000px;}
._7{margin-left:-4.392000px;}
._6{margin-left:-3.240000px;}
._8{margin-left:-2.160000px;}
._1{margin-left:-1.152000px;}
._0{width:1.140000px;}
._2{width:2.316000px;}
._a{width:3.396000px;}
._3{width:4.536000px;}
._9{width:5.544000px;}
._f{width:6.840000px;}
._b{width:8.136000px;}
._c{width:9.732000px;}
._4{width:11.088000px;}
._5{width:12.168000px;}
._10{width:13.812000px;}
._12{width:14.904000px;}
._13{width:16.224000px;}
._11{width:19.872000px;}
._16{width:20.940000px;}
._d{width:22.152000px;}
._e{width:23.184000px;}
._14{width:24.336000px;}
._15{width:26.004000px;}
._19{width:27.348000px;}
._17{width:32.832000px;}
._18{width:33.900000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.456000px;}
.y7d{bottom:113.436000px;}
.y3f{bottom:120.456000px;}
.y5a{bottom:127.476000px;}
.y1f{bottom:141.696000px;}
.y7c{bottom:144.396000px;}
.y3e{bottom:151.590000px;}
.y59{bottom:158.610000px;}
.y1e{bottom:172.650000px;}
.y7b{bottom:175.530000px;}
.y70{bottom:177.690000px;}
.y3d{bottom:182.550000px;}
.y58{bottom:189.570000px;}
.y1d{bottom:203.790000px;}
.y7a{bottom:206.490000px;}
.y6f{bottom:208.650000px;}
.y3c{bottom:213.690000px;}
.y57{bottom:220.710000px;}
.y5f{bottom:225.570000px;}
.y1c{bottom:234.750000px;}
.y79{bottom:237.630000px;}
.y6e{bottom:239.790000px;}
.y3b{bottom:244.650000px;}
.y5e{bottom:256.710000px;}
.y56{bottom:263.730000px;}
.y1b{bottom:265.890000px;}
.y78{bottom:268.590000px;}
.y6d{bottom:270.750000px;}
.y3a{bottom:275.790000px;}
.y5d{bottom:287.670000px;}
.y77{bottom:299.775000px;}
.y6c{bottom:301.935000px;}
.y39{bottom:306.795000px;}
.y1a{bottom:308.955000px;}
.y5c{bottom:318.855000px;}
.y76{bottom:330.735000px;}
.y6b{bottom:332.895000px;}
.y38{bottom:337.935000px;}
.y19{bottom:339.915000px;}
.y5b{bottom:349.815000px;}
.y75{bottom:361.875000px;}
.y6a{bottom:364.035000px;}
.y37{bottom:368.895000px;}
.y18{bottom:371.055000px;}
.y55{bottom:380.955000px;}
.y74{bottom:392.835000px;}
.y69{bottom:394.995000px;}
.y36{bottom:400.035000px;}
.y17{bottom:402.015000px;}
.y54{bottom:411.915000px;}
.y73{bottom:423.975000px;}
.y35{bottom:430.995000px;}
.y16{bottom:433.155000px;}
.y68{bottom:438.015000px;}
.y53{bottom:443.055000px;}
.y72{bottom:454.935000px;}
.y64{bottom:461.955000px;}
.y15{bottom:464.115000px;}
.y34{bottom:474.015000px;}
.y67{bottom:481.035000px;}
.y71{bottom:486.075000px;}
.y63{bottom:493.095000px;}
.y14{bottom:495.255000px;}
.y52{bottom:505.155000px;}
.y66{bottom:512.175000px;}
.y33{bottom:517.035000px;}
.y62{bottom:524.055000px;}
.y13{bottom:526.215000px;}
.y51{bottom:536.115000px;}
.y65{bottom:543.135000px;}
.y32{bottom:548.175000px;}
.y61{bottom:555.195000px;}
.y12{bottom:557.355000px;}
.y50{bottom:567.255000px;}
.y31{bottom:579.165000px;}
.y60{bottom:586.185000px;}
.y4f{bottom:598.245000px;}
.y11{bottom:600.405000px;}
.y30{bottom:610.305000px;}
.y4e{bottom:629.385000px;}
.y2f{bottom:641.265000px;}
.y10{bottom:643.425000px;}
.y4d{bottom:660.345000px;}
.y2e{bottom:672.405000px;}
.yf{bottom:686.445000px;}
.y4c{bottom:691.485000px;}
.y2d{bottom:703.365000px;}
.ye{bottom:717.585000px;}
.y4b{bottom:722.445000px;}
.y2c{bottom:734.505000px;}
.yd{bottom:748.545000px;}
.y4a{bottom:753.585000px;}
.y2b{bottom:765.465000px;}
.yc{bottom:779.505000px;}
.y49{bottom:784.545000px;}
.y2a{bottom:796.605000px;}
.yb{bottom:810.645000px;}
.y48{bottom:815.505000px;}
.y29{bottom:827.565000px;}
.ya{bottom:841.605000px;}
.y47{bottom:846.645000px;}
.y28{bottom:858.750000px;}
.y9{bottom:872.790000px;}
.y46{bottom:877.650000px;}
.y27{bottom:889.710000px;}
.y45{bottom:908.790000px;}
.y8{bottom:915.810000px;}
.y26{bottom:920.850000px;}
.y44{bottom:939.750000px;}
.y25{bottom:951.810000px;}
.y7{bottom:958.830000px;}
.y43{bottom:970.890000px;}
.y24{bottom:982.950000px;}
.y6{bottom:989.970000px;}
.y42{bottom:1001.850000px;}
.y23{bottom:1013.910000px;}
.y5{bottom:1020.930000px;}
.y41{bottom:1032.990000px;}
.y22{bottom:1045.050000px;}
.y4{bottom:1052.070000px;}
.y40{bottom:1063.950000px;}
.y21{bottom:1076.010000px;}
.y3{bottom:1095.090000px;}
.y20{bottom:1107.150000px;}
.y2{bottom:1138.140000px;}
.h5{height:64.546875px;}
.h2{height:65.884219px;}
.h6{height:70.628906px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.035987px;}
.x7{left:162.029987px;}
.x6{left:310.214987px;}
.x4{left:367.994987px;}
.x5{left:380.234987px;}
.x3{left:386.174987px;}
.x1{left:776.879987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.768000pt;}
.ws3{word-spacing:-16.768000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.999999pt;}
.ws5{word-spacing:-15.808000pt;}
.ws1{word-spacing:0.000000pt;}
._7{margin-left:-3.904000pt;}
._6{margin-left:-2.880000pt;}
._8{margin-left:-1.920000pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.013333pt;}
._2{width:2.058667pt;}
._a{width:3.018667pt;}
._3{width:4.032000pt;}
._9{width:4.928000pt;}
._f{width:6.080000pt;}
._b{width:7.232000pt;}
._c{width:8.650667pt;}
._4{width:9.856000pt;}
._5{width:10.816000pt;}
._10{width:12.277333pt;}
._12{width:13.248000pt;}
._13{width:14.421333pt;}
._11{width:17.664000pt;}
._16{width:18.613333pt;}
._d{width:19.690667pt;}
._e{width:20.608000pt;}
._14{width:21.632000pt;}
._15{width:23.114667pt;}
._19{width:24.309333pt;}
._17{width:29.184000pt;}
._18{width:30.133333pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.072000pt;}
.y7d{bottom:100.832000pt;}
.y3f{bottom:107.072000pt;}
.y5a{bottom:113.312000pt;}
.y1f{bottom:125.952000pt;}
.y7c{bottom:128.352000pt;}
.y3e{bottom:134.746667pt;}
.y59{bottom:140.986667pt;}
.y1e{bottom:153.466667pt;}
.y7b{bottom:156.026667pt;}
.y70{bottom:157.946667pt;}
.y3d{bottom:162.266667pt;}
.y58{bottom:168.506667pt;}
.y1d{bottom:181.146667pt;}
.y7a{bottom:183.546667pt;}
.y6f{bottom:185.466667pt;}
.y3c{bottom:189.946667pt;}
.y57{bottom:196.186667pt;}
.y5f{bottom:200.506667pt;}
.y1c{bottom:208.666667pt;}
.y79{bottom:211.226667pt;}
.y6e{bottom:213.146667pt;}
.y3b{bottom:217.466667pt;}
.y5e{bottom:228.186667pt;}
.y56{bottom:234.426667pt;}
.y1b{bottom:236.346667pt;}
.y78{bottom:238.746667pt;}
.y6d{bottom:240.666667pt;}
.y3a{bottom:245.146667pt;}
.y5d{bottom:255.706667pt;}
.y77{bottom:266.466667pt;}
.y6c{bottom:268.386667pt;}
.y39{bottom:272.706667pt;}
.y1a{bottom:274.626667pt;}
.y5c{bottom:283.426667pt;}
.y76{bottom:293.986667pt;}
.y6b{bottom:295.906667pt;}
.y38{bottom:300.386667pt;}
.y19{bottom:302.146667pt;}
.y5b{bottom:310.946667pt;}
.y75{bottom:321.666667pt;}
.y6a{bottom:323.586667pt;}
.y37{bottom:327.906667pt;}
.y18{bottom:329.826667pt;}
.y55{bottom:338.626667pt;}
.y74{bottom:349.186667pt;}
.y69{bottom:351.106667pt;}
.y36{bottom:355.586667pt;}
.y17{bottom:357.346667pt;}
.y54{bottom:366.146667pt;}
.y73{bottom:376.866667pt;}
.y35{bottom:383.106667pt;}
.y16{bottom:385.026667pt;}
.y68{bottom:389.346667pt;}
.y53{bottom:393.826667pt;}
.y72{bottom:404.386667pt;}
.y64{bottom:410.626667pt;}
.y15{bottom:412.546667pt;}
.y34{bottom:421.346667pt;}
.y67{bottom:427.586667pt;}
.y71{bottom:432.066667pt;}
.y63{bottom:438.306667pt;}
.y14{bottom:440.226667pt;}
.y52{bottom:449.026667pt;}
.y66{bottom:455.266667pt;}
.y33{bottom:459.586667pt;}
.y62{bottom:465.826667pt;}
.y13{bottom:467.746667pt;}
.y51{bottom:476.546667pt;}
.y65{bottom:482.786667pt;}
.y32{bottom:487.266667pt;}
.y61{bottom:493.506667pt;}
.y12{bottom:495.426667pt;}
.y50{bottom:504.226667pt;}
.y31{bottom:514.813333pt;}
.y60{bottom:521.053333pt;}
.y4f{bottom:531.773333pt;}
.y11{bottom:533.693333pt;}
.y30{bottom:542.493333pt;}
.y4e{bottom:559.453333pt;}
.y2f{bottom:570.013333pt;}
.y10{bottom:571.933333pt;}
.y4d{bottom:586.973333pt;}
.y2e{bottom:597.693333pt;}
.yf{bottom:610.173333pt;}
.y4c{bottom:614.653333pt;}
.y2d{bottom:625.213333pt;}
.ye{bottom:637.853333pt;}
.y4b{bottom:642.173333pt;}
.y2c{bottom:652.893333pt;}
.yd{bottom:665.373333pt;}
.y4a{bottom:669.853333pt;}
.y2b{bottom:680.413333pt;}
.yc{bottom:692.893333pt;}
.y49{bottom:697.373333pt;}
.y2a{bottom:708.093333pt;}
.yb{bottom:720.573333pt;}
.y48{bottom:724.893333pt;}
.y29{bottom:735.613333pt;}
.ya{bottom:748.093333pt;}
.y47{bottom:752.573333pt;}
.y28{bottom:763.333333pt;}
.y9{bottom:775.813333pt;}
.y46{bottom:780.133333pt;}
.y27{bottom:790.853333pt;}
.y45{bottom:807.813333pt;}
.y8{bottom:814.053333pt;}
.y26{bottom:818.533333pt;}
.y44{bottom:835.333333pt;}
.y25{bottom:846.053333pt;}
.y7{bottom:852.293333pt;}
.y43{bottom:863.013333pt;}
.y24{bottom:873.733333pt;}
.y6{bottom:879.973333pt;}
.y42{bottom:890.533333pt;}
.y23{bottom:901.253333pt;}
.y5{bottom:907.493333pt;}
.y41{bottom:918.213333pt;}
.y22{bottom:928.933333pt;}
.y4{bottom:935.173333pt;}
.y40{bottom:945.733333pt;}
.y21{bottom:956.453333pt;}
.y3{bottom:973.413333pt;}
.y20{bottom:984.133333pt;}
.y2{bottom:1011.680000pt;}
.h5{height:57.375000pt;}
.h2{height:58.563750pt;}
.h6{height:62.781250pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x7{left:144.026655pt;}
.x6{left:275.746655pt;}
.x4{left:327.106655pt;}
.x5{left:337.986655pt;}
.x3{left:343.266655pt;}
.x1{left:690.559988pt;}
}




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