
    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_49394186b066433e8e0e57ff.woff')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_3678d774d0dd6ed5d5531c93.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9014d084a4527ded9799f59a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_f63a4bd9fa3cff11e618f4d1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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;}
.v1{vertical-align:27.360000px;}
.ls5{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.720000px;}
.lse{letter-spacing:0.864000px;}
.ls6{letter-spacing:2.880000px;}
.ls8{letter-spacing:3.060000px;}
.ls2{letter-spacing:11.520000px;}
.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:-19.457280px;}
.ws7{word-spacing:-18.864000px;}
.ws4{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws8{word-spacing:-15.226440px;}
.ws2{word-spacing:0.000000px;}
._c{margin-left:-4.563840px;}
._9{margin-left:-3.096000px;}
._1{margin-left:-1.477440px;}
._0{width:1.433280px;}
._2{width:3.384000px;}
._3{width:4.608000px;}
._b{width:5.616000px;}
._8{width:6.984000px;}
._4{width:8.568000px;}
._5{width:9.870720px;}
._7{width:11.295840px;}
._6{width:12.801120px;}
._a{width:14.564160px;}
._13{width:15.913440px;}
._17{width:19.041600px;}
._15{width:20.136000px;}
._14{width:21.360000px;}
._12{width:22.752000px;}
._11{width:23.832000px;}
._16{width:25.388160px;}
._e{width:29.989440px;}
._d{width:31.176000px;}
._10{width:33.842880px;}
._f{width:34.992000px;}
.fc1{color:rgb(36,36,36);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.600000px;}
.y1{bottom:77.760000px;}
.y44{bottom:115.560000px;}
.y22{bottom:136.440000px;}
.y45{bottom:137.340000px;}
.y43{bottom:146.520000px;}
.y21{bottom:167.400000px;}
.y42{bottom:177.660000px;}
.y20{bottom:198.570000px;}
.y41{bottom:208.650000px;}
.y1f{bottom:229.530000px;}
.y40{bottom:239.790000px;}
.y1e{bottom:260.670000px;}
.y3f{bottom:270.750000px;}
.y1d{bottom:291.630000px;}
.y3e{bottom:301.710000px;}
.y1c{bottom:322.770000px;}
.y3d{bottom:332.850000px;}
.y1b{bottom:353.730000px;}
.y3c{bottom:363.810000px;}
.y1a{bottom:384.870000px;}
.y3b{bottom:394.950000px;}
.y19{bottom:415.830000px;}
.y3a{bottom:425.955000px;}
.y18{bottom:447.015000px;}
.y39{bottom:457.095000px;}
.y17{bottom:477.975000px;}
.y38{bottom:488.055000px;}
.y16{bottom:509.115000px;}
.y37{bottom:519.195000px;}
.y15{bottom:540.075000px;}
.y36{bottom:550.155000px;}
.y14{bottom:571.215000px;}
.y35{bottom:581.295000px;}
.y13{bottom:602.175000px;}
.y34{bottom:612.255000px;}
.y12{bottom:633.315000px;}
.y33{bottom:643.395000px;}
.y11{bottom:664.275000px;}
.y32{bottom:674.385000px;}
.y10{bottom:695.445000px;}
.y31{bottom:705.525000px;}
.yf{bottom:726.405000px;}
.y30{bottom:736.485000px;}
.ye{bottom:757.365000px;}
.y2f{bottom:767.625000px;}
.yd{bottom:788.505000px;}
.y2e{bottom:798.585000px;}
.yc{bottom:819.465000px;}
.y2d{bottom:829.725000px;}
.yb{bottom:850.605000px;}
.y2c{bottom:860.685000px;}
.ya{bottom:881.565000px;}
.y2b{bottom:891.825000px;}
.y9{bottom:912.750000px;}
.y2a{bottom:922.830000px;}
.y8{bottom:943.710000px;}
.y29{bottom:953.970000px;}
.y7{bottom:974.850000px;}
.y47{bottom:975.750000px;}
.y28{bottom:984.930000px;}
.y6{bottom:1005.810000px;}
.y46{bottom:1006.890000px;}
.y27{bottom:1016.070000px;}
.y26{bottom:1047.030000px;}
.y5{bottom:1049.010000px;}
.y25{bottom:1078.170000px;}
.y4{bottom:1093.290000px;}
.y24{bottom:1109.130000px;}
.y3{bottom:1139.010000px;}
.y23{bottom:1140.270000px;}
.h5{height:64.546875px;}
.h2{height:65.884219px;}
.h4{height:70.664062px;}
.h6{height:74.704922px;}
.h3{height:76.317188px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.x3{left:748.589987px;}
.x1{left:757.049987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls5{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.768000pt;}
.ls6{letter-spacing:2.560000pt;}
.ls8{letter-spacing:2.720000pt;}
.ls2{letter-spacing:10.240000pt;}
.ws0{word-spacing:-17.295360pt;}
.ws7{word-spacing:-16.768000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.534613pt;}
.ws2{word-spacing:0.000000pt;}
._c{margin-left:-4.056747pt;}
._9{margin-left:-2.752000pt;}
._1{margin-left:-1.313280pt;}
._0{width:1.274027pt;}
._2{width:3.008000pt;}
._3{width:4.096000pt;}
._b{width:4.992000pt;}
._8{width:6.208000pt;}
._4{width:7.616000pt;}
._5{width:8.773973pt;}
._7{width:10.040747pt;}
._6{width:11.378773pt;}
._a{width:12.945920pt;}
._13{width:14.145280pt;}
._17{width:16.925867pt;}
._15{width:17.898667pt;}
._14{width:18.986667pt;}
._12{width:20.224000pt;}
._11{width:21.184000pt;}
._16{width:22.567253pt;}
._e{width:26.657280pt;}
._d{width:27.712000pt;}
._10{width:30.082560pt;}
._f{width:31.104000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.200000pt;}
.y1{bottom:69.120000pt;}
.y44{bottom:102.720000pt;}
.y22{bottom:121.280000pt;}
.y45{bottom:122.080000pt;}
.y43{bottom:130.240000pt;}
.y21{bottom:148.800000pt;}
.y42{bottom:157.920000pt;}
.y20{bottom:176.506667pt;}
.y41{bottom:185.466667pt;}
.y1f{bottom:204.026667pt;}
.y40{bottom:213.146667pt;}
.y1e{bottom:231.706667pt;}
.y3f{bottom:240.666667pt;}
.y1d{bottom:259.226667pt;}
.y3e{bottom:268.186667pt;}
.y1c{bottom:286.906667pt;}
.y3d{bottom:295.866667pt;}
.y1b{bottom:314.426667pt;}
.y3c{bottom:323.386667pt;}
.y1a{bottom:342.106667pt;}
.y3b{bottom:351.066667pt;}
.y19{bottom:369.626667pt;}
.y3a{bottom:378.626667pt;}
.y18{bottom:397.346667pt;}
.y39{bottom:406.306667pt;}
.y17{bottom:424.866667pt;}
.y38{bottom:433.826667pt;}
.y16{bottom:452.546667pt;}
.y37{bottom:461.506667pt;}
.y15{bottom:480.066667pt;}
.y36{bottom:489.026667pt;}
.y14{bottom:507.746667pt;}
.y35{bottom:516.706667pt;}
.y13{bottom:535.266667pt;}
.y34{bottom:544.226667pt;}
.y12{bottom:562.946667pt;}
.y33{bottom:571.906667pt;}
.y11{bottom:590.466667pt;}
.y32{bottom:599.453333pt;}
.y10{bottom:618.173333pt;}
.y31{bottom:627.133333pt;}
.yf{bottom:645.693333pt;}
.y30{bottom:654.653333pt;}
.ye{bottom:673.213333pt;}
.y2f{bottom:682.333333pt;}
.yd{bottom:700.893333pt;}
.y2e{bottom:709.853333pt;}
.yc{bottom:728.413333pt;}
.y2d{bottom:737.533333pt;}
.yb{bottom:756.093333pt;}
.y2c{bottom:765.053333pt;}
.ya{bottom:783.613333pt;}
.y2b{bottom:792.733333pt;}
.y9{bottom:811.333333pt;}
.y2a{bottom:820.293333pt;}
.y8{bottom:838.853333pt;}
.y29{bottom:847.973333pt;}
.y7{bottom:866.533333pt;}
.y47{bottom:867.333333pt;}
.y28{bottom:875.493333pt;}
.y6{bottom:894.053333pt;}
.y46{bottom:895.013333pt;}
.y27{bottom:903.173333pt;}
.y26{bottom:930.693333pt;}
.y5{bottom:932.453333pt;}
.y25{bottom:958.373333pt;}
.y4{bottom:971.813333pt;}
.y24{bottom:985.893333pt;}
.y3{bottom:1012.453333pt;}
.y23{bottom:1013.573333pt;}
.h5{height:57.375000pt;}
.h2{height:58.563750pt;}
.h4{height:62.812500pt;}
.h6{height:66.404375pt;}
.h3{height:67.837500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x3{left:665.413322pt;}
.x1{left:672.933322pt;}
}

