
    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_fdd77ce2d6e218df0e42a622.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_d2c90f2dcf6b1474af6e1d57.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_77fa3ddeb7d97a1f343671c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727539;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_e88b65d7e012f1d49d9748a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;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:ff5;src:url('chunks/assets/font_a894f6c9b426c6c1f32800af.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.802246;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:ff6;src:url('chunks/assets/font_9d0fea57f01a5a79cc33be87.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.821777;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:ff7;src:url('chunks/assets/font_d6fc1e6382f39d01a5eb5864.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.904297;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;}
.ls1{letter-spacing:107.986325px;}
.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;}
}
.ws3{word-spacing:-31.578002px;}
.ws1{word-spacing:-29.916001px;}
.ws5{word-spacing:-25.764002px;}
.ws2{word-spacing:-0.114000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:68.112565px;}
._5{margin-left:-31.592104px;}
._0{margin-left:-20.868001px;}
._8{margin-left:-18.021899px;}
._7{margin-left:-8.450102px;}
._2{margin-left:-5.940000px;}
._6{margin-left:-2.066102px;}
._9{margin-left:-1.065748px;}
._4{width:1.126800px;}
._3{width:2.308050px;}
._1{width:108.000426px;}
.fc1{color:rgb(0,151,167);}
.fc2{color:rgb(231,220,96);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:84.000000px;}
.fs5{font-size:108.000003px;}
.fs7{font-size:114.000007px;}
.fsa{font-size:144.000005px;}
.fs6{font-size:149.999999px;}
.fs1{font-size:167.999999px;}
.fs3{font-size:216.000007px;}
.fs8{font-size:240.000002px;}
.fs4{font-size:282.000015px;}
.fs2{font-size:288.000009px;}
.fs0{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y13{bottom:57.843770px;}
.y20{bottom:75.528770px;}
.y12{bottom:94.968771px;}
.y30{bottom:102.078771px;}
.y1f{bottom:114.903772px;}
.y8{bottom:123.048772px;}
.y11{bottom:132.093772px;}
.y2f{bottom:144.828773px;}
.y1e{bottom:154.278773px;}
.y10{bottom:169.218773px;}
.y36{bottom:181.255149px;}
.y2e{bottom:187.578774px;}
.y1d{bottom:193.653774px;}
.yf{bottom:206.343775px;}
.y17{bottom:219.888775px;}
.y35{bottom:220.630150px;}
.y2d{bottom:230.328775px;}
.y1c{bottom:233.028776px;}
.y3{bottom:242.453598px;}
.ye{bottom:243.468776px;}
.y7{bottom:253.548776px;}
.y1b{bottom:272.403777px;}
.y2c{bottom:273.078777px;}
.yd{bottom:280.593777px;}
.y2{bottom:293.078604px;}
.y16{bottom:309.888778px;}
.y1a{bottom:311.778778px;}
.y26{bottom:313.970897px;}
.y2b{bottom:315.828778px;}
.y34{bottom:316.246288px;}
.yc{bottom:317.718778px;}
.y6{bottom:318.798778px;}
.y25{bottom:343.220898px;}
.y19{bottom:351.153779px;}
.y33{bottom:354.811289px;}
.yb{bottom:354.843779px;}
.y15{bottom:354.888779px;}
.y2a{bottom:358.578780px;}
.y28{bottom:372.300236px;}
.y5{bottom:384.048783px;}
.y1{bottom:386.280111px;}
.y18{bottom:390.528781px;}
.ya{bottom:391.968781px;}
.y32{bottom:395.671291px;}
.y24{bottom:398.210900px;}
.y14{bottom:399.888781px;}
.y29{bottom:401.328781px;}
.y27{bottom:415.050238px;}
.y23{bottom:435.335901px;}
.y4{bottom:475.692987px;}
.y9{bottom:477.132987px;}
.y21{bottom:487.212990px;}
.y22{bottom:504.492992px;}
.y31{bottom:510.863740px;}
.ha{height:61.195312px;}
.he{height:73.458987px;}
.hf{height:77.929692px;}
.h6{height:78.679690px;}
.h10{height:82.772466px;}
.h8{height:83.050786px;}
.hd{height:98.437503px;}
.hb{height:104.906253px;}
.h7{height:109.277343px;}
.h2{height:122.390625px;}
.hc{height:147.656255px;}
.h4{height:157.359380px;}
.h9{height:174.843751px;}
.h5{height:205.441417px;}
.h3{height:209.812507px;}
.h1{height:262.265633px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4{left:46.939963px;}
.x3{left:48.885745px;}
.xa{left:51.293347px;}
.x6{left:57.631857px;}
.x2{left:88.450090px;}
.x7{left:100.939964px;}
.xb{left:105.293349px;}
.x8{left:111.631864px;}
.x5{left:135.226270px;}
.x9{left:154.939966px;}
.xc{left:164.729386px;}
.x1{left:367.448761px;}
.xd{left:544.145676px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:95.987844pt;}
.ws3{word-spacing:-28.069335pt;}
.ws1{word-spacing:-26.592001pt;}
.ws5{word-spacing:-22.901335pt;}
.ws2{word-spacing:-0.101333pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:60.544502pt;}
._5{margin-left:-28.081870pt;}
._0{margin-left:-18.549334pt;}
._8{margin-left:-16.019466pt;}
._7{margin-left:-7.511202pt;}
._2{margin-left:-5.280000pt;}
._6{margin-left:-1.836535pt;}
._9{margin-left:-0.947331pt;}
._4{width:1.001600pt;}
._3{width:2.051600pt;}
._1{width:96.000379pt;}
.fs9{font-size:74.666666pt;}
.fs5{font-size:96.000003pt;}
.fs7{font-size:101.333339pt;}
.fsa{font-size:128.000004pt;}
.fs6{font-size:133.333332pt;}
.fs1{font-size:149.333333pt;}
.fs3{font-size:192.000006pt;}
.fs8{font-size:213.333335pt;}
.fs4{font-size:250.666680pt;}
.fs2{font-size:256.000008pt;}
.fs0{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:51.416684pt;}
.y20{bottom:67.136685pt;}
.y12{bottom:84.416685pt;}
.y30{bottom:90.736686pt;}
.y1f{bottom:102.136686pt;}
.y8{bottom:109.376686pt;}
.y11{bottom:117.416686pt;}
.y2f{bottom:128.736687pt;}
.y1e{bottom:137.136687pt;}
.y10{bottom:150.416688pt;}
.y36{bottom:161.115688pt;}
.y2e{bottom:166.736688pt;}
.y1d{bottom:172.136688pt;}
.yf{bottom:183.416689pt;}
.y17{bottom:195.456689pt;}
.y35{bottom:196.115689pt;}
.y2d{bottom:204.736689pt;}
.y1c{bottom:207.136689pt;}
.y3{bottom:215.514310pt;}
.ye{bottom:216.416690pt;}
.y7{bottom:225.376690pt;}
.y1b{bottom:242.136690pt;}
.y2c{bottom:242.736690pt;}
.yd{bottom:249.416691pt;}
.y2{bottom:260.514315pt;}
.y16{bottom:275.456692pt;}
.y1a{bottom:277.136692pt;}
.y26{bottom:279.085242pt;}
.y2b{bottom:280.736692pt;}
.y34{bottom:281.107812pt;}
.yc{bottom:282.416692pt;}
.y6{bottom:283.376692pt;}
.y25{bottom:305.085242pt;}
.y19{bottom:312.136693pt;}
.y33{bottom:315.387813pt;}
.yb{bottom:315.416693pt;}
.y15{bottom:315.456693pt;}
.y2a{bottom:318.736693pt;}
.y28{bottom:330.933543pt;}
.y5{bottom:341.376696pt;}
.y1{bottom:343.360099pt;}
.y18{bottom:347.136694pt;}
.ya{bottom:348.416694pt;}
.y32{bottom:351.707814pt;}
.y24{bottom:353.965244pt;}
.y14{bottom:355.456694pt;}
.y29{bottom:356.736694pt;}
.y27{bottom:368.933545pt;}
.y23{bottom:386.965245pt;}
.y4{bottom:422.838210pt;}
.y9{bottom:424.118210pt;}
.y21{bottom:433.078214pt;}
.y22{bottom:448.438215pt;}
.y31{bottom:454.101102pt;}
.ha{height:54.395833pt;}
.he{height:65.296877pt;}
.hf{height:69.270837pt;}
.h6{height:69.937502pt;}
.h10{height:73.575525pt;}
.h8{height:73.822921pt;}
.hd{height:87.500003pt;}
.hb{height:93.250003pt;}
.h7{height:97.135416pt;}
.h2{height:108.791666pt;}
.hc{height:131.250004pt;}
.h4{height:139.875004pt;}
.h9{height:155.416668pt;}
.h5{height:182.614593pt;}
.h3{height:186.500006pt;}
.h1{height:233.125007pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4{left:41.724411pt;}
.x3{left:43.453995pt;}
.xa{left:45.594086pt;}
.x6{left:51.228318pt;}
.x2{left:78.622303pt;}
.x7{left:89.724413pt;}
.xb{left:93.594088pt;}
.x8{left:99.228323pt;}
.x5{left:120.201129pt;}
.x9{left:137.724414pt;}
.xc{left:146.426121pt;}
.x1{left:326.621120pt;}
.xd{left:483.685045pt;}
}




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