
    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_16e48c4ab9f0b70c8452d1f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_b1857f89cc59fe869fcb888d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.746094;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_4a0335354cb179e923063cfc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_7236a9691dca6ed485880f07.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926758;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_2706513398df8415b7dee90d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.948000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:99.761853px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:107.976572px;}
.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:-28.800001px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-18.480000px;}
._4{margin-left:-16.500000px;}
._5{margin-left:-12.432000px;}
._3{margin-left:-11.100000px;}
._0{margin-left:-9.240000px;}
._2{margin-left:-6.660000px;}
._d{margin-left:-5.037300px;}
._8{margin-left:-3.240000px;}
._c{margin-left:-1.224000px;}
._b{width:1.189035px;}
._1{width:4.181254px;}
._6{width:107.986542px;}
._7{width:1309.972992px;}
._9{width:2040.737015px;}
.fc3{color:rgb(0,151,167);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,63,73);}
.fs2{font-size:144.000005px;}
.fs0{font-size:167.999999px;}
.fs1{font-size:180.000006px;}
.fs4{font-size:216.000007px;}
.fs3{font-size:299.999998px;}
.y0{bottom:0.000000px;}
.y3e{bottom:139.977555px;}
.y3d{bottom:207.657557px;}
.y3c{bottom:275.337560px;}
.y16{bottom:458.179090px;}
.ya{bottom:466.819034px;}
.y15{bottom:523.699092px;}
.y9{bottom:537.378980px;}
.y14{bottom:607.219095px;}
.y8{bottom:607.938983px;}
.y13{bottom:672.739052px;}
.y7{bottom:678.499019px;}
.y12{bottom:756.259044px;}
.y6{bottom:767.059022px;}
.y5{bottom:837.619024px;}
.y11{bottom:839.779035px;}
.y10{bottom:905.299026px;}
.y4{bottom:908.179026px;}
.y3{bottom:978.739017px;}
.yf{bottom:988.819017px;}
.y2{bottom:1049.299008px;}
.ye{bottom:1072.339009px;}
.y1{bottom:1137.859004px;}
.y44{bottom:1325.978693px;}
.y3b{bottom:1348.808904px;}
.y43{bottom:1401.578718px;}
.y3a{bottom:1424.408884px;}
.y42{bottom:1477.178698px;}
.y39{bottom:1518.008898px;}
.y41{bottom:1570.778712px;}
.y38{bottom:1593.608900px;}
.y40{bottom:1646.378715px;}
.y37{bottom:1669.208896px;}
.y3f{bottom:1721.978710px;}
.y36{bottom:2238.486270px;}
.y35{bottom:2314.086250px;}
.y34{bottom:2407.686264px;}
.y33{bottom:2483.286255px;}
.y32{bottom:2576.886263px;}
.y1e{bottom:2790.044740px;}
.y31{bottom:2851.231051px;}
.y30{bottom:2914.231053px;}
.y1b{bottom:2950.835235px;}
.y2f{bottom:2977.231055px;}
.y18{bottom:2983.461586px;}
.y1a{bottom:3016.085237px;}
.y2e{bottom:3046.711023px;}
.y2d{bottom:3161.731027px;}
.y1d{bottom:3182.343284px;}
.y1c{bottom:3211.402818px;}
.y2c{bottom:3231.211029px;}
.y2b{bottom:3373.231034px;}
.y19{bottom:3420.292238px;}
.y17{bottom:3420.327675px;}
.y2a{bottom:3436.231036px;}
.y29{bottom:3505.711040px;}
.y28{bottom:3783.808358px;}
.y27{bottom:3859.408338px;}
.y26{bottom:3935.008329px;}
.y25{bottom:4020.688309px;}
.y24{bottom:4117.888315px;}
.y23{bottom:4242.490009px;}
.y22{bottom:4318.090034px;}
.y21{bottom:4393.690025px;}
.y20{bottom:4469.290028px;}
.y1f{bottom:4554.970021px;}
.yc{bottom:4685.935859px;}
.yb{bottom:4757.395856px;}
.yd{bottom:4854.431101px;}
.ha{height:104.256003px;}
.h4{height:104.906253px;}
.h1{height:122.390625px;}
.h2{height:122.718750px;}
.h3{height:131.132817px;}
.h7{height:157.253911px;}
.h6{height:157.359380px;}
.h8{height:157.849880px;}
.h5{height:218.554686px;}
.h9{height:230.894670px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x4{left:116.991150px;}
.x5{left:118.909977px;}
.x11{left:128.713498px;}
.x10{left:143.707640px;}
.x14{left:147.000002px;}
.x12{left:1267.467566px;}
.x13{left:1280.483189px;}
.xf{left:1321.036327px;}
.xe{left:1336.030468px;}
.x6{left:1416.164729px;}
.x2{left:1830.386843px;}
.x1{left:1845.380984px;}
.x3{left:1899.380986px;}
.xb{left:2053.754053px;}
.x8{left:2181.454103px;}
.x7{left:2311.983299px;}
.x15{left:2381.669289px;}
.xd{left:2744.707194px;}
.xc{left:2828.043315px;}
.xa{left:3038.272668px;}
.x9{left:3080.262417px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:88.677203pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:95.979175pt;}
.ws0{word-spacing:-25.600001pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-16.426667pt;}
._4{margin-left:-14.666667pt;}
._5{margin-left:-11.050667pt;}
._3{margin-left:-9.866667pt;}
._0{margin-left:-8.213333pt;}
._2{margin-left:-5.920000pt;}
._d{margin-left:-4.477600pt;}
._8{margin-left:-2.880000pt;}
._c{margin-left:-1.088000pt;}
._b{width:1.056920pt;}
._1{width:3.716670pt;}
._6{width:95.988037pt;}
._7{width:1164.420437pt;}
._9{width:1813.988458pt;}
.fs2{font-size:128.000004pt;}
.fs0{font-size:149.333333pt;}
.fs1{font-size:160.000005pt;}
.fs4{font-size:192.000006pt;}
.fs3{font-size:266.666665pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:124.424494pt;}
.y3d{bottom:184.584495pt;}
.y3c{bottom:244.744497pt;}
.y16{bottom:407.270303pt;}
.ya{bottom:414.950253pt;}
.y15{bottom:465.510304pt;}
.y9{bottom:477.670205pt;}
.y14{bottom:539.750307pt;}
.y8{bottom:540.390207pt;}
.y13{bottom:597.990269pt;}
.y7{bottom:603.110239pt;}
.y12{bottom:672.230261pt;}
.y6{bottom:681.830241pt;}
.y5{bottom:744.550243pt;}
.y11{bottom:746.470253pt;}
.y10{bottom:804.710245pt;}
.y4{bottom:807.270245pt;}
.y3{bottom:869.990237pt;}
.yf{bottom:878.950238pt;}
.y2{bottom:932.710229pt;}
.ye{bottom:953.190230pt;}
.y1{bottom:1011.430226pt;}
.y44{bottom:1178.647727pt;}
.y3b{bottom:1198.941248pt;}
.y43{bottom:1245.847749pt;}
.y3a{bottom:1266.141230pt;}
.y42{bottom:1313.047732pt;}
.y39{bottom:1349.341243pt;}
.y41{bottom:1396.247744pt;}
.y38{bottom:1416.541245pt;}
.y40{bottom:1463.447746pt;}
.y37{bottom:1483.741241pt;}
.y3f{bottom:1530.647743pt;}
.y36{bottom:1989.765573pt;}
.y35{bottom:2056.965555pt;}
.y34{bottom:2140.165568pt;}
.y33{bottom:2207.365560pt;}
.y32{bottom:2290.565567pt;}
.y1e{bottom:2480.039769pt;}
.y31{bottom:2534.427601pt;}
.y30{bottom:2590.427602pt;}
.y1b{bottom:2622.964653pt;}
.y2f{bottom:2646.427604pt;}
.y18{bottom:2651.965854pt;}
.y1a{bottom:2680.964655pt;}
.y2e{bottom:2708.187576pt;}
.y2d{bottom:2810.427579pt;}
.y1d{bottom:2828.749586pt;}
.y1c{bottom:2854.580283pt;}
.y2c{bottom:2872.187581pt;}
.y2b{bottom:2998.427585pt;}
.y19{bottom:3040.259767pt;}
.y17{bottom:3040.291267pt;}
.y2a{bottom:3054.427587pt;}
.y29{bottom:3116.187591pt;}
.y28{bottom:3363.385207pt;}
.y27{bottom:3430.585189pt;}
.y26{bottom:3497.785181pt;}
.y25{bottom:3573.945164pt;}
.y24{bottom:3660.345169pt;}
.y23{bottom:3771.102230pt;}
.y22{bottom:3838.302252pt;}
.y21{bottom:3905.502245pt;}
.y20{bottom:3972.702247pt;}
.y1f{bottom:4048.862241pt;}
.yc{bottom:4165.276319pt;}
.yb{bottom:4228.796317pt;}
.yd{bottom:4315.049868pt;}
.ha{height:92.672003pt;}
.h4{height:93.250003pt;}
.h1{height:108.791666pt;}
.h2{height:109.083333pt;}
.h3{height:116.562504pt;}
.h7{height:139.781254pt;}
.h6{height:139.875004pt;}
.h8{height:140.311004pt;}
.h5{height:194.270832pt;}
.h9{height:205.239707pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x4{left:103.992133pt;}
.x5{left:105.697757pt;}
.x11{left:114.411999pt;}
.x10{left:127.740124pt;}
.x14{left:130.666668pt;}
.x12{left:1126.637836pt;}
.x13{left:1138.207279pt;}
.xf{left:1174.254513pt;}
.xe{left:1187.582638pt;}
.x6{left:1258.813092pt;}
.x2{left:1627.010527pt;}
.x1{left:1640.338652pt;}
.x3{left:1688.338654pt;}
.xb{left:1825.559158pt;}
.x8{left:1939.070314pt;}
.x7{left:2055.096266pt;}
.x15{left:2117.039368pt;}
.xd{left:2439.739728pt;}
.xc{left:2513.816280pt;}
.xa{left:2700.686816pt;}
.x9{left:2738.011038pt;}
}




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