
    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_47373241722e6e4c9c08b579.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_71adc6d84673c89bd24875b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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;}
.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;}
.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:-16.669921px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-7.508165px;}
._8{margin-left:-6.122275px;}
._c{margin-left:-4.529777px;}
._5{margin-left:-3.318251px;}
._15{margin-left:-2.242174px;}
._7{margin-left:-1.008283px;}
._f{width:1.739249px;}
._6{width:4.362199px;}
._b{width:5.386113px;}
._1{width:8.958285px;}
._0{width:13.192720px;}
._a{width:14.296608px;}
._9{width:17.929810px;}
._4{width:22.419460px;}
._d{width:26.906396px;}
._e{width:31.331074px;}
._17{width:32.344918px;}
._3{width:35.690128px;}
._2{width:40.432277px;}
._11{width:44.851697px;}
._10{width:49.412984px;}
._12{width:53.889549px;}
._14{width:67.900380px;}
._13{width:71.786858px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.999999px;}
.fs2{font-size:101.999997px;}
.fs0{font-size:137.999997px;}
.y0{bottom:0.000000px;}
.y1f{bottom:122.510370px;}
.y46{bottom:125.399040px;}
.y1e{bottom:142.346185px;}
.y45{bottom:145.234855px;}
.y68{bottom:164.923098px;}
.y1d{bottom:180.182010px;}
.y44{bottom:183.070674px;}
.y67{bottom:184.758545px;}
.y1c{bottom:200.017825px;}
.y43{bottom:202.906490px;}
.y66{bottom:204.594729px;}
.y42{bottom:222.742305px;}
.y65{bottom:224.430179px;}
.y1b{bottom:237.853644px;}
.y41{bottom:242.578120px;}
.y64{bottom:244.266360px;}
.y1a{bottom:257.689460px;}
.y63{bottom:264.102175px;}
.y19{bottom:277.525275px;}
.y40{bottom:284.450128px;}
.y18{bottom:297.361090px;}
.y62{bottom:305.974003px;}
.y17{bottom:335.196894px;}
.y3f{bottom:341.134820px;}
.y16{bottom:355.032710px;}
.y3e{bottom:360.970635px;}
.y61{bottom:362.658689px;}
.y15{bottom:374.868525px;}
.y3d{bottom:380.806450px;}
.y60{bottom:382.494504px;}
.y14{bottom:394.704340px;}
.y5f{bottom:402.330320px;}
.y3c{bottom:418.642280px;}
.y5e{bottom:422.166135px;}
.y13{bottom:432.540155px;}
.y3b{bottom:438.478095px;}
.y5d{bottom:442.001950px;}
.y12{bottom:452.375970px;}
.y3a{bottom:458.313910px;}
.y11{bottom:472.211785px;}
.y5c{bottom:483.873781px;}
.y39{bottom:496.149719px;}
.y10{bottom:514.083793px;}
.y38{bottom:515.985534px;}
.y37{bottom:535.821350px;}
.y5b{bottom:540.558835px;}
.y36{bottom:555.657165px;}
.yf{bottom:570.768489px;}
.y35{bottom:575.492980px;}
.y5a{bottom:578.394293px;}
.ye{bottom:590.604305px;}
.y59{bottom:598.230470px;}
.yd{bottom:610.440120px;}
.y34{bottom:613.328790px;}
.y58{bottom:618.065917px;}
.yc{bottom:630.275935px;}
.y33{bottom:633.164605px;}
.y57{bottom:637.902100px;}
.yb{bottom:668.111748px;}
.y32{bottom:671.000424px;}
.y56{bottom:679.773928px;}
.ya{bottom:687.947564px;}
.y31{bottom:690.836240px;}
.y9{bottom:707.783379px;}
.y30{bottom:710.672055px;}
.y8{bottom:727.619195px;}
.y2f{bottom:730.507870px;}
.y55{bottom:736.458620px;}
.y7{bottom:747.455010px;}
.y54{bottom:756.294435px;}
.y6{bottom:767.290825px;}
.y2e{bottom:772.379878px;}
.y53{bottom:776.130250px;}
.y5{bottom:805.126652px;}
.y52{bottom:813.966065px;}
.y4{bottom:824.962466px;}
.y2d{bottom:829.064570px;}
.y51{bottom:833.801880px;}
.y2c{bottom:848.900385px;}
.y50{bottom:853.637695px;}
.y2b{bottom:868.736200px;}
.y3{bottom:870.294068px;}
.y4f{bottom:895.509703px;}
.y2a{bottom:906.572024px;}
.y2{bottom:915.916444px;}
.y29{bottom:926.407839px;}
.y28{bottom:946.243655px;}
.y4e{bottom:952.194396px;}
.y1{bottom:961.538818px;}
.y27{bottom:966.079470px;}
.y6d{bottom:972.030025px;}
.y4d{bottom:972.030212px;}
.y26{bottom:985.915285px;}
.y4c{bottom:991.866027px;}
.y6c{bottom:1009.866210px;}
.y4b{bottom:1011.701842px;}
.y25{bottom:1023.751098px;}
.y6b{bottom:1029.701665px;}
.y24{bottom:1043.586914px;}
.y4a{bottom:1049.537657px;}
.y6a{bottom:1049.537841px;}
.y23{bottom:1063.422729px;}
.y69{bottom:1069.373289px;}
.y49{bottom:1069.373473px;}
.y48{bottom:1089.209472px;}
.y22{bottom:1101.258545px;}
.y21{bottom:1121.094360px;}
.y47{bottom:1131.081298px;}
.y20{bottom:1140.930175px;}
.h3{height:43.681640px;}
.h2{height:43.710936px;}
.h5{height:56.999999px;}
.h4{height:74.308592px;}
.h1{height:100.535154px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x3{left:126.720703px;}
.x2{left:153.000000px;}
.x4{left:784.913411px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-14.817708pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-6.673925pt;}
._8{margin-left:-5.442022pt;}
._c{margin-left:-4.026469pt;}
._5{margin-left:-2.949557pt;}
._15{margin-left:-1.993044pt;}
._7{margin-left:-0.896252pt;}
._f{width:1.545999pt;}
._6{width:3.877510pt;}
._b{width:4.787656pt;}
._1{width:7.962920pt;}
._0{width:11.726863pt;}
._a{width:12.708096pt;}
._9{width:15.937609pt;}
._4{width:19.928409pt;}
._d{width:23.916796pt;}
._e{width:27.849844pt;}
._17{width:28.751038pt;}
._3{width:31.724559pt;}
._2{width:35.939802pt;}
._11{width:39.868175pt;}
._10{width:43.922652pt;}
._12{width:47.901821pt;}
._14{width:60.355894pt;}
._13{width:63.810541pt;}
.fs1{font-size:53.333332pt;}
.fs2{font-size:90.666664pt;}
.fs0{font-size:122.666664pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:108.898107pt;}
.y46{bottom:111.465814pt;}
.y1e{bottom:126.529943pt;}
.y45{bottom:129.097649pt;}
.y68{bottom:146.598309pt;}
.y1d{bottom:160.161787pt;}
.y44{bottom:162.729488pt;}
.y67{bottom:164.229817pt;}
.y1c{bottom:177.793623pt;}
.y43{bottom:180.361324pt;}
.y66{bottom:181.861981pt;}
.y42{bottom:197.993160pt;}
.y65{bottom:199.493492pt;}
.y1b{bottom:211.425462pt;}
.y41{bottom:215.624996pt;}
.y64{bottom:217.125653pt;}
.y1a{bottom:229.057298pt;}
.y63{bottom:234.757489pt;}
.y19{bottom:246.689134pt;}
.y40{bottom:252.844559pt;}
.y18{bottom:264.320969pt;}
.y62{bottom:271.976892pt;}
.y17{bottom:297.952795pt;}
.y3f{bottom:303.230951pt;}
.y16{bottom:315.584631pt;}
.y3e{bottom:320.862787pt;}
.y61{bottom:322.363279pt;}
.y15{bottom:333.216467pt;}
.y3d{bottom:338.494623pt;}
.y60{bottom:339.995115pt;}
.y14{bottom:350.848303pt;}
.y5f{bottom:357.626951pt;}
.y3c{bottom:372.126471pt;}
.y5e{bottom:375.258787pt;}
.y13{bottom:384.480137pt;}
.y3b{bottom:389.758307pt;}
.y5d{bottom:392.890622pt;}
.y12{bottom:402.111973pt;}
.y3a{bottom:407.390143pt;}
.y11{bottom:419.743809pt;}
.y5c{bottom:430.110027pt;}
.y39{bottom:441.021972pt;}
.y10{bottom:456.963372pt;}
.y38{bottom:458.653808pt;}
.y37{bottom:476.285644pt;}
.y5b{bottom:480.496743pt;}
.y36{bottom:493.917480pt;}
.yf{bottom:507.349768pt;}
.y35{bottom:511.549316pt;}
.y5a{bottom:514.128260pt;}
.ye{bottom:524.981604pt;}
.y59{bottom:531.760417pt;}
.yd{bottom:542.613440pt;}
.y34{bottom:545.181147pt;}
.y58{bottom:549.391926pt;}
.yc{bottom:560.245276pt;}
.y33{bottom:562.812983pt;}
.y57{bottom:567.024089pt;}
.yb{bottom:593.877110pt;}
.y32{bottom:596.444821pt;}
.y56{bottom:604.243492pt;}
.ya{bottom:611.508946pt;}
.y31{bottom:614.076657pt;}
.y9{bottom:629.140782pt;}
.y30{bottom:631.708493pt;}
.y8{bottom:646.772618pt;}
.y2f{bottom:649.340329pt;}
.y55{bottom:654.629884pt;}
.y7{bottom:664.404454pt;}
.y54{bottom:672.261720pt;}
.y6{bottom:682.036289pt;}
.y2e{bottom:686.559892pt;}
.y53{bottom:689.893556pt;}
.y5{bottom:715.668135pt;}
.y52{bottom:723.525391pt;}
.y4{bottom:733.299970pt;}
.y2d{bottom:736.946284pt;}
.y51{bottom:741.157227pt;}
.y2c{bottom:754.578120pt;}
.y50{bottom:758.789062pt;}
.y2b{bottom:772.209956pt;}
.y3{bottom:773.594727pt;}
.y4f{bottom:796.008625pt;}
.y2a{bottom:805.841799pt;}
.y2{bottom:814.147950pt;}
.y29{bottom:823.473635pt;}
.y28{bottom:841.105471pt;}
.y4e{bottom:846.395019pt;}
.y1{bottom:854.701172pt;}
.y27{bottom:858.737307pt;}
.y6d{bottom:864.026689pt;}
.y4d{bottom:864.026855pt;}
.y26{bottom:876.369143pt;}
.y4c{bottom:881.658691pt;}
.y6c{bottom:897.658853pt;}
.y4b{bottom:899.290527pt;}
.y25{bottom:910.000976pt;}
.y6b{bottom:915.290368pt;}
.y24{bottom:927.632812pt;}
.y4a{bottom:932.922361pt;}
.y6a{bottom:932.922525pt;}
.y23{bottom:945.264648pt;}
.y69{bottom:950.554034pt;}
.y49{bottom:950.554198pt;}
.y48{bottom:968.186197pt;}
.y22{bottom:978.896484pt;}
.y21{bottom:996.528320pt;}
.y47{bottom:1005.405599pt;}
.y20{bottom:1014.160156pt;}
.h3{height:38.828124pt;}
.h2{height:38.854166pt;}
.h5{height:50.666665pt;}
.h4{height:66.052081pt;}
.h1{height:89.364581pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x3{left:112.640625pt;}
.x2{left:136.000000pt;}
.x4{left:697.700810pt;}
}




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