
    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;}
.h8{height:1079.819850px;}
.h9{height:1080.000000px;}
.h4{height:1094.178450px;}
.h5{height:1094.250000px;}
.h1a{height:1108.246950px;}
.h1b{height:1108.500000px;}
.he{height:1117.215600px;}
.hf{height:1117.500000px;}
.h2{height:1119.562350px;}
.h3{height:1119.750000px;}
.h1e{height:1120.968150px;}
.h1f{height:1121.250000px;}
.h7{height:1123.500000px;}
.h6{height:1123.737900px;}
.hd{height:1127.250000px;}
.hc{height:1127.480400px;}
.hb{height:1131.000000px;}
.ha{height:1131.362250px;}
.h16{height:1132.901850px;}
.h17{height:1133.250000px;}
.h13{height:1135.500000px;}
.h12{height:1135.577805px;}
.h14{height:1138.202550px;}
.h15{height:1138.500000px;}
.h23{height:1139.250000px;}
.h22{height:1139.485050px;}
.h21{height:1142.250000px;}
.h20{height:1142.306700px;}
.h1c{height:1143.674550px;}
.h1d{height:1143.750000px;}
.h0{height:1145.042550px;}
.h1{height:1145.250000px;}
.h10{height:1146.410550px;}
.h11{height:1146.750000px;}
.h19{height:1149.000000px;}
.h18{height:1149.146550px;}
.h26{height:1151.702700px;}
.h24{height:1151.882700px;}
.h25{height:1152.000000px;}
.wa{width:793.458150px;}
.wb{width:793.500000px;}
.w10{width:796.194300px;}
.w11{width:796.500000px;}
.w19{width:798.750000px;}
.w18{width:798.930300px;}
.w23{width:799.290300px;}
.w24{width:799.500000px;}
.w1{width:805.500000px;}
.w0{width:805.770450px;}
.w15{width:807.000000px;}
.w1c{width:807.138300px;}
.w14{width:807.138450px;}
.w20{width:808.500000px;}
.w1f{width:808.506450px;}
.w22{width:990.000000px;}
.w21{width:990.373320px;}
.w16{width:1136.704020px;}
.w17{width:1137.000000px;}
.w1e{width:1221.000000px;}
.w1d{width:1221.150750px;}
.w6{width:1349.973720px;}
.w7{width:1350.000000px;}
.wd{width:1360.500000px;}
.wc{width:1360.645350px;}
.w3{width:1364.250000px;}
.w2{width:1364.466900px;}
.w1a{width:1524.479100px;}
.w1b{width:1524.750000px;}
.w4{width:1571.889450px;}
.w5{width:1572.000000px;}
.w9{width:1591.500000px;}
.w8{width:1591.596525px;}
.w13{width:1605.000000px;}
.w12{width:1605.282000px;}
.we{width:1669.387545px;}
.wf{width:1669.500000px;}
.x0{left:0.000000px;}
@media print{
.y0{bottom:0.000000pt;}
.h8{height:959.839867pt;}
.h9{height:960.000000pt;}
.h4{height:972.603067pt;}
.h5{height:972.666667pt;}
.h1a{height:985.108400pt;}
.h1b{height:985.333333pt;}
.he{height:993.080533pt;}
.hf{height:993.333333pt;}
.h2{height:995.166533pt;}
.h3{height:995.333333pt;}
.h1e{height:996.416133pt;}
.h1f{height:996.666667pt;}
.h7{height:998.666667pt;}
.h6{height:998.878133pt;}
.hd{height:1002.000000pt;}
.hc{height:1002.204800pt;}
.hb{height:1005.333333pt;}
.ha{height:1005.655333pt;}
.h16{height:1007.023867pt;}
.h17{height:1007.333333pt;}
.h13{height:1009.333333pt;}
.h12{height:1009.402493pt;}
.h14{height:1011.735600pt;}
.h15{height:1012.000000pt;}
.h23{height:1012.666667pt;}
.h22{height:1012.875600pt;}
.h21{height:1015.333333pt;}
.h20{height:1015.383733pt;}
.h1c{height:1016.599600pt;}
.h1d{height:1016.666667pt;}
.h0{height:1017.815600pt;}
.h1{height:1018.000000pt;}
.h10{height:1019.031600pt;}
.h11{height:1019.333333pt;}
.h19{height:1021.333333pt;}
.h18{height:1021.463600pt;}
.h26{height:1023.735733pt;}
.h24{height:1023.895733pt;}
.h25{height:1024.000000pt;}
.wa{width:705.296133pt;}
.wb{width:705.333333pt;}
.w10{width:707.728267pt;}
.w11{width:708.000000pt;}
.w19{width:710.000000pt;}
.w18{width:710.160267pt;}
.w23{width:710.480267pt;}
.w24{width:710.666667pt;}
.w1{width:716.000000pt;}
.w0{width:716.240400pt;}
.w15{width:717.333333pt;}
.w1c{width:717.456267pt;}
.w14{width:717.456400pt;}
.w20{width:718.666667pt;}
.w1f{width:718.672400pt;}
.w22{width:880.000000pt;}
.w21{width:880.331840pt;}
.w16{width:1010.403573pt;}
.w17{width:1010.666667pt;}
.w1e{width:1085.333333pt;}
.w1d{width:1085.467333pt;}
.w6{width:1199.976640pt;}
.w7{width:1200.000000pt;}
.wd{width:1209.333333pt;}
.wc{width:1209.462533pt;}
.w3{width:1212.666667pt;}
.w2{width:1212.859467pt;}
.w1a{width:1355.092533pt;}
.w1b{width:1355.333333pt;}
.w4{width:1397.235067pt;}
.w5{width:1397.333333pt;}
.w9{width:1414.666667pt;}
.w8{width:1414.752467pt;}
.w13{width:1426.666667pt;}
.w12{width:1426.917333pt;}
.we{width:1483.900040pt;}
.wf{width:1484.000000pt;}
.x0{left:0.000000pt;}
}

