
    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_3ec3ee332c1d4cbae4fa79df.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_51b3dbb05eb5cced8dab5689.woff')format("woff");}.ff2{font-family:ff2;line-height:1.068848;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_d7613e217a895550c39e54b5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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:33.120000px;}
.ls1{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014400px;}
.ls3{letter-spacing:0.242352px;}
.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:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.985600px;}
.ws4{word-spacing:-12.122352px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-1.009800px;}
._2{width:1.418400px;}
._4{width:2.733000px;}
._a{width:3.841200px;}
._7{width:5.205600px;}
._8{width:6.256800px;}
._11{width:8.172000px;}
._d{width:9.403200px;}
._15{width:10.644000px;}
._17{width:11.908800px;}
._3{width:12.931200px;}
._16{width:14.598000px;}
._b{width:16.519800px;}
._6{width:19.061400px;}
._1d{width:20.064000px;}
._14{width:21.183000px;}
._f{width:22.881600px;}
._1a{width:24.359400px;}
._18{width:25.653600px;}
._1c{width:26.835000px;}
._12{width:28.012200px;}
._c{width:29.088000px;}
._9{width:30.376800px;}
._22{width:31.409400px;}
._10{width:32.990400px;}
._1e{width:34.972800px;}
._20{width:36.093600px;}
._19{width:37.216800px;}
._21{width:38.732400px;}
._5{width:39.933000px;}
._e{width:41.325000px;}
._1b{width:42.600000px;}
._1f{width:45.965400px;}
._23{width:52.963200px;}
._0{width:72.828000px;}
._1{width:194.399400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs0{font-size:59.040000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.600000px;}
.y1{bottom:18.000000px;}
.y2{bottom:39.720030px;}
.y3{bottom:54.120030px;}
.y36{bottom:108.120030px;}
.y35{bottom:128.640030px;}
.y34{bottom:149.520000px;}
.y37{bottom:152.400000px;}
.y33{bottom:170.040000px;}
.y32{bottom:190.920000px;}
.y31{bottom:211.440000px;}
.y30{bottom:232.320000px;}
.y2f{bottom:252.840000px;}
.y2e{bottom:273.360000px;}
.y2d{bottom:294.240000px;}
.y2c{bottom:314.760000px;}
.y2b{bottom:335.640000px;}
.y2a{bottom:356.160000px;}
.y29{bottom:377.040000px;}
.y28{bottom:397.560000px;}
.y27{bottom:418.440000px;}
.y26{bottom:438.960000px;}
.y25{bottom:459.840000px;}
.y24{bottom:480.360000px;}
.y23{bottom:501.240000px;}
.y22{bottom:521.760000px;}
.y21{bottom:542.640000px;}
.y20{bottom:563.160000px;}
.y1f{bottom:584.040000px;}
.y1e{bottom:604.560000px;}
.y1d{bottom:625.440000px;}
.y1c{bottom:645.960000px;}
.y1b{bottom:666.840000px;}
.y1a{bottom:687.360000px;}
.y19{bottom:708.240000px;}
.y18{bottom:728.760000px;}
.y17{bottom:749.640000px;}
.y16{bottom:770.160000px;}
.y15{bottom:791.040000px;}
.y14{bottom:811.560000px;}
.y13{bottom:832.440000px;}
.y12{bottom:852.960000px;}
.y11{bottom:873.840000px;}
.y10{bottom:894.360000px;}
.yf{bottom:915.240000px;}
.ye{bottom:935.760000px;}
.yd{bottom:956.640000px;}
.yc{bottom:977.160000px;}
.yb{bottom:998.040000px;}
.ya{bottom:1018.560000px;}
.y9{bottom:1039.440000px;}
.y8{bottom:1059.960000px;}
.y7{bottom:1080.840000px;}
.y6{bottom:1101.360000px;}
.y5{bottom:1122.240000px;}
.h3{height:17.280000px;}
.h2{height:51.804141px;}
.h5{height:63.175781px;}
.h6{height:63.351563px;}
.h4{height:63.949219px;}
.h7{height:74.816016px;}
.h1{height:1227.000000px;}
.h0{height:1263.000000px;}
.w2{width:7.560000px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:27.000000px;}
.x2{left:100.440000px;}
.xe{left:153.539850px;}
.xa{left:163.437450px;}
.x6{left:180.044400px;}
.xb{left:198.163050px;}
.x5{left:201.063450px;}
.x4{left:216.312450px;}
.xd{left:259.211850px;}
.x7{left:319.869600px;}
.xc{left:328.342200px;}
.x9{left:339.385650px;}
.x8{left:419.339850px;}
.x3{left:757.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls1{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.012800pt;}
.ls3{letter-spacing:0.215424pt;}
.ws2{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.987200pt;}
.ws4{word-spacing:-10.775424pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-0.897600pt;}
._2{width:1.260800pt;}
._4{width:2.429333pt;}
._a{width:3.414400pt;}
._7{width:4.627200pt;}
._8{width:5.561600pt;}
._11{width:7.264000pt;}
._d{width:8.358400pt;}
._15{width:9.461333pt;}
._17{width:10.585600pt;}
._3{width:11.494400pt;}
._16{width:12.976000pt;}
._b{width:14.684267pt;}
._6{width:16.943467pt;}
._1d{width:17.834667pt;}
._14{width:18.829333pt;}
._f{width:20.339200pt;}
._1a{width:21.652800pt;}
._18{width:22.803200pt;}
._1c{width:23.853333pt;}
._12{width:24.899733pt;}
._c{width:25.856000pt;}
._9{width:27.001600pt;}
._22{width:27.919467pt;}
._10{width:29.324800pt;}
._1e{width:31.086933pt;}
._20{width:32.083200pt;}
._19{width:33.081600pt;}
._21{width:34.428800pt;}
._5{width:35.496000pt;}
._e{width:36.733333pt;}
._1b{width:37.866667pt;}
._1f{width:40.858133pt;}
._23{width:47.078400pt;}
._0{width:64.736000pt;}
._1{width:172.799467pt;}
.fs2{font-size:42.240000pt;}
.fs0{font-size:52.480000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.200000pt;}
.y1{bottom:16.000000pt;}
.y2{bottom:35.306693pt;}
.y3{bottom:48.106693pt;}
.y36{bottom:96.106693pt;}
.y35{bottom:114.346693pt;}
.y34{bottom:132.906667pt;}
.y37{bottom:135.466667pt;}
.y33{bottom:151.146667pt;}
.y32{bottom:169.706667pt;}
.y31{bottom:187.946667pt;}
.y30{bottom:206.506667pt;}
.y2f{bottom:224.746667pt;}
.y2e{bottom:242.986667pt;}
.y2d{bottom:261.546667pt;}
.y2c{bottom:279.786667pt;}
.y2b{bottom:298.346667pt;}
.y2a{bottom:316.586667pt;}
.y29{bottom:335.146667pt;}
.y28{bottom:353.386667pt;}
.y27{bottom:371.946667pt;}
.y26{bottom:390.186667pt;}
.y25{bottom:408.746667pt;}
.y24{bottom:426.986667pt;}
.y23{bottom:445.546667pt;}
.y22{bottom:463.786667pt;}
.y21{bottom:482.346667pt;}
.y20{bottom:500.586667pt;}
.y1f{bottom:519.146667pt;}
.y1e{bottom:537.386667pt;}
.y1d{bottom:555.946667pt;}
.y1c{bottom:574.186667pt;}
.y1b{bottom:592.746667pt;}
.y1a{bottom:610.986667pt;}
.y19{bottom:629.546667pt;}
.y18{bottom:647.786667pt;}
.y17{bottom:666.346667pt;}
.y16{bottom:684.586667pt;}
.y15{bottom:703.146667pt;}
.y14{bottom:721.386667pt;}
.y13{bottom:739.946667pt;}
.y12{bottom:758.186667pt;}
.y11{bottom:776.746667pt;}
.y10{bottom:794.986667pt;}
.yf{bottom:813.546667pt;}
.ye{bottom:831.786667pt;}
.yd{bottom:850.346667pt;}
.yc{bottom:868.586667pt;}
.yb{bottom:887.146667pt;}
.ya{bottom:905.386667pt;}
.y9{bottom:923.946667pt;}
.y8{bottom:942.186667pt;}
.y7{bottom:960.746667pt;}
.y6{bottom:978.986667pt;}
.y5{bottom:997.546667pt;}
.h3{height:15.360000pt;}
.h2{height:46.048125pt;}
.h5{height:56.156250pt;}
.h6{height:56.312500pt;}
.h4{height:56.843750pt;}
.h7{height:66.503125pt;}
.h1{height:1090.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:6.720000pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:24.000000pt;}
.x2{left:89.280000pt;}
.xe{left:136.479867pt;}
.xa{left:145.277733pt;}
.x6{left:160.039467pt;}
.xb{left:176.144933pt;}
.x5{left:178.723067pt;}
.x4{left:192.277733pt;}
.xd{left:230.410533pt;}
.x7{left:284.328533pt;}
.xc{left:291.859733pt;}
.x9{left:301.676133pt;}
.x8{left:372.746533pt;}
.x3{left:673.600000pt;}
}

