
    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_c7261fbbfaf24707bd3fbba6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_154d4e17fc38d01b213a0f52.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_34733489d0f9fdd3156f50bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_b8e3e53dc20c71ab5d80645d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689941;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.378602px;}
.ls1{letter-spacing:0.843360px;}
.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;}
}
.ws1{word-spacing:-55.943978px;}
.ws0{word-spacing:-17.999993px;}
.ws3{word-spacing:-14.939994px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.032400px;}
._0{width:1.017097px;}
._8{width:2.073418px;}
._b{width:3.433579px;}
._e{width:4.917202px;}
._4{width:5.979262px;}
._3{width:7.251513px;}
._a{width:8.359618px;}
._9{width:9.559061px;}
._7{width:11.958811px;}
._5{width:20.495262px;}
._6{width:21.505620px;}
._c{width:24.774523px;}
._d{width:140.208207px;}
._2{width:194.525202px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y2c{bottom:116.760253px;}
.y2b{bottom:140.699944px;}
.y2a{bottom:164.459934px;}
.y29{bottom:188.219925px;}
.y59{bottom:188.939924px;}
.y58{bottom:206.039918px;}
.y28{bottom:211.979915px;}
.y57{bottom:223.319911px;}
.y27{bottom:235.919906px;}
.y56{bottom:240.599904px;}
.y55{bottom:257.879897px;}
.y26{bottom:259.679896px;}
.y54{bottom:275.159890px;}
.y25{bottom:283.439887px;}
.y53{bottom:292.439883px;}
.y24{bottom:307.199877px;}
.y52{bottom:309.539876px;}
.y51{bottom:326.819869px;}
.y23{bottom:330.959868px;}
.y50{bottom:344.099862px;}
.y22{bottom:354.899858px;}
.y4f{bottom:361.379855px;}
.y21{bottom:378.659849px;}
.y4e{bottom:395.759842px;}
.y20{bottom:402.419839px;}
.y4d{bottom:413.039835px;}
.y1f{bottom:426.179830px;}
.y4c{bottom:430.319828px;}
.y4b{bottom:447.599821px;}
.y1e{bottom:450.119820px;}
.y4a{bottom:464.879814px;}
.y1d{bottom:473.879810px;}
.y49{bottom:482.159807px;}
.y1c{bottom:497.639801px;}
.y48{bottom:499.259800px;}
.y47{bottom:516.539793px;}
.y1b{bottom:521.399791px;}
.y46{bottom:533.819786px;}
.y1a{bottom:545.339782px;}
.y45{bottom:551.099780px;}
.y44{bottom:568.379773px;}
.y19{bottom:569.099772px;}
.y43{bottom:585.659766px;}
.y18{bottom:592.859763px;}
.y42{bottom:602.759759px;}
.y17{bottom:616.619753px;}
.y41{bottom:620.039752px;}
.y40{bottom:637.319745px;}
.y16{bottom:640.559744px;}
.y3f{bottom:654.599738px;}
.y15{bottom:664.319734px;}
.y3e{bottom:671.879731px;}
.y14{bottom:688.079725px;}
.y3d{bottom:689.159724px;}
.y3c{bottom:706.259717px;}
.y13{bottom:711.839715px;}
.y3b{bottom:723.539711px;}
.y12{bottom:735.779706px;}
.y3a{bottom:740.819704px;}
.y39{bottom:758.099697px;}
.y11{bottom:759.539696px;}
.y38{bottom:775.379690px;}
.y10{bottom:783.299687px;}
.y37{bottom:792.479683px;}
.yf{bottom:807.059677px;}
.y36{bottom:809.759676px;}
.y35{bottom:827.039669px;}
.ye{bottom:830.819668px;}
.y34{bottom:844.319662px;}
.yd{bottom:854.759658px;}
.y33{bottom:861.599655px;}
.yc{bottom:878.519649px;}
.y32{bottom:881.219648px;}
.yb{bottom:902.279639px;}
.ya{bottom:926.039630px;}
.y9{bottom:949.979620px;}
.y8{bottom:973.739611px;}
.y7{bottom:997.499601px;}
.y6{bottom:1021.259591px;}
.y5{bottom:1044.839582px;}
.y31{bottom:1045.199582px;}
.y4{bottom:1068.599573px;}
.y30{bottom:1068.959572px;}
.y3{bottom:1092.359563px;}
.y2f{bottom:1092.719563px;}
.y2{bottom:1116.119554px;}
.y2e{bottom:1116.479553px;}
.y1{bottom:1140.059544px;}
.y2d{bottom:1140.419544px;}
.h4{height:58.651148px;}
.h2{height:70.664034px;}
.h3{height:70.665234px;}
.h1{height:72.562471px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.199958px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.336535pt;}
.ls1{letter-spacing:0.749653pt;}
.ws1{word-spacing:-49.727980pt;}
.ws0{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.279995pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-0.917689pt;}
._0{width:0.904086pt;}
._8{width:1.843038pt;}
._b{width:3.052071pt;}
._e{width:4.370846pt;}
._4{width:5.314899pt;}
._3{width:6.445790pt;}
._a{width:7.430771pt;}
._9{width:8.496943pt;}
._7{width:10.630054pt;}
._5{width:18.218011pt;}
._6{width:19.116107pt;}
._c{width:22.021798pt;}
._d{width:124.629518pt;}
._2{width:172.911291pt;}
.fs1{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:103.786892pt;}
.y2b{bottom:125.066617pt;}
.y2a{bottom:146.186608pt;}
.y29{bottom:167.306600pt;}
.y59{bottom:167.946599pt;}
.y58{bottom:183.146593pt;}
.y28{bottom:188.426591pt;}
.y57{bottom:198.506587pt;}
.y27{bottom:209.706583pt;}
.y56{bottom:213.866581pt;}
.y55{bottom:229.226575pt;}
.y26{bottom:230.826574pt;}
.y54{bottom:244.586569pt;}
.y25{bottom:251.946566pt;}
.y53{bottom:259.946563pt;}
.y24{bottom:273.066557pt;}
.y52{bottom:275.146557pt;}
.y51{bottom:290.506550pt;}
.y23{bottom:294.186549pt;}
.y50{bottom:305.866544pt;}
.y22{bottom:315.466540pt;}
.y4f{bottom:321.226538pt;}
.y21{bottom:336.586532pt;}
.y4e{bottom:351.786526pt;}
.y20{bottom:357.706524pt;}
.y4d{bottom:367.146520pt;}
.y1f{bottom:378.826515pt;}
.y4c{bottom:382.506514pt;}
.y4b{bottom:397.866508pt;}
.y1e{bottom:400.106507pt;}
.y4a{bottom:413.226501pt;}
.y1d{bottom:421.226498pt;}
.y49{bottom:428.586495pt;}
.y1c{bottom:442.346490pt;}
.y48{bottom:443.786489pt;}
.y47{bottom:459.146483pt;}
.y1b{bottom:463.466481pt;}
.y46{bottom:474.506477pt;}
.y1a{bottom:484.746473pt;}
.y45{bottom:489.866471pt;}
.y44{bottom:505.226465pt;}
.y19{bottom:505.866464pt;}
.y43{bottom:520.586458pt;}
.y18{bottom:526.986456pt;}
.y42{bottom:535.786452pt;}
.y17{bottom:548.106447pt;}
.y41{bottom:551.146446pt;}
.y40{bottom:566.506440pt;}
.y16{bottom:569.386439pt;}
.y3f{bottom:581.866434pt;}
.y15{bottom:590.506430pt;}
.y3e{bottom:597.226428pt;}
.y14{bottom:611.626422pt;}
.y3d{bottom:612.586422pt;}
.y3c{bottom:627.786416pt;}
.y13{bottom:632.746414pt;}
.y3b{bottom:643.146409pt;}
.y12{bottom:654.026405pt;}
.y3a{bottom:658.506403pt;}
.y39{bottom:673.866397pt;}
.y11{bottom:675.146397pt;}
.y38{bottom:689.226391pt;}
.y10{bottom:696.266388pt;}
.y37{bottom:704.426385pt;}
.yf{bottom:717.386380pt;}
.y36{bottom:719.786379pt;}
.y35{bottom:735.146373pt;}
.ye{bottom:738.506371pt;}
.y34{bottom:750.506366pt;}
.yd{bottom:759.786363pt;}
.y33{bottom:765.866360pt;}
.yc{bottom:780.906354pt;}
.y32{bottom:783.306353pt;}
.yb{bottom:802.026346pt;}
.ya{bottom:823.146337pt;}
.y9{bottom:844.426329pt;}
.y8{bottom:865.546320pt;}
.y7{bottom:886.666312pt;}
.y6{bottom:907.786304pt;}
.y5{bottom:928.746295pt;}
.y31{bottom:929.066295pt;}
.y4{bottom:949.866287pt;}
.y30{bottom:950.186287pt;}
.y3{bottom:970.986278pt;}
.y2f{bottom:971.306278pt;}
.y2{bottom:992.106270pt;}
.y2e{bottom:992.426270pt;}
.y1{bottom:1013.386261pt;}
.y2d{bottom:1013.706261pt;}
.h4{height:52.134354pt;}
.h2{height:62.812475pt;}
.h3{height:62.813542pt;}
.h1{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.399962pt;}
}




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