
    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_3bc57ff61b075c6b01ccbc81.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_7928a4a2734d091afffd3ab3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740234;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_a67baf8650399e810bb52912.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.156000;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_a1b6014f01d9df2c7a7f93e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.173000;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;}
.m4{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m3{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);}
.m1{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;}
.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:-10.808636px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-3.149913px;}
._3{margin-left:-2.128910px;}
._1{margin-left:-1.107874px;}
._0{width:1.401701px;}
._2{width:2.895532px;}
._7{width:4.870725px;}
._8{width:5.902670px;}
._5{width:7.962180px;}
._a{width:9.612143px;}
._d{width:10.946194px;}
._10{width:12.476352px;}
._11{width:13.656607px;}
._6{width:14.907500px;}
._b{width:22.075186px;}
._c{width:23.101192px;}
._e{width:24.508821px;}
._f{width:25.622648px;}
._9{width:39.382369px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.239988px;}
.fs3{font-size:38.879984px;}
.fs4{font-size:48.239981px;}
.fs1{font-size:53.999978px;}
.fs2{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.540277px;}
.y2{bottom:76.620269px;}
.y41{bottom:159.599936px;}
.y40{bottom:173.459931px;}
.y3f{bottom:187.319925px;}
.y3e{bottom:200.999920px;}
.y3d{bottom:214.859914px;}
.y3c{bottom:227.279909px;}
.y3b{bottom:228.719909px;}
.y3a{bottom:242.399903px;}
.y39{bottom:256.259897px;}
.y38{bottom:270.119892px;}
.y37{bottom:283.799886px;}
.y36{bottom:298.199881px;}
.y35{bottom:314.939874px;}
.y34{bottom:328.619869px;}
.y33{bottom:342.479863px;}
.y32{bottom:365.879854px;}
.y30{bottom:383.159847px;}
.y31{bottom:387.659845px;}
.y2f{bottom:400.439840px;}
.y2e{bottom:417.539833px;}
.y2d{bottom:434.819826px;}
.y2c{bottom:452.099819px;}
.y2b{bottom:469.379812px;}
.y2a{bottom:495.659802px;}
.y29{bottom:512.759795px;}
.y28{bottom:530.039788px;}
.y27{bottom:547.319781px;}
.y26{bottom:564.599774px;}
.y25{bottom:581.879767px;}
.y24{bottom:599.159760px;}
.y23{bottom:616.259753px;}
.y22{bottom:633.539747px;}
.y21{bottom:650.819740px;}
.y20{bottom:668.099733px;}
.y1f{bottom:685.379726px;}
.y1e{bottom:702.659719px;}
.y1d{bottom:719.759712px;}
.y1c{bottom:737.039705px;}
.y1b{bottom:754.319698px;}
.y1a{bottom:771.599691px;}
.y19{bottom:797.879681px;}
.y18{bottom:814.979674px;}
.y17{bottom:832.259667px;}
.y16{bottom:849.539660px;}
.y15{bottom:866.819653px;}
.y14{bottom:884.099646px;}
.y13{bottom:901.379639px;}
.y12{bottom:918.479633px;}
.y11{bottom:935.759626px;}
.y10{bottom:953.039619px;}
.yf{bottom:970.319612px;}
.ye{bottom:987.599605px;}
.yd{bottom:1004.879598px;}
.yc{bottom:1022.159591px;}
.yb{bottom:1039.439584px;}
.ya{bottom:1056.719577px;}
.y9{bottom:1073.999570px;}
.y8{bottom:1091.279563px;}
.y7{bottom:1108.559557px;}
.y6{bottom:1125.659550px;}
.y5{bottom:1142.939543px;}
.y1{bottom:1193.699523px;}
.y4{bottom:1196.219522px;}
.h8{height:28.818708px;}
.h6{height:37.052625px;}
.h2{height:39.313461px;}
.h3{height:40.397744px;}
.h7{height:45.972702px;}
.h1{height:48.671981px;}
.h4{height:55.935338px;}
.h5{height:56.951257px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.xd{left:129.959284px;}
.x8{left:135.540190px;}
.x7{left:145.979772px;}
.xa{left:181.620361px;}
.xb{left:249.300303px;}
.xe{left:347.218768px;}
.xf{left:359.278764px;}
.xc{left:404.279838px;}
.x6{left:412.199606px;}
.x9{left:428.580036px;}
.x2{left:432.899827px;}
.x4{left:446.399821px;}
.x12{left:448.559821px;}
.x13{left:452.699819px;}
.x3{left:459.899816px;}
.x10{left:573.839770px;}
.x11{left:582.479767px;}
.x5{left:758.519697px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-9.607676pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-2.799923pt;}
._3{margin-left:-1.892365pt;}
._1{margin-left:-0.984777pt;}
._0{width:1.245956pt;}
._2{width:2.573806pt;}
._7{width:4.329533pt;}
._8{width:5.246817pt;}
._5{width:7.077494pt;}
._a{width:8.544127pt;}
._d{width:9.729950pt;}
._10{width:11.090091pt;}
._11{width:12.139206pt;}
._6{width:13.251111pt;}
._b{width:19.622387pt;}
._c{width:20.534393pt;}
._e{width:21.785619pt;}
._f{width:22.775688pt;}
._9{width:35.006550pt;}
.fs5{font-size:26.879989pt;}
.fs3{font-size:34.559986pt;}
.fs4{font-size:42.879983pt;}
.fs1{font-size:47.999981pt;}
.fs2{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.146913pt;}
.y2{bottom:68.106906pt;}
.y41{bottom:141.866610pt;}
.y40{bottom:154.186605pt;}
.y3f{bottom:166.506600pt;}
.y3e{bottom:178.666595pt;}
.y3d{bottom:190.986590pt;}
.y3c{bottom:202.026586pt;}
.y3b{bottom:203.306585pt;}
.y3a{bottom:215.466580pt;}
.y39{bottom:227.786576pt;}
.y38{bottom:240.106571pt;}
.y37{bottom:252.266566pt;}
.y36{bottom:265.066561pt;}
.y35{bottom:279.946555pt;}
.y34{bottom:292.106550pt;}
.y33{bottom:304.426545pt;}
.y32{bottom:325.226537pt;}
.y30{bottom:340.586530pt;}
.y31{bottom:344.586529pt;}
.y2f{bottom:355.946524pt;}
.y2e{bottom:371.146518pt;}
.y2d{bottom:386.506512pt;}
.y2c{bottom:401.866506pt;}
.y2b{bottom:417.226500pt;}
.y2a{bottom:440.586490pt;}
.y29{bottom:455.786484pt;}
.y28{bottom:471.146478pt;}
.y27{bottom:486.506472pt;}
.y26{bottom:501.866466pt;}
.y25{bottom:517.226460pt;}
.y24{bottom:532.586454pt;}
.y23{bottom:547.786448pt;}
.y22{bottom:563.146441pt;}
.y21{bottom:578.506435pt;}
.y20{bottom:593.866429pt;}
.y1f{bottom:609.226423pt;}
.y1e{bottom:624.586417pt;}
.y1d{bottom:639.786411pt;}
.y1c{bottom:655.146405pt;}
.y1b{bottom:670.506398pt;}
.y1a{bottom:685.866392pt;}
.y19{bottom:709.226383pt;}
.y18{bottom:724.426377pt;}
.y17{bottom:739.786371pt;}
.y16{bottom:755.146365pt;}
.y15{bottom:770.506358pt;}
.y14{bottom:785.866352pt;}
.y13{bottom:801.226346pt;}
.y12{bottom:816.426340pt;}
.y11{bottom:831.786334pt;}
.y10{bottom:847.146328pt;}
.yf{bottom:862.506322pt;}
.ye{bottom:877.866316pt;}
.yd{bottom:893.226309pt;}
.yc{bottom:908.586303pt;}
.yb{bottom:923.946297pt;}
.ya{bottom:939.306291pt;}
.y9{bottom:954.666285pt;}
.y8{bottom:970.026279pt;}
.y7{bottom:985.386273pt;}
.y6{bottom:1000.586266pt;}
.y5{bottom:1015.946260pt;}
.y1{bottom:1061.066242pt;}
.y4{bottom:1063.306241pt;}
.h8{height:25.616630pt;}
.h6{height:32.935667pt;}
.h2{height:34.945299pt;}
.h3{height:35.909106pt;}
.h7{height:40.864624pt;}
.h1{height:43.263983pt;}
.h4{height:49.720300pt;}
.h5{height:50.623340pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.xd{left:115.519364pt;}
.x8{left:120.480169pt;}
.x7{left:129.759798pt;}
.xa{left:161.440321pt;}
.xb{left:221.600270pt;}
.xe{left:308.638905pt;}
.xf{left:319.358901pt;}
.xc{left:359.359856pt;}
.x6{left:366.399650pt;}
.x9{left:380.960032pt;}
.x2{left:384.799846pt;}
.x4{left:396.799841pt;}
.x12{left:398.719841pt;}
.x13{left:402.399839pt;}
.x3{left:408.799836pt;}
.x10{left:510.079796pt;}
.x11{left:517.759793pt;}
.x5{left:674.239730pt;}
}




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