
    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_a50976ed899676fc481cbd13.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.744500;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_2ef0c4d7916dcf12017b6b2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923500;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_4995b39c0740d665359bdcfb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.965500;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_02155c44c75abc3e826289fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923500;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_be572d3586bc4131a2a144f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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_b7e37b7aa3c2a5d457cdccea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958000;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:ff7;src:url('chunks/assets/font_e02e7c4ba5f6e92b86da37cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.918500;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:ff8;src:url('chunks/assets/font_a1803d51ebf0fc52fc4a6939.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918500;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;}
.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:-99.795152px;}
.ws1{word-spacing:-79.137340px;}
.ws4{word-spacing:-49.144249px;}
.ws3{word-spacing:-49.134532px;}
.ws2{word-spacing:-38.832245px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.015986px;}
._5{width:14.532788px;}
._13{width:24.487513px;}
._b{width:28.580262px;}
._8{width:41.034993px;}
._4{width:44.484508px;}
._9{width:48.564565px;}
._12{width:51.033316px;}
._c{width:52.707333px;}
._3{width:56.723090px;}
._11{width:58.895331px;}
._7{width:61.057793px;}
._6{width:70.891458px;}
._f{width:97.996253px;}
._a{width:111.049963px;}
._e{width:133.905517px;}
._1{width:143.128320px;}
._d{width:154.613579px;}
._10{width:177.219188px;}
._2{width:228.236110px;}
.fc5{color:transparent;}
.fc1{color:rgb(23,179,203);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(228,228,228);}
.fc2{color:rgb(63,63,63);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:140.314432px;}
.fs3{font-size:159.803479px;}
.fs8{font-size:180.662975px;}
.fs6{font-size:191.969721px;}
.fs5{font-size:198.006254px;}
.fs1{font-size:207.051532px;}
.fs4{font-size:209.976631px;}
.fs7{font-size:342.010802px;}
.fs0{font-size:432.013645px;}
.y0{bottom:0.000000px;}
.ya{bottom:9.185101px;}
.y30{bottom:10.694561px;}
.y2b{bottom:11.263353px;}
.y1f{bottom:11.385785px;}
.y26{bottom:11.406193px;}
.y2e{bottom:11.466934px;}
.y28{bottom:11.510933px;}
.y9{bottom:64.280912px;}
.y2a{bottom:77.638257px;}
.y1e{bottom:77.760689px;}
.y2d{bottom:77.841838px;}
.y8{bottom:119.376724px;}
.y6{bottom:193.634029px;}
.y2f{bottom:677.789850px;}
.y1b{bottom:2738.394162px;}
.y1a{bottom:2811.521472px;}
.y19{bottom:2884.648781px;}
.y2c{bottom:2892.509850px;}
.y24{bottom:2950.796913px;}
.y18{bottom:3007.277655px;}
.y29{bottom:3056.309850px;}
.y17{bottom:3080.404964px;}
.y23{bottom:3086.697089px;}
.y16{bottom:3153.532274px;}
.y22{bottom:3222.597089px;}
.y27{bottom:3225.149850px;}
.y15{bottom:3226.659584px;}
.y14{bottom:3349.288457px;}
.y25{bottom:3350.429850px;}
.y21{bottom:3358.497440px;}
.y13{bottom:3422.415767px;}
.y1d{bottom:3453.389850px;}
.y20{bottom:3494.397616px;}
.y12{bottom:3495.543076px;}
.y11{bottom:3568.670386px;}
.y10{bottom:3641.797696px;}
.yf{bottom:3714.925005px;}
.y1c{bottom:3720.186536px;}
.ye{bottom:3837.553878px;}
.yd{bottom:3910.681188px;}
.yc{bottom:3983.808498px;}
.yb{bottom:4056.935808px;}
.y5{bottom:4220.080761px;}
.y4{bottom:4292.083036px;}
.y3{bottom:4525.466708px;}
.y2{bottom:4676.221470px;}
.y7{bottom:4730.669850px;}
.y1{bottom:4826.976231px;}
.h12{height:54.000000px;}
.hf{height:57.600000px;}
.h10{height:57.960000px;}
.h5{height:104.253623px;}
.h7{height:118.733985px;}
.h11{height:123.840000px;}
.hc{height:124.200000px;}
.h13{height:133.058281px;}
.ha{height:148.801700px;}
.hd{height:148.872519px;}
.h8{height:157.797438px;}
.h6{height:159.120000px;}
.h4{height:162.535453px;}
.h9{height:162.836878px;}
.hb{height:164.831656px;}
.he{height:257.021118px;}
.h3{height:320.986138px;}
.h2{height:5055.749850px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.w6{width:148.680000px;}
.w2{width:455.040000px;}
.w4{width:1083.960000px;}
.w5{width:1130.040000px;}
.w3{width:1139.040000px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x4{left:97.530820px;}
.x8{left:113.685579px;}
.x1{left:133.142146px;}
.x6{left:208.758725px;}
.x7{left:245.656101px;}
.x2{left:319.268244px;}
.x3{left:1379.860341px;}
.x9{left:1837.985625px;}
.xb{left:2255.654004px;}
.xa{left:2350.440000px;}
.x5{left:2973.240000px;}
.xc{left:3294.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-88.706802pt;}
.ws1{word-spacing:-70.344302pt;}
.ws4{word-spacing:-43.683777pt;}
.ws3{word-spacing:-43.675139pt;}
.ws2{word-spacing:-34.517552pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-0.903099pt;}
._5{width:12.918034pt;}
._13{width:21.766678pt;}
._b{width:25.404677pt;}
._8{width:36.475549pt;}
._4{width:39.541785pt;}
._9{width:43.168502pt;}
._12{width:45.362947pt;}
._c{width:46.850963pt;}
._3{width:50.420524pt;}
._11{width:52.351406pt;}
._7{width:54.273594pt;}
._6{width:63.014629pt;}
._f{width:87.107780pt;}
._a{width:98.711078pt;}
._e{width:119.027126pt;}
._1{width:127.225173pt;}
._d{width:137.434292pt;}
._10{width:157.528167pt;}
._2{width:202.876542pt;}
.fs2{font-size:124.723939pt;}
.fs3{font-size:142.047537pt;}
.fs8{font-size:160.589311pt;}
.fs6{font-size:170.639752pt;}
.fs5{font-size:176.005559pt;}
.fs1{font-size:184.045806pt;}
.fs4{font-size:186.645895pt;}
.fs7{font-size:304.009602pt;}
.fs0{font-size:384.012129pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:8.164534pt;}
.y30{bottom:9.506277pt;}
.y2b{bottom:10.011870pt;}
.y1f{bottom:10.120698pt;}
.y26{bottom:10.138838pt;}
.y2e{bottom:10.192830pt;}
.y28{bottom:10.231940pt;}
.y9{bottom:57.138589pt;}
.y2a{bottom:69.011784pt;}
.y1e{bottom:69.120612pt;}
.y2d{bottom:69.192745pt;}
.y8{bottom:106.112643pt;}
.y6{bottom:172.119137pt;}
.y2f{bottom:602.479867pt;}
.y1b{bottom:2434.128144pt;}
.y1a{bottom:2499.130197pt;}
.y19{bottom:2564.132250pt;}
.y2c{bottom:2571.119867pt;}
.y24{bottom:2622.930589pt;}
.y18{bottom:2673.135693pt;}
.y29{bottom:2716.719867pt;}
.y17{bottom:2738.137746pt;}
.y23{bottom:2743.730746pt;}
.y16{bottom:2803.139799pt;}
.y22{bottom:2864.530746pt;}
.y27{bottom:2866.799867pt;}
.y15{bottom:2868.141852pt;}
.y14{bottom:2977.145295pt;}
.y25{bottom:2978.159867pt;}
.y21{bottom:2985.331058pt;}
.y13{bottom:3042.147348pt;}
.y1d{bottom:3069.679867pt;}
.y20{bottom:3106.131214pt;}
.y12{bottom:3107.149401pt;}
.y11{bottom:3172.151454pt;}
.y10{bottom:3237.153507pt;}
.yf{bottom:3302.155560pt;}
.y1c{bottom:3306.832476pt;}
.ye{bottom:3411.159003pt;}
.yd{bottom:3476.161056pt;}
.yc{bottom:3541.163109pt;}
.yb{bottom:3606.165162pt;}
.y5{bottom:3751.182899pt;}
.y4{bottom:3815.184920pt;}
.y3{bottom:4022.637074pt;}
.y2{bottom:4156.641307pt;}
.y7{bottom:4205.039867pt;}
.y1{bottom:4290.645539pt;}
.h12{height:48.000000pt;}
.hf{height:51.200000pt;}
.h10{height:51.520000pt;}
.h5{height:92.669887pt;}
.h7{height:105.541320pt;}
.h11{height:110.080000pt;}
.hc{height:110.400000pt;}
.h13{height:118.274028pt;}
.ha{height:132.268178pt;}
.hd{height:132.331128pt;}
.h8{height:140.264390pt;}
.h6{height:141.440000pt;}
.h4{height:144.475958pt;}
.h9{height:144.743891pt;}
.hb{height:146.517027pt;}
.he{height:228.463216pt;}
.h3{height:285.321012pt;}
.h2{height:4493.999867pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.w6{width:132.160000pt;}
.w2{width:404.480000pt;}
.w4{width:963.520000pt;}
.w5{width:1004.480000pt;}
.w3{width:1012.480000pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x4{left:86.694062pt;}
.x8{left:101.053848pt;}
.x1{left:118.348574pt;}
.x6{left:185.563311pt;}
.x7{left:218.360979pt;}
.x2{left:283.793994pt;}
.x3{left:1226.542526pt;}
.x9{left:1633.765000pt;}
.xb{left:2005.025781pt;}
.xa{left:2089.280000pt;}
.x5{left:2642.880000pt;}
.xc{left:2928.320000pt;}
}




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