
    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_8d83e4dbef734e28675caa61.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_886ef8c85ea4d2e59fc13ab1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.981934;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_b141f3c9d7babd85ab53ff8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.981934;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_24e445f49ae5da97daa84554.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_0e3f67bd79b8f632110d4b76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.982910;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_69967fc94c20a6d2fa23a4b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.200000px;}
.v2{vertical-align:94.320000px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003240px;}
.ls1{letter-spacing:0.041760px;}
.ls3{letter-spacing:0.088800px;}
.ls9{letter-spacing:0.117000px;}
.ls2{letter-spacing:0.179280px;}
.ls4{letter-spacing:0.251280px;}
.ls5{letter-spacing:79.148880px;}
.ls6{letter-spacing:112.628880px;}
.ls0{letter-spacing:125.064000px;}
.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:-65.088000px;}
.ws4{word-spacing:-46.248120px;}
.ws1{word-spacing:-46.131120px;}
.ws3{word-spacing:-29.862360px;}
.ws2{word-spacing:-29.859120px;}
.ws5{word-spacing:0.000000px;}
._15{margin-left:-22.464000px;}
._1f{margin-left:-17.151840px;}
._1d{margin-left:-15.292080px;}
._1e{margin-left:-14.091480px;}
._17{margin-left:-12.651120px;}
._18{margin-left:-10.410120px;}
._0{margin-left:-9.381240px;}
._d{margin-left:-8.192760px;}
._16{margin-left:-7.171320px;}
._1{margin-left:-4.894560px;}
._3{margin-left:-3.263040px;}
._2{margin-left:-1.631520px;}
._4{width:1.004160px;}
._5{width:2.399040px;}
._c{width:3.816480px;}
._e{width:5.700960px;}
._8{width:6.735960px;}
._7{width:8.377920px;}
._9{width:9.743040px;}
._6{width:11.634840px;}
._1c{width:13.740480px;}
._f{width:14.975640px;}
._14{width:16.398600px;}
._12{width:17.664120px;}
._13{width:21.449520px;}
._19{width:23.278920px;}
._1a{width:24.456000px;}
._1b{width:27.130680px;}
._a{width:33.679800px;}
._b{width:34.700400px;}
._11{width:55.876440px;}
._10{width:66.370320px;}
._20{width:80.162520px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.120000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:96.120000px;}
.fs7{font-size:132.120000px;}
.fs6{font-size:204.120000px;}
.fs8{font-size:204.240000px;}
.fs2{font-size:216.000000px;}
.fs4{font-size:288.000000px;}
.fs1{font-size:407.880000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:58.590000px;}
.y3a{bottom:120.780000px;}
.y39{bottom:183.060000px;}
.y38{bottom:245.340000px;}
.y37{bottom:307.620000px;}
.y33{bottom:352.080000px;}
.y36{bottom:369.810000px;}
.y32{bottom:422.460000px;}
.y31{bottom:496.890000px;}
.y35{bottom:565.380000px;}
.y40{bottom:576.900000px;}
.y34{bottom:605.610000px;}
.y3f{bottom:617.130000px;}
.y2b{bottom:1101.000000px;}
.y2a{bottom:1163.280000px;}
.y29{bottom:1225.470000px;}
.y30{bottom:1286.220000px;}
.y28{bottom:1287.750000px;}
.y2f{bottom:1326.540000px;}
.y27{bottom:1350.030000px;}
.y2e{bottom:1366.770000px;}
.y2d{bottom:1407.090000px;}
.y26{bottom:1412.220000px;}
.y2c{bottom:1447.320000px;}
.y25{bottom:1474.500000px;}
.y24{bottom:1536.780000px;}
.y23{bottom:1599.060000px;}
.y22{bottom:1661.250000px;}
.y21{bottom:1723.530000px;}
.y20{bottom:1785.810000px;}
.y1f{bottom:1848.090000px;}
.y1e{bottom:1910.280000px;}
.y1d{bottom:1972.560000px;}
.y1c{bottom:2034.840000px;}
.y1b{bottom:2097.120000px;}
.y1a{bottom:2135.730000px;}
.y19{bottom:2194.140000px;}
.y18{bottom:2235.360000px;}
.y17{bottom:2309.790000px;}
.y16{bottom:2387.940000px;}
.y15{bottom:2428.170000px;}
.y14{bottom:2468.490000px;}
.y13{bottom:2508.720000px;}
.y12{bottom:2771.430000px;}
.y11{bottom:2833.710000px;}
.y10{bottom:2895.900000px;}
.yf{bottom:2958.180000px;}
.ye{bottom:3020.460000px;}
.yd{bottom:3082.740000px;}
.yc{bottom:3140.880000px;}
.yb{bottom:3199.290000px;}
.ya{bottom:3240.510000px;}
.y9{bottom:3314.940000px;}
.y3e{bottom:3401.700000px;}
.y3d{bottom:3463.980000px;}
.y3c{bottom:3526.170000px;}
.y8{bottom:3535.530000px;}
.y7{bottom:3605.910000px;}
.y6{bottom:3680.370000px;}
.y5{bottom:3795.120000px;}
.y4{bottom:3861.000000px;}
.y3{bottom:3970.170000px;}
.y2{bottom:4094.640000px;}
.y1{bottom:4234.410000px;}
.h2{height:41.743477px;}
.h5{height:57.867188px;}
.h7{height:77.252695px;}
.hb{height:106.315313px;}
.h9{height:164.252813px;}
.hd{height:164.349375px;}
.h4{height:173.812500px;}
.ha{height:178.505332px;}
.he{height:178.610273px;}
.h8{height:194.705332px;}
.h6{height:231.468750px;}
.hc{height:258.572812px;}
.h3{height:327.817617px;}
.h1{height:4251.750000px;}
.h0{height:4251.960000px;}
.w1{width:3826.500000px;}
.w0{width:3826.800000px;}
.x0{left:0.000000px;}
.x1{left:1.710000px;}
.x8{left:62.730000px;}
.xa{left:80.100000px;}
.xb{left:106.200000px;}
.x12{left:122.940000px;}
.x2{left:700.410000px;}
.x5{left:1015.410000px;}
.x3{left:1046.010000px;}
.xd{left:1093.620000px;}
.x4{left:1337.970000px;}
.x7{left:1677.000000px;}
.xe{left:1697.820000px;}
.x10{left:1714.920000px;}
.x9{left:1729.320000px;}
.x11{left:1792.500000px;}
.x6{left:1913.370000px;}
.xc{left:2498.910000px;}
.xf{left:2779.530000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.400000pt;}
.v2{vertical-align:83.840000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002880pt;}
.ls1{letter-spacing:0.037120pt;}
.ls3{letter-spacing:0.078933pt;}
.ls9{letter-spacing:0.104000pt;}
.ls2{letter-spacing:0.159360pt;}
.ls4{letter-spacing:0.223360pt;}
.ls5{letter-spacing:70.354560pt;}
.ls6{letter-spacing:100.114560pt;}
.ls0{letter-spacing:111.168000pt;}
.ws0{word-spacing:-57.856000pt;}
.ws4{word-spacing:-41.109440pt;}
.ws1{word-spacing:-41.005440pt;}
.ws3{word-spacing:-26.544320pt;}
.ws2{word-spacing:-26.541440pt;}
.ws5{word-spacing:0.000000pt;}
._15{margin-left:-19.968000pt;}
._1f{margin-left:-15.246080pt;}
._1d{margin-left:-13.592960pt;}
._1e{margin-left:-12.525760pt;}
._17{margin-left:-11.245440pt;}
._18{margin-left:-9.253440pt;}
._0{margin-left:-8.338880pt;}
._d{margin-left:-7.282453pt;}
._16{margin-left:-6.374507pt;}
._1{margin-left:-4.350720pt;}
._3{margin-left:-2.900480pt;}
._2{margin-left:-1.450240pt;}
._4{width:0.892587pt;}
._5{width:2.132480pt;}
._c{width:3.392427pt;}
._e{width:5.067520pt;}
._8{width:5.987520pt;}
._7{width:7.447040pt;}
._9{width:8.660480pt;}
._6{width:10.342080pt;}
._1c{width:12.213760pt;}
._f{width:13.311680pt;}
._14{width:14.576533pt;}
._12{width:15.701440pt;}
._13{width:19.066240pt;}
._19{width:20.692373pt;}
._1a{width:21.738667pt;}
._1b{width:24.116160pt;}
._a{width:29.937600pt;}
._b{width:30.844800pt;}
._11{width:49.667947pt;}
._10{width:58.995840pt;}
._20{width:71.255573pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:85.440000pt;}
.fs7{font-size:117.440000pt;}
.fs6{font-size:181.440000pt;}
.fs8{font-size:181.546667pt;}
.fs2{font-size:192.000000pt;}
.fs4{font-size:256.000000pt;}
.fs1{font-size:362.560000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:52.080000pt;}
.y3a{bottom:107.360000pt;}
.y39{bottom:162.720000pt;}
.y38{bottom:218.080000pt;}
.y37{bottom:273.440000pt;}
.y33{bottom:312.960000pt;}
.y36{bottom:328.720000pt;}
.y32{bottom:375.520000pt;}
.y31{bottom:441.680000pt;}
.y35{bottom:502.560000pt;}
.y40{bottom:512.800000pt;}
.y34{bottom:538.320000pt;}
.y3f{bottom:548.560000pt;}
.y2b{bottom:978.666667pt;}
.y2a{bottom:1034.026667pt;}
.y29{bottom:1089.306667pt;}
.y30{bottom:1143.306667pt;}
.y28{bottom:1144.666667pt;}
.y2f{bottom:1179.146667pt;}
.y27{bottom:1200.026667pt;}
.y2e{bottom:1214.906667pt;}
.y2d{bottom:1250.746667pt;}
.y26{bottom:1255.306667pt;}
.y2c{bottom:1286.506667pt;}
.y25{bottom:1310.666667pt;}
.y24{bottom:1366.026667pt;}
.y23{bottom:1421.386667pt;}
.y22{bottom:1476.666667pt;}
.y21{bottom:1532.026667pt;}
.y20{bottom:1587.386667pt;}
.y1f{bottom:1642.746667pt;}
.y1e{bottom:1698.026667pt;}
.y1d{bottom:1753.386667pt;}
.y1c{bottom:1808.746667pt;}
.y1b{bottom:1864.106667pt;}
.y1a{bottom:1898.426667pt;}
.y19{bottom:1950.346667pt;}
.y18{bottom:1986.986667pt;}
.y17{bottom:2053.146667pt;}
.y16{bottom:2122.613333pt;}
.y15{bottom:2158.373333pt;}
.y14{bottom:2194.213333pt;}
.y13{bottom:2229.973333pt;}
.y12{bottom:2463.493333pt;}
.y11{bottom:2518.853333pt;}
.y10{bottom:2574.133333pt;}
.yf{bottom:2629.493333pt;}
.ye{bottom:2684.853333pt;}
.yd{bottom:2740.213333pt;}
.yc{bottom:2791.893333pt;}
.yb{bottom:2843.813333pt;}
.ya{bottom:2880.453333pt;}
.y9{bottom:2946.613333pt;}
.y3e{bottom:3023.733333pt;}
.y3d{bottom:3079.093333pt;}
.y3c{bottom:3134.373333pt;}
.y8{bottom:3142.693333pt;}
.y7{bottom:3205.253333pt;}
.y6{bottom:3271.440000pt;}
.y5{bottom:3373.440000pt;}
.y4{bottom:3432.000000pt;}
.y3{bottom:3529.040000pt;}
.y2{bottom:3639.680000pt;}
.y1{bottom:3763.920000pt;}
.h2{height:37.105312pt;}
.h5{height:51.437500pt;}
.h7{height:68.669063pt;}
.hb{height:94.502500pt;}
.h9{height:146.002500pt;}
.hd{height:146.088333pt;}
.h4{height:154.500000pt;}
.ha{height:158.671406pt;}
.he{height:158.764688pt;}
.h8{height:173.071406pt;}
.h6{height:205.750000pt;}
.hc{height:229.842500pt;}
.h3{height:291.393437pt;}
.h1{height:3779.333333pt;}
.h0{height:3779.520000pt;}
.w1{width:3401.333333pt;}
.w0{width:3401.600000pt;}
.x0{left:0.000000pt;}
.x1{left:1.520000pt;}
.x8{left:55.760000pt;}
.xa{left:71.200000pt;}
.xb{left:94.400000pt;}
.x12{left:109.280000pt;}
.x2{left:622.586667pt;}
.x5{left:902.586667pt;}
.x3{left:929.786667pt;}
.xd{left:972.106667pt;}
.x4{left:1189.306667pt;}
.x7{left:1490.666667pt;}
.xe{left:1509.173333pt;}
.x10{left:1524.373333pt;}
.x9{left:1537.173333pt;}
.x11{left:1593.333333pt;}
.x6{left:1700.773333pt;}
.xc{left:2221.253333pt;}
.xf{left:2470.693333pt;}
}




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