
    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_02e32b6da3942571b1687ce0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_6042c0cfc3b6ed0b03ad17b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_85ab04b5753db0078c09b0f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_9213c353bbe2aa4be1dd454e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_a0257ee98fb33e5683c20106.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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:ff6;src:url('chunks/assets/font_e4794f91a33dee910eb472b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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:-61.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.586080px;}
.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:-35.640000px;}
.ws2{word-spacing:-15.397920px;}
.ws3{word-spacing:-14.811840px;}
.ws1{word-spacing:-13.210560px;}
.ws0{word-spacing:-8.406720px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:639.972000px;}
._3{margin-left:-1.385280px;}
._0{width:1.092960px;}
._1{width:2.458080px;}
._f{width:3.516480px;}
._8{width:5.541120px;}
._5{width:6.979680px;}
._a{width:8.418240px;}
._6{width:12.733920px;}
._2{width:19.926720px;}
._4{width:25.680960px;}
._7{width:29.996640px;}
._b{width:36.015840px;}
._e{width:53.704800px;}
._d{width:54.851040px;}
._10{width:75.656160px;}
._9{width:109.550880px;}
._c{width:378.210240px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.240000px;}
.fs0{font-size:47.520000px;}
.fs2{font-size:53.280000px;}
.y0{bottom:0.000000px;}
.y10{bottom:2.520000px;}
.yf{bottom:29.160000px;}
.y1a{bottom:120.600000px;}
.ye{bottom:122.040000px;}
.y2a{bottom:151.560000px;}
.y19{bottom:167.400000px;}
.y1e{bottom:190.800000px;}
.y29{bottom:191.520000px;}
.y28{bottom:207.000000px;}
.y27{bottom:247.320000px;}
.y26{bottom:287.280000px;}
.y25{bottom:302.760000px;}
.y24{bottom:342.720000px;}
.yd{bottom:357.480000px;}
.y23{bottom:358.200000px;}
.yc{bottom:372.960000px;}
.y1d{bottom:419.400000px;}
.yb{bottom:450.360000px;}
.y18{bottom:495.720000px;}
.y17{bottom:511.200000px;}
.y22{bottom:630.000000px;}
.y16{bottom:668.880000px;}
.y35{bottom:690.480000px;}
.y34{bottom:745.920000px;}
.y33{bottom:761.760000px;}
.y32{bottom:786.240000px;}
.y31{bottom:841.680000px;}
.y30{bottom:882.000000px;}
.y15{bottom:890.640000px;}
.ya{bottom:894.600000px;}
.y1c{bottom:918.720000px;}
.y2f{bottom:937.440000px;}
.y2e{bottom:977.400000px;}
.y2d{bottom:992.880000px;}
.y21{bottom:1019.880000px;}
.y2c{bottom:1032.840000px;}
.y14{bottom:1050.840000px;}
.y9{bottom:1069.920000px;}
.y2b{bottom:1072.800000px;}
.y20{bottom:1081.800000px;}
.y8{bottom:1083.960000px;}
.y7{bottom:1097.640000px;}
.y6{bottom:1111.320000px;}
.y13{bottom:1113.120000px;}
.y5{bottom:1125.360000px;}
.y1b{bottom:1128.600000px;}
.y4{bottom:1139.040000px;}
.y12{bottom:1144.080000px;}
.y3{bottom:1152.720000px;}
.y2{bottom:1166.760000px;}
.y1{bottom:1180.440000px;}
.y1f{bottom:1184.760000px;}
.y11{bottom:1198.440000px;}
.h4{height:13.679850px;}
.h2{height:49.561875px;}
.h5{height:50.703840px;}
.h3{height:55.569375px;}
.h1{height:56.019375px;}
.h0{height:1263.000000px;}
.w1{width:20.520000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x20{left:84.960000px;}
.xa{left:88.200000px;}
.x1d{left:92.880000px;}
.x24{left:106.560000px;}
.x21{left:130.320000px;}
.x13{left:136.080000px;}
.x11{left:142.920000px;}
.x18{left:144.720000px;}
.x2c{left:185.040000px;}
.x2e{left:190.800000px;}
.x22{left:201.960000px;}
.x1f{left:210.960000px;}
.x15{left:265.320000px;}
.x2d{left:266.400000px;}
.xc{left:286.200000px;}
.xd{left:291.600000px;}
.x2b{left:316.440000px;}
.x12{left:319.320000px;}
.x17{left:385.920000px;}
.xb{left:390.960000px;}
.x16{left:394.920000px;}
.x14{left:396.360000px;}
.x1e{left:406.440000px;}
.x10{left:415.080000px;}
.x2a{left:424.440000px;}
.x28{left:453.600000px;}
.x26{left:495.360000px;}
.x27{left:500.760000px;}
.x1c{left:553.320000px;}
.x1a{left:568.800000px;}
.x19{left:587.880000px;}
.x23{left:609.120000px;}
.x1b{left:668.880000px;}
.x7{left:685.440000px;}
.x2{left:687.240000px;}
.x1{left:691.560000px;}
.x5{left:694.440000px;}
.x4{left:700.560000px;}
.x8{left:703.800000px;}
.x9{left:716.400000px;}
.x3{left:721.080000px;}
.xe{left:728.640000px;}
.x29{left:731.880000px;}
.x6{left:752.400000px;}
.x25{left:784.800000px;}
.xf{left:787.680000px;}
@media print{
.v2{vertical-align:-55.040000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.520960pt;}
.ws4{word-spacing:-31.680000pt;}
.ws2{word-spacing:-13.687040pt;}
.ws3{word-spacing:-13.166080pt;}
.ws1{word-spacing:-11.742720pt;}
.ws0{word-spacing:-7.472640pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:568.864000pt;}
._3{margin-left:-1.231360pt;}
._0{width:0.971520pt;}
._1{width:2.184960pt;}
._f{width:3.125760pt;}
._8{width:4.925440pt;}
._5{width:6.204160pt;}
._a{width:7.482880pt;}
._6{width:11.319040pt;}
._2{width:17.712640pt;}
._4{width:22.827520pt;}
._7{width:26.663680pt;}
._b{width:32.014080pt;}
._e{width:47.737600pt;}
._d{width:48.756480pt;}
._10{width:67.249920pt;}
._9{width:97.378560pt;}
._c{width:336.186880pt;}
.fs1{font-size:26.880000pt;}
.fs0{font-size:42.240000pt;}
.fs2{font-size:47.360000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:2.240000pt;}
.yf{bottom:25.920000pt;}
.y1a{bottom:107.200000pt;}
.ye{bottom:108.480000pt;}
.y2a{bottom:134.720000pt;}
.y19{bottom:148.800000pt;}
.y1e{bottom:169.600000pt;}
.y29{bottom:170.240000pt;}
.y28{bottom:184.000000pt;}
.y27{bottom:219.840000pt;}
.y26{bottom:255.360000pt;}
.y25{bottom:269.120000pt;}
.y24{bottom:304.640000pt;}
.yd{bottom:317.760000pt;}
.y23{bottom:318.400000pt;}
.yc{bottom:331.520000pt;}
.y1d{bottom:372.800000pt;}
.yb{bottom:400.320000pt;}
.y18{bottom:440.640000pt;}
.y17{bottom:454.400000pt;}
.y22{bottom:560.000000pt;}
.y16{bottom:594.560000pt;}
.y35{bottom:613.760000pt;}
.y34{bottom:663.040000pt;}
.y33{bottom:677.120000pt;}
.y32{bottom:698.880000pt;}
.y31{bottom:748.160000pt;}
.y30{bottom:784.000000pt;}
.y15{bottom:791.680000pt;}
.ya{bottom:795.200000pt;}
.y1c{bottom:816.640000pt;}
.y2f{bottom:833.280000pt;}
.y2e{bottom:868.800000pt;}
.y2d{bottom:882.560000pt;}
.y21{bottom:906.560000pt;}
.y2c{bottom:918.080000pt;}
.y14{bottom:934.080000pt;}
.y9{bottom:951.040000pt;}
.y2b{bottom:953.600000pt;}
.y20{bottom:961.600000pt;}
.y8{bottom:963.520000pt;}
.y7{bottom:975.680000pt;}
.y6{bottom:987.840000pt;}
.y13{bottom:989.440000pt;}
.y5{bottom:1000.320000pt;}
.y1b{bottom:1003.200000pt;}
.y4{bottom:1012.480000pt;}
.y12{bottom:1016.960000pt;}
.y3{bottom:1024.640000pt;}
.y2{bottom:1037.120000pt;}
.y1{bottom:1049.280000pt;}
.y1f{bottom:1053.120000pt;}
.y11{bottom:1065.280000pt;}
.h4{height:12.159867pt;}
.h2{height:44.055000pt;}
.h5{height:45.070080pt;}
.h3{height:49.395000pt;}
.h1{height:49.795000pt;}
.h0{height:1122.666667pt;}
.w1{width:18.240000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x20{left:75.520000pt;}
.xa{left:78.400000pt;}
.x1d{left:82.560000pt;}
.x24{left:94.720000pt;}
.x21{left:115.840000pt;}
.x13{left:120.960000pt;}
.x11{left:127.040000pt;}
.x18{left:128.640000pt;}
.x2c{left:164.480000pt;}
.x2e{left:169.600000pt;}
.x22{left:179.520000pt;}
.x1f{left:187.520000pt;}
.x15{left:235.840000pt;}
.x2d{left:236.800000pt;}
.xc{left:254.400000pt;}
.xd{left:259.200000pt;}
.x2b{left:281.280000pt;}
.x12{left:283.840000pt;}
.x17{left:343.040000pt;}
.xb{left:347.520000pt;}
.x16{left:351.040000pt;}
.x14{left:352.320000pt;}
.x1e{left:361.280000pt;}
.x10{left:368.960000pt;}
.x2a{left:377.280000pt;}
.x28{left:403.200000pt;}
.x26{left:440.320000pt;}
.x27{left:445.120000pt;}
.x1c{left:491.840000pt;}
.x1a{left:505.600000pt;}
.x19{left:522.560000pt;}
.x23{left:541.440000pt;}
.x1b{left:594.560000pt;}
.x7{left:609.280000pt;}
.x2{left:610.880000pt;}
.x1{left:614.720000pt;}
.x5{left:617.280000pt;}
.x4{left:622.720000pt;}
.x8{left:625.600000pt;}
.x9{left:636.800000pt;}
.x3{left:640.960000pt;}
.xe{left:647.680000pt;}
.x29{left:650.560000pt;}
.x6{left:668.800000pt;}
.x25{left:697.600000pt;}
.xf{left:700.160000pt;}
}




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