
    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_5f5aa927d8baca6bdd6e97ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.750000;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_08e8e16ffeaa568f54665ee0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940918;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_1919bdf224727c1f72a0dd33.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_46f922d599df53d8d35d1010.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_27e48914ca71f5088d63211f.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_03f6cf01bb80ad64613c5544.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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:ff7;src:url('chunks/assets/font_ba69802b3a4dc74dd31e4092.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.877000;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:ff8;src:url('chunks/assets/font_9cf6992a9af6247938d72a87.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.725000;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:ff9;src:url('chunks/assets/font_6c6f79a7985101f47c4fcde3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;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;}
.ls3{letter-spacing:-0.031748px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.023811px;}
.ls4{letter-spacing:0.031748px;}
.ls0{letter-spacing:453.599916px;}
.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;}
}
.ws3{word-spacing:-44.129756px;}
.ws0{word-spacing:-33.121128px;}
.ws1{word-spacing:-33.097317px;}
.ws4{word-spacing:-0.052913px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:1164.192717px;}
._5{margin-left:-11.921384px;}
._6{margin-left:-6.825826px;}
._3{margin-left:-4.488377px;}
._4{margin-left:-2.873196px;}
._2{width:3.994960px;}
._0{width:7.275589px;}
._1{width:13.148974px;}
._7{width:1286.343528px;}
._8{width:1562.308020px;}
.fc8{color:rgb(82,82,84);}
.fc6{color:rgb(53,121,185);}
.fc5{color:rgb(0,125,204);}
.fc4{color:rgb(54,123,197);}
.fc3{color:rgb(0,153,153);}
.fc7{color:rgb(34,34,34);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(155,155,155);}
.fs5{font-size:52.913376px;}
.fs0{font-size:66.141720px;}
.fs1{font-size:79.370064px;}
.fs3{font-size:119.055096px;}
.fs4{font-size:158.740128px;}
.fs2{font-size:264.566880px;}
.y0{bottom:0.000000px;}
.y1{bottom:3.652308px;}
.y7{bottom:60.696075px;}
.y18{bottom:86.975355px;}
.y3{bottom:90.092250px;}
.y6{bottom:95.420475px;}
.y17{bottom:103.510785px;}
.y5{bottom:130.144890px;}
.y15{bottom:151.550550px;}
.y4{bottom:164.869350px;}
.y11{bottom:183.657900px;}
.y14{bottom:197.849850px;}
.y10{bottom:229.957050px;}
.y13{bottom:244.149000px;}
.y9{bottom:303.910500px;}
.y8{bottom:350.209650px;}
.y19{bottom:362.470650px;}
.y2{bottom:420.372000px;}
.yf{bottom:499.064400px;}
.y1a{bottom:506.226450px;}
.ye{bottom:545.363550px;}
.y12{bottom:676.735950px;}
.y16{bottom:698.450250px;}
.yd{bottom:716.019150px;}
.ya{bottom:787.979250px;}
.yb{bottom:810.684450px;}
.yc{bottom:812.751300px;}
.h4{height:27.900615px;}
.h2{height:35.757525px;}
.hb{height:38.679678px;}
.h3{height:57.977351px;}
.h7{height:86.675365px;}
.h8{height:86.791630px;}
.h9{height:115.567154px;}
.ha{height:115.954703px;}
.h5{height:185.532750px;}
.h6{height:192.611923px;}
.h0{height:892.913400px;}
.h1{height:893.250000px;}
.w3{width:362.334000px;}
.w2{width:538.885200px;}
.w4{width:1190.551200px;}
.w0{width:1262.834700px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x4{left:5.952750px;}
.x2{left:11.905515px;}
.x1{left:36.141750px;}
.x11{left:41.650950px;}
.x5{left:63.218970px;}
.x13{left:64.558350px;}
.x1b{left:66.042810px;}
.x12{left:86.296620px;}
.xa{left:104.483970px;}
.x14{left:105.609495px;}
.x18{left:115.234500px;}
.x19{left:159.880200px;}
.xc{left:163.448850px;}
.x17{left:191.862750px;}
.x1c{left:203.643000px;}
.x10{left:354.867300px;}
.xf{left:356.520900px;}
.x1a{left:410.868150px;}
.x9{left:446.240850px;}
.x1d{left:486.132000px;}
.x8{left:500.885250px;}
.xb{left:504.764100px;}
.x6{left:532.916250px;}
.x16{left:549.540300px;}
.x7{left:620.085750px;}
.x3{left:637.370100px;}
.x15{left:748.043100px;}
.xe{left:898.198950px;}
.xd{left:934.261050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.028220pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021165pt;}
.ls4{letter-spacing:0.028220pt;}
.ls0{letter-spacing:403.199925pt;}
.ws3{word-spacing:-39.226449pt;}
.ws0{word-spacing:-29.441002pt;}
.ws1{word-spacing:-29.419837pt;}
.ws4{word-spacing:-0.047034pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:1034.837970pt;}
._5{margin-left:-10.596785pt;}
._6{margin-left:-6.067400pt;}
._3{margin-left:-3.989669pt;}
._4{margin-left:-2.553952pt;}
._2{width:3.551075pt;}
._0{width:6.467190pt;}
._1{width:11.687977pt;}
._7{width:1143.416470pt;}
._8{width:1388.718240pt;}
.fs5{font-size:47.034112pt;}
.fs0{font-size:58.792640pt;}
.fs1{font-size:70.551168pt;}
.fs3{font-size:105.826752pt;}
.fs4{font-size:141.102336pt;}
.fs2{font-size:235.170560pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:3.246496pt;}
.y7{bottom:53.952067pt;}
.y18{bottom:77.311427pt;}
.y3{bottom:80.082000pt;}
.y6{bottom:84.818200pt;}
.y17{bottom:92.009587pt;}
.y5{bottom:115.684347pt;}
.y15{bottom:134.711600pt;}
.y4{bottom:146.550533pt;}
.y11{bottom:163.251467pt;}
.y14{bottom:175.866533pt;}
.y10{bottom:204.406267pt;}
.y13{bottom:217.021333pt;}
.y9{bottom:270.142667pt;}
.y8{bottom:311.297467pt;}
.y19{bottom:322.196133pt;}
.y2{bottom:373.664000pt;}
.yf{bottom:443.612800pt;}
.y1a{bottom:449.979067pt;}
.ye{bottom:484.767600pt;}
.y12{bottom:601.543067pt;}
.y16{bottom:620.844667pt;}
.yd{bottom:636.461467pt;}
.ya{bottom:700.426000pt;}
.yb{bottom:720.608400pt;}
.yc{bottom:722.445600pt;}
.h4{height:24.800547pt;}
.h2{height:31.784467pt;}
.hb{height:34.381936pt;}
.h3{height:51.535423pt;}
.h7{height:77.044769pt;}
.h8{height:77.148116pt;}
.h9{height:102.726359pt;}
.ha{height:103.070847pt;}
.h5{height:164.918000pt;}
.h6{height:171.210598pt;}
.h0{height:793.700800pt;}
.h1{height:794.000000pt;}
.w3{width:322.074667pt;}
.w2{width:479.009067pt;}
.w4{width:1058.267733pt;}
.w0{width:1122.519733pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4{left:5.291333pt;}
.x2{left:10.582680pt;}
.x1{left:32.126000pt;}
.x11{left:37.023067pt;}
.x5{left:56.194640pt;}
.x13{left:57.385200pt;}
.x1b{left:58.704720pt;}
.x12{left:76.708107pt;}
.xa{left:92.874640pt;}
.x14{left:93.875107pt;}
.x18{left:102.430667pt;}
.x19{left:142.115733pt;}
.xc{left:145.287867pt;}
.x17{left:170.544667pt;}
.x1c{left:181.016000pt;}
.x10{left:315.437600pt;}
.xf{left:316.907467pt;}
.x1a{left:365.216133pt;}
.x9{left:396.658533pt;}
.x1d{left:432.117333pt;}
.x8{left:445.231333pt;}
.xb{left:448.679200pt;}
.x6{left:473.703333pt;}
.x16{left:488.480267pt;}
.x7{left:551.187333pt;}
.x3{left:566.551200pt;}
.x15{left:664.927200pt;}
.xe{left:798.399067pt;}
.xd{left:830.454267pt;}
}




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