
    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;}
.h11{height:785.922090px;}
.h12{height:786.000000px;}
.h13{height:788.034780px;}
.h14{height:788.250000px;}
.h7{height:790.147470px;}
.h8{height:790.500000px;}
.h16{height:794.250000px;}
.h15{height:794.372865px;}
.hd{height:1177.958100px;}
.he{height:1178.250000px;}
.h9{height:1182.458100px;}
.ha{height:1182.750000px;}
.h4{height:1221.445935px;}
.h6{height:1221.716325px;}
.h5{height:1221.750000px;}
.h24{height:1222.500000px;}
.h23{height:1222.670355px;}
.h18{height:1224.000000px;}
.h17{height:1224.020355px;}
.h1e{height:1224.750000px;}
.h1d{height:1224.920355px;}
.h20{height:1227.000000px;}
.h1f{height:1227.170355px;}
.h1c{height:1227.750000px;}
.h1b{height:1228.070370px;}
.h1{height:1242.750000px;}
.h0{height:1242.858465px;}
.h22{height:1622.250000px;}
.h21{height:1622.372865px;}
.hb{height:2440.208100px;}
.hc{height:2440.500000px;}
.h10{height:2442.750000px;}
.hf{height:2442.908100px;}
.h19{height:2450.101230px;}
.h1a{height:2450.250000px;}
.h3{height:2484.000000px;}
.h2{height:2484.145935px;}
.wb{width:723.000000px;}
.wa{width:723.044040px;}
.we{width:726.644055px;}
.wf{width:726.750000px;}
.w4{width:784.286910px;}
.w5{width:784.500000px;}
.w15{width:792.572865px;}
.w16{width:792.750000px;}
.w1c{width:794.250000px;}
.w1b{width:794.372865px;}
.w6{width:795.547485px;}
.w7{width:795.750000px;}
.w1d{width:797.972850px;}
.w1e{width:798.000000px;}
.w0{width:799.286940px;}
.w1{width:799.500000px;}
.w19{width:805.172865px;}
.w1a{width:805.500000px;}
.w9{width:1218.750000px;}
.w8{width:1219.016325px;}
.w13{width:1225.370370px;}
.w14{width:1225.500000px;}
.w11{width:1229.250000px;}
.w10{width:1229.579835px;}
.w12{width:1229.606325px;}
.wd{width:1560.000000px;}
.wc{width:1560.044040px;}
.w18{width:1612.500000px;}
.w17{width:1612.566930px;}
.w3{width:1619.250000px;}
.w2{width:1619.486910px;}
.w1f{width:2483.120370px;}
.w20{width:2483.250000px;}
.x0{left:0.000000px;}
@media print{
.y0{bottom:0.000000pt;}
.h11{height:698.597413pt;}
.h12{height:698.666667pt;}
.h13{height:700.475360pt;}
.h14{height:700.666667pt;}
.h7{height:702.353307pt;}
.h8{height:702.666667pt;}
.h16{height:706.000000pt;}
.h15{height:706.109213pt;}
.hd{height:1047.073867pt;}
.he{height:1047.333333pt;}
.h9{height:1051.073867pt;}
.ha{height:1051.333333pt;}
.h4{height:1085.729720pt;}
.h6{height:1085.970067pt;}
.h5{height:1086.000000pt;}
.h24{height:1086.666667pt;}
.h23{height:1086.818093pt;}
.h18{height:1088.000000pt;}
.h17{height:1088.018093pt;}
.h1e{height:1088.666667pt;}
.h1d{height:1088.818093pt;}
.h20{height:1090.666667pt;}
.h1f{height:1090.818093pt;}
.h1c{height:1091.333333pt;}
.h1b{height:1091.618107pt;}
.h1{height:1104.666667pt;}
.h0{height:1104.763080pt;}
.h22{height:1442.000000pt;}
.h21{height:1442.109213pt;}
.hb{height:2169.073867pt;}
.hc{height:2169.333333pt;}
.h10{height:2171.333333pt;}
.hf{height:2171.473867pt;}
.h19{height:2177.867760pt;}
.h1a{height:2178.000000pt;}
.h3{height:2208.000000pt;}
.h2{height:2208.129720pt;}
.wb{width:642.666667pt;}
.wa{width:642.705813pt;}
.we{width:645.905827pt;}
.wf{width:646.000000pt;}
.w4{width:697.143920pt;}
.w5{width:697.333333pt;}
.w15{width:704.509213pt;}
.w16{width:704.666667pt;}
.w1c{width:706.000000pt;}
.w1b{width:706.109213pt;}
.w6{width:707.153320pt;}
.w7{width:707.333333pt;}
.w1d{width:709.309200pt;}
.w1e{width:709.333333pt;}
.w0{width:710.477280pt;}
.w1{width:710.666667pt;}
.w19{width:715.709213pt;}
.w1a{width:716.000000pt;}
.w9{width:1083.333333pt;}
.w8{width:1083.570067pt;}
.w13{width:1089.218107pt;}
.w14{width:1089.333333pt;}
.w11{width:1092.666667pt;}
.w10{width:1092.959853pt;}
.w12{width:1092.983400pt;}
.wd{width:1386.666667pt;}
.wc{width:1386.705813pt;}
.w18{width:1433.333333pt;}
.w17{width:1433.392827pt;}
.w3{width:1439.333333pt;}
.w2{width:1439.543920pt;}
.w1f{width:2207.218107pt;}
.w20{width:2207.333333pt;}
.x0{left:0.000000pt;}
}

