
    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_0c5df86134027ee148bb30bc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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;}
.ls4{letter-spacing:-0.192240px;}
.ls2{letter-spacing:-0.114120px;}
.ls1{letter-spacing:-0.101880px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.192240px;}
.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:-24.030000px;}
.ws4{word-spacing:-0.480600px;}
.ws6{word-spacing:-0.288360px;}
.ws5{word-spacing:-0.096120px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:0.114120px;}
.ws2{word-spacing:0.203760px;}
._1{margin-left:-1.153440px;}
._0{width:1.018800px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs4{font-size:96.120000px;}
.fs1{font-size:101.880000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:114.120000px;}
.y0{bottom:0.000000px;}
.y11{bottom:191.160000px;}
.y10{bottom:227.970000px;}
.yf{bottom:259.020000px;}
.ye{bottom:294.645240px;}
.yd{bottom:336.048930px;}
.yc{bottom:377.452620px;}
.yb{bottom:418.856310px;}
.ya{bottom:460.260000px;}
.y9{bottom:505.181340px;}
.y8{bottom:554.310000px;}
.y7{bottom:595.350000px;}
.y6{bottom:626.400000px;}
.y5{bottom:664.380000px;}
.y4{bottom:709.740000px;}
.y3{bottom:747.990000px;}
.y2{bottom:774.990000px;}
.y1{bottom:819.090000px;}
.h2{height:70.664062px;}
.h6{height:94.336523px;}
.h3{height:99.989648px;}
.h4{height:105.996094px;}
.h5{height:112.002539px;}
.ha{height:777.750000px;}
.h9{height:777.858330px;}
.h22{height:1069.390350px;}
.h23{height:1069.500000px;}
.h26{height:1069.840350px;}
.h25{height:1070.250000px;}
.h24{height:1070.290335px;}
.h21{height:1071.000000px;}
.h20{height:1071.190335px;}
.h1c{height:1071.640350px;}
.h1d{height:1071.750000px;}
.h2d{height:1072.090350px;}
.h19{height:1073.250000px;}
.h18{height:1073.440335px;}
.h11{height:1073.890350px;}
.h10{height:1074.000000px;}
.hf{height:1074.340350px;}
.h1b{height:1074.750000px;}
.h1a{height:1074.790335px;}
.h29{height:1075.240335px;}
.h2a{height:1075.500000px;}
.h2c{height:1076.250000px;}
.h2b{height:1076.590350px;}
.h28{height:1077.000000px;}
.h27{height:1077.040335px;}
.h1f{height:1078.500000px;}
.h1e{height:1078.840350px;}
.he{height:1079.250000px;}
.hd{height:1079.290335px;}
.h17{height:1080.000000px;}
.h16{height:1080.190335px;}
.h14{height:1080.640350px;}
.h15{height:1080.750000px;}
.h30{height:1081.090350px;}
.h13{height:1081.500000px;}
.h12{height:1081.540335px;}
.h2f{height:1083.000000px;}
.h2e{height:1083.340350px;}
.h7{height:1099.278045px;}
.h8{height:1099.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.hc{height:2210.250000px;}
.hb{height:2210.590350px;}
.w16{width:755.903175px;}
.w17{width:756.000000px;}
.wf{width:757.500000px;}
.we{width:757.703175px;}
.w10{width:759.503175px;}
.w11{width:759.750000px;}
.w15{width:761.250000px;}
.w14{width:761.303160px;}
.wd{width:762.750000px;}
.wc{width:763.103160px;}
.w8{width:764.903175px;}
.w9{width:765.000000px;}
.w13{width:766.500000px;}
.w12{width:766.703175px;}
.wb{width:770.250000px;}
.wa{width:770.303160px;}
.w18{width:773.903175px;}
.w19{width:774.000000px;}
.w3{width:777.750000px;}
.w2{width:777.858330px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w4{width:1099.278045px;}
.w5{width:1099.500000px;}
.w7{width:1572.750000px;}
.w6{width:1573.103160px;}
.x0{left:0.000000px;}
.x5{left:127.620000px;}
.x6{left:185.310000px;}
.x4{left:223.020000px;}
.x7{left:313.095870px;}
.xd{left:357.210000px;}
.x9{left:376.210350px;}
.x3{left:446.490000px;}
.x8{left:452.890080px;}
.xb{left:534.880440px;}
.xa{left:542.786310px;}
.x1{left:615.240000px;}
.x2{left:621.990000px;}
.xc{left:765.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.170880pt;}
.ls2{letter-spacing:-0.101440pt;}
.ls1{letter-spacing:-0.090560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.170880pt;}
.ws0{word-spacing:-21.360000pt;}
.ws4{word-spacing:-0.427200pt;}
.ws6{word-spacing:-0.256320pt;}
.ws5{word-spacing:-0.085440pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:0.101440pt;}
.ws2{word-spacing:0.181120pt;}
._1{margin-left:-1.025280pt;}
._0{width:0.905600pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:85.440000pt;}
.fs1{font-size:90.560000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:101.440000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:169.920000pt;}
.y10{bottom:202.640000pt;}
.yf{bottom:230.240000pt;}
.ye{bottom:261.906880pt;}
.yd{bottom:298.710160pt;}
.yc{bottom:335.513440pt;}
.yb{bottom:372.316720pt;}
.ya{bottom:409.120000pt;}
.y9{bottom:449.050080pt;}
.y8{bottom:492.720000pt;}
.y7{bottom:529.200000pt;}
.y6{bottom:556.800000pt;}
.y5{bottom:590.560000pt;}
.y4{bottom:630.880000pt;}
.y3{bottom:664.880000pt;}
.y2{bottom:688.880000pt;}
.y1{bottom:728.080000pt;}
.h2{height:62.812500pt;}
.h6{height:83.854687pt;}
.h3{height:88.879687pt;}
.h4{height:94.218750pt;}
.h5{height:99.557812pt;}
.ha{height:691.333333pt;}
.h9{height:691.429627pt;}
.h22{height:950.569200pt;}
.h23{height:950.666667pt;}
.h26{height:950.969200pt;}
.h25{height:951.333333pt;}
.h24{height:951.369187pt;}
.h21{height:952.000000pt;}
.h20{height:952.169187pt;}
.h1c{height:952.569200pt;}
.h1d{height:952.666667pt;}
.h2d{height:952.969200pt;}
.h19{height:954.000000pt;}
.h18{height:954.169187pt;}
.h11{height:954.569200pt;}
.h10{height:954.666667pt;}
.hf{height:954.969200pt;}
.h1b{height:955.333333pt;}
.h1a{height:955.369187pt;}
.h29{height:955.769187pt;}
.h2a{height:956.000000pt;}
.h2c{height:956.666667pt;}
.h2b{height:956.969200pt;}
.h28{height:957.333333pt;}
.h27{height:957.369187pt;}
.h1f{height:958.666667pt;}
.h1e{height:958.969200pt;}
.he{height:959.333333pt;}
.hd{height:959.369187pt;}
.h17{height:960.000000pt;}
.h16{height:960.169187pt;}
.h14{height:960.569200pt;}
.h15{height:960.666667pt;}
.h30{height:960.969200pt;}
.h13{height:961.333333pt;}
.h12{height:961.369187pt;}
.h2f{height:962.666667pt;}
.h2e{height:962.969200pt;}
.h7{height:977.136040pt;}
.h8{height:977.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.hc{height:1964.666667pt;}
.hb{height:1964.969200pt;}
.w16{width:671.913933pt;}
.w17{width:672.000000pt;}
.wf{width:673.333333pt;}
.we{width:673.513933pt;}
.w10{width:675.113933pt;}
.w11{width:675.333333pt;}
.w15{width:676.666667pt;}
.w14{width:676.713920pt;}
.wd{width:678.000000pt;}
.wc{width:678.313920pt;}
.w8{width:679.913933pt;}
.w9{width:680.000000pt;}
.w13{width:681.333333pt;}
.w12{width:681.513933pt;}
.wb{width:684.666667pt;}
.wa{width:684.713920pt;}
.w18{width:687.913933pt;}
.w19{width:688.000000pt;}
.w3{width:691.333333pt;}
.w2{width:691.429627pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w4{width:977.136040pt;}
.w5{width:977.333333pt;}
.w7{width:1398.000000pt;}
.w6{width:1398.313920pt;}
.x0{left:0.000000pt;}
.x5{left:113.440000pt;}
.x6{left:164.720000pt;}
.x4{left:198.240000pt;}
.x7{left:278.307440pt;}
.xd{left:317.520000pt;}
.x9{left:334.409200pt;}
.x3{left:396.880000pt;}
.x8{left:402.568960pt;}
.xb{left:475.449280pt;}
.xa{left:482.476720pt;}
.x1{left:546.880000pt;}
.x2{left:552.880000pt;}
.xc{left:680.400000pt;}
}

