
    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_535b19c4e5acb153e3bc4763.woff2')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_1af38bbea603fbed5ce77d28.woff2')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;}
.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:0.000000px;}
._5{margin-left:-8.760571px;}
._4{margin-left:-7.388655px;}
._2{margin-left:-5.573514px;}
._3{margin-left:-3.933365px;}
._0{margin-left:-2.725210px;}
._1{margin-left:-1.008150px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000002px;}
.y0{bottom:0.000000px;}
.y2c{bottom:112.078934px;}
.y77{bottom:129.029656px;}
.y2b{bottom:132.554362px;}
.y4f{bottom:143.882441px;}
.y76{bottom:149.505236px;}
.y2a{bottom:153.029755px;}
.y4e{bottom:164.358034px;}
.y75{bottom:169.980460px;}
.y29{bottom:173.505250px;}
.y4d{bottom:184.833252px;}
.y74{bottom:190.456047px;}
.y28{bottom:193.980644px;}
.y4c{bottom:205.308839px;}
.y73{bottom:210.931634px;}
.y27{bottom:214.456139px;}
.y26{bottom:234.931634px;}
.y4b{bottom:237.784244px;}
.y72{bottom:243.406859px;}
.y25{bottom:255.407017px;}
.y71{bottom:263.882444px;}
.y4a{bottom:270.259649px;}
.y24{bottom:275.882444px;}
.y70{bottom:284.358029px;}
.y23{bottom:296.357939px;}
.y49{bottom:302.735234px;}
.y6f{bottom:304.833244px;}
.y22{bottom:316.833434px;}
.y6e{bottom:325.308825px;}
.y48{bottom:335.210639px;}
.y21{bottom:337.308839px;}
.y6d{bottom:345.784422px;}
.y20{bottom:357.784334px;}
.y6c{bottom:366.259641px;}
.y47{bottom:367.686029px;}
.y1f{bottom:378.259729px;}
.y6b{bottom:386.735231px;}
.y1e{bottom:398.735137px;}
.y46{bottom:400.161620px;}
.y6a{bottom:407.210441px;}
.y1d{bottom:419.210632px;}
.y45{bottom:420.637024px;}
.y69{bottom:427.686034px;}
.y1c{bottom:439.686084px;}
.y44{bottom:441.112427px;}
.y68{bottom:448.161619px;}
.y1b{bottom:460.161527px;}
.y43{bottom:461.587829px;}
.y67{bottom:468.636839px;}
.y1a{bottom:480.637030px;}
.y42{bottom:494.063234px;}
.y19{bottom:501.112425px;}
.y18{bottom:521.587830px;}
.y41{bottom:526.538822px;}
.y66{bottom:533.588009px;}
.y17{bottom:542.063324px;}
.y40{bottom:547.014224px;}
.y65{bottom:566.063226px;}
.y16{bottom:574.538819px;}
.y3f{bottom:579.489629px;}
.y64{bottom:586.538816px;}
.y15{bottom:595.014224px;}
.y63{bottom:607.014404px;}
.y3e{bottom:611.965204px;}
.y14{bottom:615.489674px;}
.y85{bottom:625.391609px;}
.y62{bottom:627.489800px;}
.y3d{bottom:632.440424px;}
.y13{bottom:635.965114px;}
.y61{bottom:647.965022px;}
.y12{bottom:656.440557px;}
.y84{bottom:657.867194px;}
.y3c{bottom:664.916009px;}
.y60{bottom:668.440424px;}
.y11{bottom:676.916017px;}
.y83{bottom:690.342404px;}
.y3b{bottom:697.391415px;}
.y10{bottom:697.391469px;}
.y5f{bottom:700.916016px;}
.y3a{bottom:717.866817px;}
.yf{bottom:717.866912px;}
.y5e{bottom:721.391606px;}
.y82{bottom:722.817989px;}
.ye{bottom:738.342363px;}
.y39{bottom:738.342404px;}
.y5d{bottom:741.866816px;}
.y81{bottom:755.293214px;}
.yd{bottom:758.817810px;}
.y5c{bottom:762.342409px;}
.y38{bottom:770.817816px;}
.yc{bottom:779.293260px;}
.y5b{bottom:782.817812px;}
.y80{bottom:787.768799px;}
.y37{bottom:791.293207px;}
.yb{bottom:799.768709px;}
.y5a{bottom:803.293214px;}
.y36{bottom:811.768796px;}
.y7f{bottom:820.244022px;}
.ya{bottom:832.244160px;}
.y35{bottom:832.244196px;}
.y59{bottom:835.768619px;}
.y7e{bottom:840.719609px;}
.y9{bottom:852.719603px;}
.y34{bottom:852.719605px;}
.y58{bottom:868.244202px;}
.y33{bottom:873.195000px;}
.y8{bottom:873.195054px;}
.y7d{bottom:873.195194px;}
.y57{bottom:888.719602px;}
.y7{bottom:893.670501px;}
.y32{bottom:893.670587px;}
.y7c{bottom:905.670404px;}
.y56{bottom:909.195191px;}
.y31{bottom:914.145899px;}
.y6{bottom:914.145951px;}
.y55{bottom:929.670410px;}
.y5{bottom:934.621400px;}
.y7b{bottom:938.145996px;}
.y30{bottom:946.621400px;}
.y54{bottom:950.145991px;}
.y4{bottom:967.096848px;}
.y53{bottom:970.621399px;}
.y7a{bottom:970.621583px;}
.y2f{bottom:979.096802px;}
.y52{bottom:991.096802px;}
.y3{bottom:999.572297px;}
.y79{bottom:1003.097174px;}
.y2e{bottom:1011.572205px;}
.y51{bottom:1011.572388px;}
.y78{bottom:1023.572020px;}
.y2{bottom:1032.047745px;}
.y50{bottom:1044.047607px;}
.y2d{bottom:1044.047700px;}
.y1{bottom:1064.523194px;}
.h1{height:48.049806px;}
.h2{height:48.082032px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:162.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-7.787174pt;}
._4{margin-left:-6.567694pt;}
._2{margin-left:-4.954235pt;}
._3{margin-left:-3.496324pt;}
._0{margin-left:-2.422409pt;}
._1{margin-left:-0.896133pt;}
.fs0{font-size:58.666668pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:99.625719pt;}
.y77{bottom:114.693027pt;}
.y2b{bottom:117.826099pt;}
.y4f{bottom:127.895503pt;}
.y76{bottom:132.893543pt;}
.y2a{bottom:136.026449pt;}
.y4e{bottom:146.096030pt;}
.y75{bottom:151.093742pt;}
.y29{bottom:154.226889pt;}
.y4d{bottom:164.296224pt;}
.y74{bottom:169.294264pt;}
.y28{bottom:172.427239pt;}
.y4c{bottom:182.496745pt;}
.y73{bottom:187.494785pt;}
.y27{bottom:190.627679pt;}
.y26{bottom:208.828119pt;}
.y4b{bottom:211.363772pt;}
.y72{bottom:216.361653pt;}
.y25{bottom:227.028459pt;}
.y71{bottom:234.562173pt;}
.y4a{bottom:240.230799pt;}
.y24{bottom:245.228839pt;}
.y70{bottom:252.762693pt;}
.y23{bottom:263.429279pt;}
.y49{bottom:269.097985pt;}
.y6f{bottom:270.962884pt;}
.y22{bottom:281.629719pt;}
.y6e{bottom:289.163400pt;}
.y48{bottom:297.965012pt;}
.y21{bottom:299.830079pt;}
.y6d{bottom:307.363931pt;}
.y20{bottom:318.030519pt;}
.y6c{bottom:325.564126pt;}
.y47{bottom:326.832025pt;}
.y1f{bottom:336.230870pt;}
.y6b{bottom:343.764650pt;}
.y1e{bottom:354.431233pt;}
.y46{bottom:355.699218pt;}
.y6a{bottom:361.964837pt;}
.y1d{bottom:372.631673pt;}
.y45{bottom:373.899577pt;}
.y69{bottom:380.165364pt;}
.y1c{bottom:390.832074pt;}
.y44{bottom:392.099935pt;}
.y68{bottom:398.365884pt;}
.y1b{bottom:409.032468pt;}
.y43{bottom:410.300292pt;}
.y67{bottom:416.566079pt;}
.y1a{bottom:427.232915pt;}
.y42{bottom:439.167319pt;}
.y19{bottom:445.433266pt;}
.y18{bottom:463.633626pt;}
.y41{bottom:468.034508pt;}
.y66{bottom:474.300452pt;}
.y17{bottom:481.834065pt;}
.y40{bottom:486.234865pt;}
.y65{bottom:503.167312pt;}
.y16{bottom:510.701173pt;}
.y3f{bottom:515.101892pt;}
.y64{bottom:521.367836pt;}
.y15{bottom:528.901533pt;}
.y63{bottom:539.568359pt;}
.y3e{bottom:543.969070pt;}
.y14{bottom:547.101933pt;}
.y85{bottom:555.903652pt;}
.y62{bottom:557.768711pt;}
.y3d{bottom:562.169265pt;}
.y13{bottom:565.302324pt;}
.y61{bottom:575.968908pt;}
.y12{bottom:583.502718pt;}
.y84{bottom:584.770839pt;}
.y3c{bottom:591.036452pt;}
.y60{bottom:594.169265pt;}
.y11{bottom:601.703127pt;}
.y83{bottom:613.637692pt;}
.y3b{bottom:619.903480pt;}
.y10{bottom:619.903528pt;}
.y5f{bottom:623.036459pt;}
.y3a{bottom:638.103838pt;}
.yf{bottom:638.103922pt;}
.y5e{bottom:641.236983pt;}
.y82{bottom:642.504879pt;}
.ye{bottom:656.304323pt;}
.y39{bottom:656.304359pt;}
.y5d{bottom:659.437170pt;}
.y81{bottom:671.371745pt;}
.yd{bottom:674.504720pt;}
.y5c{bottom:677.637697pt;}
.y38{bottom:685.171392pt;}
.yc{bottom:692.705120pt;}
.y5b{bottom:695.838055pt;}
.y80{bottom:700.238932pt;}
.y37{bottom:703.371740pt;}
.yb{bottom:710.905519pt;}
.y5a{bottom:714.038412pt;}
.y36{bottom:721.572263pt;}
.y7f{bottom:729.105798pt;}
.ya{bottom:739.772586pt;}
.y35{bottom:739.772619pt;}
.y59{bottom:742.905439pt;}
.y7e{bottom:747.306319pt;}
.y9{bottom:757.972980pt;}
.y34{bottom:757.972982pt;}
.y58{bottom:771.772624pt;}
.y33{bottom:776.173333pt;}
.y8{bottom:776.173381pt;}
.y7d{bottom:776.173505pt;}
.y57{bottom:789.972980pt;}
.y7{bottom:794.373778pt;}
.y32{bottom:794.373855pt;}
.y7c{bottom:805.040359pt;}
.y56{bottom:808.173503pt;}
.y31{bottom:812.574132pt;}
.y6{bottom:812.574178pt;}
.y55{bottom:826.373698pt;}
.y5{bottom:830.774577pt;}
.y7b{bottom:833.907552pt;}
.y30{bottom:841.441244pt;}
.y54{bottom:844.574214pt;}
.y4{bottom:859.641643pt;}
.y53{bottom:862.774577pt;}
.y7a{bottom:862.774740pt;}
.y2f{bottom:870.308268pt;}
.y52{bottom:880.974935pt;}
.y3{bottom:888.508708pt;}
.y79{bottom:891.641933pt;}
.y2e{bottom:899.175293pt;}
.y51{bottom:899.175456pt;}
.y78{bottom:909.841796pt;}
.y2{bottom:917.375773pt;}
.y50{bottom:928.042318pt;}
.y2d{bottom:928.042400pt;}
.y1{bottom:946.242839pt;}
.h1{height:42.710938pt;}
.h2{height:42.739584pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:144.000000pt;}
}




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