
    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_ac6caa50381b6c2bdce927b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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;}
.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:0.000000px;}
._2{margin-left:-6.798488px;}
._3{margin-left:-5.644725px;}
._4{margin-left:-4.200710px;}
._5{margin-left:-2.015725px;}
._0{margin-left:-1.011051px;}
._1{width:67.684570px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000002px;}
.y0{bottom:0.000000px;}
.y30{bottom:114.011534px;}
.y3a{bottom:114.011542px;}
.y5d{bottom:114.011714px;}
.y4d{bottom:114.011722px;}
.y2f{bottom:135.830939px;}
.y4c{bottom:157.650149px;}
.y5c{bottom:157.650157px;}
.y2e{bottom:157.650329px;}
.y39{bottom:179.469727px;}
.y2d{bottom:179.469734px;}
.y2c{bottom:201.289117px;}
.y38{bottom:201.289124px;}
.y4b{bottom:201.289304px;}
.y2b{bottom:223.108514px;}
.y4a{bottom:244.927732px;}
.y2a{bottom:244.927919px;}
.y29{bottom:266.747309px;}
.y37{bottom:288.566707px;}
.y28{bottom:288.566714px;}
.y49{bottom:288.566894px;}
.y27{bottom:310.386104px;}
.y48{bottom:310.386112px;}
.y47{bottom:332.205329px;}
.y26{bottom:332.205509px;}
.y25{bottom:354.024899px;}
.y24{bottom:375.844304px;}
.y46{bottom:375.844484px;}
.y5b{bottom:397.663687px;}
.y36{bottom:397.663694px;}
.y23{bottom:397.663702px;}
.y45{bottom:419.482904px;}
.y22{bottom:419.483099px;}
.y35{bottom:441.302489px;}
.y21{bottom:441.302497px;}
.y20{bottom:463.121894px;}
.y44{bottom:463.122074px;}
.y1f{bottom:484.941284px;}
.y43{bottom:506.760494px;}
.y1e{bottom:506.760689px;}
.y1d{bottom:528.580079px;}
.y1c{bottom:550.399469px;}
.y42{bottom:550.399657px;}
.y5a{bottom:550.399664px;}
.y1b{bottom:572.218874px;}
.y41{bottom:594.038084px;}
.y1a{bottom:594.038264px;}
.y19{bottom:615.857662px;}
.y34{bottom:615.857669px;}
.y18{bottom:637.677059px;}
.y40{bottom:637.677254px;}
.y59{bottom:659.496457px;}
.y17{bottom:659.496464px;}
.y3f{bottom:681.315674px;}
.y16{bottom:681.315862px;}
.y15{bottom:703.135259px;}
.y14{bottom:724.954649px;}
.y3e{bottom:724.954829px;}
.y58{bottom:746.774047px;}
.y13{bottom:746.774054px;}
.y57{bottom:768.593264px;}
.y12{bottom:768.593444px;}
.y33{bottom:768.593452px;}
.y11{bottom:790.412849px;}
.y10{bottom:812.232232px;}
.y56{bottom:812.232419px;}
.yf{bottom:834.051629px;}
.y55{bottom:855.870854px;}
.ye{bottom:855.871027px;}
.y32{bottom:855.871034px;}
.yd{bottom:877.690424px;}
.y3d{bottom:877.690432px;}
.yc{bottom:899.509822px;}
.y3c{bottom:899.509829px;}
.y5f{bottom:899.510002px;}
.y54{bottom:899.510009px;}
.yb{bottom:921.329219px;}
.y3b{bottom:921.329227px;}
.y53{bottom:943.148444px;}
.y31{bottom:943.148617px;}
.ya{bottom:943.148624px;}
.y9{bottom:964.968014px;}
.y8{bottom:986.787419px;}
.y52{bottom:986.787599px;}
.y51{bottom:1008.606810px;}
.y7{bottom:1008.606813px;}
.y50{bottom:1030.426026px;}
.y6{bottom:1030.426209px;}
.y5{bottom:1052.245605px;}
.y4{bottom:1074.065003px;}
.y4f{bottom:1074.065186px;}
.y3{bottom:1095.884400px;}
.y4e{bottom:1117.703613px;}
.y5e{bottom:1117.703617px;}
.y2{bottom:1117.703796px;}
.y1{bottom:1139.523194px;}
.h1{height:59.167970px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:135.000000px;}
.x3{left:162.000000px;}
.x4{left:189.000000px;}
.x5{left:216.000000px;}
.x6{left:243.000000px;}
.x7{left:270.000000px;}
.x8{left:297.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-6.043100pt;}
._3{margin-left:-5.017533pt;}
._4{margin-left:-3.733965pt;}
._5{margin-left:-1.791756pt;}
._0{margin-left:-0.898712pt;}
._1{width:60.164062pt;}
.fs0{font-size:58.666668pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:101.343585pt;}
.y3a{bottom:101.343593pt;}
.y5d{bottom:101.343745pt;}
.y4d{bottom:101.343753pt;}
.y2f{bottom:120.738612pt;}
.y4c{bottom:140.133465pt;}
.y5c{bottom:140.133473pt;}
.y2e{bottom:140.133625pt;}
.y39{bottom:159.528646pt;}
.y2d{bottom:159.528652pt;}
.y2c{bottom:178.923660pt;}
.y38{bottom:178.923665pt;}
.y4b{bottom:178.923825pt;}
.y2b{bottom:198.318679pt;}
.y4a{bottom:217.713540pt;}
.y2a{bottom:217.713705pt;}
.y29{bottom:237.108719pt;}
.y37{bottom:256.503740pt;}
.y28{bottom:256.503745pt;}
.y49{bottom:256.503905pt;}
.y27{bottom:275.898759pt;}
.y48{bottom:275.898766pt;}
.y47{bottom:295.293625pt;}
.y26{bottom:295.293785pt;}
.y25{bottom:314.688799pt;}
.y24{bottom:334.083825pt;}
.y46{bottom:334.083985pt;}
.y5b{bottom:353.478833pt;}
.y36{bottom:353.478839pt;}
.y23{bottom:353.478846pt;}
.y45{bottom:372.873692pt;}
.y22{bottom:372.873865pt;}
.y35{bottom:392.268879pt;}
.y21{bottom:392.268886pt;}
.y20{bottom:411.663905pt;}
.y44{bottom:411.664065pt;}
.y1f{bottom:431.058919pt;}
.y43{bottom:450.453772pt;}
.y1e{bottom:450.453945pt;}
.y1d{bottom:469.848959pt;}
.y1c{bottom:489.243972pt;}
.y42{bottom:489.244140pt;}
.y5a{bottom:489.244145pt;}
.y1b{bottom:508.638999pt;}
.y41{bottom:528.033852pt;}
.y1a{bottom:528.034012pt;}
.y19{bottom:547.429033pt;}
.y34{bottom:547.429039pt;}
.y18{bottom:566.824052pt;}
.y40{bottom:566.824225pt;}
.y59{bottom:586.219073pt;}
.y17{bottom:586.219079pt;}
.y3f{bottom:605.613932pt;}
.y16{bottom:605.614100pt;}
.y15{bottom:625.009119pt;}
.y14{bottom:644.404132pt;}
.y3e{bottom:644.404292pt;}
.y58{bottom:663.799153pt;}
.y13{bottom:663.799159pt;}
.y57{bottom:683.194012pt;}
.y12{bottom:683.194172pt;}
.y33{bottom:683.194180pt;}
.y11{bottom:702.589199pt;}
.y10{bottom:721.984206pt;}
.y56{bottom:721.984372pt;}
.yf{bottom:741.379225pt;}
.y55{bottom:760.774092pt;}
.ye{bottom:760.774246pt;}
.y32{bottom:760.774252pt;}
.yd{bottom:780.169265pt;}
.y3d{bottom:780.169273pt;}
.yc{bottom:799.564286pt;}
.y3c{bottom:799.564292pt;}
.y5f{bottom:799.564446pt;}
.y54{bottom:799.564452pt;}
.yb{bottom:818.959305pt;}
.y3b{bottom:818.959313pt;}
.y53{bottom:838.354172pt;}
.y31{bottom:838.354326pt;}
.ya{bottom:838.354332pt;}
.y9{bottom:857.749345pt;}
.y8{bottom:877.144372pt;}
.y52{bottom:877.144532pt;}
.y51{bottom:896.539386pt;}
.y7{bottom:896.539389pt;}
.y50{bottom:915.934245pt;}
.y6{bottom:915.934408pt;}
.y5{bottom:935.329427pt;}
.y4{bottom:954.724447pt;}
.y4f{bottom:954.724609pt;}
.y3{bottom:974.119467pt;}
.y4e{bottom:993.514323pt;}
.y5e{bottom:993.514326pt;}
.y2{bottom:993.514485pt;}
.y1{bottom:1012.909505pt;}
.h1{height:52.593751pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:120.000000pt;}
.x3{left:144.000000pt;}
.x4{left:168.000000pt;}
.x5{left:192.000000pt;}
.x6{left:216.000000pt;}
.x7{left:240.000000pt;}
.x8{left:264.000000pt;}
}




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