
    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_bd2345f27781c8c2b970428b.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_a0e05fe9fcc44fb9d732b283.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_dbd6423b2ec089fc1522ca3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.720000px;}
.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;}
}
.ws4{word-spacing:-83.520000px;}
.ws1{word-spacing:-30.600000px;}
.ws0{word-spacing:-29.880000px;}
.ws2{word-spacing:-24.120000px;}
.ws3{word-spacing:0.000000px;}
._6{margin-left:-4.185600px;}
._7{margin-left:-3.012000px;}
._1{margin-left:-1.601280px;}
._0{width:1.450080px;}
._3{width:2.596800px;}
._2{width:3.896160px;}
._c{width:5.108160px;}
._8{width:6.331680px;}
._9{width:8.141760px;}
._f{width:9.192960px;}
._20{width:10.603680px;}
._17{width:11.746080px;}
._24{width:13.451040px;}
._5{width:14.934240px;}
._4{width:16.270560px;}
._34{width:17.855520px;}
._1b{width:22.952160px;}
._2c{width:24.157440px;}
._d{width:25.974720px;}
._2e{width:26.991360px;}
._e{width:28.002240px;}
._a{width:29.232000px;}
._b{width:31.106880px;}
._2b{width:32.389920px;}
._2a{width:34.211520px;}
._12{width:36.519840px;}
._13{width:38.456640px;}
._10{width:40.482240px;}
._32{width:41.592960px;}
._11{width:42.662880px;}
._33{width:44.516160px;}
._22{width:51.683040px;}
._23{width:53.134560px;}
._21{width:54.385920px;}
._19{width:57.782880px;}
._18{width:58.881600px;}
._1a{width:59.964000px;}
._25{width:61.454400px;}
._26{width:62.589120px;}
._1d{width:65.100000px;}
._1f{width:66.149280px;}
._1e{width:67.179840px;}
._2d{width:82.365120px;}
._28{width:83.573280px;}
._27{width:85.112160px;}
._29{width:86.267040px;}
._2f{width:90.216000px;}
._15{width:101.034720px;}
._16{width:102.494880px;}
._1c{width:193.453920px;}
._31{width:197.395200px;}
._30{width:198.898560px;}
._14{width:221.699520px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:66.240000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs0{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y4{bottom:21.240000px;}
.y3{bottom:51.120000px;}
.y9{bottom:56.880000px;}
.y8{bottom:75.636000px;}
.y2{bottom:85.710000px;}
.y7{bottom:94.716000px;}
.y38{bottom:119.916000px;}
.y21{bottom:144.396000px;}
.y37{bottom:156.270000px;}
.y20{bottom:180.390000px;}
.y53{bottom:192.270000px;}
.y36{bottom:192.630000px;}
.y1f{bottom:216.795000px;}
.y52{bottom:240.555000px;}
.y35{bottom:240.915000px;}
.y1e{bottom:253.155000px;}
.y42{bottom:265.035000px;}
.y34{bottom:276.915000px;}
.y1d{bottom:289.155000px;}
.y41{bottom:301.035000px;}
.y33{bottom:313.275000px;}
.y51{bottom:325.185000px;}
.y1c{bottom:325.545000px;}
.y40{bottom:337.425000px;}
.y32{bottom:349.305000px;}
.y1b{bottom:361.545000px;}
.y59{bottom:373.785000px;}
.y31{bottom:385.665000px;}
.y50{bottom:397.545000px;}
.y1a{bottom:397.905000px;}
.y30{bottom:422.025000px;}
.y4f{bottom:433.905000px;}
.y19{bottom:434.265000px;}
.y2f{bottom:458.070000px;}
.y18{bottom:470.310000px;}
.y4e{bottom:482.190000px;}
.y2e{bottom:506.310000px;}
.y17{bottom:506.670000px;}
.y4d{bottom:518.550000px;}
.y16{bottom:542.670000px;}
.y4c{bottom:554.550000px;}
.y58{bottom:566.790000px;}
.y2d{bottom:578.700000px;}
.y15{bottom:579.060000px;}
.y4b{bottom:590.940000px;}
.y57{bottom:603.180000px;}
.y2c{bottom:615.060000px;}
.y14{bottom:615.420000px;}
.y4a{bottom:626.940000px;}
.y2b{bottom:651.420000px;}
.y13{bottom:663.300000px;}
.y2a{bottom:687.420000px;}
.y49{bottom:711.210000px;}
.y12{bottom:711.570000px;}
.y29{bottom:723.810000px;}
.y3f{bottom:735.330000px;}
.y56{bottom:735.690000px;}
.y48{bottom:759.810000px;}
.y11{bottom:760.170000px;}
.y55{bottom:772.050000px;}
.y3e{bottom:783.930000px;}
.y28{bottom:807.690000px;}
.y10{bottom:808.050000px;}
.y3d{bottom:820.290000px;}
.y47{bottom:844.095000px;}
.y27{bottom:855.975000px;}
.yf{bottom:856.335000px;}
.y54{bottom:868.575000px;}
.y46{bottom:880.455000px;}
.y3c{bottom:892.695000px;}
.ye{bottom:904.215000px;}
.y26{bottom:904.575000px;}
.y45{bottom:916.815000px;}
.y3b{bottom:940.575000px;}
.y25{bottom:940.935000px;}
.yd{bottom:952.485000px;}
.y44{bottom:952.845000px;}
.y24{bottom:977.325000px;}
.y3a{bottom:989.205000px;}
.yc{bottom:1000.725000px;}
.y43{bottom:1001.085000px;}
.y23{bottom:1025.205000px;}
.yb{bottom:1037.085000px;}
.y39{bottom:1037.445000px;}
.ya{bottom:1073.445000px;}
.y22{bottom:1073.805000px;}
.y1{bottom:1126.410000px;}
.y6{bottom:1175.730000px;}
.y5{bottom:1194.810000px;}
.h5{height:65.010937px;}
.h7{height:81.970312px;}
.h6{height:84.172500px;}
.h4{height:94.689844px;}
.h3{height:117.302344px;}
.h2{height:129.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:890.609973px;}
.w1{width:892.500000px;}
.w3{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:75.635973px;}
.x4{left:127.475987px;}
.x2{left:161.714973px;}
.x7{left:183.674987px;}
.xb{left:189.794987px;}
.x6{left:239.864987px;}
.x3{left:271.544973px;}
.x8{left:276.944987px;}
.xd{left:290.984987px;}
.xc{left:332.069987px;}
.xe{left:345.749987px;}
.xa{left:354.389987px;}
.x5{left:474.299987px;}
.x9{left:478.259987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.640000pt;}
.ws4{word-spacing:-74.240000pt;}
.ws1{word-spacing:-27.200000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws2{word-spacing:-21.440000pt;}
.ws3{word-spacing:0.000000pt;}
._6{margin-left:-3.720533pt;}
._7{margin-left:-2.677333pt;}
._1{margin-left:-1.423360pt;}
._0{width:1.288960pt;}
._3{width:2.308267pt;}
._2{width:3.463253pt;}
._c{width:4.540587pt;}
._8{width:5.628160pt;}
._9{width:7.237120pt;}
._f{width:8.171520pt;}
._20{width:9.425493pt;}
._17{width:10.440960pt;}
._24{width:11.956480pt;}
._5{width:13.274880pt;}
._4{width:14.462720pt;}
._34{width:15.871573pt;}
._1b{width:20.401920pt;}
._2c{width:21.473280pt;}
._d{width:23.088640pt;}
._2e{width:23.992320pt;}
._e{width:24.890880pt;}
._a{width:25.984000pt;}
._b{width:27.650560pt;}
._2b{width:28.791040pt;}
._2a{width:30.410240pt;}
._12{width:32.462080pt;}
._13{width:34.183680pt;}
._10{width:35.984213pt;}
._32{width:36.971520pt;}
._11{width:37.922560pt;}
._33{width:39.569920pt;}
._22{width:45.940480pt;}
._23{width:47.230720pt;}
._21{width:48.343040pt;}
._19{width:51.362560pt;}
._18{width:52.339200pt;}
._1a{width:53.301333pt;}
._25{width:54.626133pt;}
._26{width:55.634773pt;}
._1d{width:57.866667pt;}
._1f{width:58.799360pt;}
._1e{width:59.715413pt;}
._2d{width:73.213440pt;}
._28{width:74.287360pt;}
._27{width:75.655253pt;}
._29{width:76.681813pt;}
._2f{width:80.192000pt;}
._15{width:89.808640pt;}
._16{width:91.106560pt;}
._1c{width:171.959040pt;}
._31{width:175.462400pt;}
._30{width:176.798720pt;}
._14{width:197.066240pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs0{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:18.880000pt;}
.y3{bottom:45.440000pt;}
.y9{bottom:50.560000pt;}
.y8{bottom:67.232000pt;}
.y2{bottom:76.186667pt;}
.y7{bottom:84.192000pt;}
.y38{bottom:106.592000pt;}
.y21{bottom:128.352000pt;}
.y37{bottom:138.906667pt;}
.y20{bottom:160.346667pt;}
.y53{bottom:170.906667pt;}
.y36{bottom:171.226667pt;}
.y1f{bottom:192.706667pt;}
.y52{bottom:213.826667pt;}
.y35{bottom:214.146667pt;}
.y1e{bottom:225.026667pt;}
.y42{bottom:235.586667pt;}
.y34{bottom:246.146667pt;}
.y1d{bottom:257.026667pt;}
.y41{bottom:267.586667pt;}
.y33{bottom:278.466667pt;}
.y51{bottom:289.053333pt;}
.y1c{bottom:289.373333pt;}
.y40{bottom:299.933333pt;}
.y32{bottom:310.493333pt;}
.y1b{bottom:321.373333pt;}
.y59{bottom:332.253333pt;}
.y31{bottom:342.813333pt;}
.y50{bottom:353.373333pt;}
.y1a{bottom:353.693333pt;}
.y30{bottom:375.133333pt;}
.y4f{bottom:385.693333pt;}
.y19{bottom:386.013333pt;}
.y2f{bottom:407.173333pt;}
.y18{bottom:418.053333pt;}
.y4e{bottom:428.613333pt;}
.y2e{bottom:450.053333pt;}
.y17{bottom:450.373333pt;}
.y4d{bottom:460.933333pt;}
.y16{bottom:482.373333pt;}
.y4c{bottom:492.933333pt;}
.y58{bottom:503.813333pt;}
.y2d{bottom:514.400000pt;}
.y15{bottom:514.720000pt;}
.y4b{bottom:525.280000pt;}
.y57{bottom:536.160000pt;}
.y2c{bottom:546.720000pt;}
.y14{bottom:547.040000pt;}
.y4a{bottom:557.280000pt;}
.y2b{bottom:579.040000pt;}
.y13{bottom:589.600000pt;}
.y2a{bottom:611.040000pt;}
.y49{bottom:632.186667pt;}
.y12{bottom:632.506667pt;}
.y29{bottom:643.386667pt;}
.y3f{bottom:653.626667pt;}
.y56{bottom:653.946667pt;}
.y48{bottom:675.386667pt;}
.y11{bottom:675.706667pt;}
.y55{bottom:686.266667pt;}
.y3e{bottom:696.826667pt;}
.y28{bottom:717.946667pt;}
.y10{bottom:718.266667pt;}
.y3d{bottom:729.146667pt;}
.y47{bottom:750.306667pt;}
.y27{bottom:760.866667pt;}
.yf{bottom:761.186667pt;}
.y54{bottom:772.066667pt;}
.y46{bottom:782.626667pt;}
.y3c{bottom:793.506667pt;}
.ye{bottom:803.746667pt;}
.y26{bottom:804.066667pt;}
.y45{bottom:814.946667pt;}
.y3b{bottom:836.066667pt;}
.y25{bottom:836.386667pt;}
.yd{bottom:846.653333pt;}
.y44{bottom:846.973333pt;}
.y24{bottom:868.733333pt;}
.y3a{bottom:879.293333pt;}
.yc{bottom:889.533333pt;}
.y43{bottom:889.853333pt;}
.y23{bottom:911.293333pt;}
.yb{bottom:921.853333pt;}
.y39{bottom:922.173333pt;}
.ya{bottom:954.173333pt;}
.y22{bottom:954.493333pt;}
.y1{bottom:1001.253333pt;}
.y6{bottom:1045.093333pt;}
.y5{bottom:1062.053333pt;}
.h5{height:57.787500pt;}
.h7{height:72.862500pt;}
.h6{height:74.820000pt;}
.h4{height:84.168750pt;}
.h3{height:104.268750pt;}
.h2{height:114.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:791.653310pt;}
.w1{width:793.333333pt;}
.w3{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:67.231976pt;}
.x4{left:113.311988pt;}
.x2{left:143.746643pt;}
.x7{left:163.266655pt;}
.xb{left:168.706655pt;}
.x6{left:213.213322pt;}
.x3{left:241.373310pt;}
.x8{left:246.173322pt;}
.xd{left:258.653322pt;}
.xc{left:295.173322pt;}
.xe{left:307.333322pt;}
.xa{left:315.013322pt;}
.x5{left:421.599988pt;}
.x9{left:425.119988pt;}
}




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