
    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_bfa49128285e8fb9b1280766.woff')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_78117fb5213a6569648b9b19.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_8c031afb394979c94204b41b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.892000;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_b123403da48eef8f43bb40fc.woff')format("woff");}.ff4{font-family:ff4;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;}
.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:31.679987px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.190080px;}
.ls6{letter-spacing:0.217440px;}
.lsd{letter-spacing:0.313560px;}
.lse{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.502560px;}
.ls1{letter-spacing:0.529920px;}
.ls5{letter-spacing:0.910080px;}
.ls8{letter-spacing:2.383516px;}
.lsf{letter-spacing:2.519999px;}
.ls7{letter-spacing:5.263515px;}
.lsb{letter-spacing:11.424955px;}
.lsc{letter-spacing:15.024954px;}
.lsa{letter-spacing:26.544949px;}
.ls9{letter-spacing:30.144948px;}
.ls0{letter-spacing:32.304947px;}
.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;}
}
.ws0{word-spacing:-16.919993px;}
.ws4{word-spacing:-14.043594px;}
.ws1{word-spacing:-13.366435px;}
.ws3{word-spacing:-11.335855px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.134672px;}
._0{width:1.032539px;}
._a{width:2.532917px;}
._3{width:3.864985px;}
._2{width:4.870104px;}
._e{width:6.827083px;}
._d{width:7.967496px;}
._11{width:9.263254px;}
._c{width:10.270099px;}
._7{width:11.974856px;}
._6{width:13.564807px;}
._b{width:15.547686px;}
._17{width:17.271781px;}
._f{width:18.550084px;}
._10{width:19.786974px;}
._13{width:21.103270px;}
._5{width:22.139387px;}
._4{width:23.317964px;}
._19{width:25.369911px;}
._12{width:26.735048px;}
._14{width:27.760047px;}
._9{width:28.861946px;}
._8{width:30.042737px;}
._15{width:31.455296px;}
._16{width:32.855154px;}
._1a{width:34.307787px;}
._18{width:37.962887px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:45.343422px;}
.fs2{font-size:53.465739px;}
.fs3{font-size:56.174378px;}
.fs0{font-size:67.679973px;}
.y0{bottom:0.000000px;}
.y21{bottom:119.699952px;}
.y4a{bottom:126.179950px;}
.y2e{bottom:139.139944px;}
.y20{bottom:158.579937px;}
.y49{bottom:165.059934px;}
.y2d{bottom:178.019929px;}
.y1f{bottom:197.459921px;}
.y48{bottom:203.939918px;}
.y2c{bottom:216.899913px;}
.y1e{bottom:236.339905px;}
.y47{bottom:242.819903px;}
.y2b{bottom:255.959898px;}
.y1d{bottom:275.399890px;}
.y46{bottom:281.699887px;}
.y2a{bottom:294.839882px;}
.y1c{bottom:314.279874px;}
.y45{bottom:320.759872px;}
.y29{bottom:333.719867px;}
.y1b{bottom:353.159859px;}
.y44{bottom:359.639856px;}
.y28{bottom:372.599851px;}
.y1a{bottom:392.039843px;}
.y43{bottom:398.519841px;}
.y27{bottom:411.299835px;}
.y19{bottom:430.739828px;}
.y42{bottom:437.399825px;}
.y26{bottom:450.359820px;}
.y18{bottom:469.799812px;}
.y41{bottom:476.279809px;}
.y25{bottom:489.239804px;}
.y17{bottom:508.679797px;}
.y40{bottom:515.339794px;}
.y24{bottom:528.119789px;}
.y16{bottom:547.559781px;}
.y3f{bottom:554.219778px;}
.y23{bottom:566.999773px;}
.y15{bottom:586.439765px;}
.y3e{bottom:593.099763px;}
.y14{bottom:605.879758px;}
.y13{bottom:625.319750px;}
.y3d{bottom:631.979747px;}
.y12{bottom:644.939742px;}
.y11{bottom:664.379734px;}
.y3c{bottom:670.859732px;}
.y10{bottom:683.819726px;}
.yf{bottom:703.259719px;}
.y3b{bottom:709.919716px;}
.ye{bottom:722.699711px;}
.yd{bottom:742.139703px;}
.y3a{bottom:748.799700px;}
.yc{bottom:761.579695px;}
.yb{bottom:781.019688px;}
.y39{bottom:787.679685px;}
.ya{bottom:800.459680px;}
.y9{bottom:819.899672px;}
.y38{bottom:826.559669px;}
.y8{bottom:839.519664px;}
.y7{bottom:858.959656px;}
.y37{bottom:865.439654px;}
.y6{bottom:878.399649px;}
.y36{bottom:884.159646px;}
.y35{bottom:900.359640px;}
.y34{bottom:916.559633px;}
.y5{bottom:917.279633px;}
.y33{bottom:932.759627px;}
.y32{bottom:949.139620px;}
.y4{bottom:956.159618px;}
.y31{bottom:965.339614px;}
.y30{bottom:981.359607px;}
.y3{bottom:995.039602px;}
.y2f{bottom:997.559601px;}
.y2{bottom:1034.099586px;}
.y1{bottom:1072.439571px;}
.y22{bottom:1072.979571px;}
.h6{height:38.647972px;}
.h4{height:46.225422px;}
.h2{height:46.563821px;}
.h1{height:46.834541px;}
.h5{height:62.156262px;}
.h3{height:62.876262px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:138.959944px;}
.x6{left:164.339934px;}
.xc{left:176.939179px;}
.x5{left:188.819924px;}
.xb{left:194.939922px;}
.x8{left:198.899920px;}
.x9{left:211.679915px;}
.xa{left:218.699913px;}
.x1{left:339.299864px;}
.x3{left:385.559846px;}
.x4{left:389.879844px;}
.x2{left:458.459817px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.159989pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.168960pt;}
.ls6{letter-spacing:0.193280pt;}
.lsd{letter-spacing:0.278720pt;}
.lse{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.446720pt;}
.ls1{letter-spacing:0.471040pt;}
.ls5{letter-spacing:0.808960pt;}
.ls8{letter-spacing:2.118681pt;}
.lsf{letter-spacing:2.239999pt;}
.ls7{letter-spacing:4.678680pt;}
.lsb{letter-spacing:10.155516pt;}
.lsc{letter-spacing:13.355515pt;}
.lsa{letter-spacing:23.595511pt;}
.ls9{letter-spacing:26.795509pt;}
.ls0{letter-spacing:28.715509pt;}
.ws0{word-spacing:-15.039994pt;}
.ws4{word-spacing:-12.483195pt;}
.ws1{word-spacing:-11.881275pt;}
.ws3{word-spacing:-10.076316pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.008598pt;}
._0{width:0.917812pt;}
._a{width:2.251482pt;}
._3{width:3.435543pt;}
._2{width:4.328981pt;}
._e{width:6.068518pt;}
._d{width:7.082218pt;}
._11{width:8.234004pt;}
._c{width:9.128977pt;}
._7{width:10.644317pt;}
._6{width:12.057606pt;}
._b{width:13.820165pt;}
._17{width:15.352694pt;}
._f{width:16.488963pt;}
._10{width:17.588421pt;}
._13{width:18.758462pt;}
._5{width:19.679456pt;}
._4{width:20.727079pt;}
._19{width:22.551032pt;}
._12{width:23.764488pt;}
._14{width:24.675597pt;}
._9{width:25.655064pt;}
._8{width:26.704655pt;}
._15{width:27.960263pt;}
._16{width:29.204582pt;}
._1a{width:30.495811pt;}
._18{width:33.744789pt;}
.fs1{font-size:40.305264pt;}
.fs2{font-size:47.525101pt;}
.fs3{font-size:49.932780pt;}
.fs0{font-size:60.159976pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:106.399957pt;}
.y4a{bottom:112.159955pt;}
.y2e{bottom:123.679951pt;}
.y20{bottom:140.959944pt;}
.y49{bottom:146.719941pt;}
.y2d{bottom:158.239937pt;}
.y1f{bottom:175.519930pt;}
.y48{bottom:181.279927pt;}
.y2c{bottom:192.799923pt;}
.y1e{bottom:210.079916pt;}
.y47{bottom:215.839914pt;}
.y2b{bottom:227.519909pt;}
.y1d{bottom:244.799902pt;}
.y46{bottom:250.399900pt;}
.y2a{bottom:262.079895pt;}
.y1c{bottom:279.359888pt;}
.y45{bottom:285.119886pt;}
.y29{bottom:296.639881pt;}
.y1b{bottom:313.919874pt;}
.y44{bottom:319.679872pt;}
.y28{bottom:331.199868pt;}
.y1a{bottom:348.479861pt;}
.y43{bottom:354.239858pt;}
.y27{bottom:365.599854pt;}
.y19{bottom:382.879847pt;}
.y42{bottom:388.799844pt;}
.y26{bottom:400.319840pt;}
.y18{bottom:417.599833pt;}
.y41{bottom:423.359831pt;}
.y25{bottom:434.879826pt;}
.y17{bottom:452.159819pt;}
.y40{bottom:458.079817pt;}
.y24{bottom:469.439812pt;}
.y16{bottom:486.719805pt;}
.y3f{bottom:492.639803pt;}
.y23{bottom:503.999798pt;}
.y15{bottom:521.279791pt;}
.y3e{bottom:527.199789pt;}
.y14{bottom:538.559785pt;}
.y13{bottom:555.839778pt;}
.y3d{bottom:561.759775pt;}
.y12{bottom:573.279771pt;}
.y11{bottom:590.559764pt;}
.y3c{bottom:596.319761pt;}
.y10{bottom:607.839757pt;}
.yf{bottom:625.119750pt;}
.y3b{bottom:631.039748pt;}
.ye{bottom:642.399743pt;}
.yd{bottom:659.679736pt;}
.y3a{bottom:665.599734pt;}
.yc{bottom:676.959729pt;}
.yb{bottom:694.239722pt;}
.y39{bottom:700.159720pt;}
.ya{bottom:711.519715pt;}
.y9{bottom:728.799708pt;}
.y38{bottom:734.719706pt;}
.y8{bottom:746.239702pt;}
.y7{bottom:763.519695pt;}
.y37{bottom:769.279692pt;}
.y6{bottom:780.799688pt;}
.y36{bottom:785.919686pt;}
.y35{bottom:800.319680pt;}
.y34{bottom:814.719674pt;}
.y5{bottom:815.359674pt;}
.y33{bottom:829.119668pt;}
.y32{bottom:843.679663pt;}
.y4{bottom:849.919660pt;}
.y31{bottom:858.079657pt;}
.y30{bottom:872.319651pt;}
.y3{bottom:884.479646pt;}
.y2f{bottom:886.719645pt;}
.y2{bottom:919.199632pt;}
.y1{bottom:953.279619pt;}
.y22{bottom:953.759618pt;}
.h6{height:34.353753pt;}
.h4{height:41.089264pt;}
.h2{height:41.390063pt;}
.h1{height:41.630703pt;}
.h5{height:55.250011pt;}
.h3{height:55.890010pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:123.519951pt;}
.x6{left:146.079942pt;}
.xc{left:157.279270pt;}
.x5{left:167.839933pt;}
.xb{left:173.279931pt;}
.x8{left:176.799929pt;}
.x9{left:188.159925pt;}
.xa{left:194.399922pt;}
.x1{left:301.599879pt;}
.x3{left:342.719863pt;}
.x4{left:346.559861pt;}
.x2{left:407.519837pt;}
}

