
    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_7958cddc9979f9a7f5b87627.woff')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_cb29e030627b12bf966ab71b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.133301;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_3126e0b54a2ae750e4d51103.woff')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_4bf651e6f70ffa71e234c8df.woff')format("woff");}.ff4{font-family:ff4;line-height:0.974609;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;}
.v2{vertical-align:2.160000px;}
.v1{vertical-align:20.880000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws7{word-spacing:-7.800497px;}
.ws15{word-spacing:0.000000px;}
.ws10{word-spacing:2.899498px;}
.wsb{word-spacing:2.901891px;}
.ws14{word-spacing:3.621891px;}
.wsc{word-spacing:4.341891px;}
.wsd{word-spacing:100.967397px;}
.ws11{word-spacing:100.969790px;}
.ws8{word-spacing:101.689790px;}
.wsf{word-spacing:106.007397px;}
.ws3{word-spacing:116.363025px;}
.ws13{word-spacing:125.301492px;}
.wse{word-spacing:131.502355px;}
.ws12{word-spacing:135.824184px;}
.ws9{word-spacing:136.544184px;}
.wsa{word-spacing:148.193194px;}
.ws2{word-spacing:414.175104px;}
.ws4{word-spacing:510.672632px;}
.ws5{word-spacing:514.055716px;}
.ws6{word-spacing:610.015104px;}
.ws1{word-spacing:730.255104px;}
.ws0{word-spacing:1498.495104px;}
._2{margin-left:-1010.308349px;}
._3{width:57.497672px;}
._5{width:95.774947px;}
._6{width:114.836760px;}
._8{width:117.354110px;}
._9{width:118.786608px;}
._7{width:252.657231px;}
._0{width:521.968856px;}
._1{width:526.273626px;}
._4{width:10319.935781px;}
.fc4{color:transparent;}
.fc3{color:rgb(162,154,109);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(149,9,65);}
.fc0{color:rgb(142,11,63);}
.fs6{font-size:23.677920px;}
.fs0{font-size:28.160640px;}
.fs7{font-size:35.516880px;}
.fsb{font-size:35.517600px;}
.fs9{font-size:42.620400px;}
.fsa{font-size:42.621120px;}
.fs8{font-size:47.355840px;}
.fs2{font-size:47.356560px;}
.fs1{font-size:59.195520px;}
.fs5{font-size:71.034480px;}
.fs3{font-size:98.710560px;}
.fs4{font-size:142.069680px;}
.y0{bottom:0.000000px;}
.ya{bottom:23.400000px;}
.y9{bottom:42.300000px;}
.y3d{bottom:340.020000px;}
.y3c{bottom:375.480000px;}
.y3b{bottom:386.820000px;}
.y3a{bottom:411.840000px;}
.y39{bottom:425.880000px;}
.y38{bottom:468.180000px;}
.y37{bottom:481.320000px;}
.y36{bottom:507.420000px;}
.y35{bottom:546.300000px;}
.y34{bottom:557.460000px;}
.y33{bottom:569.160000px;}
.y32{bottom:580.680000px;}
.y31{bottom:592.020000px;}
.y30{bottom:603.720000px;}
.y2f{bottom:614.880000px;}
.y2e{bottom:639.900000px;}
.y2d{bottom:654.480000px;}
.y5{bottom:670.860000px;}
.y6{bottom:676.260000px;}
.y8{bottom:779.940000px;}
.y7{bottom:789.120000px;}
.y13{bottom:1265.940000px;}
.ye{bottom:1326.600000px;}
.y12{bottom:1330.740000px;}
.yd{bottom:1343.880000px;}
.y11{bottom:1348.020000px;}
.y2c{bottom:1510.380000px;}
.y2b{bottom:1545.840000px;}
.y2a{bottom:1557.180000px;}
.y29{bottom:1582.380000px;}
.y28{bottom:1596.420000px;}
.y27{bottom:1638.720000px;}
.y26{bottom:1651.680000px;}
.y25{bottom:1677.780000px;}
.y24{bottom:1732.500000px;}
.y23{bottom:1767.960000px;}
.y22{bottom:1779.300000px;}
.y21{bottom:1804.320000px;}
.y20{bottom:1818.540000px;}
.y2{bottom:1841.400000px;}
.y3{bottom:1846.620000px;}
.y4{bottom:1846.800000px;}
.y1f{bottom:1860.660000px;}
.y1e{bottom:1873.800000px;}
.y1d{bottom:1899.900000px;}
.y1c{bottom:1938.780000px;}
.y1b{bottom:1950.120000px;}
.y1a{bottom:1961.640000px;}
.y19{bottom:1973.340000px;}
.y18{bottom:1984.680000px;}
.y17{bottom:1996.200000px;}
.y16{bottom:2007.360000px;}
.y15{bottom:2032.380000px;}
.y14{bottom:2047.140000px;}
.y1{bottom:2166.840000px;}
.y10{bottom:2315.160000px;}
.yf{bottom:2332.440000px;}
.yc{bottom:2374.920000px;}
.yb{bottom:2392.200000px;}
.ha{height:21.909013px;}
.h4{height:26.056842px;}
.h2{height:27.184368px;}
.h5{height:27.904368px;}
.hd{height:32.863519px;}
.h12{height:32.864186px;}
.hc{height:36.951066px;}
.hf{height:41.142837px;}
.h11{height:41.143532px;}
.h9{height:43.818692px;}
.h10{height:45.714804px;}
.he{height:46.384675px;}
.hb{height:46.385381px;}
.h3{height:47.656842px;}
.h6{height:54.773198px;}
.h8{height:68.571859px;}
.h7{height:133.616076px;}
.h1{height:2525.580000px;}
.h0{height:2526.000000px;}
.w1{width:3571.560000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x1{left:2.160000px;}
.x9{left:86.940000px;}
.x8{left:422.820000px;}
.x7{left:449.100000px;}
.x5{left:450.360000px;}
.x4{left:690.300000px;}
.x2{left:701.280000px;}
.x3{left:847.260000px;}
.x6{left:862.020000px;}
.xf{left:1942.380000px;}
.xe{left:1944.000000px;}
.xd{left:1954.260000px;}
.xc{left:1955.880000px;}
.xa{left:2355.660000px;}
.xb{left:2382.480000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.920000pt;}
.v1{vertical-align:18.560000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-6.933775pt;}
.ws15{word-spacing:0.000000pt;}
.ws10{word-spacing:2.577331pt;}
.wsb{word-spacing:2.579459pt;}
.ws14{word-spacing:3.219459pt;}
.wsc{word-spacing:3.859459pt;}
.wsd{word-spacing:89.748797pt;}
.ws11{word-spacing:89.750925pt;}
.ws8{word-spacing:90.390925pt;}
.wsf{word-spacing:94.228797pt;}
.ws3{word-spacing:103.433800pt;}
.ws13{word-spacing:111.379104pt;}
.wse{word-spacing:116.890982pt;}
.ws12{word-spacing:120.732608pt;}
.ws9{word-spacing:121.372608pt;}
.wsa{word-spacing:131.727283pt;}
.ws2{word-spacing:368.155648pt;}
.ws4{word-spacing:453.931228pt;}
.ws5{word-spacing:456.938414pt;}
.ws6{word-spacing:542.235648pt;}
.ws1{word-spacing:649.115648pt;}
.ws0{word-spacing:1331.995648pt;}
._2{margin-left:-898.051866pt;}
._3{width:51.109042pt;}
._5{width:85.133286pt;}
._6{width:102.077120pt;}
._8{width:104.314765pt;}
._9{width:105.588096pt;}
._7{width:224.584205pt;}
._0{width:463.972316pt;}
._1{width:467.798779pt;}
._4{width:9173.276250pt;}
.fs6{font-size:21.047040pt;}
.fs0{font-size:25.031680pt;}
.fs7{font-size:31.570560pt;}
.fsb{font-size:31.571200pt;}
.fs9{font-size:37.884800pt;}
.fsa{font-size:37.885440pt;}
.fs8{font-size:42.094080pt;}
.fs2{font-size:42.094720pt;}
.fs1{font-size:52.618240pt;}
.fs5{font-size:63.141760pt;}
.fs3{font-size:87.742720pt;}
.fs4{font-size:126.284160pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:20.800000pt;}
.y9{bottom:37.600000pt;}
.y3d{bottom:302.240000pt;}
.y3c{bottom:333.760000pt;}
.y3b{bottom:343.840000pt;}
.y3a{bottom:366.080000pt;}
.y39{bottom:378.560000pt;}
.y38{bottom:416.160000pt;}
.y37{bottom:427.840000pt;}
.y36{bottom:451.040000pt;}
.y35{bottom:485.600000pt;}
.y34{bottom:495.520000pt;}
.y33{bottom:505.920000pt;}
.y32{bottom:516.160000pt;}
.y31{bottom:526.240000pt;}
.y30{bottom:536.640000pt;}
.y2f{bottom:546.560000pt;}
.y2e{bottom:568.800000pt;}
.y2d{bottom:581.760000pt;}
.y5{bottom:596.320000pt;}
.y6{bottom:601.120000pt;}
.y8{bottom:693.280000pt;}
.y7{bottom:701.440000pt;}
.y13{bottom:1125.280000pt;}
.ye{bottom:1179.200000pt;}
.y12{bottom:1182.880000pt;}
.yd{bottom:1194.560000pt;}
.y11{bottom:1198.240000pt;}
.y2c{bottom:1342.560000pt;}
.y2b{bottom:1374.080000pt;}
.y2a{bottom:1384.160000pt;}
.y29{bottom:1406.560000pt;}
.y28{bottom:1419.040000pt;}
.y27{bottom:1456.640000pt;}
.y26{bottom:1468.160000pt;}
.y25{bottom:1491.360000pt;}
.y24{bottom:1540.000000pt;}
.y23{bottom:1571.520000pt;}
.y22{bottom:1581.600000pt;}
.y21{bottom:1603.840000pt;}
.y20{bottom:1616.480000pt;}
.y2{bottom:1636.800000pt;}
.y3{bottom:1641.440000pt;}
.y4{bottom:1641.600000pt;}
.y1f{bottom:1653.920000pt;}
.y1e{bottom:1665.600000pt;}
.y1d{bottom:1688.800000pt;}
.y1c{bottom:1723.360000pt;}
.y1b{bottom:1733.440000pt;}
.y1a{bottom:1743.680000pt;}
.y19{bottom:1754.080000pt;}
.y18{bottom:1764.160000pt;}
.y17{bottom:1774.400000pt;}
.y16{bottom:1784.320000pt;}
.y15{bottom:1806.560000pt;}
.y14{bottom:1819.680000pt;}
.y1{bottom:1926.080000pt;}
.y10{bottom:2057.920000pt;}
.yf{bottom:2073.280000pt;}
.yc{bottom:2111.040000pt;}
.yb{bottom:2126.400000pt;}
.ha{height:19.474678pt;}
.h4{height:23.161638pt;}
.h2{height:24.163883pt;}
.h5{height:24.803882pt;}
.hd{height:29.212017pt;}
.h12{height:29.212609pt;}
.hc{height:32.845392pt;}
.hf{height:36.571411pt;}
.h11{height:36.572029pt;}
.h9{height:38.949948pt;}
.h10{height:40.635382pt;}
.he{height:41.230822pt;}
.hb{height:41.231449pt;}
.h3{height:42.361637pt;}
.h6{height:48.687288pt;}
.h8{height:60.952763pt;}
.h7{height:118.769845pt;}
.h1{height:2244.960000pt;}
.h0{height:2245.333333pt;}
.w1{width:3174.720000pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1{left:1.920000pt;}
.x9{left:77.280000pt;}
.x8{left:375.840000pt;}
.x7{left:399.200000pt;}
.x5{left:400.320000pt;}
.x4{left:613.600000pt;}
.x2{left:623.360000pt;}
.x3{left:753.120000pt;}
.x6{left:766.240000pt;}
.xf{left:1726.560000pt;}
.xe{left:1728.000000pt;}
.xd{left:1737.120000pt;}
.xc{left:1738.560000pt;}
.xa{left:2093.920000pt;}
.xb{left:2117.760000pt;}
}

