
    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_c41df8d20f92242ee3cd3919.woff2')format("woff");}.ff1{font-family:ff1;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-16.665754px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-6.653839px;}
._0{margin-left:-5.314643px;}
._14{margin-left:-3.326444px;}
._1{margin-left:-1.739751px;}
._11{width:93.580490px;}
._2{width:178.686066px;}
._10{width:214.400077px;}
._f{width:218.682064px;}
._8{width:248.426056px;}
._6{width:249.465404px;}
._7{width:303.566782px;}
._4{width:326.109315px;}
._5{width:336.894906px;}
._d{width:340.890459px;}
._e{width:390.123950px;}
._c{width:424.358377px;}
._12{width:442.751141px;}
._13{width:454.672824px;}
._b{width:511.623945px;}
._a{width:684.984021px;}
._9{width:706.568129px;}
.fc1{color:rgb(115,115,115);}
.fc0{color:rgb(34,34,34);}
.fs2{font-size:53.999998px;}
.fs0{font-size:59.984997px;}
.fs1{font-size:95.984996px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000034px;}
.y4{bottom:9.000000px;}
.yd{bottom:10.125000px;}
.y2d{bottom:14.624999px;}
.y3e{bottom:15.749999px;}
.ya{bottom:17.999999px;}
.y3d{bottom:37.124998px;}
.y18{bottom:42.749998px;}
.yc{bottom:43.874998px;}
.y19{bottom:50.115232px;}
.y7{bottom:51.609373px;}
.y2c{bottom:53.999998px;}
.y3c{bottom:58.499998px;}
.y6{bottom:68.115232px;}
.y17{bottom:76.499997px;}
.y1d{bottom:77.624997px;}
.y3b{bottom:79.874997px;}
.y2b{bottom:97.874996px;}
.ye{bottom:100.125030px;}
.y3a{bottom:101.249996px;}
.y1a{bottom:101.496090px;}
.y25{bottom:104.625029px;}
.y1e{bottom:107.121089px;}
.y16{bottom:111.374995px;}
.y22{bottom:112.746089px;}
.yf{bottom:113.871089px;}
.y2a{bottom:119.249995px;}
.y39{bottom:122.624995px;}
.y13{bottom:132.996088px;}
.y29{bottom:140.624994px;}
.y38{bottom:143.999994px;}
.y15{bottom:145.124994px;}
.y1b{bottom:146.496088px;}
.y8{bottom:149.871088px;}
.y10{bottom:152.121087px;}
.y1f{bottom:156.621087px;}
.y28{bottom:161.999993px;}
.y37{bottom:165.374993px;}
.y24{bottom:168.996087px;}
.y27{bottom:183.374992px;}
.y23{bottom:188.121086px;}
.y11{bottom:190.371086px;}
.y36{bottom:204.749991px;}
.y14{bottom:217.125025px;}
.y26{bottom:223.874991px;}
.y9{bottom:225.246084px;}
.y35{bottom:226.124991px;}
.y34{bottom:247.499990px;}
.y33{bottom:268.874989px;}
.y1c{bottom:284.625022px;}
.y32{bottom:290.249988px;}
.y2e{bottom:313.875021px;}
.yb{bottom:318.375020px;}
.y31{bottom:329.624986px;}
.y30{bottom:350.999985px;}
.y21{bottom:353.250019px;}
.y2f{bottom:372.374984px;}
.y5{bottom:424.125016px;}
.y20{bottom:541.125011px;}
.y12{bottom:642.375007px;}
.y3{bottom:677.250006px;}
.y2{bottom:739.124969px;}
.h3{height:33.749999px;}
.h6{height:39.339842px;}
.h2{height:43.700008px;}
.h7{height:68.624997px;}
.h4{height:69.926569px;}
.hb{height:102.374996px;}
.ha{height:116.999995px;}
.h9{height:169.874993px;}
.hc{height:184.499992px;}
.h8{height:218.249991px;}
.hd{height:248.624990px;}
.h5{height:253.124989px;}
.he{height:397.124983px;}
.h1{height:809.999966px;}
.h0{height:810.000000px;}
.w2{width:934.874961px;}
.w1{width:1079.999955px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x21{left:9.000000px;}
.x5{left:15.749999px;}
.x7{left:30.269530px;}
.x6{left:38.249998px;}
.xf{left:47.126951px;}
.x16{left:51.257810px;}
.xa{left:52.787107px;}
.x3{left:69.451169px;}
.x2{left:71.999997px;}
.xe{left:84.919918px;}
.x17{left:95.888668px;}
.x20{left:100.054683px;}
.xd{left:101.759761px;}
.x18{left:208.582023px;}
.x8{left:213.222647px;}
.x11{left:260.841786px;}
.x10{left:268.751942px;}
.x19{left:273.638660px;}
.x1a{left:398.707015px;}
.x1b{left:422.367170px;}
.xb{left:442.880841px;}
.x12{left:475.787090px;}
.x13{left:487.880839px;}
.x9{left:542.162087px;}
.x1c{left:564.082008px;}
.xc{left:605.619115px;}
.x1d{left:626.220677px;}
.x4{left:647.595676px;}
.x14{left:714.498017px;}
.x1e{left:762.257781px;}
.x15{left:786.603483px;}
.x1f{left:803.970670px;}
.x1{left:1017.650354px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-14.814003pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-5.914523pt;}
._0{margin-left:-4.724127pt;}
._14{margin-left:-2.956839pt;}
._1{margin-left:-1.546446pt;}
._11{width:83.182657pt;}
._2{width:158.832059pt;}
._10{width:190.577847pt;}
._f{width:194.384057pt;}
._8{width:220.823161pt;}
._6{width:221.747025pt;}
._7{width:269.837140pt;}
._4{width:289.874947pt;}
._5{width:299.462138pt;}
._d{width:303.013741pt;}
._e{width:346.776844pt;}
._c{width:377.207446pt;}
._12{width:393.556570pt;}
._13{width:404.153621pt;}
._b{width:454.776840pt;}
._a{width:608.874685pt;}
._9{width:628.060559pt;}
.fs2{font-size:47.999998pt;}
.fs0{font-size:53.319997pt;}
.fs1{font-size:85.319996pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000030pt;}
.y4{bottom:8.000000pt;}
.yd{bottom:9.000000pt;}
.y2d{bottom:12.999999pt;}
.y3e{bottom:13.999999pt;}
.ya{bottom:15.999999pt;}
.y3d{bottom:32.999999pt;}
.y18{bottom:37.999998pt;}
.yc{bottom:38.999998pt;}
.y19{bottom:44.546873pt;}
.y7{bottom:45.874998pt;}
.y2c{bottom:47.999998pt;}
.y3c{bottom:51.999998pt;}
.y6{bottom:60.546872pt;}
.y17{bottom:67.999997pt;}
.y1d{bottom:68.999997pt;}
.y3b{bottom:70.999997pt;}
.y2b{bottom:86.999996pt;}
.ye{bottom:89.000026pt;}
.y3a{bottom:89.999996pt;}
.y1a{bottom:90.218746pt;}
.y25{bottom:93.000026pt;}
.y1e{bottom:95.218746pt;}
.y16{bottom:98.999996pt;}
.y22{bottom:100.218746pt;}
.yf{bottom:101.218746pt;}
.y2a{bottom:105.999996pt;}
.y39{bottom:108.999995pt;}
.y13{bottom:118.218745pt;}
.y29{bottom:124.999995pt;}
.y38{bottom:127.999995pt;}
.y15{bottom:128.999995pt;}
.y1b{bottom:130.218745pt;}
.y8{bottom:133.218744pt;}
.y10{bottom:135.218744pt;}
.y1f{bottom:139.218744pt;}
.y28{bottom:143.999994pt;}
.y37{bottom:146.999994pt;}
.y24{bottom:150.218744pt;}
.y27{bottom:162.999993pt;}
.y23{bottom:167.218743pt;}
.y11{bottom:169.218743pt;}
.y36{bottom:181.999992pt;}
.y14{bottom:193.000022pt;}
.y26{bottom:198.999992pt;}
.y9{bottom:200.218742pt;}
.y35{bottom:200.999992pt;}
.y34{bottom:219.999991pt;}
.y33{bottom:238.999990pt;}
.y1c{bottom:253.000019pt;}
.y32{bottom:257.999989pt;}
.y2e{bottom:279.000018pt;}
.yb{bottom:283.000018pt;}
.y31{bottom:292.999988pt;}
.y30{bottom:311.999987pt;}
.y21{bottom:314.000017pt;}
.y2f{bottom:330.999986pt;}
.y5{bottom:377.000014pt;}
.y20{bottom:481.000010pt;}
.y12{bottom:571.000006pt;}
.y3{bottom:602.000005pt;}
.y2{bottom:656.999973pt;}
.h3{height:29.999999pt;}
.h6{height:34.968749pt;}
.h2{height:38.844451pt;}
.h7{height:60.999997pt;}
.h4{height:62.156951pt;}
.hb{height:90.999996pt;}
.ha{height:103.999996pt;}
.h9{height:150.999994pt;}
.hc{height:163.999993pt;}
.h8{height:193.999992pt;}
.hd{height:220.999991pt;}
.h5{height:224.999991pt;}
.he{height:352.999985pt;}
.h1{height:719.999970pt;}
.h0{height:720.000000pt;}
.w2{width:830.999965pt;}
.w1{width:959.999960pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x21{left:8.000000pt;}
.x5{left:13.999999pt;}
.x7{left:26.906249pt;}
.x6{left:33.999999pt;}
.xf{left:41.890623pt;}
.x16{left:45.562498pt;}
.xa{left:46.921873pt;}
.x3{left:61.734372pt;}
.x2{left:63.999997pt;}
.xe{left:75.484372pt;}
.x17{left:85.234371pt;}
.x20{left:88.937496pt;}
.xd{left:90.453121pt;}
.x18{left:185.406242pt;}
.x8{left:189.531242pt;}
.x11{left:231.859365pt;}
.x10{left:238.890615pt;}
.x19{left:243.234365pt;}
.x1a{left:354.406235pt;}
.x1b{left:375.437484pt;}
.xb{left:393.671859pt;}
.x12{left:422.921857pt;}
.x13{left:433.671857pt;}
.x9{left:481.921855pt;}
.x1c{left:501.406229pt;}
.xc{left:538.328103pt;}
.x1d{left:556.640602pt;}
.x4{left:575.640601pt;}
.x14{left:635.109349pt;}
.x1e{left:677.562472pt;}
.x15{left:699.203096pt;}
.x1f{left:714.640595pt;}
.x1{left:904.578092pt;}
}




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