
    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_53d9a43bea55cdbf0ff9d931.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.932129;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;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4387cc6df331ae48e3aacf31.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932129;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:ffa;src:url('chunks/assets/font_5013b7eb4a8f0f947e29d3df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932129;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;}
.ffb{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);}
.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;}
.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:0.000000px;}
._7{margin-left:-635.717282px;}
._4{margin-left:-6.196849px;}
._2{margin-left:-4.915193px;}
._3{margin-left:-3.374729px;}
._1{margin-left:-2.210661px;}
._0{margin-left:-1.197246px;}
._5{width:184.561517px;}
._6{width:5244.534474px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,68,68);}
.fc2{color:rgb(76,76,76);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:49.499998px;}
.fs4{font-size:59.984997px;}
.fs1{font-size:62.999997px;}
.fs3{font-size:71.999997px;}
.fs2{font-size:112.499995px;}
.y0{bottom:0.000000px;}
.y31{bottom:107.190212px;}
.y30{bottom:497.565196px;}
.y2f{bottom:520.065195px;}
.y2e{bottom:544.815194px;}
.y2d{bottom:1088.190171px;}
.y2c{bottom:1139.940169px;}
.y2b{bottom:1162.440168px;}
.y2a{bottom:1184.940167px;}
.y29{bottom:1232.190165px;}
.y28{bottom:1702.440146px;}
.y27{bottom:1850.940140px;}
.y26{bottom:1902.690138px;}
.y25{bottom:1925.190137px;}
.y24{bottom:1947.690136px;}
.y23{bottom:1994.940134px;}
.y22{bottom:2099.565129px;}
.y21{bottom:2151.315127px;}
.y20{bottom:2173.815126px;}
.y1f{bottom:2196.315125px;}
.y1e{bottom:2243.565123px;}
.y1d{bottom:2308.815121px;}
.y1c{bottom:2455.065115px;}
.y1b{bottom:2500.065113px;}
.y1a{bottom:2522.565112px;}
.y19{bottom:2545.065111px;}
.y18{bottom:2592.315109px;}
.y17{bottom:3062.565089px;}
.y16{bottom:3208.815083px;}
.y15{bottom:3253.815081px;}
.y14{bottom:3276.315080px;}
.y13{bottom:3298.815079px;}
.y12{bottom:3343.815077px;}
.y11{bottom:3811.815058px;}
.y10{bottom:3949.065052px;}
.yf{bottom:3994.065050px;}
.ye{bottom:4016.565049px;}
.yd{bottom:4039.065049px;}
.yc{bottom:4086.315047px;}
.yb{bottom:4160.565043px;}
.ya{bottom:4205.565042px;}
.y9{bottom:4228.065041px;}
.y8{bottom:4250.565040px;}
.y7{bottom:4295.565038px;}
.y6{bottom:4373.190035px;}
.y5{bottom:4496.940029px;}
.y4{bottom:4519.440029px;}
.y3{bottom:4541.940028px;}
.y2{bottom:4564.440027px;}
.y1{bottom:5087.565005px;}
.y32{bottom:5175.315001px;}
.h2{height:35.868163px;}
.h8{height:43.465691px;}
.h7{height:45.650389px;}
.h6{height:52.171873px;}
.h3{height:59.849998px;}
.h5{height:68.399997px;}
.h4{height:106.874996px;}
.h0{height:5203.440000px;}
.h1{height:5203.500000px;}
.w1{width:1619.999933px;}
.w0{width:1620.000000px;}
.x0{left:0.000000px;}
.x20{left:22.499999px;}
.x7{left:467.999981px;}
.x13{left:474.398418px;}
.x2{left:477.140605px;}
.x12{left:480.990220px;}
.xc{left:482.273417px;}
.x8{left:487.651345px;}
.x4{left:489.990220px;}
.x18{left:493.083969px;}
.xb{left:495.984354px;}
.x1d{left:502.699198px;}
.xd{left:566.595685px;}
.x15{left:588.234350px;}
.x11{left:593.033184px;}
.x17{left:621.790995px;}
.x16{left:644.132786px;}
.xa{left:677.812472px;}
.x10{left:689.501930px;}
.x1a{left:694.476534px;}
.x9{left:695.794899px;}
.x1f{left:700.593721px;}
.x1e{left:702.052711px;}
.x1b{left:714.127898px;}
.x19{left:724.886689px;}
.x1{left:749.917938px;}
.x1c{left:753.943334px;}
.xe{left:759.023406px;}
.x6{left:776.689426px;}
.xf{left:778.674770px;}
.x14{left:798.011685px;}
.x5{left:855.087861px;}
.x3{left:978.099574px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-565.082028pt;}
._4{margin-left:-5.508310pt;}
._2{margin-left:-4.369061pt;}
._3{margin-left:-2.999759pt;}
._1{margin-left:-1.965032pt;}
._0{margin-left:-1.064219pt;}
._5{width:164.054682pt;}
._6{width:4661.808421pt;}
.fs0{font-size:43.999998pt;}
.fs4{font-size:53.319997pt;}
.fs1{font-size:55.999998pt;}
.fs3{font-size:63.999997pt;}
.fs2{font-size:99.999996pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:95.280189pt;}
.y30{bottom:442.280174pt;}
.y2f{bottom:462.280173pt;}
.y2e{bottom:484.280173pt;}
.y2d{bottom:967.280152pt;}
.y2c{bottom:1013.280150pt;}
.y2b{bottom:1033.280150pt;}
.y2a{bottom:1053.280149pt;}
.y29{bottom:1095.280147pt;}
.y28{bottom:1513.280130pt;}
.y27{bottom:1645.280124pt;}
.y26{bottom:1691.280122pt;}
.y25{bottom:1711.280121pt;}
.y24{bottom:1731.280121pt;}
.y23{bottom:1773.280119pt;}
.y22{bottom:1866.280115pt;}
.y21{bottom:1912.280113pt;}
.y20{bottom:1932.280112pt;}
.y1f{bottom:1952.280111pt;}
.y1e{bottom:1994.280110pt;}
.y1d{bottom:2052.280107pt;}
.y1c{bottom:2182.280102pt;}
.y1b{bottom:2222.280100pt;}
.y1a{bottom:2242.280099pt;}
.y19{bottom:2262.280098pt;}
.y18{bottom:2304.280097pt;}
.y17{bottom:2722.280079pt;}
.y16{bottom:2852.280074pt;}
.y15{bottom:2892.280072pt;}
.y14{bottom:2912.280071pt;}
.y13{bottom:2932.280071pt;}
.y12{bottom:2972.280069pt;}
.y11{bottom:3388.280052pt;}
.y10{bottom:3510.280046pt;}
.yf{bottom:3550.280045pt;}
.ye{bottom:3570.280044pt;}
.yd{bottom:3590.280043pt;}
.yc{bottom:3632.280041pt;}
.yb{bottom:3698.280039pt;}
.ya{bottom:3738.280037pt;}
.y9{bottom:3758.280036pt;}
.y8{bottom:3778.280035pt;}
.y7{bottom:3818.280034pt;}
.y6{bottom:3887.280031pt;}
.y5{bottom:3997.280026pt;}
.y4{bottom:4017.280025pt;}
.y3{bottom:4037.280024pt;}
.y2{bottom:4057.280024pt;}
.y1{bottom:4522.280004pt;}
.y32{bottom:4600.280001pt;}
.h2{height:31.882811pt;}
.h8{height:38.636170pt;}
.h7{height:40.578123pt;}
.h6{height:46.374998pt;}
.h3{height:53.199998pt;}
.h5{height:60.799997pt;}
.h4{height:94.999996pt;}
.h0{height:4625.280000pt;}
.h1{height:4625.333333pt;}
.w1{width:1439.999940pt;}
.w0{width:1440.000000pt;}
.x0{left:0.000000pt;}
.x20{left:19.999999pt;}
.x7{left:415.999983pt;}
.x13{left:421.687482pt;}
.x2{left:424.124982pt;}
.x12{left:427.546862pt;}
.xc{left:428.687482pt;}
.x8{left:433.467862pt;}
.x4{left:435.546862pt;}
.x18{left:438.296862pt;}
.xb{left:440.874982pt;}
.x1d{left:446.843731pt;}
.xd{left:503.640609pt;}
.x15{left:522.874978pt;}
.x11{left:527.140608pt;}
.x17{left:552.703107pt;}
.x16{left:572.562476pt;}
.xa{left:602.499975pt;}
.x10{left:612.890604pt;}
.x1a{left:617.312474pt;}
.x9{left:618.484354pt;}
.x1f{left:622.749974pt;}
.x1e{left:624.046854pt;}
.x1b{left:634.780354pt;}
.x19{left:644.343723pt;}
.x1{left:666.593722pt;}
.x1c{left:670.171852pt;}
.xe{left:674.687472pt;}
.x6{left:690.390601pt;}
.xf{left:692.155351pt;}
.x14{left:709.343720pt;}
.x5{left:760.078098pt;}
.x3{left:869.421844pt;}
}




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