
    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_36e9e7500346b6133a8df096.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_cfac6c905c0a5ed05f4089b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.948242;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_dfffed7d3ec44e5080d51b39.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.081543;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.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);}
.m1{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,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;}
}
.ws1{word-spacing:-21.599991px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-2.162196px;}
._14{margin-left:-1.002094px;}
._1{width:1.185990px;}
._2{width:2.187272px;}
._5{width:3.864893px;}
._6{width:5.865149px;}
._12{width:7.349591px;}
._10{width:9.416496px;}
._11{width:10.535774px;}
._f{width:11.932230px;}
._b{width:12.971982px;}
._a{width:14.581978px;}
._9{width:16.023653px;}
._d{width:17.448338px;}
._8{width:19.008208px;}
._7{width:20.222899px;}
._e{width:21.933392px;}
._1b{width:24.250977px;}
._13{width:25.380642px;}
._17{width:26.620837px;}
._15{width:28.334570px;}
._16{width:30.442368px;}
._1c{width:31.469267px;}
._1a{width:33.394669px;}
._18{width:34.814206px;}
._c{width:37.537185px;}
._19{width:42.722703px;}
._1e{width:44.787891px;}
._3{width:46.164161px;}
._4{width:47.205983px;}
._1d{width:103.958073px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.759976px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.360277px;}
.y1{bottom:75.720270px;}
.y21{bottom:113.519955px;}
.y42{bottom:125.579950px;}
.y20{bottom:145.199942px;}
.y41{bottom:157.259937px;}
.y49{bottom:159.959936px;}
.y1f{bottom:176.879929px;}
.y40{bottom:188.939924px;}
.y1e{bottom:208.559917px;}
.y3f{bottom:220.619912px;}
.y1d{bottom:240.239904px;}
.y3e{bottom:252.299899px;}
.y1c{bottom:271.919891px;}
.y3d{bottom:283.979886px;}
.y1b{bottom:303.599879px;}
.y47{bottom:315.659874px;}
.y3c{bottom:315.839874px;}
.y1a{bottom:335.279866px;}
.y46{bottom:347.339861px;}
.y3b{bottom:347.519861px;}
.y19{bottom:366.959853px;}
.y45{bottom:379.019848px;}
.y3a{bottom:379.199848px;}
.y18{bottom:398.639841px;}
.y44{bottom:410.699836px;}
.y39{bottom:410.879836px;}
.y17{bottom:430.319828px;}
.y38{bottom:442.559823px;}
.y16{bottom:462.179815px;}
.y37{bottom:474.239810px;}
.y15{bottom:493.859802px;}
.y36{bottom:505.919798px;}
.y14{bottom:525.539790px;}
.y35{bottom:537.599785px;}
.y13{bottom:557.219777px;}
.y34{bottom:569.279772px;}
.y12{bottom:588.899764px;}
.y33{bottom:600.959760px;}
.y11{bottom:620.579752px;}
.y32{bottom:632.639747px;}
.y10{bottom:652.259739px;}
.y31{bottom:664.319734px;}
.yf{bottom:683.939726px;}
.y30{bottom:695.999722px;}
.y48{bottom:696.179722px;}
.ye{bottom:715.619714px;}
.y2f{bottom:727.859709px;}
.yd{bottom:747.479701px;}
.y2e{bottom:759.539696px;}
.yc{bottom:779.159688px;}
.y2d{bottom:791.219684px;}
.yb{bottom:810.839676px;}
.y2c{bottom:822.899671px;}
.ya{bottom:842.519663px;}
.y2b{bottom:854.579658px;}
.y9{bottom:871.679651px;}
.y2a{bottom:886.259645px;}
.y8{bottom:901.199640px;}
.y29{bottom:917.939633px;}
.y7{bottom:937.739625px;}
.y28{bottom:949.619620px;}
.y27{bottom:981.299607px;}
.y6{bottom:985.439606px;}
.y26{bottom:1012.979595px;}
.y5{bottom:1033.139587px;}
.y25{bottom:1044.659582px;}
.y24{bottom:1076.339569px;}
.y4{bottom:1080.839568px;}
.y43{bottom:1108.019557px;}
.y23{bottom:1108.199557px;}
.y3{bottom:1128.719549px;}
.y22{bottom:1139.879544px;}
.h1{height:39.830258px;}
.h4{height:50.830995px;}
.h5{height:51.574198px;}
.h3{height:61.242163px;}
.h2{height:86.128911px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620117px;}
.x4{left:154.800208px;}
.x6{left:180.719928px;}
.x3{left:446.399821px;}
.x5{left:517.679793px;}
.x1{left:757.799697px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-19.199992pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.921952pt;}
._14{margin-left:-0.890751pt;}
._1{width:1.054213pt;}
._2{width:1.944242pt;}
._5{width:3.435461pt;}
._6{width:5.213466pt;}
._12{width:6.532970pt;}
._10{width:8.370218pt;}
._11{width:9.365132pt;}
._f{width:10.606427pt;}
._b{width:11.530650pt;}
._a{width:12.961758pt;}
._9{width:14.243247pt;}
._d{width:15.509634pt;}
._8{width:16.896185pt;}
._7{width:17.975911pt;}
._e{width:19.496349pt;}
._1b{width:21.556424pt;}
._13{width:22.560571pt;}
._17{width:23.662966pt;}
._15{width:25.186284pt;}
._16{width:27.059883pt;}
._1c{width:27.972682pt;}
._1a{width:29.684150pt;}
._18{width:30.945961pt;}
._c{width:33.366387pt;}
._19{width:37.975736pt;}
._1e{width:39.811459pt;}
._3{width:41.034810pt;}
._4{width:41.960873pt;}
._1d{width:92.407176pt;}
.fs0{font-size:53.119979pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.986913pt;}
.y1{bottom:67.306906pt;}
.y21{bottom:100.906626pt;}
.y42{bottom:111.626622pt;}
.y20{bottom:129.066615pt;}
.y41{bottom:139.786611pt;}
.y49{bottom:142.186610pt;}
.y1f{bottom:157.226604pt;}
.y40{bottom:167.946599pt;}
.y1e{bottom:185.386593pt;}
.y3f{bottom:196.106588pt;}
.y1d{bottom:213.546581pt;}
.y3e{bottom:224.266577pt;}
.y1c{bottom:241.706570pt;}
.y3d{bottom:252.426566pt;}
.y1b{bottom:269.866559pt;}
.y47{bottom:280.586554pt;}
.y3c{bottom:280.746554pt;}
.y1a{bottom:298.026547pt;}
.y46{bottom:308.746543pt;}
.y3b{bottom:308.906543pt;}
.y19{bottom:326.186536pt;}
.y45{bottom:336.906532pt;}
.y3a{bottom:337.066532pt;}
.y18{bottom:354.346525pt;}
.y44{bottom:365.066521pt;}
.y39{bottom:365.226521pt;}
.y17{bottom:382.506514pt;}
.y38{bottom:393.386509pt;}
.y16{bottom:410.826502pt;}
.y37{bottom:421.546498pt;}
.y15{bottom:438.986491pt;}
.y36{bottom:449.706487pt;}
.y14{bottom:467.146480pt;}
.y35{bottom:477.866476pt;}
.y13{bottom:495.306469pt;}
.y34{bottom:506.026464pt;}
.y12{bottom:523.466457pt;}
.y33{bottom:534.186453pt;}
.y11{bottom:551.626446pt;}
.y32{bottom:562.346442pt;}
.y10{bottom:579.786435pt;}
.y31{bottom:590.506430pt;}
.yf{bottom:607.946423pt;}
.y30{bottom:618.666419pt;}
.y48{bottom:618.826419pt;}
.ye{bottom:636.106412pt;}
.y2f{bottom:646.986408pt;}
.yd{bottom:664.426401pt;}
.y2e{bottom:675.146397pt;}
.yc{bottom:692.586390pt;}
.y2d{bottom:703.306385pt;}
.yb{bottom:720.746378pt;}
.y2c{bottom:731.466374pt;}
.ya{bottom:748.906367pt;}
.y2b{bottom:759.626363pt;}
.y9{bottom:774.826357pt;}
.y2a{bottom:787.786352pt;}
.y8{bottom:801.066346pt;}
.y29{bottom:815.946340pt;}
.y7{bottom:833.546333pt;}
.y28{bottom:844.106329pt;}
.y27{bottom:872.266318pt;}
.y6{bottom:875.946316pt;}
.y26{bottom:900.426306pt;}
.y5{bottom:918.346299pt;}
.y25{bottom:928.586295pt;}
.y24{bottom:956.746284pt;}
.y4{bottom:960.746282pt;}
.y43{bottom:984.906273pt;}
.y23{bottom:985.066273pt;}
.y3{bottom:1003.306265pt;}
.y22{bottom:1013.226261pt;}
.h1{height:35.404673pt;}
.h4{height:45.183107pt;}
.h5{height:45.843732pt;}
.h3{height:54.437478pt;}
.h2{height:76.559032pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440104pt;}
.x4{left:137.600185pt;}
.x6{left:160.639936pt;}
.x3{left:396.799841pt;}
.x5{left:460.159816pt;}
.x1{left:673.599731pt;}
}




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