
    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_56c9fb31456089fd7ec88749.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_03ed5610eff55fe5ac16768e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_66e5099b198fd0e3439f9626.woff')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_94483ef445f73b4da4a6ea2c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.929000;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;}
.m1{transform:matrix(0.204788,-0.143394,0.143394,0.204788,0,0);-ms-transform:matrix(0.204788,-0.143394,0.143394,0.204788,0,0);-webkit-transform:matrix(0.204788,-0.143394,0.143394,0.204788,0,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);}
.v1{vertical-align:-45.132342px;}
.v3{vertical-align:-42.852342px;}
.v2{vertical-align:-15.623658px;}
.v4{vertical-align:-7.399800px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000030px;}
.ls2{letter-spacing:0.000210px;}
.ls1{letter-spacing:0.024000px;}
.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;}
}
.ws4{word-spacing:-60.048000px;}
.ws5{word-spacing:-40.032000px;}
.ws3{word-spacing:-30.024000px;}
.ws0{word-spacing:-30.000000px;}
.ws2{word-spacing:-29.976000px;}
.ws1{word-spacing:-19.999995px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-4692.132000px;}
._1{margin-left:-18.150000px;}
._7{margin-left:-8.640000px;}
._2{margin-left:-6.006000px;}
._3{margin-left:-3.240000px;}
._0{margin-left:-2.238000px;}
._6{width:43.650000px;}
._4{width:7000.981200px;}
.fc2{color:rgb(0,162,255);}
.fc1{color:rgb(238,34,12);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:79.999980px;}
.fs0{font-size:120.000000px;}
.fs4{font-size:144.000000px;}
.fs6{font-size:180.000000px;}
.fs3{font-size:216.000000px;}
.fs2{font-size:288.000000px;}
.fs5{font-size:330.000000px;}
.fs7{font-size:479.999973px;}
.y0{bottom:0.000000px;}
.y1b{bottom:4.913700px;}
.yd{bottom:8.566269px;}
.y15{bottom:25.258050px;}
.y10{bottom:26.653935px;}
.y13{bottom:26.756850px;}
.ye{bottom:33.497550px;}
.y6{bottom:39.168150px;}
.y17{bottom:39.168300px;}
.y19{bottom:59.119350px;}
.yf{bottom:61.153935px;}
.y3{bottom:64.565100px;}
.y1e{bottom:78.056850px;}
.y2{bottom:99.065100px;}
.y5{bottom:117.676950px;}
.y1{bottom:142.685100px;}
.y1d{bottom:156.565650px;}
.y8{bottom:212.660400px;}
.y7{bottom:374.862000px;}
.y27{bottom:429.848850px;}
.y22{bottom:491.498400px;}
.y9{bottom:513.941250px;}
.y4{bottom:615.638700px;}
.y11{bottom:624.594750px;}
.y18{bottom:638.268900px;}
.y1a{bottom:649.424550px;}
.y1c{bottom:730.249050px;}
.y14{bottom:822.816300px;}
.y12{bottom:823.166400px;}
.y21{bottom:923.059050px;}
.y20{bottom:1085.260650px;}
.y1f{bottom:1224.339900px;}
.y16{bottom:1252.202850px;}
.y26{bottom:1388.064600px;}
.yc{bottom:1397.063700px;}
.y25{bottom:1434.819000px;}
.yb{bottom:1457.768250px;}
.y24{bottom:1481.573400px;}
.ya{bottom:1552.269000px;}
.y23{bottom:1567.582500px;}
.hc{height:60.300135px;}
.hb{height:63.936330px;}
.he{height:74.700000px;}
.h2{height:83.378906px;}
.h8{height:86.640000px;}
.h9{height:96.195930px;}
.hd{height:96.298830px;}
.hf{height:105.264000px;}
.h7{height:121.992188px;}
.ha{height:129.912045px;}
.h5{height:157.896000px;}
.h1{height:180.007050px;}
.h3{height:208.420950px;}
.h4{height:210.528000px;}
.h6{height:223.652344px;}
.h10{height:350.879980px;}
.h0{height:1620.000000px;}
.w4{width:381.444000px;}
.w2{width:415.667700px;}
.w9{width:464.244000px;}
.w6{width:697.355250px;}
.w5{width:831.952950px;}
.w7{width:878.820000px;}
.w1{width:885.304200px;}
.w3{width:955.026750px;}
.w8{width:1023.838500px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.xf{left:9.722700px;}
.x14{left:18.071190px;}
.x12{left:21.456000px;}
.x16{left:24.425535px;}
.x2{left:26.221500px;}
.x4{left:28.802100px;}
.x5{left:31.253850px;}
.x3{left:32.539800px;}
.x6{left:42.593850px;}
.x13{left:46.888740px;}
.x9{left:57.409860px;}
.x19{left:81.913500px;}
.x18{left:83.493000px;}
.x7{left:154.699650px;}
.x8{left:172.485300px;}
.x10{left:352.554600px;}
.xd{left:356.002200px;}
.x1{left:428.516550px;}
.xa{left:482.891250px;}
.x1f{left:524.049300px;}
.xb{left:541.261650px;}
.x15{left:858.137850px;}
.x24{left:925.522050px;}
.xc{left:1295.386950px;}
.x11{left:1375.860600px;}
.xe{left:1392.423900px;}
.x1a{left:1472.079300px;}
.x1c{left:1543.656000px;}
.x1d{left:1640.944500px;}
.x1e{left:1658.731500px;}
.x17{left:1856.161500px;}
.x1b{left:2476.401000px;}
.x21{left:2519.632500px;}
.x22{left:2539.288500px;}
.x20{left:2562.994500px;}
.x23{left:2573.614500px;}
@media print{
.v1{vertical-align:-40.117637pt;}
.v3{vertical-align:-38.090971pt;}
.v2{vertical-align:-13.887696pt;}
.v4{vertical-align:-6.577600pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000027pt;}
.ls2{letter-spacing:0.000187pt;}
.ls1{letter-spacing:0.021333pt;}
.ws4{word-spacing:-53.376000pt;}
.ws5{word-spacing:-35.584000pt;}
.ws3{word-spacing:-26.688000pt;}
.ws0{word-spacing:-26.666667pt;}
.ws2{word-spacing:-26.645333pt;}
.ws1{word-spacing:-17.777773pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-4170.784000pt;}
._1{margin-left:-16.133333pt;}
._7{margin-left:-7.680000pt;}
._2{margin-left:-5.338667pt;}
._3{margin-left:-2.880000pt;}
._0{margin-left:-1.989333pt;}
._6{width:38.800000pt;}
._4{width:6223.094400pt;}
.fs1{font-size:71.111093pt;}
.fs0{font-size:106.666667pt;}
.fs4{font-size:128.000000pt;}
.fs6{font-size:160.000000pt;}
.fs3{font-size:192.000000pt;}
.fs2{font-size:256.000000pt;}
.fs5{font-size:293.333333pt;}
.fs7{font-size:426.666642pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:4.367733pt;}
.yd{bottom:7.614461pt;}
.y15{bottom:22.451600pt;}
.y10{bottom:23.692387pt;}
.y13{bottom:23.783867pt;}
.ye{bottom:29.775600pt;}
.y6{bottom:34.816133pt;}
.y17{bottom:34.816267pt;}
.y19{bottom:52.550533pt;}
.yf{bottom:54.359053pt;}
.y3{bottom:57.391200pt;}
.y1e{bottom:69.383867pt;}
.y2{bottom:88.057867pt;}
.y5{bottom:104.601733pt;}
.y1{bottom:126.831200pt;}
.y1d{bottom:139.169467pt;}
.y8{bottom:189.031467pt;}
.y7{bottom:333.210667pt;}
.y27{bottom:382.087867pt;}
.y22{bottom:436.887467pt;}
.y9{bottom:456.836667pt;}
.y4{bottom:547.234400pt;}
.y11{bottom:555.195333pt;}
.y18{bottom:567.350133pt;}
.y1a{bottom:577.266267pt;}
.y1c{bottom:649.110267pt;}
.y14{bottom:731.392267pt;}
.y12{bottom:731.703467pt;}
.y21{bottom:820.496933pt;}
.y20{bottom:964.676133pt;}
.y1f{bottom:1088.302133pt;}
.y16{bottom:1113.069200pt;}
.y26{bottom:1233.835200pt;}
.yc{bottom:1241.834400pt;}
.y25{bottom:1275.394667pt;}
.yb{bottom:1295.794000pt;}
.y24{bottom:1316.954133pt;}
.ya{bottom:1379.794667pt;}
.y23{bottom:1393.406667pt;}
.hc{height:53.600120pt;}
.hb{height:56.832293pt;}
.he{height:66.400000pt;}
.h2{height:74.114583pt;}
.h8{height:77.013333pt;}
.h9{height:85.507493pt;}
.hd{height:85.598960pt;}
.hf{height:93.568000pt;}
.h7{height:108.437500pt;}
.ha{height:115.477373pt;}
.h5{height:140.352000pt;}
.h1{height:160.006267pt;}
.h3{height:185.263067pt;}
.h4{height:187.136000pt;}
.h6{height:198.802083pt;}
.h10{height:311.893316pt;}
.h0{height:1440.000000pt;}
.w4{width:339.061333pt;}
.w2{width:369.482400pt;}
.w9{width:412.661333pt;}
.w6{width:619.871333pt;}
.w5{width:739.513733pt;}
.w7{width:781.173333pt;}
.w1{width:786.937067pt;}
.w3{width:848.912667pt;}
.w8{width:910.078667pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.xf{left:8.642400pt;}
.x14{left:16.063280pt;}
.x12{left:19.072000pt;}
.x16{left:21.711587pt;}
.x2{left:23.308000pt;}
.x4{left:25.601867pt;}
.x5{left:27.781200pt;}
.x3{left:28.924267pt;}
.x6{left:37.861200pt;}
.x13{left:41.678880pt;}
.x9{left:51.030987pt;}
.x19{left:72.812000pt;}
.x18{left:74.216000pt;}
.x7{left:137.510800pt;}
.x8{left:153.320267pt;}
.x10{left:313.381867pt;}
.xd{left:316.446400pt;}
.x1{left:380.903600pt;}
.xa{left:429.236667pt;}
.x1f{left:465.821600pt;}
.xb{left:481.121467pt;}
.x15{left:762.789200pt;}
.x24{left:822.686267pt;}
.xc{left:1151.455067pt;}
.x11{left:1222.987200pt;}
.xe{left:1237.710133pt;}
.x1a{left:1308.514933pt;}
.x1c{left:1372.138667pt;}
.x1d{left:1458.617333pt;}
.x1e{left:1474.428000pt;}
.x17{left:1649.921333pt;}
.x1b{left:2201.245333pt;}
.x21{left:2239.673333pt;}
.x22{left:2257.145333pt;}
.x20{left:2278.217333pt;}
.x23{left:2287.657333pt;}
}




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