
    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_9c4a4bb4339d890734e968a2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_6562989ec08f9bb211a094c1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.067000;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;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7dc4663257912395b3b4a016.woff')format("woff");}.ff5{font-family:ff5;line-height:0.987000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws0{word-spacing:-13.826542px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-3.534636px;}
._4{margin-left:-1.455943px;}
._11{width:1.848764px;}
._d{width:2.985552px;}
._e{width:4.193230px;}
._a{width:5.510257px;}
._7{width:6.609017px;}
._9{width:7.675370px;}
._1{width:9.309074px;}
._19{width:11.812078px;}
._6{width:13.759859px;}
._15{width:15.325089px;}
._b{width:16.435415px;}
._c{width:17.536641px;}
._12{width:20.582919px;}
._2{width:22.042640px;}
._f{width:25.565095px;}
._10{width:26.800510px;}
._14{width:27.919874px;}
._13{width:32.662894px;}
._3{width:33.812984px;}
._1b{width:41.097392px;}
._8{width:45.583370px;}
._1e{width:47.671699px;}
._0{width:55.878144px;}
._16{width:62.542704px;}
._18{width:63.691184px;}
._1d{width:91.581818px;}
._17{width:98.296787px;}
._1f{width:108.867133px;}
._22{width:157.499628px;}
._21{width:161.718483px;}
._20{width:165.937091px;}
._23{width:233.366904px;}
._1c{width:267.960709px;}
._1a{width:593.390692px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.984997px;}
.fs5{font-size:71.999997px;}
.fs2{font-size:89.999996px;}
.fs4{font-size:119.969995px;}
.fs3{font-size:131.984995px;}
.fs0{font-size:179.999993px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000024px;}
.y10{bottom:24.467183px;}
.yf{bottom:44.717182px;}
.ye{bottom:64.967181px;}
.y15{bottom:110.574139px;}
.y14{bottom:130.824139px;}
.y5{bottom:162.699077px;}
.y13{bottom:210.324195px;}
.y12{bottom:230.574194px;}
.y11{bottom:250.824194px;}
.yd{bottom:279.248892px;}
.y2e{bottom:325.074010px;}
.y2d{bottom:349.824009px;}
.y2c{bottom:374.574008px;}
.y2b{bottom:399.324007px;}
.y2a{bottom:424.074006px;}
.y29{bottom:448.824005px;}
.y28{bottom:473.574004px;}
.y27{bottom:498.324003px;}
.y26{bottom:523.074002px;}
.yc{bottom:579.849060px;}
.yb{bottom:672.661556px;}
.y25{bottom:717.151614px;}
.y24{bottom:748.651613px;}
.y23{bottom:780.151611px;}
.y22{bottom:811.651610px;}
.y21{bottom:843.151609px;}
.y20{bottom:874.651608px;}
.y1f{bottom:906.151606px;}
.y1e{bottom:937.651605px;}
.y1d{bottom:991.638931px;}
.y3c{bottom:1057.776292px;}
.y3b{bottom:1089.276291px;}
.y35{bottom:1120.776289px;}
.y3a{bottom:1150.251288px;}
.y34{bottom:1152.276288px;}
.y39{bottom:1181.751287px;}
.y33{bottom:1183.776287px;}
.y38{bottom:1213.251285px;}
.y32{bottom:1215.276285px;}
.y37{bottom:1244.751284px;}
.y31{bottom:1246.776284px;}
.y36{bottom:1276.251283px;}
.y30{bottom:1278.276283px;}
.y2f{bottom:1314.726173px;}
.y1c{bottom:1524.052772px;}
.y1b{bottom:1583.329549px;}
.y1a{bottom:1614.829548px;}
.y19{bottom:1646.329547px;}
.y18{bottom:1677.829545px;}
.y17{bottom:1709.329544px;}
.y16{bottom:1757.443988px;}
.ya{bottom:1831.529192px;}
.y9{bottom:1863.029190px;}
.y8{bottom:1894.529189px;}
.y7{bottom:1926.029188px;}
.y6{bottom:1957.529186px;}
.y4{bottom:2031.521345px;}
.y3{bottom:2094.521342px;}
.y2{bottom:2157.521340px;}
.h4{height:49.547608px;}
.h6{height:53.746557px;}
.h7{height:56.985747px;}
.hb{height:59.471998px;}
.ha{height:64.511997px;}
.h5{height:80.639997px;}
.h9{height:99.095216px;}
.h8{height:109.019605px;}
.h3{height:148.679994px;}
.h2{height:2249.999876px;}
.h0{height:2249.999900px;}
.h1{height:2250.000000px;}
.w1{width:899.999963px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.x4{left:15.284109px;}
.x5{left:33.277103px;}
.x6{left:35.535046px;}
.xd{left:43.515515px;}
.xa{left:44.892599px;}
.xb{left:47.769421px;}
.xc{left:64.257701px;}
.xe{left:72.356469px;}
.x7{left:145.029182px;}
.x8{left:160.023322px;}
.x1{left:322.952131px;}
.x3{left:331.442365px;}
.x9{left:338.265502px;}
.xf{left:390.973474px;}
.x2{left:393.932597px;}
.x10{left:592.776011px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-12.290259pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-3.141898pt;}
._4{margin-left:-1.294172pt;}
._11{width:1.643346pt;}
._d{width:2.653824pt;}
._e{width:3.727315pt;}
._a{width:4.898006pt;}
._7{width:5.874682pt;}
._9{width:6.822551pt;}
._1{width:8.274733pt;}
._19{width:10.499625pt;}
._6{width:12.230985pt;}
._15{width:13.622301pt;}
._b{width:14.609258pt;}
._c{width:15.588126pt;}
._12{width:18.295928pt;}
._2{width:19.593458pt;}
._f{width:22.724529pt;}
._10{width:23.822676pt;}
._14{width:24.817666pt;}
._13{width:29.033684pt;}
._3{width:30.055986pt;}
._1b{width:36.531015pt;}
._8{width:40.518551pt;}
._1e{width:42.374844pt;}
._0{width:49.669462pt;}
._16{width:55.593514pt;}
._18{width:56.614386pt;}
._1d{width:81.406060pt;}
._17{width:87.374922pt;}
._1f{width:96.770785pt;}
._22{width:139.999669pt;}
._21{width:143.749763pt;}
._20{width:147.499636pt;}
._23{width:207.437248pt;}
._1c{width:238.187296pt;}
._1a{width:527.458393pt;}
.fs1{font-size:53.319997pt;}
.fs5{font-size:63.999997pt;}
.fs2{font-size:79.999997pt;}
.fs4{font-size:106.639996pt;}
.fs3{font-size:117.319995pt;}
.fs0{font-size:159.999993pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000021pt;}
.y10{bottom:21.748607pt;}
.yf{bottom:39.748606pt;}
.ye{bottom:57.748606pt;}
.y15{bottom:98.288124pt;}
.y14{bottom:116.288123pt;}
.y5{bottom:144.621402pt;}
.y13{bottom:186.954840pt;}
.y12{bottom:204.954839pt;}
.y11{bottom:222.954839pt;}
.yd{bottom:248.221238pt;}
.y2e{bottom:288.954676pt;}
.y2d{bottom:310.954675pt;}
.y2c{bottom:332.954674pt;}
.y2b{bottom:354.954673pt;}
.y2a{bottom:376.954672pt;}
.y29{bottom:398.954671pt;}
.y28{bottom:420.954670pt;}
.y27{bottom:442.954670pt;}
.y26{bottom:464.954669pt;}
.yc{bottom:515.421387pt;}
.yb{bottom:597.921383pt;}
.y25{bottom:637.468101pt;}
.y24{bottom:665.468100pt;}
.y23{bottom:693.468099pt;}
.y22{bottom:721.468098pt;}
.y21{bottom:749.468097pt;}
.y20{bottom:777.468096pt;}
.y1f{bottom:805.468094pt;}
.y1e{bottom:833.468093pt;}
.y1d{bottom:881.456827pt;}
.y3c{bottom:940.245593pt;}
.y3b{bottom:968.245592pt;}
.y35{bottom:996.245590pt;}
.y3a{bottom:1022.445589pt;}
.y34{bottom:1024.245589pt;}
.y39{bottom:1050.445588pt;}
.y33{bottom:1052.245588pt;}
.y38{bottom:1078.445587pt;}
.y32{bottom:1080.245587pt;}
.y37{bottom:1106.445586pt;}
.y31{bottom:1108.245586pt;}
.y36{bottom:1134.445585pt;}
.y30{bottom:1136.245585pt;}
.y2f{bottom:1168.645487pt;}
.y1c{bottom:1354.713576pt;}
.y1b{bottom:1407.404044pt;}
.y1a{bottom:1435.404043pt;}
.y19{bottom:1463.404041pt;}
.y18{bottom:1491.404040pt;}
.y17{bottom:1519.404039pt;}
.y16{bottom:1562.172434pt;}
.ya{bottom:1628.025948pt;}
.y9{bottom:1656.025947pt;}
.y8{bottom:1684.025946pt;}
.y7{bottom:1712.025945pt;}
.y6{bottom:1740.025943pt;}
.y4{bottom:1805.796751pt;}
.y3{bottom:1861.796749pt;}
.y2{bottom:1917.796746pt;}
.h4{height:44.042318pt;}
.h6{height:47.774718pt;}
.h7{height:50.653998pt;}
.hb{height:52.863998pt;}
.ha{height:57.343998pt;}
.h5{height:71.679997pt;}
.h9{height:88.084636pt;}
.h8{height:96.906316pt;}
.h3{height:132.159994pt;}
.h2{height:1999.999890pt;}
.h0{height:1999.999911pt;}
.h1{height:2000.000000pt;}
.w1{width:799.999967pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.x4{left:13.585875pt;}
.x5{left:29.579647pt;}
.x6{left:31.586708pt;}
.xd{left:38.680457pt;}
.xa{left:39.904532pt;}
.xb{left:42.461707pt;}
.xc{left:57.117957pt;}
.xe{left:64.316862pt;}
.x7{left:128.914829pt;}
.x8{left:142.242953pt;}
.x1{left:287.068561pt;}
.x3{left:294.615436pt;}
.x9{left:300.680447pt;}
.xf{left:347.531977pt;}
.x2{left:350.162308pt;}
.x10{left:526.912010pt;}
}




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