
    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_980f4dacf6e48b6a85cede72.woff')format("woff");}.ff1{font-family:ff1;line-height:1.281250;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_e9dfc497046bfc02f840fd41.woff')format("woff");}.ff2{font-family:ff2;line-height:1.281250;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_8896e535b126f3628344865a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.364746;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.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:41.089784px;}
.ls3{letter-spacing:172.927131px;}
.ls1{letter-spacing:853.007659px;}
.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:-43.199983px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-35.995738px;}
._17{margin-left:-21.369899px;}
._15{margin-left:-19.818011px;}
._2{margin-left:-18.756496px;}
._1{margin-left:-17.290161px;}
._11{margin-left:-15.592023px;}
._10{margin-left:-14.100133px;}
._12{margin-left:-12.376417px;}
._29{margin-left:-11.218143px;}
._16{margin-left:-10.034974px;}
._8{margin-left:-8.619621px;}
._7{margin-left:-7.616328px;}
._2c{margin-left:-6.458318px;}
._c{margin-left:-5.018507px;}
._3{margin-left:-3.576621px;}
._4{margin-left:-2.393129px;}
._0{margin-left:-1.389843px;}
._20{width:1.671019px;}
._1e{width:3.627625px;}
._1c{width:5.351335px;}
._1b{width:7.229733px;}
._1f{width:8.515887px;}
._19{width:9.982261px;}
._1a{width:11.090420px;}
._d{width:13.301486px;}
._e{width:14.587546px;}
._f{width:15.596761px;}
._b{width:17.624076px;}
._a{width:18.756568px;}
._1d{width:23.695829px;}
._18{width:25.676810px;}
._13{width:26.706756px;}
._14{width:28.378330px;}
._27{width:30.591703px;}
._28{width:32.390986px;}
._2d{width:34.396830px;}
._26{width:35.406174px;}
._25{width:37.641232px;}
._6{width:39.673364px;}
._5{width:41.089736px;}
._24{width:48.419072px;}
._22{width:68.439314px;}
._23{width:91.519163px;}
._2a{width:172.927371px;}
._21{width:958.910016px;}
._2e{width:1122.450751px;}
._2b{width:1144.057942px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y38{bottom:124.859950px;}
.y26{bottom:133.859946px;}
.y37{bottom:151.859939px;}
.y25{bottom:160.859936px;}
.y36{bottom:178.859928px;}
.y24{bottom:187.859925px;}
.y35{bottom:205.859918px;}
.y23{bottom:214.859914px;}
.y34{bottom:232.859907px;}
.y22{bottom:241.859903px;}
.y33{bottom:259.859896px;}
.y21{bottom:268.859892px;}
.y32{bottom:286.859885px;}
.y20{bottom:295.859882px;}
.y31{bottom:313.859874px;}
.y1f{bottom:322.859871px;}
.y30{bottom:340.859864px;}
.y1e{bottom:349.859860px;}
.y2f{bottom:367.859853px;}
.y1d{bottom:376.859849px;}
.y2e{bottom:394.859842px;}
.y1c{bottom:403.859838px;}
.y2d{bottom:421.859831px;}
.y1b{bottom:430.859828px;}
.y2c{bottom:448.859820px;}
.y1a{bottom:457.859817px;}
.y2b{bottom:475.859810px;}
.y19{bottom:484.859806px;}
.y2a{bottom:502.859799px;}
.y18{bottom:511.859795px;}
.y29{bottom:529.859788px;}
.y17{bottom:538.859784px;}
.y28{bottom:556.859777px;}
.y16{bottom:565.859774px;}
.y15{bottom:592.859763px;}
.y14{bottom:619.859752px;}
.y27{bottom:646.859741px;}
.y13{bottom:647.399741px;}
.y12{bottom:673.859730px;}
.y11{bottom:700.859720px;}
.y10{bottom:727.859709px;}
.yf{bottom:754.859698px;}
.ye{bottom:781.859687px;}
.yd{bottom:808.859676px;}
.yc{bottom:835.859666px;}
.yb{bottom:862.859655px;}
.ya{bottom:889.859644px;}
.y9{bottom:916.859633px;}
.y8{bottom:943.859622px;}
.y7{bottom:970.859612px;}
.y6{bottom:997.859601px;}
.y5{bottom:1024.859590px;}
.y4{bottom:1051.859579px;}
.y3{bottom:1078.859568px;}
.y2{bottom:1105.859558px;}
.y1{bottom:1132.859547px;}
.h1{height:70.628878px;}
.h2{height:71.156222px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:106.198850px;}
.x3{left:107.999345px;}
.x1{left:161.999935px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:36.524252pt;}
.ls3{letter-spacing:153.713005pt;}
.ls1{letter-spacing:758.229030pt;}
.ws0{word-spacing:-38.399985pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-31.996211pt;}
._17{margin-left:-18.995466pt;}
._15{margin-left:-17.616010pt;}
._2{margin-left:-16.672441pt;}
._1{margin-left:-15.369032pt;}
._11{margin-left:-13.859576pt;}
._10{margin-left:-12.533451pt;}
._12{margin-left:-11.001259pt;}
._29{margin-left:-9.971683pt;}
._16{margin-left:-8.919977pt;}
._8{margin-left:-7.661885pt;}
._7{margin-left:-6.770069pt;}
._2c{margin-left:-5.740727pt;}
._c{margin-left:-4.460895pt;}
._3{margin-left:-3.179219pt;}
._4{margin-left:-2.127226pt;}
._0{margin-left:-1.235416pt;}
._20{width:1.485350pt;}
._1e{width:3.224556pt;}
._1c{width:4.756742pt;}
._1b{width:6.426429pt;}
._1f{width:7.569677pt;}
._19{width:8.873121pt;}
._1a{width:9.858151pt;}
._d{width:11.823543pt;}
._e{width:12.966707pt;}
._f{width:13.863788pt;}
._b{width:15.665846pt;}
._a{width:16.672505pt;}
._1d{width:21.062959pt;}
._18{width:22.823831pt;}
._13{width:23.739338pt;}
._14{width:25.225182pt;}
._27{width:27.192625pt;}
._28{width:28.791987pt;}
._2d{width:30.574960pt;}
._26{width:31.472155pt;}
._25{width:33.458873pt;}
._6{width:35.265213pt;}
._5{width:36.524209pt;}
._24{width:43.039175pt;}
._22{width:60.834946pt;}
._23{width:81.350367pt;}
._2a{width:153.713219pt;}
._21{width:852.364459pt;}
._2e{width:997.734001pt;}
._2b{width:1016.940393pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:110.986622pt;}
.y26{bottom:118.986619pt;}
.y37{bottom:134.986613pt;}
.y25{bottom:142.986609pt;}
.y36{bottom:158.986603pt;}
.y24{bottom:166.986600pt;}
.y35{bottom:182.986593pt;}
.y23{bottom:190.986590pt;}
.y34{bottom:206.986584pt;}
.y22{bottom:214.986581pt;}
.y33{bottom:230.986574pt;}
.y21{bottom:238.986571pt;}
.y32{bottom:254.986565pt;}
.y20{bottom:262.986561pt;}
.y31{bottom:278.986555pt;}
.y1f{bottom:286.986552pt;}
.y30{bottom:302.986545pt;}
.y1e{bottom:310.986542pt;}
.y2f{bottom:326.986536pt;}
.y1d{bottom:334.986533pt;}
.y2e{bottom:350.986526pt;}
.y1c{bottom:358.986523pt;}
.y2d{bottom:374.986517pt;}
.y1b{bottom:382.986513pt;}
.y2c{bottom:398.986507pt;}
.y1a{bottom:406.986504pt;}
.y2b{bottom:422.986497pt;}
.y19{bottom:430.986494pt;}
.y2a{bottom:446.986488pt;}
.y18{bottom:454.986485pt;}
.y29{bottom:470.986478pt;}
.y17{bottom:478.986475pt;}
.y28{bottom:494.986469pt;}
.y16{bottom:502.986465pt;}
.y15{bottom:526.986456pt;}
.y14{bottom:550.986446pt;}
.y27{bottom:574.986437pt;}
.y13{bottom:575.466436pt;}
.y12{bottom:598.986427pt;}
.y11{bottom:622.986417pt;}
.y10{bottom:646.986408pt;}
.yf{bottom:670.986398pt;}
.ye{bottom:694.986389pt;}
.yd{bottom:718.986379pt;}
.yc{bottom:742.986369pt;}
.yb{bottom:766.986360pt;}
.ya{bottom:790.986350pt;}
.y9{bottom:814.986341pt;}
.y8{bottom:838.986331pt;}
.y7{bottom:862.986321pt;}
.y6{bottom:886.986312pt;}
.y5{bottom:910.986302pt;}
.y4{bottom:934.986293pt;}
.y3{bottom:958.986283pt;}
.y2{bottom:982.986273pt;}
.y1{bottom:1006.986264pt;}
.h1{height:62.781225pt;}
.h2{height:63.249975pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:94.398977pt;}
.x3{left:95.999417pt;}
.x1{left:143.999942pt;}
}

