
    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_d2b9c73fc6420f0cd3453018.woff')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_a3b4e077ca5e0b8a9f5c8fc5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.935000;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_c1d05a9f891ab1885840bad6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.929286;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_e2790c93f46cbeb895a71d27.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m3{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:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.800000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.510000px;}
.ls2{letter-spacing:0.570000px;}
.ls9{letter-spacing:0.660000px;}
.ls7{letter-spacing:0.864000px;}
.ls4{letter-spacing:0.867000px;}
.ls6{letter-spacing:0.972000px;}
.ls8{letter-spacing:1.116000px;}
.lsa{letter-spacing:1.197000px;}
.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:-16.416000px;}
.ws0{word-spacing:-15.045000px;}
.ws2{word-spacing:-11.124000px;}
.ws1{word-spacing:-10.980000px;}
.ws6{word-spacing:-4.818000px;}
.ws11{word-spacing:-3.135000px;}
.wsa{word-spacing:-1.881000px;}
.wsf{word-spacing:-1.767000px;}
.wsc{word-spacing:-1.596000px;}
.wse{word-spacing:-1.320000px;}
.wsb{word-spacing:-1.197000px;}
.ws9{word-spacing:-0.756000px;}
.ws8{word-spacing:-0.504000px;}
.wsd{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:0.330000px;}
.ws7{word-spacing:0.360000px;}
.ws12{word-spacing:2.793000px;}
.ws13{word-spacing:5.472000px;}
.ws10{word-spacing:5.928000px;}
._6{margin-left:-19.608600px;}
._3{margin-left:-18.513000px;}
._7{margin-left:-16.712100px;}
._a{margin-left:-14.803500px;}
._5{margin-left:-10.501800px;}
._9{margin-left:-9.131100px;}
._f{margin-left:-5.486700px;}
._4{margin-left:-3.671700px;}
._2{margin-left:-2.338500px;}
._1{margin-left:-1.326600px;}
._0{width:1.698300px;}
._c{width:2.936400px;}
._d{width:10.292700px;}
._b{width:12.795900px;}
._8{width:30.460800px;}
._e{width:57.525600px;}
.fc2{color:transparent;}
.fc1{color:rgb(60,153,192);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:36.000000px;}
.fs0{font-size:51.000000px;}
.fs4{font-size:57.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:32.098800px;}
.y9{bottom:44.095800px;}
.y20{bottom:165.584700px;}
.y1f{bottom:165.596700px;}
.y1e{bottom:185.090700px;}
.y1d{bottom:204.584700px;}
.y1c{bottom:242.608950px;}
.y12{bottom:305.090700px;}
.y11{bottom:321.592200px;}
.y10{bottom:350.847450px;}
.yf{bottom:370.341450px;}
.ye{bottom:389.835450px;}
.yd{bottom:409.329450px;}
.yc{bottom:438.584700px;}
.yb{bottom:476.607750px;}
.y29{bottom:526.331700px;}
.y1b{bottom:536.108700px;}
.y28{bottom:545.834700px;}
.y1a{bottom:555.602700px;}
.y27{bottom:575.084700px;}
.y19{bottom:575.096700px;}
.y26{bottom:594.565200px;}
.y18{bottom:594.590700px;}
.y17{bottom:614.084700px;}
.y25{bottom:623.819700px;}
.y24{bottom:643.322700px;}
.y15{bottom:646.333200px;}
.y16{bottom:646.334700px;}
.y14{bottom:662.834700px;}
.y23{bottom:672.577200px;}
.y22{bottom:692.080200px;}
.y13{bottom:700.857750px;}
.y21{bottom:721.334700px;}
.y30{bottom:785.077200px;}
.y2f{bottom:801.578700px;}
.y6{bottom:809.084700px;}
.y2e{bottom:818.080200px;}
.y5{bottom:828.584700px;}
.y2d{bottom:834.581700px;}
.y4{bottom:848.084700px;}
.y2c{bottom:851.083200px;}
.y2b{bottom:867.584700px;}
.y3{bottom:896.834550px;}
.y2a{bottom:905.608500px;}
.y8{bottom:1034.932200px;}
.y2{bottom:1035.038550px;}
.y7{bottom:1050.678450px;}
.y1{bottom:1050.784800px;}
.h5{height:26.532000px;}
.h2{height:37.077000px;}
.h7{height:42.009000px;}
.h6{height:48.510000px;}
.h4{height:48.642000px;}
.h3{height:137.664000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x5{left:121.406100px;}
.x8{left:125.007900px;}
.x9{left:144.141750px;}
.x3{left:231.648900px;}
.x2{left:235.984200px;}
.x4{left:351.150900px;}
.x6{left:388.278150px;}
.x7{left:421.881750px;}
@media print{
.v1{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.600000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.453333pt;}
.ls2{letter-spacing:0.506667pt;}
.ls9{letter-spacing:0.586667pt;}
.ls7{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.770667pt;}
.ls6{letter-spacing:0.864000pt;}
.ls8{letter-spacing:0.992000pt;}
.lsa{letter-spacing:1.064000pt;}
.ws3{word-spacing:-14.592000pt;}
.ws0{word-spacing:-13.373333pt;}
.ws2{word-spacing:-9.888000pt;}
.ws1{word-spacing:-9.760000pt;}
.ws6{word-spacing:-4.282667pt;}
.ws11{word-spacing:-2.786667pt;}
.wsa{word-spacing:-1.672000pt;}
.wsf{word-spacing:-1.570667pt;}
.wsc{word-spacing:-1.418667pt;}
.wse{word-spacing:-1.173333pt;}
.wsb{word-spacing:-1.064000pt;}
.ws9{word-spacing:-0.672000pt;}
.ws8{word-spacing:-0.448000pt;}
.wsd{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:0.293333pt;}
.ws7{word-spacing:0.320000pt;}
.ws12{word-spacing:2.482667pt;}
.ws13{word-spacing:4.864000pt;}
.ws10{word-spacing:5.269333pt;}
._6{margin-left:-17.429867pt;}
._3{margin-left:-16.456000pt;}
._7{margin-left:-14.855200pt;}
._a{margin-left:-13.158667pt;}
._5{margin-left:-9.334933pt;}
._9{margin-left:-8.116533pt;}
._f{margin-left:-4.877067pt;}
._4{margin-left:-3.263733pt;}
._2{margin-left:-2.078667pt;}
._1{margin-left:-1.179200pt;}
._0{width:1.509600pt;}
._c{width:2.610133pt;}
._d{width:9.149067pt;}
._b{width:11.374133pt;}
._8{width:27.076267pt;}
._e{width:51.133867pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:45.333333pt;}
.fs4{font-size:50.666667pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:28.532267pt;}
.y9{bottom:39.196267pt;}
.y20{bottom:147.186400pt;}
.y1f{bottom:147.197067pt;}
.y1e{bottom:164.525067pt;}
.y1d{bottom:181.853067pt;}
.y1c{bottom:215.652400pt;}
.y12{bottom:271.191733pt;}
.y11{bottom:285.859733pt;}
.y10{bottom:311.864400pt;}
.yf{bottom:329.192400pt;}
.ye{bottom:346.520400pt;}
.yd{bottom:363.848400pt;}
.yc{bottom:389.853067pt;}
.yb{bottom:423.651333pt;}
.y29{bottom:467.850400pt;}
.y1b{bottom:476.541067pt;}
.y28{bottom:485.186400pt;}
.y1a{bottom:493.869067pt;}
.y27{bottom:511.186400pt;}
.y19{bottom:511.197067pt;}
.y26{bottom:528.502400pt;}
.y18{bottom:528.525067pt;}
.y17{bottom:545.853067pt;}
.y25{bottom:554.506400pt;}
.y24{bottom:571.842400pt;}
.y15{bottom:574.518400pt;}
.y16{bottom:574.519733pt;}
.y14{bottom:589.186400pt;}
.y23{bottom:597.846400pt;}
.y22{bottom:615.182400pt;}
.y13{bottom:622.984667pt;}
.y21{bottom:641.186400pt;}
.y30{bottom:697.846400pt;}
.y2f{bottom:712.514400pt;}
.y6{bottom:719.186400pt;}
.y2e{bottom:727.182400pt;}
.y5{bottom:736.519733pt;}
.y2d{bottom:741.850400pt;}
.y4{bottom:753.853067pt;}
.y2c{bottom:756.518400pt;}
.y2b{bottom:771.186400pt;}
.y3{bottom:797.186267pt;}
.y2a{bottom:804.985333pt;}
.y8{bottom:919.939733pt;}
.y2{bottom:920.034267pt;}
.y7{bottom:933.936400pt;}
.y1{bottom:934.030933pt;}
.h5{height:23.584000pt;}
.h2{height:32.957333pt;}
.h7{height:37.341333pt;}
.h6{height:43.120000pt;}
.h4{height:43.237333pt;}
.h3{height:122.368000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x5{left:107.916533pt;}
.x8{left:111.118133pt;}
.x9{left:128.126000pt;}
.x3{left:205.910133pt;}
.x2{left:209.763733pt;}
.x4{left:312.134133pt;}
.x6{left:345.136133pt;}
.x7{left:375.006000pt;}
}




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