
    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_c00000 {
    display:none;
  }
  .loading-indicator_c00000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00000 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_c00000 { 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_c00000" -> "#page-container .classname_c00000")
 */
.pf_c00000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00000 { /* 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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00000 { /* 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_c00000 { /* 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_c00000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00000 {overflow:visible;}
  }
}
.c_c00000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00000 { /* 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_c00000:after { /* webkit #35443 */
  content: '';
}
.t_c00000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00000 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 */
}
.__c00000 { /* 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_c00000 { /* info for Javascript */
  display:none;
}
.l_c00000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00000: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_c00000 {
    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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00000.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_c00000 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00000;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.284668;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_c00000;src:url('chunks/assets/font_fe366d6c8533aed0ff5a84f4.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.432129;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_c00000;src:url('chunks/assets/font_0df0f834db7b349bcd4e27d6.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.432129;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_c00000;src:url('chunks/assets/font_7053cb8704492a2719a58608.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:0.693359;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:ff5_c00000;src:url('chunks/assets/font_598e17458c963beae1acd5c2.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:0.686835;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:ff6_c00000;src:url('chunks/assets/font_67c644f16cce80702c5d23aa.woff2')format("woff");}.ff6_c00000{font-family:ff6_c00000;line-height:0.682460;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:ff7_c00000;src:url('chunks/assets/font_48d1aba99afa8ad7255b0267.woff2')format("woff");}.ff7_c00000{font-family:ff7_c00000;line-height:0.762000;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;}
.m1_c00000{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_c00000{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_c00000{vertical-align:-80.277930px;}
.v0_c00000{vertical-align:0.000000px;}
.ls1f_c00000{letter-spacing:-0.313200px;}
.ls1d_c00000{letter-spacing:-0.284400px;}
.lse_c00000{letter-spacing:-0.077827px;}
.ls1e_c00000{letter-spacing:-0.058200px;}
.ls22_c00000{letter-spacing:-0.023400px;}
.ls23_c00000{letter-spacing:-0.017400px;}
.ls21_c00000{letter-spacing:-0.007800px;}
.ls24_c00000{letter-spacing:-0.005400px;}
.ls1c_c00000{letter-spacing:-0.001200px;}
.ls20_c00000{letter-spacing:-0.000600px;}
.lsc_c00000{letter-spacing:0.000000px;}
.ls14_c00000{letter-spacing:0.000600px;}
.ls7_c00000{letter-spacing:0.016314px;}
.ls10_c00000{letter-spacing:0.024000px;}
.lsf_c00000{letter-spacing:0.025800px;}
.ls9_c00000{letter-spacing:0.032629px;}
.ls3_c00000{letter-spacing:0.040786px;}
.lsa_c00000{letter-spacing:0.040961px;}
.ls12_c00000{letter-spacing:0.072000px;}
.ls5_c00000{letter-spacing:0.073415px;}
.ls4_c00000{letter-spacing:0.081572px;}
.lsd_c00000{letter-spacing:0.105030px;}
.ls6_c00000{letter-spacing:0.122359px;}
.ls1b_c00000{letter-spacing:0.129000px;}
.ls2_c00000{letter-spacing:0.130516px;}
.ls1_c00000{letter-spacing:0.138673px;}
.ls19_c00000{letter-spacing:0.142200px;}
.ls8_c00000{letter-spacing:0.146830px;}
.ls18_c00000{letter-spacing:0.153000px;}
.ls1a_c00000{letter-spacing:0.169200px;}
.ls17_c00000{letter-spacing:0.175200px;}
.ls16_c00000{letter-spacing:0.229200px;}
.ls13_c00000{letter-spacing:0.320400px;}
.ls11_c00000{letter-spacing:0.939600px;}
.ls15_c00000{letter-spacing:1.306800px;}
.lsb_c00000{letter-spacing:2048.176026px;}
.ls0_c00000{letter-spacing:2560.813452px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{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__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00000{word-spacing:-0.301818px;}
.ws5_c00000{word-spacing:-0.244717px;}
.ws3_c00000{word-spacing:-0.119034px;}
.ws2_c00000{word-spacing:-0.114201px;}
.ws4_c00000{word-spacing:-0.024472px;}
.ws9_c00000{word-spacing:-0.016314px;}
.ws0_c00000{word-spacing:0.000000px;}
.ws7_c00000{word-spacing:0.008157px;}
.ws8_c00000{word-spacing:0.089730px;}
.ws6_c00000{word-spacing:0.122359px;}
.wsa_c00000{word-spacing:0.217095px;}
._6_c00000{margin-left:-5.513400px;}
._3_c00000{margin-left:-4.309212px;}
._0_c00000{margin-left:-1.093070px;}
._1_c00000{width:1.027812px;}
._2_c00000{width:2.911200px;}
._5_c00000{width:4.689000px;}
._8_c00000{width:9.003600px;}
._9_c00000{width:12.324000px;}
._7_c00000{width:15.108600px;}
._a_c00000{width:21.696600px;}
._4_c00000{width:25.836600px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs2_c00000{font-size:40.961400px;}
.fs0_c00000{font-size:70.020000px;}
.fs5_c00000{font-size:75.000000px;}
.fs1_c00000{font-size:81.572400px;}
.fs4_c00000{font-size:87.000000px;}
.fs3_c00000{font-size:138.000000px;}
.y0_c00000{bottom:0.000000px;}
.y25_c00000{bottom:246.165000px;}
.y1c_c00000{bottom:254.730450px;}
.y24_c00000{bottom:289.080000px;}
.y1b_c00000{bottom:332.850450px;}
.y20_c00000{bottom:454.890450px;}
.y1f_c00000{bottom:509.790054px;}
.y1e_c00000{bottom:533.009638px;}
.y16_c00000{bottom:542.906202px;}
.y1d_c00000{bottom:556.500450px;}
.y15_c00000{bottom:563.066711px;}
.y14_c00000{bottom:583.227219px;}
.y13_c00000{bottom:603.207426px;}
.y12_c00000{bottom:623.367935px;}
.y11_c00000{bottom:643.528443px;}
.y1a_c00000{bottom:647.940450px;}
.y10_c00000{bottom:663.597926px;}
.yf_c00000{bottom:683.758434px;}
.y23_c00000{bottom:693.015000px;}
.ye_c00000{bottom:703.918943px;}
.y22_c00000{bottom:714.495000px;}
.yd_c00000{bottom:723.988425px;}
.yc_c00000{bottom:744.148934px;}
.yb_c00000{bottom:764.309442px;}
.ya_c00000{bottom:784.378925px;}
.y9_c00000{bottom:804.539433px;}
.y21_c00000{bottom:818.700000px;}
.y8_c00000{bottom:824.699942px;}
.y7_c00000{bottom:844.860450px;}
.y6_c00000{bottom:864.929933px;}
.y5_c00000{bottom:885.090441px;}
.y4_c00000{bottom:905.250950px;}
.y3_c00000{bottom:925.320432px;}
.y2_c00000{bottom:945.480941px;}
.y19_c00000{bottom:1001.010063px;}
.y18_c00000{bottom:1021.620450px;}
.y17_c00000{bottom:1042.230450px;}
.y1_c00000{bottom:1089.930450px;}
.h4_c00000{height:42.721460px;}
.h8_c00000{height:56.025000px;}
.h7_c00000{height:58.243048px;}
.h1_c00000{height:68.720801px;}
.h3_c00000{height:73.028672px;}
.h2_c00000{height:85.077464px;}
.h6_c00000{height:93.784800px;}
.h0_c00000{height:1263.000000px;}
.h5_c00000{height:1263.060000px;}
.w0_c00000{width:892.500000px;}
.w1_c00000{width:892.620000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:124.110000px;}
.xc_c00000{left:165.105000px;}
.x2_c00000{left:194.670000px;}
.x4_c00000{left:226.889964px;}
.x7_c00000{left:245.430000px;}
.xb_c00000{left:274.065000px;}
.x8_c00000{left:275.670000px;}
.x6_c00000{left:320.850000px;}
.x9_c00000{left:356.220706px;}
.x5_c00000{left:362.070000px;}
.x3_c00000{left:451.080000px;}
.xa_c00000{left:867.150000px;}
@media print{
.v1_c00000{vertical-align:-71.358160pt;}
.v0_c00000{vertical-align:0.000000pt;}
.ls1f_c00000{letter-spacing:-0.278400pt;}
.ls1d_c00000{letter-spacing:-0.252800pt;}
.lse_c00000{letter-spacing:-0.069179pt;}
.ls1e_c00000{letter-spacing:-0.051733pt;}
.ls22_c00000{letter-spacing:-0.020800pt;}
.ls23_c00000{letter-spacing:-0.015467pt;}
.ls21_c00000{letter-spacing:-0.006933pt;}
.ls24_c00000{letter-spacing:-0.004800pt;}
.ls1c_c00000{letter-spacing:-0.001067pt;}
.ls20_c00000{letter-spacing:-0.000533pt;}
.lsc_c00000{letter-spacing:0.000000pt;}
.ls14_c00000{letter-spacing:0.000533pt;}
.ls7_c00000{letter-spacing:0.014502pt;}
.ls10_c00000{letter-spacing:0.021333pt;}
.lsf_c00000{letter-spacing:0.022933pt;}
.ls9_c00000{letter-spacing:0.029004pt;}
.ls3_c00000{letter-spacing:0.036254pt;}
.lsa_c00000{letter-spacing:0.036410pt;}
.ls12_c00000{letter-spacing:0.064000pt;}
.ls5_c00000{letter-spacing:0.065258pt;}
.ls4_c00000{letter-spacing:0.072509pt;}
.lsd_c00000{letter-spacing:0.093360pt;}
.ls6_c00000{letter-spacing:0.108763pt;}
.ls1b_c00000{letter-spacing:0.114667pt;}
.ls2_c00000{letter-spacing:0.116014pt;}
.ls1_c00000{letter-spacing:0.123265pt;}
.ls19_c00000{letter-spacing:0.126400pt;}
.ls8_c00000{letter-spacing:0.130516pt;}
.ls18_c00000{letter-spacing:0.136000pt;}
.ls1a_c00000{letter-spacing:0.150400pt;}
.ls17_c00000{letter-spacing:0.155733pt;}
.ls16_c00000{letter-spacing:0.203733pt;}
.ls13_c00000{letter-spacing:0.284800pt;}
.ls11_c00000{letter-spacing:0.835200pt;}
.ls15_c00000{letter-spacing:1.161600pt;}
.lsb_c00000{letter-spacing:1820.600912pt;}
.ls0_c00000{letter-spacing:2276.278624pt;}
.ws1_c00000{word-spacing:-0.268283pt;}
.ws5_c00000{word-spacing:-0.217526pt;}
.ws3_c00000{word-spacing:-0.105808pt;}
.ws2_c00000{word-spacing:-0.101512pt;}
.ws4_c00000{word-spacing:-0.021753pt;}
.ws9_c00000{word-spacing:-0.014502pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.ws7_c00000{word-spacing:0.007251pt;}
.ws8_c00000{word-spacing:0.079760pt;}
.ws6_c00000{word-spacing:0.108763pt;}
.wsa_c00000{word-spacing:0.192974pt;}
._6_c00000{margin-left:-4.900800pt;}
._3_c00000{margin-left:-3.830411pt;}
._0_c00000{margin-left:-0.971618pt;}
._1_c00000{width:0.913611pt;}
._2_c00000{width:2.587733pt;}
._5_c00000{width:4.168000pt;}
._8_c00000{width:8.003200pt;}
._9_c00000{width:10.954667pt;}
._7_c00000{width:13.429867pt;}
._a_c00000{width:19.285867pt;}
._4_c00000{width:22.965867pt;}
.fs2_c00000{font-size:36.410133pt;}
.fs0_c00000{font-size:62.240000pt;}
.fs5_c00000{font-size:66.666667pt;}
.fs1_c00000{font-size:72.508800pt;}
.fs4_c00000{font-size:77.333333pt;}
.fs3_c00000{font-size:122.666667pt;}
.y0_c00000{bottom:0.000000pt;}
.y25_c00000{bottom:218.813333pt;}
.y1c_c00000{bottom:226.427067pt;}
.y24_c00000{bottom:256.960000pt;}
.y1b_c00000{bottom:295.867067pt;}
.y20_c00000{bottom:404.347067pt;}
.y1f_c00000{bottom:453.146715pt;}
.y1e_c00000{bottom:473.786345pt;}
.y16_c00000{bottom:482.583291pt;}
.y1d_c00000{bottom:494.667067pt;}
.y15_c00000{bottom:500.503743pt;}
.y14_c00000{bottom:518.424195pt;}
.y13_c00000{bottom:536.184379pt;}
.y12_c00000{bottom:554.104831pt;}
.y11_c00000{bottom:572.025283pt;}
.y1a_c00000{bottom:575.947067pt;}
.y10_c00000{bottom:589.864823pt;}
.yf_c00000{bottom:607.785275pt;}
.y23_c00000{bottom:616.013333pt;}
.ye_c00000{bottom:625.705727pt;}
.y22_c00000{bottom:635.106667pt;}
.yd_c00000{bottom:643.545267pt;}
.yc_c00000{bottom:661.465719pt;}
.yb_c00000{bottom:679.386171pt;}
.ya_c00000{bottom:697.225711pt;}
.y9_c00000{bottom:715.146163pt;}
.y21_c00000{bottom:727.733333pt;}
.y8_c00000{bottom:733.066615pt;}
.y7_c00000{bottom:750.987067pt;}
.y6_c00000{bottom:768.826607pt;}
.y5_c00000{bottom:786.747059pt;}
.y4_c00000{bottom:804.667511pt;}
.y3_c00000{bottom:822.507051pt;}
.y2_c00000{bottom:840.427503pt;}
.y19_c00000{bottom:889.786723pt;}
.y18_c00000{bottom:908.107067pt;}
.y17_c00000{bottom:926.427067pt;}
.y1_c00000{bottom:968.827067pt;}
.h4_c00000{height:37.974631pt;}
.h8_c00000{height:49.800000pt;}
.h7_c00000{height:51.771598pt;}
.h1_c00000{height:61.085156pt;}
.h3_c00000{height:64.914375pt;}
.h2_c00000{height:75.624413pt;}
.h6_c00000{height:83.364267pt;}
.h0_c00000{height:1122.666667pt;}
.h5_c00000{height:1122.720000pt;}
.w0_c00000{width:793.333333pt;}
.w1_c00000{width:793.440000pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:110.320000pt;}
.xc_c00000{left:146.760000pt;}
.x2_c00000{left:173.040000pt;}
.x4_c00000{left:201.679968pt;}
.x7_c00000{left:218.160000pt;}
.xb_c00000{left:243.613333pt;}
.x8_c00000{left:245.040000pt;}
.x6_c00000{left:285.200000pt;}
.x9_c00000{left:316.640627pt;}
.x5_c00000{left:321.840000pt;}
.x3_c00000{left:400.960000pt;}
.xa_c00000{left:770.800000pt;}
}





/* 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_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 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_c00001 { 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_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* 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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* 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_c00001 { /* 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_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* 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_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 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 */
}
.__c00001 { /* 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_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001: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_c00001 {
    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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.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_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
.sc__c00001{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
}
.y0_c00001{bottom:0.000000px;}
.h0_c00001{height:1263.000000px;}
.w0_c00001{width:892.500000px;}
.x0_c00001{left:0.000000px;}
@media print{
.y0_c00001{bottom:0.000000pt;}
.h0_c00001{height:1122.666667pt;}
.w0_c00001{width:793.333333pt;}
.x0_c00001{left:0.000000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  