
    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_247babbe6120e19c55a574c7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_c9945cddfce1d7cdf81559fd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.997000;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f8cdbcd50245c5b20f578c6b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.991000;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;}
.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;}
}
.ws1{word-spacing:-20.744999px;}
.ws0{word-spacing:-15.263999px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-4.633092px;}
._4{margin-left:-3.544227px;}
._6{margin-left:-2.057489px;}
._5{margin-left:-1.003377px;}
._7{width:1.265125px;}
._e{width:3.072924px;}
._2{width:7.122298px;}
._9{width:9.082398px;}
._0{width:10.835771px;}
._b{width:12.666604px;}
._19{width:17.226314px;}
._8{width:19.080491px;}
._11{width:20.724282px;}
._d{width:21.876336px;}
._f{width:26.539441px;}
._15{width:28.616970px;}
._1e{width:30.913952px;}
._10{width:33.581135px;}
._17{width:35.531066px;}
._3{width:39.536348px;}
._1{width:41.097503px;}
._c{width:52.476966px;}
._1d{width:57.585692px;}
._1c{width:65.835651px;}
._18{width:87.328027px;}
._14{width:110.882554px;}
._12{width:122.730303px;}
._1a{width:130.429469px;}
._13{width:197.788971px;}
._1b{width:279.983898px;}
._1f{width:312.679409px;}
._16{width:573.212360px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:53.999998px;}
.fs1{font-size:59.984997px;}
.fs6{font-size:71.999997px;}
.fs2{font-size:89.999996px;}
.fs4{font-size:119.969995px;}
.fs3{font-size:131.984995px;}
.fs0{font-size:179.999993px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000024px;}
.y10{bottom:31.067243px;}
.yf{bottom:49.067242px;}
.ye{bottom:67.067241px;}
.y16{bottom:96.924020px;}
.y15{bottom:114.924019px;}
.y14{bottom:132.924018px;}
.y5{bottom:163.824077px;}
.y13{bottom:207.099135px;}
.y12{bottom:227.349135px;}
.y11{bottom:247.599134px;}
.yd{bottom:280.299012px;}
.y2f{bottom:325.074010px;}
.y2e{bottom:349.824009px;}
.y2d{bottom:374.574008px;}
.y2c{bottom:399.324007px;}
.y2b{bottom:424.074006px;}
.y2a{bottom:448.824005px;}
.y29{bottom:473.574004px;}
.y28{bottom:498.324003px;}
.y27{bottom:523.074002px;}
.yc{bottom:579.849060px;}
.yb{bottom:654.661557px;}
.y26{bottom:710.401614px;}
.y25{bottom:741.901613px;}
.y24{bottom:773.401612px;}
.y23{bottom:804.901610px;}
.y22{bottom:836.401609px;}
.y21{bottom:867.901608px;}
.y20{bottom:899.401607px;}
.y1f{bottom:930.901605px;}
.y1e{bottom:991.638931px;}
.y3a{bottom:1041.126293px;}
.y38{bottom:1072.626291px;}
.y37{bottom:1104.126290px;}
.y36{bottom:1135.626289px;}
.y35{bottom:1167.126287px;}
.y34{bottom:1198.626286px;}
.y33{bottom:1230.126285px;}
.y32{bottom:1261.626283px;}
.y31{bottom:1302.351174px;}
.y39{bottom:1314.726173px;}
.y30{bottom:1327.101173px;}
.y1d{bottom:1524.052772px;}
.y1c{bottom:1582.540069px;}
.y1b{bottom:1614.040068px;}
.y1a{bottom:1645.540067px;}
.y19{bottom:1677.040065px;}
.y18{bottom:1708.540064px;}
.y17{bottom:1757.443988px;}
.ya{bottom:1831.529192px;}
.y9{bottom:1863.029190px;}
.y8{bottom:1894.529189px;}
.y7{bottom:1926.029188px;}
.y6{bottom:1957.529186px;}
.y4{bottom:2019.854183px;}
.y3{bottom:2082.854181px;}
.y2{bottom:2145.854178px;}
.h9{height:44.603998px;}
.h4{height:49.547608px;}
.h6{height:56.985747px;}
.ha{height:59.471998px;}
.h5{height:74.339997px;}
.h8{height:99.095216px;}
.h7{height:109.019605px;}
.h3{height:148.679994px;}
.h2{height:2249.999876px;}
.h0{height:2249.999900px;}
.h1{height:2250.000000px;}
.w1{width:899.999963px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.x4{left:14.074840px;}
.x5{left:15.284109px;}
.xe{left:34.870255px;}
.xc{left:39.124161px;}
.xb{left:44.892599px;}
.x6{left:48.771374px;}
.xd{left:55.612442px;}
.xf{left:99.620140px;}
.x10{left:104.577171px;}
.x7{left:170.148322px;}
.x8{left:185.142462px;}
.x2{left:323.989441px;}
.x9{left:328.562378px;}
.x12{left:337.539910px;}
.x1{left:342.305847px;}
.xa{left:343.556523px;}
.x11{left:358.182340px;}
.x3{left:435.891781px;}
.x13{left:612.853030px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-18.439999pt;}
.ws0{word-spacing:-13.567999pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-4.118304pt;}
._4{margin-left:-3.150424pt;}
._6{margin-left:-1.828879pt;}
._5{margin-left:-0.891891pt;}
._7{width:1.124555pt;}
._e{width:2.731488pt;}
._2{width:6.330931pt;}
._9{width:8.073243pt;}
._0{width:9.631796pt;}
._b{width:11.259204pt;}
._19{width:15.312279pt;}
._8{width:16.960436pt;}
._11{width:18.421584pt;}
._d{width:19.445632pt;}
._f{width:23.590614pt;}
._15{width:25.437307pt;}
._1e{width:27.479068pt;}
._10{width:29.849898pt;}
._17{width:31.583169pt;}
._3{width:35.143421pt;}
._1{width:36.531114pt;}
._c{width:46.646192pt;}
._1d{width:51.187282pt;}
._1c{width:58.520579pt;}
._18{width:77.624913pt;}
._14{width:98.562270pt;}
._12{width:109.093603pt;}
._1a{width:115.937306pt;}
._13{width:175.812419pt;}
._1b{width:248.874576pt;}
._1f{width:277.937253pt;}
._16{width:509.522098pt;}
.fs5{font-size:47.999998pt;}
.fs1{font-size:53.319997pt;}
.fs6{font-size:63.999997pt;}
.fs2{font-size:79.999997pt;}
.fs4{font-size:106.639996pt;}
.fs3{font-size:117.319995pt;}
.fs0{font-size:159.999993pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000021pt;}
.y10{bottom:27.615327pt;}
.yf{bottom:43.615326pt;}
.ye{bottom:59.615326pt;}
.y16{bottom:86.154684pt;}
.y15{bottom:102.154684pt;}
.y14{bottom:118.154683pt;}
.y5{bottom:145.621402pt;}
.y13{bottom:184.088120pt;}
.y12{bottom:202.088120pt;}
.y11{bottom:220.088119pt;}
.yd{bottom:249.154678pt;}
.y2f{bottom:288.954676pt;}
.y2e{bottom:310.954675pt;}
.y2d{bottom:332.954674pt;}
.y2c{bottom:354.954673pt;}
.y2b{bottom:376.954672pt;}
.y2a{bottom:398.954671pt;}
.y29{bottom:420.954670pt;}
.y28{bottom:442.954670pt;}
.y27{bottom:464.954669pt;}
.yc{bottom:515.421387pt;}
.yb{bottom:581.921384pt;}
.y26{bottom:631.468102pt;}
.y25{bottom:659.468101pt;}
.y24{bottom:687.468099pt;}
.y23{bottom:715.468098pt;}
.y22{bottom:743.468097pt;}
.y21{bottom:771.468096pt;}
.y20{bottom:799.468095pt;}
.y1f{bottom:827.468094pt;}
.y1e{bottom:881.456827pt;}
.y3a{bottom:925.445593pt;}
.y38{bottom:953.445592pt;}
.y37{bottom:981.445591pt;}
.y36{bottom:1009.445590pt;}
.y35{bottom:1037.445589pt;}
.y34{bottom:1065.445588pt;}
.y33{bottom:1093.445586pt;}
.y32{bottom:1121.445585pt;}
.y31{bottom:1157.645488pt;}
.y39{bottom:1168.645487pt;}
.y30{bottom:1179.645487pt;}
.y1d{bottom:1354.713576pt;}
.y1c{bottom:1406.702284pt;}
.y1b{bottom:1434.702283pt;}
.y1a{bottom:1462.702281pt;}
.y19{bottom:1490.702280pt;}
.y18{bottom:1518.702279pt;}
.y17{bottom:1562.172434pt;}
.ya{bottom:1628.025948pt;}
.y9{bottom:1656.025947pt;}
.y8{bottom:1684.025946pt;}
.y7{bottom:1712.025945pt;}
.y6{bottom:1740.025943pt;}
.y4{bottom:1795.425941pt;}
.y3{bottom:1851.425939pt;}
.y2{bottom:1907.425936pt;}
.h9{height:39.647998pt;}
.h4{height:44.042318pt;}
.h6{height:50.653998pt;}
.ha{height:52.863998pt;}
.h5{height:66.079997pt;}
.h8{height:88.084636pt;}
.h7{height:96.906316pt;}
.h3{height:132.159994pt;}
.h2{height:1999.999890pt;}
.h0{height:1999.999911pt;}
.h1{height:2000.000000pt;}
.w1{width:799.999967pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.x4{left:12.510969pt;}
.x5{left:13.585875pt;}
.xe{left:30.995783pt;}
.xc{left:34.777032pt;}
.xb{left:39.904532pt;}
.x6{left:43.352332pt;}
.xd{left:49.433282pt;}
.xf{left:88.551236pt;}
.x10{left:92.957486pt;}
.x7{left:151.242953pt;}
.x8{left:164.571077pt;}
.x2{left:287.990615pt;}
.x9{left:292.055447pt;}
.x12{left:300.035475pt;}
.x1{left:304.271864pt;}
.xa{left:305.383576pt;}
.x11{left:318.384302pt;}
.x3{left:387.459360pt;}
.x13{left:544.758249pt;}
}




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