
    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_59b437b5f4941f7de214f9f1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_6e1ea854d83e63fc61b875f9.woff')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_717b642ee0880e6ca0305059.woff')format("woff");}.ff3{font-family:ff3;line-height:0.746094;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_e85a4659de60e500e9ddfb40.woff')format("woff");}.ff4{font-family:ff4;line-height:0.867676;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);}
.v3{vertical-align:-40.500001px;}
.v4{vertical-align:-38.250001px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.812501px;}
.v2{vertical-align:24.750001px;}
.v5{vertical-align:38.250001px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.005475px;}
.ls0{letter-spacing:0.028650px;}
.ls6{letter-spacing:0.437685px;}
.ls5{letter-spacing:0.437730px;}
.ls2{letter-spacing:0.749999px;}
.ls7{letter-spacing:1.499999px;}
.ls1{letter-spacing:109.500002px;}
.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;}
}
.ws6{word-spacing:-23.052000px;}
.ws7{word-spacing:-18.282001px;}
.ws3{word-spacing:-16.272001px;}
.ws5{word-spacing:-15.368001px;}
.ws1{word-spacing:-12.188001px;}
.ws0{word-spacing:-10.249001px;}
.ws2{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-15.384225px;}
._3{margin-left:-8.133495px;}
._1{margin-left:-4.577001px;}
._0{margin-left:-3.028031px;}
._4{margin-left:-1.188000px;}
._5{width:1.441359px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:34.500000px;}
.fs2{font-size:37.000002px;}
.fs3{font-size:42.000000px;}
.fs8{font-size:44.000005px;}
.fs9{font-size:48.000003px;}
.fs5{font-size:51.000000px;}
.fsa{font-size:54.000002px;}
.fs4{font-size:57.000003px;}
.fs1{font-size:58.500002px;}
.fs7{font-size:66.000004px;}
.fsf{font-size:68.000004px;}
.fsc{font-size:72.000002px;}
.fsb{font-size:72.000006px;}
.fs10{font-size:78.000005px;}
.fsd{font-size:90.000003px;}
.fse{font-size:102.000000px;}
.fs0{font-size:118.800004px;}
.y11{bottom:-1796.829070px;}
.y23{bottom:-1554.289854px;}
.y22{bottom:-1523.914846px;}
.y21{bottom:-1493.539845px;}
.y20{bottom:-1463.164845px;}
.y1f{bottom:-1373.166198px;}
.y1e{bottom:-1342.791191px;}
.y1d{bottom:-1312.416190px;}
.y1c{bottom:-1282.041189px;}
.y1b{bottom:-1194.766393px;}
.y1a{bottom:-1164.391385px;}
.y19{bottom:-1134.016384px;}
.y18{bottom:-1094.078883px;}
.y17{bottom:-1046.741363px;}
.y16{bottom:-1016.366362px;}
.y15{bottom:-985.991354px;}
.y14{bottom:-955.616353px;}
.y13{bottom:-925.241352px;}
.y12{bottom:-885.303851px;}
.y0{bottom:0.000000px;}
.y32{bottom:54.504432px;}
.y31{bottom:122.880847px;}
.y30{bottom:145.650836px;}
.y2f{bottom:168.420814px;}
.y2e{bottom:191.190815px;}
.y9{bottom:228.429089px;}
.yb{bottom:247.677626px;}
.y2d{bottom:252.030817px;}
.y8{bottom:253.629079px;}
.y7{bottom:273.429079px;}
.y2c{bottom:274.800818px;}
.ya{bottom:277.557627px;}
.y6{bottom:293.229080px;}
.y2b{bottom:297.570818px;}
.y5{bottom:313.029081px;}
.yc{bottom:313.357794px;}
.y2a{bottom:320.340819px;}
.y29{bottom:343.110831px;}
.ye{bottom:365.114118px;}
.yd{bottom:386.354120px;}
.y28{bottom:403.950833px;}
.y4{bottom:425.805823px;}
.y27{bottom:426.720827px;}
.y26{bottom:449.490823px;}
.y3{bottom:455.595824px;}
.y25{bottom:472.260824px;}
.y2{bottom:483.380945px;}
.y24{bottom:514.290825px;}
.y1{bottom:519.020947px;}
.y10{bottom:561.734999px;}
.yf{bottom:581.534999px;}
.h3{height:25.133789px;}
.hb{height:47.281252px;}
.h2{height:47.767580px;}
.h9{height:48.049807px;}
.h5{height:48.082034px;}
.h6{height:48.210940px;}
.h7{height:50.062502px;}
.hf{height:52.417970px;}
.he{height:56.786137px;}
.h4{height:56.804692px;}
.h8{height:62.578127px;}
.ha{height:70.921875px;}
.hd{height:85.531252px;}
.hc{height:85.531254px;}
.h1{height:86.489651px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5{left:22.650591px;}
.x6{left:27.150591px;}
.x9{left:40.544555px;}
.x15{left:44.799214px;}
.x16{left:54.924214px;}
.x1{left:67.367702px;}
.xa{left:106.949085px;}
.x17{left:108.924216px;}
.x18{left:152.799217px;}
.xb{left:159.807358px;}
.x19{left:182.477368px;}
.x12{left:270.471639px;}
.x13{left:271.501358px;}
.x14{left:273.430021px;}
.x10{left:275.660044px;}
.xe{left:277.474110px;}
.xf{left:279.343897px;}
.x11{left:282.119231px;}
.x2{left:313.965764px;}
.x7{left:342.701280px;}
.x3{left:362.760480px;}
.xc{left:484.090435px;}
.x4{left:537.604881px;}
.x8{left:682.307824px;}
.xd{left:2236.408490px;}
@media print{
.v3{vertical-align:-36.000001pt;}
.v4{vertical-align:-34.000001pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.500001pt;}
.v2{vertical-align:22.000001pt;}
.v5{vertical-align:34.000001pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004867pt;}
.ls0{letter-spacing:0.025467pt;}
.ls6{letter-spacing:0.389053pt;}
.ls5{letter-spacing:0.389093pt;}
.ls2{letter-spacing:0.666666pt;}
.ls7{letter-spacing:1.333332pt;}
.ls1{letter-spacing:97.333335pt;}
.ws6{word-spacing:-20.490667pt;}
.ws7{word-spacing:-16.250668pt;}
.ws3{word-spacing:-14.464000pt;}
.ws5{word-spacing:-13.660445pt;}
.ws1{word-spacing:-10.833779pt;}
.ws0{word-spacing:-9.110223pt;}
.ws2{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-13.674866pt;}
._3{margin-left:-7.229774pt;}
._1{margin-left:-4.068445pt;}
._0{margin-left:-2.691583pt;}
._4{margin-left:-1.056000pt;}
._5{width:1.281208pt;}
.fs6{font-size:30.666667pt;}
.fs2{font-size:32.888891pt;}
.fs3{font-size:37.333333pt;}
.fs8{font-size:39.111115pt;}
.fs9{font-size:42.666669pt;}
.fs5{font-size:45.333333pt;}
.fsa{font-size:48.000002pt;}
.fs4{font-size:50.666670pt;}
.fs1{font-size:52.000002pt;}
.fs7{font-size:58.666670pt;}
.fsf{font-size:60.444448pt;}
.fsc{font-size:64.000002pt;}
.fsb{font-size:64.000005pt;}
.fs10{font-size:69.333338pt;}
.fsd{font-size:80.000003pt;}
.fse{font-size:90.666667pt;}
.fs0{font-size:105.600003pt;}
.y11{bottom:-1597.181395pt;}
.y23{bottom:-1381.590981pt;}
.y22{bottom:-1354.590975pt;}
.y21{bottom:-1327.590974pt;}
.y20{bottom:-1300.590973pt;}
.y1f{bottom:-1220.592176pt;}
.y1e{bottom:-1193.592169pt;}
.y1d{bottom:-1166.592169pt;}
.y1c{bottom:-1139.592168pt;}
.y1b{bottom:-1062.014571pt;}
.y1a{bottom:-1035.014564pt;}
.y19{bottom:-1008.014564pt;}
.y18{bottom:-972.514562pt;}
.y17{bottom:-930.436767pt;}
.y16{bottom:-903.436766pt;}
.y15{bottom:-876.436759pt;}
.y14{bottom:-849.436758pt;}
.y13{bottom:-822.436758pt;}
.y12{bottom:-786.936756pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:48.448384pt;}
.y31{bottom:109.227419pt;}
.y30{bottom:129.467410pt;}
.y2f{bottom:149.707391pt;}
.y2e{bottom:169.947391pt;}
.y9{bottom:203.048079pt;}
.yb{bottom:220.157890pt;}
.y2d{bottom:224.027393pt;}
.y8{bottom:225.448070pt;}
.y7{bottom:243.048070pt;}
.y2c{bottom:244.267394pt;}
.ya{bottom:246.717891pt;}
.y6{bottom:260.648071pt;}
.y2b{bottom:264.507394pt;}
.y5{bottom:278.248072pt;}
.yc{bottom:278.540262pt;}
.y2a{bottom:284.747395pt;}
.y29{bottom:304.987405pt;}
.ye{bottom:324.545883pt;}
.yd{bottom:343.425885pt;}
.y28{bottom:359.067407pt;}
.y4{bottom:378.494065pt;}
.y27{bottom:379.307402pt;}
.y26{bottom:399.547399pt;}
.y3{bottom:404.974066pt;}
.y25{bottom:419.787399pt;}
.y2{bottom:429.671951pt;}
.y24{bottom:457.147400pt;}
.y1{bottom:461.351952pt;}
.y10{bottom:499.319999pt;}
.yf{bottom:516.919999pt;}
.h3{height:22.341146pt;}
.hb{height:42.027780pt;}
.h2{height:42.460071pt;}
.h9{height:42.710940pt;}
.h5{height:42.739586pt;}
.h6{height:42.854169pt;}
.h7{height:44.500001pt;}
.hf{height:46.593751pt;}
.he{height:50.476566pt;}
.h4{height:50.493059pt;}
.h8{height:55.625002pt;}
.ha{height:63.041667pt;}
.hd{height:76.027779pt;}
.hc{height:76.027781pt;}
.h1{height:76.879690pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5{left:20.133859pt;}
.x6{left:24.133859pt;}
.x9{left:36.039604pt;}
.x15{left:39.821523pt;}
.x16{left:48.821524pt;}
.x1{left:59.882402pt;}
.xa{left:95.065853pt;}
.x17{left:96.821525pt;}
.x18{left:135.821526pt;}
.xb{left:142.050985pt;}
.x19{left:162.202105pt;}
.x12{left:240.419235pt;}
.x13{left:241.334541pt;}
.x14{left:243.048908pt;}
.x10{left:245.031150pt;}
.xe{left:246.643653pt;}
.xf{left:248.305686pt;}
.x11{left:250.772650pt;}
.x2{left:279.080679pt;}
.x7{left:304.623360pt;}
.x3{left:322.453760pt;}
.xc{left:430.302609pt;}
.x4{left:477.871005pt;}
.x8{left:606.495843pt;}
.xd{left:1987.918658pt;}
}




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