
    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_188d01095d7c37c54a9b1509.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899000;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_c7b51aa071897eea5c4e191d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_2a6de8c81b7ed2f260b6c519.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854000;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_979ca873483dc8fbb4364270.woff')format("woff");}.ff4{font-family:ff4;line-height:0.732000;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);}
.v2{vertical-align:-21.696000px;}
.v3{vertical-align:-10.458000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.987700px;}
.ls2{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.993700px;}
.ls4{letter-spacing:29.884200px;}
.ls3{letter-spacing:29.890200px;}
.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;}
}
.wsc{word-spacing:-2.331248px;}
.ws2{word-spacing:-0.418429px;}
.ws5{word-spacing:-0.059776px;}
.wsb{word-spacing:-0.001901px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:4.124516px;}
.ws3{word-spacing:5.080926px;}
.wsd{word-spacing:11.907329px;}
.wse{word-spacing:13.395802px;}
.ws9{word-spacing:14.881184px;}
.ws8{word-spacing:14.882624px;}
.ws6{word-spacing:14.884124px;}
.wsa{word-spacing:14.884784px;}
.ws7{word-spacing:14.885984px;}
.ws0{word-spacing:25.719808px;}
._6{margin-left:-2571.407386px;}
._3{margin-left:-2220.870857px;}
._9{margin-left:-2076.232175px;}
._7{margin-left:-2069.894941px;}
._8{margin-left:-1996.266860px;}
._4{margin-left:-540.003575px;}
._1{margin-left:-6.552907px;}
._14{margin-left:-4.949453px;}
._2{margin-left:-3.885414px;}
._0{margin-left:-2.065848px;}
._5{width:3.859116px;}
._f{width:74.168714px;}
._d{width:121.987847px;}
._a{width:124.617980px;}
._13{width:145.754686px;}
._12{width:254.938585px;}
._c{width:288.749309px;}
._b{width:352.530867px;}
._10{width:426.939721px;}
._11{width:434.265835px;}
._e{width:501.252933px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:51.108000px;}
.fs6{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1a{bottom:55.669620px;}
.y19{bottom:100.501620px;}
.y18{bottom:136.975620px;}
.y38{bottom:143.101620px;}
.y37{bottom:160.423620px;}
.y17{bottom:175.558620px;}
.y36{bottom:180.298620px;}
.y35{bottom:200.173620px;}
.y16{bottom:215.608620px;}
.y34{bottom:220.050120px;}
.y33{bottom:239.925120px;}
.y32{bottom:259.800120px;}
.y15{bottom:270.339120px;}
.y31{bottom:279.675120px;}
.y30{bottom:299.551620px;}
.y14{bottom:306.813120px;}
.y2f{bottom:319.426620px;}
.y2e{bottom:339.301620px;}
.y13{bottom:343.287120px;}
.y2d{bottom:359.176620px;}
.y2c{bottom:379.053120px;}
.y12{bottom:379.761120px;}
.y2b{bottom:398.928120px;}
.y11{bottom:416.235120px;}
.y2a{bottom:418.803120px;}
.y29{bottom:438.678120px;}
.y10{bottom:452.124120px;}
.y28{bottom:459.151620px;}
.yf{bottom:477.229620px;}
.ye{bottom:517.278120px;}
.y27{bottom:518.277120px;}
.y26{bottom:549.361620px;}
.yd{bottom:572.008620px;}
.y25{bottom:586.422120px;}
.yc{bottom:608.482620px;}
.y24{bottom:623.482620px;}
.yb{bottom:647.065620px;}
.y23{bottom:663.532620px;}
.ya{bottom:672.171120px;}
.y9{bottom:697.278120px;}
.y22{bottom:703.582620px;}
.y8{bottom:751.716120px;}
.y21{bottom:758.575620px;}
.y7{bottom:769.648620px;}
.y6{bottom:787.582620px;}
.y20{bottom:795.637620px;}
.y5{bottom:805.515120px;}
.y4{bottom:824.002620px;}
.y1f{bottom:826.720620px;}
.y3{bottom:844.923120px;}
.y1e{bottom:857.803620px;}
.y2{bottom:879.322620px;}
.y1d{bottom:894.864120px;}
.y1{bottom:912.199620px;}
.y1c{bottom:931.926120px;}
.y1b{bottom:963.009120px;}
.h5{height:28.787846px;}
.h9{height:32.900573px;}
.h8{height:33.187496px;}
.ha{height:37.336090px;}
.h6{height:41.125613px;}
.h7{height:41.484266px;}
.h4{height:58.928573px;}
.h3{height:58.934573px;}
.h2{height:71.684926px;}
.h0{height:1020.472440px;}
.h1{height:1020.750000px;}
.w0{width:892.913385px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:69.732120px;}
.x6{left:79.296120px;}
.x2{left:84.676620px;}
.x3{left:92.148120px;}
.x4{left:125.025120px;}
.x5{left:442.294620px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v3{vertical-align:-9.296000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.655733pt;}
.ls2{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.661067pt;}
.ls4{letter-spacing:26.563733pt;}
.ls3{letter-spacing:26.569067pt;}
.wsc{word-spacing:-2.072221pt;}
.ws2{word-spacing:-0.371937pt;}
.ws5{word-spacing:-0.053134pt;}
.wsb{word-spacing:-0.001690pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:3.666237pt;}
.ws3{word-spacing:4.516379pt;}
.wsd{word-spacing:10.584293pt;}
.wse{word-spacing:11.907379pt;}
.ws9{word-spacing:13.227719pt;}
.ws8{word-spacing:13.228999pt;}
.ws6{word-spacing:13.230333pt;}
.wsa{word-spacing:13.230919pt;}
.ws7{word-spacing:13.231986pt;}
.ws0{word-spacing:22.862051pt;}
._6{margin-left:-2285.695454pt;}
._3{margin-left:-1974.107428pt;}
._9{margin-left:-1845.539711pt;}
._7{margin-left:-1839.906614pt;}
._8{margin-left:-1774.459431pt;}
._4{margin-left:-480.003178pt;}
._1{margin-left:-5.824806pt;}
._14{margin-left:-4.399514pt;}
._2{margin-left:-3.453701pt;}
._0{margin-left:-1.836309pt;}
._5{width:3.430325pt;}
._f{width:65.927746pt;}
._d{width:108.433642pt;}
._a{width:110.771538pt;}
._13{width:129.559721pt;}
._12{width:226.612075pt;}
._c{width:256.666052pt;}
._b{width:313.360771pt;}
._10{width:379.501974pt;}
._11{width:386.014075pt;}
._e{width:445.558163pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:45.429333pt;}
.fs6{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:49.484107pt;}
.y19{bottom:89.334773pt;}
.y18{bottom:121.756107pt;}
.y38{bottom:127.201440pt;}
.y37{bottom:142.598773pt;}
.y17{bottom:156.052107pt;}
.y36{bottom:160.265440pt;}
.y35{bottom:177.932107pt;}
.y16{bottom:191.652107pt;}
.y34{bottom:195.600107pt;}
.y33{bottom:213.266773pt;}
.y32{bottom:230.933440pt;}
.y15{bottom:240.301440pt;}
.y31{bottom:248.600107pt;}
.y30{bottom:266.268107pt;}
.y14{bottom:272.722773pt;}
.y2f{bottom:283.934773pt;}
.y2e{bottom:301.601440pt;}
.y13{bottom:305.144107pt;}
.y2d{bottom:319.268107pt;}
.y2c{bottom:336.936107pt;}
.y12{bottom:337.565440pt;}
.y2b{bottom:354.602773pt;}
.y11{bottom:369.986773pt;}
.y2a{bottom:372.269440pt;}
.y29{bottom:389.936107pt;}
.y10{bottom:401.888107pt;}
.y28{bottom:408.134773pt;}
.yf{bottom:424.204107pt;}
.ye{bottom:459.802773pt;}
.y27{bottom:460.690773pt;}
.y26{bottom:488.321440pt;}
.yd{bottom:508.452107pt;}
.y25{bottom:521.264107pt;}
.yc{bottom:540.873440pt;}
.y24{bottom:554.206773pt;}
.yb{bottom:575.169440pt;}
.y23{bottom:589.806773pt;}
.ya{bottom:597.485440pt;}
.y9{bottom:619.802773pt;}
.y22{bottom:625.406773pt;}
.y8{bottom:668.192107pt;}
.y21{bottom:674.289440pt;}
.y7{bottom:684.132107pt;}
.y6{bottom:700.073440pt;}
.y20{bottom:707.233440pt;}
.y5{bottom:716.013440pt;}
.y4{bottom:732.446773pt;}
.y1f{bottom:734.862773pt;}
.y3{bottom:751.042773pt;}
.y1e{bottom:762.492107pt;}
.y2{bottom:781.620107pt;}
.y1d{bottom:795.434773pt;}
.y1{bottom:810.844107pt;}
.y1c{bottom:828.378773pt;}
.y1b{bottom:856.008107pt;}
.h5{height:25.589197pt;}
.h9{height:29.244954pt;}
.h8{height:29.499997pt;}
.ha{height:33.187635pt;}
.h6{height:36.556100pt;}
.h7{height:36.874903pt;}
.h4{height:52.380954pt;}
.h3{height:52.386287pt;}
.h2{height:63.719934pt;}
.h0{height:907.086613pt;}
.h1{height:907.333333pt;}
.w0{width:793.700787pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:61.984107pt;}
.x6{left:70.485440pt;}
.x2{left:75.268107pt;}
.x3{left:81.909440pt;}
.x4{left:111.133440pt;}
.x5{left:393.150773pt;}
}




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