
    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_67418648ff11aaf2ca889a85.woff')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_fe1f8539a68d5c56ba5bd106.woff')format("woff");}.ff2{font-family:ff2;line-height:1.201172;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_b941850bc25c5a15cc93074b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.747000;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_8483e207bb044045606393e3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.197000;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_99792cdfe0e4d89ceacf03f7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.197000;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_58c12c8384fd384e8e609740.woff')format("woff");}.ff6{font-family:ff6;line-height:1.240000;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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:-1.992000px;}
.ls1{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.492000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.426000px;}
.ls5{letter-spacing:2.208000px;}
.ls3{letter-spacing:59.652000px;}
.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;}
}
.ws2{word-spacing:-66.000000px;}
.ws3{word-spacing:-18.642000px;}
.ws4{word-spacing:-18.216000px;}
.ws0{word-spacing:-17.292000px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-4.644000px;}
._0{margin-left:-3.564000px;}
._3{margin-left:-2.484000px;}
._1{margin-left:-1.404000px;}
._4{width:1.026000px;}
._9{width:2.208000px;}
._6{width:3.960000px;}
._5{width:5.220000px;}
._18{width:6.318000px;}
._8{width:7.722000px;}
._7{width:8.904000px;}
._a{width:10.638000px;}
._b{width:11.778000px;}
._17{width:13.038000px;}
._c{width:14.304000px;}
._d{width:15.600000px;}
._1c{width:17.136000px;}
._10{width:19.608000px;}
._f{width:20.922000px;}
._1b{width:22.416000px;}
._15{width:24.354000px;}
._14{width:25.746000px;}
._16{width:27.000000px;}
._1a{width:31.944000px;}
._19{width:33.462000px;}
._e{width:38.148000px;}
._12{width:53.472000px;}
._11{width:55.176000px;}
._13{width:57.090000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:3.000000px;}
.fs2{font-size:36.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:8.625000px;}
.y9{bottom:9.375000px;}
.y8{bottom:18.000000px;}
.y7{bottom:58.537500px;}
.yc{bottom:70.912500px;}
.yb{bottom:91.162500px;}
.ya{bottom:111.412500px;}
.y6{bottom:126.787500px;}
.y57{bottom:216.450000px;}
.y30{bottom:223.200000px;}
.y56{bottom:239.700000px;}
.y2f{bottom:246.450000px;}
.y55{bottom:262.950000px;}
.y2e{bottom:269.325000px;}
.y54{bottom:285.825000px;}
.y2d{bottom:292.575000px;}
.y53{bottom:309.120000px;}
.y2c{bottom:315.870000px;}
.y52{bottom:332.370000px;}
.y2b{bottom:338.745000px;}
.y51{bottom:355.230000px;}
.y2a{bottom:361.980000px;}
.y50{bottom:378.480000px;}
.y29{bottom:385.230000px;}
.y4f{bottom:401.745000px;}
.y28{bottom:408.120000px;}
.y4e{bottom:424.620000px;}
.y27{bottom:431.400000px;}
.y4d{bottom:447.900000px;}
.y26{bottom:454.650000px;}
.y4c{bottom:471.150000px;}
.y25{bottom:477.900000px;}
.y4b{bottom:494.025000px;}
.y24{bottom:500.775000px;}
.y4a{bottom:517.275000px;}
.y6c{bottom:519.150000px;}
.y23{bottom:524.025000px;}
.y49{bottom:540.525000px;}
.y6b{bottom:542.400000px;}
.y22{bottom:547.275000px;}
.y48{bottom:563.820000px;}
.y6a{bottom:565.320000px;}
.y21{bottom:570.195000px;}
.y47{bottom:586.695000px;}
.y69{bottom:588.570000px;}
.y20{bottom:593.445000px;}
.y46{bottom:609.945000px;}
.y68{bottom:611.820000px;}
.y1f{bottom:616.695000px;}
.y45{bottom:633.195000px;}
.y67{bottom:635.070000px;}
.y1e{bottom:639.570000px;}
.y44{bottom:656.070000px;}
.y66{bottom:657.945000px;}
.y1d{bottom:662.820000px;}
.y43{bottom:679.320000px;}
.y65{bottom:681.195000px;}
.y1c{bottom:686.070000px;}
.y42{bottom:702.600000px;}
.y64{bottom:704.475000px;}
.y1b{bottom:708.975000px;}
.y41{bottom:725.475000px;}
.y63{bottom:727.350000px;}
.y1a{bottom:732.225000px;}
.y40{bottom:749.100000px;}
.y62{bottom:750.600000px;}
.y19{bottom:755.475000px;}
.y3f{bottom:772.350000px;}
.y61{bottom:773.850000px;}
.y18{bottom:778.350000px;}
.y3e{bottom:795.600000px;}
.y60{bottom:796.725000px;}
.y17{bottom:801.600000px;}
.y3d{bottom:818.895000px;}
.y5f{bottom:820.005000px;}
.y16{bottom:824.880000px;}
.y3c{bottom:842.145000px;}
.y5e{bottom:843.255000px;}
.y15{bottom:847.755000px;}
.y3b{bottom:865.770000px;}
.y5d{bottom:866.130000px;}
.y14{bottom:871.005000px;}
.y3a{bottom:888.630000px;}
.y5c{bottom:889.380000px;}
.y13{bottom:894.255000px;}
.y39{bottom:911.880000px;}
.y5b{bottom:912.630000px;}
.y12{bottom:917.130000px;}
.y38{bottom:935.130000px;}
.y5a{bottom:935.505000px;}
.y11{bottom:946.425000px;}
.y37{bottom:958.050000px;}
.y59{bottom:958.800000px;}
.y10{bottom:975.675000px;}
.y36{bottom:981.675000px;}
.y58{bottom:982.050000px;}
.yf{bottom:1004.550000px;}
.y35{bottom:1004.925000px;}
.y34{bottom:1028.175000px;}
.ye{bottom:1036.425000px;}
.y33{bottom:1051.425000px;}
.y32{bottom:1074.330000px;}
.yd{bottom:1078.455000px;}
.y31{bottom:1097.580000px;}
.y5{bottom:1131.705000px;}
.y4{bottom:1151.955000px;}
.y3{bottom:1167.705000px;}
.y1{bottom:1168.455000px;}
.h4{height:2.983887px;}
.h6{height:35.806641px;}
.h1{height:40.537500px;}
.h3{height:42.037500px;}
.h8{height:48.972000px;}
.h2{height:65.645508px;}
.h9{height:65.868000px;}
.ha{height:68.574000px;}
.h5{height:74.287500px;}
.h7{height:110.583984px;}
.h0{height:1263.000000px;}
.w6{width:318.525000px;}
.w5{width:318.900000px;}
.w2{width:620.130000px;}
.w3{width:636.675000px;}
.w4{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.912500px;}
.x2{left:112.170000px;}
.x5{left:118.582500px;}
.x3{left:128.287500px;}
.x1{left:136.950000px;}
.xb{left:154.574987px;}
.xc{left:181.574987px;}
.x7{left:310.260000px;}
.x8{left:442.319987px;}
.x6{left:446.445000px;}
.xa{left:585.269987px;}
.x9{left:618.254987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.770667pt;}
.ls1{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.437333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.378667pt;}
.ls5{letter-spacing:1.962667pt;}
.ls3{letter-spacing:53.024000pt;}
.ws2{word-spacing:-58.666667pt;}
.ws3{word-spacing:-16.570667pt;}
.ws4{word-spacing:-16.192000pt;}
.ws0{word-spacing:-15.370667pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-4.128000pt;}
._0{margin-left:-3.168000pt;}
._3{margin-left:-2.208000pt;}
._1{margin-left:-1.248000pt;}
._4{width:0.912000pt;}
._9{width:1.962667pt;}
._6{width:3.520000pt;}
._5{width:4.640000pt;}
._18{width:5.616000pt;}
._8{width:6.864000pt;}
._7{width:7.914667pt;}
._a{width:9.456000pt;}
._b{width:10.469333pt;}
._17{width:11.589333pt;}
._c{width:12.714667pt;}
._d{width:13.866667pt;}
._1c{width:15.232000pt;}
._10{width:17.429333pt;}
._f{width:18.597333pt;}
._1b{width:19.925333pt;}
._15{width:21.648000pt;}
._14{width:22.885333pt;}
._16{width:24.000000pt;}
._1a{width:28.394667pt;}
._19{width:29.744000pt;}
._e{width:33.909333pt;}
._12{width:47.530667pt;}
._11{width:49.045333pt;}
._13{width:50.746667pt;}
.fs1{font-size:2.666667pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:7.666667pt;}
.y9{bottom:8.333333pt;}
.y8{bottom:16.000000pt;}
.y7{bottom:52.033333pt;}
.yc{bottom:63.033333pt;}
.yb{bottom:81.033333pt;}
.ya{bottom:99.033333pt;}
.y6{bottom:112.700000pt;}
.y57{bottom:192.400000pt;}
.y30{bottom:198.400000pt;}
.y56{bottom:213.066667pt;}
.y2f{bottom:219.066667pt;}
.y55{bottom:233.733333pt;}
.y2e{bottom:239.400000pt;}
.y54{bottom:254.066667pt;}
.y2d{bottom:260.066667pt;}
.y53{bottom:274.773333pt;}
.y2c{bottom:280.773333pt;}
.y52{bottom:295.440000pt;}
.y2b{bottom:301.106667pt;}
.y51{bottom:315.760000pt;}
.y2a{bottom:321.760000pt;}
.y50{bottom:336.426667pt;}
.y29{bottom:342.426667pt;}
.y4f{bottom:357.106667pt;}
.y28{bottom:362.773333pt;}
.y4e{bottom:377.440000pt;}
.y27{bottom:383.466667pt;}
.y4d{bottom:398.133333pt;}
.y26{bottom:404.133333pt;}
.y4c{bottom:418.800000pt;}
.y25{bottom:424.800000pt;}
.y4b{bottom:439.133333pt;}
.y24{bottom:445.133333pt;}
.y4a{bottom:459.800000pt;}
.y6c{bottom:461.466667pt;}
.y23{bottom:465.800000pt;}
.y49{bottom:480.466667pt;}
.y6b{bottom:482.133333pt;}
.y22{bottom:486.466667pt;}
.y48{bottom:501.173333pt;}
.y6a{bottom:502.506667pt;}
.y21{bottom:506.840000pt;}
.y47{bottom:521.506667pt;}
.y69{bottom:523.173333pt;}
.y20{bottom:527.506667pt;}
.y46{bottom:542.173333pt;}
.y68{bottom:543.840000pt;}
.y1f{bottom:548.173333pt;}
.y45{bottom:562.840000pt;}
.y67{bottom:564.506667pt;}
.y1e{bottom:568.506667pt;}
.y44{bottom:583.173333pt;}
.y66{bottom:584.840000pt;}
.y1d{bottom:589.173333pt;}
.y43{bottom:603.840000pt;}
.y65{bottom:605.506667pt;}
.y1c{bottom:609.840000pt;}
.y42{bottom:624.533333pt;}
.y64{bottom:626.200000pt;}
.y1b{bottom:630.200000pt;}
.y41{bottom:644.866667pt;}
.y63{bottom:646.533333pt;}
.y1a{bottom:650.866667pt;}
.y40{bottom:665.866667pt;}
.y62{bottom:667.200000pt;}
.y19{bottom:671.533333pt;}
.y3f{bottom:686.533333pt;}
.y61{bottom:687.866667pt;}
.y18{bottom:691.866667pt;}
.y3e{bottom:707.200000pt;}
.y60{bottom:708.200000pt;}
.y17{bottom:712.533333pt;}
.y3d{bottom:727.906667pt;}
.y5f{bottom:728.893333pt;}
.y16{bottom:733.226667pt;}
.y3c{bottom:748.573333pt;}
.y5e{bottom:749.560000pt;}
.y15{bottom:753.560000pt;}
.y3b{bottom:769.573333pt;}
.y5d{bottom:769.893333pt;}
.y14{bottom:774.226667pt;}
.y3a{bottom:789.893333pt;}
.y5c{bottom:790.560000pt;}
.y13{bottom:794.893333pt;}
.y39{bottom:810.560000pt;}
.y5b{bottom:811.226667pt;}
.y12{bottom:815.226667pt;}
.y38{bottom:831.226667pt;}
.y5a{bottom:831.560000pt;}
.y11{bottom:841.266667pt;}
.y37{bottom:851.600000pt;}
.y59{bottom:852.266667pt;}
.y10{bottom:867.266667pt;}
.y36{bottom:872.600000pt;}
.y58{bottom:872.933333pt;}
.yf{bottom:892.933333pt;}
.y35{bottom:893.266667pt;}
.y34{bottom:913.933333pt;}
.ye{bottom:921.266667pt;}
.y33{bottom:934.600000pt;}
.y32{bottom:954.960000pt;}
.yd{bottom:958.626667pt;}
.y31{bottom:975.626667pt;}
.y5{bottom:1005.960000pt;}
.y4{bottom:1023.960000pt;}
.y3{bottom:1037.960000pt;}
.y1{bottom:1038.626667pt;}
.h4{height:2.652344pt;}
.h6{height:31.828125pt;}
.h1{height:36.033333pt;}
.h3{height:37.366667pt;}
.h8{height:43.530667pt;}
.h2{height:58.351562pt;}
.h9{height:58.549333pt;}
.ha{height:60.954667pt;}
.h5{height:66.033333pt;}
.h7{height:98.296875pt;}
.h0{height:1122.666667pt;}
.w6{width:283.133333pt;}
.w5{width:283.466667pt;}
.w2{width:551.226667pt;}
.w3{width:565.933333pt;}
.w4{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.033333pt;}
.x2{left:99.706667pt;}
.x5{left:105.406667pt;}
.x3{left:114.033333pt;}
.x1{left:121.733333pt;}
.xb{left:137.399988pt;}
.xc{left:161.399988pt;}
.x7{left:275.786667pt;}
.x8{left:393.173322pt;}
.x6{left:396.840000pt;}
.xa{left:520.239988pt;}
.x9{left:549.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; }
  