
    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_904737a63f40a13d90285bfc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.100000;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_f11ad52e62a636621b5e8eb9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.032000;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_1ef0be8c49b29831d1ff5890.woff')format("woff");}.ff3{font-family:ff3;line-height:0.987000;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_0ef396d2f42cb3e5d6e22d1c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_8c94fa913c0aea738253c0f2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.006348;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_e281c56d148f2238f1b5b300.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.050027px;}
.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;}
}
.ws3{word-spacing:-54.762919px;}
.ws2{word-spacing:-30.057665px;}
.ws0{word-spacing:-25.427204px;}
.ws4{word-spacing:0.000000px;}
.ws1{word-spacing:2226.456972px;}
._6{margin-left:-13.943396px;}
._5{margin-left:-7.303610px;}
._4{margin-left:-6.133359px;}
._2{margin-left:-4.061129px;}
._3{margin-left:-3.023971px;}
._1{margin-left:-1.818039px;}
._0{width:1.009451px;}
.fc4{color:transparent;}
.fc3{color:rgb(26,77,125);}
.fc2{color:rgb(26,77,124);}
.fc1{color:rgb(1,1,1);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:53.986336px;}
.fs0{font-size:59.969821px;}
.fs5{font-size:115.710709px;}
.fs2{font-size:119.939644px;}
.fs7{font-size:120.884409px;}
.fs6{font-size:173.925980px;}
.fs4{font-size:191.921425px;}
.fs8{font-size:210.816647px;}
.fs1{font-size:311.906066px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.135021px;}
.y28{bottom:22.840379px;}
.y27{bottom:43.085255px;}
.y4{bottom:68.374041px;}
.y3{bottom:88.618917px;}
.y2{bottom:117.111656px;}
.y2c{bottom:156.029415px;}
.yc{bottom:160.193580px;}
.y2b{bottom:176.274291px;}
.yb{bottom:178.189026px;}
.y2a{bottom:196.519168px;}
.ya{bottom:214.179916px;}
.y29{bottom:216.764044px;}
.y9{bottom:232.175362px;}
.y26{bottom:248.256183px;}
.yd{bottom:254.819595px;}
.y24{bottom:293.972279px;}
.y25{bottom:298.683480px;}
.y20{bottom:354.768243px;}
.y23{bottom:367.078776px;}
.y1f{bottom:396.382711px;}
.y1e{bottom:437.997178px;}
.y22{bottom:440.185272px;}
.y1d{bottom:479.611646px;}
.y21{bottom:513.291769px;}
.y1c{bottom:527.584159px;}
.y15{bottom:604.961027px;}
.y14{bottom:648.824925px;}
.y1b{bottom:652.447537px;}
.y13{bottom:692.688823px;}
.y1a{bottom:696.311435px;}
.y12{bottom:736.552722px;}
.y19{bottom:740.175333px;}
.y11{bottom:780.416620px;}
.y18{bottom:784.039231px;}
.y10{bottom:824.280518px;}
.y17{bottom:827.903129px;}
.yf{bottom:868.144416px;}
.y16{bottom:871.767028px;}
.ye{bottom:914.704082px;}
.y8{bottom:1008.917663px;}
.y7{bottom:1050.532131px;}
.y6{bottom:1092.146598px;}
.y5{bottom:1155.058868px;}
.h8{height:44.592714px;}
.h4{height:49.535072px;}
.h3{height:55.711964px;}
.he{height:56.971330px;}
.ha{height:88.647511px;}
.hc{height:92.611151px;}
.h7{height:99.070146px;}
.h6{height:111.423929px;}
.hb{height:133.247003px;}
.h9{height:147.033553px;}
.hd{height:161.509433px;}
.h5{height:238.955380px;}
.h1{height:1263.000000px;}
.h2{height:1263.239947px;}
.h0{height:1263.374968px;}
.w2{width:1785.374926px;}
.w0{width:1785.375000px;}
.w1{width:1785.750000px;}
.x0{left:0.000000px;}
.x1{left:13.749168px;}
.x7{left:44.035189px;}
.x5{left:49.171149px;}
.x8{left:108.149100px;}
.xa{left:195.961840px;}
.xb{left:210.952187px;}
.x4{left:233.104798px;}
.x3{left:276.123700px;}
.xc{left:302.335308px;}
.xd{left:317.325660px;}
.x2{left:394.599347px;}
.xe{left:927.040821px;}
.xf{left:930.256233px;}
.x6{left:938.101724px;}
.x9{left:1023.491837px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.044469pt;}
.ws3{word-spacing:-48.678150pt;}
.ws2{word-spacing:-26.717925pt;}
.ws0{word-spacing:-22.601959pt;}
.ws4{word-spacing:0.000000pt;}
.ws1{word-spacing:1979.072864pt;}
._6{margin-left:-12.394130pt;}
._5{margin-left:-6.492098pt;}
._4{margin-left:-5.451875pt;}
._2{margin-left:-3.609893pt;}
._3{margin-left:-2.687974pt;}
._1{margin-left:-1.616035pt;}
._0{width:0.897290pt;}
.fs3{font-size:47.987854pt;}
.fs0{font-size:53.306508pt;}
.fs5{font-size:102.853964pt;}
.fs2{font-size:106.613016pt;}
.fs7{font-size:107.452808pt;}
.fs6{font-size:154.600871pt;}
.fs4{font-size:170.596822pt;}
.fs8{font-size:187.392575pt;}
.fs1{font-size:277.249837pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.120018pt;}
.y28{bottom:20.302559pt;}
.y27{bottom:38.298004pt;}
.y4{bottom:60.776925pt;}
.y3{bottom:78.772371pt;}
.y2{bottom:104.099250pt;}
.y2c{bottom:138.692814pt;}
.yc{bottom:142.394293pt;}
.y2b{bottom:156.688259pt;}
.yb{bottom:158.390245pt;}
.y2a{bottom:174.683704pt;}
.ya{bottom:190.382148pt;}
.y29{bottom:192.679150pt;}
.y9{bottom:206.378099pt;}
.y26{bottom:220.672163pt;}
.yd{bottom:226.506306pt;}
.y24{bottom:261.308692pt;}
.y25{bottom:265.496427pt;}
.y20{bottom:315.349550pt;}
.y23{bottom:326.292245pt;}
.y1f{bottom:352.340187pt;}
.y1e{bottom:389.330825pt;}
.y22{bottom:391.275798pt;}
.y1d{bottom:426.321463pt;}
.y21{bottom:456.259351pt;}
.y1c{bottom:468.963697pt;}
.y15{bottom:537.743135pt;}
.y14{bottom:576.733267pt;}
.y1b{bottom:579.953366pt;}
.y13{bottom:615.723399pt;}
.y1a{bottom:618.943498pt;}
.y12{bottom:654.713530pt;}
.y19{bottom:657.933629pt;}
.y11{bottom:693.703662pt;}
.y18{bottom:696.923761pt;}
.y10{bottom:732.693794pt;}
.y17{bottom:735.913893pt;}
.yf{bottom:771.683925pt;}
.y16{bottom:774.904024pt;}
.ye{bottom:813.070295pt;}
.y8{bottom:896.815701pt;}
.y7{bottom:933.806338pt;}
.y6{bottom:970.796976pt;}
.y5{bottom:1026.718994pt;}
.h8{height:39.637968pt;}
.h4{height:44.031175pt;}
.h3{height:49.521746pt;}
.he{height:50.641182pt;}
.ha{height:78.797788pt;}
.hc{height:82.321023pt;}
.h7{height:88.062352pt;}
.h6{height:99.043492pt;}
.hb{height:118.441780pt;}
.h9{height:130.696491pt;}
.hd{height:143.563941pt;}
.h5{height:212.404782pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.879953pt;}
.h0{height:1122.999972pt;}
.w2{width:1586.999934pt;}
.w0{width:1587.000000pt;}
.w1{width:1587.333333pt;}
.x0{left:0.000000pt;}
.x1{left:12.221483pt;}
.x7{left:39.142390pt;}
.x5{left:43.707688pt;}
.x8{left:96.132533pt;}
.xa{left:174.188302pt;}
.xb{left:187.513055pt;}
.x4{left:207.204265pt;}
.x3{left:245.443289pt;}
.xc{left:268.742496pt;}
.xd{left:282.067253pt;}
.x2{left:350.754975pt;}
.xe{left:824.036286pt;}
.xf{left:826.894430pt;}
.x6{left:833.868199pt;}
.x9{left:909.770522pt;}
}




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