
    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_928bab03eb9d1a565c49867b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_3d387f86a8de1ece5d2fc935.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_bc61596e5e355614a3f71df7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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);}
.v2{vertical-align:-20.491262px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.768066px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:165.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;}
}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:-9.000000px;}
.ws1{word-spacing:-8.100000px;}
.ws4{word-spacing:0.000000px;}
._10{margin-left:-6.158201px;}
._f{margin-left:-4.587850px;}
._6{margin-left:-3.506838px;}
._0{margin-left:-1.019572px;}
._2{width:4.499994px;}
._1{width:9.000007px;}
._7{width:13.457775px;}
._8{width:17.908428px;}
._4{width:21.524415px;}
._5{width:23.475591px;}
._3{width:27.000000px;}
._a{width:31.375860px;}
._e{width:35.798628px;}
._d{width:40.407720px;}
._b{width:44.890303px;}
._11{width:48.958008px;}
._12{width:50.041972px;}
._9{width:55.089845px;}
._c{width:148.500000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:32.399999px;}
.fs2{font-size:36.000000px;}
.fs6{font-size:41.999999px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.999999px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y27{bottom:29.921630px;}
.y25{bottom:233.914678px;}
.y24{bottom:251.163213px;}
.y23{bottom:268.411739px;}
.y22{bottom:285.660274px;}
.y21{bottom:302.908810px;}
.y20{bottom:320.157345px;}
.y1f{bottom:337.405880px;}
.y1e{bottom:354.654415px;}
.y1d{bottom:371.968874px;}
.y1c{bottom:389.217409px;}
.y1b{bottom:406.465945px;}
.y1a{bottom:423.714480px;}
.y19{bottom:440.963015px;}
.y18{bottom:458.211550px;}
.y17{bottom:475.526006px;}
.y16{bottom:492.774538px;}
.y15{bottom:510.023073px;}
.y42{bottom:515.358213px;}
.y14{bottom:527.271610px;}
.y41{bottom:531.206358px;}
.y13{bottom:544.520145px;}
.y40{bottom:548.130438px;}
.y12{bottom:561.768680px;}
.y3f{bottom:563.978583px;}
.y11{bottom:579.017216px;}
.y3e{bottom:581.227113px;}
.y10{bottom:596.265748px;}
.y3d{bottom:598.151190px;}
.yf{bottom:613.514283px;}
.y3c{bottom:613.674872px;}
.y3b{bottom:629.198553px;}
.y3a{bottom:645.046698px;}
.ye{bottom:656.938298px;}
.y39{bottom:680.944147px;}
.yd{bottom:703.663147px;}
.yc{bottom:719.186829px;}
.y38{bottom:727.669012px;}
.y37{bottom:743.192694px;}
.yb{bottom:751.210553px;}
.ya{bottom:766.734235px;}
.y36{bottom:776.716368px;}
.y35{bottom:792.240049px;}
.y9{bottom:798.757921px;}
.y34{bottom:807.763731px;}
.y8{bottom:814.281602px;}
.y33{bottom:823.287412px;}
.y7{bottom:829.805284px;}
.y32{bottom:838.811094px;}
.y6{bottom:845.328965px;}
.y5{bottom:860.852647px;}
.y31{bottom:872.659250px;}
.y4{bottom:876.376329px;}
.y30{bottom:889.907785px;}
.y2f{bottom:907.156320px;}
.y2e{bottom:924.404855px;}
.y2d{bottom:941.653391px;}
.y3{bottom:942.022824px;}
.y2c{bottom:958.901923px;}
.y2{bottom:967.748133px;}
.y2b{bottom:976.150458px;}
.y2a{bottom:993.398990px;}
.y29{bottom:1010.647522px;}
.y1{bottom:1022.294517px;}
.y28{bottom:1027.896057px;}
.y26{bottom:1041.899964px;}
.h3{height:23.255859px;}
.h4{height:38.759766px;}
.h6{height:43.066405px;}
.h2{height:48.607910px;}
.h5{height:48.796875px;}
.h1{height:56.929685px;}
.h7{height:221.100036px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x6{left:187.049995px;}
.x5{left:188.174995px;}
.xa{left:192.679390px;}
.x7{left:203.924995px;}
.x1{left:208.888407px;}
.xb{left:212.924996px;}
.x8{left:214.049995px;}
.x4{left:229.799995px;}
.x3{left:238.220729px;}
.x9{left:241.049996px;}
.x2{left:353.871929px;}
@media print{
.v2{vertical-align:-18.214455pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.238281pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:146.666667pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:-8.000000pt;}
.ws1{word-spacing:-7.200000pt;}
.ws4{word-spacing:0.000000pt;}
._10{margin-left:-5.473956pt;}
._f{margin-left:-4.078089pt;}
._6{margin-left:-3.117190pt;}
._0{margin-left:-0.906287pt;}
._2{width:3.999995pt;}
._1{width:8.000006pt;}
._7{width:11.962466pt;}
._8{width:15.918603pt;}
._4{width:19.132814pt;}
._5{width:20.867192pt;}
._3{width:24.000000pt;}
._a{width:27.889653pt;}
._e{width:31.821002pt;}
._d{width:35.917973pt;}
._b{width:39.902491pt;}
._11{width:43.518229pt;}
._12{width:44.481753pt;}
._9{width:48.968751pt;}
._c{width:132.000000pt;}
.fs3{font-size:28.799999pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:37.333332pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333332pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:26.597004pt;}
.y25{bottom:207.924158pt;}
.y24{bottom:223.256190pt;}
.y23{bottom:238.588213pt;}
.y22{bottom:253.920244pt;}
.y21{bottom:269.252276pt;}
.y20{bottom:284.584307pt;}
.y1f{bottom:299.916338pt;}
.y1e{bottom:315.248369pt;}
.y1d{bottom:330.638999pt;}
.y1c{bottom:345.971030pt;}
.y1b{bottom:361.303062pt;}
.y1a{bottom:376.635093pt;}
.y19{bottom:391.967124pt;}
.y18{bottom:407.299156pt;}
.y17{bottom:422.689783pt;}
.y16{bottom:438.021812pt;}
.y15{bottom:453.353843pt;}
.y42{bottom:458.096189pt;}
.y14{bottom:468.685875pt;}
.y41{bottom:472.183430pt;}
.y13{bottom:484.017906pt;}
.y40{bottom:487.227056pt;}
.y12{bottom:499.349937pt;}
.y3f{bottom:501.314296pt;}
.y11{bottom:514.681969pt;}
.y3e{bottom:516.646323pt;}
.y10{bottom:530.013998pt;}
.y3d{bottom:531.689947pt;}
.yf{bottom:545.346030pt;}
.y3c{bottom:545.488775pt;}
.y3b{bottom:559.287603pt;}
.y3a{bottom:573.374843pt;}
.ye{bottom:583.945153pt;}
.y39{bottom:605.283686pt;}
.yd{bottom:625.478353pt;}
.yc{bottom:639.277182pt;}
.y38{bottom:646.816900pt;}
.y37{bottom:660.615728pt;}
.yb{bottom:667.742714pt;}
.ya{bottom:681.541542pt;}
.y36{bottom:690.414549pt;}
.y35{bottom:704.213377pt;}
.y9{bottom:710.007041pt;}
.y34{bottom:718.012205pt;}
.y8{bottom:723.805869pt;}
.y33{bottom:731.811033pt;}
.y7{bottom:737.604697pt;}
.y32{bottom:745.609862pt;}
.y6{bottom:751.403525pt;}
.y5{bottom:765.202353pt;}
.y31{bottom:775.697111pt;}
.y4{bottom:779.001181pt;}
.y30{bottom:791.029142pt;}
.y2f{bottom:806.361173pt;}
.y2e{bottom:821.693204pt;}
.y2d{bottom:837.025236pt;}
.y3{bottom:837.353622pt;}
.y2c{bottom:852.357265pt;}
.y2{bottom:860.220563pt;}
.y2b{bottom:867.689296pt;}
.y2a{bottom:883.021324pt;}
.y29{bottom:898.353353pt;}
.y1{bottom:908.706237pt;}
.y28{bottom:913.685384pt;}
.y26{bottom:926.133301pt;}
.h3{height:20.671874pt;}
.h4{height:34.453125pt;}
.h6{height:38.281249pt;}
.h2{height:43.207031pt;}
.h5{height:43.375000pt;}
.h1{height:50.604165pt;}
.h7{height:196.533365pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x6{left:166.266663pt;}
.x5{left:167.266663pt;}
.xa{left:171.270569pt;}
.x7{left:181.266663pt;}
.x1{left:185.678584pt;}
.xb{left:189.266663pt;}
.x8{left:190.266663pt;}
.x4{left:204.266663pt;}
.x3{left:211.751759pt;}
.x9{left:214.266663pt;}
.x2{left:314.552826pt;}
}




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