
    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_826928102195bb750a9d19f7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031250;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_cfefbb36c7f05eae3a34eac6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.974884;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.720000px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000003px;}
.ls1{letter-spacing:2.160000px;}
.ls2{letter-spacing:2.880000px;}
.ls8{letter-spacing:6.480000px;}
.ls3{letter-spacing:172.776000px;}
.ls9{letter-spacing:365.736000px;}
.ls0{letter-spacing:408.216000px;}
.ls7{letter-spacing:1318.596000px;}
.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;}
}
.ws5{word-spacing:-46.080000px;}
.ws2{word-spacing:-45.360000px;}
.ws4{word-spacing:-43.200000px;}
.ws0{word-spacing:-42.480000px;}
.ws3{word-spacing:-31.680000px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.440000px;}
._a{width:1.752000px;}
._1a{width:2.808000px;}
._3{width:4.248000px;}
._26{width:5.664000px;}
._e{width:7.128000px;}
._d{width:8.568000px;}
._10{width:10.152000px;}
._f{width:11.424000px;}
._b{width:12.888000px;}
._9{width:14.328000px;}
._8{width:15.768000px;}
._14{width:17.208000px;}
._18{width:18.648000px;}
._2{width:20.088000px;}
._29{width:21.288000px;}
._7{width:22.488000px;}
._6{width:23.688000px;}
._4{width:25.128000px;}
._28{width:26.172000px;}
._25{width:28.008000px;}
._24{width:29.448000px;}
._1b{width:30.888000px;}
._c{width:32.328000px;}
._2a{width:33.480000px;}
._19{width:34.488000px;}
._12{width:35.928000px;}
._11{width:37.368000px;}
._1c{width:38.808000px;}
._23{width:41.136000px;}
._15{width:43.776000px;}
._22{width:46.728000px;}
._21{width:48.168000px;}
._27{width:49.584000px;}
._32{width:51.768000px;}
._1e{width:55.368000px;}
._1d{width:56.808000px;}
._20{width:58.968000px;}
._1f{width:60.408000px;}
._2d{width:61.848000px;}
._2e{width:62.928000px;}
._36{width:70.488000px;}
._35{width:71.928000px;}
._2c{width:76.968000px;}
._2b{width:78.408000px;}
._37{width:84.888000px;}
._34{width:89.928000px;}
._33{width:91.368000px;}
._5{width:94.248000px;}
._2f{width:99.288000px;}
._17{width:112.968000px;}
._16{width:114.408000px;}
._31{width:118.728000px;}
._30{width:120.168000px;}
._0{width:172.776000px;}
._13{width:1340.196000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:43.200000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:3.780000px;}
.y38{bottom:25.740000px;}
.y37{bottom:61.740000px;}
.y1e{bottom:89.640000px;}
.y36{bottom:97.740000px;}
.y1d{bottom:111.420000px;}
.y1b{bottom:129.456000px;}
.y35{bottom:133.740000px;}
.y1c{bottom:147.456000px;}
.y1a{bottom:165.450000px;}
.y34{bottom:169.740000px;}
.y32{bottom:183.450000px;}
.y33{bottom:188.670000px;}
.y30{bottom:191.550000px;}
.y24{bottom:200.550000px;}
.y19{bottom:201.450000px;}
.y2f{bottom:205.050000px;}
.y23{bottom:214.950000px;}
.y2d{bottom:219.450000px;}
.y22{bottom:220.170000px;}
.y2e{bottom:224.670000px;}
.y21{bottom:232.950000px;}
.y18{bottom:237.450000px;}
.y2b{bottom:250.050000px;}
.y2a{bottom:263.550000px;}
.y17{bottom:273.450000px;}
.y28{bottom:277.950000px;}
.y29{bottom:283.170000px;}
.y27{bottom:295.950000px;}
.y16{bottom:309.450000px;}
.y15{bottom:345.450000px;}
.y14{bottom:381.495000px;}
.y20{bottom:386.715000px;}
.y13{bottom:417.495000px;}
.y12{bottom:453.495000px;}
.y11{bottom:489.495000px;}
.y10{bottom:525.495000px;}
.yf{bottom:561.495000px;}
.ye{bottom:597.495000px;}
.y26{bottom:602.745000px;}
.yd{bottom:633.525000px;}
.y2c{bottom:638.745000px;}
.yc{bottom:669.525000px;}
.yb{bottom:705.525000px;}
.ya{bottom:741.525000px;}
.y9{bottom:777.525000px;}
.y8{bottom:813.525000px;}
.y39{bottom:831.705000px;}
.y7{bottom:849.570000px;}
.y31{bottom:854.790000px;}
.y6{bottom:885.570000px;}
.y5{bottom:921.570000px;}
.y4{bottom:957.570000px;}
.y3{bottom:993.570000px;}
.y25{bottom:998.790000px;}
.y2{bottom:1029.570000px;}
.y1{bottom:1065.570000px;}
.h3{height:18.180000px;}
.h5{height:33.846240px;}
.h6{height:35.530400px;}
.h7{height:42.307800px;}
.h2{height:56.410400px;}
.h1{height:59.203125px;}
.h8{height:190.965000px;}
.h4{height:1187.984910px;}
.h0{height:1188.000000px;}
.w3{width:698.895000px;}
.w1{width:702.315000px;}
.w2{width:917.977500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:7.371000px;}
.x15{left:100.845000px;}
.x1{left:108.036000px;}
.x10{left:139.693500px;}
.xa{left:146.353500px;}
.x7{left:150.487500px;}
.xb{left:152.850000px;}
.x8{left:156.990000px;}
.x5{left:171.030000px;}
.x6{left:176.790000px;}
.x3{left:199.830000px;}
.x2{left:205.590000px;}
.xc{left:246.067500px;}
.xd{left:252.570000px;}
.x14{left:292.035000px;}
.x13{left:303.555000px;}
.x9{left:324.075000px;}
.x11{left:418.912500px;}
.x12{left:425.415000px;}
.x4{left:459.105000px;}
.xe{left:546.202500px;}
.xf{left:552.705000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000003pt;}
.ls1{letter-spacing:1.920000pt;}
.ls2{letter-spacing:2.560000pt;}
.ls8{letter-spacing:5.760000pt;}
.ls3{letter-spacing:153.578667pt;}
.ls9{letter-spacing:325.098667pt;}
.ls0{letter-spacing:362.858667pt;}
.ls7{letter-spacing:1172.085333pt;}
.ws5{word-spacing:-40.960000pt;}
.ws2{word-spacing:-40.320000pt;}
.ws4{word-spacing:-38.400000pt;}
.ws0{word-spacing:-37.760000pt;}
.ws3{word-spacing:-28.160000pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-1.280000pt;}
._a{width:1.557333pt;}
._1a{width:2.496000pt;}
._3{width:3.776000pt;}
._26{width:5.034667pt;}
._e{width:6.336000pt;}
._d{width:7.616000pt;}
._10{width:9.024000pt;}
._f{width:10.154667pt;}
._b{width:11.456000pt;}
._9{width:12.736000pt;}
._8{width:14.016000pt;}
._14{width:15.296000pt;}
._18{width:16.576000pt;}
._2{width:17.856000pt;}
._29{width:18.922667pt;}
._7{width:19.989333pt;}
._6{width:21.056000pt;}
._4{width:22.336000pt;}
._28{width:23.264000pt;}
._25{width:24.896000pt;}
._24{width:26.176000pt;}
._1b{width:27.456000pt;}
._c{width:28.736000pt;}
._2a{width:29.760000pt;}
._19{width:30.656000pt;}
._12{width:31.936000pt;}
._11{width:33.216000pt;}
._1c{width:34.496000pt;}
._23{width:36.565333pt;}
._15{width:38.912000pt;}
._22{width:41.536000pt;}
._21{width:42.816000pt;}
._27{width:44.074667pt;}
._32{width:46.016000pt;}
._1e{width:49.216000pt;}
._1d{width:50.496000pt;}
._20{width:52.416000pt;}
._1f{width:53.696000pt;}
._2d{width:54.976000pt;}
._2e{width:55.936000pt;}
._36{width:62.656000pt;}
._35{width:63.936000pt;}
._2c{width:68.416000pt;}
._2b{width:69.696000pt;}
._37{width:75.456000pt;}
._34{width:79.936000pt;}
._33{width:81.216000pt;}
._5{width:83.776000pt;}
._2f{width:88.256000pt;}
._17{width:100.416000pt;}
._16{width:101.696000pt;}
._31{width:105.536000pt;}
._30{width:106.816000pt;}
._0{width:153.578667pt;}
._13{width:1191.285333pt;}
.fs1{font-size:38.400000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:3.360000pt;}
.y38{bottom:22.880000pt;}
.y37{bottom:54.880000pt;}
.y1e{bottom:79.680000pt;}
.y36{bottom:86.880000pt;}
.y1d{bottom:99.040000pt;}
.y1b{bottom:115.072000pt;}
.y35{bottom:118.880000pt;}
.y1c{bottom:131.072000pt;}
.y1a{bottom:147.066667pt;}
.y34{bottom:150.880000pt;}
.y32{bottom:163.066667pt;}
.y33{bottom:167.706667pt;}
.y30{bottom:170.266667pt;}
.y24{bottom:178.266667pt;}
.y19{bottom:179.066667pt;}
.y2f{bottom:182.266667pt;}
.y23{bottom:191.066667pt;}
.y2d{bottom:195.066667pt;}
.y22{bottom:195.706667pt;}
.y2e{bottom:199.706667pt;}
.y21{bottom:207.066667pt;}
.y18{bottom:211.066667pt;}
.y2b{bottom:222.266667pt;}
.y2a{bottom:234.266667pt;}
.y17{bottom:243.066667pt;}
.y28{bottom:247.066667pt;}
.y29{bottom:251.706667pt;}
.y27{bottom:263.066667pt;}
.y16{bottom:275.066667pt;}
.y15{bottom:307.066667pt;}
.y14{bottom:339.106667pt;}
.y20{bottom:343.746667pt;}
.y13{bottom:371.106667pt;}
.y12{bottom:403.106667pt;}
.y11{bottom:435.106667pt;}
.y10{bottom:467.106667pt;}
.yf{bottom:499.106667pt;}
.ye{bottom:531.106667pt;}
.y26{bottom:535.773333pt;}
.yd{bottom:563.133333pt;}
.y2c{bottom:567.773333pt;}
.yc{bottom:595.133333pt;}
.yb{bottom:627.133333pt;}
.ya{bottom:659.133333pt;}
.y9{bottom:691.133333pt;}
.y8{bottom:723.133333pt;}
.y39{bottom:739.293333pt;}
.y7{bottom:755.173333pt;}
.y31{bottom:759.813333pt;}
.y6{bottom:787.173333pt;}
.y5{bottom:819.173333pt;}
.y4{bottom:851.173333pt;}
.y3{bottom:883.173333pt;}
.y25{bottom:887.813333pt;}
.y2{bottom:915.173333pt;}
.y1{bottom:947.173333pt;}
.h3{height:16.160000pt;}
.h5{height:30.085547pt;}
.h6{height:31.582578pt;}
.h7{height:37.606934pt;}
.h2{height:50.142578pt;}
.h1{height:52.625000pt;}
.h8{height:169.746667pt;}
.h4{height:1055.986587pt;}
.h0{height:1056.000000pt;}
.w3{width:621.240000pt;}
.w1{width:624.280000pt;}
.w2{width:815.980000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.552000pt;}
.x15{left:89.640000pt;}
.x1{left:96.032000pt;}
.x10{left:124.172000pt;}
.xa{left:130.092000pt;}
.x7{left:133.766667pt;}
.xb{left:135.866667pt;}
.x8{left:139.546667pt;}
.x5{left:152.026667pt;}
.x6{left:157.146667pt;}
.x3{left:177.626667pt;}
.x2{left:182.746667pt;}
.xc{left:218.726667pt;}
.xd{left:224.506667pt;}
.x14{left:259.586667pt;}
.x13{left:269.826667pt;}
.x9{left:288.066667pt;}
.x11{left:372.366667pt;}
.x12{left:378.146667pt;}
.x4{left:408.093333pt;}
.xe{left:485.513333pt;}
.xf{left:491.293333pt;}
}

