
    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_5b189d75a0d146b6c6b8cd9a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936035;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_1f72e338a0f9401a1e5e50c8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_19a065149040865488505c62.woff')format("woff");}.ff3{font-family:ff3;line-height:0.937500;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_f07663b148e67c85686879cb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6e67eee3bff9f2a346ef88b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.858398;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:-12.780011px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-6.448327px;}
._3{margin-left:-4.384787px;}
._a{margin-left:-3.038390px;}
._1{margin-left:-1.218228px;}
._0{width:1.759663px;}
._2{width:3.052074px;}
._4{width:4.635384px;}
._9{width:5.912696px;}
._7{width:7.297984px;}
._8{width:8.843112px;}
._d{width:10.008060px;}
._c{width:11.015995px;}
._b{width:12.251635px;}
._14{width:14.898385px;}
._f{width:16.781873px;}
._10{width:17.844502px;}
._5{width:19.548205px;}
._6{width:20.724613px;}
._e{width:21.895365px;}
._11{width:29.594910px;}
._13{width:2513.095000px;}
.fc2{color:rgb(70,65,139);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:33.839677px;}
.fs5{font-size:45.360414px;}
.fs1{font-size:51.120045px;}
.fs4{font-size:53.280275px;}
.fs2{font-size:56.160091px;}
.fs3{font-size:113.039767px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.341054px;}
.y1{bottom:38.351445px;}
.y2f{bottom:71.448990px;}
.y4b{bottom:71.456425px;}
.y4a{bottom:88.013049px;}
.y49{bottom:104.573643px;}
.y48{bottom:121.134316px;}
.y47{bottom:137.690940px;}
.y46{bottom:154.255662px;}
.y45{bottom:170.816335px;}
.y44{bottom:187.555803px;}
.y3e{bottom:204.116476px;}
.y3d{bottom:220.677150px;}
.y3c{bottom:237.233694px;}
.y3b{bottom:253.794367px;}
.y3a{bottom:270.350991px;}
.y39{bottom:286.919763px;}
.y38{bottom:303.476387px;}
.y37{bottom:320.219904px;}
.y36{bottom:336.776528px;}
.y35{bottom:353.337201px;}
.y34{bottom:369.893745px;}
.y33{bottom:386.454419px;}
.y32{bottom:403.015092px;}
.y31{bottom:419.579814px;}
.y30{bottom:436.136438px;}
.y2e{bottom:452.697032px;}
.y25{bottom:469.436579px;}
.y24{bottom:485.997252px;}
.y23{bottom:502.557925px;}
.y22{bottom:519.114470px;}
.y21{bottom:535.675143px;}
.y20{bottom:552.239865px;}
.y1f{bottom:568.800538px;}
.y2d{bottom:585.357122px;}
.y1e{bottom:601.917756px;}
.y1d{bottom:618.657303px;}
.y1c{bottom:635.217937px;}
.y1b{bottom:651.774521px;}
.y1a{bottom:668.335194px;}
.y19{bottom:684.895867px;}
.y18{bottom:701.460589px;}
.y17{bottom:718.017174px;}
.y16{bottom:734.577807px;}
.y15{bottom:751.138480px;}
.y14{bottom:767.877988px;}
.y13{bottom:784.437033px;}
.y12{bottom:800.996039px;}
.y11{bottom:817.555085px;}
.y2c{bottom:834.120640px;}
.y10{bottom:850.679646px;}
.yf{bottom:867.238692px;}
.ye{bottom:883.797718px;}
.y40{bottom:900.538325px;}
.yd{bottom:900.538853px;}
.yc{bottom:917.097898px;}
.y3f{bottom:917.099990px;}
.y43{bottom:917.101948px;}
.yb{bottom:933.656924px;}
.ya{bottom:950.215950px;}
.y42{bottom:950.219068px;}
.y9{bottom:966.781486px;}
.y41{bottom:983.336188px;}
.y8{bottom:983.340511px;}
.y7{bottom:999.899557px;}
.y2b{bottom:1016.458582px;}
.y6{bottom:1016.467121px;}
.y2a{bottom:1033.017618px;}
.y29{bottom:1049.758753px;}
.y5{bottom:1049.763621px;}
.y28{bottom:1066.317789px;}
.y27{bottom:1082.876815px;}
.y4{bottom:1082.880741px;}
.y26{bottom:1099.442351px;}
.y3{bottom:1156.677313px;}
.h1{height:25.379758px;}
.h7{height:34.020310px;}
.h9{height:36.109874px;}
.h6{height:37.020426px;}
.h8{height:38.298466px;}
.h2{height:38.340034px;}
.h5{height:39.960207px;}
.h3{height:42.120068px;}
.h4{height:84.779825px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:63.182430px;}
.x8{left:91.080452px;}
.x9{left:111.061276px;}
.x4{left:138.953912px;}
.x3{left:140.400232px;}
.xa{left:199.260232px;}
.x7{left:387.362396px;}
.xb{left:444.956093px;}
.x5{left:493.023026px;}
.x6{left:505.083778px;}
.x1{left:705.053521px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-11.360010pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-5.731847pt;}
._3{margin-left:-3.897588pt;}
._a{margin-left:-2.700791pt;}
._1{margin-left:-1.082870pt;}
._0{width:1.564145pt;}
._2{width:2.712954pt;}
._4{width:4.120341pt;}
._9{width:5.255730pt;}
._7{width:6.487097pt;}
._8{width:7.860544pt;}
._d{width:8.896053pt;}
._c{width:9.791996pt;}
._b{width:10.890342pt;}
._14{width:13.243009pt;}
._f{width:14.917220pt;}
._10{width:15.861780pt;}
._5{width:17.376182pt;}
._6{width:18.421878pt;}
._e{width:19.462547pt;}
._11{width:26.306587pt;}
._13{width:2233.862222pt;}
.fs0{font-size:30.079713pt;}
.fs5{font-size:40.320368pt;}
.fs1{font-size:45.440040pt;}
.fs4{font-size:47.360245pt;}
.fs2{font-size:49.920081pt;}
.fs3{font-size:100.479793pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:34.080937pt;}
.y1{bottom:34.090174pt;}
.y2f{bottom:63.510213pt;}
.y4b{bottom:63.516822pt;}
.y4a{bottom:78.233822pt;}
.y49{bottom:92.954349pt;}
.y48{bottom:107.674948pt;}
.y47{bottom:122.391947pt;}
.y46{bottom:137.116144pt;}
.y45{bottom:151.836743pt;}
.y44{bottom:166.716270pt;}
.y3e{bottom:181.436868pt;}
.y3d{bottom:196.157466pt;}
.y3c{bottom:210.874395pt;}
.y3b{bottom:225.594993pt;}
.y3a{bottom:240.311992pt;}
.y39{bottom:255.039789pt;}
.y38{bottom:269.756788pt;}
.y37{bottom:284.639914pt;}
.y36{bottom:299.356913pt;}
.y35{bottom:314.077512pt;}
.y34{bottom:328.794440pt;}
.y33{bottom:343.515039pt;}
.y32{bottom:358.235637pt;}
.y31{bottom:372.959834pt;}
.y30{bottom:387.676834pt;}
.y2e{bottom:402.397361pt;}
.y25{bottom:417.276959pt;}
.y24{bottom:431.997557pt;}
.y23{bottom:446.718156pt;}
.y22{bottom:461.435084pt;}
.y21{bottom:476.155682pt;}
.y20{bottom:490.879880pt;}
.y1f{bottom:505.600478pt;}
.y2d{bottom:520.317442pt;}
.y1e{bottom:535.038005pt;}
.y1d{bottom:549.917603pt;}
.y1c{bottom:564.638166pt;}
.y1b{bottom:579.355130pt;}
.y1a{bottom:594.075728pt;}
.y19{bottom:608.796326pt;}
.y18{bottom:623.520524pt;}
.y17{bottom:638.237488pt;}
.y16{bottom:652.958051pt;}
.y15{bottom:667.678649pt;}
.y14{bottom:682.558211pt;}
.y13{bottom:697.277363pt;}
.y12{bottom:711.996479pt;}
.y11{bottom:726.715631pt;}
.y2c{bottom:741.440569pt;}
.y10{bottom:756.159686pt;}
.yf{bottom:770.878837pt;}
.ye{bottom:785.597971pt;}
.y40{bottom:800.478511pt;}
.yd{bottom:800.478980pt;}
.yc{bottom:815.198132pt;}
.y3f{bottom:815.199991pt;}
.y43{bottom:815.201732pt;}
.yb{bottom:829.917266pt;}
.ya{bottom:844.636400pt;}
.y42{bottom:844.639172pt;}
.y9{bottom:859.361321pt;}
.y41{bottom:874.076612pt;}
.y8{bottom:874.080454pt;}
.y7{bottom:888.799606pt;}
.y2b{bottom:903.518740pt;}
.y6{bottom:903.526329pt;}
.y2a{bottom:918.237883pt;}
.y29{bottom:933.118892pt;}
.y5{bottom:933.123219pt;}
.y28{bottom:947.838035pt;}
.y27{bottom:962.557169pt;}
.y4{bottom:962.560659pt;}
.y26{bottom:977.282089pt;}
.y3{bottom:1028.157611pt;}
.h1{height:22.559784pt;}
.h7{height:30.240276pt;}
.h9{height:32.097666pt;}
.h6{height:32.907045pt;}
.h8{height:34.043081pt;}
.h2{height:34.080030pt;}
.h5{height:35.520184pt;}
.h3{height:37.440061pt;}
.h4{height:75.359845pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:56.162160pt;}
.x8{left:80.960402pt;}
.x9{left:98.721134pt;}
.x4{left:123.514588pt;}
.x3{left:124.800207pt;}
.xa{left:177.120206pt;}
.x7{left:344.322130pt;}
.xb{left:395.516527pt;}
.x5{left:438.242690pt;}
.x6{left:448.963358pt;}
.x1{left:626.714241pt;}
}




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