
    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;}
.sc_{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
}
.y0{bottom:0.000000px;}
.h19{height:792.000000px;}
.h18{height:792.334350px;}
.h2b{height:1163.250000px;}
.h2a{height:1163.464950px;}
.h1c{height:1187.028600px;}
.h1d{height:1187.250000px;}
.h1a{height:1191.447600px;}
.h1b{height:1191.750000px;}
.h26{height:1194.393000px;}
.h27{height:1194.750000px;}
.h15{height:1195.500000px;}
.h14{height:1195.865700px;}
.h23{height:1197.000000px;}
.h22{height:1197.338700px;}
.h12{height:1198.500000px;}
.h11{height:1198.811250px;}
.h6{height:1200.000000px;}
.h5{height:1200.284550px;}
.h8{height:1201.500000px;}
.h7{height:1201.757100px;}
.h10{height:1203.000000px;}
.hf{height:1203.229200px;}
.h13{height:1203.230250px;}
.h1{height:1206.000000px;}
.h0{height:1206.175500px;}
.h4{height:1206.175650px;}
.ha{height:1209.000000px;}
.h9{height:1209.120450px;}
.h25{height:1213.500000px;}
.h24{height:1213.538400px;}
.he{height:1215.000000px;}
.hd{height:1215.011100px;}
.h28{height:1215.011850px;}
.h1e{height:1216.483650px;}
.hb{height:1216.484850px;}
.hc{height:1216.500000px;}
.h2{height:1217.956950px;}
.h29{height:1217.957400px;}
.h3{height:1218.000000px;}
.h20{height:1219.429800px;}
.h21{height:1219.500000px;}
.h16{height:1222.374900px;}
.h1f{height:1222.375650px;}
.h17{height:1222.500000px;}
.w2e{width:755.250000px;}
.w2d{width:755.516400px;}
.w1e{width:767.250000px;}
.w1d{width:767.297850px;}
.wb{width:768.750000px;}
.wa{width:768.770340px;}
.w8{width:771.716400px;}
.w9{width:771.750000px;}
.w6{width:774.662100px;}
.w7{width:774.750000px;}
.w4{width:779.080350px;}
.w5{width:779.250000px;}
.w1f{width:780.552600px;}
.w20{width:780.750000px;}
.w28{width:782.025315px;}
.w29{width:782.250000px;}
.w10{width:783.498060px;}
.w11{width:783.750000px;}
.w19{width:784.970340px;}
.w25{width:784.971150px;}
.w1a{width:785.250000px;}
.w12{width:786.444315px;}
.w13{width:786.750000px;}
.w21{width:787.916850px;}
.w22{width:788.250000px;}
.wc{width:789.388560px;}
.w16{width:789.389085px;}
.wd{width:789.750000px;}
.w27{width:790.500000px;}
.w26{width:790.862340px;}
.w1{width:792.000000px;}
.w0{width:792.334350px;}
.w24{width:792.334815px;}
.w2a{width:792.335085px;}
.w15{width:795.000000px;}
.w14{width:795.280815px;}
.w3{width:798.000000px;}
.w2{width:798.225060px;}
.w18{width:799.500000px;}
.w23{width:799.698585px;}
.w17{width:799.698840px;}
.wf{width:807.000000px;}
.we{width:807.062085px;}
.w2b{width:817.370595px;}
.w2c{width:817.500000px;}
.w1c{width:1206.000000px;}
.w1b{width:1206.175500px;}
.x0{left:0.000000px;}
@media print{
.y0{bottom:0.000000pt;}
.h19{height:704.000000pt;}
.h18{height:704.297200pt;}
.h2b{height:1034.000000pt;}
.h2a{height:1034.191067pt;}
.h1c{height:1055.136533pt;}
.h1d{height:1055.333333pt;}
.h1a{height:1059.064533pt;}
.h1b{height:1059.333333pt;}
.h26{height:1061.682667pt;}
.h27{height:1062.000000pt;}
.h15{height:1062.666667pt;}
.h14{height:1062.991733pt;}
.h23{height:1064.000000pt;}
.h22{height:1064.301067pt;}
.h12{height:1065.333333pt;}
.h11{height:1065.610000pt;}
.h6{height:1066.666667pt;}
.h5{height:1066.919600pt;}
.h8{height:1068.000000pt;}
.h7{height:1068.228533pt;}
.h10{height:1069.333333pt;}
.hf{height:1069.537067pt;}
.h13{height:1069.538000pt;}
.h1{height:1072.000000pt;}
.h0{height:1072.156000pt;}
.h4{height:1072.156133pt;}
.ha{height:1074.666667pt;}
.h9{height:1074.773733pt;}
.h25{height:1078.666667pt;}
.h24{height:1078.700800pt;}
.he{height:1080.000000pt;}
.hd{height:1080.009867pt;}
.h28{height:1080.010533pt;}
.h1e{height:1081.318800pt;}
.hb{height:1081.319867pt;}
.hc{height:1081.333333pt;}
.h2{height:1082.628400pt;}
.h29{height:1082.628800pt;}
.h3{height:1082.666667pt;}
.h20{height:1083.937600pt;}
.h21{height:1084.000000pt;}
.h16{height:1086.555467pt;}
.h1f{height:1086.556133pt;}
.h17{height:1086.666667pt;}
.w2e{width:671.333333pt;}
.w2d{width:671.570133pt;}
.w1e{width:682.000000pt;}
.w1d{width:682.042533pt;}
.wb{width:683.333333pt;}
.wa{width:683.351413pt;}
.w8{width:685.970133pt;}
.w9{width:686.000000pt;}
.w6{width:688.588533pt;}
.w7{width:688.666667pt;}
.w4{width:692.515867pt;}
.w5{width:692.666667pt;}
.w1f{width:693.824533pt;}
.w20{width:694.000000pt;}
.w28{width:695.133613pt;}
.w29{width:695.333333pt;}
.w10{width:696.442720pt;}
.w11{width:696.666667pt;}
.w19{width:697.751413pt;}
.w25{width:697.752133pt;}
.w1a{width:698.000000pt;}
.w12{width:699.061613pt;}
.w13{width:699.333333pt;}
.w21{width:700.370533pt;}
.w22{width:700.666667pt;}
.wc{width:701.678720pt;}
.w16{width:701.679187pt;}
.wd{width:702.000000pt;}
.w27{width:702.666667pt;}
.w26{width:702.988747pt;}
.w1{width:704.000000pt;}
.w0{width:704.297200pt;}
.w24{width:704.297613pt;}
.w2a{width:704.297853pt;}
.w15{width:706.666667pt;}
.w14{width:706.916280pt;}
.w3{width:709.333333pt;}
.w2{width:709.533387pt;}
.w18{width:710.666667pt;}
.w23{width:710.843187pt;}
.w17{width:710.843413pt;}
.wf{width:717.333333pt;}
.we{width:717.388520pt;}
.w2b{width:726.551640pt;}
.w2c{width:726.666667pt;}
.w1c{width:1072.000000pt;}
.w1b{width:1072.156000pt;}
.x0{left:0.000000pt;}
}

