
    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_64d4736dc1ce3b726a98f15c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_edcd3c39ced86b349749a941.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_7b378db6a042bf5f4d6423d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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;}
.ls2{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014400px;}
.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:0.000000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.894100px;}
.y2{bottom:39.974100px;}
.y1{bottom:64.094100px;}
.y26{bottom:142.214100px;}
.y79{bottom:162.014100px;}
.y25{bottom:165.974100px;}
.y4a{bottom:169.214100px;}
.y6f{bottom:184.334100px;}
.y64{bottom:186.854100px;}
.y24{bottom:189.734100px;}
.y49{bottom:192.974100px;}
.y78{bottom:200.894100px;}
.y6e{bottom:208.094100px;}
.y23{bottom:213.494100px;}
.y48{bottom:216.734100px;}
.y63{bottom:225.734100px;}
.y6d{bottom:231.854100px;}
.y77{bottom:239.774100px;}
.y47{bottom:240.854100px;}
.y62{bottom:249.494100px;}
.y22{bottom:252.374100px;}
.y6c{bottom:255.614100px;}
.y46{bottom:264.614100px;}
.y61{bottom:273.254100px;}
.y21{bottom:276.134100px;}
.y76{bottom:278.654100px;}
.y6b{bottom:279.374100px;}
.y45{bottom:288.374100px;}
.y60{bottom:297.014100px;}
.y20{bottom:299.894100px;}
.y6a{bottom:303.134100px;}
.y44{bottom:312.134100px;}
.y75{bottom:317.174100px;}
.y5f{bottom:320.774100px;}
.y1f{bottom:323.654100px;}
.y69{bottom:327.254100px;}
.y43{bottom:335.894100px;}
.y1e{bottom:347.414100px;}
.y68{bottom:351.014100px;}
.y74{bottom:356.054100px;}
.y5e{bottom:359.654100px;}
.y1d{bottom:371.174100px;}
.y42{bottom:374.774100px;}
.y5d{bottom:383.414100px;}
.y1c{bottom:394.934100px;}
.y67{bottom:398.534100px;}
.y5c{bottom:407.174100px;}
.y41{bottom:413.654100px;}
.y1b{bottom:419.054100px;}
.y66{bottom:422.294100px;}
.y5b{bottom:430.934100px;}
.y73{bottom:433.814100px;}
.y40{bottom:437.414100px;}
.y1a{bottom:442.814100px;}
.y5a{bottom:455.054100px;}
.y3f{bottom:461.174100px;}
.y19{bottom:466.574100px;}
.y72{bottom:472.334100px;}
.y3e{bottom:484.934100px;}
.y18{bottom:490.334100px;}
.y59{bottom:493.574100px;}
.y3d{bottom:508.694100px;}
.y71{bottom:511.214100px;}
.y17{bottom:514.094100px;}
.y58{bottom:517.334100px;}
.y3c{bottom:532.454100px;}
.y57{bottom:541.454100px;}
.y70{bottom:550.094100px;}
.y16{bottom:552.974100px;}
.y3b{bottom:556.214100px;}
.y82{bottom:558.014100px;}
.y56{bottom:565.214100px;}
.y15{bottom:576.734100px;}
.y3a{bottom:579.974100px;}
.y55{bottom:588.974100px;}
.y14{bottom:600.494100px;}
.y39{bottom:604.094100px;}
.y13{bottom:624.254100px;}
.y81{bottom:624.614100px;}
.y54{bottom:627.854100px;}
.y38{bottom:642.614100px;}
.y12{bottom:648.014100px;}
.y53{bottom:651.614100px;}
.y37{bottom:666.374100px;}
.y11{bottom:671.774100px;}
.y52{bottom:675.374100px;}
.y80{bottom:676.454100px;}
.y36{bottom:690.494100px;}
.y10{bottom:695.894100px;}
.y51{bottom:699.134100px;}
.y35{bottom:714.254100px;}
.yf{bottom:719.654100px;}
.y50{bottom:722.894100px;}
.y7f{bottom:727.934100px;}
.y34{bottom:738.014100px;}
.y4f{bottom:746.654100px;}
.ye{bottom:758.174100px;}
.y33{bottom:761.774100px;}
.y7e{bottom:779.774100px;}
.yd{bottom:782.294100px;}
.y32{bottom:785.534100px;}
.yc{bottom:806.054100px;}
.y31{bottom:809.294100px;}
.yb{bottom:829.814100px;}
.y7d{bottom:831.614100px;}
.y4e{bottom:833.054100px;}
.y30{bottom:848.174100px;}
.ya{bottom:853.574100px;}
.y4d{bottom:856.814100px;}
.y2f{bottom:871.934100px;}
.y9{bottom:877.334100px;}
.y4c{bottom:880.574100px;}
.y7c{bottom:883.454100px;}
.y2e{bottom:895.694100px;}
.y8{bottom:901.094100px;}
.y4b{bottom:904.694100px;}
.y2d{bottom:919.454100px;}
.y7{bottom:924.854100px;}
.y65{bottom:928.454100px;}
.y7b{bottom:934.934100px;}
.y2c{bottom:943.214100px;}
.y6{bottom:963.734100px;}
.y2b{bottom:967.334100px;}
.y7a{bottom:986.774100px;}
.y2a{bottom:991.094100px;}
.y5{bottom:1002.614100px;}
.y29{bottom:1014.854100px;}
.y4{bottom:1026.374100px;}
.y28{bottom:1038.614100px;}
.y27{bottom:1062.374100px;}
.h2{height:44.149219px;}
.h3{height:48.796875px;}
.h1{height:50.027344px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.706008px;}
.x3{left:141.018996px;}
.x4{left:189.706008px;}
.x2{left:239.232360px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012800pt;}
.ws0{word-spacing:0.000000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.572533pt;}
.y2{bottom:35.532533pt;}
.y1{bottom:56.972533pt;}
.y26{bottom:126.412533pt;}
.y79{bottom:144.012533pt;}
.y25{bottom:147.532533pt;}
.y4a{bottom:150.412533pt;}
.y6f{bottom:163.852533pt;}
.y64{bottom:166.092533pt;}
.y24{bottom:168.652533pt;}
.y49{bottom:171.532533pt;}
.y78{bottom:178.572533pt;}
.y6e{bottom:184.972533pt;}
.y23{bottom:189.772533pt;}
.y48{bottom:192.652533pt;}
.y63{bottom:200.652533pt;}
.y6d{bottom:206.092533pt;}
.y77{bottom:213.132533pt;}
.y47{bottom:214.092533pt;}
.y62{bottom:221.772533pt;}
.y22{bottom:224.332533pt;}
.y6c{bottom:227.212533pt;}
.y46{bottom:235.212533pt;}
.y61{bottom:242.892533pt;}
.y21{bottom:245.452533pt;}
.y76{bottom:247.692533pt;}
.y6b{bottom:248.332533pt;}
.y45{bottom:256.332533pt;}
.y60{bottom:264.012533pt;}
.y20{bottom:266.572533pt;}
.y6a{bottom:269.452533pt;}
.y44{bottom:277.452533pt;}
.y75{bottom:281.932533pt;}
.y5f{bottom:285.132533pt;}
.y1f{bottom:287.692533pt;}
.y69{bottom:290.892533pt;}
.y43{bottom:298.572533pt;}
.y1e{bottom:308.812533pt;}
.y68{bottom:312.012533pt;}
.y74{bottom:316.492533pt;}
.y5e{bottom:319.692533pt;}
.y1d{bottom:329.932533pt;}
.y42{bottom:333.132533pt;}
.y5d{bottom:340.812533pt;}
.y1c{bottom:351.052533pt;}
.y67{bottom:354.252533pt;}
.y5c{bottom:361.932533pt;}
.y41{bottom:367.692533pt;}
.y1b{bottom:372.492533pt;}
.y66{bottom:375.372533pt;}
.y5b{bottom:383.052533pt;}
.y73{bottom:385.612533pt;}
.y40{bottom:388.812533pt;}
.y1a{bottom:393.612533pt;}
.y5a{bottom:404.492533pt;}
.y3f{bottom:409.932533pt;}
.y19{bottom:414.732533pt;}
.y72{bottom:419.852533pt;}
.y3e{bottom:431.052533pt;}
.y18{bottom:435.852533pt;}
.y59{bottom:438.732533pt;}
.y3d{bottom:452.172533pt;}
.y71{bottom:454.412533pt;}
.y17{bottom:456.972533pt;}
.y58{bottom:459.852533pt;}
.y3c{bottom:473.292533pt;}
.y57{bottom:481.292533pt;}
.y70{bottom:488.972533pt;}
.y16{bottom:491.532533pt;}
.y3b{bottom:494.412533pt;}
.y82{bottom:496.012533pt;}
.y56{bottom:502.412533pt;}
.y15{bottom:512.652533pt;}
.y3a{bottom:515.532533pt;}
.y55{bottom:523.532533pt;}
.y14{bottom:533.772533pt;}
.y39{bottom:536.972533pt;}
.y13{bottom:554.892533pt;}
.y81{bottom:555.212533pt;}
.y54{bottom:558.092533pt;}
.y38{bottom:571.212533pt;}
.y12{bottom:576.012533pt;}
.y53{bottom:579.212533pt;}
.y37{bottom:592.332533pt;}
.y11{bottom:597.132533pt;}
.y52{bottom:600.332533pt;}
.y80{bottom:601.292533pt;}
.y36{bottom:613.772533pt;}
.y10{bottom:618.572533pt;}
.y51{bottom:621.452533pt;}
.y35{bottom:634.892533pt;}
.yf{bottom:639.692533pt;}
.y50{bottom:642.572533pt;}
.y7f{bottom:647.052533pt;}
.y34{bottom:656.012533pt;}
.y4f{bottom:663.692533pt;}
.ye{bottom:673.932533pt;}
.y33{bottom:677.132533pt;}
.y7e{bottom:693.132533pt;}
.yd{bottom:695.372533pt;}
.y32{bottom:698.252533pt;}
.yc{bottom:716.492533pt;}
.y31{bottom:719.372533pt;}
.yb{bottom:737.612533pt;}
.y7d{bottom:739.212533pt;}
.y4e{bottom:740.492533pt;}
.y30{bottom:753.932533pt;}
.ya{bottom:758.732533pt;}
.y4d{bottom:761.612533pt;}
.y2f{bottom:775.052533pt;}
.y9{bottom:779.852533pt;}
.y4c{bottom:782.732533pt;}
.y7c{bottom:785.292533pt;}
.y2e{bottom:796.172533pt;}
.y8{bottom:800.972533pt;}
.y4b{bottom:804.172533pt;}
.y2d{bottom:817.292533pt;}
.y7{bottom:822.092533pt;}
.y65{bottom:825.292533pt;}
.y7b{bottom:831.052533pt;}
.y2c{bottom:838.412533pt;}
.y6{bottom:856.652533pt;}
.y2b{bottom:859.852533pt;}
.y7a{bottom:877.132533pt;}
.y2a{bottom:880.972533pt;}
.y5{bottom:891.212533pt;}
.y29{bottom:902.092533pt;}
.y4{bottom:912.332533pt;}
.y28{bottom:923.212533pt;}
.y27{bottom:944.332533pt;}
.h2{height:39.243750pt;}
.h3{height:43.375000pt;}
.h1{height:44.468750pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.627563pt;}
.x3{left:125.350219pt;}
.x4{left:168.627563pt;}
.x2{left:212.650987pt;}
}




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