
    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_cef74c19975b2fbf8b2b36fb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_89887d0bace690d81fa6ca36.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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;}
.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;}
}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:468.176064px;}
._4{margin-left:-3.751579px;}
._2{margin-left:-1.875789px;}
._20{width:57.037117px;}
._30{width:104.341117px;}
._34{width:197.209749px;}
._5{width:252.153327px;}
._11{width:255.973117px;}
._1e{width:259.690590px;}
._d{width:273.093959px;}
._1b{width:280.563011px;}
._17{width:286.224485px;}
._32{width:322.273748px;}
._f{width:333.596696px;}
._9{width:335.540696px;}
._22{width:341.236274px;}
._26{width:344.987853px;}
._1{width:346.931853px;}
._24{width:350.683432px;}
._2c{width:354.435011px;}
._b{width:362.040485px;}
._7{width:388.574380px;}
._2e{width:394.235853px;}
._28{width:399.931432px;}
._2a{width:409.412695px;}
._15{width:426.499432px;}
._36{width:437.754169px;}
._19{width:443.517958px;}
._13{width:466.266169px;}
._8{width:1793.837145px;}
._1a{width:1907.646408px;}
._12{width:1934.043882px;}
._c{width:1989.123882px;}
._21{width:2008.154619px;}
._e{width:2020.500724px;}
._3{width:2075.989987px;}
._31{width:2148.190829px;}
._1f{width:2237.035039px;}
._14{width:2364.008934px;}
._1c{width:2435.971039px;}
._2b{width:2504.249775px;}
._18{width:2549.746196px;}
._6{width:2570.618617px;}
._a{width:2597.084301px;}
._25{width:2652.061985px;}
._2f{width:2716.418617px;}
._10{width:2737.222827px;}
._27{width:2852.873774px;}
._23{width:2871.768090px;}
._37{width:2900.109564px;}
._33{width:2926.677564px;}
._2d{width:2968.285985px;}
._35{width:2973.299458px;}
._29{width:3009.962616px;}
._16{width:3042.226195px;}
._0{width:3326.629984px;}
._1d{width:3345.456089px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:34.105263px;}
.y0{bottom:0.000000px;}
.y1e{bottom:4.430339px;}
.y1d{bottom:18.203619px;}
.y1c{bottom:31.976898px;}
.y1b{bottom:45.750177px;}
.y1a{bottom:59.523457px;}
.y19{bottom:73.296736px;}
.y18{bottom:87.070002px;}
.y17{bottom:100.843281px;}
.y16{bottom:114.616561px;}
.y15{bottom:128.389840px;}
.y14{bottom:142.163119px;}
.y13{bottom:155.936399px;}
.y12{bottom:169.709678px;}
.y10{bottom:183.482957px;}
.y11{bottom:193.287381px;}
.yf{bottom:206.438423px;}
.ye{bottom:220.211702px;}
.yd{bottom:233.984981px;}
.yc{bottom:247.758261px;}
.yb{bottom:261.531540px;}
.ya{bottom:275.304819px;}
.y9{bottom:289.078099px;}
.y8{bottom:302.851378px;}
.y7{bottom:316.624657px;}
.y6{bottom:330.397937px;}
.y5{bottom:344.171216px;}
.y4{bottom:357.944495px;}
.y3{bottom:371.717777px;}
.y2{bottom:399.264335px;}
.y1{bottom:427.736843px;}
.h2{height:24.829564px;}
.h1{height:410.574898px;}
.h0{height:918.000000px;}
.w1{width:1136.623479px;}
.w0{width:1188.000000px;}
.x0{left:0.000000px;}
.x2{left:3.279352px;}
.x1{left:25.688260px;}
.x3{left:144.947368px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:416.156501pt;}
._4{margin-left:-3.334737pt;}
._2{margin-left:-1.667368pt;}
._20{width:50.699660pt;}
._30{width:92.747660pt;}
._34{width:175.297554pt;}
._5{width:224.136291pt;}
._11{width:227.531659pt;}
._1e{width:230.836080pt;}
._d{width:242.750186pt;}
._1b{width:249.389344pt;}
._17{width:254.421765pt;}
._32{width:286.465554pt;}
._f{width:296.530396pt;}
._9{width:298.258396pt;}
._22{width:303.321133pt;}
._26{width:306.655870pt;}
._1{width:308.383870pt;}
._24{width:311.718607pt;}
._2c{width:315.053343pt;}
._b{width:321.813764pt;}
._7{width:345.399449pt;}
._2e{width:350.431870pt;}
._28{width:355.494606pt;}
._2a{width:363.922396pt;}
._15{width:379.110606pt;}
._36{width:389.114817pt;}
._19{width:394.238185pt;}
._13{width:414.458817pt;}
._8{width:1594.521907pt;}
._1a{width:1695.685696pt;}
._12{width:1719.150117pt;}
._c{width:1768.110117pt;}
._21{width:1785.026328pt;}
._e{width:1796.000643pt;}
._3{width:1845.324433pt;}
._31{width:1909.502959pt;}
._1f{width:1988.475590pt;}
._14{width:2101.341274pt;}
._1c{width:2165.307590pt;}
._2b{width:2225.999800pt;}
._18{width:2266.441063pt;}
._6{width:2284.994326pt;}
._a{width:2308.519379pt;}
._25{width:2357.388432pt;}
._2f{width:2414.594326pt;}
._10{width:2433.086958pt;}
._27{width:2535.887800pt;}
._23{width:2552.682747pt;}
._37{width:2577.875168pt;}
._33{width:2601.491168pt;}
._2d{width:2638.476431pt;}
._35{width:2642.932852pt;}
._29{width:2675.522325pt;}
._16{width:2704.201062pt;}
._0{width:2957.004430pt;}
._1d{width:2973.738746pt;}
.fs0{font-size:30.315789pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:3.938079pt;}
.y1d{bottom:16.180994pt;}
.y1c{bottom:28.423909pt;}
.y1b{bottom:40.666824pt;}
.y1a{bottom:52.909739pt;}
.y19{bottom:65.152654pt;}
.y18{bottom:77.395557pt;}
.y17{bottom:89.638472pt;}
.y16{bottom:101.881387pt;}
.y15{bottom:114.124302pt;}
.y14{bottom:126.367217pt;}
.y13{bottom:138.610132pt;}
.y12{bottom:150.853047pt;}
.y10{bottom:163.095962pt;}
.y11{bottom:171.811005pt;}
.yf{bottom:183.500820pt;}
.ye{bottom:195.743735pt;}
.yd{bottom:207.986650pt;}
.yc{bottom:220.229565pt;}
.yb{bottom:232.472480pt;}
.ya{bottom:244.715395pt;}
.y9{bottom:256.958310pt;}
.y8{bottom:269.201225pt;}
.y7{bottom:281.444140pt;}
.y6{bottom:293.687055pt;}
.y5{bottom:305.929970pt;}
.y4{bottom:318.172885pt;}
.y3{bottom:330.415801pt;}
.y2{bottom:354.901631pt;}
.y1{bottom:380.210527pt;}
.h2{height:22.070724pt;}
.h1{height:364.955465pt;}
.h0{height:816.000000pt;}
.w1{width:1010.331981pt;}
.w0{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x2{left:2.914980pt;}
.x1{left:22.834009pt;}
.x3{left:128.842105pt;}
}




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