
    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_477d74c88046ad678406b481.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_a633441da61a8e66b6a94e88.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_e7f0c2ac6d397fb0cb7e8daf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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;}
}
.ws1{word-spacing:-73.458691px;}
.ws2{word-spacing:-41.633263px;}
.ws3{word-spacing:-30.023988px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.431964px;}
.ws5{word-spacing:0.503753px;}
._6{margin-left:-7.033414px;}
._1{margin-left:-5.385590px;}
._a{margin-left:-4.148173px;}
._5{margin-left:-2.892841px;}
._0{margin-left:-1.008000px;}
._3{width:1.071649px;}
._2{width:2.074047px;}
._8{width:4.175998px;}
._9{width:31.474396px;}
._7{width:111.599955px;}
._4{width:119.916025px;}
.fc3{color:rgb(0,153,153);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:107.999957px;}
.fs4{font-size:120.239952px;}
.fs1{font-size:143.999942px;}
.fs3{font-size:149.759940px;}
.fs0{font-size:215.999914px;}
.fs2{font-size:264.239894px;}
.fs6{font-size:323.999870px;}
.y0{bottom:0.000000px;}
.y3b{bottom:72.960328px;}
.y14{bottom:75.660327px;}
.y3a{bottom:105.360315px;}
.y1d{bottom:117.600310px;}
.y13{bottom:118.860309px;}
.y2a{bottom:120.660309px;}
.y39{bottom:137.760302px;}
.y2e{bottom:138.300302px;}
.y9{bottom:143.520300px;}
.y1c{bottom:153.600296px;}
.y12{bottom:162.060292px;}
.y29{bottom:163.860291px;}
.y20{bottom:174.840287px;}
.y2d{bottom:181.500284px;}
.y28{bottom:207.060274px;}
.y38{bottom:215.520271px;}
.y1f{bottom:218.040270px;}
.y37{bottom:247.920258px;}
.y1b{bottom:255.120255px;}
.y1e{bottom:261.240253px;}
.y8{bottom:277.440246px;}
.y36{bottom:280.320245px;}
.y11{bottom:285.180243px;}
.y1a{bottom:291.120241px;}
.y27{bottom:310.740233px;}
.y35{bottom:312.720232px;}
.y10{bottom:328.380226px;}
.y19{bottom:334.320223px;}
.y26{bottom:353.940215px;}
.y2{bottom:360.420213px;}
.y18{bottom:370.320209px;}
.yf{bottom:371.580208px;}
.y34{bottom:390.480201px;}
.y25{bottom:397.140198px;}
.y3e{bottom:400.740197px;}
.y7{bottom:411.360192px;}
.y33{bottom:422.880188px;}
.y24{bottom:440.340181px;}
.y1{bottom:454.380175px;}
.y32{bottom:455.280175px;}
.y17{bottom:456.720174px;}
.y3d{bottom:472.740168px;}
.y2c{bottom:475.260167px;}
.y23{bottom:483.540164px;}
.ye{bottom:492.540160px;}
.y16{bottom:492.720160px;}
.y2b{bottom:518.460150px;}
.y6{bottom:525.840147px;}
.y22{bottom:526.740146px;}
.y15{bottom:528.720146px;}
.y31{bottom:533.040144px;}
.yd{bottom:535.740143px;}
.y5{bottom:564.720131px;}
.y30{bottom:565.440131px;}
.y21{bottom:569.940129px;}
.yc{bottom:654.720095px;}
.y3c{bottom:680.280085px;}
.y2f{bottom:702.780076px;}
.y4{bottom:703.680076px;}
.y3{bottom:711.240073px;}
.ya{bottom:726.720066px;}
.yb{bottom:733.920063px;}
.h6{height:112.640580px;}
.h5{height:125.406512px;}
.h2{height:150.187440px;}
.h4{height:156.194938px;}
.h1{height:225.281160px;}
.h3{height:275.593952px;}
.h7{height:337.921740px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x17{left:148.845840px;}
.x8{left:179.626428px;}
.x7{left:191.506423px;}
.x4{left:196.366421px;}
.x11{left:199.786420px;}
.x10{left:217.066413px;}
.x16{left:221.746411px;}
.xb{left:230.746408px;}
.x5{left:242.446403px;}
.xf{left:246.586401px;}
.x6{left:280.966388px;}
.xc{left:302.026379px;}
.xa{left:310.486376px;}
.xe{left:315.706374px;}
.xd{left:342.526363px;}
.x12{left:361.606355px;}
.x18{left:375.286350px;}
.x13{left:402.106339px;}
.x14{left:429.646328px;}
.x3{left:432.886327px;}
.x15{left:470.146312px;}
.x9{left:537.286285px;}
.x2{left:552.766279px;}
.x1{left:742.306203px;}
.x1a{left:783.346187px;}
.x19{left:827.626169px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-65.296614pt;}
.ws2{word-spacing:-37.007345pt;}
.ws3{word-spacing:-26.687989pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.383968pt;}
.ws5{word-spacing:0.447781pt;}
._6{margin-left:-6.251923pt;}
._1{margin-left:-4.787191pt;}
._a{margin-left:-3.687265pt;}
._5{margin-left:-2.571414pt;}
._0{margin-left:-0.896000pt;}
._3{width:0.952577pt;}
._2{width:1.843597pt;}
._8{width:3.711999pt;}
._9{width:27.977241pt;}
._7{width:99.199960pt;}
._4{width:106.592023pt;}
.fs5{font-size:95.999962pt;}
.fs4{font-size:106.879957pt;}
.fs1{font-size:127.999949pt;}
.fs3{font-size:133.119947pt;}
.fs0{font-size:191.999923pt;}
.fs2{font-size:234.879906pt;}
.fs6{font-size:287.999885pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:64.853625pt;}
.y14{bottom:67.253624pt;}
.y3a{bottom:93.653613pt;}
.y1d{bottom:104.533609pt;}
.y13{bottom:105.653608pt;}
.y2a{bottom:107.253608pt;}
.y39{bottom:122.453602pt;}
.y2e{bottom:122.933601pt;}
.y9{bottom:127.573600pt;}
.y1c{bottom:136.533596pt;}
.y12{bottom:144.053593pt;}
.y29{bottom:145.653592pt;}
.y20{bottom:155.413589pt;}
.y2d{bottom:161.333586pt;}
.y28{bottom:184.053577pt;}
.y38{bottom:191.573574pt;}
.y1f{bottom:193.813573pt;}
.y37{bottom:220.373563pt;}
.y1b{bottom:226.773560pt;}
.y1e{bottom:232.213558pt;}
.y8{bottom:246.613552pt;}
.y36{bottom:249.173551pt;}
.y11{bottom:253.493549pt;}
.y1a{bottom:258.773547pt;}
.y27{bottom:276.213540pt;}
.y35{bottom:277.973539pt;}
.y10{bottom:291.893534pt;}
.y19{bottom:297.173532pt;}
.y26{bottom:314.613525pt;}
.y2{bottom:320.373523pt;}
.y18{bottom:329.173519pt;}
.yf{bottom:330.293519pt;}
.y34{bottom:347.093512pt;}
.y25{bottom:353.013509pt;}
.y3e{bottom:356.213508pt;}
.y7{bottom:365.653504pt;}
.y33{bottom:375.893500pt;}
.y24{bottom:391.413494pt;}
.y1{bottom:403.893489pt;}
.y32{bottom:404.693489pt;}
.y17{bottom:405.973488pt;}
.y3d{bottom:420.213483pt;}
.y2c{bottom:422.453482pt;}
.y23{bottom:429.813479pt;}
.ye{bottom:437.813476pt;}
.y16{bottom:437.973475pt;}
.y2b{bottom:460.853466pt;}
.y6{bottom:467.413464pt;}
.y22{bottom:468.213463pt;}
.y15{bottom:469.973463pt;}
.y31{bottom:473.813461pt;}
.yd{bottom:476.213460pt;}
.y5{bottom:501.973450pt;}
.y30{bottom:502.613450pt;}
.y21{bottom:506.613448pt;}
.yc{bottom:581.973418pt;}
.y3c{bottom:604.693409pt;}
.y2f{bottom:624.693401pt;}
.y4{bottom:625.493400pt;}
.y3{bottom:632.213398pt;}
.ya{bottom:645.973392pt;}
.yb{bottom:652.373390pt;}
.h6{height:100.124960pt;}
.h5{height:111.472455pt;}
.h2{height:133.499947pt;}
.h4{height:138.839944pt;}
.h1{height:200.249920pt;}
.h3{height:244.972402pt;}
.h7{height:300.374880pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x17{left:132.307414pt;}
.x8{left:159.667936pt;}
.x7{left:170.227932pt;}
.x4{left:174.547930pt;}
.x11{left:177.587929pt;}
.x10{left:192.947923pt;}
.x16{left:197.107921pt;}
.xb{left:205.107918pt;}
.x5{left:215.507914pt;}
.xf{left:219.187912pt;}
.x6{left:249.747900pt;}
.xc{left:268.467893pt;}
.xa{left:275.987890pt;}
.xe{left:280.627888pt;}
.xd{left:304.467878pt;}
.x12{left:321.427871pt;}
.x18{left:333.587867pt;}
.x13{left:357.427857pt;}
.x14{left:381.907847pt;}
.x3{left:384.787846pt;}
.x15{left:417.907833pt;}
.x9{left:477.587809pt;}
.x2{left:491.347803pt;}
.x1{left:659.827736pt;}
.x1a{left:696.307721pt;}
.x19{left:735.667706pt;}
}




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