
    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_604a3bac9184879c202ec23a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_c1759f0b4c596077baeaa365.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_095e29c504f28d2faf967dba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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:ff4;src:url('chunks/assets/font_d3815777b61ae1422cff9649.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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:ff5;src:url('chunks/assets/font_04a330c19bb3242bd1defe08.woff2')format("woff");}.ff5{font-family:ff5;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.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);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.244480px;}
.ls0{letter-spacing:1221.851511px;}
.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:-18.244473px;}
.ws0{word-spacing:-17.999993px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-2.272646px;}
._4{margin-left:-1.004127px;}
._0{width:1.094091px;}
._8{width:2.639681px;}
._1{width:3.722604px;}
._9{width:5.046533px;}
._2{width:6.984623px;}
._3{width:8.027447px;}
._a{width:9.184457px;}
._b{width:10.692988px;}
._7{width:12.183494px;}
._c{width:14.180896px;}
._5{width:15.835209px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:53.999978px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.320037px;}
.y2{bottom:53.400240px;}
.y1{bottom:57.900277px;}
.y22{bottom:177.599929px;}
.y21{bottom:208.559917px;}
.y20{bottom:239.699904px;}
.y1f{bottom:270.659892px;}
.y1e{bottom:301.799879px;}
.y1d{bottom:332.759867px;}
.y1c{bottom:363.899854px;}
.y1b{bottom:394.859842px;}
.y1a{bottom:425.999830px;}
.y19{bottom:456.959817px;}
.y18{bottom:488.099805px;}
.y17{bottom:519.059792px;}
.y16{bottom:550.199780px;}
.y15{bottom:581.159768px;}
.y14{bottom:612.299755px;}
.y13{bottom:643.259743px;}
.y34{bottom:673.139731px;}
.y12{bottom:674.399730px;}
.y33{bottom:704.099718px;}
.y11{bottom:705.359718px;}
.y32{bottom:735.239706px;}
.y10{bottom:736.499705px;}
.y31{bottom:766.199694px;}
.yf{bottom:767.459693px;}
.y30{bottom:797.159681px;}
.ye{bottom:798.599681px;}
.y2f{bottom:828.299669px;}
.yd{bottom:829.559668px;}
.y2e{bottom:859.259656px;}
.yc{bottom:860.699656px;}
.y2d{bottom:890.399644px;}
.yb{bottom:891.659643px;}
.y2c{bottom:921.359631px;}
.ya{bottom:922.799631px;}
.y2b{bottom:952.499619px;}
.y9{bottom:953.759618px;}
.y2a{bottom:983.459607px;}
.y8{bottom:984.719606px;}
.y29{bottom:1014.599594px;}
.y7{bottom:1015.859594px;}
.y28{bottom:1045.559582px;}
.y6{bottom:1046.459581px;}
.y27{bottom:1076.699569px;}
.y5{bottom:1077.599569px;}
.y26{bottom:1107.659557px;}
.y4{bottom:1108.559557px;}
.y25{bottom:1138.799544px;}
.y24{bottom:1151.219540px;}
.y23{bottom:1178.399529px;}
.h2{height:20.520000px;}
.h4{height:56.320290px;}
.h5{height:70.628878px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h0{height:1263.000000px;}
.w1{width:0.360000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.xa{left:140.579343px;}
.xb{left:149.038846px;}
.x4{left:163.080692px;}
.x6{left:180.721521px;}
.x8{left:197.639921px;}
.x5{left:238.861524px;}
.xc{left:380.517100px;}
.x7{left:442.799823px;}
.x3{left:446.399821px;}
.x2{left:455.400000px;}
.x9{left:765.359255px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.217316pt;}
.ls0{letter-spacing:1086.090232pt;}
.ws1{word-spacing:-16.217309pt;}
.ws0{word-spacing:-15.999994pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-2.020130pt;}
._4{margin-left:-0.892558pt;}
._0{width:0.972525pt;}
._8{width:2.346383pt;}
._1{width:3.308981pt;}
._9{width:4.485807pt;}
._2{width:6.208554pt;}
._3{width:7.135509pt;}
._a{width:8.163962pt;}
._b{width:9.504878pt;}
._7{width:10.829773pt;}
._c{width:12.605241pt;}
._5{width:14.075742pt;}
.fs1{font-size:47.999981pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.840033pt;}
.y2{bottom:47.466880pt;}
.y1{bottom:51.466913pt;}
.y22{bottom:157.866604pt;}
.y21{bottom:185.386593pt;}
.y20{bottom:213.066581pt;}
.y1f{bottom:240.586570pt;}
.y1e{bottom:268.266559pt;}
.y1d{bottom:295.786548pt;}
.y1c{bottom:323.466537pt;}
.y1b{bottom:350.986526pt;}
.y1a{bottom:378.666515pt;}
.y19{bottom:406.186504pt;}
.y18{bottom:433.866493pt;}
.y17{bottom:461.386482pt;}
.y16{bottom:489.066471pt;}
.y15{bottom:516.586460pt;}
.y14{bottom:544.266449pt;}
.y13{bottom:571.786438pt;}
.y34{bottom:598.346427pt;}
.y12{bottom:599.466427pt;}
.y33{bottom:625.866416pt;}
.y11{bottom:626.986416pt;}
.y32{bottom:653.546405pt;}
.y10{bottom:654.666405pt;}
.y31{bottom:681.066394pt;}
.yf{bottom:682.186394pt;}
.y30{bottom:708.586383pt;}
.ye{bottom:709.866383pt;}
.y2f{bottom:736.266372pt;}
.yd{bottom:737.386372pt;}
.y2e{bottom:763.786361pt;}
.yc{bottom:765.066361pt;}
.y2d{bottom:791.466350pt;}
.yb{bottom:792.586350pt;}
.y2c{bottom:818.986339pt;}
.ya{bottom:820.266339pt;}
.y2b{bottom:846.666328pt;}
.y9{bottom:847.786328pt;}
.y2a{bottom:874.186317pt;}
.y8{bottom:875.306317pt;}
.y29{bottom:901.866306pt;}
.y7{bottom:902.986305pt;}
.y28{bottom:929.386295pt;}
.y6{bottom:930.186295pt;}
.y27{bottom:957.066284pt;}
.y5{bottom:957.866284pt;}
.y26{bottom:984.586273pt;}
.y4{bottom:985.386273pt;}
.y25{bottom:1012.266262pt;}
.y24{bottom:1023.306257pt;}
.y23{bottom:1047.466248pt;}
.h2{height:18.240000pt;}
.h4{height:50.062480pt;}
.h5{height:62.781225pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w1{width:0.320000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.xa{left:124.959416pt;}
.xb{left:132.478974pt;}
.x4{left:144.960615pt;}
.x6{left:160.641352pt;}
.x8{left:175.679930pt;}
.x5{left:212.321355pt;}
.xc{left:338.237423pt;}
.x7{left:393.599843pt;}
.x3{left:396.799841pt;}
.x2{left:404.800000pt;}
.x9{left:680.319338pt;}
}




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