
    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_a4cd881c703c78debd12d7e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.094000;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_5944dfd53e265d0788a636f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.069000;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;}
.v1{vertical-align:33.173696px;}
.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:-17.932800px;}
.ws1{word-spacing:-13.387732px;}
.ws3{word-spacing:-11.694517px;}
.ws2{word-spacing:28.560504px;}
._2{margin-left:-7.890432px;}
._3{margin-left:-5.738496px;}
._9{margin-left:-4.551829px;}
._f{margin-left:-3.525208px;}
._1{margin-left:-2.510592px;}
._0{margin-left:-1.075968px;}
._7{width:1.808128px;}
._e{width:16.824681px;}
._8{width:18.528621px;}
._a{width:19.973144px;}
._d{width:48.337345px;}
._b{width:55.335968px;}
._4{width:71.372544px;}
._6{width:82.111432px;}
._c{width:97.734984px;}
._5{width:111.885747px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:46.778067px;}
.fs1{font-size:53.550927px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y2f{bottom:153.102385px;}
.y2e{bottom:169.725067px;}
.y2d{bottom:186.348869px;}
.y66{bottom:202.787030px;}
.y2c{bottom:202.971551px;}
.y65{bottom:217.308335px;}
.y2b{bottom:219.594234px;}
.y64{bottom:231.828661px;}
.y2a{bottom:236.218036px;}
.y63{bottom:246.348988px;}
.y29{bottom:252.840718px;}
.y62{bottom:260.870292px;}
.y28{bottom:269.463400px;}
.y61{bottom:275.390619px;}
.y27{bottom:286.087203px;}
.y60{bottom:289.910946px;}
.y26{bottom:302.709885px;}
.y5f{bottom:304.432250px;}
.y5e{bottom:318.952577px;}
.y25{bottom:319.332567px;}
.y5d{bottom:333.472904px;}
.y24{bottom:335.956369px;}
.y23{bottom:343.838818px;}
.y5c{bottom:347.994208px;}
.y5b{bottom:362.514535px;}
.y22{bottom:368.756044px;}
.y5a{bottom:377.034861px;}
.y21{bottom:385.378726px;}
.y59{bottom:391.555188px;}
.y20{bottom:402.001408px;}
.y58{bottom:406.076493px;}
.y1f{bottom:418.625210px;}
.y57{bottom:420.596819px;}
.y56{bottom:435.117146px;}
.y1e{bottom:435.247893px;}
.y55{bottom:449.638451px;}
.y1d{bottom:451.870575px;}
.y54{bottom:464.158777px;}
.y1c{bottom:468.494377px;}
.y53{bottom:478.679104px;}
.y1b{bottom:485.117059px;}
.y52{bottom:493.200409px;}
.y1a{bottom:501.739742px;}
.y51{bottom:507.720735px;}
.y19{bottom:518.363544px;}
.y50{bottom:522.241062px;}
.y18{bottom:534.986226px;}
.y4f{bottom:536.762367px;}
.y4e{bottom:551.282693px;}
.y17{bottom:551.608908px;}
.y4d{bottom:565.803020px;}
.y16{bottom:568.231591px;}
.y4c{bottom:580.324325px;}
.y15{bottom:584.855393px;}
.y4b{bottom:594.844651px;}
.y14{bottom:601.478075px;}
.y4a{bottom:609.364978px;}
.y13{bottom:618.100757px;}
.y49{bottom:623.885304px;}
.y12{bottom:634.724560px;}
.y48{bottom:638.406609px;}
.y11{bottom:651.347242px;}
.y47{bottom:652.926936px;}
.y46{bottom:667.447262px;}
.y10{bottom:667.969924px;}
.y45{bottom:681.968567px;}
.yf{bottom:684.593726px;}
.y44{bottom:696.488894px;}
.ye{bottom:701.216409px;}
.y43{bottom:711.009220px;}
.yd{bottom:717.839091px;}
.y42{bottom:725.530525px;}
.yc{bottom:734.462893px;}
.y41{bottom:740.050852px;}
.yb{bottom:751.085575px;}
.y40{bottom:754.571178px;}
.ya{bottom:767.708258px;}
.y3f{bottom:769.092483px;}
.y3e{bottom:783.612809px;}
.y9{bottom:784.330940px;}
.y3d{bottom:798.133136px;}
.y8{bottom:800.954742px;}
.y3c{bottom:812.654441px;}
.y7{bottom:817.577424px;}
.y3b{bottom:827.174767px;}
.y6{bottom:834.200107px;}
.y3a{bottom:841.695094px;}
.y5{bottom:850.823909px;}
.y39{bottom:856.215421px;}
.y4{bottom:867.446591px;}
.y38{bottom:870.736725px;}
.y37{bottom:885.257052px;}
.y3{bottom:896.553000px;}
.y36{bottom:899.777379px;}
.y35{bottom:914.298683px;}
.y34{bottom:928.819010px;}
.y33{bottom:943.339336px;}
.y32{bottom:957.860641px;}
.y2{bottom:963.982500px;}
.y31{bottom:972.380968px;}
.y30{bottom:999.997500px;}
.y1{bottom:1008.067500px;}
.h7{height:39.808135px;}
.h6{height:41.538924px;}
.h4{height:45.571839px;}
.h3{height:47.553223px;}
.h2{height:61.043251px;}
.h1{height:63.697306px;}
.h5{height:78.745535px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:87.236971px;}
.x6{left:105.232500px;}
.x4{left:169.140004px;}
.x3{left:190.716000px;}
.x5{left:203.805307px;}
.x2{left:239.725500px;}
.x1{left:447.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.487730pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-15.940267pt;}
.ws1{word-spacing:-11.900206pt;}
.ws3{word-spacing:-10.395126pt;}
.ws2{word-spacing:25.387115pt;}
._2{margin-left:-7.013717pt;}
._3{margin-left:-5.100885pt;}
._9{margin-left:-4.046070pt;}
._f{margin-left:-3.133518pt;}
._1{margin-left:-2.231637pt;}
._0{margin-left:-0.956416pt;}
._7{width:1.607225pt;}
._e{width:14.955272pt;}
._8{width:16.469885pt;}
._a{width:17.753906pt;}
._d{width:42.966529pt;}
._b{width:49.187527pt;}
._4{width:63.442261pt;}
._6{width:72.987939pt;}
._c{width:86.875541pt;}
._5{width:99.453997pt;}
.fs2{font-size:41.580504pt;}
.fs1{font-size:47.600824pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:136.091009pt;}
.y2e{bottom:150.866726pt;}
.y2d{bottom:165.643439pt;}
.y66{bottom:180.255138pt;}
.y2c{bottom:180.419157pt;}
.y65{bottom:193.162964pt;}
.y2b{bottom:195.194874pt;}
.y64{bottom:206.069921pt;}
.y2a{bottom:209.971587pt;}
.y63{bottom:218.976878pt;}
.y29{bottom:224.747305pt;}
.y62{bottom:231.884704pt;}
.y28{bottom:239.523023pt;}
.y61{bottom:244.791661pt;}
.y27{bottom:254.299736pt;}
.y60{bottom:257.698618pt;}
.y26{bottom:269.075453pt;}
.y5f{bottom:270.606445pt;}
.y5e{bottom:283.513402pt;}
.y25{bottom:283.851171pt;}
.y5d{bottom:296.420359pt;}
.y24{bottom:298.627884pt;}
.y23{bottom:305.634504pt;}
.y5c{bottom:309.328185pt;}
.y5b{bottom:322.235142pt;}
.y22{bottom:327.783150pt;}
.y5a{bottom:335.142099pt;}
.y21{bottom:342.558867pt;}
.y59{bottom:348.049056pt;}
.y20{bottom:357.334585pt;}
.y58{bottom:360.956883pt;}
.y1f{bottom:372.111298pt;}
.y57{bottom:373.863839pt;}
.y56{bottom:386.770796pt;}
.y1e{bottom:386.887016pt;}
.y55{bottom:399.678623pt;}
.y1d{bottom:401.662733pt;}
.y54{bottom:412.585580pt;}
.y1c{bottom:416.439446pt;}
.y53{bottom:425.492537pt;}
.y1b{bottom:431.215164pt;}
.y52{bottom:438.400363pt;}
.y1a{bottom:445.990881pt;}
.y51{bottom:451.307320pt;}
.y19{bottom:460.767594pt;}
.y50{bottom:464.214277pt;}
.y18{bottom:475.543312pt;}
.y4f{bottom:477.122104pt;}
.y4e{bottom:490.029061pt;}
.y17{bottom:490.319030pt;}
.y4d{bottom:502.936018pt;}
.y16{bottom:505.094747pt;}
.y4c{bottom:515.843844pt;}
.y15{bottom:519.871460pt;}
.y4b{bottom:528.750801pt;}
.y14{bottom:534.647178pt;}
.y4a{bottom:541.657758pt;}
.y13{bottom:549.422895pt;}
.y49{bottom:554.564715pt;}
.y12{bottom:564.199608pt;}
.y48{bottom:567.472541pt;}
.y11{bottom:578.975326pt;}
.y47{bottom:580.379498pt;}
.y46{bottom:593.286455pt;}
.y10{bottom:593.751044pt;}
.y45{bottom:606.194282pt;}
.yf{bottom:608.527757pt;}
.y44{bottom:619.101239pt;}
.ye{bottom:623.303474pt;}
.y43{bottom:632.008196pt;}
.yd{bottom:638.079192pt;}
.y42{bottom:644.916022pt;}
.yc{bottom:652.855905pt;}
.y41{bottom:657.822979pt;}
.yb{bottom:667.631622pt;}
.y40{bottom:670.729936pt;}
.ya{bottom:682.407340pt;}
.y3f{bottom:683.637763pt;}
.y3e{bottom:696.544720pt;}
.y9{bottom:697.183058pt;}
.y3d{bottom:709.451677pt;}
.y8{bottom:711.959771pt;}
.y3c{bottom:722.359503pt;}
.y7{bottom:726.735488pt;}
.y3b{bottom:735.266460pt;}
.y6{bottom:741.511206pt;}
.y3a{bottom:748.173417pt;}
.y5{bottom:756.287919pt;}
.y39{bottom:761.080374pt;}
.y4{bottom:771.063636pt;}
.y38{bottom:773.988200pt;}
.y37{bottom:786.895157pt;}
.y3{bottom:796.936000pt;}
.y36{bottom:799.802114pt;}
.y35{bottom:812.709941pt;}
.y34{bottom:825.616898pt;}
.y33{bottom:838.523855pt;}
.y32{bottom:851.431681pt;}
.y2{bottom:856.873333pt;}
.y31{bottom:864.338638pt;}
.y30{bottom:888.886667pt;}
.y1{bottom:896.060000pt;}
.h7{height:35.385009pt;}
.h6{height:36.923488pt;}
.h4{height:40.508301pt;}
.h3{height:42.269532pt;}
.h2{height:54.260668pt;}
.h1{height:56.619827pt;}
.h5{height:69.996031pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:77.543975pt;}
.x6{left:93.540000pt;}
.x4{left:150.346670pt;}
.x3{left:169.525333pt;}
.x5{left:181.160273pt;}
.x2{left:213.089333pt;}
.x1{left:397.733333pt;}
}




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