
    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_1763c3775175ee8a7672e7cf.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_c989401f0d03e3ee912016c3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_32e4672b54417192dbd112a8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.000000;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_bf1cfcbe91ab14a414ae8bcd.woff')format("woff");}.ff4{font-family:ff4;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.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014772px;}
.ls0{letter-spacing:34.006126px;}
.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.014764px;}
.ws0{word-spacing:-17.999993px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.152067px;}
._0{width:1.077267px;}
.fc0{color:rgb(54,54,57);}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.360877px;}
.y30{bottom:116.491453px;}
.y62{bottom:125.940850px;}
.y2f{bottom:137.191445px;}
.y79{bottom:146.550841px;}
.y61{bottom:146.640841px;}
.y73{bottom:149.340840px;}
.y2e{bottom:157.891437px;}
.y69{bottom:167.160833px;}
.y60{bottom:167.340833px;}
.y72{bottom:170.040832px;}
.y2d{bottom:178.591429px;}
.y6b{bottom:187.860825px;}
.y5f{bottom:188.040825px;}
.y71{bottom:190.740824px;}
.y2c{bottom:199.291420px;}
.y66{bottom:208.560817px;}
.y5e{bottom:208.740817px;}
.y70{bottom:211.440815px;}
.y2b{bottom:219.991412px;}
.y5d{bottom:229.260808px;}
.y64{bottom:229.440808px;}
.y6f{bottom:232.140807px;}
.y2a{bottom:240.691404px;}
.y5c{bottom:250.140800px;}
.y6e{bottom:252.840799px;}
.y29{bottom:261.391395px;}
.y78{bottom:270.660792px;}
.y5b{bottom:270.840792px;}
.y6d{bottom:273.540791px;}
.y28{bottom:282.091387px;}
.y5a{bottom:291.540783px;}
.y6c{bottom:294.060782px;}
.y27{bottom:302.791379px;}
.y59{bottom:312.240775px;}
.y26{bottom:323.491371px;}
.y58{bottom:332.940767px;}
.y25{bottom:344.191362px;}
.y57{bottom:353.640759px;}
.y24{bottom:364.891354px;}
.y56{bottom:374.340750px;}
.y23{bottom:385.591346px;}
.y55{bottom:395.040742px;}
.y22{bottom:406.291337px;}
.y54{bottom:415.740734px;}
.y21{bottom:426.991329px;}
.y63{bottom:436.260725px;}
.y53{bottom:436.440725px;}
.y20{bottom:447.691321px;}
.y52{bottom:457.140717px;}
.y1f{bottom:468.121313px;}
.y51{bottom:477.840709px;}
.y50{bottom:498.540701px;}
.y1e{bottom:510.061296px;}
.y4f{bottom:519.240692px;}
.y1d{bottom:530.761288px;}
.y4e{bottom:539.940684px;}
.y1c{bottom:551.461279px;}
.y4d{bottom:560.640676px;}
.y1b{bottom:572.161271px;}
.y4c{bottom:581.340667px;}
.y1a{bottom:592.861263px;}
.y4b{bottom:602.040659px;}
.y19{bottom:613.561255px;}
.y4a{bottom:622.740651px;}
.y18{bottom:634.261246px;}
.y49{bottom:643.440643px;}
.y17{bottom:654.961238px;}
.y77{bottom:663.960634px;}
.y48{bottom:664.140634px;}
.y16{bottom:675.481230px;}
.y47{bottom:684.840626px;}
.y15{bottom:696.361221px;}
.y46{bottom:705.540618px;}
.y14{bottom:717.061213px;}
.y76{bottom:726.150610px;}
.y45{bottom:726.240610px;}
.y13{bottom:737.761205px;}
.y68{bottom:746.760601px;}
.y44{bottom:746.940601px;}
.y12{bottom:758.461197px;}
.y67{bottom:767.460593px;}
.y43{bottom:767.640593px;}
.y11{bottom:779.161188px;}
.y42{bottom:788.250585px;}
.y10{bottom:799.861180px;}
.y65{bottom:808.770576px;}
.y41{bottom:808.950576px;}
.yf{bottom:820.561172px;}
.y40{bottom:829.650568px;}
.ye{bottom:841.261163px;}
.y3f{bottom:850.350560px;}
.yd{bottom:861.961155px;}
.y3e{bottom:871.050552px;}
.yc{bottom:882.481147px;}
.y3d{bottom:891.750543px;}
.yb{bottom:903.181139px;}
.y3c{bottom:912.450535px;}
.ya{bottom:923.881130px;}
.y3b{bottom:933.150527px;}
.y9{bottom:944.581122px;}
.y3a{bottom:953.850518px;}
.y8{bottom:965.281114px;}
.y39{bottom:974.550510px;}
.y7{bottom:985.981106px;}
.y38{bottom:995.250502px;}
.y6{bottom:1006.681097px;}
.y6a{bottom:1015.770494px;}
.y37{bottom:1015.950494px;}
.y5{bottom:1027.381089px;}
.y75{bottom:1036.470485px;}
.y36{bottom:1036.650485px;}
.y4{bottom:1048.081081px;}
.y35{bottom:1057.350477px;}
.y3{bottom:1068.961072px;}
.y7b{bottom:1077.960469px;}
.y34{bottom:1078.050469px;}
.y2{bottom:1085.521066px;}
.y7a{bottom:1098.660461px;}
.y33{bottom:1098.750460px;}
.y32{bottom:1119.450452px;}
.y74{bottom:1139.970444px;}
.y31{bottom:1140.150444px;}
.h1{height:63.175756px;}
.h3{height:63.351537px;}
.h2{height:63.949193px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:127.620529px;}
.x4{left:154.620544px;}
.x5{left:181.620529px;}
.x1{left:586.439765px;}
.x2{left:765.359694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013130pt;}
.ls0{letter-spacing:30.227668pt;}
.ws2{word-spacing:-16.013124pt;}
.ws0{word-spacing:-15.999994pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-1.024059pt;}
._0{width:0.957571pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.987446pt;}
.y30{bottom:103.547959pt;}
.y62{bottom:111.947422pt;}
.y2f{bottom:121.947951pt;}
.y79{bottom:130.267415pt;}
.y61{bottom:130.347415pt;}
.y73{bottom:132.747414pt;}
.y2e{bottom:140.347944pt;}
.y69{bottom:148.587407pt;}
.y60{bottom:148.747407pt;}
.y72{bottom:151.147406pt;}
.y2d{bottom:158.747937pt;}
.y6b{bottom:166.987400pt;}
.y5f{bottom:167.147400pt;}
.y71{bottom:169.547399pt;}
.y2c{bottom:177.147929pt;}
.y66{bottom:185.387393pt;}
.y5e{bottom:185.547392pt;}
.y70{bottom:187.947391pt;}
.y2b{bottom:195.547922pt;}
.y5d{bottom:203.787385pt;}
.y64{bottom:203.947385pt;}
.y6f{bottom:206.347384pt;}
.y2a{bottom:213.947914pt;}
.y5c{bottom:222.347378pt;}
.y6e{bottom:224.747377pt;}
.y29{bottom:232.347907pt;}
.y78{bottom:240.587370pt;}
.y5b{bottom:240.747370pt;}
.y6d{bottom:243.147369pt;}
.y28{bottom:250.747900pt;}
.y5a{bottom:259.147363pt;}
.y6c{bottom:261.387362pt;}
.y27{bottom:269.147892pt;}
.y59{bottom:277.547356pt;}
.y26{bottom:287.547885pt;}
.y58{bottom:295.947348pt;}
.y25{bottom:305.947878pt;}
.y57{bottom:314.347341pt;}
.y24{bottom:324.347870pt;}
.y56{bottom:332.747334pt;}
.y23{bottom:342.747863pt;}
.y55{bottom:351.147326pt;}
.y22{bottom:361.147856pt;}
.y54{bottom:369.547319pt;}
.y21{bottom:379.547848pt;}
.y63{bottom:387.787312pt;}
.y53{bottom:387.947311pt;}
.y20{bottom:397.947841pt;}
.y52{bottom:406.347304pt;}
.y1f{bottom:416.107834pt;}
.y51{bottom:424.747297pt;}
.y50{bottom:443.147289pt;}
.y1e{bottom:453.387819pt;}
.y4f{bottom:461.547282pt;}
.y1d{bottom:471.787811pt;}
.y4e{bottom:479.947275pt;}
.y1c{bottom:490.187804pt;}
.y4d{bottom:498.347267pt;}
.y1b{bottom:508.587797pt;}
.y4c{bottom:516.747260pt;}
.y1a{bottom:526.987789pt;}
.y4b{bottom:535.147253pt;}
.y19{bottom:545.387782pt;}
.y4a{bottom:553.547245pt;}
.y18{bottom:563.787774pt;}
.y49{bottom:571.947238pt;}
.y17{bottom:582.187767pt;}
.y77{bottom:590.187231pt;}
.y48{bottom:590.347231pt;}
.y16{bottom:600.427760pt;}
.y47{bottom:608.747223pt;}
.y15{bottom:618.987752pt;}
.y46{bottom:627.147216pt;}
.y14{bottom:637.387745pt;}
.y76{bottom:645.467208pt;}
.y45{bottom:645.547208pt;}
.y13{bottom:655.787738pt;}
.y68{bottom:663.787201pt;}
.y44{bottom:663.947201pt;}
.y12{bottom:674.187730pt;}
.y67{bottom:682.187194pt;}
.y43{bottom:682.347194pt;}
.y11{bottom:692.587723pt;}
.y42{bottom:700.667186pt;}
.y10{bottom:710.987716pt;}
.y65{bottom:718.907179pt;}
.y41{bottom:719.067179pt;}
.yf{bottom:729.387708pt;}
.y40{bottom:737.467172pt;}
.ye{bottom:747.787701pt;}
.y3f{bottom:755.867164pt;}
.yd{bottom:766.187694pt;}
.y3e{bottom:774.267157pt;}
.yc{bottom:784.427686pt;}
.y3d{bottom:792.667150pt;}
.yb{bottom:802.827679pt;}
.y3c{bottom:811.067142pt;}
.ya{bottom:821.227672pt;}
.y3b{bottom:829.467135pt;}
.y9{bottom:839.627664pt;}
.y3a{bottom:847.867128pt;}
.y8{bottom:858.027657pt;}
.y39{bottom:866.267120pt;}
.y7{bottom:876.427649pt;}
.y38{bottom:884.667113pt;}
.y6{bottom:894.827642pt;}
.y6a{bottom:902.907106pt;}
.y37{bottom:903.067105pt;}
.y5{bottom:913.227635pt;}
.y75{bottom:921.307098pt;}
.y36{bottom:921.467098pt;}
.y4{bottom:931.627627pt;}
.y35{bottom:939.867091pt;}
.y3{bottom:950.187620pt;}
.y7b{bottom:958.187083pt;}
.y34{bottom:958.267083pt;}
.y2{bottom:964.907614pt;}
.y7a{bottom:976.587076pt;}
.y33{bottom:976.667076pt;}
.y32{bottom:995.067069pt;}
.y74{bottom:1013.307061pt;}
.y31{bottom:1013.467061pt;}
.h1{height:56.156228pt;}
.h3{height:56.312477pt;}
.h2{height:56.843727pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:113.440471pt;}
.x4{left:137.440484pt;}
.x5{left:161.440470pt;}
.x1{left:521.279791pt;}
.x2{left:680.319728pt;}
}

