
    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_9fa6b11206d83fcb9a5454a4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_2f7db51dea303b30410c109a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.682617;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_f57cfbd2e3aa2f4f47e8f266.woff')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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:29.928600px;}
.ls2{letter-spacing:-0.240000px;}
.ls1{letter-spacing:-0.189000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.404000px;}
.ls5{letter-spacing:2.400000px;}
.ls4{letter-spacing:3.600000px;}
.ls8{letter-spacing:4.200000px;}
.ls6{letter-spacing:5.175000px;}
.ls7{letter-spacing:6.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;}
}
.ws5{word-spacing:-109.404000px;}
.ws4{word-spacing:-108.000000px;}
.wsf{word-spacing:-80.175000px;}
.ws8{word-spacing:-69.000000px;}
.ws1{word-spacing:-62.811000px;}
.ws2{word-spacing:-60.000000px;}
.ws3{word-spacing:-59.760000px;}
.ws6{word-spacing:-56.166000px;}
.ws7{word-spacing:-55.965900px;}
.ws9{word-spacing:-54.096000px;}
.wsa{word-spacing:-54.000000px;}
.ws11{word-spacing:-51.600000px;}
.wse{word-spacing:-50.400000px;}
.ws12{word-spacing:-46.200000px;}
.wsb{word-spacing:-45.144000px;}
.wsc{word-spacing:0.000000px;}
.wsd{word-spacing:43.445160px;}
.ws10{word-spacing:380.820000px;}
.ws0{word-spacing:518.400000px;}
._e{margin-left:-14.263500px;}
._d{margin-left:-6.834600px;}
._c{margin-left:-5.427000px;}
._7{margin-left:-4.425000px;}
._0{margin-left:-3.078000px;}
._1{margin-left:-1.128000px;}
._4{width:1.606500px;}
._3{width:2.740500px;}
._8{width:4.071000px;}
._6{width:5.238000px;}
._5{width:6.474000px;}
._f{width:7.570500px;}
._b{width:8.787000px;}
._9{width:10.098000px;}
._a{width:11.664000px;}
._2{width:1025.767200px;}
.fc1{color:rgb(48,88,159);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:62.964000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y2c{bottom:91.351350px;}
.y24{bottom:106.287450px;}
.y2b{bottom:112.951350px;}
.y23{bottom:123.540450px;}
.y22{bottom:140.793450px;}
.y21{bottom:158.046450px;}
.y20{bottom:175.299450px;}
.y1f{bottom:178.294950px;}
.y1e{bottom:222.361350px;}
.y1d{bottom:243.734100px;}
.y1c{bottom:265.106850px;}
.y1b{bottom:286.479600px;}
.y1a{bottom:307.852350px;}
.y19{bottom:329.225100px;}
.y18{bottom:350.597850px;}
.y17{bottom:371.970600px;}
.y16{bottom:393.343350px;}
.y15{bottom:414.716100px;}
.y14{bottom:436.088850px;}
.y13{bottom:457.461600px;}
.y12{bottom:478.834350px;}
.y11{bottom:500.207100px;}
.y10{bottom:521.579850px;}
.yf{bottom:542.952600px;}
.ye{bottom:564.325350px;}
.yd{bottom:585.698100px;}
.yc{bottom:607.070850px;}
.yb{bottom:628.443600px;}
.ya{bottom:649.816350px;}
.y9{bottom:671.189100px;}
.y8{bottom:692.561850px;}
.y7{bottom:713.934600px;}
.y6{bottom:735.307350px;}
.y5{bottom:778.065750px;}
.y4{bottom:810.681750px;}
.y2a{bottom:821.695350px;}
.y29{bottom:841.946850px;}
.y28{bottom:862.198350px;}
.y3{bottom:873.070200px;}
.y27{bottom:882.449850px;}
.y26{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y25{bottom:948.189000px;}
.h6{height:20.982876px;}
.h8{height:40.757812px;}
.ha{height:41.396484px;}
.h7{height:45.852539px;}
.h2{height:50.947266px;}
.h3{height:53.494629px;}
.h5{height:58.589355px;}
.h9{height:63.684082px;}
.h4{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:80.998800px;}
.x4{left:82.499550px;}
.x5{left:83.672550px;}
.x1{left:85.039350px;}
.x3{left:105.683550px;}
.x7{left:106.798650px;}
.x2{left:233.113050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.603200pt;}
.ls2{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:-0.168000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.248000pt;}
.ls5{letter-spacing:2.133333pt;}
.ls4{letter-spacing:3.200000pt;}
.ls8{letter-spacing:3.733333pt;}
.ls6{letter-spacing:4.600000pt;}
.ls7{letter-spacing:5.333333pt;}
.ws5{word-spacing:-97.248000pt;}
.ws4{word-spacing:-96.000000pt;}
.wsf{word-spacing:-71.266667pt;}
.ws8{word-spacing:-61.333333pt;}
.ws1{word-spacing:-55.832000pt;}
.ws2{word-spacing:-53.333333pt;}
.ws3{word-spacing:-53.120000pt;}
.ws6{word-spacing:-49.925333pt;}
.ws7{word-spacing:-49.747467pt;}
.ws9{word-spacing:-48.085333pt;}
.wsa{word-spacing:-48.000000pt;}
.ws11{word-spacing:-45.866667pt;}
.wse{word-spacing:-44.800000pt;}
.ws12{word-spacing:-41.066667pt;}
.wsb{word-spacing:-40.128000pt;}
.wsc{word-spacing:0.000000pt;}
.wsd{word-spacing:38.617920pt;}
.ws10{word-spacing:338.506667pt;}
.ws0{word-spacing:460.800000pt;}
._e{margin-left:-12.678667pt;}
._d{margin-left:-6.075200pt;}
._c{margin-left:-4.824000pt;}
._7{margin-left:-3.933333pt;}
._0{margin-left:-2.736000pt;}
._1{margin-left:-1.002667pt;}
._4{width:1.428000pt;}
._3{width:2.436000pt;}
._8{width:3.618667pt;}
._6{width:4.656000pt;}
._5{width:5.754667pt;}
._f{width:6.729333pt;}
._b{width:7.810667pt;}
._9{width:8.976000pt;}
._a{width:10.368000pt;}
._2{width:911.793067pt;}
.fs6{font-size:27.984000pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:55.968000pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y2c{bottom:81.201200pt;}
.y24{bottom:94.477733pt;}
.y2b{bottom:100.401200pt;}
.y23{bottom:109.813733pt;}
.y22{bottom:125.149733pt;}
.y21{bottom:140.485733pt;}
.y20{bottom:155.821733pt;}
.y1f{bottom:158.484400pt;}
.y1e{bottom:197.654533pt;}
.y1d{bottom:216.652533pt;}
.y1c{bottom:235.650533pt;}
.y1b{bottom:254.648533pt;}
.y1a{bottom:273.646533pt;}
.y19{bottom:292.644533pt;}
.y18{bottom:311.642533pt;}
.y17{bottom:330.640533pt;}
.y16{bottom:349.638533pt;}
.y15{bottom:368.636533pt;}
.y14{bottom:387.634533pt;}
.y13{bottom:406.632533pt;}
.y12{bottom:425.630533pt;}
.y11{bottom:444.628533pt;}
.y10{bottom:463.626533pt;}
.yf{bottom:482.624533pt;}
.ye{bottom:501.622533pt;}
.yd{bottom:520.620533pt;}
.yc{bottom:539.618533pt;}
.yb{bottom:558.616533pt;}
.ya{bottom:577.614533pt;}
.y9{bottom:596.612533pt;}
.y8{bottom:615.610533pt;}
.y7{bottom:634.608533pt;}
.y6{bottom:653.606533pt;}
.y5{bottom:691.614000pt;}
.y4{bottom:720.606000pt;}
.y2a{bottom:730.395867pt;}
.y29{bottom:748.397200pt;}
.y28{bottom:766.398533pt;}
.y3{bottom:776.062400pt;}
.y27{bottom:784.399867pt;}
.y26{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y25{bottom:842.834667pt;}
.h6{height:18.651445pt;}
.h8{height:36.229167pt;}
.ha{height:36.796875pt;}
.h7{height:40.757812pt;}
.h2{height:45.286458pt;}
.h3{height:47.550781pt;}
.h5{height:52.079427pt;}
.h9{height:56.608073pt;}
.h4{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:71.998933pt;}
.x4{left:73.332933pt;}
.x5{left:74.375600pt;}
.x1{left:75.590533pt;}
.x3{left:93.940933pt;}
.x7{left:94.932133pt;}
.x2{left:207.211600pt;}
}




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