
    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_b8b0c83b36a1830aa30f8582.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_85291f8094d4230ba194a9b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.431000;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_c9736f018591301f26c36758.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_864f596784d9bd50bf5919c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897000;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_5fd6e8e7673ef7946a5af278.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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);}
.v2{vertical-align:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:53.970000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:23.911409px;}
.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;}
}
.ws1{word-spacing:-35.865450px;}
.ws4{word-spacing:-14.943900px;}
.ws5{word-spacing:-0.053798px;}
.ws1b{word-spacing:0.000000px;}
.ws9{word-spacing:0.699379px;}
.ws14{word-spacing:1.344960px;}
.ws10{word-spacing:1.882944px;}
.ws17{word-spacing:3.120307px;}
.wsf{word-spacing:3.443098px;}
.ws6{word-spacing:5.218445px;}
.ws3{word-spacing:5.977560px;}
.wsa{word-spacing:6.186816px;}
.wsb{word-spacing:6.294413px;}
.ws7{word-spacing:6.348211px;}
.ws2{word-spacing:6.575340px;}
.ws1a{word-spacing:6.724800px;}
.ws12{word-spacing:7.477978px;}
.wse{word-spacing:7.908365px;}
.ws19{word-spacing:8.338752px;}
.ws11{word-spacing:8.715341px;}
.ws18{word-spacing:10.006502px;}
.wsd{word-spacing:10.867277px;}
.wsc{word-spacing:11.512858px;}
.ws16{word-spacing:13.610995px;}
.ws0{word-spacing:14.346180px;}
.ws15{word-spacing:15.386342px;}
.ws8{word-spacing:18.668045px;}
.ws13{word-spacing:19.206029px;}
._4{margin-left:-6.348211px;}
._5{margin-left:-4.752216px;}
._1{margin-left:-3.586545px;}
._0{margin-left:-1.434618px;}
._2{width:3.313865px;}
._3{width:4.988424px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs1{font-size:103.292400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y1d{bottom:121.992000px;}
.y1c{bottom:549.696000px;}
.y1b{bottom:564.640500px;}
.y1a{bottom:579.585000px;}
.y19{bottom:594.528000px;}
.y18{bottom:609.472500px;}
.y17{bottom:624.417000px;}
.y16{bottom:639.360000px;}
.y15{bottom:654.304500px;}
.y14{bottom:669.249000px;}
.y13{bottom:684.192000px;}
.y12{bottom:699.136500px;}
.y11{bottom:714.081000px;}
.y10{bottom:729.024000px;}
.yf{bottom:743.968500px;}
.ye{bottom:758.911500px;}
.yd{bottom:773.856000px;}
.yc{bottom:788.800500px;}
.yb{bottom:803.743500px;}
.ya{bottom:818.688000px;}
.y9{bottom:833.632500px;}
.y8{bottom:848.575500px;}
.y7{bottom:918.042000px;}
.y6{bottom:936.534000px;}
.y5{bottom:955.027500px;}
.y4{bottom:973.521000px;}
.y3{bottom:992.235000px;}
.y2{bottom:1039.309500px;}
.y1{bottom:1081.152000px;}
.h8{height:19.456902px;}
.h7{height:37.174694px;}
.h6{height:37.605082px;}
.h5{height:40.826735px;}
.h4{height:41.126735px;}
.h3{height:44.909572px;}
.h1{height:97.984409px;}
.h2{height:102.000966px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:73.446000px;}
.x10{left:88.390500px;}
.x1{left:94.788000px;}
.x6{left:136.222500px;}
.x4{left:183.789000px;}
.xa{left:207.438000px;}
.x8{left:232.386000px;}
.x3{left:251.082000px;}
.x5{left:335.349000px;}
.x9{left:342.687000px;}
.x2{left:401.367000px;}
.x7{left:415.269000px;}
.xc{left:533.083500px;}
.xf{left:590.520000px;}
.xb{left:611.724000px;}
.xd{left:697.704000px;}
.xe{left:749.409000px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:47.973333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:21.254586pt;}
.ws1{word-spacing:-31.880400pt;}
.ws4{word-spacing:-13.283467pt;}
.ws5{word-spacing:-0.047821pt;}
.ws1b{word-spacing:0.000000pt;}
.ws9{word-spacing:0.621670pt;}
.ws14{word-spacing:1.195520pt;}
.ws10{word-spacing:1.673728pt;}
.ws17{word-spacing:2.773606pt;}
.wsf{word-spacing:3.060531pt;}
.ws6{word-spacing:4.638618pt;}
.ws3{word-spacing:5.313387pt;}
.wsa{word-spacing:5.499392pt;}
.wsb{word-spacing:5.595034pt;}
.ws7{word-spacing:5.642854pt;}
.ws2{word-spacing:5.844747pt;}
.ws1a{word-spacing:5.977600pt;}
.ws12{word-spacing:6.647091pt;}
.wse{word-spacing:7.029658pt;}
.ws19{word-spacing:7.412224pt;}
.ws11{word-spacing:7.746970pt;}
.ws18{word-spacing:8.894669pt;}
.wsd{word-spacing:9.659802pt;}
.wsc{word-spacing:10.233651pt;}
.ws16{word-spacing:12.098662pt;}
.ws0{word-spacing:12.752160pt;}
.ws15{word-spacing:13.676749pt;}
.ws8{word-spacing:16.593818pt;}
.ws13{word-spacing:17.072026pt;}
._4{margin-left:-5.642854pt;}
._5{margin-left:-4.224192pt;}
._1{margin-left:-3.188040pt;}
._0{margin-left:-1.275216pt;}
._2{width:2.945658pt;}
._3{width:4.434155pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs1{font-size:91.815467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:108.437333pt;}
.y1c{bottom:488.618667pt;}
.y1b{bottom:501.902667pt;}
.y1a{bottom:515.186667pt;}
.y19{bottom:528.469333pt;}
.y18{bottom:541.753333pt;}
.y17{bottom:555.037333pt;}
.y16{bottom:568.320000pt;}
.y15{bottom:581.604000pt;}
.y14{bottom:594.888000pt;}
.y13{bottom:608.170667pt;}
.y12{bottom:621.454667pt;}
.y11{bottom:634.738667pt;}
.y10{bottom:648.021333pt;}
.yf{bottom:661.305333pt;}
.ye{bottom:674.588000pt;}
.yd{bottom:687.872000pt;}
.yc{bottom:701.156000pt;}
.yb{bottom:714.438667pt;}
.ya{bottom:727.722667pt;}
.y9{bottom:741.006667pt;}
.y8{bottom:754.289333pt;}
.y7{bottom:816.037333pt;}
.y6{bottom:832.474667pt;}
.y5{bottom:848.913333pt;}
.y4{bottom:865.352000pt;}
.y3{bottom:881.986667pt;}
.y2{bottom:923.830667pt;}
.y1{bottom:961.024000pt;}
.h8{height:17.295024pt;}
.h7{height:33.044173pt;}
.h6{height:33.426739pt;}
.h5{height:36.290431pt;}
.h4{height:36.557098pt;}
.h3{height:39.919620pt;}
.h1{height:87.097253pt;}
.h2{height:90.667525pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:65.285333pt;}
.x10{left:78.569333pt;}
.x1{left:84.256000pt;}
.x6{left:121.086667pt;}
.x4{left:163.368000pt;}
.xa{left:184.389333pt;}
.x8{left:206.565333pt;}
.x3{left:223.184000pt;}
.x5{left:298.088000pt;}
.x9{left:304.610667pt;}
.x2{left:356.770667pt;}
.x7{left:369.128000pt;}
.xc{left:473.852000pt;}
.xf{left:524.906667pt;}
.xb{left:543.754667pt;}
.xd{left:620.181333pt;}
.xe{left:666.141333pt;}
}




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