
    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_1f10b0190a3e3d85045ec0ff.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_8b8896c5c228a30710cbdaba.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_f13d3bba64873cd0841faf9c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.030273;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_b971bee268983096ebf0f5d6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.030273;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.942000px;}
.lsf{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.714000px;}
.lsa{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.564600px;}
.ls6{letter-spacing:-0.515400px;}
.lsd{letter-spacing:-0.440400px;}
.ls5{letter-spacing:-0.224400px;}
.ls7{letter-spacing:-0.092400px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.008640px;}
.ls10{letter-spacing:0.031680px;}
.ls3{letter-spacing:0.040320px;}
.ls0{letter-spacing:0.204600px;}
.lse{letter-spacing:0.222000px;}
.ls2{letter-spacing:0.233280px;}
.lsb{letter-spacing:0.233400px;}
.ls1{letter-spacing:0.353280px;}
.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;}
}
.ws6{word-spacing:-13.651320px;}
.ws9{word-spacing:-13.478400px;}
.ws2{word-spacing:-13.455360px;}
.ws0{word-spacing:-13.446720px;}
.ws1{word-spacing:-13.354320px;}
.ws7{word-spacing:-13.006320px;}
.ws5{word-spacing:-12.931320px;}
.wsa{word-spacing:-12.882120px;}
.ws3{word-spacing:-12.834720px;}
.ws4{word-spacing:-12.732720px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-8.307840px;}
._4{margin-left:-5.753040px;}
._3{margin-left:-3.861360px;}
._2{margin-left:-2.190240px;}
._0{margin-left:-1.179360px;}
._1{width:1.792560px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(15,71,97);}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:120.996000px;}
.y29{bottom:142.596000px;}
.y54{bottom:147.816000px;}
.y28{bottom:164.370000px;}
.y53{bottom:169.590000px;}
.y27{bottom:186.150000px;}
.y52{bottom:191.190000px;}
.y26{bottom:207.930000px;}
.y51{bottom:212.970000px;}
.y25{bottom:229.530000px;}
.y50{bottom:246.810000px;}
.y24{bottom:251.310000px;}
.y4f{bottom:268.410000px;}
.y23{bottom:285.150000px;}
.y4e{bottom:290.190000px;}
.y22{bottom:306.795000px;}
.y4d{bottom:312.015000px;}
.y21{bottom:328.575000px;}
.y4c{bottom:333.795000px;}
.y20{bottom:350.355000px;}
.y4b{bottom:355.395000px;}
.y1f{bottom:372.135000px;}
.y4a{bottom:377.175000px;}
.y1e{bottom:393.735000px;}
.y49{bottom:398.955000px;}
.y1d{bottom:418.575000px;}
.y48{bottom:420.735000px;}
.y47{bottom:442.335000px;}
.y1c{bottom:452.235000px;}
.y46{bottom:464.115000px;}
.y1b{bottom:474.015000px;}
.y45{bottom:485.895000px;}
.y1a{bottom:495.795000px;}
.y19{bottom:517.575000px;}
.y44{bottom:519.555000px;}
.y43{bottom:541.335000px;}
.y18{bottom:551.235000px;}
.y42{bottom:563.115000px;}
.y17{bottom:573.045000px;}
.y41{bottom:584.925000px;}
.y16{bottom:606.705000px;}
.y40{bottom:618.585000px;}
.y15{bottom:628.485000px;}
.y3f{bottom:640.365000px;}
.y14{bottom:650.265000px;}
.y3e{bottom:662.145000px;}
.y13{bottom:671.865000px;}
.y3d{bottom:683.745000px;}
.y12{bottom:693.645000px;}
.y3c{bottom:705.525000px;}
.y3b{bottom:727.305000px;}
.y11{bottom:727.485000px;}
.y10{bottom:749.085000px;}
.y3a{bottom:760.965000px;}
.yf{bottom:770.865000px;}
.y39{bottom:782.745000px;}
.ye{bottom:792.645000px;}
.y38{bottom:807.405000px;}
.yd{bottom:814.425000px;}
.y37{bottom:841.245000px;}
.yc{bottom:848.085000px;}
.y36{bottom:863.070000px;}
.yb{bottom:869.910000px;}
.y35{bottom:884.670000px;}
.ya{bottom:891.690000px;}
.y34{bottom:906.450000px;}
.y9{bottom:913.290000px;}
.y8{bottom:935.070000px;}
.y33{bottom:940.290000px;}
.y32{bottom:961.890000px;}
.y7{bottom:968.910000px;}
.y31{bottom:983.670000px;}
.y6{bottom:990.510000px;}
.y5{bottom:1012.290000px;}
.y30{bottom:1017.330000px;}
.y4{bottom:1034.070000px;}
.y2f{bottom:1039.110000px;}
.y2e{bottom:1060.890000px;}
.y3{bottom:1067.730000px;}
.y56{bottom:1075.830000px;}
.y2d{bottom:1085.550000px;}
.y2{bottom:1097.070000px;}
.y55{bottom:1097.610000px;}
.y2c{bottom:1119.390000px;}
.y1{bottom:1124.790000px;}
.y2b{bottom:1141.200000px;}
.h4{height:55.987031px;}
.h3{height:57.410156px;}
.h2{height:73.010742px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.837333pt;}
.lsf{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.634667pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.501867pt;}
.ls6{letter-spacing:-0.458133pt;}
.lsd{letter-spacing:-0.391467pt;}
.ls5{letter-spacing:-0.199467pt;}
.ls7{letter-spacing:-0.082133pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.007680pt;}
.ls10{letter-spacing:0.028160pt;}
.ls3{letter-spacing:0.035840pt;}
.ls0{letter-spacing:0.181867pt;}
.lse{letter-spacing:0.197333pt;}
.ls2{letter-spacing:0.207360pt;}
.lsb{letter-spacing:0.207467pt;}
.ls1{letter-spacing:0.314027pt;}
.ws6{word-spacing:-12.134507pt;}
.ws9{word-spacing:-11.980800pt;}
.ws2{word-spacing:-11.960320pt;}
.ws0{word-spacing:-11.952640pt;}
.ws1{word-spacing:-11.870507pt;}
.ws7{word-spacing:-11.561173pt;}
.ws5{word-spacing:-11.494507pt;}
.wsa{word-spacing:-11.450773pt;}
.ws3{word-spacing:-11.408640pt;}
.ws4{word-spacing:-11.317973pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-7.384747pt;}
._4{margin-left:-5.113813pt;}
._3{margin-left:-3.432320pt;}
._2{margin-left:-1.946880pt;}
._0{margin-left:-1.048320pt;}
._1{width:1.593387pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:107.552000pt;}
.y29{bottom:126.752000pt;}
.y54{bottom:131.392000pt;}
.y28{bottom:146.106667pt;}
.y53{bottom:150.746667pt;}
.y27{bottom:165.466667pt;}
.y52{bottom:169.946667pt;}
.y26{bottom:184.826667pt;}
.y51{bottom:189.306667pt;}
.y25{bottom:204.026667pt;}
.y50{bottom:219.386667pt;}
.y24{bottom:223.386667pt;}
.y4f{bottom:238.586667pt;}
.y23{bottom:253.466667pt;}
.y4e{bottom:257.946667pt;}
.y22{bottom:272.706667pt;}
.y4d{bottom:277.346667pt;}
.y21{bottom:292.066667pt;}
.y4c{bottom:296.706667pt;}
.y20{bottom:311.426667pt;}
.y4b{bottom:315.906667pt;}
.y1f{bottom:330.786667pt;}
.y4a{bottom:335.266667pt;}
.y1e{bottom:349.986667pt;}
.y49{bottom:354.626667pt;}
.y1d{bottom:372.066667pt;}
.y48{bottom:373.986667pt;}
.y47{bottom:393.186667pt;}
.y1c{bottom:401.986667pt;}
.y46{bottom:412.546667pt;}
.y1b{bottom:421.346667pt;}
.y45{bottom:431.906667pt;}
.y1a{bottom:440.706667pt;}
.y19{bottom:460.066667pt;}
.y44{bottom:461.826667pt;}
.y43{bottom:481.186667pt;}
.y18{bottom:489.986667pt;}
.y42{bottom:500.546667pt;}
.y17{bottom:509.373333pt;}
.y41{bottom:519.933333pt;}
.y16{bottom:539.293333pt;}
.y40{bottom:549.853333pt;}
.y15{bottom:558.653333pt;}
.y3f{bottom:569.213333pt;}
.y14{bottom:578.013333pt;}
.y3e{bottom:588.573333pt;}
.y13{bottom:597.213333pt;}
.y3d{bottom:607.773333pt;}
.y12{bottom:616.573333pt;}
.y3c{bottom:627.133333pt;}
.y3b{bottom:646.493333pt;}
.y11{bottom:646.653333pt;}
.y10{bottom:665.853333pt;}
.y3a{bottom:676.413333pt;}
.yf{bottom:685.213333pt;}
.y39{bottom:695.773333pt;}
.ye{bottom:704.573333pt;}
.y38{bottom:717.693333pt;}
.yd{bottom:723.933333pt;}
.y37{bottom:747.773333pt;}
.yc{bottom:753.853333pt;}
.y36{bottom:767.173333pt;}
.yb{bottom:773.253333pt;}
.y35{bottom:786.373333pt;}
.ya{bottom:792.613333pt;}
.y34{bottom:805.733333pt;}
.y9{bottom:811.813333pt;}
.y8{bottom:831.173333pt;}
.y33{bottom:835.813333pt;}
.y32{bottom:855.013333pt;}
.y7{bottom:861.253333pt;}
.y31{bottom:874.373333pt;}
.y6{bottom:880.453333pt;}
.y5{bottom:899.813333pt;}
.y30{bottom:904.293333pt;}
.y4{bottom:919.173333pt;}
.y2f{bottom:923.653333pt;}
.y2e{bottom:943.013333pt;}
.y3{bottom:949.093333pt;}
.y56{bottom:956.293333pt;}
.y2d{bottom:964.933333pt;}
.y2{bottom:975.173333pt;}
.y55{bottom:975.653333pt;}
.y2c{bottom:995.013333pt;}
.y1{bottom:999.813333pt;}
.y2b{bottom:1014.400000pt;}
.h4{height:49.766250pt;}
.h3{height:51.031250pt;}
.h2{height:64.898438pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
}




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