
    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_c40170f2c54eef13bc39316e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_83e2a0735f87991ba51dc404.woff')format("woff");}.ff2{font-family:ff2;line-height:1.067000;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_ae6329a8205176e9b5ea515d.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_ee360d94839a3f623c10a083.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_86275cdaff446a268b3d28cc.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_0da1cf6e6f8e633c354ba8ff.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;}
.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;}
}
.ws2{word-spacing:-30.057665px;}
.ws0{word-spacing:-25.427204px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:2557.292013px;}
._4{margin-left:-6.253029px;}
._0{margin-left:-3.792976px;}
._2{margin-left:-2.753597px;}
._1{margin-left:-1.626175px;}
._3{width:1.876807px;}
.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);}
.fs2{font-size:53.986336px;}
.fs0{font-size:59.969821px;}
.fs5{font-size:115.440782px;}
.fs6{font-size:115.710709px;}
.fs1{font-size:119.939644px;}
.fs8{font-size:120.884409px;}
.fs7{font-size:173.925980px;}
.fs4{font-size:191.921425px;}
.fs9{font-size:210.816647px;}
.fs3{font-size:311.906066px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.135021px;}
.y7{bottom:20.611020px;}
.y6{bottom:38.606466px;}
.y4{bottom:68.374041px;}
.y3{bottom:88.618917px;}
.y2{bottom:117.111656px;}
.y13{bottom:160.193580px;}
.yb{bottom:166.751754px;}
.y12{bottom:178.189026px;}
.ya{bottom:184.747199px;}
.y9{bottom:202.742645px;}
.y11{bottom:214.179916px;}
.y8{bottom:220.738090px;}
.y10{bottom:232.175362px;}
.y5{bottom:254.629479px;}
.y14{bottom:254.819595px;}
.y2a{bottom:300.932940px;}
.y29{bottom:341.458081px;}
.y26{bottom:354.768243px;}
.y25{bottom:396.382711px;}
.y28{bottom:414.564578px;}
.y24{bottom:437.997178px;}
.y23{bottom:479.611646px;}
.y27{bottom:487.671074px;}
.y22{bottom:527.584159px;}
.y1c{bottom:613.866721px;}
.y1b{bottom:657.730619px;}
.y21{bottom:696.311435px;}
.y1a{bottom:701.594518px;}
.y20{bottom:740.175333px;}
.y19{bottom:745.458416px;}
.y1f{bottom:784.039231px;}
.y18{bottom:789.322314px;}
.y1e{bottom:827.903129px;}
.y17{bottom:833.186212px;}
.y1d{bottom:871.767028px;}
.y16{bottom:877.050110px;}
.y15{bottom:914.704082px;}
.yf{bottom:1008.917663px;}
.ye{bottom:1050.532131px;}
.yd{bottom:1092.146598px;}
.yc{bottom:1155.058868px;}
.h6{height:48.371757px;}
.h3{height:49.535072px;}
.h4{height:53.732960px;}
.hf{height:56.971330px;}
.ha{height:88.440716px;}
.hb{height:88.647511px;}
.hd{height:92.611151px;}
.h5{height:99.070146px;}
.h8{height:107.465921px;}
.hc{height:133.247003px;}
.h9{height:147.033553px;}
.he{height:161.509433px;}
.h7{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;}
.x8{left:25.761683px;}
.x7{left:74.827390px;}
.xc{left:107.503060px;}
.xe{left:122.433575px;}
.xb{left:165.245977px;}
.xf{left:219.897194px;}
.x10{left:234.887535px;}
.x6{left:268.814510px;}
.x5{left:276.123700px;}
.x4{left:379.837458px;}
.xa{left:888.930575px;}
.x3{left:929.222529px;}
.x2{left:931.669773px;}
.x9{left:938.101724px;}
.xd{left:1055.718064px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-26.717925pt;}
.ws0{word-spacing:-22.601959pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:2273.148456pt;}
._4{margin-left:-5.558248pt;}
._0{margin-left:-3.371534pt;}
._2{margin-left:-2.447642pt;}
._1{margin-left:-1.445489pt;}
._3{width:1.668273pt;}
.fs2{font-size:47.987854pt;}
.fs0{font-size:53.306508pt;}
.fs5{font-size:102.614029pt;}
.fs6{font-size:102.853964pt;}
.fs1{font-size:106.613016pt;}
.fs8{font-size:107.452808pt;}
.fs7{font-size:154.600871pt;}
.fs4{font-size:170.596822pt;}
.fs9{font-size:187.392575pt;}
.fs3{font-size:277.249837pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.120018pt;}
.y7{bottom:18.320907pt;}
.y6{bottom:34.316858pt;}
.y4{bottom:60.776925pt;}
.y3{bottom:78.772371pt;}
.y2{bottom:104.099250pt;}
.y13{bottom:142.394293pt;}
.yb{bottom:148.223781pt;}
.y12{bottom:158.390245pt;}
.ya{bottom:164.219733pt;}
.y9{bottom:180.215684pt;}
.y11{bottom:190.382148pt;}
.y8{bottom:196.211636pt;}
.y10{bottom:206.378099pt;}
.y5{bottom:226.337314pt;}
.y14{bottom:226.506306pt;}
.y2a{bottom:267.495947pt;}
.y29{bottom:303.518294pt;}
.y26{bottom:315.349550pt;}
.y25{bottom:352.340187pt;}
.y28{bottom:368.501847pt;}
.y24{bottom:389.330825pt;}
.y23{bottom:426.321463pt;}
.y27{bottom:433.485400pt;}
.y22{bottom:468.963697pt;}
.y1c{bottom:545.659308pt;}
.y1b{bottom:584.649439pt;}
.y21{bottom:618.943498pt;}
.y1a{bottom:623.639571pt;}
.y20{bottom:657.933629pt;}
.y19{bottom:662.629703pt;}
.y1f{bottom:696.923761pt;}
.y18{bottom:701.619835pt;}
.y1e{bottom:735.913893pt;}
.y17{bottom:740.609966pt;}
.y1d{bottom:774.904024pt;}
.y16{bottom:779.600098pt;}
.y15{bottom:813.070295pt;}
.yf{bottom:896.815701pt;}
.ye{bottom:933.806338pt;}
.yd{bottom:970.796976pt;}
.yc{bottom:1026.718994pt;}
.h6{height:42.997118pt;}
.h3{height:44.031175pt;}
.h4{height:47.762631pt;}
.hf{height:50.641182pt;}
.ha{height:78.613970pt;}
.hb{height:78.797788pt;}
.hd{height:82.321023pt;}
.h5{height:88.062352pt;}
.h8{height:95.525263pt;}
.hc{height:118.441780pt;}
.h9{height:130.696491pt;}
.he{height:143.563941pt;}
.h7{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;}
.x8{left:22.899274pt;}
.x7{left:66.513235pt;}
.xc{left:95.558275pt;}
.xe{left:108.829844pt;}
.xb{left:146.885313pt;}
.xf{left:195.464172pt;}
.x10{left:208.788920pt;}
.x6{left:238.946231pt;}
.x5{left:245.443289pt;}
.x4{left:337.633296pt;}
.xa{left:790.160511pt;}
.x3{left:825.975582pt;}
.x2{left:828.150909pt;}
.x9{left:833.868199pt;}
.xd{left:938.416057pt;}
}




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