
    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_420176bd384fe1006ecb6619.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5021afdc7481553f2c6c80c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_0a1a246d1374cc7748b44646.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_845f68b42e9de35cc9086c3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_ab9d7e0717576efed68167bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.021238px;}
.ls3{letter-spacing:0.021282px;}
.ls1{letter-spacing:0.518460px;}
.ls0{letter-spacing:11.537395px;}
.ls4{letter-spacing:63.407975px;}
.ls5{letter-spacing:75.655170px;}
.ls2{letter-spacing:164.267334px;}
.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;}
}
.ws2{word-spacing:-18.021275px;}
.ws3{word-spacing:-18.021231px;}
.ws1{word-spacing:-17.999993px;}
.ws0{word-spacing:-12.059995px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-1.419566px;}
._2{width:1.151917px;}
._e{width:2.911290px;}
._12{width:4.460748px;}
._13{width:5.847895px;}
._9{width:7.741492px;}
._a{width:8.755517px;}
._4{width:10.636274px;}
._3{width:12.142195px;}
._5{width:13.198042px;}
._b{width:14.341097px;}
._f{width:16.544974px;}
._11{width:19.642256px;}
._c{width:32.249008px;}
._d{width:33.698210px;}
._7{width:35.723290px;}
._8{width:36.829368px;}
._10{width:56.015952px;}
._15{width:63.142323px;}
._16{width:64.149308px;}
._17{width:74.961631px;}
._19{width:76.028894px;}
._18{width:77.195035px;}
._1{width:129.064983px;}
._0{width:130.267224px;}
._14{width:164.015934px;}
._1b{width:318.137390px;}
._1a{width:319.342832px;}
._1c{width:931.532116px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.239981px;}
.fs1{font-size:71.999971px;}
.fs0{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y32{bottom:143.039943px;}
.y31{bottom:163.739935px;}
.y30{bottom:184.439926px;}
.y2f{bottom:205.139918px;}
.y2e{bottom:225.839910px;}
.y2d{bottom:246.539901px;}
.y2c{bottom:267.239893px;}
.y2b{bottom:287.939885px;}
.y2a{bottom:308.639877px;}
.y29{bottom:329.339868px;}
.y28{bottom:350.039860px;}
.y27{bottom:370.739852px;}
.y26{bottom:391.439843px;}
.y25{bottom:433.199827px;}
.y24{bottom:453.899818px;}
.y23{bottom:474.599810px;}
.y21{bottom:495.299802px;}
.y22{bottom:502.139799px;}
.y20{bottom:515.999794px;}
.y1f{bottom:536.699785px;}
.y1e{bottom:557.399777px;}
.y1d{bottom:578.099769px;}
.y1c{bottom:598.799760px;}
.y1b{bottom:619.319752px;}
.y1a{bottom:641.459743px;}
.y19{bottom:663.599735px;}
.y18{bottom:684.299726px;}
.y16{bottom:704.999718px;}
.y17{bottom:711.839715px;}
.y15{bottom:725.699710px;}
.y14{bottom:767.279693px;}
.y13{bottom:787.979685px;}
.y12{bottom:808.679677px;}
.y11{bottom:829.379668px;}
.yf{bottom:850.079660px;}
.y10{bottom:856.919657px;}
.ye{bottom:870.779652px;}
.yd{bottom:891.479643px;}
.yc{bottom:912.179635px;}
.yb{bottom:932.879627px;}
.ya{bottom:974.639610px;}
.y9{bottom:995.339602px;}
.y8{bottom:1002.179599px;}
.y7{bottom:1016.039594px;}
.y5{bottom:1036.739585px;}
.y6{bottom:1043.579583px;}
.y3{bottom:1057.439577px;}
.y4{bottom:1064.279574px;}
.y2{bottom:1100.639560px;}
.y1{bottom:1131.779547px;}
.h3{height:47.321348px;}
.h5{height:47.344903px;}
.h2{height:70.628878px;}
.h4{height:70.664034px;}
.h6{height:72.562471px;}
.h1{height:108.843706px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.xc{left:133.739947px;}
.xa{left:248.039901px;}
.xb{left:254.159898px;}
.x2{left:262.619895px;}
.x3{left:268.739893px;}
.x12{left:277.559889px;}
.x13{left:293.759882px;}
.xd{left:414.539834px;}
.x4{left:420.479832px;}
.x5{left:426.599829px;}
.xe{left:524.879790px;}
.xf{left:539.999784px;}
.x6{left:555.659778px;}
.x7{left:561.779775px;}
.x10{left:579.779768px;}
.x11{left:595.979762px;}
.x8{left:677.159729px;}
.x9{left:683.279727px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.018878pt;}
.ls3{letter-spacing:0.018917pt;}
.ls1{letter-spacing:0.460853pt;}
.ls0{letter-spacing:10.255463pt;}
.ls4{letter-spacing:56.362644pt;}
.ls5{letter-spacing:67.249040pt;}
.ls2{letter-spacing:146.015408pt;}
.ws2{word-spacing:-16.018911pt;}
.ws3{word-spacing:-16.018872pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:-10.719996pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-1.261836pt;}
._2{width:1.023926pt;}
._e{width:2.587813pt;}
._12{width:3.965109pt;}
._13{width:5.198129pt;}
._9{width:6.881327pt;}
._a{width:7.782681pt;}
._4{width:9.454466pt;}
._3{width:10.793062pt;}
._5{width:11.731593pt;}
._b{width:12.747642pt;}
._f{width:14.706644pt;}
._11{width:17.459783pt;}
._c{width:28.665785pt;}
._d{width:29.953965pt;}
._7{width:31.754035pt;}
._8{width:32.737216pt;}
._10{width:49.791957pt;}
._15{width:56.126509pt;}
._16{width:57.021607pt;}
._17{width:66.632561pt;}
._19{width:67.581239pt;}
._18{width:68.617809pt;}
._1{width:114.724430pt;}
._0{width:115.793088pt;}
._14{width:145.791942pt;}
._1b{width:282.788791pt;}
._1a{width:283.860295pt;}
._1c{width:828.028547pt;}
.fs2{font-size:42.879983pt;}
.fs1{font-size:63.999974pt;}
.fs0{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:127.146616pt;}
.y31{bottom:145.546608pt;}
.y30{bottom:163.946601pt;}
.y2f{bottom:182.346594pt;}
.y2e{bottom:200.746586pt;}
.y2d{bottom:219.146579pt;}
.y2c{bottom:237.546572pt;}
.y2b{bottom:255.946564pt;}
.y2a{bottom:274.346557pt;}
.y29{bottom:292.746550pt;}
.y28{bottom:311.146542pt;}
.y27{bottom:329.546535pt;}
.y26{bottom:347.946527pt;}
.y25{bottom:385.066513pt;}
.y24{bottom:403.466505pt;}
.y23{bottom:421.866498pt;}
.y21{bottom:440.266491pt;}
.y22{bottom:446.346488pt;}
.y20{bottom:458.666483pt;}
.y1f{bottom:477.066476pt;}
.y1e{bottom:495.466468pt;}
.y1d{bottom:513.866461pt;}
.y1c{bottom:532.266454pt;}
.y1b{bottom:550.506446pt;}
.y1a{bottom:570.186439pt;}
.y19{bottom:589.866431pt;}
.y18{bottom:608.266423pt;}
.y16{bottom:626.666416pt;}
.y17{bottom:632.746414pt;}
.y15{bottom:645.066409pt;}
.y14{bottom:682.026394pt;}
.y13{bottom:700.426386pt;}
.y12{bottom:718.826379pt;}
.y11{bottom:737.226372pt;}
.yf{bottom:755.626364pt;}
.y10{bottom:761.706362pt;}
.ye{bottom:774.026357pt;}
.yd{bottom:792.426350pt;}
.yc{bottom:810.826342pt;}
.yb{bottom:829.226335pt;}
.ya{bottom:866.346320pt;}
.y9{bottom:884.746313pt;}
.y8{bottom:890.826310pt;}
.y7{bottom:903.146305pt;}
.y5{bottom:921.546298pt;}
.y6{bottom:927.626296pt;}
.y3{bottom:939.946291pt;}
.y4{bottom:946.026288pt;}
.y2{bottom:978.346275pt;}
.y1{bottom:1006.026264pt;}
.h3{height:42.063421pt;}
.h5{height:42.084358pt;}
.h2{height:62.781225pt;}
.h4{height:62.812475pt;}
.h6{height:64.499974pt;}
.h1{height:96.749961pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.xc{left:118.879952pt;}
.xa{left:220.479912pt;}
.xb{left:225.919910pt;}
.x2{left:233.439907pt;}
.x3{left:238.879904pt;}
.x12{left:246.719901pt;}
.x13{left:261.119896pt;}
.xd{left:368.479853pt;}
.x4{left:373.759850pt;}
.x5{left:379.199848pt;}
.xe{left:466.559813pt;}
.xf{left:479.999808pt;}
.x6{left:493.919802pt;}
.x7{left:499.359800pt;}
.x10{left:515.359794pt;}
.x11{left:529.759788pt;}
.x8{left:601.919759pt;}
.x9{left:607.359757pt;}
}




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