
    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_28ede34b8bf11f376d513abf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.819000;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_a80e53dd871e94fc4832cfc2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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;}
.m1{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);}
.m0{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.864000px;}
.ls0{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;}
}
.wsc{word-spacing:-35.640000px;}
.wsb{word-spacing:-26.136000px;}
.wse{word-spacing:-23.544000px;}
.ws11{word-spacing:-22.896000px;}
.ws9{word-spacing:-15.984000px;}
.wsa{word-spacing:-12.744000px;}
.ws10{word-spacing:-11.448000px;}
.ws3{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.432000px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:1.728000px;}
.ws19{word-spacing:4.104000px;}
.ws1f{word-spacing:4.968000px;}
.wsd{word-spacing:5.400000px;}
.ws2{word-spacing:11.232000px;}
.ws1e{word-spacing:15.768000px;}
.wsf{word-spacing:16.200000px;}
.ws1a{word-spacing:17.064000px;}
.ws15{word-spacing:20.952000px;}
.ws1b{word-spacing:21.816000px;}
.ws13{word-spacing:23.112000px;}
.ws1c{word-spacing:25.488000px;}
.ws7{word-spacing:28.728000px;}
.ws1d{word-spacing:29.376000px;}
.ws6{word-spacing:36.288000px;}
.ws18{word-spacing:40.392000px;}
.ws12{word-spacing:40.608000px;}
.ws5{word-spacing:42.552000px;}
.ws16{word-spacing:48.168000px;}
.ws8{word-spacing:49.248000px;}
.ws14{word-spacing:59.616000px;}
.ws4{word-spacing:98.064000px;}
._1{margin-left:-3.240000px;}
._0{margin-left:-1.080000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:216.000000px;}
.fs1{font-size:588.000000px;}
.fs2{font-size:1056.000000px;}
.fs0{font-size:2040.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:238.382700px;}
.y39{bottom:303.182700px;}
.y38{bottom:367.982700px;}
.y37{bottom:432.782700px;}
.y36{bottom:497.582700px;}
.y35{bottom:562.382700px;}
.y34{bottom:627.182700px;}
.y33{bottom:691.982700px;}
.y32{bottom:756.782700px;}
.y12{bottom:910.513200px;}
.y31{bottom:986.712000px;}
.y30{bottom:1051.512150px;}
.y11{bottom:1105.513200px;}
.y2f{bottom:1116.312150px;}
.y2e{bottom:1181.112150px;}
.y10{bottom:1440.249600px;}
.y2d{bottom:1464.548250px;}
.y2c{bottom:1529.348250px;}
.y2b{bottom:1594.148250px;}
.yf{bottom:1635.249600px;}
.y2a{bottom:1658.948250px;}
.y29{bottom:1723.748250px;}
.ye{bottom:1908.485550px;}
.y28{bottom:1974.784200px;}
.y27{bottom:2039.584350px;}
.yd{bottom:2103.485550px;}
.y26{bottom:2104.384500px;}
.y25{bottom:2169.184350px;}
.y24{bottom:2233.984500px;}
.yc{bottom:2425.153950px;}
.y23{bottom:2485.020750px;}
.y22{bottom:2549.820900px;}
.y21{bottom:2614.620900px;}
.yb{bottom:2620.153950px;}
.y20{bottom:2679.420750px;}
.y1f{bottom:2744.220900px;}
.ya{bottom:2948.457750px;}
.y1e{bottom:3027.657000px;}
.y1d{bottom:3092.456850px;}
.y9{bottom:3143.458050px;}
.y1c{bottom:3157.257150px;}
.y1b{bottom:3222.057150px;}
.y8{bottom:3467.694600px;}
.y1a{bottom:3505.493400px;}
.y19{bottom:3570.293400px;}
.y18{bottom:3635.093250px;}
.y7{bottom:3662.694600px;}
.y17{bottom:3699.893250px;}
.y16{bottom:3764.693100px;}
.y6{bottom:3991.430400px;}
.y15{bottom:4080.529500px;}
.y14{bottom:4145.329500px;}
.y5{bottom:4186.430400px;}
.y13{bottom:4210.129350px;}
.y1{bottom:4514.751750px;}
.y4{bottom:4515.129300px;}
.y3{bottom:4662.129300px;}
.y2{bottom:4809.129300px;}
.h5{height:172.800000px;}
.h3{height:479.220000px;}
.h4{height:844.800000px;}
.h2{height:1662.600000px;}
.h1{height:5059.500000px;}
.h0{height:5059.845000px;}
.w1{width:3571.500000px;}
.w0{width:3571.650000px;}
.x0{left:0.000000px;}
.x8{left:273.745650px;}
.x9{left:291.957750px;}
.xc{left:335.656500px;}
.xd{left:388.584600px;}
.xf{left:396.999300px;}
.x4{left:400.313100px;}
.x5{left:420.110250px;}
.x10{left:497.586450px;}
.x1a{left:650.369550px;}
.x1b{left:666.676350px;}
.x1e{left:679.527000px;}
.x17{left:686.602050px;}
.x3{left:701.286150px;}
.x19{left:707.094000px;}
.x2{left:708.121950px;}
.x18{left:711.194850px;}
.x1c{left:758.799600px;}
.x1{left:799.111950px;}
.x1d{left:1256.830050px;}
.x12{left:1371.296400px;}
.x16{left:1374.583800px;}
.x13{left:1376.506200px;}
.x15{left:1378.012050px;}
.x11{left:1503.453600px;}
.x14{left:1505.919600px;}
.x1f{left:1586.677800px;}
.xa{left:2424.507750px;}
.x7{left:2444.982600px;}
.xb{left:2514.671700px;}
.xe{left:2538.701700px;}
.x6{left:2556.649650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.768000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsc{word-spacing:-31.680000pt;}
.wsb{word-spacing:-23.232000pt;}
.wse{word-spacing:-20.928000pt;}
.ws11{word-spacing:-20.352000pt;}
.ws9{word-spacing:-14.208000pt;}
.wsa{word-spacing:-11.328000pt;}
.ws10{word-spacing:-10.176000pt;}
.ws3{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.384000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:1.536000pt;}
.ws19{word-spacing:3.648000pt;}
.ws1f{word-spacing:4.416000pt;}
.wsd{word-spacing:4.800000pt;}
.ws2{word-spacing:9.984000pt;}
.ws1e{word-spacing:14.016000pt;}
.wsf{word-spacing:14.400000pt;}
.ws1a{word-spacing:15.168000pt;}
.ws15{word-spacing:18.624000pt;}
.ws1b{word-spacing:19.392000pt;}
.ws13{word-spacing:20.544000pt;}
.ws1c{word-spacing:22.656000pt;}
.ws7{word-spacing:25.536000pt;}
.ws1d{word-spacing:26.112000pt;}
.ws6{word-spacing:32.256000pt;}
.ws18{word-spacing:35.904000pt;}
.ws12{word-spacing:36.096000pt;}
.ws5{word-spacing:37.824000pt;}
.ws16{word-spacing:42.816000pt;}
.ws8{word-spacing:43.776000pt;}
.ws14{word-spacing:52.992000pt;}
.ws4{word-spacing:87.168000pt;}
._1{margin-left:-2.880000pt;}
._0{margin-left:-0.960000pt;}
.fs3{font-size:192.000000pt;}
.fs1{font-size:522.666667pt;}
.fs2{font-size:938.666667pt;}
.fs0{font-size:1813.333333pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:211.895733pt;}
.y39{bottom:269.495733pt;}
.y38{bottom:327.095733pt;}
.y37{bottom:384.695733pt;}
.y36{bottom:442.295733pt;}
.y35{bottom:499.895733pt;}
.y34{bottom:557.495733pt;}
.y33{bottom:615.095733pt;}
.y32{bottom:672.695733pt;}
.y12{bottom:809.345067pt;}
.y31{bottom:877.077333pt;}
.y30{bottom:934.677467pt;}
.y11{bottom:982.678400pt;}
.y2f{bottom:992.277467pt;}
.y2e{bottom:1049.877467pt;}
.y10{bottom:1280.221867pt;}
.y2d{bottom:1301.820667pt;}
.y2c{bottom:1359.420667pt;}
.y2b{bottom:1417.020667pt;}
.yf{bottom:1453.555200pt;}
.y2a{bottom:1474.620667pt;}
.y29{bottom:1532.220667pt;}
.ye{bottom:1696.431600pt;}
.y28{bottom:1755.363733pt;}
.y27{bottom:1812.963867pt;}
.yd{bottom:1869.764933pt;}
.y26{bottom:1870.564000pt;}
.y25{bottom:1928.163867pt;}
.y24{bottom:1985.764000pt;}
.yc{bottom:2155.692400pt;}
.y23{bottom:2208.907333pt;}
.y22{bottom:2266.507467pt;}
.y21{bottom:2324.107467pt;}
.yb{bottom:2329.025733pt;}
.y20{bottom:2381.707333pt;}
.y1f{bottom:2439.307467pt;}
.ya{bottom:2620.851333pt;}
.y1e{bottom:2691.250667pt;}
.y1d{bottom:2748.850533pt;}
.y9{bottom:2794.184933pt;}
.y1c{bottom:2806.450800pt;}
.y1b{bottom:2864.050800pt;}
.y8{bottom:3082.395200pt;}
.y1a{bottom:3115.994133pt;}
.y19{bottom:3173.594133pt;}
.y18{bottom:3231.194000pt;}
.y7{bottom:3255.728533pt;}
.y17{bottom:3288.794000pt;}
.y16{bottom:3346.393867pt;}
.y6{bottom:3547.938133pt;}
.y15{bottom:3627.137333pt;}
.y14{bottom:3684.737333pt;}
.y5{bottom:3721.271467pt;}
.y13{bottom:3742.337200pt;}
.y1{bottom:4013.112667pt;}
.y4{bottom:4013.448267pt;}
.y3{bottom:4144.114933pt;}
.y2{bottom:4274.781600pt;}
.h5{height:153.600000pt;}
.h3{height:425.973333pt;}
.h4{height:750.933333pt;}
.h2{height:1477.866667pt;}
.h1{height:4497.333333pt;}
.h0{height:4497.640000pt;}
.w1{width:3174.666667pt;}
.w0{width:3174.800000pt;}
.x0{left:0.000000pt;}
.x8{left:243.329467pt;}
.x9{left:259.518000pt;}
.xc{left:298.361333pt;}
.xd{left:345.408533pt;}
.xf{left:352.888267pt;}
.x4{left:355.833867pt;}
.x5{left:373.431333pt;}
.x10{left:442.299067pt;}
.x1a{left:578.106267pt;}
.x1b{left:592.601200pt;}
.x1e{left:604.024000pt;}
.x17{left:610.312933pt;}
.x3{left:623.365467pt;}
.x19{left:628.528000pt;}
.x2{left:629.441733pt;}
.x18{left:632.173200pt;}
.x1c{left:674.488533pt;}
.x1{left:710.321733pt;}
.x1d{left:1117.182267pt;}
.x12{left:1218.930133pt;}
.x16{left:1221.852267pt;}
.x13{left:1223.561067pt;}
.x15{left:1224.899600pt;}
.x11{left:1336.403200pt;}
.x14{left:1338.595200pt;}
.x1f{left:1410.380267pt;}
.xa{left:2155.118000pt;}
.x7{left:2173.317867pt;}
.xb{left:2235.263733pt;}
.xe{left:2256.623733pt;}
.x6{left:2272.577467pt;}
}




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