
    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_3d6deb4e1bb668d5df2d4219.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_b92d687afc1e67680f32dfd3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_24c543abf6508246f0d992c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_1ce209d3b6d237625b602d89.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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;}
.ls3{letter-spacing:-5.868000px;}
.ls2{letter-spacing:-5.814000px;}
.ls0{letter-spacing:-5.760000px;}
.ls4{letter-spacing:-0.714000px;}
.ls1{letter-spacing:0.000000px;}
.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:-720.000000px;}
.ws1{word-spacing:-192.939120px;}
.ws2{word-spacing:-59.616000px;}
.ws3{word-spacing:-59.184000px;}
.ws4{word-spacing:-41.034240px;}
.ws5{word-spacing:0.000000px;}
._10{margin-left:-3890.686320px;}
._d{margin-left:-28.559520px;}
._9{margin-left:-18.714240px;}
._b{margin-left:-14.376960px;}
._7{margin-left:-11.151648px;}
._5{margin-left:-9.154080px;}
._8{margin-left:-7.207200px;}
._1{margin-left:-5.760000px;}
._3{margin-left:-4.748400px;}
._2{margin-left:-3.602880px;}
._4{margin-left:-2.457360px;}
._0{margin-left:-1.260000px;}
._6{width:1.450800px;}
._a{width:2.452080px;}
._c{width:3.481200px;}
._f{width:37.918080px;}
._e{width:50.418000px;}
._11{width:64.636560px;}
._12{width:174.965760px;}
.fc1{color:rgb(227,103,41);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:149.760000px;}
.fs5{font-size:149.904000px;}
.fs4{font-size:216.000000px;}
.fs2{font-size:300.240000px;}
.fs0{font-size:720.000000px;}
.fs1{font-size:720.120000px;}
.y0{bottom:0.000000px;}
.y46{bottom:99.252000px;}
.y45{bottom:150.195000px;}
.y44{bottom:252.255000px;}
.y43{bottom:303.195000px;}
.y20{bottom:491.580000px;}
.y1f{bottom:542.520000px;}
.y42{bottom:548.355000px;}
.y1e{bottom:593.640000px;}
.y41{bottom:599.295000px;}
.y36{bottom:613.440000px;}
.y1d{bottom:644.580000px;}
.y40{bottom:650.415000px;}
.y1c{bottom:695.520000px;}
.y3f{bottom:701.355000px;}
.y1b{bottom:746.640000px;}
.y3e{bottom:752.295000px;}
.y35{bottom:785.520000px;}
.y1a{bottom:797.580000px;}
.y3d{bottom:803.415000px;}
.y34{bottom:836.640000px;}
.y19{bottom:848.520000px;}
.y3c{bottom:854.355000px;}
.y33{bottom:887.580000px;}
.y18{bottom:899.640000px;}
.y3b{bottom:905.295000px;}
.y32{bottom:938.520000px;}
.y17{bottom:950.580000px;}
.y3a{bottom:956.415000px;}
.y31{bottom:989.640000px;}
.y39{bottom:1007.355000px;}
.y16{bottom:1021.500000px;}
.y30{bottom:1040.580000px;}
.y38{bottom:1058.295000px;}
.y2f{bottom:1091.520000px;}
.y15{bottom:1098.000000px;}
.y37{bottom:1129.215000px;}
.y2e{bottom:1162.440000px;}
.y14{bottom:1219.140000px;}
.y2d{bottom:1238.940000px;}
.y13{bottom:1270.080000px;}
.y12{bottom:1321.020000px;}
.y21{bottom:1334.550000px;}
.y2c{bottom:1360.080000px;}
.y11{bottom:1372.140000px;}
.y2b{bottom:1411.020000px;}
.y10{bottom:1423.080000px;}
.y2a{bottom:1462.140000px;}
.yf{bottom:1474.020000px;}
.y29{bottom:1513.110000px;}
.ye{bottom:1525.170000px;}
.y28{bottom:1564.050000px;}
.yd{bottom:1576.110000px;}
.y27{bottom:1615.170000px;}
.yc{bottom:1627.050000px;}
.y26{bottom:1666.110000px;}
.yb{bottom:1678.170000px;}
.y25{bottom:1717.050000px;}
.ya{bottom:1729.110000px;}
.y24{bottom:1768.170000px;}
.y9{bottom:1780.050000px;}
.y23{bottom:1819.110000px;}
.y8{bottom:1850.970000px;}
.y22{bottom:1870.050000px;}
.y7{bottom:1927.470000px;}
.y6{bottom:3716.250000px;}
.y5{bottom:3818.130000px;}
.y4{bottom:3920.190000px;}
.y3{bottom:4148.205000px;}
.y2{bottom:4352.370000px;}
.y1{bottom:4556.310000px;}
.h5{height:129.504375px;}
.h9{height:129.577500px;}
.h7{height:129.628898px;}
.h6{height:186.785156px;}
.h8{height:186.890625px;}
.h4{height:259.631367px;}
.h2{height:622.968750px;}
.h3{height:623.072578px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1{left:212.609947px;}
.x5{left:1116.254947px;}
.x2{left:1309.934947px;}
.x7{left:1888.994947px;}
.x3{left:2398.649947px;}
.x4{left:2655.149947px;}
.x6{left:2677.529947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-5.216000pt;}
.ls2{letter-spacing:-5.168000pt;}
.ls0{letter-spacing:-5.120000pt;}
.ls4{letter-spacing:-0.634667pt;}
.ls1{letter-spacing:0.000000pt;}
.ws0{word-spacing:-640.000000pt;}
.ws1{word-spacing:-171.501440pt;}
.ws2{word-spacing:-52.992000pt;}
.ws3{word-spacing:-52.608000pt;}
.ws4{word-spacing:-36.474880pt;}
.ws5{word-spacing:0.000000pt;}
._10{margin-left:-3458.387840pt;}
._d{margin-left:-25.386240pt;}
._9{margin-left:-16.634880pt;}
._b{margin-left:-12.779520pt;}
._7{margin-left:-9.912576pt;}
._5{margin-left:-8.136960pt;}
._8{margin-left:-6.406400pt;}
._1{margin-left:-5.120000pt;}
._3{margin-left:-4.220800pt;}
._2{margin-left:-3.202560pt;}
._4{margin-left:-2.184320pt;}
._0{margin-left:-1.120000pt;}
._6{width:1.289600pt;}
._a{width:2.179627pt;}
._c{width:3.094400pt;}
._f{width:33.704960pt;}
._e{width:44.816000pt;}
._11{width:57.454720pt;}
._12{width:155.525120pt;}
.fs3{font-size:133.120000pt;}
.fs5{font-size:133.248000pt;}
.fs4{font-size:192.000000pt;}
.fs2{font-size:266.880000pt;}
.fs0{font-size:640.000000pt;}
.fs1{font-size:640.106667pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:88.224000pt;}
.y45{bottom:133.506667pt;}
.y44{bottom:224.226667pt;}
.y43{bottom:269.506667pt;}
.y20{bottom:436.960000pt;}
.y1f{bottom:482.240000pt;}
.y42{bottom:487.426667pt;}
.y1e{bottom:527.680000pt;}
.y41{bottom:532.706667pt;}
.y36{bottom:545.280000pt;}
.y1d{bottom:572.960000pt;}
.y40{bottom:578.146667pt;}
.y1c{bottom:618.240000pt;}
.y3f{bottom:623.426667pt;}
.y1b{bottom:663.680000pt;}
.y3e{bottom:668.706667pt;}
.y35{bottom:698.240000pt;}
.y1a{bottom:708.960000pt;}
.y3d{bottom:714.146667pt;}
.y34{bottom:743.680000pt;}
.y19{bottom:754.240000pt;}
.y3c{bottom:759.426667pt;}
.y33{bottom:788.960000pt;}
.y18{bottom:799.680000pt;}
.y3b{bottom:804.706667pt;}
.y32{bottom:834.240000pt;}
.y17{bottom:844.960000pt;}
.y3a{bottom:850.146667pt;}
.y31{bottom:879.680000pt;}
.y39{bottom:895.426667pt;}
.y16{bottom:908.000000pt;}
.y30{bottom:924.960000pt;}
.y38{bottom:940.706667pt;}
.y2f{bottom:970.240000pt;}
.y15{bottom:976.000000pt;}
.y37{bottom:1003.746667pt;}
.y2e{bottom:1033.280000pt;}
.y14{bottom:1083.680000pt;}
.y2d{bottom:1101.280000pt;}
.y13{bottom:1128.960000pt;}
.y12{bottom:1174.240000pt;}
.y21{bottom:1186.266667pt;}
.y2c{bottom:1208.960000pt;}
.y11{bottom:1219.680000pt;}
.y2b{bottom:1254.240000pt;}
.y10{bottom:1264.960000pt;}
.y2a{bottom:1299.680000pt;}
.yf{bottom:1310.240000pt;}
.y29{bottom:1344.986667pt;}
.ye{bottom:1355.706667pt;}
.y28{bottom:1390.266667pt;}
.yd{bottom:1400.986667pt;}
.y27{bottom:1435.706667pt;}
.yc{bottom:1446.266667pt;}
.y26{bottom:1480.986667pt;}
.yb{bottom:1491.706667pt;}
.y25{bottom:1526.266667pt;}
.ya{bottom:1536.986667pt;}
.y24{bottom:1571.706667pt;}
.y9{bottom:1582.266667pt;}
.y23{bottom:1616.986667pt;}
.y8{bottom:1645.306667pt;}
.y22{bottom:1662.266667pt;}
.y7{bottom:1713.306667pt;}
.y6{bottom:3303.333333pt;}
.y5{bottom:3393.893333pt;}
.y4{bottom:3484.613333pt;}
.y3{bottom:3687.293333pt;}
.y2{bottom:3868.773333pt;}
.y1{bottom:4050.053333pt;}
.h5{height:115.115000pt;}
.h9{height:115.180000pt;}
.h7{height:115.225687pt;}
.h6{height:166.031250pt;}
.h8{height:166.125000pt;}
.h4{height:230.783437pt;}
.h2{height:553.750000pt;}
.h3{height:553.842292pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1{left:188.986619pt;}
.x5{left:992.226619pt;}
.x2{left:1164.386619pt;}
.x7{left:1679.106619pt;}
.x3{left:2132.133286pt;}
.x4{left:2360.133286pt;}
.x6{left:2380.026619pt;}
}




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