
    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_0845ccdba2b177bfc9d5083d.woff2')format("woff");}.ff1{font-family:ff1;line-height:894.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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c7970d9ff7dac31a9fcbd48e.woff2')format("woff");}.ff2{font-family:ff2;line-height:911.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;}
.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);}
.v6{vertical-align:-364.908000px;}
.v3{vertical-align:-106.312800px;}
.v1{vertical-align:-66.445200px;}
.v2{vertical-align:-53.156280px;}
.v7{vertical-align:-42.474000px;}
.v8{vertical-align:-39.867180px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2870.628000px;}
.v5{vertical-align:3276.878280px;}
.v9{vertical-align:3608.524260px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004417px;}
.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;}
}
.ws2{word-spacing:-16.500000px;}
.ws0{word-spacing:-12.004417px;}
.ws1{word-spacing:-12.000000px;}
.ws4{word-spacing:-9.000000px;}
.ws3{word-spacing:0.000000px;}
._37{margin-left:-2754.480886px;}
._38{margin-left:-2753.129405px;}
._5{margin-left:-2116.430386px;}
._36{margin-left:-1963.830635px;}
._35{margin-left:-1551.082291px;}
._14{margin-left:-1335.922694px;}
._9{margin-left:-1334.766295px;}
._15{margin-left:-1333.629406px;}
._17{margin-left:-1332.565660px;}
._f{margin-left:-1322.363918px;}
._3c{margin-left:-1247.464694px;}
._3b{margin-left:-1246.256326px;}
._3f{margin-left:-1160.112937px;}
._1b{margin-left:-1018.223314px;}
._3d{margin-left:-1015.822800px;}
._34{margin-left:-853.340247px;}
._2a{margin-left:-797.070697px;}
._33{margin-left:-777.524490px;}
._29{margin-left:-710.466978px;}
._28{margin-left:-692.180490px;}
._3e{margin-left:-688.380932px;}
._2d{margin-left:-665.154978px;}
._27{margin-left:-657.488209px;}
._32{margin-left:-635.827357px;}
._1f{margin-left:-620.674609px;}
._31{margin-left:-616.208209px;}
._1d{margin-left:-592.256209px;}
._2e{margin-left:-572.816209px;}
._20{margin-left:-559.375867px;}
._1e{margin-left:-552.646002px;}
._30{margin-left:-545.703028px;}
._22{margin-left:-529.953721px;}
._2f{margin-left:-521.492490px;}
._2c{margin-left:-481.134697px;}
._21{margin-left:-461.338245px;}
._2b{margin-left:-455.269516px;}
._11{margin-left:-441.455558px;}
._23{margin-left:-437.127028px;}
._25{margin-left:-427.233721px;}
._26{margin-left:-384.168285px;}
._1c{margin-left:-381.063028px;}
._10{margin-left:-349.728484px;}
._39{margin-left:-322.704000px;}
._24{margin-left:-309.496540px;}
._13{margin-left:-303.157996px;}
._18{margin-left:-142.665251px;}
._16{margin-left:-125.994358px;}
._8{margin-left:-8.914949px;}
._3{margin-left:-6.609190px;}
._1a{margin-left:-5.460243px;}
._1{margin-left:-4.417512px;}
._0{margin-left:-3.281705px;}
._2{margin-left:-1.283393px;}
._6{width:1.397826px;}
._4{width:2.583253px;}
._d{width:3.947050px;}
._c{width:5.007568px;}
._40{width:6.430136px;}
._12{width:8.299553px;}
._a{width:10.309316px;}
._b{width:13.190926px;}
._e{width:14.308555px;}
._7{width:16.975133px;}
._3a{width:40.042800px;}
._19{width:91.949236px;}
._41{width:771.227378px;}
.fc2{color:rgb(18,15,14);}
.fc1{color:rgb(8,8,58);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:4.558500px;}
.y9{bottom:5.551725px;}
.y13{bottom:5.554650px;}
.y11{bottom:6.580500px;}
.y5{bottom:20.493000px;}
.y3{bottom:27.673500px;}
.y12{bottom:36.225600px;}
.y8{bottom:36.902325px;}
.y6{bottom:38.118000px;}
.ye{bottom:58.336500px;}
.y14{bottom:291.463500px;}
.y7{bottom:782.050500px;}
.y10{bottom:795.697500px;}
.yf{bottom:816.952500px;}
.yd{bottom:838.215000px;}
.yb{bottom:908.092500px;}
.y4{bottom:931.770000px;}
.y2{bottom:1009.327500px;}
.y1{bottom:1110.661500px;}
.ya{bottom:1113.208500px;}
.h8{height:19.707975px;}
.he{height:19.710975px;}
.hb{height:21.260775px;}
.h4{height:53.150400px;}
.h3{height:65.481450px;}
.hc{height:69.878925px;}
.h0{height:1162.275000px;}
.h1{height:1162.500000px;}
.ha{height:28476.000000px;}
.hf{height:32544.000000px;}
.hd{height:33360.000000px;}
.h9{height:34578.000000px;}
.h2{height:40680.000000px;}
.h6{height:41700.000000px;}
.h5{height:48816.000000px;}
.h7{height:50019.702000px;}
.w6{width:58.851600px;}
.w3{width:155.757000px;}
.w5{width:262.584750px;}
.w4{width:531.369000px;}
.w2{width:588.061500px;}
.w7{width:687.126000px;}
.w0{width:800.858277px;}
.w1{width:801.000000px;}
.x0{left:0.000000px;}
.x4{left:3.829125px;}
.x6{left:5.100000px;}
.x8{left:12.416250px;}
.xa{left:26.238000px;}
.x2{left:57.052725px;}
.x1{left:68.153250px;}
.x3{left:94.991775px;}
.xf{left:124.479750px;}
.xe{left:159.539775px;}
.x5{left:212.809500px;}
.xd{left:290.056275px;}
.xc{left:294.550275px;}
.xb{left:327.873000px;}
.x7{left:413.795250px;}
.x9{left:684.952500px;}
@media print{
.v6{vertical-align:-324.362667pt;}
.v3{vertical-align:-94.500267pt;}
.v1{vertical-align:-59.062400pt;}
.v2{vertical-align:-47.250027pt;}
.v7{vertical-align:-37.754667pt;}
.v8{vertical-align:-35.437493pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2551.669333pt;}
.v5{vertical-align:2912.780693pt;}
.v9{vertical-align:3207.577120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003927pt;}
.ws2{word-spacing:-14.666667pt;}
.ws0{word-spacing:-10.670593pt;}
.ws1{word-spacing:-10.666667pt;}
.ws4{word-spacing:-8.000000pt;}
.ws3{word-spacing:0.000000pt;}
._37{margin-left:-2448.427454pt;}
._38{margin-left:-2447.226138pt;}
._5{margin-left:-1881.271455pt;}
._36{margin-left:-1745.627231pt;}
._35{margin-left:-1378.739814pt;}
._14{margin-left:-1187.486839pt;}
._9{margin-left:-1186.458929pt;}
._15{margin-left:-1185.448361pt;}
._17{margin-left:-1184.502809pt;}
._f{margin-left:-1175.434594pt;}
._3c{margin-left:-1108.857506pt;}
._3b{margin-left:-1107.783401pt;}
._3f{margin-left:-1031.211499pt;}
._1b{margin-left:-905.087390pt;}
._3d{margin-left:-902.953600pt;}
._34{margin-left:-758.524664pt;}
._2a{margin-left:-708.507286pt;}
._33{margin-left:-691.132880pt;}
._29{margin-left:-631.526203pt;}
._28{margin-left:-615.271547pt;}
._3e{margin-left:-611.894161pt;}
._2d{margin-left:-591.248870pt;}
._27{margin-left:-584.433963pt;}
._32{margin-left:-565.179873pt;}
._1f{margin-left:-551.710764pt;}
._31{margin-left:-547.740630pt;}
._1d{margin-left:-526.449963pt;}
._2e{margin-left:-509.169963pt;}
._20{margin-left:-497.222993pt;}
._1e{margin-left:-491.240891pt;}
._30{margin-left:-485.069358pt;}
._22{margin-left:-471.069974pt;}
._2f{margin-left:-463.548880pt;}
._2c{margin-left:-427.675286pt;}
._21{margin-left:-410.078440pt;}
._2b{margin-left:-404.684014pt;}
._11{margin-left:-392.404941pt;}
._23{margin-left:-388.557358pt;}
._25{margin-left:-379.763307pt;}
._26{margin-left:-341.482920pt;}
._1c{margin-left:-338.722692pt;}
._10{margin-left:-310.869763pt;}
._39{margin-left:-286.848000pt;}
._24{margin-left:-275.108035pt;}
._13{margin-left:-269.473774pt;}
._18{margin-left:-126.813556pt;}
._16{margin-left:-111.994985pt;}
._8{margin-left:-7.924399pt;}
._3{margin-left:-5.874835pt;}
._1a{margin-left:-4.853549pt;}
._1{margin-left:-3.926677pt;}
._0{margin-left:-2.917071pt;}
._2{margin-left:-1.140794pt;}
._6{width:1.242512pt;}
._4{width:2.296225pt;}
._d{width:3.508489pt;}
._c{width:4.451172pt;}
._40{width:5.715676pt;}
._12{width:7.377381pt;}
._a{width:9.163836pt;}
._b{width:11.725267pt;}
._e{width:12.718716pt;}
._7{width:15.089007pt;}
._3a{width:35.593600pt;}
._19{width:81.732654pt;}
._41{width:685.535447pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:4.052000pt;}
.y9{bottom:4.934867pt;}
.y13{bottom:4.937467pt;}
.y11{bottom:5.849333pt;}
.y5{bottom:18.216000pt;}
.y3{bottom:24.598667pt;}
.y12{bottom:32.200533pt;}
.y8{bottom:32.802067pt;}
.y6{bottom:33.882667pt;}
.ye{bottom:51.854667pt;}
.y14{bottom:259.078667pt;}
.y7{bottom:695.156000pt;}
.y10{bottom:707.286667pt;}
.yf{bottom:726.180000pt;}
.yd{bottom:745.080000pt;}
.yb{bottom:807.193333pt;}
.y4{bottom:828.240000pt;}
.y2{bottom:897.180000pt;}
.y1{bottom:987.254667pt;}
.ya{bottom:989.518667pt;}
.h8{height:17.518200pt;}
.he{height:17.520867pt;}
.hb{height:18.898467pt;}
.h4{height:47.244800pt;}
.h3{height:58.205733pt;}
.hc{height:62.114600pt;}
.h0{height:1033.133333pt;}
.h1{height:1033.333333pt;}
.ha{height:25312.000000pt;}
.hf{height:28928.000000pt;}
.hd{height:29653.333333pt;}
.h9{height:30736.000000pt;}
.h2{height:36160.000000pt;}
.h6{height:37066.666667pt;}
.h5{height:43392.000000pt;}
.h7{height:44461.957333pt;}
.w6{width:52.312533pt;}
.w3{width:138.450667pt;}
.w5{width:233.408667pt;}
.w4{width:472.328000pt;}
.w2{width:522.721333pt;}
.w7{width:610.778667pt;}
.w0{width:711.874024pt;}
.w1{width:712.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.403667pt;}
.x6{left:4.533333pt;}
.x8{left:11.036667pt;}
.xa{left:23.322667pt;}
.x2{left:50.713533pt;}
.x1{left:60.580667pt;}
.x3{left:84.437133pt;}
.xf{left:110.648667pt;}
.xe{left:141.813133pt;}
.x5{left:189.164000pt;}
.xd{left:257.827800pt;}
.xc{left:261.822467pt;}
.xb{left:291.442667pt;}
.x7{left:367.818000pt;}
.x9{left:608.846667pt;}
}




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