
    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_571a8469378fdf46d33494a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_24d72ab14d1d0a919b21650e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_fbf5cd45d8c4f6af8e046485.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f1b2b3f4eb4f6a01eb109a1d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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.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);}
.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:-20.015992px;}
.ws0{word-spacing:0.000000px;}
._20{margin-left:-8.778419px;}
._a{margin-left:-6.597177px;}
._6{margin-left:-4.413338px;}
._21{margin-left:-3.369213px;}
._5{margin-left:-2.280847px;}
._2{margin-left:-1.173550px;}
._0{width:1.022243px;}
._9{width:2.065683px;}
._f{width:3.531461px;}
._10{width:4.693578px;}
._1c{width:5.943221px;}
._1b{width:7.084498px;}
._1d{width:9.539396px;}
._1a{width:11.852395px;}
._3{width:13.256208px;}
._1{width:14.311733px;}
._4{width:16.224950px;}
._13{width:17.608754px;}
._11{width:18.803561px;}
._1f{width:21.530560px;}
._1e{width:22.704088px;}
._8{width:24.241288px;}
._7{width:29.773700px;}
._16{width:33.404215px;}
._12{width:35.138481px;}
._15{width:36.392292px;}
._14{width:37.601589px;}
._17{width:38.914300px;}
._18{width:40.039225px;}
._19{width:41.400896px;}
._c{width:42.786225px;}
._b{width:43.989821px;}
._d{width:46.341006px;}
._e{width:47.769678px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y2e{bottom:136.379945px;}
.y5f{bottom:145.200242px;}
.y2d{bottom:157.079937px;}
.y5e{bottom:166.079934px;}
.y2c{bottom:177.779929px;}
.y5d{bottom:186.779925px;}
.y2b{bottom:198.479921px;}
.y5c{bottom:207.479917px;}
.y2a{bottom:219.179912px;}
.y5b{bottom:228.179909px;}
.y29{bottom:239.879904px;}
.y5a{bottom:249.059900px;}
.y28{bottom:260.399896px;}
.y59{bottom:269.759892px;}
.y27{bottom:281.099888px;}
.y58{bottom:290.459884px;}
.y26{bottom:301.799879px;}
.y57{bottom:311.159876px;}
.y25{bottom:322.499871px;}
.y56{bottom:331.859867px;}
.y24{bottom:343.199863px;}
.y55{bottom:352.379859px;}
.y23{bottom:363.899854px;}
.y54{bottom:373.619851px;}
.y22{bottom:384.599846px;}
.y53{bottom:394.319842px;}
.y21{bottom:405.299838px;}
.y52{bottom:415.019834px;}
.y20{bottom:425.999830px;}
.y51{bottom:435.899826px;}
.y1f{bottom:446.699821px;}
.y50{bottom:456.599817px;}
.y1e{bottom:467.399813px;}
.y4f{bottom:477.299809px;}
.y1d{bottom:488.099805px;}
.y4e{bottom:497.999801px;}
.y1c{bottom:508.799796px;}
.y4d{bottom:518.699793px;}
.y1b{bottom:529.499788px;}
.y4c{bottom:539.399784px;}
.y1a{bottom:550.199780px;}
.y4b{bottom:560.099776px;}
.y19{bottom:570.899772px;}
.y4a{bottom:580.799768px;}
.y18{bottom:591.599763px;}
.y49{bottom:601.499759px;}
.y17{bottom:612.299755px;}
.y48{bottom:622.739751px;}
.y16{bottom:632.999747px;}
.y47{bottom:643.439743px;}
.y15{bottom:653.699739px;}
.y46{bottom:664.139734px;}
.y14{bottom:674.399730px;}
.y45{bottom:684.839726px;}
.y13{bottom:695.099722px;}
.y44{bottom:705.539718px;}
.y12{bottom:715.799714px;}
.y43{bottom:726.239710px;}
.y11{bottom:736.499705px;}
.y42{bottom:746.939701px;}
.y10{bottom:757.199697px;}
.y41{bottom:767.639693px;}
.yf{bottom:777.899689px;}
.y40{bottom:788.339685px;}
.ye{bottom:798.599681px;}
.y3f{bottom:809.039676px;}
.yd{bottom:819.299672px;}
.y3e{bottom:829.739668px;}
.yc{bottom:850.259660px;}
.y3d{bottom:850.439660px;}
.y3c{bottom:871.139652px;}
.yb{bottom:881.219648px;}
.y3b{bottom:891.839643px;}
.ya{bottom:912.359635px;}
.y3a{bottom:912.539635px;}
.y39{bottom:933.239627px;}
.y9{bottom:943.319623px;}
.y38{bottom:953.939618px;}
.y8{bottom:974.459610px;}
.y37{bottom:974.639610px;}
.y36{bottom:995.339602px;}
.y7{bottom:1005.419598px;}
.y35{bottom:1016.219594px;}
.y6{bottom:1026.299589px;}
.y34{bottom:1036.919585px;}
.y5{bottom:1046.999581px;}
.y33{bottom:1057.439577px;}
.y4{bottom:1067.699573px;}
.y63{bottom:1077.779569px;}
.y32{bottom:1078.139569px;}
.y3{bottom:1088.399565px;}
.y62{bottom:1098.659561px;}
.y31{bottom:1098.839560px;}
.y2{bottom:1109.099556px;}
.y30{bottom:1119.539552px;}
.y61{bottom:1119.719552px;}
.y1{bottom:1140.059544px;}
.y2f{bottom:1140.239544px;}
.y60{bottom:1140.419544px;}
.h2{height:47.988262px;}
.h1{height:75.093720px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x2{left:216.899913px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-17.791993pt;}
.ws0{word-spacing:0.000000pt;}
._20{margin-left:-7.803039pt;}
._a{margin-left:-5.864158pt;}
._6{margin-left:-3.922967pt;}
._21{margin-left:-2.994856pt;}
._5{margin-left:-2.027419pt;}
._2{margin-left:-1.043156pt;}
._0{width:0.908661pt;}
._9{width:1.836163pt;}
._f{width:3.139077pt;}
._10{width:4.172069pt;}
._1c{width:5.282863pt;}
._1b{width:6.297331pt;}
._1d{width:8.479463pt;}
._1a{width:10.535462pt;}
._3{width:11.783296pt;}
._1{width:12.721541pt;}
._4{width:14.422178pt;}
._13{width:15.652225pt;}
._11{width:16.714276pt;}
._1f{width:19.138276pt;}
._1e{width:20.181411pt;}
._8{width:21.547811pt;}
._7{width:26.465511pt;}
._16{width:29.692636pt;}
._12{width:31.234206pt;}
._15{width:32.348704pt;}
._14{width:33.423635pt;}
._17{width:34.590488pt;}
._18{width:35.590422pt;}
._19{width:36.800797pt;}
._c{width:38.032200pt;}
._b{width:39.102063pt;}
._d{width:41.192005pt;}
._e{width:42.461936pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:121.226618pt;}
.y5f{bottom:129.066882pt;}
.y2d{bottom:139.626611pt;}
.y5e{bottom:147.626608pt;}
.y2c{bottom:158.026603pt;}
.y5d{bottom:166.026600pt;}
.y2b{bottom:176.426596pt;}
.y5c{bottom:184.426593pt;}
.y2a{bottom:194.826589pt;}
.y5b{bottom:202.826586pt;}
.y29{bottom:213.226581pt;}
.y5a{bottom:221.386578pt;}
.y28{bottom:231.466574pt;}
.y59{bottom:239.786571pt;}
.y27{bottom:249.866567pt;}
.y58{bottom:258.186563pt;}
.y26{bottom:268.266559pt;}
.y57{bottom:276.586556pt;}
.y25{bottom:286.666552pt;}
.y56{bottom:294.986549pt;}
.y24{bottom:305.066545pt;}
.y55{bottom:313.226541pt;}
.y23{bottom:323.466537pt;}
.y54{bottom:332.106534pt;}
.y22{bottom:341.866530pt;}
.y53{bottom:350.506526pt;}
.y21{bottom:360.266523pt;}
.y52{bottom:368.906519pt;}
.y20{bottom:378.666515pt;}
.y51{bottom:387.466512pt;}
.y1f{bottom:397.066508pt;}
.y50{bottom:405.866504pt;}
.y1e{bottom:415.466500pt;}
.y4f{bottom:424.266497pt;}
.y1d{bottom:433.866493pt;}
.y4e{bottom:442.666490pt;}
.y1c{bottom:452.266486pt;}
.y4d{bottom:461.066482pt;}
.y1b{bottom:470.666478pt;}
.y4c{bottom:479.466475pt;}
.y1a{bottom:489.066471pt;}
.y4b{bottom:497.866468pt;}
.y19{bottom:507.466464pt;}
.y4a{bottom:516.266460pt;}
.y18{bottom:525.866456pt;}
.y49{bottom:534.666453pt;}
.y17{bottom:544.266449pt;}
.y48{bottom:553.546445pt;}
.y16{bottom:562.666442pt;}
.y47{bottom:571.946438pt;}
.y15{bottom:581.066434pt;}
.y46{bottom:590.346431pt;}
.y14{bottom:599.466427pt;}
.y45{bottom:608.746423pt;}
.y13{bottom:617.866420pt;}
.y44{bottom:627.146416pt;}
.y12{bottom:636.266412pt;}
.y43{bottom:645.546408pt;}
.y11{bottom:654.666405pt;}
.y42{bottom:663.946401pt;}
.y10{bottom:673.066397pt;}
.y41{bottom:682.346394pt;}
.yf{bottom:691.466390pt;}
.y40{bottom:700.746386pt;}
.ye{bottom:709.866383pt;}
.y3f{bottom:719.146379pt;}
.yd{bottom:728.266375pt;}
.y3e{bottom:737.546372pt;}
.yc{bottom:755.786364pt;}
.y3d{bottom:755.946364pt;}
.y3c{bottom:774.346357pt;}
.yb{bottom:783.306353pt;}
.y3b{bottom:792.746350pt;}
.ya{bottom:810.986342pt;}
.y3a{bottom:811.146342pt;}
.y39{bottom:829.546335pt;}
.y9{bottom:838.506331pt;}
.y38{bottom:847.946327pt;}
.y8{bottom:866.186320pt;}
.y37{bottom:866.346320pt;}
.y36{bottom:884.746313pt;}
.y7{bottom:893.706309pt;}
.y35{bottom:903.306305pt;}
.y6{bottom:912.266302pt;}
.y34{bottom:921.706298pt;}
.y5{bottom:930.666294pt;}
.y33{bottom:939.946291pt;}
.y4{bottom:949.066287pt;}
.y63{bottom:958.026283pt;}
.y32{bottom:958.346283pt;}
.y3{bottom:967.466280pt;}
.y62{bottom:976.586276pt;}
.y31{bottom:976.746276pt;}
.y2{bottom:985.866272pt;}
.y30{bottom:995.146269pt;}
.y61{bottom:995.306269pt;}
.y1{bottom:1013.386261pt;}
.y2f{bottom:1013.546261pt;}
.y60{bottom:1013.706261pt;}
.h2{height:42.656233pt;}
.h1{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x2{left:192.799923pt;}
}




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