
    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_68877a8d04352038265d69d6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.130545;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_53a7a1ad8d7025927b553513.woff')format("woff");}.ff2{font-family:ff2;line-height:0.672615;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;}
.ls2a{letter-spacing:-1.587600px;}
.ls31{letter-spacing:-1.117800px;}
.ls32{letter-spacing:-0.925800px;}
.ls37{letter-spacing:-0.672600px;}
.ls26{letter-spacing:-0.491400px;}
.ls39{letter-spacing:-0.383400px;}
.ls2d{letter-spacing:-0.334800px;}
.ls36{letter-spacing:-0.313200px;}
.ls25{letter-spacing:-0.248400px;}
.ls3a{letter-spacing:-0.214800px;}
.ls3c{letter-spacing:-0.205200px;}
.ls34{letter-spacing:-0.169800px;}
.ls29{letter-spacing:-0.166200px;}
.ls2c{letter-spacing:-0.157800px;}
.ls2f{letter-spacing:-0.153600px;}
.ls38{letter-spacing:-0.147600px;}
.ls2e{letter-spacing:-0.145800px;}
.ls35{letter-spacing:-0.124200px;}
.ls30{letter-spacing:-0.105600px;}
.ls2b{letter-spacing:-0.083400px;}
.ls23{letter-spacing:-0.066000px;}
.ls3b{letter-spacing:-0.041400px;}
.ls33{letter-spacing:-0.037800px;}
.ls28{letter-spacing:-0.027000px;}
.ls27{letter-spacing:-0.001800px;}
.ls22{letter-spacing:-0.000600px;}
.ls24{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.003600px;}
.ls1b{letter-spacing:0.017400px;}
.ls7{letter-spacing:0.033000px;}
.lse{letter-spacing:0.055200px;}
.ls12{letter-spacing:0.072600px;}
.ls0{letter-spacing:0.081000px;}
.ls3{letter-spacing:0.114000px;}
.ls11{letter-spacing:0.138000px;}
.lsb{letter-spacing:0.154200px;}
.lsa{letter-spacing:0.157200px;}
.ls18{letter-spacing:0.166800px;}
.ls4{letter-spacing:0.178800px;}
.ls20{letter-spacing:0.185400px;}
.ls9{letter-spacing:0.199200px;}
.lsc{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.212400px;}
.ls1c{letter-spacing:0.222600px;}
.ls16{letter-spacing:0.275400px;}
.ls21{letter-spacing:0.277200px;}
.ls1e{letter-spacing:0.316200px;}
.ls1{letter-spacing:0.340200px;}
.ls19{letter-spacing:0.360600px;}
.ls13{letter-spacing:0.433800px;}
.ls1d{letter-spacing:0.478800px;}
.ls6{letter-spacing:0.481200px;}
.ls10{letter-spacing:0.513600px;}
.lsd{letter-spacing:0.546600px;}
.lsf{letter-spacing:0.558600px;}
.ls5{letter-spacing:0.572400px;}
.ls2{letter-spacing:0.630000px;}
.ls8{letter-spacing:0.804600px;}
.ls17{letter-spacing:0.909000px;}
.ls1f{letter-spacing:0.910200px;}
.ls15{letter-spacing:0.934200px;}
.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:0.000000px;}
._8{margin-left:-12.690000px;}
._7{margin-left:-7.672200px;}
._b{margin-left:-3.958800px;}
._3{width:1.230000px;}
._a{width:3.567540px;}
._6{width:6.826800px;}
._2{width:8.070000px;}
._0{width:9.441000px;}
._9{width:12.679635px;}
._1{width:13.954200px;}
._5{width:16.413000px;}
._4{width:18.472200px;}
._c{width:20.523285px;}
._d{width:25.524600px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:45.000000px;}
.fs1{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:86.145000px;}
.ya{bottom:598.125000px;}
.y9{bottom:623.250000px;}
.y8{bottom:648.795000px;}
.y7{bottom:674.295000px;}
.y6{bottom:699.645000px;}
.y5{bottom:725.160000px;}
.y4{bottom:775.485000px;}
.y3{bottom:800.805000px;}
.y2{bottom:825.855000px;}
.y1{bottom:876.555000px;}
.h3{height:39.960000px;}
.h2{height:41.580000px;}
.hb{height:966.000000px;}
.ha{height:966.138300px;}
.h4{height:966.408300px;}
.h16{height:966.678300px;}
.h5{height:966.750000px;}
.hd{height:967.500000px;}
.hc{height:967.758300px;}
.h13{height:969.000000px;}
.h12{height:969.108300px;}
.h8{height:969.648300px;}
.h9{height:969.750000px;}
.hf{height:971.250000px;}
.he{height:971.538300px;}
.h7{height:972.000000px;}
.h6{height:972.010800px;}
.h11{height:972.750000px;}
.h10{height:972.888300px;}
.h14{height:974.238300px;}
.h15{height:974.250000px;}
.h0{height:1055.700000px;}
.h1{height:1056.000000px;}
.w8{width:589.956000px;}
.w3{width:590.250000px;}
.w13{width:590.496000px;}
.w2{width:590.496450px;}
.w0{width:590.760000px;}
.w1{width:591.000000px;}
.w5{width:592.500000px;}
.w4{width:592.656000px;}
.w9{width:592.656450px;}
.w10{width:594.750000px;}
.wf{width:594.816000px;}
.wa{width:595.896000px;}
.w6{width:595.896450px;}
.w7{width:596.250000px;}
.wc{width:598.500000px;}
.wb{width:598.866450px;}
.we{width:600.750000px;}
.wd{width:601.026000px;}
.w12{width:603.000000px;}
.w11{width:603.186450px;}
.x0{left:0.000000px;}
.x1{left:9.915000px;}
.x2{left:13.050000px;}
.x3{left:256.515000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-1.411200pt;}
.ls31{letter-spacing:-0.993600pt;}
.ls32{letter-spacing:-0.822933pt;}
.ls37{letter-spacing:-0.597867pt;}
.ls26{letter-spacing:-0.436800pt;}
.ls39{letter-spacing:-0.340800pt;}
.ls2d{letter-spacing:-0.297600pt;}
.ls36{letter-spacing:-0.278400pt;}
.ls25{letter-spacing:-0.220800pt;}
.ls3a{letter-spacing:-0.190933pt;}
.ls3c{letter-spacing:-0.182400pt;}
.ls34{letter-spacing:-0.150933pt;}
.ls29{letter-spacing:-0.147733pt;}
.ls2c{letter-spacing:-0.140267pt;}
.ls2f{letter-spacing:-0.136533pt;}
.ls38{letter-spacing:-0.131200pt;}
.ls2e{letter-spacing:-0.129600pt;}
.ls35{letter-spacing:-0.110400pt;}
.ls30{letter-spacing:-0.093867pt;}
.ls2b{letter-spacing:-0.074133pt;}
.ls23{letter-spacing:-0.058667pt;}
.ls3b{letter-spacing:-0.036800pt;}
.ls33{letter-spacing:-0.033600pt;}
.ls28{letter-spacing:-0.024000pt;}
.ls27{letter-spacing:-0.001600pt;}
.ls22{letter-spacing:-0.000533pt;}
.ls24{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.003200pt;}
.ls1b{letter-spacing:0.015467pt;}
.ls7{letter-spacing:0.029333pt;}
.lse{letter-spacing:0.049067pt;}
.ls12{letter-spacing:0.064533pt;}
.ls0{letter-spacing:0.072000pt;}
.ls3{letter-spacing:0.101333pt;}
.ls11{letter-spacing:0.122667pt;}
.lsb{letter-spacing:0.137067pt;}
.lsa{letter-spacing:0.139733pt;}
.ls18{letter-spacing:0.148267pt;}
.ls4{letter-spacing:0.158933pt;}
.ls20{letter-spacing:0.164800pt;}
.ls9{letter-spacing:0.177067pt;}
.lsc{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.188800pt;}
.ls1c{letter-spacing:0.197867pt;}
.ls16{letter-spacing:0.244800pt;}
.ls21{letter-spacing:0.246400pt;}
.ls1e{letter-spacing:0.281067pt;}
.ls1{letter-spacing:0.302400pt;}
.ls19{letter-spacing:0.320533pt;}
.ls13{letter-spacing:0.385600pt;}
.ls1d{letter-spacing:0.425600pt;}
.ls6{letter-spacing:0.427733pt;}
.ls10{letter-spacing:0.456533pt;}
.lsd{letter-spacing:0.485867pt;}
.lsf{letter-spacing:0.496533pt;}
.ls5{letter-spacing:0.508800pt;}
.ls2{letter-spacing:0.560000pt;}
.ls8{letter-spacing:0.715200pt;}
.ls17{letter-spacing:0.808000pt;}
.ls1f{letter-spacing:0.809067pt;}
.ls15{letter-spacing:0.830400pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-11.280000pt;}
._7{margin-left:-6.819733pt;}
._b{margin-left:-3.518933pt;}
._3{width:1.093333pt;}
._a{width:3.171147pt;}
._6{width:6.068267pt;}
._2{width:7.173333pt;}
._0{width:8.392000pt;}
._9{width:11.270787pt;}
._1{width:12.403733pt;}
._5{width:14.589333pt;}
._4{width:16.419733pt;}
._c{width:18.242920pt;}
._d{width:22.688533pt;}
.fs0{font-size:40.000000pt;}
.fs1{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:76.573333pt;}
.ya{bottom:531.666667pt;}
.y9{bottom:554.000000pt;}
.y8{bottom:576.706667pt;}
.y7{bottom:599.373333pt;}
.y6{bottom:621.906667pt;}
.y5{bottom:644.586667pt;}
.y4{bottom:689.320000pt;}
.y3{bottom:711.826667pt;}
.y2{bottom:734.093333pt;}
.y1{bottom:779.160000pt;}
.h3{height:35.520000pt;}
.h2{height:36.960000pt;}
.hb{height:858.666667pt;}
.ha{height:858.789600pt;}
.h4{height:859.029600pt;}
.h16{height:859.269600pt;}
.h5{height:859.333333pt;}
.hd{height:860.000000pt;}
.hc{height:860.229600pt;}
.h13{height:861.333333pt;}
.h12{height:861.429600pt;}
.h8{height:861.909600pt;}
.h9{height:862.000000pt;}
.hf{height:863.333333pt;}
.he{height:863.589600pt;}
.h7{height:864.000000pt;}
.h6{height:864.009600pt;}
.h11{height:864.666667pt;}
.h10{height:864.789600pt;}
.h14{height:865.989600pt;}
.h15{height:866.000000pt;}
.h0{height:938.400000pt;}
.h1{height:938.666667pt;}
.w8{width:524.405333pt;}
.w3{width:524.666667pt;}
.w13{width:524.885333pt;}
.w2{width:524.885733pt;}
.w0{width:525.120000pt;}
.w1{width:525.333333pt;}
.w5{width:526.666667pt;}
.w4{width:526.805333pt;}
.w9{width:526.805733pt;}
.w10{width:528.666667pt;}
.wf{width:528.725333pt;}
.wa{width:529.685333pt;}
.w6{width:529.685733pt;}
.w7{width:530.000000pt;}
.wc{width:532.000000pt;}
.wb{width:532.325733pt;}
.we{width:534.000000pt;}
.wd{width:534.245333pt;}
.w12{width:536.000000pt;}
.w11{width:536.165733pt;}
.x0{left:0.000000pt;}
.x1{left:8.813333pt;}
.x2{left:11.600000pt;}
.x3{left:228.013333pt;}
}




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