
    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_358f0703a8bdec1cd4117512.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_21790bf4e332f49d2bba3dfa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_74cd98d301db75371650f95d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_b48345ede5e8e8b01328d0e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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);}
.v1{vertical-align:-16.980000px;}
.v2{vertical-align:-12.528000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.190200px;}
.ls6{letter-spacing:-0.094800px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.237600px;}
.ls3{letter-spacing:131.556000px;}
.ls0{letter-spacing:169.728000px;}
.ls1{letter-spacing:169.740000px;}
.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:-47.077632px;}
.ws2{word-spacing:-47.037600px;}
.ws4{word-spacing:-30.024000px;}
.ws0{word-spacing:-18.624840px;}
.ws6{word-spacing:0.000000px;}
.ws5{word-spacing:699.048000px;}
.ws1{word-spacing:3551.979360px;}
._8{margin-left:-18.442800px;}
._1{margin-left:-9.956400px;}
._9{margin-left:-8.162400px;}
._7{margin-left:-6.598800px;}
._a{margin-left:-5.201280px;}
._4{margin-left:-2.972640px;}
._2{margin-left:-1.488960px;}
._3{width:1.204800px;}
._5{width:2.401440px;}
._6{width:3.552000px;}
._b{width:4.717200px;}
._0{width:72.864480px;}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(20,12,92);}
.fs1{font-size:67.680000px;}
.fs8{font-size:108.000000px;}
.fs2{font-size:135.360000px;}
.fs5{font-size:169.200000px;}
.fs6{font-size:169.344000px;}
.fs7{font-size:190.800000px;}
.fs4{font-size:228.960000px;}
.fs0{font-size:267.120000px;}
.fs3{font-size:296.640000px;}
.y0{bottom:0.000000px;}
.y31{bottom:60.372000px;}
.y32{bottom:64.800000px;}
.y5{bottom:155.700000px;}
.y4{bottom:186.300000px;}
.y3{bottom:216.720000px;}
.y2{bottom:247.320000px;}
.y30{bottom:499.710000px;}
.y2c{bottom:518.910000px;}
.y2f{bottom:667.440000px;}
.y2d{bottom:773.970000px;}
.y2a{bottom:872.355000px;}
.y29{bottom:923.115000px;}
.y28{bottom:974.055000px;}
.y2b{bottom:988.740000px;}
.y27{bottom:1024.815000px;}
.y2e{bottom:1136.010000px;}
.y26{bottom:1381.890000px;}
.y25{bottom:2014.275000px;}
.y24{bottom:2065.035000px;}
.y23{bottom:2115.975000px;}
.y15{bottom:2116.905000px;}
.y22{bottom:2166.765000px;}
.y14{bottom:2167.665000px;}
.y21{bottom:2217.705000px;}
.y13{bottom:2218.605000px;}
.y20{bottom:2271.885000px;}
.y12{bottom:2272.785000px;}
.y1f{bottom:2405.805000px;}
.y11{bottom:2406.750000px;}
.y1e{bottom:2456.565000px;}
.y10{bottom:2457.510000px;}
.y1d{bottom:2507.505000px;}
.yf{bottom:2508.450000px;}
.y1c{bottom:2558.265000px;}
.ye{bottom:2559.210000px;}
.y1b{bottom:2609.205000px;}
.yd{bottom:2610.150000px;}
.y1a{bottom:2659.965000px;}
.yc{bottom:2660.910000px;}
.y19{bottom:2710.905000px;}
.yb{bottom:2711.850000px;}
.y18{bottom:2761.665000px;}
.ya{bottom:2762.610000px;}
.y17{bottom:2816.025000px;}
.y9{bottom:2816.970000px;}
.y16{bottom:2968.530000px;}
.y8{bottom:2969.430000px;}
.y7{bottom:3156.585000px;}
.y6{bottom:3404.730000px;}
.y1{bottom:3475.695000px;}
.h3{height:60.707109px;}
.hb{height:96.873047px;}
.h4{height:121.414219px;}
.h8{height:151.767773px;}
.h9{height:151.896938px;}
.ha{height:166.856836px;}
.h7{height:200.228203px;}
.h6{height:205.370859px;}
.h2{height:233.599570px;}
.h5{height:259.415156px;}
.h0{height:3575.880000px;}
.h1{height:3576.000000px;}
.w1{width:2525.250000px;}
.w2{width:2525.579962px;}
.w0{width:2525.580000px;}
.x0{left:0.000000px;}
.xa{left:23.975962px;}
.x9{left:103.787962px;}
.x5{left:107.207962px;}
.xb{left:122.975962px;}
.x2{left:141.443962px;}
.x6{left:164.444962px;}
.xd{left:201.524962px;}
.x4{left:323.819962px;}
.x1{left:523.229962px;}
.xc{left:934.559962px;}
.x3{left:1049.009962px;}
.x10{left:1163.489962px;}
.x13{left:1564.454962px;}
.x7{left:1647.974962px;}
.xe{left:1694.909962px;}
.x8{left:1705.214962px;}
.xf{left:1810.004962px;}
.x11{left:1855.229962px;}
.x12{left:2202.509962px;}
@media print{
.v1{vertical-align:-15.093333pt;}
.v2{vertical-align:-11.136000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.169067pt;}
.ls6{letter-spacing:-0.084267pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.211200pt;}
.ls3{letter-spacing:116.938667pt;}
.ls0{letter-spacing:150.869333pt;}
.ls1{letter-spacing:150.880000pt;}
.ws3{word-spacing:-41.846784pt;}
.ws2{word-spacing:-41.811200pt;}
.ws4{word-spacing:-26.688000pt;}
.ws0{word-spacing:-16.555413pt;}
.ws6{word-spacing:0.000000pt;}
.ws5{word-spacing:621.376000pt;}
.ws1{word-spacing:3157.314987pt;}
._8{margin-left:-16.393600pt;}
._1{margin-left:-8.850133pt;}
._9{margin-left:-7.255467pt;}
._7{margin-left:-5.865600pt;}
._a{margin-left:-4.623360pt;}
._4{margin-left:-2.642347pt;}
._2{margin-left:-1.323520pt;}
._3{width:1.070933pt;}
._5{width:2.134613pt;}
._6{width:3.157333pt;}
._b{width:4.193067pt;}
._0{width:64.768427pt;}
.fs1{font-size:60.160000pt;}
.fs8{font-size:96.000000pt;}
.fs2{font-size:120.320000pt;}
.fs5{font-size:150.400000pt;}
.fs6{font-size:150.528000pt;}
.fs7{font-size:169.600000pt;}
.fs4{font-size:203.520000pt;}
.fs0{font-size:237.440000pt;}
.fs3{font-size:263.680000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:53.664000pt;}
.y32{bottom:57.600000pt;}
.y5{bottom:138.400000pt;}
.y4{bottom:165.600000pt;}
.y3{bottom:192.640000pt;}
.y2{bottom:219.840000pt;}
.y30{bottom:444.186667pt;}
.y2c{bottom:461.253333pt;}
.y2f{bottom:593.280000pt;}
.y2d{bottom:687.973333pt;}
.y2a{bottom:775.426667pt;}
.y29{bottom:820.546667pt;}
.y28{bottom:865.826667pt;}
.y2b{bottom:878.880000pt;}
.y27{bottom:910.946667pt;}
.y2e{bottom:1009.786667pt;}
.y26{bottom:1228.346667pt;}
.y25{bottom:1790.466667pt;}
.y24{bottom:1835.586667pt;}
.y23{bottom:1880.866667pt;}
.y15{bottom:1881.693333pt;}
.y22{bottom:1926.013333pt;}
.y14{bottom:1926.813333pt;}
.y21{bottom:1971.293333pt;}
.y13{bottom:1972.093333pt;}
.y20{bottom:2019.453333pt;}
.y12{bottom:2020.253333pt;}
.y1f{bottom:2138.493333pt;}
.y11{bottom:2139.333333pt;}
.y1e{bottom:2183.613333pt;}
.y10{bottom:2184.453333pt;}
.y1d{bottom:2228.893333pt;}
.yf{bottom:2229.733333pt;}
.y1c{bottom:2274.013333pt;}
.ye{bottom:2274.853333pt;}
.y1b{bottom:2319.293333pt;}
.yd{bottom:2320.133333pt;}
.y1a{bottom:2364.413333pt;}
.yc{bottom:2365.253333pt;}
.y19{bottom:2409.693333pt;}
.yb{bottom:2410.533333pt;}
.y18{bottom:2454.813333pt;}
.ya{bottom:2455.653333pt;}
.y17{bottom:2503.133333pt;}
.y9{bottom:2503.973333pt;}
.y16{bottom:2638.693333pt;}
.y8{bottom:2639.493333pt;}
.y7{bottom:2805.853333pt;}
.y6{bottom:3026.426667pt;}
.y1{bottom:3089.506667pt;}
.h3{height:53.961875pt;}
.hb{height:86.109375pt;}
.h4{height:107.923750pt;}
.h8{height:134.904687pt;}
.h9{height:135.019500pt;}
.ha{height:148.317188pt;}
.h7{height:177.980625pt;}
.h6{height:182.551875pt;}
.h2{height:207.644062pt;}
.h5{height:230.591250pt;}
.h0{height:3178.560000pt;}
.h1{height:3178.666667pt;}
.w1{width:2244.666667pt;}
.w2{width:2244.959967pt;}
.w0{width:2244.960000pt;}
.x0{left:0.000000pt;}
.xa{left:21.311967pt;}
.x9{left:92.255967pt;}
.x5{left:95.295967pt;}
.xb{left:109.311967pt;}
.x2{left:125.727967pt;}
.x6{left:146.173300pt;}
.xd{left:179.133300pt;}
.x4{left:287.839967pt;}
.x1{left:465.093300pt;}
.xc{left:830.719967pt;}
.x3{left:932.453300pt;}
.x10{left:1034.213300pt;}
.x13{left:1390.626633pt;}
.x7{left:1464.866633pt;}
.xe{left:1506.586633pt;}
.x8{left:1515.746633pt;}
.xf{left:1608.893300pt;}
.x11{left:1649.093300pt;}
.x12{left:1957.786633pt;}
}




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