
    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_e7a46401f881f5be0aadfca8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_207b3965ce0c3a472a03a67c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_d77b17cdf4ad7bfabad5fcf9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_9012055343cfa9c9dec7cef4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_e8d2127513450597d14af16e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_1b611199a1c39db58e08e250.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_00ed3d2b441a029495a17c7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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:ff8;src:url('chunks/assets/font_ff1adc4f6c843f333bab2cc8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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:ff9;src:url('chunks/assets/font_13767853262ea08f769dd8c2.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-96.000000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.372000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.576000px;}
.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.000000px;}
.ws3{word-spacing:-20.628000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-19.752000px;}
._7{margin-left:-4.908000px;}
._6{margin-left:-3.576000px;}
._0{margin-left:-1.632000px;}
._2{width:1.296000px;}
._1{width:2.592000px;}
._4{width:4.416000px;}
._5{width:5.580000px;}
._1a{width:6.792000px;}
._11{width:7.980000px;}
._f{width:9.828000px;}
._10{width:11.406000px;}
._14{width:12.432000px;}
._1b{width:14.652000px;}
._1c{width:15.738000px;}
._e{width:16.800000px;}
._d{width:17.928000px;}
._13{width:19.308000px;}
._15{width:22.596000px;}
._b{width:23.604000px;}
._a{width:25.320000px;}
._c{width:26.328000px;}
._9{width:27.948000px;}
._8{width:28.980000px;}
._1d{width:29.988000px;}
._1e{width:31.080000px;}
._21{width:33.300000px;}
._20{width:34.380000px;}
._19{width:35.616000px;}
._18{width:36.864000px;}
._16{width:38.220000px;}
._17{width:39.228000px;}
._1f{width:40.440000px;}
._3{width:2449.170000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(140,140,140);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:3.600000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:19.837500px;}
.y5{bottom:68.137500px;}
.y4{bottom:91.537500px;}
.y27{bottom:135.637500px;}
.y22{bottom:171.675000px;}
.y21{bottom:207.975000px;}
.y20{bottom:244.275000px;}
.y2a{bottom:279.675000px;}
.y1f{bottom:280.275000px;}
.y29{bottom:315.975000px;}
.y1e{bottom:316.575000px;}
.y28{bottom:352.320000px;}
.y1d{bottom:352.905000px;}
.y1c{bottom:389.220000px;}
.y1b{bottom:425.205000px;}
.y1a{bottom:461.505000px;}
.y19{bottom:497.820000px;}
.y18{bottom:534.150000px;}
.y17{bottom:570.150000px;}
.y16{bottom:606.450000px;}
.y15{bottom:642.750000px;}
.y14{bottom:679.080000px;}
.y13{bottom:715.080000px;}
.y12{bottom:751.380000px;}
.y11{bottom:787.695000px;}
.y10{bottom:823.980000px;}
.yf{bottom:860.025000px;}
.ye{bottom:896.325000px;}
.yd{bottom:932.625000px;}
.yc{bottom:968.925000px;}
.yb{bottom:1004.925000px;}
.ya{bottom:1040.670000px;}
.y26{bottom:1041.255000px;}
.y9{bottom:1076.955000px;}
.y25{bottom:1077.570000px;}
.y8{bottom:1113.255000px;}
.y24{bottom:1113.870000px;}
.y7{bottom:1149.255000px;}
.y23{bottom:1149.855000px;}
.y3{bottom:1183.500000px;}
.y2{bottom:1206.600000px;}
.y1{bottom:1227.900000px;}
.h2{height:82.441406px;}
.h3{height:83.794922px;}
.h4{height:84.656250px;}
.h5{height:86.338763px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.537500px;}
.x1{left:157.830000px;}
.xb{left:170.130000px;}
.x5{left:188.775000px;}
.x2{left:296.505000px;}
.x9{left:304.320000px;}
.xa{left:310.620000px;}
.x4{left:356.205000px;}
.x8{left:420.150000px;}
.x6{left:435.150000px;}
.xc{left:447.150000px;}
.x7{left:499.650000px;}
@media print{
.v1{vertical-align:-85.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.330667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.512000pt;}
.ws1{word-spacing:-18.666667pt;}
.ws3{word-spacing:-18.336000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-17.557333pt;}
._7{margin-left:-4.362667pt;}
._6{margin-left:-3.178667pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.152000pt;}
._1{width:2.304000pt;}
._4{width:3.925333pt;}
._5{width:4.960000pt;}
._1a{width:6.037333pt;}
._11{width:7.093333pt;}
._f{width:8.736000pt;}
._10{width:10.138667pt;}
._14{width:11.050667pt;}
._1b{width:13.024000pt;}
._1c{width:13.989333pt;}
._e{width:14.933333pt;}
._d{width:15.936000pt;}
._13{width:17.162667pt;}
._15{width:20.085333pt;}
._b{width:20.981333pt;}
._a{width:22.506667pt;}
._c{width:23.402667pt;}
._9{width:24.842667pt;}
._8{width:25.760000pt;}
._1d{width:26.656000pt;}
._1e{width:27.626667pt;}
._21{width:29.600000pt;}
._20{width:30.560000pt;}
._19{width:31.658667pt;}
._18{width:32.768000pt;}
._16{width:33.973333pt;}
._17{width:34.869333pt;}
._1f{width:35.946667pt;}
._3{width:2177.040000pt;}
.fs1{font-size:3.200000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:17.633333pt;}
.y5{bottom:60.566667pt;}
.y4{bottom:81.366667pt;}
.y27{bottom:120.566667pt;}
.y22{bottom:152.600000pt;}
.y21{bottom:184.866667pt;}
.y20{bottom:217.133333pt;}
.y2a{bottom:248.600000pt;}
.y1f{bottom:249.133333pt;}
.y29{bottom:280.866667pt;}
.y1e{bottom:281.400000pt;}
.y28{bottom:313.173333pt;}
.y1d{bottom:313.693333pt;}
.y1c{bottom:345.973333pt;}
.y1b{bottom:377.960000pt;}
.y1a{bottom:410.226667pt;}
.y19{bottom:442.506667pt;}
.y18{bottom:474.800000pt;}
.y17{bottom:506.800000pt;}
.y16{bottom:539.066667pt;}
.y15{bottom:571.333333pt;}
.y14{bottom:603.626667pt;}
.y13{bottom:635.626667pt;}
.y12{bottom:667.893333pt;}
.y11{bottom:700.173333pt;}
.y10{bottom:732.426667pt;}
.yf{bottom:764.466667pt;}
.ye{bottom:796.733333pt;}
.yd{bottom:829.000000pt;}
.yc{bottom:861.266667pt;}
.yb{bottom:893.266667pt;}
.ya{bottom:925.040000pt;}
.y26{bottom:925.560000pt;}
.y9{bottom:957.293333pt;}
.y25{bottom:957.840000pt;}
.y8{bottom:989.560000pt;}
.y24{bottom:990.106667pt;}
.y7{bottom:1021.560000pt;}
.y23{bottom:1022.093333pt;}
.y3{bottom:1052.000000pt;}
.y2{bottom:1072.533333pt;}
.y1{bottom:1091.466667pt;}
.h2{height:73.281250pt;}
.h3{height:74.484375pt;}
.h4{height:75.250000pt;}
.h5{height:76.745567pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.366667pt;}
.x1{left:140.293333pt;}
.xb{left:151.226667pt;}
.x5{left:167.800000pt;}
.x2{left:263.560000pt;}
.x9{left:270.506667pt;}
.xa{left:276.106667pt;}
.x4{left:316.626667pt;}
.x8{left:373.466667pt;}
.x6{left:386.800000pt;}
.xc{left:397.466667pt;}
.x7{left:444.133333pt;}
}




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