
    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_9a1268b89b74d1a39840a316.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6bc2200af0de8916aa2b2a61.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005859;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_117e2b119455cb8763c748db.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f2063be0ef07dc616704fad2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_1a202e729a9e3e6be7ad9f2a.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_986b3853c09df374ee337347.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_906afce46ae9e9c7d79fa313.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:27.360000px;}
.ls9{letter-spacing:-2.160000px;}
.ls6{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-1.152000px;}
.ls7{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.792000px;}
.ls4{letter-spacing:10.980000px;}
.ls1{letter-spacing:11.520000px;}
.ls5{letter-spacing:21.780000px;}
.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:-23.940000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-4.248000px;}
._5{margin-left:-3.240000px;}
._4{margin-left:-2.184000px;}
._3{margin-left:-1.008000px;}
._0{width:1.075680px;}
._a{width:2.520000px;}
._1{width:3.600000px;}
._2{width:4.680000px;}
._7{width:6.268320px;}
._d{width:7.555680px;}
._15{width:8.652960px;}
._f{width:9.720000px;}
._10{width:11.088000px;}
._11{width:12.104640px;}
._17{width:13.695360px;}
._13{width:15.048000px;}
._6{width:16.464000px;}
._12{width:19.080000px;}
._1d{width:20.084640px;}
._c{width:21.192000px;}
._b{width:22.536000px;}
._1c{width:23.688000px;}
._1e{width:25.512000px;}
._14{width:26.640000px;}
._16{width:28.008000px;}
._1a{width:31.608000px;}
._1b{width:32.904000px;}
._9{width:34.560000px;}
._8{width:35.712000px;}
._18{width:40.176000px;}
._19{width:41.580000px;}
.fc2{color:rgb(192,0,0);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(165,0,33);}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.780000px;}
.y9{bottom:19.440000px;}
.y7{bottom:21.060000px;}
.y6{bottom:38.340000px;}
.ya{bottom:56.880000px;}
.y5{bottom:82.620000px;}
.y6c{bottom:149.580000px;}
.y2d{bottom:152.280000px;}
.y6b{bottom:173.550000px;}
.y2c{bottom:176.070000px;}
.y52{bottom:188.490000px;}
.y6a{bottom:197.310000px;}
.y2b{bottom:199.830000px;}
.y51{bottom:212.250000px;}
.y69{bottom:221.070000px;}
.y2a{bottom:223.770000px;}
.y50{bottom:236.190000px;}
.y68{bottom:244.470000px;}
.y29{bottom:247.530000px;}
.y4f{bottom:259.950000px;}
.y67{bottom:268.770000px;}
.y28{bottom:271.290000px;}
.y4e{bottom:283.710000px;}
.y66{bottom:292.530000px;}
.y27{bottom:295.050000px;}
.y4d{bottom:322.590000px;}
.y65{bottom:331.230000px;}
.y26{bottom:333.930000px;}
.y4c{bottom:346.350000px;}
.y64{bottom:355.170000px;}
.y25{bottom:357.690000px;}
.y4b{bottom:370.110000px;}
.y63{bottom:378.930000px;}
.y24{bottom:381.450000px;}
.y4a{bottom:393.870000px;}
.y62{bottom:402.690000px;}
.y23{bottom:405.435000px;}
.y49{bottom:417.855000px;}
.y61{bottom:426.495000px;}
.y22{bottom:429.195000px;}
.y48{bottom:441.615000px;}
.y21{bottom:452.955000px;}
.y60{bottom:465.375000px;}
.y20{bottom:476.715000px;}
.y47{bottom:480.315000px;}
.y5f{bottom:489.135000px;}
.y46{bottom:504.255000px;}
.y5e{bottom:512.895000px;}
.y1f{bottom:515.595000px;}
.y45{bottom:528.015000px;}
.y5d{bottom:536.475000px;}
.y1e{bottom:539.355000px;}
.y44{bottom:551.775000px;}
.y5c{bottom:560.595000px;}
.y1d{bottom:563.115000px;}
.y43{bottom:575.535000px;}
.y1c{bottom:587.055000px;}
.y42{bottom:599.475000px;}
.y5b{bottom:623.235000px;}
.y1b{bottom:625.755000px;}
.y41{bottom:638.175000px;}
.y5a{bottom:646.995000px;}
.y1a{bottom:649.515000px;}
.y40{bottom:661.965000px;}
.y59{bottom:670.425000px;}
.y19{bottom:673.485000px;}
.y3f{bottom:685.905000px;}
.y58{bottom:694.545000px;}
.y18{bottom:697.245000px;}
.y3e{bottom:709.665000px;}
.y3d{bottom:733.425000px;}
.y17{bottom:736.125000px;}
.y3c{bottom:757.185000px;}
.y16{bottom:759.885000px;}
.y57{bottom:781.125000px;}
.y15{bottom:783.645000px;}
.y3b{bottom:795.705000px;}
.y56{bottom:804.885000px;}
.y14{bottom:807.405000px;}
.y3a{bottom:819.825000px;}
.y55{bottom:828.645000px;}
.y13{bottom:831.165000px;}
.y39{bottom:843.585000px;}
.y12{bottom:855.105000px;}
.y38{bottom:867.525000px;}
.y37{bottom:891.285000px;}
.y11{bottom:893.445000px;}
.y6f{bottom:908.970000px;}
.y36{bottom:915.090000px;}
.y10{bottom:932.370000px;}
.y35{bottom:938.850000px;}
.y6e{bottom:947.670000px;}
.y54{bottom:962.790000px;}
.yf{bottom:971.070000px;}
.y34{bottom:977.730000px;}
.y6d{bottom:986.550000px;}
.y33{bottom:1001.490000px;}
.ye{bottom:1009.950000px;}
.y32{bottom:1025.250000px;}
.y31{bottom:1049.190000px;}
.yd{bottom:1051.170000px;}
.y30{bottom:1072.950000px;}
.yc{bottom:1082.850000px;}
.y2f{bottom:1096.350000px;}
.y53{bottom:1096.710000px;}
.yb{bottom:1114.530000px;}
.y2e{bottom:1120.470000px;}
.y4{bottom:1141.020000px;}
.y3{bottom:1161.720000px;}
.y2{bottom:1179.000000px;}
.y1{bottom:1196.280000px;}
.h4{height:51.840000px;}
.h2{height:58.651172px;}
.h3{height:60.679688px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.h8{height:74.704922px;}
.h5{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:32.580000px;}
.w3{width:605.265000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:11.160000px;}
.x5{left:65.334000px;}
.x4{left:127.655987px;}
.xa{left:170.849987px;}
.x10{left:180.749987px;}
.x9{left:199.289987px;}
.x2{left:214.229987px;}
.xb{left:251.129987px;}
.x7{left:329.259000px;}
.x3{left:334.154987px;}
.xd{left:365.294987px;}
.xc{left:373.034987px;}
.x1{left:376.634987px;}
.xf{left:400.574987px;}
.xe{left:404.714987px;}
.x8{left:732.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-1.920000pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-1.024000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.704000pt;}
.ls4{letter-spacing:9.760000pt;}
.ls1{letter-spacing:10.240000pt;}
.ls5{letter-spacing:19.360000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-3.776000pt;}
._5{margin-left:-2.880000pt;}
._4{margin-left:-1.941333pt;}
._3{margin-left:-0.896000pt;}
._0{width:0.956160pt;}
._a{width:2.240000pt;}
._1{width:3.200000pt;}
._2{width:4.160000pt;}
._7{width:5.571840pt;}
._d{width:6.716160pt;}
._15{width:7.691520pt;}
._f{width:8.640000pt;}
._10{width:9.856000pt;}
._11{width:10.759680pt;}
._17{width:12.173653pt;}
._13{width:13.376000pt;}
._6{width:14.634667pt;}
._12{width:16.960000pt;}
._1d{width:17.853013pt;}
._c{width:18.837333pt;}
._b{width:20.032000pt;}
._1c{width:21.056000pt;}
._1e{width:22.677333pt;}
._14{width:23.680000pt;}
._16{width:24.896000pt;}
._1a{width:28.096000pt;}
._1b{width:29.248000pt;}
._9{width:30.720000pt;}
._8{width:31.744000pt;}
._18{width:35.712000pt;}
._19{width:36.960000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.360000pt;}
.y9{bottom:17.280000pt;}
.y7{bottom:18.720000pt;}
.y6{bottom:34.080000pt;}
.ya{bottom:50.560000pt;}
.y5{bottom:73.440000pt;}
.y6c{bottom:132.960000pt;}
.y2d{bottom:135.360000pt;}
.y6b{bottom:154.266667pt;}
.y2c{bottom:156.506667pt;}
.y52{bottom:167.546667pt;}
.y6a{bottom:175.386667pt;}
.y2b{bottom:177.626667pt;}
.y51{bottom:188.666667pt;}
.y69{bottom:196.506667pt;}
.y2a{bottom:198.906667pt;}
.y50{bottom:209.946667pt;}
.y68{bottom:217.306667pt;}
.y29{bottom:220.026667pt;}
.y4f{bottom:231.066667pt;}
.y67{bottom:238.906667pt;}
.y28{bottom:241.146667pt;}
.y4e{bottom:252.186667pt;}
.y66{bottom:260.026667pt;}
.y27{bottom:262.266667pt;}
.y4d{bottom:286.746667pt;}
.y65{bottom:294.426667pt;}
.y26{bottom:296.826667pt;}
.y4c{bottom:307.866667pt;}
.y64{bottom:315.706667pt;}
.y25{bottom:317.946667pt;}
.y4b{bottom:328.986667pt;}
.y63{bottom:336.826667pt;}
.y24{bottom:339.066667pt;}
.y4a{bottom:350.106667pt;}
.y62{bottom:357.946667pt;}
.y23{bottom:360.386667pt;}
.y49{bottom:371.426667pt;}
.y61{bottom:379.106667pt;}
.y22{bottom:381.506667pt;}
.y48{bottom:392.546667pt;}
.y21{bottom:402.626667pt;}
.y60{bottom:413.666667pt;}
.y20{bottom:423.746667pt;}
.y47{bottom:426.946667pt;}
.y5f{bottom:434.786667pt;}
.y46{bottom:448.226667pt;}
.y5e{bottom:455.906667pt;}
.y1f{bottom:458.306667pt;}
.y45{bottom:469.346667pt;}
.y5d{bottom:476.866667pt;}
.y1e{bottom:479.426667pt;}
.y44{bottom:490.466667pt;}
.y5c{bottom:498.306667pt;}
.y1d{bottom:500.546667pt;}
.y43{bottom:511.586667pt;}
.y1c{bottom:521.826667pt;}
.y42{bottom:532.866667pt;}
.y5b{bottom:553.986667pt;}
.y1b{bottom:556.226667pt;}
.y41{bottom:567.266667pt;}
.y5a{bottom:575.106667pt;}
.y1a{bottom:577.346667pt;}
.y40{bottom:588.413333pt;}
.y59{bottom:595.933333pt;}
.y19{bottom:598.653333pt;}
.y3f{bottom:609.693333pt;}
.y58{bottom:617.373333pt;}
.y18{bottom:619.773333pt;}
.y3e{bottom:630.813333pt;}
.y3d{bottom:651.933333pt;}
.y17{bottom:654.333333pt;}
.y3c{bottom:673.053333pt;}
.y16{bottom:675.453333pt;}
.y57{bottom:694.333333pt;}
.y15{bottom:696.573333pt;}
.y3b{bottom:707.293333pt;}
.y56{bottom:715.453333pt;}
.y14{bottom:717.693333pt;}
.y3a{bottom:728.733333pt;}
.y55{bottom:736.573333pt;}
.y13{bottom:738.813333pt;}
.y39{bottom:749.853333pt;}
.y12{bottom:760.093333pt;}
.y38{bottom:771.133333pt;}
.y37{bottom:792.253333pt;}
.y11{bottom:794.173333pt;}
.y6f{bottom:807.973333pt;}
.y36{bottom:813.413333pt;}
.y10{bottom:828.773333pt;}
.y35{bottom:834.533333pt;}
.y6e{bottom:842.373333pt;}
.y54{bottom:855.813333pt;}
.yf{bottom:863.173333pt;}
.y34{bottom:869.093333pt;}
.y6d{bottom:876.933333pt;}
.y33{bottom:890.213333pt;}
.ye{bottom:897.733333pt;}
.y32{bottom:911.333333pt;}
.y31{bottom:932.613333pt;}
.yd{bottom:934.373333pt;}
.y30{bottom:953.733333pt;}
.yc{bottom:962.533333pt;}
.y2f{bottom:974.533333pt;}
.y53{bottom:974.853333pt;}
.yb{bottom:990.693333pt;}
.y2e{bottom:995.973333pt;}
.y4{bottom:1014.240000pt;}
.y3{bottom:1032.640000pt;}
.y2{bottom:1048.000000pt;}
.y1{bottom:1063.360000pt;}
.h4{height:46.080000pt;}
.h2{height:52.134375pt;}
.h3{height:53.937500pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.h8{height:66.404375pt;}
.h5{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:28.960000pt;}
.w3{width:538.013333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.920000pt;}
.x5{left:58.074667pt;}
.x4{left:113.471988pt;}
.xa{left:151.866655pt;}
.x10{left:160.666655pt;}
.x9{left:177.146655pt;}
.x2{left:190.426655pt;}
.xb{left:223.226655pt;}
.x7{left:292.674667pt;}
.x3{left:297.026655pt;}
.xd{left:324.706655pt;}
.xc{left:331.586655pt;}
.x1{left:334.786655pt;}
.xf{left:356.066655pt;}
.xe{left:359.746655pt;}
.x8{left:651.493333pt;}
}




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