
    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_9ffa10dc777e8de05dd54ca8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_4badb85a5cfe40d816d48964.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_b8a4fd6615df3409f4f3c729.woff')format("woff");}.ff3{font-family:ff3;line-height:1.219727;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_75a00ab77063f55e865c9f67.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_88bac9e6f205173eda377e9f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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);}
.v1{vertical-align:-81.006000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.189000px;}
.ls4{letter-spacing:-0.081000px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.724500px;}
.ls1{letter-spacing:2.832000px;}
.ls2{letter-spacing:5.850000px;}
.ls3{letter-spacing:6.000000px;}
.ls0{letter-spacing:6.300000px;}
.ls7{letter-spacing:7.976400px;}
.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:-26.925000px;}
.ws2{word-spacing:-22.680000px;}
.ws3{word-spacing:-19.389000px;}
.ws1{word-spacing:-18.102000px;}
.ws5{word-spacing:-6.000000px;}
.ws4{word-spacing:-2.832000px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:0.189000px;}
._8{margin-left:-7.072500px;}
._11{margin-left:-5.450100px;}
._6{margin-left:-3.985200px;}
._5{margin-left:-2.478600px;}
._1{margin-left:-1.401600px;}
._0{width:1.348800px;}
._4{width:2.604000px;}
._c{width:3.615900px;}
._b{width:4.641600px;}
._3{width:5.732400px;}
._9{width:7.389900px;}
._a{width:8.990100px;}
._f{width:10.050600px;}
._7{width:11.454000px;}
._10{width:16.908600px;}
._12{width:316.243800px;}
._2{width:451.112400px;}
._d{width:578.400000px;}
._e{width:1023.566400px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs4{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:51.310050px;}
.y23{bottom:106.319700px;}
.y22{bottom:126.985200px;}
.y21{bottom:156.154950px;}
.y20{bottom:177.579450px;}
.y1f{bottom:203.247450px;}
.y1e{bottom:223.912950px;}
.y1d{bottom:244.578450px;}
.y1c{bottom:265.243950px;}
.y1b{bottom:285.909450px;}
.y1a{bottom:306.574950px;}
.y19{bottom:327.240450px;}
.y18{bottom:347.905950px;}
.y17{bottom:368.571450px;}
.y16{bottom:389.236950px;}
.y15{bottom:409.902450px;}
.y3c{bottom:416.665350px;}
.y14{bottom:430.567950px;}
.y3b{bottom:436.916850px;}
.y13{bottom:451.233450px;}
.y3a{bottom:457.168350px;}
.y12{bottom:471.898950px;}
.y39{bottom:477.419850px;}
.y11{bottom:492.564450px;}
.y38{bottom:497.671350px;}
.y37{bottom:517.922850px;}
.y10{bottom:534.487200px;}
.y36{bottom:538.174350px;}
.y35{bottom:558.425850px;}
.yf{bottom:558.908700px;}
.y34{bottom:578.677350px;}
.y33{bottom:598.928850px;}
.y32{bottom:619.180350px;}
.ye{bottom:621.593550px;}
.y31{bottom:639.431850px;}
.y30{bottom:659.683350px;}
.yd{bottom:672.789750px;}
.y2f{bottom:679.934850px;}
.yc{bottom:693.455250px;}
.y2e{bottom:700.186350px;}
.yb{bottom:714.120750px;}
.y2d{bottom:720.437850px;}
.ya{bottom:734.786250px;}
.y2c{bottom:740.689350px;}
.y9{bottom:755.451750px;}
.y2b{bottom:760.940850px;}
.y8{bottom:776.117250px;}
.y2a{bottom:781.192350px;}
.y7{bottom:796.782750px;}
.y29{bottom:801.443850px;}
.y6{bottom:817.448250px;}
.y28{bottom:821.695350px;}
.y5{bottom:838.113750px;}
.y27{bottom:841.946850px;}
.y4{bottom:858.779250px;}
.y26{bottom:862.198350px;}
.y25{bottom:882.449850px;}
.y3{bottom:900.706200px;}
.y24{bottom:902.701350px;}
.y1{bottom:948.189000px;}
.h8{height:41.396484px;}
.h2{height:44.414062px;}
.h6{height:58.293457px;}
.h5{height:63.845215px;}
.h7{height:66.405762px;}
.h3{height:69.396973px;}
.h4{height:74.948730px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.930250px;}
.x2{left:83.672550px;}
.x6{left:85.190700px;}
.x5{left:105.683700px;}
.x7{left:146.359200px;}
.x8{left:149.101950px;}
.x4{left:230.240400px;}
.x3{left:232.448400px;}
.x1{left:233.685450px;}
@media print{
.v1{vertical-align:-72.005333pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.168000pt;}
.ls4{letter-spacing:-0.072000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.644000pt;}
.ls1{letter-spacing:2.517333pt;}
.ls2{letter-spacing:5.200000pt;}
.ls3{letter-spacing:5.333333pt;}
.ls0{letter-spacing:5.600000pt;}
.ls7{letter-spacing:7.090133pt;}
.ws0{word-spacing:-23.933333pt;}
.ws2{word-spacing:-20.160000pt;}
.ws3{word-spacing:-17.234667pt;}
.ws1{word-spacing:-16.090667pt;}
.ws5{word-spacing:-5.333333pt;}
.ws4{word-spacing:-2.517333pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:0.168000pt;}
._8{margin-left:-6.286667pt;}
._11{margin-left:-4.844533pt;}
._6{margin-left:-3.542400pt;}
._5{margin-left:-2.203200pt;}
._1{margin-left:-1.245867pt;}
._0{width:1.198933pt;}
._4{width:2.314667pt;}
._c{width:3.214133pt;}
._b{width:4.125867pt;}
._3{width:5.095467pt;}
._9{width:6.568800pt;}
._a{width:7.991200pt;}
._f{width:8.933867pt;}
._7{width:10.181333pt;}
._10{width:15.029867pt;}
._12{width:281.105600pt;}
._2{width:400.988800pt;}
._d{width:514.133333pt;}
._e{width:909.836800pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs4{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:45.608933pt;}
.y23{bottom:94.506400pt;}
.y22{bottom:112.875733pt;}
.y21{bottom:138.804400pt;}
.y20{bottom:157.848400pt;}
.y1f{bottom:180.664400pt;}
.y1e{bottom:199.033733pt;}
.y1d{bottom:217.403067pt;}
.y1c{bottom:235.772400pt;}
.y1b{bottom:254.141733pt;}
.y1a{bottom:272.511067pt;}
.y19{bottom:290.880400pt;}
.y18{bottom:309.249733pt;}
.y17{bottom:327.619067pt;}
.y16{bottom:345.988400pt;}
.y15{bottom:364.357733pt;}
.y3c{bottom:370.369200pt;}
.y14{bottom:382.727067pt;}
.y3b{bottom:388.370533pt;}
.y13{bottom:401.096400pt;}
.y3a{bottom:406.371867pt;}
.y12{bottom:419.465733pt;}
.y39{bottom:424.373200pt;}
.y11{bottom:437.835067pt;}
.y38{bottom:442.374533pt;}
.y37{bottom:460.375867pt;}
.y10{bottom:475.099733pt;}
.y36{bottom:478.377200pt;}
.y35{bottom:496.378533pt;}
.yf{bottom:496.807733pt;}
.y34{bottom:514.379867pt;}
.y33{bottom:532.381200pt;}
.y32{bottom:550.382533pt;}
.ye{bottom:552.527600pt;}
.y31{bottom:568.383867pt;}
.y30{bottom:586.385200pt;}
.yd{bottom:598.035333pt;}
.y2f{bottom:604.386533pt;}
.yc{bottom:616.404667pt;}
.y2e{bottom:622.387867pt;}
.yb{bottom:634.774000pt;}
.y2d{bottom:640.389200pt;}
.ya{bottom:653.143333pt;}
.y2c{bottom:658.390533pt;}
.y9{bottom:671.512667pt;}
.y2b{bottom:676.391867pt;}
.y8{bottom:689.882000pt;}
.y2a{bottom:694.393200pt;}
.y7{bottom:708.251333pt;}
.y29{bottom:712.394533pt;}
.y6{bottom:726.620667pt;}
.y28{bottom:730.395867pt;}
.y5{bottom:744.990000pt;}
.y27{bottom:748.397200pt;}
.y4{bottom:763.359333pt;}
.y26{bottom:766.398533pt;}
.y25{bottom:784.399867pt;}
.y3{bottom:800.627733pt;}
.y24{bottom:802.401200pt;}
.y1{bottom:842.834667pt;}
.h8{height:36.796875pt;}
.h2{height:39.479167pt;}
.h6{height:51.816406pt;}
.h5{height:56.751302pt;}
.h7{height:59.027344pt;}
.h3{height:61.686198pt;}
.h4{height:66.621094pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.938000pt;}
.x2{left:74.375600pt;}
.x6{left:75.725067pt;}
.x5{left:93.941067pt;}
.x7{left:130.097067pt;}
.x8{left:132.535067pt;}
.x4{left:204.658133pt;}
.x3{left:206.620800pt;}
.x1{left:207.720400pt;}
}




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