
    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_2afd57e4705dc4f5c1a8f983.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100586;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_3dc7a0e97064bff7dfe32bcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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;}
.v1{vertical-align:5.994000px;}
.ls9{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.532200px;}
.ls2{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.560400px;}
.ls1{letter-spacing:0.561600px;}
.ls0{letter-spacing:0.562200px;}
.lse{letter-spacing:0.577200px;}
.lsd{letter-spacing:0.577800px;}
.lsb{letter-spacing:0.585000px;}
.ls3{letter-spacing:0.840000px;}
.ls5{letter-spacing:1.140000px;}
.ls4{letter-spacing:1.380000px;}
.ls6{letter-spacing:1.680000px;}
.ls10{letter-spacing:1.920000px;}
.ls7{letter-spacing:1.980000px;}
.lsf{letter-spacing:2.220000px;}
.ls8{letter-spacing:2.820000px;}
.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;}
}
.ws4{word-spacing:-17.820000px;}
.ws9{word-spacing:-16.980000px;}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-11.250000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:1.440000px;}
.ws0{word-spacing:3.007800px;}
.ws6{word-spacing:5.191800px;}
.ws7{word-spacing:5.360400px;}
.ws8{word-spacing:7.065000px;}
.wsa{word-spacing:1540.890000px;}
._d{margin-left:-1858.842000px;}
._e{margin-left:-13.500000px;}
._2{margin-left:-2.475000px;}
._1{margin-left:-1.365600px;}
._0{width:1.125000px;}
._3{width:2.130000px;}
._6{width:3.180000px;}
._c{width:4.965000px;}
._7{width:6.180000px;}
._4{width:7.260000px;}
._5{width:8.355000px;}
._a{width:14.775000px;}
._8{width:15.796800px;}
._9{width:18.165000px;}
._b{width:20.175000px;}
._f{width:21.300000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:100.058700px;}
.y4b{bottom:101.558850px;}
.y28{bottom:116.558700px;}
.y4a{bottom:118.058850px;}
.y27{bottom:133.058700px;}
.y49{bottom:134.558850px;}
.y26{bottom:149.558700px;}
.y48{bottom:151.058850px;}
.y25{bottom:166.058700px;}
.y47{bottom:167.558850px;}
.y24{bottom:182.558700px;}
.y46{bottom:184.058850px;}
.y23{bottom:199.058700px;}
.y45{bottom:200.558850px;}
.y22{bottom:215.558700px;}
.y44{bottom:217.058850px;}
.y21{bottom:232.058700px;}
.y43{bottom:233.558850px;}
.y20{bottom:248.558700px;}
.y42{bottom:250.058850px;}
.y1f{bottom:265.058700px;}
.y41{bottom:266.558850px;}
.y1e{bottom:281.558700px;}
.y40{bottom:283.058850px;}
.y1d{bottom:298.058700px;}
.y3f{bottom:299.558850px;}
.y1c{bottom:314.558700px;}
.y3e{bottom:316.058850px;}
.y1b{bottom:331.058700px;}
.y3d{bottom:332.558850px;}
.y1a{bottom:347.558700px;}
.y3c{bottom:349.058850px;}
.y19{bottom:364.058700px;}
.y3b{bottom:365.558850px;}
.y18{bottom:380.558700px;}
.y3a{bottom:382.058850px;}
.y17{bottom:397.058700px;}
.y39{bottom:398.558850px;}
.y16{bottom:413.558700px;}
.y38{bottom:415.058850px;}
.y15{bottom:430.058700px;}
.y37{bottom:431.558850px;}
.y14{bottom:446.558700px;}
.y36{bottom:448.058850px;}
.y13{bottom:463.058700px;}
.y35{bottom:464.558850px;}
.y12{bottom:479.558700px;}
.y34{bottom:481.058850px;}
.y11{bottom:496.058700px;}
.y10{bottom:512.558700px;}
.y33{bottom:524.558850px;}
.yf{bottom:529.058700px;}
.y32{bottom:541.058850px;}
.ye{bottom:545.558700px;}
.yd{bottom:562.058700px;}
.yc{bottom:578.558700px;}
.yb{bottom:595.058700px;}
.ya{bottom:611.558700px;}
.y9{bottom:628.058700px;}
.y8{bottom:644.558700px;}
.y7{bottom:661.058700px;}
.y31{bottom:664.058700px;}
.y6{bottom:677.558700px;}
.y30{bottom:680.558700px;}
.y5{bottom:694.058700px;}
.y2f{bottom:697.058700px;}
.y4{bottom:710.558700px;}
.y2e{bottom:713.558700px;}
.y3{bottom:727.058700px;}
.y2d{bottom:730.058700px;}
.y2{bottom:743.558700px;}
.y2c{bottom:746.558700px;}
.y2b{bottom:763.058700px;}
.y1{bottom:779.558700px;}
.y4c{bottom:828.434850px;}
.y2a{bottom:829.934850px;}
.h4{height:45.219727px;}
.h3{height:50.244141px;}
.h2{height:50.742188px;}
.h5{height:51.213727px;}
.h1{height:909.750000px;}
.h0{height:909.921015px;}
.w1{width:654.750000px;}
.w0{width:654.802500px;}
.x0{left:0.000000px;}
.x5{left:93.543900px;}
.x1{left:95.043300px;}
.x2{left:116.296050px;}
.x4{left:342.678900px;}
.x3{left:501.119250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.328000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.473067pt;}
.ls2{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.498133pt;}
.ls1{letter-spacing:0.499200pt;}
.ls0{letter-spacing:0.499733pt;}
.lse{letter-spacing:0.513067pt;}
.lsd{letter-spacing:0.513600pt;}
.lsb{letter-spacing:0.520000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls5{letter-spacing:1.013333pt;}
.ls4{letter-spacing:1.226667pt;}
.ls6{letter-spacing:1.493333pt;}
.ls10{letter-spacing:1.706667pt;}
.ls7{letter-spacing:1.760000pt;}
.lsf{letter-spacing:1.973333pt;}
.ls8{letter-spacing:2.506667pt;}
.ws4{word-spacing:-15.840000pt;}
.ws9{word-spacing:-15.093333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-10.000000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:1.280000pt;}
.ws0{word-spacing:2.673600pt;}
.ws6{word-spacing:4.614933pt;}
.ws7{word-spacing:4.764800pt;}
.ws8{word-spacing:6.280000pt;}
.wsa{word-spacing:1369.680000pt;}
._d{margin-left:-1652.304000pt;}
._e{margin-left:-12.000000pt;}
._2{margin-left:-2.200000pt;}
._1{margin-left:-1.213867pt;}
._0{width:1.000000pt;}
._3{width:1.893333pt;}
._6{width:2.826667pt;}
._c{width:4.413333pt;}
._7{width:5.493333pt;}
._4{width:6.453333pt;}
._5{width:7.426667pt;}
._a{width:13.133333pt;}
._8{width:14.041600pt;}
._9{width:16.146667pt;}
._b{width:17.933333pt;}
._f{width:18.933333pt;}
.fs1{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:88.941067pt;}
.y4b{bottom:90.274533pt;}
.y28{bottom:103.607733pt;}
.y4a{bottom:104.941200pt;}
.y27{bottom:118.274400pt;}
.y49{bottom:119.607867pt;}
.y26{bottom:132.941067pt;}
.y48{bottom:134.274533pt;}
.y25{bottom:147.607733pt;}
.y47{bottom:148.941200pt;}
.y24{bottom:162.274400pt;}
.y46{bottom:163.607867pt;}
.y23{bottom:176.941067pt;}
.y45{bottom:178.274533pt;}
.y22{bottom:191.607733pt;}
.y44{bottom:192.941200pt;}
.y21{bottom:206.274400pt;}
.y43{bottom:207.607867pt;}
.y20{bottom:220.941067pt;}
.y42{bottom:222.274533pt;}
.y1f{bottom:235.607733pt;}
.y41{bottom:236.941200pt;}
.y1e{bottom:250.274400pt;}
.y40{bottom:251.607867pt;}
.y1d{bottom:264.941067pt;}
.y3f{bottom:266.274533pt;}
.y1c{bottom:279.607733pt;}
.y3e{bottom:280.941200pt;}
.y1b{bottom:294.274400pt;}
.y3d{bottom:295.607867pt;}
.y1a{bottom:308.941067pt;}
.y3c{bottom:310.274533pt;}
.y19{bottom:323.607733pt;}
.y3b{bottom:324.941200pt;}
.y18{bottom:338.274400pt;}
.y3a{bottom:339.607867pt;}
.y17{bottom:352.941067pt;}
.y39{bottom:354.274533pt;}
.y16{bottom:367.607733pt;}
.y38{bottom:368.941200pt;}
.y15{bottom:382.274400pt;}
.y37{bottom:383.607867pt;}
.y14{bottom:396.941067pt;}
.y36{bottom:398.274533pt;}
.y13{bottom:411.607733pt;}
.y35{bottom:412.941200pt;}
.y12{bottom:426.274400pt;}
.y34{bottom:427.607867pt;}
.y11{bottom:440.941067pt;}
.y10{bottom:455.607733pt;}
.y33{bottom:466.274533pt;}
.yf{bottom:470.274400pt;}
.y32{bottom:480.941200pt;}
.ye{bottom:484.941067pt;}
.yd{bottom:499.607733pt;}
.yc{bottom:514.274400pt;}
.yb{bottom:528.941067pt;}
.ya{bottom:543.607733pt;}
.y9{bottom:558.274400pt;}
.y8{bottom:572.941067pt;}
.y7{bottom:587.607733pt;}
.y31{bottom:590.274400pt;}
.y6{bottom:602.274400pt;}
.y30{bottom:604.941067pt;}
.y5{bottom:616.941067pt;}
.y2f{bottom:619.607733pt;}
.y4{bottom:631.607733pt;}
.y2e{bottom:634.274400pt;}
.y3{bottom:646.274400pt;}
.y2d{bottom:648.941067pt;}
.y2{bottom:660.941067pt;}
.y2c{bottom:663.607733pt;}
.y2b{bottom:678.274400pt;}
.y1{bottom:692.941067pt;}
.y4c{bottom:736.386533pt;}
.y2a{bottom:737.719867pt;}
.h4{height:40.195312pt;}
.h3{height:44.661458pt;}
.h2{height:45.104167pt;}
.h5{height:45.523313pt;}
.h1{height:808.666667pt;}
.h0{height:808.818680pt;}
.w1{width:582.000000pt;}
.w0{width:582.046667pt;}
.x0{left:0.000000pt;}
.x5{left:83.150133pt;}
.x1{left:84.482933pt;}
.x2{left:103.374267pt;}
.x4{left:304.603467pt;}
.x3{left:445.439333pt;}
}




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