
    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_d789a8356714e2e1592f397a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_5ad927f73173357350c381cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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;}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,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;}
._7{margin-left:-2.469104px;}
._0{margin-left:-1.046999px;}
._1{width:1.165017px;}
._8{width:2.859407px;}
._a{width:4.090864px;}
._c{width:5.098613px;}
._f{width:6.114683px;}
._6{width:7.313211px;}
._b{width:9.285879px;}
._16{width:10.371091px;}
._3{width:11.631630px;}
._2{width:13.147625px;}
._15{width:14.900786px;}
._14{width:15.911149px;}
._9{width:19.731053px;}
._5{width:21.178422px;}
._4{width:22.553056px;}
._e{width:24.709123px;}
._d{width:26.055486px;}
._13{width:27.893762px;}
._12{width:28.922565px;}
._19{width:36.190479px;}
._17{width:37.594200px;}
._18{width:38.645006px;}
._11{width:51.691300px;}
._10{width:52.721225px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y2e{bottom:141.779943px;}
.y5c{bottom:162.299935px;}
.y2d{bottom:163.019935px;}
.y5b{bottom:183.899926px;}
.y2c{bottom:184.259926px;}
.y5a{bottom:204.779918px;}
.y2b{bottom:205.499918px;}
.y59{bottom:226.019910px;}
.y2a{bottom:226.739909px;}
.y58{bottom:247.259901px;}
.y29{bottom:247.979901px;}
.y57{bottom:268.499893px;}
.y28{bottom:269.219892px;}
.y56{bottom:289.739884px;}
.y27{bottom:290.459884px;}
.y55{bottom:311.339875px;}
.y26{bottom:311.699875px;}
.y54{bottom:332.579867px;}
.y25{bottom:332.939867px;}
.y53{bottom:353.819858px;}
.y24{bottom:354.179858px;}
.y52{bottom:375.059850px;}
.y23{bottom:375.419850px;}
.y51{bottom:396.299841px;}
.y22{bottom:396.659841px;}
.y50{bottom:417.539833px;}
.y21{bottom:417.899833px;}
.y4f{bottom:438.779824px;}
.y20{bottom:439.139824px;}
.y4e{bottom:460.019816px;}
.y1f{bottom:460.379816px;}
.y4d{bottom:481.259807px;}
.y1e{bottom:481.619807px;}
.y4c{bottom:502.499799px;}
.y1d{bottom:502.859799px;}
.y4b{bottom:523.739791px;}
.y1c{bottom:524.099790px;}
.y4a{bottom:544.979782px;}
.y1b{bottom:545.339782px;}
.y49{bottom:566.219774px;}
.y1a{bottom:566.579773px;}
.y48{bottom:587.459765px;}
.y19{bottom:587.819765px;}
.y47{bottom:608.699757px;}
.y18{bottom:609.059756px;}
.y46{bottom:629.939748px;}
.y17{bottom:630.299748px;}
.y45{bottom:651.179740px;}
.y16{bottom:651.539739px;}
.y44{bottom:672.419731px;}
.y15{bottom:672.779731px;}
.y43{bottom:693.659723px;}
.y14{bottom:694.019722px;}
.y42{bottom:714.899714px;}
.y13{bottom:715.259714px;}
.y41{bottom:736.139706px;}
.y12{bottom:736.499705px;}
.y40{bottom:757.379697px;}
.y11{bottom:757.739697px;}
.y3f{bottom:778.619689px;}
.y10{bottom:778.979688px;}
.y3e{bottom:799.859680px;}
.yf{bottom:800.219680px;}
.y3d{bottom:821.099672px;}
.ye{bottom:821.459671px;}
.y3c{bottom:842.339663px;}
.yd{bottom:842.699663px;}
.y3b{bottom:863.579655px;}
.yc{bottom:863.939654px;}
.y3a{bottom:884.819646px;}
.yb{bottom:885.179646px;}
.y39{bottom:906.059638px;}
.ya{bottom:914.519634px;}
.y38{bottom:927.299629px;}
.y9{bottom:940.979624px;}
.y37{bottom:948.539621px;}
.y8{bottom:967.439613px;}
.y36{bottom:969.779612px;}
.y35{bottom:991.019604px;}
.y7{bottom:993.899602px;}
.y34{bottom:1012.259595px;}
.y6{bottom:1022.879591px;}
.y33{bottom:1033.499587px;}
.y5{bottom:1054.739578px;}
.y4{bottom:1075.619570px;}
.y32{bottom:1075.979570px;}
.y3{bottom:1096.859561px;}
.y31{bottom:1097.219561px;}
.y2{bottom:1118.099553px;}
.y30{bottom:1118.459553px;}
.y1{bottom:1139.339544px;}
.y2f{bottom:1139.699544px;}
.h1{height:49.289043px;}
.h3{height:52.435877px;}
.h2{height:63.175756px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:127.620027px;}
.x1{left:140.399944px;}
.x2{left:151.201063px;}
.x5{left:277.200129px;}
.x3{left:296.280857px;}
.x4{left:446.400674px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-2.194759pt;}
._0{margin-left:-0.930666pt;}
._1{width:1.035571pt;}
._8{width:2.541695pt;}
._a{width:3.636323pt;}
._c{width:4.532101pt;}
._f{width:5.435274pt;}
._6{width:6.500632pt;}
._b{width:8.254115pt;}
._16{width:9.218748pt;}
._3{width:10.339226pt;}
._2{width:11.686778pt;}
._15{width:13.245143pt;}
._14{width:14.143243pt;}
._9{width:17.538714pt;}
._5{width:18.825264pt;}
._4{width:20.047161pt;}
._e{width:21.963665pt;}
._d{width:23.160432pt;}
._13{width:24.794455pt;}
._12{width:25.708946pt;}
._19{width:32.169315pt;}
._17{width:33.417067pt;}
._18{width:34.351117pt;}
._11{width:45.947822pt;}
._10{width:46.863311pt;}
.fs1{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:126.026616pt;}
.y5c{bottom:144.266609pt;}
.y2d{bottom:144.906609pt;}
.y5b{bottom:163.466601pt;}
.y2c{bottom:163.786601pt;}
.y5a{bottom:182.026594pt;}
.y2b{bottom:182.666594pt;}
.y59{bottom:200.906586pt;}
.y2a{bottom:201.546586pt;}
.y58{bottom:219.786579pt;}
.y29{bottom:220.426578pt;}
.y57{bottom:238.666571pt;}
.y28{bottom:239.306571pt;}
.y56{bottom:257.546564pt;}
.y27{bottom:258.186563pt;}
.y55{bottom:276.746556pt;}
.y26{bottom:277.066556pt;}
.y54{bottom:295.626548pt;}
.y25{bottom:295.946548pt;}
.y53{bottom:314.506541pt;}
.y24{bottom:314.826541pt;}
.y52{bottom:333.386533pt;}
.y23{bottom:333.706533pt;}
.y51{bottom:352.266526pt;}
.y22{bottom:352.586526pt;}
.y50{bottom:371.146518pt;}
.y21{bottom:371.466518pt;}
.y4f{bottom:390.026511pt;}
.y20{bottom:390.346511pt;}
.y4e{bottom:408.906503pt;}
.y1f{bottom:409.226503pt;}
.y4d{bottom:427.786496pt;}
.y1e{bottom:428.106495pt;}
.y4c{bottom:446.666488pt;}
.y1d{bottom:446.986488pt;}
.y4b{bottom:465.546480pt;}
.y1c{bottom:465.866480pt;}
.y4a{bottom:484.426473pt;}
.y1b{bottom:484.746473pt;}
.y49{bottom:503.306465pt;}
.y1a{bottom:503.626465pt;}
.y48{bottom:522.186458pt;}
.y19{bottom:522.506458pt;}
.y47{bottom:541.066450pt;}
.y18{bottom:541.386450pt;}
.y46{bottom:559.946443pt;}
.y17{bottom:560.266443pt;}
.y45{bottom:578.826435pt;}
.y16{bottom:579.146435pt;}
.y44{bottom:597.706428pt;}
.y15{bottom:598.026427pt;}
.y43{bottom:616.586420pt;}
.y14{bottom:616.906420pt;}
.y42{bottom:635.466412pt;}
.y13{bottom:635.786412pt;}
.y41{bottom:654.346405pt;}
.y12{bottom:654.666405pt;}
.y40{bottom:673.226397pt;}
.y11{bottom:673.546397pt;}
.y3f{bottom:692.106390pt;}
.y10{bottom:692.426390pt;}
.y3e{bottom:710.986382pt;}
.yf{bottom:711.306382pt;}
.y3d{bottom:729.866375pt;}
.ye{bottom:730.186375pt;}
.y3c{bottom:748.746367pt;}
.yd{bottom:749.066367pt;}
.y3b{bottom:767.626360pt;}
.yc{bottom:767.946359pt;}
.y3a{bottom:786.506352pt;}
.yb{bottom:786.826352pt;}
.y39{bottom:805.386345pt;}
.ya{bottom:812.906342pt;}
.y38{bottom:824.266337pt;}
.y9{bottom:836.426332pt;}
.y37{bottom:843.146329pt;}
.y8{bottom:859.946323pt;}
.y36{bottom:862.026322pt;}
.y35{bottom:880.906314pt;}
.y7{bottom:883.466313pt;}
.y34{bottom:899.786307pt;}
.y6{bottom:909.226303pt;}
.y33{bottom:918.666299pt;}
.y5{bottom:937.546292pt;}
.y4{bottom:956.106284pt;}
.y32{bottom:956.426284pt;}
.y3{bottom:974.986277pt;}
.y31{bottom:975.306277pt;}
.y2{bottom:993.866269pt;}
.y30{bottom:994.186269pt;}
.y1{bottom:1012.746262pt;}
.y2f{bottom:1013.066261pt;}
.h1{height:43.812482pt;}
.h3{height:46.609669pt;}
.h2{height:56.156228pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:113.440024pt;}
.x1{left:124.799950pt;}
.x2{left:134.400945pt;}
.x5{left:246.400115pt;}
.x3{left:263.360762pt;}
.x4{left:396.800599pt;}
}




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