
    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_23689e0431c8057f6cbf8a51.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_673c61354ebbb9aac93c09ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.894531;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_213aa21fdb55873e6c62306b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901855;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;}
.ls7{letter-spacing:-1.080000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.066000px;}
.ls11{letter-spacing:0.132000px;}
.ls3{letter-spacing:0.198000px;}
.ls13{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.330000px;}
.ls2{letter-spacing:0.396000px;}
.ls8{letter-spacing:0.462000px;}
.ls14{letter-spacing:0.528000px;}
.ls17{letter-spacing:0.594000px;}
.lsc{letter-spacing:0.660000px;}
.ls4{letter-spacing:0.726000px;}
.lse{letter-spacing:0.792000px;}
.lsd{letter-spacing:0.858000px;}
.lsf{letter-spacing:0.924000px;}
.ls16{letter-spacing:1.056000px;}
.lsb{letter-spacing:1.122000px;}
.ls15{letter-spacing:1.188000px;}
.ls18{letter-spacing:1.254000px;}
.ls10{letter-spacing:1.320000px;}
.lsa{letter-spacing:1.452000px;}
.ls12{letter-spacing:1.518000px;}
.ls9{letter-spacing:2.574000px;}
.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:-16.500000px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-5.760000px;}
._1{margin-left:-3.888000px;}
._a{margin-left:-2.868000px;}
._4{margin-left:-1.440000px;}
._6{width:1.602000px;}
._2{width:2.664000px;}
._9{width:4.488000px;}
._8{width:6.204000px;}
._7{width:7.566000px;}
._5{width:9.000000px;}
._0{width:1225.818000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y50{bottom:87.151800px;}
.y1{bottom:87.163500px;}
.y19{bottom:126.162750px;}
.y44{bottom:132.954600px;}
.y18{bottom:143.751750px;}
.y43{bottom:150.543600px;}
.y42{bottom:168.132600px;}
.y17{bottom:170.151750px;}
.y41{bottom:185.721600px;}
.y16{bottom:187.740750px;}
.y40{bottom:203.310600px;}
.y15{bottom:205.329750px;}
.y3f{bottom:220.899600px;}
.y14{bottom:222.918750px;}
.y3e{bottom:238.488600px;}
.y13{bottom:240.507750px;}
.y3d{bottom:256.077600px;}
.y12{bottom:258.096750px;}
.y3c{bottom:273.666600px;}
.y11{bottom:275.685750px;}
.y3b{bottom:291.255600px;}
.y10{bottom:293.274750px;}
.y4f{bottom:308.844600px;}
.yf{bottom:310.863750px;}
.y3a{bottom:317.655600px;}
.y4e{bottom:326.433600px;}
.ye{bottom:328.452750px;}
.y39{bottom:335.244600px;}
.y4d{bottom:344.022600px;}
.yd{bottom:346.041750px;}
.y6e{bottom:352.788750px;}
.y38{bottom:352.833600px;}
.y6d{bottom:370.377750px;}
.y37{bottom:370.422600px;}
.yc{bottom:372.441750px;}
.y6c{bottom:387.966750px;}
.y36{bottom:388.011600px;}
.yb{bottom:390.030750px;}
.y35{bottom:405.600600px;}
.ya{bottom:407.619750px;}
.y6b{bottom:414.366750px;}
.y34{bottom:423.189600px;}
.y9{bottom:425.208750px;}
.y6a{bottom:440.766750px;}
.y33{bottom:440.778600px;}
.y8{bottom:442.797750px;}
.y69{bottom:458.355750px;}
.y32{bottom:458.367600px;}
.y7{bottom:460.386750px;}
.y68{bottom:475.944750px;}
.y31{bottom:475.956600px;}
.y67{bottom:493.533750px;}
.y30{bottom:493.545600px;}
.y6{bottom:495.581250px;}
.y66{bottom:511.122750px;}
.y2f{bottom:511.134600px;}
.y65{bottom:528.711750px;}
.y2e{bottom:528.723600px;}
.y64{bottom:546.300750px;}
.y2d{bottom:546.312600px;}
.y5{bottom:548.366850px;}
.y63{bottom:563.889750px;}
.y2c{bottom:563.901600px;}
.y4{bottom:567.554850px;}
.y4c{bottom:572.712600px;}
.y62{bottom:581.478750px;}
.y2b{bottom:590.301600px;}
.y3{bottom:595.544850px;}
.y61{bottom:599.067750px;}
.y2a{bottom:607.890600px;}
.y2{bottom:614.732850px;}
.y60{bottom:616.656750px;}
.y29{bottom:625.479600px;}
.y5f{bottom:634.245750px;}
.y28{bottom:643.068600px;}
.y5e{bottom:660.645750px;}
.y27{bottom:660.657600px;}
.y5d{bottom:678.234750px;}
.y26{bottom:678.246600px;}
.y5c{bottom:695.823750px;}
.y25{bottom:695.835600px;}
.y5b{bottom:713.412750px;}
.y24{bottom:713.424600px;}
.y5a{bottom:731.001750px;}
.y4b{bottom:731.013600px;}
.y23{bottom:739.824600px;}
.y59{bottom:748.590750px;}
.y4a{bottom:748.602600px;}
.y22{bottom:757.413600px;}
.y58{bottom:766.179750px;}
.y49{bottom:766.191600px;}
.y21{bottom:775.002600px;}
.y57{bottom:783.768750px;}
.y48{bottom:783.780600px;}
.y20{bottom:792.591600px;}
.y56{bottom:801.357750px;}
.y47{bottom:801.369600px;}
.y1f{bottom:810.180600px;}
.y55{bottom:818.946750px;}
.y46{bottom:818.958600px;}
.y1e{bottom:827.769600px;}
.y45{bottom:836.547600px;}
.y54{bottom:845.346750px;}
.y1d{bottom:845.358600px;}
.y53{bottom:862.935750px;}
.y1c{bottom:862.947600px;}
.y52{bottom:880.524750px;}
.y1b{bottom:880.536600px;}
.y51{bottom:922.472550px;}
.y1a{bottom:922.484250px;}
.h6{height:45.278320px;}
.h4{height:45.826172px;}
.h5{height:53.818359px;}
.h2{height:59.200195px;}
.h3{height:64.582031px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:97.795350px;}
.x7{left:123.304350px;}
.x2{left:127.559100px;}
.x4{left:153.071100px;}
.x9{left:254.479350px;}
.x1{left:289.708200px;}
.x3{left:342.078600px;}
.xa{left:392.386350px;}
.xb{left:401.659350px;}
.x8{left:433.471350px;}
.x6{left:508.227150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.058667pt;}
.ls11{letter-spacing:0.117333pt;}
.ls3{letter-spacing:0.176000pt;}
.ls13{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.293333pt;}
.ls2{letter-spacing:0.352000pt;}
.ls8{letter-spacing:0.410667pt;}
.ls14{letter-spacing:0.469333pt;}
.ls17{letter-spacing:0.528000pt;}
.lsc{letter-spacing:0.586667pt;}
.ls4{letter-spacing:0.645333pt;}
.lse{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.762667pt;}
.lsf{letter-spacing:0.821333pt;}
.ls16{letter-spacing:0.938667pt;}
.lsb{letter-spacing:0.997333pt;}
.ls15{letter-spacing:1.056000pt;}
.ls18{letter-spacing:1.114667pt;}
.ls10{letter-spacing:1.173333pt;}
.lsa{letter-spacing:1.290667pt;}
.ls12{letter-spacing:1.349333pt;}
.ls9{letter-spacing:2.288000pt;}
.ws0{word-spacing:-14.666667pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-5.120000pt;}
._1{margin-left:-3.456000pt;}
._a{margin-left:-2.549333pt;}
._4{margin-left:-1.280000pt;}
._6{width:1.424000pt;}
._2{width:2.368000pt;}
._9{width:3.989333pt;}
._8{width:5.514667pt;}
._7{width:6.725333pt;}
._5{width:8.000000pt;}
._0{width:1089.616000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:77.468267pt;}
.y1{bottom:77.478667pt;}
.y19{bottom:112.144667pt;}
.y44{bottom:118.181867pt;}
.y18{bottom:127.779333pt;}
.y43{bottom:133.816533pt;}
.y42{bottom:149.451200pt;}
.y17{bottom:151.246000pt;}
.y41{bottom:165.085867pt;}
.y16{bottom:166.880667pt;}
.y40{bottom:180.720533pt;}
.y15{bottom:182.515333pt;}
.y3f{bottom:196.355200pt;}
.y14{bottom:198.150000pt;}
.y3e{bottom:211.989867pt;}
.y13{bottom:213.784667pt;}
.y3d{bottom:227.624533pt;}
.y12{bottom:229.419333pt;}
.y3c{bottom:243.259200pt;}
.y11{bottom:245.054000pt;}
.y3b{bottom:258.893867pt;}
.y10{bottom:260.688667pt;}
.y4f{bottom:274.528533pt;}
.yf{bottom:276.323333pt;}
.y3a{bottom:282.360533pt;}
.y4e{bottom:290.163200pt;}
.ye{bottom:291.958000pt;}
.y39{bottom:297.995200pt;}
.y4d{bottom:305.797867pt;}
.yd{bottom:307.592667pt;}
.y6e{bottom:313.590000pt;}
.y38{bottom:313.629867pt;}
.y6d{bottom:329.224667pt;}
.y37{bottom:329.264533pt;}
.yc{bottom:331.059333pt;}
.y6c{bottom:344.859333pt;}
.y36{bottom:344.899200pt;}
.yb{bottom:346.694000pt;}
.y35{bottom:360.533867pt;}
.ya{bottom:362.328667pt;}
.y6b{bottom:368.326000pt;}
.y34{bottom:376.168533pt;}
.y9{bottom:377.963333pt;}
.y6a{bottom:391.792667pt;}
.y33{bottom:391.803200pt;}
.y8{bottom:393.598000pt;}
.y69{bottom:407.427333pt;}
.y32{bottom:407.437867pt;}
.y7{bottom:409.232667pt;}
.y68{bottom:423.062000pt;}
.y31{bottom:423.072533pt;}
.y67{bottom:438.696667pt;}
.y30{bottom:438.707200pt;}
.y6{bottom:440.516667pt;}
.y66{bottom:454.331333pt;}
.y2f{bottom:454.341867pt;}
.y65{bottom:469.966000pt;}
.y2e{bottom:469.976533pt;}
.y64{bottom:485.600667pt;}
.y2d{bottom:485.611200pt;}
.y5{bottom:487.437200pt;}
.y63{bottom:501.235333pt;}
.y2c{bottom:501.245867pt;}
.y4{bottom:504.493200pt;}
.y4c{bottom:509.077867pt;}
.y62{bottom:516.870000pt;}
.y2b{bottom:524.712533pt;}
.y3{bottom:529.373200pt;}
.y61{bottom:532.504667pt;}
.y2a{bottom:540.347200pt;}
.y2{bottom:546.429200pt;}
.y60{bottom:548.139333pt;}
.y29{bottom:555.981867pt;}
.y5f{bottom:563.774000pt;}
.y28{bottom:571.616533pt;}
.y5e{bottom:587.240667pt;}
.y27{bottom:587.251200pt;}
.y5d{bottom:602.875333pt;}
.y26{bottom:602.885867pt;}
.y5c{bottom:618.510000pt;}
.y25{bottom:618.520533pt;}
.y5b{bottom:634.144667pt;}
.y24{bottom:634.155200pt;}
.y5a{bottom:649.779333pt;}
.y4b{bottom:649.789867pt;}
.y23{bottom:657.621867pt;}
.y59{bottom:665.414000pt;}
.y4a{bottom:665.424533pt;}
.y22{bottom:673.256533pt;}
.y58{bottom:681.048667pt;}
.y49{bottom:681.059200pt;}
.y21{bottom:688.891200pt;}
.y57{bottom:696.683333pt;}
.y48{bottom:696.693867pt;}
.y20{bottom:704.525867pt;}
.y56{bottom:712.318000pt;}
.y47{bottom:712.328533pt;}
.y1f{bottom:720.160533pt;}
.y55{bottom:727.952667pt;}
.y46{bottom:727.963200pt;}
.y1e{bottom:735.795200pt;}
.y45{bottom:743.597867pt;}
.y54{bottom:751.419333pt;}
.y1d{bottom:751.429867pt;}
.y53{bottom:767.054000pt;}
.y1c{bottom:767.064533pt;}
.y52{bottom:782.688667pt;}
.y1b{bottom:782.699200pt;}
.y51{bottom:819.975600pt;}
.y1a{bottom:819.986000pt;}
.h6{height:40.247396pt;}
.h4{height:40.734375pt;}
.h5{height:47.838542pt;}
.h2{height:52.622396pt;}
.h3{height:57.406250pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:86.929200pt;}
.x7{left:109.603867pt;}
.x2{left:113.385867pt;}
.x4{left:136.063200pt;}
.x9{left:226.203867pt;}
.x1{left:257.518400pt;}
.x3{left:304.069867pt;}
.xa{left:348.787867pt;}
.xb{left:357.030533pt;}
.x8{left:385.307867pt;}
.x6{left:451.757467pt;}
}




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