
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.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:73.875000px;}
.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;}
._6{margin-left:-6.187500px;}
._1{margin-left:-3.562500px;}
._0{margin-left:-2.343750px;}
._2{margin-left:-1.125000px;}
._4{width:40.225500px;}
._5{width:68.803875px;}
._3{width:2184.079500px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:38.956825px;}
.y32{bottom:57.355263px;}
.y31{bottom:75.753700px;}
.y30{bottom:94.152138px;}
.y2f{bottom:147.512040px;}
.y2d{bottom:147.676103px;}
.y2a{bottom:155.790165px;}
.y2c{bottom:163.859697px;}
.y29{bottom:170.921415px;}
.y2b{bottom:180.043290px;}
.y2e{bottom:180.207353px;}
.y25{bottom:251.618244px;}
.y28{bottom:251.700276px;}
.y22{bottom:259.884651px;}
.y27{bottom:267.883869px;}
.y24{bottom:267.965901px;}
.y21{bottom:275.203401px;}
.y26{bottom:284.231526px;}
.y23{bottom:284.313557px;}
.y1f{bottom:355.970542px;}
.y1c{bottom:364.166636px;}
.y20{bottom:372.154136px;}
.y1e{bottom:372.318199px;}
.y1b{bottom:379.297886px;}
.y1d{bottom:388.501792px;}
.y18{bottom:460.158778px;}
.y15{bottom:468.261121px;}
.y1a{bottom:476.342371px;}
.y17{bottom:476.506434px;}
.y14{bottom:483.579871px;}
.y19{bottom:492.525965px;}
.y16{bottom:492.690028px;}
.y13{bottom:564.264982px;}
.y10{bottom:564.347013px;}
.yd{bottom:572.449357px;}
.yf{bottom:580.530607px;}
.y12{bottom:580.612638px;}
.yc{bottom:587.768107px;}
.ye{bottom:596.714200px;}
.y11{bottom:596.796232px;}
.yb{bottom:668.453217px;}
.y8{bottom:668.535248px;}
.y5{bottom:676.637592px;}
.ya{bottom:684.800873px;}
.y7{bottom:684.882904px;}
.y4{bottom:691.956342px;}
.y9{bottom:700.984467px;}
.y6{bottom:701.066498px;}
.y3{bottom:771.622776px;}
.y2{bottom:790.091526px;}
.y1{bottom:849.182592px;}
.h6{height:44.592000px;}
.h7{height:47.379000px;}
.h5{height:50.706000px;}
.h3{height:61.974000px;}
.h2{height:78.876000px;}
.h4{height:135.849000px;}
.h0{height:907.200000px;}
.h1{height:907.500000px;}
.w0{width:1501.200000px;}
.w1{width:1501.500000px;}
.x0{left:0.000000px;}
.x9{left:249.584129px;}
.x3{left:250.692188px;}
.x10{left:269.529442px;}
.x1e{left:271.486473px;}
.x25{left:278.447411px;}
.x11{left:280.392723px;}
.x2{left:283.750781px;}
.x8{left:284.787254px;}
.x17{left:289.334129px;}
.x2b{left:291.127098px;}
.x2a{left:293.142723px;}
.x1d{left:295.463036px;}
.x24{left:305.892723px;}
.x16{left:308.341942px;}
.x7{left:310.955223px;}
.xf{left:313.697411px;}
.x1c{left:315.560692px;}
.x1{left:352.361719px;}
.x30{left:414.260156px;}
.x31{left:417.225000px;}
.x2f{left:448.971094px;}
.x15{left:686.463281px;}
.x5{left:695.861719px;}
.x6{left:702.787500px;}
.x23{left:707.967187px;}
.xe{left:710.920312px;}
.xd{left:714.752344px;}
.x1b{left:720.353906px;}
.x29{left:721.666406px;}
.x22{left:729.892969px;}
.xc{left:1040.490871px;}
.x4{left:1052.566406px;}
.x13{left:1053.686183px;}
.x19{left:1063.764308px;}
.x20{left:1065.709621px;}
.xb{left:1069.166652px;}
.x27{left:1072.084621px;}
.x2d{left:1075.436183px;}
.x2e{left:1077.674464px;}
.x14{left:1079.701808px;}
.x1a{left:1081.869777px;}
.x21{left:1083.334621px;}
.x28{left:1088.877589px;}
.x1f{left:1098.568996px;}
.x26{left:1104.522121px;}
.x2c{left:1110.381496px;}
.x12{left:1115.268214px;}
.xa{left:1117.658839px;}
.x18{left:1119.604152px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:65.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-5.500000pt;}
._1{margin-left:-3.166667pt;}
._0{margin-left:-2.083333pt;}
._2{margin-left:-1.000000pt;}
._4{width:35.756000pt;}
._5{width:61.159000pt;}
._3{width:1941.404000pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:34.628289pt;}
.y32{bottom:50.982456pt;}
.y31{bottom:67.336623pt;}
.y30{bottom:83.690789pt;}
.y2f{bottom:131.121814pt;}
.y2d{bottom:131.267647pt;}
.y2a{bottom:138.480147pt;}
.y2c{bottom:145.653064pt;}
.y29{bottom:151.930147pt;}
.y2b{bottom:160.038480pt;}
.y2e{bottom:160.184314pt;}
.y25{bottom:223.660662pt;}
.y28{bottom:223.733578pt;}
.y22{bottom:231.008578pt;}
.y27{bottom:238.118995pt;}
.y24{bottom:238.191912pt;}
.y21{bottom:244.625245pt;}
.y26{bottom:252.650245pt;}
.y23{bottom:252.723162pt;}
.y1f{bottom:316.418260pt;}
.y1c{bottom:323.703676pt;}
.y20{bottom:330.803676pt;}
.y1e{bottom:330.949510pt;}
.y1b{bottom:337.153676pt;}
.y1d{bottom:345.334926pt;}
.y18{bottom:409.030025pt;}
.y15{bottom:416.232108pt;}
.y1a{bottom:423.415441pt;}
.y17{bottom:423.561275pt;}
.y14{bottom:429.848775pt;}
.y19{bottom:437.800858pt;}
.y16{bottom:437.946691pt;}
.y13{bottom:501.568873pt;}
.y10{bottom:501.641789pt;}
.yd{bottom:508.843873pt;}
.yf{bottom:516.027206pt;}
.y12{bottom:516.100123pt;}
.yc{bottom:522.460539pt;}
.ye{bottom:530.412623pt;}
.y11{bottom:530.485539pt;}
.yb{bottom:594.180637pt;}
.y8{bottom:594.253554pt;}
.y5{bottom:601.455637pt;}
.ya{bottom:608.711887pt;}
.y7{bottom:608.784804pt;}
.y4{bottom:615.072304pt;}
.y9{bottom:623.097304pt;}
.y6{bottom:623.170221pt;}
.y3{bottom:685.886912pt;}
.y2{bottom:702.303578pt;}
.y1{bottom:754.828971pt;}
.h6{height:39.637333pt;}
.h7{height:42.114667pt;}
.h5{height:45.072000pt;}
.h3{height:55.088000pt;}
.h2{height:70.112000pt;}
.h4{height:120.754667pt;}
.h0{height:806.400000pt;}
.h1{height:806.666667pt;}
.w0{width:1334.400000pt;}
.w1{width:1334.666667pt;}
.x0{left:0.000000pt;}
.x9{left:221.852560pt;}
.x3{left:222.837500pt;}
.x10{left:239.581726pt;}
.x1e{left:241.321310pt;}
.x25{left:247.508810pt;}
.x11{left:249.237976pt;}
.x2{left:252.222917pt;}
.x8{left:253.144226pt;}
.x17{left:257.185893pt;}
.x2b{left:258.779643pt;}
.x2a{left:260.571310pt;}
.x1d{left:262.633810pt;}
.x24{left:271.904643pt;}
.x16{left:274.081726pt;}
.x7{left:276.404643pt;}
.xf{left:278.842143pt;}
.x1c{left:280.498393pt;}
.x1{left:313.210417pt;}
.x30{left:368.231250pt;}
.x31{left:370.866667pt;}
.x2f{left:399.085417pt;}
.x15{left:610.189583pt;}
.x5{left:618.543750pt;}
.x6{left:624.700000pt;}
.x23{left:629.304167pt;}
.xe{left:631.929167pt;}
.xd{left:635.335417pt;}
.x1b{left:640.314583pt;}
.x29{left:641.481250pt;}
.x22{left:648.793750pt;}
.xc{left:924.880774pt;}
.x4{left:935.614583pt;}
.x13{left:936.609940pt;}
.x19{left:945.568274pt;}
.x20{left:947.297440pt;}
.xb{left:950.370357pt;}
.x27{left:952.964107pt;}
.x2d{left:955.943274pt;}
.x2e{left:957.932857pt;}
.x14{left:959.734940pt;}
.x1a{left:961.662024pt;}
.x21{left:962.964107pt;}
.x28{left:967.891190pt;}
.x1f{left:976.505774pt;}
.x26{left:981.797440pt;}
.x2c{left:987.005774pt;}
.x12{left:991.349524pt;}
.xa{left:993.474524pt;}
.x18{left:995.203690pt;}
}




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