
    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_58c6ce32a7a6d01f623ede9f.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:0.666504;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_36f8e084540faf5ac4843be1.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:0.666504;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_3b7e8a1005282763fa726b34.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.093262;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_ef7a158974e023cee64a1c68.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:1.104004;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_f3caf0c86f66ba439fcc7711.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:0.666504;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_299ae271baed24874d8c64f9.woff2')format("woff");}.ff6_c00000{font-family:ff6_c00000;line-height:1.095703;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_42e18953985d63257d188630.woff2')format("woff");}.ff7_c00000{font-family:ff7_c00000;line-height:0.908203;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:ff8_c00000;src:url('chunks/assets/font_7d820363e98a38c64874c7f0.woff2')format("woff");}.ff8_c00000{font-family:ff8_c00000;line-height:0.762207;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:ff9_c00000;src:url('chunks/assets/font_6f26bcbfb47a13e69154b7f4.woff2')format("woff");}.ff9_c00000{font-family:ff9_c00000;line-height:0.893066;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:ffa_c00000;src:url('chunks/assets/font_bdcfbe82eb5a169dcafb6aad.woff2')format("woff");}.ffa_c00000{font-family:ffa_c00000;line-height:0.904297;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:ffb_c00000;src:url('chunks/assets/font_06807c6374375f893dcaeeff.woff2')format("woff");}.ffb_c00000{font-family:ffb_c00000;line-height:0.666504;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:ffc_c00000;src:url('chunks/assets/font_8994dc4b16801329935b456d.woff2')format("woff");}.ffc_c00000{font-family:ffc_c00000;line-height:0.706543;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_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);}
.v6_c00000{vertical-align:-33.120000px;}
.v4_c00000{vertical-align:-30.240000px;}
.v2_c00000{vertical-align:-27.360060px;}
.v0_c00000{vertical-align:0.000000px;}
.v7_c00000{vertical-align:18.720000px;}
.v1_c00000{vertical-align:27.360000px;}
.v3_c00000{vertical-align:30.240000px;}
.v5_c00000{vertical-align:33.120000px;}
.ls34_c00000{letter-spacing:-0.668160px;}
.ls48_c00000{letter-spacing:-0.380160px;}
.ls0_c00000{letter-spacing:0.000000px;}
.ls2_c00000{letter-spacing:0.000840px;}
.ls7_c00000{letter-spacing:0.004800px;}
.ls5c_c00000{letter-spacing:0.012000px;}
.ls49_c00000{letter-spacing:0.024600px;}
.ls28_c00000{letter-spacing:0.034800px;}
.ls6_c00000{letter-spacing:0.060600px;}
.ls15_c00000{letter-spacing:0.064200px;}
.ls29_c00000{letter-spacing:0.074400px;}
.ls5e_c00000{letter-spacing:0.077760px;}
.ls66_c00000{letter-spacing:0.142560px;}
.ls61_c00000{letter-spacing:0.200400px;}
.ls52_c00000{letter-spacing:0.205920px;}
.lsd_c00000{letter-spacing:0.236160px;}
.ls69_c00000{letter-spacing:0.237600px;}
.lsc_c00000{letter-spacing:0.239400px;}
.ls13_c00000{letter-spacing:0.239940px;}
.ls18_c00000{letter-spacing:0.240000px;}
.ls65_c00000{letter-spacing:0.240600px;}
.ls36_c00000{letter-spacing:0.257280px;}
.ls57_c00000{letter-spacing:0.295200px;}
.ls2c_c00000{letter-spacing:0.300000px;}
.ls38_c00000{letter-spacing:0.320280px;}
.ls46_c00000{letter-spacing:0.327000px;}
.ls44_c00000{letter-spacing:0.354240px;}
.ls5d_c00000{letter-spacing:0.380160px;}
.ls10_c00000{letter-spacing:0.413280px;}
.ls4_c00000{letter-spacing:0.472320px;}
.ls47_c00000{letter-spacing:0.479400px;}
.ls1_c00000{letter-spacing:0.480000px;}
.ls1f_c00000{letter-spacing:0.498840px;}
.ls3a_c00000{letter-spacing:0.531360px;}
.ls5_c00000{letter-spacing:0.532200px;}
.lsf_c00000{letter-spacing:0.541800px;}
.ls20_c00000{letter-spacing:0.542760px;}
.ls39_c00000{letter-spacing:0.590400px;}
.ls8_c00000{letter-spacing:0.600000px;}
.ls56_c00000{letter-spacing:0.655800px;}
.lsa_c00000{letter-spacing:0.656400px;}
.ls14_c00000{letter-spacing:0.676200px;}
.ls67_c00000{letter-spacing:0.683400px;}
.ls4d_c00000{letter-spacing:0.684000px;}
.ls23_c00000{letter-spacing:0.708480px;}
.ls2b_c00000{letter-spacing:0.709920px;}
.ls35_c00000{letter-spacing:0.712800px;}
.lse_c00000{letter-spacing:0.713400px;}
.ls59_c00000{letter-spacing:0.719400px;}
.ls11_c00000{letter-spacing:0.738720px;}
.ls24_c00000{letter-spacing:0.753000px;}
.ls37_c00000{letter-spacing:0.834600px;}
.ls63_c00000{letter-spacing:0.885600px;}
.ls40_c00000{letter-spacing:0.944640px;}
.ls60_c00000{letter-spacing:1.056000px;}
.ls22_c00000{letter-spacing:1.273200px;}
.ls4c_c00000{letter-spacing:1.656000px;}
.ls21_c00000{letter-spacing:1.684200px;}
.ls42_c00000{letter-spacing:1.715400px;}
.ls31_c00000{letter-spacing:1.845600px;}
.ls19_c00000{letter-spacing:2.191200px;}
.ls4b_c00000{letter-spacing:2.422200px;}
.ls3f_c00000{letter-spacing:2.448000px;}
.ls58_c00000{letter-spacing:2.656800px;}
.ls1a_c00000{letter-spacing:2.952000px;}
.ls3d_c00000{letter-spacing:3.162420px;}
.ls64_c00000{letter-spacing:4.248000px;}
.ls68_c00000{letter-spacing:4.419600px;}
.ls45_c00000{letter-spacing:4.549800px;}
.ls41_c00000{letter-spacing:4.824000px;}
.ls6a_c00000{letter-spacing:5.121000px;}
.ls27_c00000{letter-spacing:5.475600px;}
.ls33_c00000{letter-spacing:5.628000px;}
.ls26_c00000{letter-spacing:5.774400px;}
.ls51_c00000{letter-spacing:5.832000px;}
.ls54_c00000{letter-spacing:6.063060px;}
.ls5b_c00000{letter-spacing:6.112800px;}
.ls2f_c00000{letter-spacing:6.157800px;}
.ls32_c00000{letter-spacing:6.624000px;}
.ls1e_c00000{letter-spacing:7.428000px;}
.ls4f_c00000{letter-spacing:7.579200px;}
.ls4e_c00000{letter-spacing:7.832400px;}
.ls55_c00000{letter-spacing:7.981980px;}
.ls3e_c00000{letter-spacing:7.992000px;}
.ls1d_c00000{letter-spacing:8.136000px;}
.ls2a_c00000{letter-spacing:8.314200px;}
.ls17_c00000{letter-spacing:8.568000px;}
.ls16_c00000{letter-spacing:8.590800px;}
.ls5f_c00000{letter-spacing:8.712000px;}
.ls9_c00000{letter-spacing:9.613620px;}
.ls1c_c00000{letter-spacing:10.152000px;}
.ls5a_c00000{letter-spacing:10.545600px;}
.ls4a_c00000{letter-spacing:11.702460px;}
.ls43_c00000{letter-spacing:12.024000px;}
.lsb_c00000{letter-spacing:12.168000px;}
.ls30_c00000{letter-spacing:12.442800px;}
.ls1b_c00000{letter-spacing:12.672600px;}
.ls2e_c00000{letter-spacing:15.540000px;}
.ls12_c00000{letter-spacing:17.077200px;}
.ls2d_c00000{letter-spacing:18.387000px;}
.ls25_c00000{letter-spacing:21.114000px;}
.ls3c_c00000{letter-spacing:21.506400px;}
.ls62_c00000{letter-spacing:21.817200px;}
.ls50_c00000{letter-spacing:22.248000px;}
.ls53_c00000{letter-spacing:28.768200px;}
.ls3b_c00000{letter-spacing:33.984000px;}
.ls3_c00000{letter-spacing:64.007400px;}
.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:-18.000000px;}
.ws15_c00000{word-spacing:-15.645600px;}
.ws8_c00000{word-spacing:-15.468480px;}
.wsc_c00000{word-spacing:-15.350400px;}
.wsd_c00000{word-spacing:-15.291360px;}
.ws2_c00000{word-spacing:-15.232320px;}
.ws6_c00000{word-spacing:-15.173280px;}
.wse_c00000{word-spacing:-15.114240px;}
.ws11_c00000{word-spacing:-15.055200px;}
.ws12_c00000{word-spacing:-14.996160px;}
.ws3_c00000{word-spacing:-14.760000px;}
.wsb_c00000{word-spacing:-12.592800px;}
.ws13_c00000{word-spacing:-12.260160px;}
.ws17_c00000{word-spacing:-12.117600px;}
.ws16_c00000{word-spacing:-12.022560px;}
.ws9_c00000{word-spacing:-11.149920px;}
.ws5_c00000{word-spacing:-10.458720px;}
.ws14_c00000{word-spacing:-9.797760px;}
.wsa_c00000{word-spacing:-9.771840px;}
.ws4_c00000{word-spacing:-9.720000px;}
.wsf_c00000{word-spacing:-0.072000px;}
.ws7_c00000{word-spacing:-0.059040px;}
.ws0_c00000{word-spacing:0.000000px;}
.ws10_c00000{word-spacing:0.332640px;}
._46_c00000{margin-left:-21.811200px;}
._13_c00000{margin-left:-17.358600px;}
._11_c00000{margin-left:-15.414600px;}
._14_c00000{margin-left:-13.470600px;}
._b_c00000{margin-left:-12.078900px;}
._a_c00000{margin-left:-10.134900px;}
._6_c00000{margin-left:-8.334900px;}
._e_c00000{margin-left:-7.278600px;}
._5_c00000{margin-left:-6.174900px;}
._3_c00000{margin-left:-4.230900px;}
._38_c00000{margin-left:-3.006960px;}
._7_c00000{margin-left:-1.998900px;}
._0_c00000{width:1.002240px;}
._12_c00000{width:2.441400px;}
._4_c00000{width:4.049100px;}
._1_c00000{width:5.633100px;}
._1f_c00000{width:6.661800px;}
._18_c00000{width:7.704000px;}
._26_c00000{width:8.719200px;}
._8_c00000{width:9.737100px;}
._1b_c00000{width:11.592000px;}
._16_c00000{width:12.672000px;}
._d_c00000{width:14.328000px;}
._19_c00000{width:15.405600px;}
._10_c00000{width:16.625400px;}
._31_c00000{width:18.295080px;}
._1d_c00000{width:19.296000px;}
._1e_c00000{width:20.332800px;}
._c_c00000{width:21.353400px;}
._17_c00000{width:22.536000px;}
._23_c00000{width:23.688000px;}
._25_c00000{width:25.488000px;}
._f_c00000{width:26.705400px;}
._1a_c00000{width:28.008000px;}
._21_c00000{width:29.016000px;}
._15_c00000{width:30.251400px;}
._22_c00000{width:31.626840px;}
._2_c00000{width:33.029160px;}
._1c_c00000{width:34.218840px;}
._9_c00000{width:35.280000px;}
._27_c00000{width:36.438000px;}
._24_c00000{width:37.800000px;}
._2a_c00000{width:39.384000px;}
._2b_c00000{width:40.536000px;}
._33_c00000{width:41.616000px;}
._30_c00000{width:43.200000px;}
._2f_c00000{width:44.280000px;}
._32_c00000{width:45.576000px;}
._28_c00000{width:46.584000px;}
._35_c00000{width:47.592000px;}
._2c_c00000{width:48.672000px;}
._34_c00000{width:49.793100px;}
._40_c00000{width:50.832000px;}
._39_c00000{width:52.416000px;}
._43_c00000{width:53.943600px;}
._42_c00000{width:55.872000px;}
._41_c00000{width:57.240000px;}
._3a_c00000{width:58.464000px;}
._44_c00000{width:60.192000px;}
._20_c00000{width:61.992000px;}
._2d_c00000{width:66.600000px;}
._4c_c00000{width:68.688000px;}
._56_c00000{width:71.435880px;}
._3e_c00000{width:82.949400px;}
._4f_c00000{width:84.335880px;}
._4d_c00000{width:92.011080px;}
._4b_c00000{width:101.998200px;}
._29_c00000{width:109.199640px;}
._49_c00000{width:116.325600px;}
._3d_c00000{width:117.364800px;}
._3f_c00000{width:127.372800px;}
._4a_c00000{width:134.325600px;}
._36_c00000{width:141.811920px;}
._54_c00000{width:144.862800px;}
._3c_c00000{width:163.444800px;}
._3b_c00000{width:193.589400px;}
._2e_c00000{width:194.699400px;}
._37_c00000{width:197.639400px;}
._48_c00000{width:266.946600px;}
._50_c00000{width:297.706440px;}
._55_c00000{width:318.045960px;}
._52_c00000{width:673.259880px;}
._4e_c00000{width:1188.432000px;}
._47_c00000{width:1228.560000px;}
._53_c00000{width:1432.800240px;}
._51_c00000{width:1666.800240px;}
._45_c00000{width:1850.100600px;}
.fc9_c00000{color:rgb(0,128,128);}
.fc7_c00000{color:rgb(0,0,255);}
.fc5_c00000{color:transparent;}
.fc4_c00000{color:rgb(36,64,97);}
.fc8_c00000{color:rgb(23,54,93);}
.fc6_c00000{color:rgb(255,0,0);}
.fc2_c00000{color:rgb(210,218,227);}
.fc1_c00000{color:rgb(55,102,156);}
.fc3_c00000{color:rgb(0,0,0);}
.fc0_c00000{color:rgb(255,255,255);}
.fsc_c00000{font-size:38.880000px;}
.fse_c00000{font-size:41.760000px;}
.fsf_c00000{font-size:47.520000px;}
.fs10_c00000{font-size:53.280000px;}
.fsb_c00000{font-size:59.040000px;}
.fsd_c00000{font-size:64.800000px;}
.fs7_c00000{font-size:66.000000px;}
.fs8_c00000{font-size:72.000000px;}
.fs4_c00000{font-size:78.000000px;}
.fsa_c00000{font-size:83.520000px;}
.fs5_c00000{font-size:84.000000px;}
.fs6_c00000{font-size:108.000000px;}
.fs2_c00000{font-size:144.000000px;}
.fs9_c00000{font-size:149.760000px;}
.fs0_c00000{font-size:180.000000px;}
.fs3_c00000{font-size:216.000000px;}
.fs1_c00000{font-size:300.000000px;}
.y18_c00000{bottom:-2427.000000px;}
.y19_c00000{bottom:-2101.500000px;}
.y15_c00000{bottom:-1872.000000px;}
.y17_c00000{bottom:-1744.500000px;}
.y16_c00000{bottom:-1417.500000px;}
.y67_c00000{bottom:-11.160000px;}
.y62_c00000{bottom:-0.405009px;}
.y0_c00000{bottom:0.000000px;}
.y63_c00000{bottom:3.195000px;}
.y65_c00000{bottom:3.960000px;}
.yd_c00000{bottom:6.000000px;}
.yf_c00000{bottom:7.500000px;}
.y1d_c00000{bottom:9.000000px;}
.y6_c00000{bottom:16.500000px;}
.y2_c00000{bottom:19.500000px;}
.y4_c00000{bottom:24.000000px;}
.y24_c00000{bottom:28.500000px;}
.y30_c00000{bottom:30.000000px;}
.y11_c00000{bottom:39.000000px;}
.y29_c00000{bottom:42.000000px;}
.y32_c00000{bottom:53.999985px;}
.yf8_c00000{bottom:55.755000px;}
.y64_c00000{bottom:56.114985px;}
.yc6_c00000{bottom:56.475000px;}
.y26_c00000{bottom:57.000000px;}
.ydb_c00000{bottom:60.074985px;}
.y66_c00000{bottom:60.434985px;}
.y442_c00000{bottom:60.795000px;}
.y230_c00000{bottom:61.875000px;}
.yda_c00000{bottom:62.595015px;}
.yb2_c00000{bottom:69.435000px;}
.yf7_c00000{bottom:73.035000px;}
.yd9_c00000{bottom:73.395000px;}
.y88_c00000{bottom:74.115015px;}
.yd3_c00000{bottom:74.475000px;}
.y11e_c00000{bottom:79.875000px;}
.y22f_c00000{bottom:82.755000px;}
.y61_c00000{bottom:87.435000px;}
.yf6_c00000{bottom:90.315000px;}
.y11d_c00000{bottom:90.675000px;}
.y7c_c00000{bottom:92.115000px;}
.y141_c00000{bottom:95.715000px;}
.y2e2_c00000{bottom:96.795015px;}
.yf9_c00000{bottom:97.155015px;}
.y1ac_c00000{bottom:97.875015px;}
.yb1_c00000{bottom:100.755015px;}
.y21_c00000{bottom:101.997600px;}
.y21b_c00000{bottom:103.275015px;}
.y326_c00000{bottom:104.715015px;}
.y96_c00000{bottom:105.075015px;}
.yd2_c00000{bottom:105.435015px;}
.y13_c00000{bottom:106.500000px;}
.y438_c00000{bottom:106.515015px;}
.y424_c00000{bottom:106.875015px;}
.yf5_c00000{bottom:107.595015px;}
.y60_c00000{bottom:107.955015px;}
.y40c_c00000{bottom:110.115015px;}
.y457_c00000{bottom:110.475015px;}
.y1ea_c00000{bottom:110.835015px;}
.yd8_c00000{bottom:113.715015px;}
.y145_c00000{bottom:114.435015px;}
.y2d6_c00000{bottom:114.795015px;}
.y11c_c00000{bottom:116.235015px;}
.y38c_c00000{bottom:116.595015px;}
.yc5_c00000{bottom:118.755015px;}
.y40d_c00000{bottom:119.835015px;}
.y178_c00000{bottom:121.275015px;}
.y12_c00000{bottom:121.500000px;}
.y87_c00000{bottom:123.075015px;}
.yf4_c00000{bottom:124.515015px;}
.y188_c00000{bottom:125.235015px;}
.y202_c00000{bottom:126.315015px;}
.y140_c00000{bottom:126.675015px;}
.y437_c00000{bottom:127.035015px;}
.y2e1_c00000{bottom:128.115015px;}
.y5f_c00000{bottom:128.835015px;}
.y2a1_c00000{bottom:130.995015px;}
.y144_c00000{bottom:131.355015px;}
.yb0_c00000{bottom:131.715015px;}
.y403_c00000{bottom:132.435015px;}
.y341_c00000{bottom:132.795015px;}
.y1e5_c00000{bottom:134.235015px;}
.y325_c00000{bottom:135.675015px;}
.yd1_c00000{bottom:136.755015px;}
.y252_c00000{bottom:137.115015px;}
.y2b1_c00000{bottom:137.835015px;}
.y259_c00000{bottom:139.275015px;}
.y7b_c00000{bottom:141.075015px;}
.yf3_c00000{bottom:141.795015px;}
.y1e9_c00000{bottom:142.155015px;}
.y135_c00000{bottom:142.515015px;}
.y2c0_c00000{bottom:143.235015px;}
.y20_c00000{bottom:143.998800px;}
.yd7_c00000{bottom:144.675015px;}
.y44a_c00000{bottom:145.395015px;}
.y2d5_c00000{bottom:146.115015px;}
.y244_c00000{bottom:146.835015px;}
.y11b_c00000{bottom:147.195015px;}
.y38b_c00000{bottom:147.915015px;}
.y198_c00000{bottom:148.635015px;}
.y5e_c00000{bottom:149.355015px;}
.yc4_c00000{bottom:149.715015px;}
.y409_c00000{bottom:150.795015px;}
.y177_c00000{bottom:152.235015px;}
.y402_c00000{bottom:153.315015px;}
.y95_c00000{bottom:154.035015px;}
.y454_c00000{bottom:155.115015px;}
.y456_c00000{bottom:155.475015px;}
.yb_c00000{bottom:155.994600px;}
.y3fc_c00000{bottom:156.195015px;}
.y201_c00000{bottom:157.275015px;}
.y13f_c00000{bottom:157.635015px;}
.y14b_c00000{bottom:159.075015px;}
.y197_c00000{bottom:159.795015px;}
.y1ab_c00000{bottom:160.155015px;}
.y25e_c00000{bottom:160.515015px;}
.y455_c00000{bottom:162.315015px;}
.yaf_c00000{bottom:162.675015px;}
.y33e_c00000{bottom:163.035015px;}
.y340_c00000{bottom:164.115015px;}
.y1e4_c00000{bottom:165.195015px;}
.yf2_c00000{bottom:165.915015px;}
.y324_c00000{bottom:166.635015px;}
.yd0_c00000{bottom:167.715015px;}
.y214_c00000{bottom:168.075015px;}
.y436_c00000{bottom:168.435015px;}
.y32d_c00000{bottom:168.795015px;}
.y5d_c00000{bottom:170.235015px;}
.y262_c00000{bottom:170.595015px;}
.y40b_c00000{bottom:171.315015px;}
.y86_c00000{bottom:172.035015px;}
.y1e8_c00000{bottom:173.115015px;}
.y134_c00000{bottom:173.475015px;}
.y401_c00000{bottom:173.835015px;}
.y2bf_c00000{bottom:174.195015px;}
.y175_c00000{bottom:175.635015px;}
.y3aa_c00000{bottom:175.995015px;}
.y14a_c00000{bottom:176.355015px;}
.yf1_c00000{bottom:177.075015px;}
.y243_c00000{bottom:178.155015px;}
.y11a_c00000{bottom:178.515015px;}
.y38a_c00000{bottom:178.875015px;}
.y3cb_c00000{bottom:179.595015px;}
.y2a0_c00000{bottom:179.955015px;}
.yc3_c00000{bottom:180.675015px;}
.y213_c00000{bottom:181.035015px;}
.y2e0_c00000{bottom:182.115015px;}
.y443_c00000{bottom:182.475015px;}
.y16b_c00000{bottom:183.195015px;}
.y40a_c00000{bottom:184.275015px;}
.y1f_c00000{bottom:186.000000px;}
.y196_c00000{bottom:186.075015px;}
.y2b0_c00000{bottom:186.795015px;}
.y200_c00000{bottom:188.235015px;}
.y13e_c00000{bottom:188.595015px;}
.y3b8_c00000{bottom:189.315015px;}
.y7a_c00000{bottom:190.035015px;}
.y5c_c00000{bottom:190.755015px;}
.y1aa_c00000{bottom:191.115015px;}
.y338_c00000{bottom:191.835015px;}
.y35a_c00000{bottom:192.195015px;}
.yd6_c00000{bottom:193.635015px;}
.y1b9_c00000{bottom:194.355015px;}
.y400_c00000{bottom:194.715015px;}
.y391_c00000{bottom:195.075015px;}
.y27c_c00000{bottom:196.155015px;}
.y187_c00000{bottom:196.515015px;}
.y3f7_c00000{bottom:196.875015px;}
.y1b8_c00000{bottom:197.595015px;}
.ycf_c00000{bottom:198.675015px;}
.y24c_c00000{bottom:199.035015px;}
.y37e_c00000{bottom:200.115015px;}
.y15f_c00000{bottom:200.475015px;}
.y258_c00000{bottom:201.195015px;}
.y261_c00000{bottom:201.915015px;}
.y94_c00000{bottom:202.995015px;}
.y1e7_c00000{bottom:204.075015px;}
.y36a_c00000{bottom:204.795015px;}
.y2be_c00000{bottom:205.515015px;}
.y107_c00000{bottom:206.595015px;}
.y3b4_c00000{bottom:207.675015px;}
.y2d4_c00000{bottom:208.035015px;}
.y242_c00000{bottom:209.115015px;}
.y119_c00000{bottom:209.475015px;}
.y389_c00000{bottom:209.835015px;}
.y425_c00000{bottom:210.195015px;}
.y149_c00000{bottom:210.915015px;}
.y5b_c00000{bottom:211.635015px;}
.y133_c00000{bottom:211.995015px;}
.y373_c00000{bottom:212.715015px;}
.y33d_c00000{bottom:213.075015px;}
.y16a_c00000{bottom:214.515015px;}
.y2d8_c00000{bottom:214.875015px;}
.y3d9_c00000{bottom:215.235015px;}
.y1f3_c00000{bottom:216.675015px;}
.y186_c00000{bottom:217.035015px;}
.y1c5_c00000{bottom:217.755015px;}
.y32c_c00000{bottom:218.115015px;}
.ya_c00000{bottom:218.996400px;}
.y1e2_c00000{bottom:219.195015px;}
.y13d_c00000{bottom:219.915015px;}
.y3ad_c00000{bottom:220.275015px;}
.y85_c00000{bottom:220.995015px;}
.y1a9_c00000{bottom:222.075015px;}
.y337_c00000{bottom:222.795015px;}
.y359_c00000{bottom:223.515015px;}
.y319_c00000{bottom:224.235015px;}
.yea_c00000{bottom:224.595015px;}
.y3a9_c00000{bottom:225.315015px;}
.y369_c00000{bottom:225.675015px;}
.y3fb_c00000{bottom:226.035015px;}
.y3eb_c00000{bottom:226.395015px;}
.y195_c00000{bottom:227.475015px;}
.y3f6_c00000{bottom:227.835015px;}
.y148_c00000{bottom:228.195015px;}
.y25a_c00000{bottom:228.555015px;}
.y1b7_c00000{bottom:228.915015px;}
.yce_c00000{bottom:229.635015px;}
.y143_c00000{bottom:229.995015px;}
.y426_c00000{bottom:230.715015px;}
.y2df_c00000{bottom:231.075015px;}
.y5a_c00000{bottom:232.155015px;}
.y257_c00000{bottom:232.515015px;}
.y132_c00000{bottom:232.875015px;}
.y349_c00000{bottom:233.235015px;}
.y1c4_c00000{bottom:235.035015px;}
.y2af_c00000{bottom:236.115015px;}
.y2bd_c00000{bottom:236.475015px;}
.y27b_c00000{bottom:237.555015px;}
.y106_c00000{bottom:237.915015px;}
.y3b7_c00000{bottom:238.275015px;}
.y42e_c00000{bottom:238.635015px;}
.y79_c00000{bottom:238.995015px;}
.y241_c00000{bottom:240.075015px;}
.y118_c00000{bottom:240.435015px;}
.y388_c00000{bottom:240.795015px;}
.y41b_c00000{bottom:241.515015px;}
.y29f_c00000{bottom:241.875015px;}
.yae_c00000{bottom:242.595015px;}
.y212_c00000{bottom:242.955015px;}
.y1b_c00000{bottom:243.000000px;}
.y367_c00000{bottom:243.675015px;}
.y33c_c00000{bottom:244.035015px;}
.y169_c00000{bottom:245.475015px;}
.y1e3_c00000{bottom:245.835015px;}
.y368_c00000{bottom:246.195015px;}
.y1f2_c00000{bottom:247.635015px;}
.y194_c00000{bottom:247.995015px;}
.y2b7_c00000{bottom:249.075015px;}
.y1e1_c00000{bottom:250.515015px;}
.y13c_c00000{bottom:250.875015px;}
.y375_c00000{bottom:251.235015px;}
.y30e_c00000{bottom:251.595015px;}
.y93_c00000{bottom:252.315015px;}
.y59_c00000{bottom:253.035015px;}
.y131_c00000{bottom:253.395015px;}
.ye_c00000{bottom:253.500000px;}
.y336_c00000{bottom:254.115015px;}
.y358_c00000{bottom:254.475015px;}
.ye9_c00000{bottom:255.915015px;}
.y2b2_c00000{bottom:256.275015px;}
.y385_c00000{bottom:256.635015px;}
.y2eb_c00000{bottom:256.995015px;}
.y27a_c00000{bottom:258.075015px;}
.y185_c00000{bottom:258.435015px;}
.y3f5_c00000{bottom:258.795015px;}
.y3f9_c00000{bottom:259.515015px;}
.y1b6_c00000{bottom:259.875015px;}
.ycd_c00000{bottom:260.595015px;}
.y1f5_c00000{bottom:261.315015px;}
.y33f_c00000{bottom:262.035015px;}
.y1bf_c00000{bottom:262.755015px;}
.y147_c00000{bottom:263.115015px;}
.y215_c00000{bottom:263.475015px;}
.y2d7_c00000{bottom:263.835015px;}
.y3ed_c00000{bottom:264.195015px;}
.y174_c00000{bottom:265.995015px;}
.y32b_c00000{bottom:267.075015px;}
.y2bc_c00000{bottom:267.435015px;}
.y105_c00000{bottom:268.875015px;}
.y3ac_c00000{bottom:269.235015px;}
.y2f2_c00000{bottom:269.595015px;}
.y84_c00000{bottom:270.315015px;}
.y240_c00000{bottom:271.035015px;}
.y117_c00000{bottom:271.395015px;}
.y387_c00000{bottom:272.115015px;}
.y297_c00000{bottom:272.475015px;}
.y29e_c00000{bottom:272.835015px;}
.y318_c00000{bottom:273.195015px;}
.y58_c00000{bottom:273.555015px;}
.yad_c00000{bottom:273.915015px;}
.y130_c00000{bottom:274.275015px;}
.y348_c00000{bottom:274.635015px;}
.y3fa_c00000{bottom:274.995015px;}
.y3ea_c00000{bottom:275.715015px;}
.y168_c00000{bottom:276.435015px;}
.y390_c00000{bottom:276.795015px;}
.y384_c00000{bottom:277.515015px;}
.y1f1_c00000{bottom:278.595015px;}
.y279_c00000{bottom:278.955015px;}
.y184_c00000{bottom:279.315015px;}
.y362_c00000{bottom:279.675015px;}
.y1be_c00000{bottom:280.035015px;}
.y1c3_c00000{bottom:280.395015px;}
.y1e0_c00000{bottom:281.475015px;}
.y13b_c00000{bottom:281.835015px;}
.y9_c00000{bottom:281.998200px;}
.y394_c00000{bottom:282.195015px;}
.y449_c00000{bottom:283.635015px;}
.y1a8_c00000{bottom:283.995015px;}
.y15e_c00000{bottom:284.715015px;}
.y2ae_c00000{bottom:285.075015px;}
.y357_c00000{bottom:285.435015px;}
.ye8_c00000{bottom:286.875015px;}
.y3b6_c00000{bottom:287.235015px;}
.y2fd_c00000{bottom:287.595015px;}
.y78_c00000{bottom:288.315015px;}
.y3a3_c00000{bottom:288.675015px;}
.y142_c00000{bottom:289.395015px;}
.y3f4_c00000{bottom:290.115015px;}
.y345_c00000{bottom:290.475015px;}
.y1b5_c00000{bottom:290.835015px;}
.yc2_c00000{bottom:291.915015px;}
.y1f4_c00000{bottom:292.275015px;}
.y3bd_c00000{bottom:292.635015px;}
.y30d_c00000{bottom:292.995015px;}
.y433_c00000{bottom:294.075015px;}
.y57_c00000{bottom:294.435015px;}
.y12f_c00000{bottom:294.795015px;}
.y347_c00000{bottom:295.515015px;}
.y453_c00000{bottom:296.235015px;}
.y193_c00000{bottom:297.315015px;}
.y25f_c00000{bottom:297.675015px;}
.y383_c00000{bottom:298.035015px;}
.y2bb_c00000{bottom:298.395015px;}
.y278_c00000{bottom:299.475015px;}
.y104_c00000{bottom:299.835015px;}
.y374_c00000{bottom:300.195015px;}
.y42d_c00000{bottom:300.915015px;}
.y92_c00000{bottom:301.275015px;}
.y23f_c00000{bottom:301.995015px;}
.y260_c00000{bottom:302.715015px;}
.y386_c00000{bottom:303.075015px;}
.y22c_c00000{bottom:303.795015px;}
.y29d_c00000{bottom:304.155015px;}
.yac_c00000{bottom:304.875015px;}
.y211_c00000{bottom:305.235015px;}
.y366_c00000{bottom:305.595015px;}
.y2ea_c00000{bottom:306.315015px;}
.y167_c00000{bottom:307.395015px;}
.y36b_c00000{bottom:308.115015px;}
.y37a_c00000{bottom:308.475015px;}
.y1f0_c00000{bottom:309.915015px;}
.y116_c00000{bottom:310.275015px;}
.y23_c00000{bottom:310.500000px;}
.y2b6_c00000{bottom:310.995015px;}
.y1df_c00000{bottom:312.435015px;}
.y266_c00000{bottom:312.795015px;}
.y435_c00000{bottom:313.515015px;}
.y30c_c00000{bottom:313.875015px;}
.y1bd_c00000{bottom:314.235015px;}
.y56_c00000{bottom:314.955015px;}
.y1a7_c00000{bottom:315.315015px;}
.y15d_c00000{bottom:315.675015px;}
.y32a_c00000{bottom:316.035015px;}
.y356_c00000{bottom:316.395015px;}
.yf0_c00000{bottom:317.835015px;}
.y3ab_c00000{bottom:318.195015px;}
.y382_c00000{bottom:318.915015px;}
.y83_c00000{bottom:319.275015px;}
.y3a2_c00000{bottom:319.635015px;}
.y183_c00000{bottom:320.715015px;}
.y35e_c00000{bottom:321.075015px;}
.y296_c00000{bottom:321.435015px;}
.y1b4_c00000{bottom:321.795015px;}
.y317_c00000{bottom:322.155015px;}
.yc1_c00000{bottom:322.875015px;}
.y251_c00000{bottom:323.235015px;}
.y37d_c00000{bottom:324.315015px;}
.y3e9_c00000{bottom:324.675015px;}
.y1e6_c00000{bottom:325.395015px;}
.y420_c00000{bottom:326.115015px;}
.y3ec_c00000{bottom:326.475015px;}
.y10_c00000{bottom:327.000000px;}
.y452_c00000{bottom:327.195015px;}
.y192_c00000{bottom:328.275015px;}
.y361_c00000{bottom:328.635015px;}
.y2de_c00000{bottom:328.995015px;}
.y2ba_c00000{bottom:329.715015px;}
.y103_c00000{bottom:330.795015px;}
.y1bc_c00000{bottom:331.515015px;}
.y344_c00000{bottom:331.875015px;}
.y35d_c00000{bottom:332.235015px;}
.y23e_c00000{bottom:333.315015px;}
.y265_c00000{bottom:333.675015px;}
.y2ad_c00000{bottom:334.035015px;}
.y30b_c00000{bottom:334.395015px;}
.y22b_c00000{bottom:334.755015px;}
.y29c_c00000{bottom:335.115015px;}
.y55_c00000{bottom:335.835015px;}
.y210_c00000{bottom:336.195015px;}
.y2fc_c00000{bottom:336.915015px;}
.y77_c00000{bottom:337.275015px;}
.y281_c00000{bottom:338.355015px;}
.y166_c00000{bottom:338.715015px;}
.y38f_c00000{bottom:339.075015px;}
.y381_c00000{bottom:339.435015px;}
.y1ef_c00000{bottom:340.875015px;}
.y182_c00000{bottom:341.235015px;}
.y3bc_c00000{bottom:341.595015px;}
.y2b5_c00000{bottom:342.315015px;}
.y1de_c00000{bottom:343.395015px;}
.y12e_c00000{bottom:344.115015px;}
.y365_c00000{bottom:344.475015px;}
.y42a_c00000{bottom:344.835015px;}
.y8_c00000{bottom:345.000000px;}
.y1a6_c00000{bottom:346.275015px;}
.y15c_c00000{bottom:346.635015px;}
.y335_c00000{bottom:346.995015px;}
.y355_c00000{bottom:347.715015px;}
.y277_c00000{bottom:348.435015px;}
.yef_c00000{bottom:348.795015px;}
.y280_c00000{bottom:349.515015px;}
.y379_c00000{bottom:349.875015px;}
.y91_c00000{bottom:350.235015px;}
.y3a1_c00000{bottom:350.955015px;}
.y115_c00000{bottom:351.675015px;}
.y3f3_c00000{bottom:352.035015px;}
.y343_c00000{bottom:352.395015px;}
.y1b3_c00000{bottom:353.115015px;}
.yc0_c00000{bottom:353.835015px;}
.y25d_c00000{bottom:354.195015px;}
.y3b3_c00000{bottom:354.915015px;}
.y2e9_c00000{bottom:355.275015px;}
.y31_c00000{bottom:355.500000px;}
.y1bb_c00000{bottom:355.635015px;}
.y54_c00000{bottom:356.355015px;}
.y22e_c00000{bottom:356.715015px;}
.y2f1_c00000{bottom:357.075015px;}
.y2fb_c00000{bottom:357.435015px;}
.y451_c00000{bottom:358.155015px;}
.y18d_c00000{bottom:359.235015px;}
.y2cc_c00000{bottom:360.315015px;}
.y2b9_c00000{bottom:360.675015px;}
.y434_c00000{bottom:361.395015px;}
.y102_c00000{bottom:362.115015px;}
.y3f8_c00000{bottom:362.835015px;}
.y23d_c00000{bottom:364.275015px;}
.y264_c00000{bottom:364.635015px;}
.y329_c00000{bottom:364.995015px;}
.y2a_c00000{bottom:366.000000px;}
.y22a_c00000{bottom:366.075015px;}
.yab_c00000{bottom:366.795015px;}
.y20f_c00000{bottom:367.155015px;}
.y3a8_c00000{bottom:367.515015px;}
.y372_c00000{bottom:367.875015px;}
.y82_c00000{bottom:368.235015px;}
.y165_c00000{bottom:369.675015px;}
.y27f_c00000{bottom:370.035015px;}
.y295_c00000{bottom:370.395015px;}
.y316_c00000{bottom:371.115015px;}
.y1ee_c00000{bottom:371.835015px;}
.y1c8_c00000{bottom:372.195015px;}
.y1ba_c00000{bottom:372.915015px;}
.y2b4_c00000{bottom:373.275015px;}
.y3e8_c00000{bottom:373.635015px;}
.y432_c00000{bottom:374.355015px;}
.y1ff_c00000{bottom:374.715015px;}
.y12d_c00000{bottom:375.075015px;}
.y423_c00000{bottom:375.435015px;}
.y429_c00000{bottom:375.795015px;}
.y53_c00000{bottom:377.235015px;}
.y15b_c00000{bottom:377.595015px;}
.y360_c00000{bottom:377.955015px;}
.y2dd_c00000{bottom:378.315015px;}
.y354_c00000{bottom:378.675015px;}
.y1a_c00000{bottom:379.500000px;}
.y276_c00000{bottom:379.755015px;}
.yee_c00000{bottom:380.115015px;}
.y393_c00000{bottom:380.475015px;}
.y380_c00000{bottom:380.835015px;}
.y3a0_c00000{bottom:381.915015px;}
.y181_c00000{bottom:382.635015px;}
.y2ac_c00000{bottom:382.995015px;}
.y3ff_c00000{bottom:383.355015px;}
.y30a_c00000{bottom:383.715015px;}
.y1b2_c00000{bottom:384.075015px;}
.ybf_c00000{bottom:384.795015px;}
.y2c5_c00000{bottom:385.515015px;}
.y364_c00000{bottom:385.875015px;}
.y76_c00000{bottom:386.235015px;}
.y1c2_c00000{bottom:387.675015px;}
.y2f0_c00000{bottom:388.035015px;}
.y3f2_c00000{bottom:388.395015px;}
.y450_c00000{bottom:389.115015px;}
.y191_c00000{bottom:390.195015px;}
.y3bb_c00000{bottom:390.915015px;}
.y33b_c00000{bottom:391.275015px;}
.yc_c00000{bottom:391.500000px;}
.y1dd_c00000{bottom:392.715015px;}
.y101_c00000{bottom:393.075015px;}
.y41f_c00000{bottom:393.435015px;}
.y342_c00000{bottom:393.795015px;}
.y23c_c00000{bottom:395.235015px;}
.y263_c00000{bottom:395.595015px;}
.y339_c00000{bottom:396.315015px;}
.y229_c00000{bottom:397.035015px;}
.y52_c00000{bottom:397.755015px;}
.yaa_c00000{bottom:398.115015px;}
.y32f_c00000{bottom:398.475015px;}
.y2fa_c00000{bottom:398.835015px;}
.y90_c00000{bottom:399.195015px;}
.y114_c00000{bottom:400.635015px;}
.y35c_c00000{bottom:400.995015px;}
.y37f_c00000{bottom:401.715015px;}
.y3ca_c00000{bottom:402.435015px;}
.y1ed_c00000{bottom:402.795015px;}
.y180_c00000{bottom:403.515015px;}
.y3b2_c00000{bottom:403.875015px;}
.y2b3_c00000{bottom:404.235015px;}
.y1fe_c00000{bottom:405.675015px;}
.y12c_c00000{bottom:406.035015px;}
.y363_c00000{bottom:406.395015px;}
.y1a5_c00000{bottom:408.195015px;}
.y27e_c00000{bottom:408.915015px;}
.y2cb_c00000{bottom:409.275015px;}
.y2b8_c00000{bottom:409.635015px;}
.y275_c00000{bottom:410.715015px;}
.yed_c00000{bottom:411.075015px;}
.y378_c00000{bottom:411.795015px;}
.y39f_c00000{bottom:412.875015px;}
.y218_c00000{bottom:413.595015px;}
.y328_c00000{bottom:414.315015px;}
.y309_c00000{bottom:414.675015px;}
.y1b1_c00000{bottom:415.035015px;}
.ybe_c00000{bottom:416.115015px;}
.y15a_c00000{bottom:416.475015px;}
.y408_c00000{bottom:416.835015px;}
.y81_c00000{bottom:417.195015px;}
.y441_c00000{bottom:417.915015px;}
.y51_c00000{bottom:418.635015px;}
.y2ef_c00000{bottom:418.995015px;}
.y294_c00000{bottom:419.715015px;}
.y315_c00000{bottom:420.435015px;}
.y18c_c00000{bottom:421.515015px;}
.y37c_c00000{bottom:422.235015px;}
.y3e7_c00000{bottom:422.595015px;}
.y35f_c00000{bottom:422.955015px;}
.y1dc_c00000{bottom:423.675015px;}
.y100_c00000{bottom:424.035015px;}
.y422_c00000{bottom:424.395015px;}
.y3fe_c00000{bottom:424.755015px;}
.y22d_c00000{bottom:426.195015px;}
.y2c4_c00000{bottom:426.915015px;}
.y2dc_c00000{bottom:427.275015px;}
.y353_c00000{bottom:427.635015px;}
.y228_c00000{bottom:427.995015px;}
.y29b_c00000{bottom:428.355015px;}
.yd4_c00000{bottom:429.075015px;}
.y392_c00000{bottom:429.435015px;}
.y371_c00000{bottom:429.795015px;}
.y113_c00000{bottom:431.595015px;}
.y2ab_c00000{bottom:432.315015px;}
.y377_c00000{bottom:432.675015px;}
.y1ec_c00000{bottom:434.115015px;}
.y24b_c00000{bottom:434.475015px;}
.y41e_c00000{bottom:434.835015px;}
.y75_c00000{bottom:435.195015px;}
.y3fd_c00000{bottom:435.555015px;}
.y1fd_c00000{bottom:436.635015px;}
.y159_c00000{bottom:436.995015px;}
.y3f1_c00000{bottom:437.715015px;}
.y50_c00000{bottom:439.155015px;}
.y1a4_c00000{bottom:439.515015px;}
.y3ba_c00000{bottom:439.875015px;}
.y33a_c00000{bottom:440.235015px;}
.y274_c00000{bottom:441.675015px;}
.yec_c00000{bottom:442.035015px;}
.y42c_c00000{bottom:443.115015px;}
.y12b_c00000{bottom:444.915015px;}
.y3ee_c00000{bottom:445.275015px;}
.y308_c00000{bottom:445.635015px;}
.y1b0_c00000{bottom:445.995015px;}
.ya9_c00000{bottom:447.075015px;}
.y20e_c00000{bottom:447.435015px;}
.y2f9_c00000{bottom:447.795015px;}
.y8f_c00000{bottom:448.515015px;}
.y1c1_c00000{bottom:449.595015px;}
.y2ee_c00000{bottom:450.315015px;}
.y412_c00000{bottom:450.675015px;}
.y44f_c00000{bottom:451.395015px;}
.y39e_c00000{bottom:451.755015px;}
.y17d_c00000{bottom:452.475015px;}
.y3b1_c00000{bottom:452.835015px;}
.y2e8_c00000{bottom:453.195015px;}
.y323_c00000{bottom:453.915015px;}
.y1db_c00000{bottom:454.635015px;}
.y13a_c00000{bottom:454.995015px;}
.y41d_c00000{bottom:455.715015px;}
.y428_c00000{bottom:456.075015px;}
.y1c9_c00000{bottom:457.515015px;}
.y158_c00000{bottom:457.875015px;}
.y2ca_c00000{bottom:458.235015px;}
.y227_c00000{bottom:458.955015px;}
.y4f_c00000{bottom:460.035015px;}
.y3a7_c00000{bottom:460.395015px;}
.y370_c00000{bottom:461.115015px;}
.yff_c00000{bottom:462.915015px;}
.y327_c00000{bottom:463.275015px;}
.y42b_c00000{bottom:463.635015px;}
.y1eb_c00000{bottom:465.075015px;}
.y12a_c00000{bottom:465.435015px;}
.y407_c00000{bottom:465.795015px;}
.y74_c00000{bottom:466.515015px;}
.y1fc_c00000{bottom:467.595015px;}
.y26f_c00000{bottom:468.315015px;}
.y293_c00000{bottom:468.675015px;}
.y314_c00000{bottom:469.395015px;}
.y440_c00000{bottom:469.755015px;}
.y1c0_c00000{bottom:470.475015px;}
.y376_c00000{bottom:471.195015px;}
.y3e6_c00000{bottom:471.915015px;}
.y39d_c00000{bottom:472.275015px;}
.y273_c00000{bottom:472.635015px;}
.yeb_c00000{bottom:472.995015px;}
.y421_c00000{bottom:473.715015px;}
.y23b_c00000{bottom:475.515015px;}
.y217_c00000{bottom:475.875015px;}
.y2db_c00000{bottom:476.235015px;}
.y307_c00000{bottom:476.595015px;}
.y1af_c00000{bottom:477.315015px;}
.ya8_c00000{bottom:478.035015px;}
.y20d_c00000{bottom:478.395015px;}
.y2f8_c00000{bottom:479.115015px;}
.y4e_c00000{bottom:480.555015px;}
.y1f6_c00000{bottom:480.915015px;}
.y2aa_c00000{bottom:481.275015px;}
.y411_c00000{bottom:481.635015px;}
.y44e_c00000{bottom:482.355015px;}
.yfe_c00000{bottom:483.435015px;}
.y2d3_c00000{bottom:484.515015px;}
.y1da_c00000{bottom:485.595015px;}
.y129_c00000{bottom:486.315015px;}
.y3f0_c00000{bottom:486.675015px;}
.y43f_c00000{bottom:487.035015px;}
.y1a3_c00000{bottom:488.475015px;}
.y3b9_c00000{bottom:488.835015px;}
.y334_c00000{bottom:489.195015px;}
.y226_c00000{bottom:490.275015px;}
.ye7_c00000{bottom:490.995015px;}
.y3a6_c00000{bottom:491.715015px;}
.y322_c00000{bottom:492.435015px;}
.y39c_c00000{bottom:493.155015px;}
.y7_c00000{bottom:493.500000px;}
.y112_c00000{bottom:493.875015px;}
.y35b_c00000{bottom:494.235015px;}
.yd5_c00000{bottom:496.035015px;}
.y24a_c00000{bottom:496.395015px;}
.y41c_c00000{bottom:497.115015px;}
.y8e_c00000{bottom:497.475015px;}
.y1fb_c00000{bottom:498.915015px;}
.y26e_c00000{bottom:499.275015px;}
.y25_c00000{bottom:499.500000px;}
.y4d_c00000{bottom:501.435015px;}
.y3b0_c00000{bottom:501.795015px;}
.y2e7_c00000{bottom:502.515015px;}
.y272_c00000{bottom:503.955015px;}
.yfd_c00000{bottom:504.315015px;}
.y23a_c00000{bottom:506.475015px;}
.y157_c00000{bottom:506.835015px;}
.y2c9_c00000{bottom:507.195015px;}
.y306_c00000{bottom:507.915015px;}
.y1ae_c00000{bottom:508.275015px;}
.ya7_c00000{bottom:508.995015px;}
.y20c_c00000{bottom:509.355015px;}
.y3b5_c00000{bottom:509.715015px;}
.y2f7_c00000{bottom:510.075015px;}
.y164_c00000{bottom:511.875015px;}
.y2a9_c00000{bottom:512.235015px;}
.y410_c00000{bottom:512.595015px;}
.y44d_c00000{bottom:513.315015px;}
.y39b_c00000{bottom:513.675015px;}
.y17c_c00000{bottom:514.395015px;}
.y406_c00000{bottom:515.115015px;}
.y73_c00000{bottom:515.475015px;}
.y1d9_c00000{bottom:516.915015px;}
.y139_c00000{bottom:517.275015px;}
.y292_c00000{bottom:517.635015px;}
.y313_c00000{bottom:518.355015px;}
.y1a2_c00000{bottom:519.435015px;}
.y2ed_c00000{bottom:519.795015px;}
.y346_c00000{bottom:520.515015px;}
.y3e5_c00000{bottom:520.875015px;}
.y225_c00000{bottom:521.235015px;}
.y4c_c00000{bottom:521.955015px;}
.ye6_c00000{bottom:522.315015px;}
.y3a5_c00000{bottom:522.675015px;}
.yfc_c00000{bottom:524.835015px;}
.y2da_c00000{bottom:525.195015px;}
.y352_c00000{bottom:525.915015px;}
.y29a_c00000{bottom:526.275015px;}
.ycc_c00000{bottom:526.995015px;}
.y249_c00000{bottom:527.715015px;}
.y250_c00000{bottom:529.875015px;}
.y26d_c00000{bottom:530.235015px;}
.y41a_c00000{bottom:530.595015px;}
.y321_c00000{bottom:531.315015px;}
.y16c_c00000{bottom:532.395015px;}
.y3af_c00000{bottom:533.115015px;}
.y2d2_c00000{bottom:533.475015px;}
.y271_c00000{bottom:534.915015px;}
.y128_c00000{bottom:535.275015px;}
.y3ef_c00000{bottom:535.635015px;}
.y427_c00000{bottom:535.995015px;}
.y1fa_c00000{bottom:537.435015px;}
.y156_c00000{bottom:537.795015px;}
.y333_c00000{bottom:538.515015px;}
.ya6_c00000{bottom:540.315015px;}
.y2ec_c00000{bottom:540.675015px;}
.y3d8_c00000{bottom:541.035015px;}
.y4b_c00000{bottom:542.835015px;}
.y2a8_c00000{bottom:543.195015px;}
.y44c_c00000{bottom:544.635015px;}
.y43e_c00000{bottom:545.355015px;}
.yfb_c00000{bottom:545.715015px;}
.y8d_c00000{bottom:546.435015px;}
.y1d8_c00000{bottom:547.875015px;}
.y190_c00000{bottom:548.235015px;}
.y2f6_c00000{bottom:548.595015px;}
.y1a1_c00000{bottom:550.395015px;}
.y3c9_c00000{bottom:551.115015px;}
.y2e6_c00000{bottom:551.475015px;}
.y224_c00000{bottom:552.195015px;}
.ye5_c00000{bottom:553.275015px;}
.y111_c00000{bottom:555.795015px;}
.y2c8_c00000{bottom:556.515015px;}
.y305_c00000{bottom:556.875015px;}
.ycb_c00000{bottom:558.315015px;}
.y248_c00000{bottom:558.675015px;}
.y36f_c00000{bottom:559.035015px;}
.y24f_c00000{bottom:560.835015px;}
.y26c_c00000{bottom:561.195015px;}
.y3d7_c00000{bottom:561.915015px;}
.y39a_c00000{bottom:562.635015px;}
.y4a_c00000{bottom:563.355015px;}
.y1c7_c00000{bottom:563.715015px;}
.y405_c00000{bottom:564.075015px;}
.y72_c00000{bottom:564.435015px;}
.yfa_c00000{bottom:566.235015px;}
.y291_c00000{bottom:566.595015px;}
.y288_c00000{bottom:566.955015px;}
.y312_c00000{bottom:567.315015px;}
.y239_c00000{bottom:568.395015px;}
.y155_c00000{bottom:569.115015px;}
.y2f5_c00000{bottom:569.475015px;}
.y320_c00000{bottom:569.835015px;}
.ya5_c00000{bottom:571.275015px;}
.y20b_c00000{bottom:571.635015px;}
.y40f_c00000{bottom:571.995015px;}
.y448_c00000{bottom:573.075015px;}
.y270_c00000{bottom:573.435015px;}
.y163_c00000{bottom:573.795015px;}
.y2a7_c00000{bottom:574.515015px;}
.y351_c00000{bottom:574.875015px;}
.y299_c00000{bottom:575.235015px;}
.y17b_c00000{bottom:576.675015px;}
.y1d7_c00000{bottom:578.835015px;}
.y27d_c00000{bottom:579.195015px;}
.y419_c00000{bottom:579.915015px;}
.y1a0_c00000{bottom:581.715015px;}
.y3ae_c00000{bottom:582.075015px;}
.y2d1_c00000{bottom:582.435015px;}
.y223_c00000{bottom:583.155015px;}
.y49_c00000{bottom:584.235015px;}
.y3df_c00000{bottom:584.595015px;}
.y2d_c00000{bottom:585.000000px;}
.y43d_c00000{bottom:585.675015px;}
.y173_c00000{bottom:587.115015px;}
.y332_c00000{bottom:587.475015px;}
.yca_c00000{bottom:589.275015px;}
.y44b_c00000{bottom:589.635015px;}
.y2f4_c00000{bottom:589.995015px;}
.y447_c00000{bottom:590.355015px;}
.y24e_c00000{bottom:591.795015px;}
.y26b_c00000{bottom:592.515015px;}
.y40e_c00000{bottom:592.875015px;}
.y399_c00000{bottom:593.955015px;}
.y176_c00000{bottom:594.675015px;}
.y8c_c00000{bottom:595.395015px;}
.y22_c00000{bottom:595.500000px;}
.y127_c00000{bottom:597.195015px;}
.y1f9_c00000{bottom:599.715015px;}
.y154_c00000{bottom:600.075015px;}
.y2e5_c00000{bottom:600.435015px;}
.ya4_c00000{bottom:602.235015px;}
.y20a_c00000{bottom:602.595015px;}
.y3d6_c00000{bottom:603.315015px;}
.y48_c00000{bottom:604.755015px;}
.y110_c00000{bottom:605.115015px;}
.y2a6_c00000{bottom:605.475015px;}
.y304_c00000{bottom:605.835015px;}
.y17f_c00000{bottom:607.635015px;}
.y36e_c00000{bottom:607.995015px;}
.y31f_c00000{bottom:608.715015px;}
.y1d6_c00000{bottom:609.795015px;}
.y2c3_c00000{bottom:610.515015px;}
.y2f3_c00000{bottom:610.875015px;}
.y19f_c00000{bottom:612.675015px;}
.y404_c00000{bottom:613.035015px;}
.y71_c00000{bottom:613.395015px;}
.y222_c00000{bottom:614.115015px;}
.ye4_c00000{bottom:615.195015px;}
.y287_c00000{bottom:615.915015px;}
.y311_c00000{bottom:616.635015px;}
.y3a4_c00000{bottom:616.995015px;}
.y1ad_c00000{bottom:618.075015px;}
.y37b_c00000{bottom:618.435015px;}
.y3e4_c00000{bottom:618.795015px;}
.yc9_c00000{bottom:620.235015px;}
.y298_c00000{bottom:620.595015px;}
.y172_c00000{bottom:623.115015px;}
.y2d9_c00000{bottom:623.475015px;}
.y350_c00000{bottom:623.835015px;}
.y398_c00000{bottom:624.915015px;}
.y3c8_c00000{bottom:625.275015px;}
.y47_c00000{bottom:625.635015px;}
.y126_c00000{bottom:628.515015px;}
.y418_c00000{bottom:628.875015px;}
.y238_c00000{bottom:630.675015px;}
.y26a_c00000{bottom:631.035015px;}
.y2d0_c00000{bottom:631.395015px;}
.ya3_c00000{bottom:633.195015px;}
.y209_c00000{bottom:633.555015px;}
.y3de_c00000{bottom:633.915015px;}
.y10f_c00000{bottom:636.075015px;}
.y2a5_c00000{bottom:636.435015px;}
.y3d5_c00000{bottom:637.515015px;}
.y153_c00000{bottom:638.595015px;}
.y1d5_c00000{bottom:641.115015px;}
.y2c2_c00000{bottom:641.475015px;}
.y446_c00000{bottom:642.195015px;}
.y171_c00000{bottom:643.635015px;}
.y8b_c00000{bottom:644.715015px;}
.y221_c00000{bottom:645.435015px;}
.y46_c00000{bottom:646.155015px;}
.ye3_c00000{bottom:646.515015px;}
.y31e_c00000{bottom:647.235015px;}
.y18f_c00000{bottom:649.035015px;}
.y2e4_c00000{bottom:649.395015px;}
.yc8_c00000{bottom:651.195015px;}
.y269_c00000{bottom:651.915015px;}
.y24d_c00000{bottom:654.075015px;}
.y2c7_c00000{bottom:654.435015px;}
.y303_c00000{bottom:654.795015px;}
.y397_c00000{bottom:655.875015px;}
.y1c6_c00000{bottom:656.595015px;}
.y36d_c00000{bottom:657.315015px;}
.y3d4_c00000{bottom:658.035015px;}
.y125_c00000{bottom:659.475015px;}
.y43c_c00000{bottom:659.835015px;}
.y237_c00000{bottom:661.635015px;}
.y3dd_c00000{bottom:661.995015px;}
.y70_c00000{bottom:662.715015px;}
.ya2_c00000{bottom:664.515015px;}
.y286_c00000{bottom:664.875015px;}
.y310_c00000{bottom:665.595015px;}
.y1c_c00000{bottom:666.000000px;}
.y445_c00000{bottom:666.315015px;}
.y45_c00000{bottom:667.035015px;}
.y2a4_c00000{bottom:667.395015px;}
.y3e3_c00000{bottom:668.115015px;}
.y18e_c00000{bottom:669.915015px;}
.y1d4_c00000{bottom:672.075015px;}
.y268_c00000{bottom:672.435015px;}
.y34f_c00000{bottom:672.795015px;}
.y19e_c00000{bottom:674.595015px;}
.y444_c00000{bottom:677.115015px;}
.ye2_c00000{bottom:677.475015px;}
.y417_c00000{bottom:677.835015px;}
.y3d3_c00000{bottom:678.915015px;}
.y152_c00000{bottom:679.995015px;}
.y2cf_c00000{bottom:680.715015px;}
.yc7_c00000{bottom:682.515015px;}
.y3dc_c00000{bottom:682.875015px;}
.y220_c00000{bottom:684.675015px;}
.y170_c00000{bottom:685.035015px;}
.y331_c00000{bottom:685.395015px;}
.y31d_c00000{bottom:686.115015px;}
.y396_c00000{bottom:686.835015px;}
.y44_c00000{bottom:687.555015px;}
.y146_c00000{bottom:687.915015px;}
.y124_c00000{bottom:690.435015px;}
.y43b_c00000{bottom:690.795015px;}
.y236_c00000{bottom:692.595015px;}
.y267_c00000{bottom:693.315015px;}
.y8a_c00000{bottom:693.675015px;}
.ya1_c00000{bottom:695.475015px;}
.y10e_c00000{bottom:697.995015px;}
.y2a3_c00000{bottom:698.715015px;}
.y3c7_c00000{bottom:699.435015px;}
.y151_c00000{bottom:700.875015px;}
.y1d3_c00000{bottom:703.035015px;}
.y2c6_c00000{bottom:703.395015px;}
.y30f_c00000{bottom:703.755015px;}
.y302_c00000{bottom:704.115015px;}
.y16f_c00000{bottom:705.915015px;}
.y21f_c00000{bottom:706.275015px;}
.y43_c00000{bottom:708.435015px;}
.y216_c00000{bottom:711.315015px;}
.y6f_c00000{bottom:711.675015px;}
.y2f_c00000{bottom:712.500000px;}
.ybd_c00000{bottom:713.475015px;}
.y290_c00000{bottom:713.835015px;}
.y285_c00000{bottom:714.195015px;}
.y18b_c00000{bottom:715.995015px;}
.y38e_c00000{bottom:716.715015px;}
.y3e2_c00000{bottom:717.075015px;}
.y395_c00000{bottom:718.155015px;}
.y17e_c00000{bottom:718.875015px;}
.y3d2_c00000{bottom:720.315015px;}
.y123_c00000{bottom:721.395015px;}
.y28_c00000{bottom:721.500000px;}
.y34e_c00000{bottom:722.115015px;}
.y235_c00000{bottom:723.915015px;}
.y3db_c00000{bottom:724.275015px;}
.y31c_c00000{bottom:724.635015px;}
.ya0_c00000{bottom:726.435015px;}
.y208_c00000{bottom:726.795015px;}
.y42_c00000{bottom:728.955015px;}
.y10d_c00000{bottom:729.315015px;}
.y2a2_c00000{bottom:729.675015px;}
.y32e_c00000{bottom:731.835015px;}
.y1d2_c00000{bottom:733.995015px;}
.y330_c00000{bottom:734.715015px;}
.y19d_c00000{bottom:736.875015px;}
.y431_c00000{bottom:737.235015px;}
.ye1_c00000{bottom:739.395015px;}
.y3d1_c00000{bottom:740.835015px;}
.y247_c00000{bottom:742.275015px;}
.y89_c00000{bottom:742.635015px;}
.ybc_c00000{bottom:744.435015px;}
.y3da_c00000{bottom:744.795015px;}
.y16e_c00000{bottom:747.315015px;}
.y21e_c00000{bottom:747.675015px;}
.y41_c00000{bottom:749.475015px;}
.y150_c00000{bottom:749.835015px;}
.y122_c00000{bottom:752.715015px;}
.y301_c00000{bottom:753.075015px;}
.y234_c00000{bottom:754.875015px;}
.y36c_c00000{bottom:755.235015px;}
.y9f_c00000{bottom:757.395015px;}
.y207_c00000{bottom:757.755015px;}
.y430_c00000{bottom:758.115015px;}
.y10c_c00000{bottom:760.275015px;}
.y6e_c00000{bottom:760.635015px;}
.y3d0_c00000{bottom:761.715015px;}
.y246_c00000{bottom:762.795015px;}
.y284_c00000{bottom:763.155015px;}
.y31b_c00000{bottom:763.515015px;}
.y1d1_c00000{bottom:765.315015px;}
.y38d_c00000{bottom:765.675015px;}
.y3e1_c00000{bottom:766.035015px;}
.y1e_c00000{bottom:766.500000px;}
.y16d_c00000{bottom:767.835015px;}
.y21d_c00000{bottom:768.555015px;}
.y40_c00000{bottom:770.355015px;}
.ye0_c00000{bottom:770.715015px;}
.y34d_c00000{bottom:771.075015px;}
.y256_c00000{bottom:773.235015px;}
.y3c6_c00000{bottom:773.595015px;}
.ybb_c00000{bottom:775.395015px;}
.y416_c00000{bottom:776.115015px;}
.y18a_c00000{bottom:778.275015px;}
.y2ce_c00000{bottom:778.635015px;}
.y14f_c00000{bottom:780.795015px;}
.y3cf_c00000{bottom:782.235015px;}
.y121_c00000{bottom:783.675015px;}
.y43a_c00000{bottom:784.035015px;}
.y233_c00000{bottom:785.835015px;}
.y3e0_c00000{bottom:786.915015px;}
.y9e_c00000{bottom:788.715015px;}
.y21c_c00000{bottom:789.435015px;}
.y3f_c00000{bottom:790.875015px;}
.y10b_c00000{bottom:791.235015px;}
.y80_c00000{bottom:791.595015px;}
.y28f_c00000{bottom:794.115015px;}
.y1d0_c00000{bottom:796.275015px;}
.y2e3_c00000{bottom:796.635015px;}
.y19c_c00000{bottom:798.795015px;}
.y42f_c00000{bottom:799.515015px;}
.ydf_c00000{bottom:801.675015px;}
.y300_c00000{bottom:802.035015px;}
.y3ce_c00000{bottom:803.115015px;}
.y255_c00000{bottom:804.195015px;}
.y3c5_c00000{bottom:804.915015px;}
.yba_c00000{bottom:806.715015px;}
.y189_c00000{bottom:809.235015px;}
.y6d_c00000{bottom:809.595015px;}
.y3e_c00000{bottom:811.755015px;}
.y138_c00000{bottom:812.115015px;}
.y28e_c00000{bottom:814.635015px;}
.y439_c00000{bottom:814.995015px;}
.y232_c00000{bottom:816.795015px;}
.y9d_c00000{bottom:819.675015px;}
.y34c_c00000{bottom:820.035015px;}
.y120_c00000{bottom:822.195015px;}
.y3cd_c00000{bottom:823.635015px;}
.y415_c00000{bottom:825.075015px;}
.y1cf_c00000{bottom:827.235015px;}
.y2cd_c00000{bottom:827.595015px;}
.y10a_c00000{bottom:830.115015px;}
.y3d_c00000{bottom:832.275015px;}
.yde_c00000{bottom:832.635015px;}
.y28d_c00000{bottom:835.515015px;}
.y3c4_c00000{bottom:835.875015px;}
.yb9_c00000{bottom:837.675015px;}
.y17a_c00000{bottom:840.195015px;}
.y7f_c00000{bottom:840.915015px;}
.y11f_c00000{bottom:843.075015px;}
.y2c1_c00000{bottom:845.595015px;}
.y231_c00000{bottom:848.115015px;}
.y9c_c00000{bottom:850.635015px;}
.y206_c00000{bottom:850.995015px;}
.y3c_c00000{bottom:853.155015px;}
.y137_c00000{bottom:853.515015px;}
.y28c_c00000{bottom:856.035015px;}
.y1ce_c00000{bottom:858.195015px;}
.y6c_c00000{bottom:858.915015px;}
.y179_c00000{bottom:861.075015px;}
.ydd_c00000{bottom:863.595015px;}
.y3c3_c00000{bottom:866.835015px;}
.yb8_c00000{bottom:868.635015px;}
.y34b_c00000{bottom:868.995015px;}
.y21a_c00000{bottom:869.715015px;}
.y109_c00000{bottom:871.515015px;}
.y136_c00000{bottom:874.035015px;}
.y3b_c00000{bottom:874.395015px;}
.y28b_c00000{bottom:876.915015px;}
.y1f8_c00000{bottom:879.075015px;}
.y31a_c00000{bottom:879.435015px;}
.y9b_c00000{bottom:881.595015px;}
.y205_c00000{bottom:881.955015px;}
.y254_c00000{bottom:884.475015px;}
.y3cc_c00000{bottom:887.715015px;}
.y1cd_c00000{bottom:889.515015px;}
.y7e_c00000{bottom:889.875015px;}
.y108_c00000{bottom:892.035015px;}
.ydc_c00000{bottom:894.915015px;}
.y28a_c00000{bottom:897.435015px;}
.y3c2_c00000{bottom:897.795015px;}
.yb7_c00000{bottom:899.595015px;}
.y2ff_c00000{bottom:900.315015px;}
.y3a_c00000{bottom:902.475015px;}
.y253_c00000{bottom:904.995015px;}
.y6b_c00000{bottom:907.875015px;}
.y219_c00000{bottom:908.235015px;}
.y25c_c00000{bottom:910.035015px;}
.y283_c00000{bottom:910.395015px;}
.y9a_c00000{bottom:912.915015px;}
.y414_c00000{bottom:915.435015px;}
.y289_c00000{bottom:918.315015px;}
.y1cc_c00000{bottom:920.475015px;}
.y14e_c00000{bottom:922.995015px;}
.y245_c00000{bottom:925.875015px;}
.y3c1_c00000{bottom:929.115015px;}
.y5_c00000{bottom:930.000000px;}
.yb6_c00000{bottom:930.915015px;}
.y162_c00000{bottom:933.435015px;}
.y413_c00000{bottom:936.315015px;}
.y7d_c00000{bottom:938.835015px;}
.y1f7_c00000{bottom:940.995015px;}
.y99_c00000{bottom:943.875015px;}
.y39_c00000{bottom:945.315015px;}
.y282_c00000{bottom:947.835015px;}
.y2fe_c00000{bottom:949.275015px;}
.y1cb_c00000{bottom:951.435015px;}
.y19b_c00000{bottom:954.315015px;}
.y6a_c00000{bottom:956.835015px;}
.y3c0_c00000{bottom:960.075015px;}
.yb5_c00000{bottom:961.875015px;}
.y14d_c00000{bottom:964.395015px;}
.y34a_c00000{bottom:967.275015px;}
.y25b_c00000{bottom:972.315015px;}
.y98_c00000{bottom:974.835015px;}
.y38_c00000{bottom:982.395015px;}
.y14c_c00000{bottom:985.275015px;}
.y69_c00000{bottom:987.795015px;}
.y3bf_c00000{bottom:991.035015px;}
.y204_c00000{bottom:991.395015px;}
.yb4_c00000{bottom:992.835015px;}
.y161_c00000{bottom:995.715015px;}
.y37_c00000{bottom:1003.275015px;}
.y97_c00000{bottom:1005.795015px;}
.y1ca_c00000{bottom:1013.715015px;}
.y19a_c00000{bottom:1016.235015px;}
.y3be_c00000{bottom:1021.995015px;}
.y36_c00000{bottom:1023.795015px;}
.y160_c00000{bottom:1026.675015px;}
.y68_c00000{bottom:1037.115015px;}
.y203_c00000{bottom:1038.195015px;}
.y2e_c00000{bottom:1039.500000px;}
.y35_c00000{bottom:1044.675015px;}
.y199_c00000{bottom:1047.195015px;}
.y27_c00000{bottom:1048.500000px;}
.yb3_c00000{bottom:1055.115015px;}
.y34_c00000{bottom:1065.195015px;}
.y33_c00000{bottom:1086.075015px;}
.y3_c00000{bottom:1087.500000px;}
.y1_c00000{bottom:1114.500000px;}
.y14_c00000{bottom:1246.500000px;}
.y2c_c00000{bottom:1471.500000px;}
.y2b_c00000{bottom:1608.000000px;}
.hf_c00000{height:0.000000px;}
.h1f_c00000{height:5.399997px;}
.h1e_c00000{height:17.640000px;}
.h17_c00000{height:22.500000px;}
.h9_c00000{height:25.500000px;}
.h14_c00000{height:27.000000px;}
.hb_c00000{height:28.500000px;}
.h16_c00000{height:30.000000px;}
.h22_c00000{height:34.114922px;}
.h12_c00000{height:34.500000px;}
.h25_c00000{height:35.815721px;}
.h2d_c00000{height:35.815781px;}
.h2e_c00000{height:40.474688px;}
.h11_c00000{height:43.989258px;}
.h2c_c00000{height:46.750078px;}
.h32_c00000{height:47.988281px;}
.h5_c00000{height:48.000000px;}
.h29_c00000{height:49.359375px;}
.h23_c00000{height:51.804141px;}
.h24_c00000{height:51.948281px;}
.ha_c00000{height:51.987305px;}
.h2f_c00000{height:52.438359px;}
.hd_c00000{height:55.986328px;}
.h28_c00000{height:56.858203px;}
.hc_c00000{height:58.500000px;}
.h30_c00000{height:61.474922px;}
.h2b_c00000{height:61.474982px;}
.h1_c00000{height:61.500000px;}
.h1a_c00000{height:63.175781px;}
.h21_c00000{height:63.351563px;}
.h20_c00000{height:63.949219px;}
.h27_c00000{height:66.881953px;}
.h26_c00000{height:66.983906px;}
.h10_c00000{height:71.982422px;}
.h1d_c00000{height:74.181094px;}
.h2a_c00000{height:74.816016px;}
.h31_c00000{height:74.932031px;}
.h15_c00000{height:76.500000px;}
.h3_c00000{height:93.000000px;}
.h6_c00000{height:95.976562px;}
.h2_c00000{height:119.970703px;}
.he_c00000{height:126.000000px;}
.h1b_c00000{height:127.898438px;}
.h1c_c00000{height:133.014375px;}
.h8_c00000{height:143.964844px;}
.h4_c00000{height:199.951172px;}
.h13_c00000{height:217.500000px;}
.h7_c00000{height:394.500000px;}
.h19_c00000{height:1201.275000px;}
.h18_c00000{height:1262.835000px;}
.h0_c00000{height:1263.000000px;}
.w7_c00000{width:0.000000px;}
.w14_c00000{width:7.560014px;}
.w16_c00000{width:14.759994px;}
.w17_c00000{width:22.680000px;}
.w15_c00000{width:39.240000px;}
.w18_c00000{width:66.240000px;}
.we_c00000{width:69.000000px;}
.wa_c00000{width:102.000000px;}
.w1_c00000{width:120.000000px;}
.w5_c00000{width:124.500000px;}
.w2_c00000{width:135.000000px;}
.wd_c00000{width:172.500000px;}
.w10_c00000{width:304.500000px;}
.w6_c00000{width:421.500000px;}
.wf_c00000{width:603.000000px;}
.w4_c00000{width:648.000000px;}
.w9_c00000{width:651.000000px;}
.w8_c00000{width:673.500000px;}
.wc_c00000{width:675.000000px;}
.wb_c00000{width:687.000000px;}
.w3_c00000{width:697.500000px;}
.w13_c00000{width:864.044850px;}
.w0_c00000{width:892.500000px;}
.w11_c00000{width:892.935000px;}
.w12_c00000{width:893.250000px;}
.x0_c00000{left:0.000000px;}
.xe_c00000{left:1.500000px;}
.x2b_c00000{left:3.240150px;}
.x4_c00000{left:4.950000px;}
.x2_c00000{left:9.960000px;}
.x18_c00000{left:11.760000px;}
.x22_c00000{left:14.445000px;}
.xf_c00000{left:16.500000px;}
.x8_c00000{left:53.946000px;}
.x17_c00000{left:67.704000px;}
.xd_c00000{left:69.000000px;}
.xc_c00000{left:70.500000px;}
.x2c_c00000{left:91.740225px;}
.x1b_c00000{left:94.500000px;}
.x1d_c00000{left:103.500000px;}
.xa_c00000{left:104.922000px;}
.x14_c00000{left:109.500000px;}
.x5_c00000{left:112.500000px;}
.x16_c00000{left:121.500000px;}
.x2d_c00000{left:134.340090px;}
.x3c_c00000{left:140.040150px;}
.x3a_c00000{left:145.407000px;}
.x3d_c00000{left:146.790150px;}
.x19_c00000{left:155.634000px;}
.x7_c00000{left:162.000000px;}
.x2f_c00000{left:166.215000px;}
.x5e_c00000{left:167.671500px;}
.x31_c00000{left:170.183400px;}
.x41_c00000{left:176.164350px;}
.x15_c00000{left:186.009000px;}
.x34_c00000{left:187.515000px;}
.x3e_c00000{left:191.790150px;}
.x5f_c00000{left:202.164150px;}
.x3b_c00000{left:203.928900px;}
.x25_c00000{left:205.672800px;}
.x3f_c00000{left:208.740150px;}
.x5c_c00000{left:214.925850px;}
.x5d_c00000{left:218.911800px;}
.x24_c00000{left:224.170200px;}
.x5b_c00000{left:229.647600px;}
.x33_c00000{left:240.615300px;}
.x4a_c00000{left:242.340150px;}
.x1e_c00000{left:247.704000px;}
.x13_c00000{left:256.752000px;}
.x9_c00000{left:266.976000px;}
.x35_c00000{left:269.497950px;}
.x21_c00000{left:273.000000px;}
.x51_c00000{left:277.002300px;}
.x26_c00000{left:279.967500px;}
.x6_c00000{left:295.524000px;}
.x1c_c00000{left:303.852000px;}
.x4e_c00000{left:315.720000px;}
.x44_c00000{left:327.942600px;}
.x32_c00000{left:335.971350px;}
.x46_c00000{left:346.965150px;}
.x11_c00000{left:349.551000px;}
.x27_c00000{left:356.463150px;}
.x42_c00000{left:364.452450px;}
.x1f_c00000{left:366.000000px;}
.x10_c00000{left:367.500000px;}
.x5a_c00000{left:369.156300px;}
.x1a_c00000{left:384.000000px;}
.x12_c00000{left:385.500000px;}
.x20_c00000{left:400.500000px;}
.x43_c00000{left:405.045000px;}
.x45_c00000{left:410.715150px;}
.x28_c00000{left:413.715150px;}
.x49_c00000{left:415.621950px;}
.x40_c00000{left:421.207800px;}
.x39_c00000{left:424.710150px;}
.x30_c00000{left:428.212650px;}
.x23_c00000{left:431.715150px;}
.x4f_c00000{left:432.990600px;}
.x29_c00000{left:435.285150px;}
.x60_c00000{left:436.370700px;}
.x2e_c00000{left:438.885000px;}
.x4d_c00000{left:440.196150px;}
.x2a_c00000{left:442.485000px;}
.x50_c00000{left:453.961350px;}
.x52_c00000{left:458.340000px;}
.xb_c00000{left:507.060000px;}
.x37_c00000{left:522.025350px;}
.x1_c00000{left:585.000000px;}
.x55_c00000{left:592.309500px;}
.x58_c00000{left:611.144850px;}
.x36_c00000{left:612.390300px;}
.x56_c00000{left:617.339700px;}
.x4b_c00000{left:621.002250px;}
.x53_c00000{left:622.409550px;}
.x59_c00000{left:649.400700px;}
.x38_c00000{left:652.324500px;}
.x54_c00000{left:689.670300px;}
.x47_c00000{left:696.704850px;}
.x3_c00000{left:721.500000px;}
.x4c_c00000{left:732.669000px;}
.x57_c00000{left:742.364850px;}
.x48_c00000{left:750.390000px;}
@media print{
.v6_c00000{vertical-align:-29.440000pt;}
.v4_c00000{vertical-align:-26.880000pt;}
.v2_c00000{vertical-align:-24.320053pt;}
.v0_c00000{vertical-align:0.000000pt;}
.v7_c00000{vertical-align:16.640000pt;}
.v1_c00000{vertical-align:24.320000pt;}
.v3_c00000{vertical-align:26.880000pt;}
.v5_c00000{vertical-align:29.440000pt;}
.ls34_c00000{letter-spacing:-0.593920pt;}
.ls48_c00000{letter-spacing:-0.337920pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ls2_c00000{letter-spacing:0.000747pt;}
.ls7_c00000{letter-spacing:0.004267pt;}
.ls5c_c00000{letter-spacing:0.010667pt;}
.ls49_c00000{letter-spacing:0.021867pt;}
.ls28_c00000{letter-spacing:0.030933pt;}
.ls6_c00000{letter-spacing:0.053867pt;}
.ls15_c00000{letter-spacing:0.057067pt;}
.ls29_c00000{letter-spacing:0.066133pt;}
.ls5e_c00000{letter-spacing:0.069120pt;}
.ls66_c00000{letter-spacing:0.126720pt;}
.ls61_c00000{letter-spacing:0.178133pt;}
.ls52_c00000{letter-spacing:0.183040pt;}
.lsd_c00000{letter-spacing:0.209920pt;}
.ls69_c00000{letter-spacing:0.211200pt;}
.lsc_c00000{letter-spacing:0.212800pt;}
.ls13_c00000{letter-spacing:0.213280pt;}
.ls18_c00000{letter-spacing:0.213333pt;}
.ls65_c00000{letter-spacing:0.213867pt;}
.ls36_c00000{letter-spacing:0.228693pt;}
.ls57_c00000{letter-spacing:0.262400pt;}
.ls2c_c00000{letter-spacing:0.266667pt;}
.ls38_c00000{letter-spacing:0.284693pt;}
.ls46_c00000{letter-spacing:0.290667pt;}
.ls44_c00000{letter-spacing:0.314880pt;}
.ls5d_c00000{letter-spacing:0.337920pt;}
.ls10_c00000{letter-spacing:0.367360pt;}
.ls4_c00000{letter-spacing:0.419840pt;}
.ls47_c00000{letter-spacing:0.426133pt;}
.ls1_c00000{letter-spacing:0.426667pt;}
.ls1f_c00000{letter-spacing:0.443413pt;}
.ls3a_c00000{letter-spacing:0.472320pt;}
.ls5_c00000{letter-spacing:0.473067pt;}
.lsf_c00000{letter-spacing:0.481600pt;}
.ls20_c00000{letter-spacing:0.482453pt;}
.ls39_c00000{letter-spacing:0.524800pt;}
.ls8_c00000{letter-spacing:0.533333pt;}
.ls56_c00000{letter-spacing:0.582933pt;}
.lsa_c00000{letter-spacing:0.583467pt;}
.ls14_c00000{letter-spacing:0.601067pt;}
.ls67_c00000{letter-spacing:0.607467pt;}
.ls4d_c00000{letter-spacing:0.608000pt;}
.ls23_c00000{letter-spacing:0.629760pt;}
.ls2b_c00000{letter-spacing:0.631040pt;}
.ls35_c00000{letter-spacing:0.633600pt;}
.lse_c00000{letter-spacing:0.634133pt;}
.ls59_c00000{letter-spacing:0.639467pt;}
.ls11_c00000{letter-spacing:0.656640pt;}
.ls24_c00000{letter-spacing:0.669333pt;}
.ls37_c00000{letter-spacing:0.741867pt;}
.ls63_c00000{letter-spacing:0.787200pt;}
.ls40_c00000{letter-spacing:0.839680pt;}
.ls60_c00000{letter-spacing:0.938667pt;}
.ls22_c00000{letter-spacing:1.131733pt;}
.ls4c_c00000{letter-spacing:1.472000pt;}
.ls21_c00000{letter-spacing:1.497067pt;}
.ls42_c00000{letter-spacing:1.524800pt;}
.ls31_c00000{letter-spacing:1.640533pt;}
.ls19_c00000{letter-spacing:1.947733pt;}
.ls4b_c00000{letter-spacing:2.153067pt;}
.ls3f_c00000{letter-spacing:2.176000pt;}
.ls58_c00000{letter-spacing:2.361600pt;}
.ls1a_c00000{letter-spacing:2.624000pt;}
.ls3d_c00000{letter-spacing:2.811040pt;}
.ls64_c00000{letter-spacing:3.776000pt;}
.ls68_c00000{letter-spacing:3.928533pt;}
.ls45_c00000{letter-spacing:4.044267pt;}
.ls41_c00000{letter-spacing:4.288000pt;}
.ls6a_c00000{letter-spacing:4.552000pt;}
.ls27_c00000{letter-spacing:4.867200pt;}
.ls33_c00000{letter-spacing:5.002667pt;}
.ls26_c00000{letter-spacing:5.132800pt;}
.ls51_c00000{letter-spacing:5.184000pt;}
.ls54_c00000{letter-spacing:5.389387pt;}
.ls5b_c00000{letter-spacing:5.433600pt;}
.ls2f_c00000{letter-spacing:5.473600pt;}
.ls32_c00000{letter-spacing:5.888000pt;}
.ls1e_c00000{letter-spacing:6.602667pt;}
.ls4f_c00000{letter-spacing:6.737067pt;}
.ls4e_c00000{letter-spacing:6.962133pt;}
.ls55_c00000{letter-spacing:7.095093pt;}
.ls3e_c00000{letter-spacing:7.104000pt;}
.ls1d_c00000{letter-spacing:7.232000pt;}
.ls2a_c00000{letter-spacing:7.390400pt;}
.ls17_c00000{letter-spacing:7.616000pt;}
.ls16_c00000{letter-spacing:7.636267pt;}
.ls5f_c00000{letter-spacing:7.744000pt;}
.ls9_c00000{letter-spacing:8.545440pt;}
.ls1c_c00000{letter-spacing:9.024000pt;}
.ls5a_c00000{letter-spacing:9.373867pt;}
.ls4a_c00000{letter-spacing:10.402187pt;}
.ls43_c00000{letter-spacing:10.688000pt;}
.lsb_c00000{letter-spacing:10.816000pt;}
.ls30_c00000{letter-spacing:11.060267pt;}
.ls1b_c00000{letter-spacing:11.264533pt;}
.ls2e_c00000{letter-spacing:13.813333pt;}
.ls12_c00000{letter-spacing:15.179733pt;}
.ls2d_c00000{letter-spacing:16.344000pt;}
.ls25_c00000{letter-spacing:18.768000pt;}
.ls3c_c00000{letter-spacing:19.116800pt;}
.ls62_c00000{letter-spacing:19.393067pt;}
.ls50_c00000{letter-spacing:19.776000pt;}
.ls53_c00000{letter-spacing:25.571733pt;}
.ls3b_c00000{letter-spacing:30.208000pt;}
.ls3_c00000{letter-spacing:56.895467pt;}
.ws1_c00000{word-spacing:-16.000000pt;}
.ws15_c00000{word-spacing:-13.907200pt;}
.ws8_c00000{word-spacing:-13.749760pt;}
.wsc_c00000{word-spacing:-13.644800pt;}
.wsd_c00000{word-spacing:-13.592320pt;}
.ws2_c00000{word-spacing:-13.539840pt;}
.ws6_c00000{word-spacing:-13.487360pt;}
.wse_c00000{word-spacing:-13.434880pt;}
.ws11_c00000{word-spacing:-13.382400pt;}
.ws12_c00000{word-spacing:-13.329920pt;}
.ws3_c00000{word-spacing:-13.120000pt;}
.wsb_c00000{word-spacing:-11.193600pt;}
.ws13_c00000{word-spacing:-10.897920pt;}
.ws17_c00000{word-spacing:-10.771200pt;}
.ws16_c00000{word-spacing:-10.686720pt;}
.ws9_c00000{word-spacing:-9.911040pt;}
.ws5_c00000{word-spacing:-9.296640pt;}
.ws14_c00000{word-spacing:-8.709120pt;}
.wsa_c00000{word-spacing:-8.686080pt;}
.ws4_c00000{word-spacing:-8.640000pt;}
.wsf_c00000{word-spacing:-0.064000pt;}
.ws7_c00000{word-spacing:-0.052480pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.ws10_c00000{word-spacing:0.295680pt;}
._46_c00000{margin-left:-19.387733pt;}
._13_c00000{margin-left:-15.429867pt;}
._11_c00000{margin-left:-13.701867pt;}
._14_c00000{margin-left:-11.973867pt;}
._b_c00000{margin-left:-10.736800pt;}
._a_c00000{margin-left:-9.008800pt;}
._6_c00000{margin-left:-7.408800pt;}
._e_c00000{margin-left:-6.469867pt;}
._5_c00000{margin-left:-5.488800pt;}
._3_c00000{margin-left:-3.760800pt;}
._38_c00000{margin-left:-2.672853pt;}
._7_c00000{margin-left:-1.776800pt;}
._0_c00000{width:0.890880pt;}
._12_c00000{width:2.170133pt;}
._4_c00000{width:3.599200pt;}
._1_c00000{width:5.007200pt;}
._1f_c00000{width:5.921600pt;}
._18_c00000{width:6.848000pt;}
._26_c00000{width:7.750400pt;}
._8_c00000{width:8.655200pt;}
._1b_c00000{width:10.304000pt;}
._16_c00000{width:11.264000pt;}
._d_c00000{width:12.736000pt;}
._19_c00000{width:13.693867pt;}
._10_c00000{width:14.778133pt;}
._31_c00000{width:16.262293pt;}
._1d_c00000{width:17.152000pt;}
._1e_c00000{width:18.073600pt;}
._c_c00000{width:18.980800pt;}
._17_c00000{width:20.032000pt;}
._23_c00000{width:21.056000pt;}
._25_c00000{width:22.656000pt;}
._f_c00000{width:23.738133pt;}
._1a_c00000{width:24.896000pt;}
._21_c00000{width:25.792000pt;}
._15_c00000{width:26.890133pt;}
._22_c00000{width:28.112747pt;}
._2_c00000{width:29.359253pt;}
._1c_c00000{width:30.416747pt;}
._9_c00000{width:31.360000pt;}
._27_c00000{width:32.389333pt;}
._24_c00000{width:33.600000pt;}
._2a_c00000{width:35.008000pt;}
._2b_c00000{width:36.032000pt;}
._33_c00000{width:36.992000pt;}
._30_c00000{width:38.400000pt;}
._2f_c00000{width:39.360000pt;}
._32_c00000{width:40.512000pt;}
._28_c00000{width:41.408000pt;}
._35_c00000{width:42.304000pt;}
._2c_c00000{width:43.264000pt;}
._34_c00000{width:44.260533pt;}
._40_c00000{width:45.184000pt;}
._39_c00000{width:46.592000pt;}
._43_c00000{width:47.949867pt;}
._42_c00000{width:49.664000pt;}
._41_c00000{width:50.880000pt;}
._3a_c00000{width:51.968000pt;}
._44_c00000{width:53.504000pt;}
._20_c00000{width:55.104000pt;}
._2d_c00000{width:59.200000pt;}
._4c_c00000{width:61.056000pt;}
._56_c00000{width:63.498560pt;}
._3e_c00000{width:73.732800pt;}
._4f_c00000{width:74.965227pt;}
._4d_c00000{width:81.787627pt;}
._4b_c00000{width:90.665067pt;}
._29_c00000{width:97.066347pt;}
._49_c00000{width:103.400533pt;}
._3d_c00000{width:104.324267pt;}
._3f_c00000{width:113.220267pt;}
._4a_c00000{width:119.400533pt;}
._36_c00000{width:126.055040pt;}
._54_c00000{width:128.766933pt;}
._3c_c00000{width:145.284267pt;}
._3b_c00000{width:172.079467pt;}
._2e_c00000{width:173.066133pt;}
._37_c00000{width:175.679467pt;}
._48_c00000{width:237.285867pt;}
._50_c00000{width:264.627947pt;}
._55_c00000{width:282.707520pt;}
._52_c00000{width:598.453227pt;}
._4e_c00000{width:1056.384000pt;}
._47_c00000{width:1092.053333pt;}
._53_c00000{width:1273.600213pt;}
._51_c00000{width:1481.600213pt;}
._45_c00000{width:1644.533867pt;}
.fsc_c00000{font-size:34.560000pt;}
.fse_c00000{font-size:37.120000pt;}
.fsf_c00000{font-size:42.240000pt;}
.fs10_c00000{font-size:47.360000pt;}
.fsb_c00000{font-size:52.480000pt;}
.fsd_c00000{font-size:57.600000pt;}
.fs7_c00000{font-size:58.666667pt;}
.fs8_c00000{font-size:64.000000pt;}
.fs4_c00000{font-size:69.333333pt;}
.fsa_c00000{font-size:74.240000pt;}
.fs5_c00000{font-size:74.666667pt;}
.fs6_c00000{font-size:96.000000pt;}
.fs2_c00000{font-size:128.000000pt;}
.fs9_c00000{font-size:133.120000pt;}
.fs0_c00000{font-size:160.000000pt;}
.fs3_c00000{font-size:192.000000pt;}
.fs1_c00000{font-size:266.666667pt;}
.y18_c00000{bottom:-2157.333333pt;}
.y19_c00000{bottom:-1868.000000pt;}
.y15_c00000{bottom:-1664.000000pt;}
.y17_c00000{bottom:-1550.666667pt;}
.y16_c00000{bottom:-1260.000000pt;}
.y67_c00000{bottom:-9.920000pt;}
.y62_c00000{bottom:-0.360008pt;}
.y0_c00000{bottom:0.000000pt;}
.y63_c00000{bottom:2.840000pt;}
.y65_c00000{bottom:3.520000pt;}
.yd_c00000{bottom:5.333333pt;}
.yf_c00000{bottom:6.666667pt;}
.y1d_c00000{bottom:8.000000pt;}
.y6_c00000{bottom:14.666667pt;}
.y2_c00000{bottom:17.333333pt;}
.y4_c00000{bottom:21.333333pt;}
.y24_c00000{bottom:25.333333pt;}
.y30_c00000{bottom:26.666667pt;}
.y11_c00000{bottom:34.666667pt;}
.y29_c00000{bottom:37.333333pt;}
.y32_c00000{bottom:47.999987pt;}
.yf8_c00000{bottom:49.560000pt;}
.y64_c00000{bottom:49.879987pt;}
.yc6_c00000{bottom:50.200000pt;}
.y26_c00000{bottom:50.666667pt;}
.ydb_c00000{bottom:53.399987pt;}
.y66_c00000{bottom:53.719987pt;}
.y442_c00000{bottom:54.040000pt;}
.y230_c00000{bottom:55.000000pt;}
.yda_c00000{bottom:55.640013pt;}
.yb2_c00000{bottom:61.720000pt;}
.yf7_c00000{bottom:64.920000pt;}
.yd9_c00000{bottom:65.240000pt;}
.y88_c00000{bottom:65.880013pt;}
.yd3_c00000{bottom:66.200000pt;}
.y11e_c00000{bottom:71.000000pt;}
.y22f_c00000{bottom:73.560000pt;}
.y61_c00000{bottom:77.720000pt;}
.yf6_c00000{bottom:80.280000pt;}
.y11d_c00000{bottom:80.600000pt;}
.y7c_c00000{bottom:81.880000pt;}
.y141_c00000{bottom:85.080000pt;}
.y2e2_c00000{bottom:86.040013pt;}
.yf9_c00000{bottom:86.360013pt;}
.y1ac_c00000{bottom:87.000013pt;}
.yb1_c00000{bottom:89.560013pt;}
.y21_c00000{bottom:90.664533pt;}
.y21b_c00000{bottom:91.800013pt;}
.y326_c00000{bottom:93.080013pt;}
.y96_c00000{bottom:93.400013pt;}
.yd2_c00000{bottom:93.720013pt;}
.y13_c00000{bottom:94.666667pt;}
.y438_c00000{bottom:94.680013pt;}
.y424_c00000{bottom:95.000013pt;}
.yf5_c00000{bottom:95.640013pt;}
.y60_c00000{bottom:95.960013pt;}
.y40c_c00000{bottom:97.880013pt;}
.y457_c00000{bottom:98.200013pt;}
.y1ea_c00000{bottom:98.520013pt;}
.yd8_c00000{bottom:101.080013pt;}
.y145_c00000{bottom:101.720013pt;}
.y2d6_c00000{bottom:102.040013pt;}
.y11c_c00000{bottom:103.320013pt;}
.y38c_c00000{bottom:103.640013pt;}
.yc5_c00000{bottom:105.560013pt;}
.y40d_c00000{bottom:106.520013pt;}
.y178_c00000{bottom:107.800013pt;}
.y12_c00000{bottom:108.000000pt;}
.y87_c00000{bottom:109.400013pt;}
.yf4_c00000{bottom:110.680013pt;}
.y188_c00000{bottom:111.320013pt;}
.y202_c00000{bottom:112.280013pt;}
.y140_c00000{bottom:112.600013pt;}
.y437_c00000{bottom:112.920013pt;}
.y2e1_c00000{bottom:113.880013pt;}
.y5f_c00000{bottom:114.520013pt;}
.y2a1_c00000{bottom:116.440013pt;}
.y144_c00000{bottom:116.760013pt;}
.yb0_c00000{bottom:117.080013pt;}
.y403_c00000{bottom:117.720013pt;}
.y341_c00000{bottom:118.040013pt;}
.y1e5_c00000{bottom:119.320013pt;}
.y325_c00000{bottom:120.600013pt;}
.yd1_c00000{bottom:121.560013pt;}
.y252_c00000{bottom:121.880013pt;}
.y2b1_c00000{bottom:122.520013pt;}
.y259_c00000{bottom:123.800013pt;}
.y7b_c00000{bottom:125.400013pt;}
.yf3_c00000{bottom:126.040013pt;}
.y1e9_c00000{bottom:126.360013pt;}
.y135_c00000{bottom:126.680013pt;}
.y2c0_c00000{bottom:127.320013pt;}
.y20_c00000{bottom:127.998933pt;}
.yd7_c00000{bottom:128.600013pt;}
.y44a_c00000{bottom:129.240013pt;}
.y2d5_c00000{bottom:129.880013pt;}
.y244_c00000{bottom:130.520013pt;}
.y11b_c00000{bottom:130.840013pt;}
.y38b_c00000{bottom:131.480013pt;}
.y198_c00000{bottom:132.120013pt;}
.y5e_c00000{bottom:132.760013pt;}
.yc4_c00000{bottom:133.080013pt;}
.y409_c00000{bottom:134.040013pt;}
.y177_c00000{bottom:135.320013pt;}
.y402_c00000{bottom:136.280013pt;}
.y95_c00000{bottom:136.920013pt;}
.y454_c00000{bottom:137.880013pt;}
.y456_c00000{bottom:138.200013pt;}
.yb_c00000{bottom:138.661867pt;}
.y3fc_c00000{bottom:138.840013pt;}
.y201_c00000{bottom:139.800013pt;}
.y13f_c00000{bottom:140.120013pt;}
.y14b_c00000{bottom:141.400013pt;}
.y197_c00000{bottom:142.040013pt;}
.y1ab_c00000{bottom:142.360013pt;}
.y25e_c00000{bottom:142.680013pt;}
.y455_c00000{bottom:144.280013pt;}
.yaf_c00000{bottom:144.600013pt;}
.y33e_c00000{bottom:144.920013pt;}
.y340_c00000{bottom:145.880013pt;}
.y1e4_c00000{bottom:146.840013pt;}
.yf2_c00000{bottom:147.480013pt;}
.y324_c00000{bottom:148.120013pt;}
.yd0_c00000{bottom:149.080013pt;}
.y214_c00000{bottom:149.400013pt;}
.y436_c00000{bottom:149.720013pt;}
.y32d_c00000{bottom:150.040013pt;}
.y5d_c00000{bottom:151.320013pt;}
.y262_c00000{bottom:151.640013pt;}
.y40b_c00000{bottom:152.280013pt;}
.y86_c00000{bottom:152.920013pt;}
.y1e8_c00000{bottom:153.880013pt;}
.y134_c00000{bottom:154.200013pt;}
.y401_c00000{bottom:154.520013pt;}
.y2bf_c00000{bottom:154.840013pt;}
.y175_c00000{bottom:156.120013pt;}
.y3aa_c00000{bottom:156.440013pt;}
.y14a_c00000{bottom:156.760013pt;}
.yf1_c00000{bottom:157.400013pt;}
.y243_c00000{bottom:158.360013pt;}
.y11a_c00000{bottom:158.680013pt;}
.y38a_c00000{bottom:159.000013pt;}
.y3cb_c00000{bottom:159.640013pt;}
.y2a0_c00000{bottom:159.960013pt;}
.yc3_c00000{bottom:160.600013pt;}
.y213_c00000{bottom:160.920013pt;}
.y2e0_c00000{bottom:161.880013pt;}
.y443_c00000{bottom:162.200013pt;}
.y16b_c00000{bottom:162.840013pt;}
.y40a_c00000{bottom:163.800013pt;}
.y1f_c00000{bottom:165.333333pt;}
.y196_c00000{bottom:165.400013pt;}
.y2b0_c00000{bottom:166.040013pt;}
.y200_c00000{bottom:167.320013pt;}
.y13e_c00000{bottom:167.640013pt;}
.y3b8_c00000{bottom:168.280013pt;}
.y7a_c00000{bottom:168.920013pt;}
.y5c_c00000{bottom:169.560013pt;}
.y1aa_c00000{bottom:169.880013pt;}
.y338_c00000{bottom:170.520013pt;}
.y35a_c00000{bottom:170.840013pt;}
.yd6_c00000{bottom:172.120013pt;}
.y1b9_c00000{bottom:172.760013pt;}
.y400_c00000{bottom:173.080013pt;}
.y391_c00000{bottom:173.400013pt;}
.y27c_c00000{bottom:174.360013pt;}
.y187_c00000{bottom:174.680013pt;}
.y3f7_c00000{bottom:175.000013pt;}
.y1b8_c00000{bottom:175.640013pt;}
.ycf_c00000{bottom:176.600013pt;}
.y24c_c00000{bottom:176.920013pt;}
.y37e_c00000{bottom:177.880013pt;}
.y15f_c00000{bottom:178.200013pt;}
.y258_c00000{bottom:178.840013pt;}
.y261_c00000{bottom:179.480013pt;}
.y94_c00000{bottom:180.440013pt;}
.y1e7_c00000{bottom:181.400013pt;}
.y36a_c00000{bottom:182.040013pt;}
.y2be_c00000{bottom:182.680013pt;}
.y107_c00000{bottom:183.640013pt;}
.y3b4_c00000{bottom:184.600013pt;}
.y2d4_c00000{bottom:184.920013pt;}
.y242_c00000{bottom:185.880013pt;}
.y119_c00000{bottom:186.200013pt;}
.y389_c00000{bottom:186.520013pt;}
.y425_c00000{bottom:186.840013pt;}
.y149_c00000{bottom:187.480013pt;}
.y5b_c00000{bottom:188.120013pt;}
.y133_c00000{bottom:188.440013pt;}
.y373_c00000{bottom:189.080013pt;}
.y33d_c00000{bottom:189.400013pt;}
.y16a_c00000{bottom:190.680013pt;}
.y2d8_c00000{bottom:191.000013pt;}
.y3d9_c00000{bottom:191.320013pt;}
.y1f3_c00000{bottom:192.600013pt;}
.y186_c00000{bottom:192.920013pt;}
.y1c5_c00000{bottom:193.560013pt;}
.y32c_c00000{bottom:193.880013pt;}
.ya_c00000{bottom:194.663467pt;}
.y1e2_c00000{bottom:194.840013pt;}
.y13d_c00000{bottom:195.480013pt;}
.y3ad_c00000{bottom:195.800013pt;}
.y85_c00000{bottom:196.440013pt;}
.y1a9_c00000{bottom:197.400013pt;}
.y337_c00000{bottom:198.040013pt;}
.y359_c00000{bottom:198.680013pt;}
.y319_c00000{bottom:199.320013pt;}
.yea_c00000{bottom:199.640013pt;}
.y3a9_c00000{bottom:200.280013pt;}
.y369_c00000{bottom:200.600013pt;}
.y3fb_c00000{bottom:200.920013pt;}
.y3eb_c00000{bottom:201.240013pt;}
.y195_c00000{bottom:202.200013pt;}
.y3f6_c00000{bottom:202.520013pt;}
.y148_c00000{bottom:202.840013pt;}
.y25a_c00000{bottom:203.160013pt;}
.y1b7_c00000{bottom:203.480013pt;}
.yce_c00000{bottom:204.120013pt;}
.y143_c00000{bottom:204.440013pt;}
.y426_c00000{bottom:205.080013pt;}
.y2df_c00000{bottom:205.400013pt;}
.y5a_c00000{bottom:206.360013pt;}
.y257_c00000{bottom:206.680013pt;}
.y132_c00000{bottom:207.000013pt;}
.y349_c00000{bottom:207.320013pt;}
.y1c4_c00000{bottom:208.920013pt;}
.y2af_c00000{bottom:209.880013pt;}
.y2bd_c00000{bottom:210.200013pt;}
.y27b_c00000{bottom:211.160013pt;}
.y106_c00000{bottom:211.480013pt;}
.y3b7_c00000{bottom:211.800013pt;}
.y42e_c00000{bottom:212.120013pt;}
.y79_c00000{bottom:212.440013pt;}
.y241_c00000{bottom:213.400013pt;}
.y118_c00000{bottom:213.720013pt;}
.y388_c00000{bottom:214.040013pt;}
.y41b_c00000{bottom:214.680013pt;}
.y29f_c00000{bottom:215.000013pt;}
.yae_c00000{bottom:215.640013pt;}
.y212_c00000{bottom:215.960013pt;}
.y1b_c00000{bottom:216.000000pt;}
.y367_c00000{bottom:216.600013pt;}
.y33c_c00000{bottom:216.920013pt;}
.y169_c00000{bottom:218.200013pt;}
.y1e3_c00000{bottom:218.520013pt;}
.y368_c00000{bottom:218.840013pt;}
.y1f2_c00000{bottom:220.120013pt;}
.y194_c00000{bottom:220.440013pt;}
.y2b7_c00000{bottom:221.400013pt;}
.y1e1_c00000{bottom:222.680013pt;}
.y13c_c00000{bottom:223.000013pt;}
.y375_c00000{bottom:223.320013pt;}
.y30e_c00000{bottom:223.640013pt;}
.y93_c00000{bottom:224.280013pt;}
.y59_c00000{bottom:224.920013pt;}
.y131_c00000{bottom:225.240013pt;}
.ye_c00000{bottom:225.333333pt;}
.y336_c00000{bottom:225.880013pt;}
.y358_c00000{bottom:226.200013pt;}
.ye9_c00000{bottom:227.480013pt;}
.y2b2_c00000{bottom:227.800013pt;}
.y385_c00000{bottom:228.120013pt;}
.y2eb_c00000{bottom:228.440013pt;}
.y27a_c00000{bottom:229.400013pt;}
.y185_c00000{bottom:229.720013pt;}
.y3f5_c00000{bottom:230.040013pt;}
.y3f9_c00000{bottom:230.680013pt;}
.y1b6_c00000{bottom:231.000013pt;}
.ycd_c00000{bottom:231.640013pt;}
.y1f5_c00000{bottom:232.280013pt;}
.y33f_c00000{bottom:232.920013pt;}
.y1bf_c00000{bottom:233.560013pt;}
.y147_c00000{bottom:233.880013pt;}
.y215_c00000{bottom:234.200013pt;}
.y2d7_c00000{bottom:234.520013pt;}
.y3ed_c00000{bottom:234.840013pt;}
.y174_c00000{bottom:236.440013pt;}
.y32b_c00000{bottom:237.400013pt;}
.y2bc_c00000{bottom:237.720013pt;}
.y105_c00000{bottom:239.000013pt;}
.y3ac_c00000{bottom:239.320013pt;}
.y2f2_c00000{bottom:239.640013pt;}
.y84_c00000{bottom:240.280013pt;}
.y240_c00000{bottom:240.920013pt;}
.y117_c00000{bottom:241.240013pt;}
.y387_c00000{bottom:241.880013pt;}
.y297_c00000{bottom:242.200013pt;}
.y29e_c00000{bottom:242.520013pt;}
.y318_c00000{bottom:242.840013pt;}
.y58_c00000{bottom:243.160013pt;}
.yad_c00000{bottom:243.480013pt;}
.y130_c00000{bottom:243.800013pt;}
.y348_c00000{bottom:244.120013pt;}
.y3fa_c00000{bottom:244.440013pt;}
.y3ea_c00000{bottom:245.080013pt;}
.y168_c00000{bottom:245.720013pt;}
.y390_c00000{bottom:246.040013pt;}
.y384_c00000{bottom:246.680013pt;}
.y1f1_c00000{bottom:247.640013pt;}
.y279_c00000{bottom:247.960013pt;}
.y184_c00000{bottom:248.280013pt;}
.y362_c00000{bottom:248.600013pt;}
.y1be_c00000{bottom:248.920013pt;}
.y1c3_c00000{bottom:249.240013pt;}
.y1e0_c00000{bottom:250.200013pt;}
.y13b_c00000{bottom:250.520013pt;}
.y9_c00000{bottom:250.665067pt;}
.y394_c00000{bottom:250.840013pt;}
.y449_c00000{bottom:252.120013pt;}
.y1a8_c00000{bottom:252.440013pt;}
.y15e_c00000{bottom:253.080013pt;}
.y2ae_c00000{bottom:253.400013pt;}
.y357_c00000{bottom:253.720013pt;}
.ye8_c00000{bottom:255.000013pt;}
.y3b6_c00000{bottom:255.320013pt;}
.y2fd_c00000{bottom:255.640013pt;}
.y78_c00000{bottom:256.280013pt;}
.y3a3_c00000{bottom:256.600013pt;}
.y142_c00000{bottom:257.240013pt;}
.y3f4_c00000{bottom:257.880013pt;}
.y345_c00000{bottom:258.200013pt;}
.y1b5_c00000{bottom:258.520013pt;}
.yc2_c00000{bottom:259.480013pt;}
.y1f4_c00000{bottom:259.800013pt;}
.y3bd_c00000{bottom:260.120013pt;}
.y30d_c00000{bottom:260.440013pt;}
.y433_c00000{bottom:261.400013pt;}
.y57_c00000{bottom:261.720013pt;}
.y12f_c00000{bottom:262.040013pt;}
.y347_c00000{bottom:262.680013pt;}
.y453_c00000{bottom:263.320013pt;}
.y193_c00000{bottom:264.280013pt;}
.y25f_c00000{bottom:264.600013pt;}
.y383_c00000{bottom:264.920013pt;}
.y2bb_c00000{bottom:265.240013pt;}
.y278_c00000{bottom:266.200013pt;}
.y104_c00000{bottom:266.520013pt;}
.y374_c00000{bottom:266.840013pt;}
.y42d_c00000{bottom:267.480013pt;}
.y92_c00000{bottom:267.800013pt;}
.y23f_c00000{bottom:268.440013pt;}
.y260_c00000{bottom:269.080013pt;}
.y386_c00000{bottom:269.400013pt;}
.y22c_c00000{bottom:270.040013pt;}
.y29d_c00000{bottom:270.360013pt;}
.yac_c00000{bottom:271.000013pt;}
.y211_c00000{bottom:271.320013pt;}
.y366_c00000{bottom:271.640013pt;}
.y2ea_c00000{bottom:272.280013pt;}
.y167_c00000{bottom:273.240013pt;}
.y36b_c00000{bottom:273.880013pt;}
.y37a_c00000{bottom:274.200013pt;}
.y1f0_c00000{bottom:275.480013pt;}
.y116_c00000{bottom:275.800013pt;}
.y23_c00000{bottom:276.000000pt;}
.y2b6_c00000{bottom:276.440013pt;}
.y1df_c00000{bottom:277.720013pt;}
.y266_c00000{bottom:278.040013pt;}
.y435_c00000{bottom:278.680013pt;}
.y30c_c00000{bottom:279.000013pt;}
.y1bd_c00000{bottom:279.320013pt;}
.y56_c00000{bottom:279.960013pt;}
.y1a7_c00000{bottom:280.280013pt;}
.y15d_c00000{bottom:280.600013pt;}
.y32a_c00000{bottom:280.920013pt;}
.y356_c00000{bottom:281.240013pt;}
.yf0_c00000{bottom:282.520013pt;}
.y3ab_c00000{bottom:282.840013pt;}
.y382_c00000{bottom:283.480013pt;}
.y83_c00000{bottom:283.800013pt;}
.y3a2_c00000{bottom:284.120013pt;}
.y183_c00000{bottom:285.080013pt;}
.y35e_c00000{bottom:285.400013pt;}
.y296_c00000{bottom:285.720013pt;}
.y1b4_c00000{bottom:286.040013pt;}
.y317_c00000{bottom:286.360013pt;}
.yc1_c00000{bottom:287.000013pt;}
.y251_c00000{bottom:287.320013pt;}
.y37d_c00000{bottom:288.280013pt;}
.y3e9_c00000{bottom:288.600013pt;}
.y1e6_c00000{bottom:289.240013pt;}
.y420_c00000{bottom:289.880013pt;}
.y3ec_c00000{bottom:290.200013pt;}
.y10_c00000{bottom:290.666667pt;}
.y452_c00000{bottom:290.840013pt;}
.y192_c00000{bottom:291.800013pt;}
.y361_c00000{bottom:292.120013pt;}
.y2de_c00000{bottom:292.440013pt;}
.y2ba_c00000{bottom:293.080013pt;}
.y103_c00000{bottom:294.040013pt;}
.y1bc_c00000{bottom:294.680013pt;}
.y344_c00000{bottom:295.000013pt;}
.y35d_c00000{bottom:295.320013pt;}
.y23e_c00000{bottom:296.280013pt;}
.y265_c00000{bottom:296.600013pt;}
.y2ad_c00000{bottom:296.920013pt;}
.y30b_c00000{bottom:297.240013pt;}
.y22b_c00000{bottom:297.560013pt;}
.y29c_c00000{bottom:297.880013pt;}
.y55_c00000{bottom:298.520013pt;}
.y210_c00000{bottom:298.840013pt;}
.y2fc_c00000{bottom:299.480013pt;}
.y77_c00000{bottom:299.800013pt;}
.y281_c00000{bottom:300.760013pt;}
.y166_c00000{bottom:301.080013pt;}
.y38f_c00000{bottom:301.400013pt;}
.y381_c00000{bottom:301.720013pt;}
.y1ef_c00000{bottom:303.000013pt;}
.y182_c00000{bottom:303.320013pt;}
.y3bc_c00000{bottom:303.640013pt;}
.y2b5_c00000{bottom:304.280013pt;}
.y1de_c00000{bottom:305.240013pt;}
.y12e_c00000{bottom:305.880013pt;}
.y365_c00000{bottom:306.200013pt;}
.y42a_c00000{bottom:306.520013pt;}
.y8_c00000{bottom:306.666667pt;}
.y1a6_c00000{bottom:307.800013pt;}
.y15c_c00000{bottom:308.120013pt;}
.y335_c00000{bottom:308.440013pt;}
.y355_c00000{bottom:309.080013pt;}
.y277_c00000{bottom:309.720013pt;}
.yef_c00000{bottom:310.040013pt;}
.y280_c00000{bottom:310.680013pt;}
.y379_c00000{bottom:311.000013pt;}
.y91_c00000{bottom:311.320013pt;}
.y3a1_c00000{bottom:311.960013pt;}
.y115_c00000{bottom:312.600013pt;}
.y3f3_c00000{bottom:312.920013pt;}
.y343_c00000{bottom:313.240013pt;}
.y1b3_c00000{bottom:313.880013pt;}
.yc0_c00000{bottom:314.520013pt;}
.y25d_c00000{bottom:314.840013pt;}
.y3b3_c00000{bottom:315.480013pt;}
.y2e9_c00000{bottom:315.800013pt;}
.y31_c00000{bottom:316.000000pt;}
.y1bb_c00000{bottom:316.120013pt;}
.y54_c00000{bottom:316.760013pt;}
.y22e_c00000{bottom:317.080013pt;}
.y2f1_c00000{bottom:317.400013pt;}
.y2fb_c00000{bottom:317.720013pt;}
.y451_c00000{bottom:318.360013pt;}
.y18d_c00000{bottom:319.320013pt;}
.y2cc_c00000{bottom:320.280013pt;}
.y2b9_c00000{bottom:320.600013pt;}
.y434_c00000{bottom:321.240013pt;}
.y102_c00000{bottom:321.880013pt;}
.y3f8_c00000{bottom:322.520013pt;}
.y23d_c00000{bottom:323.800013pt;}
.y264_c00000{bottom:324.120013pt;}
.y329_c00000{bottom:324.440013pt;}
.y2a_c00000{bottom:325.333333pt;}
.y22a_c00000{bottom:325.400013pt;}
.yab_c00000{bottom:326.040013pt;}
.y20f_c00000{bottom:326.360013pt;}
.y3a8_c00000{bottom:326.680013pt;}
.y372_c00000{bottom:327.000013pt;}
.y82_c00000{bottom:327.320013pt;}
.y165_c00000{bottom:328.600013pt;}
.y27f_c00000{bottom:328.920013pt;}
.y295_c00000{bottom:329.240013pt;}
.y316_c00000{bottom:329.880013pt;}
.y1ee_c00000{bottom:330.520013pt;}
.y1c8_c00000{bottom:330.840013pt;}
.y1ba_c00000{bottom:331.480013pt;}
.y2b4_c00000{bottom:331.800013pt;}
.y3e8_c00000{bottom:332.120013pt;}
.y432_c00000{bottom:332.760013pt;}
.y1ff_c00000{bottom:333.080013pt;}
.y12d_c00000{bottom:333.400013pt;}
.y423_c00000{bottom:333.720013pt;}
.y429_c00000{bottom:334.040013pt;}
.y53_c00000{bottom:335.320013pt;}
.y15b_c00000{bottom:335.640013pt;}
.y360_c00000{bottom:335.960013pt;}
.y2dd_c00000{bottom:336.280013pt;}
.y354_c00000{bottom:336.600013pt;}
.y1a_c00000{bottom:337.333333pt;}
.y276_c00000{bottom:337.560013pt;}
.yee_c00000{bottom:337.880013pt;}
.y393_c00000{bottom:338.200013pt;}
.y380_c00000{bottom:338.520013pt;}
.y3a0_c00000{bottom:339.480013pt;}
.y181_c00000{bottom:340.120013pt;}
.y2ac_c00000{bottom:340.440013pt;}
.y3ff_c00000{bottom:340.760013pt;}
.y30a_c00000{bottom:341.080013pt;}
.y1b2_c00000{bottom:341.400013pt;}
.ybf_c00000{bottom:342.040013pt;}
.y2c5_c00000{bottom:342.680013pt;}
.y364_c00000{bottom:343.000013pt;}
.y76_c00000{bottom:343.320013pt;}
.y1c2_c00000{bottom:344.600013pt;}
.y2f0_c00000{bottom:344.920013pt;}
.y3f2_c00000{bottom:345.240013pt;}
.y450_c00000{bottom:345.880013pt;}
.y191_c00000{bottom:346.840013pt;}
.y3bb_c00000{bottom:347.480013pt;}
.y33b_c00000{bottom:347.800013pt;}
.yc_c00000{bottom:348.000000pt;}
.y1dd_c00000{bottom:349.080013pt;}
.y101_c00000{bottom:349.400013pt;}
.y41f_c00000{bottom:349.720013pt;}
.y342_c00000{bottom:350.040013pt;}
.y23c_c00000{bottom:351.320013pt;}
.y263_c00000{bottom:351.640013pt;}
.y339_c00000{bottom:352.280013pt;}
.y229_c00000{bottom:352.920013pt;}
.y52_c00000{bottom:353.560013pt;}
.yaa_c00000{bottom:353.880013pt;}
.y32f_c00000{bottom:354.200013pt;}
.y2fa_c00000{bottom:354.520013pt;}
.y90_c00000{bottom:354.840013pt;}
.y114_c00000{bottom:356.120013pt;}
.y35c_c00000{bottom:356.440013pt;}
.y37f_c00000{bottom:357.080013pt;}
.y3ca_c00000{bottom:357.720013pt;}
.y1ed_c00000{bottom:358.040013pt;}
.y180_c00000{bottom:358.680013pt;}
.y3b2_c00000{bottom:359.000013pt;}
.y2b3_c00000{bottom:359.320013pt;}
.y1fe_c00000{bottom:360.600013pt;}
.y12c_c00000{bottom:360.920013pt;}
.y363_c00000{bottom:361.240013pt;}
.y1a5_c00000{bottom:362.840013pt;}
.y27e_c00000{bottom:363.480013pt;}
.y2cb_c00000{bottom:363.800013pt;}
.y2b8_c00000{bottom:364.120013pt;}
.y275_c00000{bottom:365.080013pt;}
.yed_c00000{bottom:365.400013pt;}
.y378_c00000{bottom:366.040013pt;}
.y39f_c00000{bottom:367.000013pt;}
.y218_c00000{bottom:367.640013pt;}
.y328_c00000{bottom:368.280013pt;}
.y309_c00000{bottom:368.600013pt;}
.y1b1_c00000{bottom:368.920013pt;}
.ybe_c00000{bottom:369.880013pt;}
.y15a_c00000{bottom:370.200013pt;}
.y408_c00000{bottom:370.520013pt;}
.y81_c00000{bottom:370.840013pt;}
.y441_c00000{bottom:371.480013pt;}
.y51_c00000{bottom:372.120013pt;}
.y2ef_c00000{bottom:372.440013pt;}
.y294_c00000{bottom:373.080013pt;}
.y315_c00000{bottom:373.720013pt;}
.y18c_c00000{bottom:374.680013pt;}
.y37c_c00000{bottom:375.320013pt;}
.y3e7_c00000{bottom:375.640013pt;}
.y35f_c00000{bottom:375.960013pt;}
.y1dc_c00000{bottom:376.600013pt;}
.y100_c00000{bottom:376.920013pt;}
.y422_c00000{bottom:377.240013pt;}
.y3fe_c00000{bottom:377.560013pt;}
.y22d_c00000{bottom:378.840013pt;}
.y2c4_c00000{bottom:379.480013pt;}
.y2dc_c00000{bottom:379.800013pt;}
.y353_c00000{bottom:380.120013pt;}
.y228_c00000{bottom:380.440013pt;}
.y29b_c00000{bottom:380.760013pt;}
.yd4_c00000{bottom:381.400013pt;}
.y392_c00000{bottom:381.720013pt;}
.y371_c00000{bottom:382.040013pt;}
.y113_c00000{bottom:383.640013pt;}
.y2ab_c00000{bottom:384.280013pt;}
.y377_c00000{bottom:384.600013pt;}
.y1ec_c00000{bottom:385.880013pt;}
.y24b_c00000{bottom:386.200013pt;}
.y41e_c00000{bottom:386.520013pt;}
.y75_c00000{bottom:386.840013pt;}
.y3fd_c00000{bottom:387.160013pt;}
.y1fd_c00000{bottom:388.120013pt;}
.y159_c00000{bottom:388.440013pt;}
.y3f1_c00000{bottom:389.080013pt;}
.y50_c00000{bottom:390.360013pt;}
.y1a4_c00000{bottom:390.680013pt;}
.y3ba_c00000{bottom:391.000013pt;}
.y33a_c00000{bottom:391.320013pt;}
.y274_c00000{bottom:392.600013pt;}
.yec_c00000{bottom:392.920013pt;}
.y42c_c00000{bottom:393.880013pt;}
.y12b_c00000{bottom:395.480013pt;}
.y3ee_c00000{bottom:395.800013pt;}
.y308_c00000{bottom:396.120013pt;}
.y1b0_c00000{bottom:396.440013pt;}
.ya9_c00000{bottom:397.400013pt;}
.y20e_c00000{bottom:397.720013pt;}
.y2f9_c00000{bottom:398.040013pt;}
.y8f_c00000{bottom:398.680013pt;}
.y1c1_c00000{bottom:399.640013pt;}
.y2ee_c00000{bottom:400.280013pt;}
.y412_c00000{bottom:400.600013pt;}
.y44f_c00000{bottom:401.240013pt;}
.y39e_c00000{bottom:401.560013pt;}
.y17d_c00000{bottom:402.200013pt;}
.y3b1_c00000{bottom:402.520013pt;}
.y2e8_c00000{bottom:402.840013pt;}
.y323_c00000{bottom:403.480013pt;}
.y1db_c00000{bottom:404.120013pt;}
.y13a_c00000{bottom:404.440013pt;}
.y41d_c00000{bottom:405.080013pt;}
.y428_c00000{bottom:405.400013pt;}
.y1c9_c00000{bottom:406.680013pt;}
.y158_c00000{bottom:407.000013pt;}
.y2ca_c00000{bottom:407.320013pt;}
.y227_c00000{bottom:407.960013pt;}
.y4f_c00000{bottom:408.920013pt;}
.y3a7_c00000{bottom:409.240013pt;}
.y370_c00000{bottom:409.880013pt;}
.yff_c00000{bottom:411.480013pt;}
.y327_c00000{bottom:411.800013pt;}
.y42b_c00000{bottom:412.120013pt;}
.y1eb_c00000{bottom:413.400013pt;}
.y12a_c00000{bottom:413.720013pt;}
.y407_c00000{bottom:414.040013pt;}
.y74_c00000{bottom:414.680013pt;}
.y1fc_c00000{bottom:415.640013pt;}
.y26f_c00000{bottom:416.280013pt;}
.y293_c00000{bottom:416.600013pt;}
.y314_c00000{bottom:417.240013pt;}
.y440_c00000{bottom:417.560013pt;}
.y1c0_c00000{bottom:418.200013pt;}
.y376_c00000{bottom:418.840013pt;}
.y3e6_c00000{bottom:419.480013pt;}
.y39d_c00000{bottom:419.800013pt;}
.y273_c00000{bottom:420.120013pt;}
.yeb_c00000{bottom:420.440013pt;}
.y421_c00000{bottom:421.080013pt;}
.y23b_c00000{bottom:422.680013pt;}
.y217_c00000{bottom:423.000013pt;}
.y2db_c00000{bottom:423.320013pt;}
.y307_c00000{bottom:423.640013pt;}
.y1af_c00000{bottom:424.280013pt;}
.ya8_c00000{bottom:424.920013pt;}
.y20d_c00000{bottom:425.240013pt;}
.y2f8_c00000{bottom:425.880013pt;}
.y4e_c00000{bottom:427.160013pt;}
.y1f6_c00000{bottom:427.480013pt;}
.y2aa_c00000{bottom:427.800013pt;}
.y411_c00000{bottom:428.120013pt;}
.y44e_c00000{bottom:428.760013pt;}
.yfe_c00000{bottom:429.720013pt;}
.y2d3_c00000{bottom:430.680013pt;}
.y1da_c00000{bottom:431.640013pt;}
.y129_c00000{bottom:432.280013pt;}
.y3f0_c00000{bottom:432.600013pt;}
.y43f_c00000{bottom:432.920013pt;}
.y1a3_c00000{bottom:434.200013pt;}
.y3b9_c00000{bottom:434.520013pt;}
.y334_c00000{bottom:434.840013pt;}
.y226_c00000{bottom:435.800013pt;}
.ye7_c00000{bottom:436.440013pt;}
.y3a6_c00000{bottom:437.080013pt;}
.y322_c00000{bottom:437.720013pt;}
.y39c_c00000{bottom:438.360013pt;}
.y7_c00000{bottom:438.666667pt;}
.y112_c00000{bottom:439.000013pt;}
.y35b_c00000{bottom:439.320013pt;}
.yd5_c00000{bottom:440.920013pt;}
.y24a_c00000{bottom:441.240013pt;}
.y41c_c00000{bottom:441.880013pt;}
.y8e_c00000{bottom:442.200013pt;}
.y1fb_c00000{bottom:443.480013pt;}
.y26e_c00000{bottom:443.800013pt;}
.y25_c00000{bottom:444.000000pt;}
.y4d_c00000{bottom:445.720013pt;}
.y3b0_c00000{bottom:446.040013pt;}
.y2e7_c00000{bottom:446.680013pt;}
.y272_c00000{bottom:447.960013pt;}
.yfd_c00000{bottom:448.280013pt;}
.y23a_c00000{bottom:450.200013pt;}
.y157_c00000{bottom:450.520013pt;}
.y2c9_c00000{bottom:450.840013pt;}
.y306_c00000{bottom:451.480013pt;}
.y1ae_c00000{bottom:451.800013pt;}
.ya7_c00000{bottom:452.440013pt;}
.y20c_c00000{bottom:452.760013pt;}
.y3b5_c00000{bottom:453.080013pt;}
.y2f7_c00000{bottom:453.400013pt;}
.y164_c00000{bottom:455.000013pt;}
.y2a9_c00000{bottom:455.320013pt;}
.y410_c00000{bottom:455.640013pt;}
.y44d_c00000{bottom:456.280013pt;}
.y39b_c00000{bottom:456.600013pt;}
.y17c_c00000{bottom:457.240013pt;}
.y406_c00000{bottom:457.880013pt;}
.y73_c00000{bottom:458.200013pt;}
.y1d9_c00000{bottom:459.480013pt;}
.y139_c00000{bottom:459.800013pt;}
.y292_c00000{bottom:460.120013pt;}
.y313_c00000{bottom:460.760013pt;}
.y1a2_c00000{bottom:461.720013pt;}
.y2ed_c00000{bottom:462.040013pt;}
.y346_c00000{bottom:462.680013pt;}
.y3e5_c00000{bottom:463.000013pt;}
.y225_c00000{bottom:463.320013pt;}
.y4c_c00000{bottom:463.960013pt;}
.ye6_c00000{bottom:464.280013pt;}
.y3a5_c00000{bottom:464.600013pt;}
.yfc_c00000{bottom:466.520013pt;}
.y2da_c00000{bottom:466.840013pt;}
.y352_c00000{bottom:467.480013pt;}
.y29a_c00000{bottom:467.800013pt;}
.ycc_c00000{bottom:468.440013pt;}
.y249_c00000{bottom:469.080013pt;}
.y250_c00000{bottom:471.000013pt;}
.y26d_c00000{bottom:471.320013pt;}
.y41a_c00000{bottom:471.640013pt;}
.y321_c00000{bottom:472.280013pt;}
.y16c_c00000{bottom:473.240013pt;}
.y3af_c00000{bottom:473.880013pt;}
.y2d2_c00000{bottom:474.200013pt;}
.y271_c00000{bottom:475.480013pt;}
.y128_c00000{bottom:475.800013pt;}
.y3ef_c00000{bottom:476.120013pt;}
.y427_c00000{bottom:476.440013pt;}
.y1fa_c00000{bottom:477.720013pt;}
.y156_c00000{bottom:478.040013pt;}
.y333_c00000{bottom:478.680013pt;}
.ya6_c00000{bottom:480.280013pt;}
.y2ec_c00000{bottom:480.600013pt;}
.y3d8_c00000{bottom:480.920013pt;}
.y4b_c00000{bottom:482.520013pt;}
.y2a8_c00000{bottom:482.840013pt;}
.y44c_c00000{bottom:484.120013pt;}
.y43e_c00000{bottom:484.760013pt;}
.yfb_c00000{bottom:485.080013pt;}
.y8d_c00000{bottom:485.720013pt;}
.y1d8_c00000{bottom:487.000013pt;}
.y190_c00000{bottom:487.320013pt;}
.y2f6_c00000{bottom:487.640013pt;}
.y1a1_c00000{bottom:489.240013pt;}
.y3c9_c00000{bottom:489.880013pt;}
.y2e6_c00000{bottom:490.200013pt;}
.y224_c00000{bottom:490.840013pt;}
.ye5_c00000{bottom:491.800013pt;}
.y111_c00000{bottom:494.040013pt;}
.y2c8_c00000{bottom:494.680013pt;}
.y305_c00000{bottom:495.000013pt;}
.ycb_c00000{bottom:496.280013pt;}
.y248_c00000{bottom:496.600013pt;}
.y36f_c00000{bottom:496.920013pt;}
.y24f_c00000{bottom:498.520013pt;}
.y26c_c00000{bottom:498.840013pt;}
.y3d7_c00000{bottom:499.480013pt;}
.y39a_c00000{bottom:500.120013pt;}
.y4a_c00000{bottom:500.760013pt;}
.y1c7_c00000{bottom:501.080013pt;}
.y405_c00000{bottom:501.400013pt;}
.y72_c00000{bottom:501.720013pt;}
.yfa_c00000{bottom:503.320013pt;}
.y291_c00000{bottom:503.640013pt;}
.y288_c00000{bottom:503.960013pt;}
.y312_c00000{bottom:504.280013pt;}
.y239_c00000{bottom:505.240013pt;}
.y155_c00000{bottom:505.880013pt;}
.y2f5_c00000{bottom:506.200013pt;}
.y320_c00000{bottom:506.520013pt;}
.ya5_c00000{bottom:507.800013pt;}
.y20b_c00000{bottom:508.120013pt;}
.y40f_c00000{bottom:508.440013pt;}
.y448_c00000{bottom:509.400013pt;}
.y270_c00000{bottom:509.720013pt;}
.y163_c00000{bottom:510.040013pt;}
.y2a7_c00000{bottom:510.680013pt;}
.y351_c00000{bottom:511.000013pt;}
.y299_c00000{bottom:511.320013pt;}
.y17b_c00000{bottom:512.600013pt;}
.y1d7_c00000{bottom:514.520013pt;}
.y27d_c00000{bottom:514.840013pt;}
.y419_c00000{bottom:515.480013pt;}
.y1a0_c00000{bottom:517.080013pt;}
.y3ae_c00000{bottom:517.400013pt;}
.y2d1_c00000{bottom:517.720013pt;}
.y223_c00000{bottom:518.360013pt;}
.y49_c00000{bottom:519.320013pt;}
.y3df_c00000{bottom:519.640013pt;}
.y2d_c00000{bottom:520.000000pt;}
.y43d_c00000{bottom:520.600013pt;}
.y173_c00000{bottom:521.880013pt;}
.y332_c00000{bottom:522.200013pt;}
.yca_c00000{bottom:523.800013pt;}
.y44b_c00000{bottom:524.120013pt;}
.y2f4_c00000{bottom:524.440013pt;}
.y447_c00000{bottom:524.760013pt;}
.y24e_c00000{bottom:526.040013pt;}
.y26b_c00000{bottom:526.680013pt;}
.y40e_c00000{bottom:527.000013pt;}
.y399_c00000{bottom:527.960013pt;}
.y176_c00000{bottom:528.600013pt;}
.y8c_c00000{bottom:529.240013pt;}
.y22_c00000{bottom:529.333333pt;}
.y127_c00000{bottom:530.840013pt;}
.y1f9_c00000{bottom:533.080013pt;}
.y154_c00000{bottom:533.400013pt;}
.y2e5_c00000{bottom:533.720013pt;}
.ya4_c00000{bottom:535.320013pt;}
.y20a_c00000{bottom:535.640013pt;}
.y3d6_c00000{bottom:536.280013pt;}
.y48_c00000{bottom:537.560013pt;}
.y110_c00000{bottom:537.880013pt;}
.y2a6_c00000{bottom:538.200013pt;}
.y304_c00000{bottom:538.520013pt;}
.y17f_c00000{bottom:540.120013pt;}
.y36e_c00000{bottom:540.440013pt;}
.y31f_c00000{bottom:541.080013pt;}
.y1d6_c00000{bottom:542.040013pt;}
.y2c3_c00000{bottom:542.680013pt;}
.y2f3_c00000{bottom:543.000013pt;}
.y19f_c00000{bottom:544.600013pt;}
.y404_c00000{bottom:544.920013pt;}
.y71_c00000{bottom:545.240013pt;}
.y222_c00000{bottom:545.880013pt;}
.ye4_c00000{bottom:546.840013pt;}
.y287_c00000{bottom:547.480013pt;}
.y311_c00000{bottom:548.120013pt;}
.y3a4_c00000{bottom:548.440013pt;}
.y1ad_c00000{bottom:549.400013pt;}
.y37b_c00000{bottom:549.720013pt;}
.y3e4_c00000{bottom:550.040013pt;}
.yc9_c00000{bottom:551.320013pt;}
.y298_c00000{bottom:551.640013pt;}
.y172_c00000{bottom:553.880013pt;}
.y2d9_c00000{bottom:554.200013pt;}
.y350_c00000{bottom:554.520013pt;}
.y398_c00000{bottom:555.480013pt;}
.y3c8_c00000{bottom:555.800013pt;}
.y47_c00000{bottom:556.120013pt;}
.y126_c00000{bottom:558.680013pt;}
.y418_c00000{bottom:559.000013pt;}
.y238_c00000{bottom:560.600013pt;}
.y26a_c00000{bottom:560.920013pt;}
.y2d0_c00000{bottom:561.240013pt;}
.ya3_c00000{bottom:562.840013pt;}
.y209_c00000{bottom:563.160013pt;}
.y3de_c00000{bottom:563.480013pt;}
.y10f_c00000{bottom:565.400013pt;}
.y2a5_c00000{bottom:565.720013pt;}
.y3d5_c00000{bottom:566.680013pt;}
.y153_c00000{bottom:567.640013pt;}
.y1d5_c00000{bottom:569.880013pt;}
.y2c2_c00000{bottom:570.200013pt;}
.y446_c00000{bottom:570.840013pt;}
.y171_c00000{bottom:572.120013pt;}
.y8b_c00000{bottom:573.080013pt;}
.y221_c00000{bottom:573.720013pt;}
.y46_c00000{bottom:574.360013pt;}
.ye3_c00000{bottom:574.680013pt;}
.y31e_c00000{bottom:575.320013pt;}
.y18f_c00000{bottom:576.920013pt;}
.y2e4_c00000{bottom:577.240013pt;}
.yc8_c00000{bottom:578.840013pt;}
.y269_c00000{bottom:579.480013pt;}
.y24d_c00000{bottom:581.400013pt;}
.y2c7_c00000{bottom:581.720013pt;}
.y303_c00000{bottom:582.040013pt;}
.y397_c00000{bottom:583.000013pt;}
.y1c6_c00000{bottom:583.640013pt;}
.y36d_c00000{bottom:584.280013pt;}
.y3d4_c00000{bottom:584.920013pt;}
.y125_c00000{bottom:586.200013pt;}
.y43c_c00000{bottom:586.520013pt;}
.y237_c00000{bottom:588.120013pt;}
.y3dd_c00000{bottom:588.440013pt;}
.y70_c00000{bottom:589.080013pt;}
.ya2_c00000{bottom:590.680013pt;}
.y286_c00000{bottom:591.000013pt;}
.y310_c00000{bottom:591.640013pt;}
.y1c_c00000{bottom:592.000000pt;}
.y445_c00000{bottom:592.280013pt;}
.y45_c00000{bottom:592.920013pt;}
.y2a4_c00000{bottom:593.240013pt;}
.y3e3_c00000{bottom:593.880013pt;}
.y18e_c00000{bottom:595.480013pt;}
.y1d4_c00000{bottom:597.400013pt;}
.y268_c00000{bottom:597.720013pt;}
.y34f_c00000{bottom:598.040013pt;}
.y19e_c00000{bottom:599.640013pt;}
.y444_c00000{bottom:601.880013pt;}
.ye2_c00000{bottom:602.200013pt;}
.y417_c00000{bottom:602.520013pt;}
.y3d3_c00000{bottom:603.480013pt;}
.y152_c00000{bottom:604.440013pt;}
.y2cf_c00000{bottom:605.080013pt;}
.yc7_c00000{bottom:606.680013pt;}
.y3dc_c00000{bottom:607.000013pt;}
.y220_c00000{bottom:608.600013pt;}
.y170_c00000{bottom:608.920013pt;}
.y331_c00000{bottom:609.240013pt;}
.y31d_c00000{bottom:609.880013pt;}
.y396_c00000{bottom:610.520013pt;}
.y44_c00000{bottom:611.160013pt;}
.y146_c00000{bottom:611.480013pt;}
.y124_c00000{bottom:613.720013pt;}
.y43b_c00000{bottom:614.040013pt;}
.y236_c00000{bottom:615.640013pt;}
.y267_c00000{bottom:616.280013pt;}
.y8a_c00000{bottom:616.600013pt;}
.ya1_c00000{bottom:618.200013pt;}
.y10e_c00000{bottom:620.440013pt;}
.y2a3_c00000{bottom:621.080013pt;}
.y3c7_c00000{bottom:621.720013pt;}
.y151_c00000{bottom:623.000013pt;}
.y1d3_c00000{bottom:624.920013pt;}
.y2c6_c00000{bottom:625.240013pt;}
.y30f_c00000{bottom:625.560013pt;}
.y302_c00000{bottom:625.880013pt;}
.y16f_c00000{bottom:627.480013pt;}
.y21f_c00000{bottom:627.800013pt;}
.y43_c00000{bottom:629.720013pt;}
.y216_c00000{bottom:632.280013pt;}
.y6f_c00000{bottom:632.600013pt;}
.y2f_c00000{bottom:633.333333pt;}
.ybd_c00000{bottom:634.200013pt;}
.y290_c00000{bottom:634.520013pt;}
.y285_c00000{bottom:634.840013pt;}
.y18b_c00000{bottom:636.440013pt;}
.y38e_c00000{bottom:637.080013pt;}
.y3e2_c00000{bottom:637.400013pt;}
.y395_c00000{bottom:638.360013pt;}
.y17e_c00000{bottom:639.000013pt;}
.y3d2_c00000{bottom:640.280013pt;}
.y123_c00000{bottom:641.240013pt;}
.y28_c00000{bottom:641.333333pt;}
.y34e_c00000{bottom:641.880013pt;}
.y235_c00000{bottom:643.480013pt;}
.y3db_c00000{bottom:643.800013pt;}
.y31c_c00000{bottom:644.120013pt;}
.ya0_c00000{bottom:645.720013pt;}
.y208_c00000{bottom:646.040013pt;}
.y42_c00000{bottom:647.960013pt;}
.y10d_c00000{bottom:648.280013pt;}
.y2a2_c00000{bottom:648.600013pt;}
.y32e_c00000{bottom:650.520013pt;}
.y1d2_c00000{bottom:652.440013pt;}
.y330_c00000{bottom:653.080013pt;}
.y19d_c00000{bottom:655.000013pt;}
.y431_c00000{bottom:655.320013pt;}
.ye1_c00000{bottom:657.240013pt;}
.y3d1_c00000{bottom:658.520013pt;}
.y247_c00000{bottom:659.800013pt;}
.y89_c00000{bottom:660.120013pt;}
.ybc_c00000{bottom:661.720013pt;}
.y3da_c00000{bottom:662.040013pt;}
.y16e_c00000{bottom:664.280013pt;}
.y21e_c00000{bottom:664.600013pt;}
.y41_c00000{bottom:666.200013pt;}
.y150_c00000{bottom:666.520013pt;}
.y122_c00000{bottom:669.080013pt;}
.y301_c00000{bottom:669.400013pt;}
.y234_c00000{bottom:671.000013pt;}
.y36c_c00000{bottom:671.320013pt;}
.y9f_c00000{bottom:673.240013pt;}
.y207_c00000{bottom:673.560013pt;}
.y430_c00000{bottom:673.880013pt;}
.y10c_c00000{bottom:675.800013pt;}
.y6e_c00000{bottom:676.120013pt;}
.y3d0_c00000{bottom:677.080013pt;}
.y246_c00000{bottom:678.040013pt;}
.y284_c00000{bottom:678.360013pt;}
.y31b_c00000{bottom:678.680013pt;}
.y1d1_c00000{bottom:680.280013pt;}
.y38d_c00000{bottom:680.600013pt;}
.y3e1_c00000{bottom:680.920013pt;}
.y1e_c00000{bottom:681.333333pt;}
.y16d_c00000{bottom:682.520013pt;}
.y21d_c00000{bottom:683.160013pt;}
.y40_c00000{bottom:684.760013pt;}
.ye0_c00000{bottom:685.080013pt;}
.y34d_c00000{bottom:685.400013pt;}
.y256_c00000{bottom:687.320013pt;}
.y3c6_c00000{bottom:687.640013pt;}
.ybb_c00000{bottom:689.240013pt;}
.y416_c00000{bottom:689.880013pt;}
.y18a_c00000{bottom:691.800013pt;}
.y2ce_c00000{bottom:692.120013pt;}
.y14f_c00000{bottom:694.040013pt;}
.y3cf_c00000{bottom:695.320013pt;}
.y121_c00000{bottom:696.600013pt;}
.y43a_c00000{bottom:696.920013pt;}
.y233_c00000{bottom:698.520013pt;}
.y3e0_c00000{bottom:699.480013pt;}
.y9e_c00000{bottom:701.080013pt;}
.y21c_c00000{bottom:701.720013pt;}
.y3f_c00000{bottom:703.000013pt;}
.y10b_c00000{bottom:703.320013pt;}
.y80_c00000{bottom:703.640013pt;}
.y28f_c00000{bottom:705.880013pt;}
.y1d0_c00000{bottom:707.800013pt;}
.y2e3_c00000{bottom:708.120013pt;}
.y19c_c00000{bottom:710.040013pt;}
.y42f_c00000{bottom:710.680013pt;}
.ydf_c00000{bottom:712.600013pt;}
.y300_c00000{bottom:712.920013pt;}
.y3ce_c00000{bottom:713.880013pt;}
.y255_c00000{bottom:714.840013pt;}
.y3c5_c00000{bottom:715.480013pt;}
.yba_c00000{bottom:717.080013pt;}
.y189_c00000{bottom:719.320013pt;}
.y6d_c00000{bottom:719.640013pt;}
.y3e_c00000{bottom:721.560013pt;}
.y138_c00000{bottom:721.880013pt;}
.y28e_c00000{bottom:724.120013pt;}
.y439_c00000{bottom:724.440013pt;}
.y232_c00000{bottom:726.040013pt;}
.y9d_c00000{bottom:728.600013pt;}
.y34c_c00000{bottom:728.920013pt;}
.y120_c00000{bottom:730.840013pt;}
.y3cd_c00000{bottom:732.120013pt;}
.y415_c00000{bottom:733.400013pt;}
.y1cf_c00000{bottom:735.320013pt;}
.y2cd_c00000{bottom:735.640013pt;}
.y10a_c00000{bottom:737.880013pt;}
.y3d_c00000{bottom:739.800013pt;}
.yde_c00000{bottom:740.120013pt;}
.y28d_c00000{bottom:742.680013pt;}
.y3c4_c00000{bottom:743.000013pt;}
.yb9_c00000{bottom:744.600013pt;}
.y17a_c00000{bottom:746.840013pt;}
.y7f_c00000{bottom:747.480013pt;}
.y11f_c00000{bottom:749.400013pt;}
.y2c1_c00000{bottom:751.640013pt;}
.y231_c00000{bottom:753.880013pt;}
.y9c_c00000{bottom:756.120013pt;}
.y206_c00000{bottom:756.440013pt;}
.y3c_c00000{bottom:758.360013pt;}
.y137_c00000{bottom:758.680013pt;}
.y28c_c00000{bottom:760.920013pt;}
.y1ce_c00000{bottom:762.840013pt;}
.y6c_c00000{bottom:763.480013pt;}
.y179_c00000{bottom:765.400013pt;}
.ydd_c00000{bottom:767.640013pt;}
.y3c3_c00000{bottom:770.520013pt;}
.yb8_c00000{bottom:772.120013pt;}
.y34b_c00000{bottom:772.440013pt;}
.y21a_c00000{bottom:773.080013pt;}
.y109_c00000{bottom:774.680013pt;}
.y136_c00000{bottom:776.920013pt;}
.y3b_c00000{bottom:777.240013pt;}
.y28b_c00000{bottom:779.480013pt;}
.y1f8_c00000{bottom:781.400013pt;}
.y31a_c00000{bottom:781.720013pt;}
.y9b_c00000{bottom:783.640013pt;}
.y205_c00000{bottom:783.960013pt;}
.y254_c00000{bottom:786.200013pt;}
.y3cc_c00000{bottom:789.080013pt;}
.y1cd_c00000{bottom:790.680013pt;}
.y7e_c00000{bottom:791.000013pt;}
.y108_c00000{bottom:792.920013pt;}
.ydc_c00000{bottom:795.480013pt;}
.y28a_c00000{bottom:797.720013pt;}
.y3c2_c00000{bottom:798.040013pt;}
.yb7_c00000{bottom:799.640013pt;}
.y2ff_c00000{bottom:800.280013pt;}
.y3a_c00000{bottom:802.200013pt;}
.y253_c00000{bottom:804.440013pt;}
.y6b_c00000{bottom:807.000013pt;}
.y219_c00000{bottom:807.320013pt;}
.y25c_c00000{bottom:808.920013pt;}
.y283_c00000{bottom:809.240013pt;}
.y9a_c00000{bottom:811.480013pt;}
.y414_c00000{bottom:813.720013pt;}
.y289_c00000{bottom:816.280013pt;}
.y1cc_c00000{bottom:818.200013pt;}
.y14e_c00000{bottom:820.440013pt;}
.y245_c00000{bottom:823.000013pt;}
.y3c1_c00000{bottom:825.880013pt;}
.y5_c00000{bottom:826.666667pt;}
.yb6_c00000{bottom:827.480013pt;}
.y162_c00000{bottom:829.720013pt;}
.y413_c00000{bottom:832.280013pt;}
.y7d_c00000{bottom:834.520013pt;}
.y1f7_c00000{bottom:836.440013pt;}
.y99_c00000{bottom:839.000013pt;}
.y39_c00000{bottom:840.280013pt;}
.y282_c00000{bottom:842.520013pt;}
.y2fe_c00000{bottom:843.800013pt;}
.y1cb_c00000{bottom:845.720013pt;}
.y19b_c00000{bottom:848.280013pt;}
.y6a_c00000{bottom:850.520013pt;}
.y3c0_c00000{bottom:853.400013pt;}
.yb5_c00000{bottom:855.000013pt;}
.y14d_c00000{bottom:857.240013pt;}
.y34a_c00000{bottom:859.800013pt;}
.y25b_c00000{bottom:864.280013pt;}
.y98_c00000{bottom:866.520013pt;}
.y38_c00000{bottom:873.240013pt;}
.y14c_c00000{bottom:875.800013pt;}
.y69_c00000{bottom:878.040013pt;}
.y3bf_c00000{bottom:880.920013pt;}
.y204_c00000{bottom:881.240013pt;}
.yb4_c00000{bottom:882.520013pt;}
.y161_c00000{bottom:885.080013pt;}
.y37_c00000{bottom:891.800013pt;}
.y97_c00000{bottom:894.040013pt;}
.y1ca_c00000{bottom:901.080013pt;}
.y19a_c00000{bottom:903.320013pt;}
.y3be_c00000{bottom:908.440013pt;}
.y36_c00000{bottom:910.040013pt;}
.y160_c00000{bottom:912.600013pt;}
.y68_c00000{bottom:921.880013pt;}
.y203_c00000{bottom:922.840013pt;}
.y2e_c00000{bottom:924.000000pt;}
.y35_c00000{bottom:928.600013pt;}
.y199_c00000{bottom:930.840013pt;}
.y27_c00000{bottom:932.000000pt;}
.yb3_c00000{bottom:937.880013pt;}
.y34_c00000{bottom:946.840013pt;}
.y33_c00000{bottom:965.400013pt;}
.y3_c00000{bottom:966.666667pt;}
.y1_c00000{bottom:990.666667pt;}
.y14_c00000{bottom:1108.000000pt;}
.y2c_c00000{bottom:1308.000000pt;}
.y2b_c00000{bottom:1429.333333pt;}
.hf_c00000{height:0.000000pt;}
.h1f_c00000{height:4.799997pt;}
.h1e_c00000{height:15.680000pt;}
.h17_c00000{height:20.000000pt;}
.h9_c00000{height:22.666667pt;}
.h14_c00000{height:24.000000pt;}
.hb_c00000{height:25.333333pt;}
.h16_c00000{height:26.666667pt;}
.h22_c00000{height:30.324375pt;}
.h12_c00000{height:30.666667pt;}
.h25_c00000{height:31.836197pt;}
.h2d_c00000{height:31.836250pt;}
.h2e_c00000{height:35.977500pt;}
.h11_c00000{height:39.101562pt;}
.h2c_c00000{height:41.555625pt;}
.h32_c00000{height:42.656250pt;}
.h5_c00000{height:42.666667pt;}
.h29_c00000{height:43.875000pt;}
.h23_c00000{height:46.048125pt;}
.h24_c00000{height:46.176250pt;}
.ha_c00000{height:46.210938pt;}
.h2f_c00000{height:46.611875pt;}
.hd_c00000{height:49.765625pt;}
.h28_c00000{height:50.540625pt;}
.hc_c00000{height:52.000000pt;}
.h30_c00000{height:54.644375pt;}
.h2b_c00000{height:54.644428pt;}
.h1_c00000{height:54.666667pt;}
.h1a_c00000{height:56.156250pt;}
.h21_c00000{height:56.312500pt;}
.h20_c00000{height:56.843750pt;}
.h27_c00000{height:59.450625pt;}
.h26_c00000{height:59.541250pt;}
.h10_c00000{height:63.984375pt;}
.h1d_c00000{height:65.938750pt;}
.h2a_c00000{height:66.503125pt;}
.h31_c00000{height:66.606250pt;}
.h15_c00000{height:68.000000pt;}
.h3_c00000{height:82.666667pt;}
.h6_c00000{height:85.312500pt;}
.h2_c00000{height:106.640625pt;}
.he_c00000{height:112.000000pt;}
.h1b_c00000{height:113.687500pt;}
.h1c_c00000{height:118.235000pt;}
.h8_c00000{height:127.968750pt;}
.h4_c00000{height:177.734375pt;}
.h13_c00000{height:193.333333pt;}
.h7_c00000{height:350.666667pt;}
.h19_c00000{height:1067.800000pt;}
.h18_c00000{height:1122.520000pt;}
.h0_c00000{height:1122.666667pt;}
.w7_c00000{width:0.000000pt;}
.w14_c00000{width:6.720012pt;}
.w16_c00000{width:13.119995pt;}
.w17_c00000{width:20.160000pt;}
.w15_c00000{width:34.880000pt;}
.w18_c00000{width:58.880000pt;}
.we_c00000{width:61.333333pt;}
.wa_c00000{width:90.666667pt;}
.w1_c00000{width:106.666667pt;}
.w5_c00000{width:110.666667pt;}
.w2_c00000{width:120.000000pt;}
.wd_c00000{width:153.333333pt;}
.w10_c00000{width:270.666667pt;}
.w6_c00000{width:374.666667pt;}
.wf_c00000{width:536.000000pt;}
.w4_c00000{width:576.000000pt;}
.w9_c00000{width:578.666667pt;}
.w8_c00000{width:598.666667pt;}
.wc_c00000{width:600.000000pt;}
.wb_c00000{width:610.666667pt;}
.w3_c00000{width:620.000000pt;}
.w13_c00000{width:768.039867pt;}
.w0_c00000{width:793.333333pt;}
.w11_c00000{width:793.720000pt;}
.w12_c00000{width:794.000000pt;}
.x0_c00000{left:0.000000pt;}
.xe_c00000{left:1.333333pt;}
.x2b_c00000{left:2.880133pt;}
.x4_c00000{left:4.400000pt;}
.x2_c00000{left:8.853333pt;}
.x18_c00000{left:10.453333pt;}
.x22_c00000{left:12.840000pt;}
.xf_c00000{left:14.666667pt;}
.x8_c00000{left:47.952000pt;}
.x17_c00000{left:60.181333pt;}
.xd_c00000{left:61.333333pt;}
.xc_c00000{left:62.666667pt;}
.x2c_c00000{left:81.546867pt;}
.x1b_c00000{left:84.000000pt;}
.x1d_c00000{left:92.000000pt;}
.xa_c00000{left:93.264000pt;}
.x14_c00000{left:97.333333pt;}
.x5_c00000{left:100.000000pt;}
.x16_c00000{left:108.000000pt;}
.x2d_c00000{left:119.413413pt;}
.x3c_c00000{left:124.480133pt;}
.x3a_c00000{left:129.250667pt;}
.x3d_c00000{left:130.480133pt;}
.x19_c00000{left:138.341333pt;}
.x7_c00000{left:144.000000pt;}
.x2f_c00000{left:147.746667pt;}
.x5e_c00000{left:149.041333pt;}
.x31_c00000{left:151.274133pt;}
.x41_c00000{left:156.590533pt;}
.x15_c00000{left:165.341333pt;}
.x34_c00000{left:166.680000pt;}
.x3e_c00000{left:170.480133pt;}
.x5f_c00000{left:179.701467pt;}
.x3b_c00000{left:181.270133pt;}
.x25_c00000{left:182.820267pt;}
.x3f_c00000{left:185.546800pt;}
.x5c_c00000{left:191.045200pt;}
.x5d_c00000{left:194.588267pt;}
.x24_c00000{left:199.262400pt;}
.x5b_c00000{left:204.131200pt;}
.x33_c00000{left:213.880267pt;}
.x4a_c00000{left:215.413467pt;}
.x1e_c00000{left:220.181333pt;}
.x13_c00000{left:228.224000pt;}
.x9_c00000{left:237.312000pt;}
.x35_c00000{left:239.553733pt;}
.x21_c00000{left:242.666667pt;}
.x51_c00000{left:246.224267pt;}
.x26_c00000{left:248.860000pt;}
.x6_c00000{left:262.688000pt;}
.x1c_c00000{left:270.090667pt;}
.x4e_c00000{left:280.640000pt;}
.x44_c00000{left:291.504533pt;}
.x32_c00000{left:298.641200pt;}
.x46_c00000{left:308.413467pt;}
.x11_c00000{left:310.712000pt;}
.x27_c00000{left:316.856133pt;}
.x42_c00000{left:323.957733pt;}
.x1f_c00000{left:325.333333pt;}
.x10_c00000{left:326.666667pt;}
.x5a_c00000{left:328.138933pt;}
.x1a_c00000{left:341.333333pt;}
.x12_c00000{left:342.666667pt;}
.x20_c00000{left:356.000000pt;}
.x43_c00000{left:360.040000pt;}
.x45_c00000{left:365.080133pt;}
.x28_c00000{left:367.746800pt;}
.x49_c00000{left:369.441733pt;}
.x40_c00000{left:374.406933pt;}
.x39_c00000{left:377.520133pt;}
.x30_c00000{left:380.633467pt;}
.x23_c00000{left:383.746800pt;}
.x4f_c00000{left:384.880533pt;}
.x29_c00000{left:386.920133pt;}
.x60_c00000{left:387.885067pt;}
.x2e_c00000{left:390.120000pt;}
.x4d_c00000{left:391.285467pt;}
.x2a_c00000{left:393.320000pt;}
.x50_c00000{left:403.521200pt;}
.x52_c00000{left:407.413333pt;}
.xb_c00000{left:450.720000pt;}
.x37_c00000{left:464.022533pt;}
.x1_c00000{left:520.000000pt;}
.x55_c00000{left:526.497333pt;}
.x58_c00000{left:543.239867pt;}
.x36_c00000{left:544.346933pt;}
.x56_c00000{left:548.746400pt;}
.x4b_c00000{left:552.002000pt;}
.x53_c00000{left:553.252933pt;}
.x59_c00000{left:577.245067pt;}
.x38_c00000{left:579.844000pt;}
.x54_c00000{left:613.040267pt;}
.x47_c00000{left:619.293200pt;}
.x3_c00000{left:641.333333pt;}
.x4c_c00000{left:651.261333pt;}
.x57_c00000{left:659.879867pt;}
.x48_c00000{left:667.013333pt;}
}





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

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





.ff0_c01000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01000;src:url('chunks/assets/font_e1d3b943410b0911530fd65f.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.093262;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_c01000;src:url('chunks/assets/font_28ab8e33124867bc5762b524.woff2')format("woff");}.ff2_c01000{font-family:ff2_c01000;line-height:1.095703;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_c01000{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);}
.v2_c01000{vertical-align:-27.360000px;}
.v0_c01000{vertical-align:0.000000px;}
.v1_c01000{vertical-align:27.360000px;}
.ls3_c01000{letter-spacing:0.000000px;}
.ls2_c01000{letter-spacing:0.295200px;}
.ls0_c01000{letter-spacing:0.472320px;}
.ls4_c01000{letter-spacing:0.590400px;}
.ls1_c01000{letter-spacing:0.738720px;}
.sc__c01000{text-shadow:none;}
.sc0_c01000{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__c01000{-webkit-text-stroke:0px transparent;}
.sc0_c01000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01000{word-spacing:-18.000000px;}
.ws5_c01000{word-spacing:-15.350400px;}
.ws0_c01000{word-spacing:-15.232320px;}
.ws4_c01000{word-spacing:-15.055200px;}
.ws3_c01000{word-spacing:-14.760000px;}
.ws1_c01000{word-spacing:-10.458720px;}
.ws6_c01000{word-spacing:0.000000px;}
._0_c01000{margin-left:-2.801280px;}
._2_c01000{width:1.090680px;}
._1_c01000{width:21.600000px;}
.fc1_c01000{color:transparent;}
.fc0_c01000{color:rgb(0,0,0);}
.fs2_c01000{font-size:38.880000px;}
.fs1_c01000{font-size:59.040000px;}
.fs0_c01000{font-size:72.000000px;}
.y0_c01000{bottom:0.000000px;}
.y2_c01000{bottom:3.195000px;}
.y4_c01000{bottom:3.960000px;}
.y1_c01000{bottom:53.999985px;}
.y3b_c01000{bottom:55.755000px;}
.y3_c01000{bottom:56.114985px;}
.y3a_c01000{bottom:73.035000px;}
.y39_c01000{bottom:90.315000px;}
.y38_c01000{bottom:107.595015px;}
.y37_c01000{bottom:124.515015px;}
.y36_c01000{bottom:141.795015px;}
.y35_c01000{bottom:159.075015px;}
.y34_c01000{bottom:176.355015px;}
.y33_c01000{bottom:193.635015px;}
.y32_c01000{bottom:210.915015px;}
.y31_c01000{bottom:228.195015px;}
.y30_c01000{bottom:245.475015px;}
.y2f_c01000{bottom:262.755015px;}
.y2e_c01000{bottom:280.035015px;}
.y2d_c01000{bottom:297.315015px;}
.y2c_c01000{bottom:314.235015px;}
.y2b_c01000{bottom:331.515015px;}
.y2a_c01000{bottom:348.795015px;}
.y29_c01000{bottom:366.075015px;}
.y28_c01000{bottom:383.355015px;}
.y27_c01000{bottom:400.635015px;}
.y26_c01000{bottom:417.915015px;}
.y25_c01000{bottom:435.195015px;}
.y24_c01000{bottom:452.475015px;}
.y23_c01000{bottom:469.755015px;}
.y22_c01000{bottom:493.875015px;}
.y21_c01000{bottom:504.675015px;}
.y20_c01000{bottom:526.995015px;}
.y1f_c01000{bottom:547.875015px;}
.y1e_c01000{bottom:568.395015px;}
.y1d_c01000{bottom:589.275015px;}
.y1c_c01000{bottom:609.795015px;}
.y1b_c01000{bottom:630.675015px;}
.y1a_c01000{bottom:651.195015px;}
.y19_c01000{bottom:672.075015px;}
.y18_c01000{bottom:692.595015px;}
.y17_c01000{bottom:713.475015px;}
.y16_c01000{bottom:733.995015px;}
.y15_c01000{bottom:754.875015px;}
.y14_c01000{bottom:775.395015px;}
.y13_c01000{bottom:796.275015px;}
.y12_c01000{bottom:816.795015px;}
.y11_c01000{bottom:837.675015px;}
.y10_c01000{bottom:858.195015px;}
.yf_c01000{bottom:879.075015px;}
.ye_c01000{bottom:899.595015px;}
.yd_c01000{bottom:920.475015px;}
.yc_c01000{bottom:940.995015px;}
.yb_c01000{bottom:961.875015px;}
.ya_c01000{bottom:982.395015px;}
.y9_c01000{bottom:1003.275015px;}
.y8_c01000{bottom:1023.795015px;}
.y7_c01000{bottom:1044.675015px;}
.y6_c01000{bottom:1065.195015px;}
.y5_c01000{bottom:1086.075015px;}
.h4_c01000{height:17.640000px;}
.h6_c01000{height:34.114922px;}
.h7_c01000{height:51.804141px;}
.h8_c01000{height:51.948281px;}
.h3_c01000{height:63.175781px;}
.h5_c01000{height:63.351563px;}
.h2_c01000{height:1201.275000px;}
.h0_c01000{height:1262.835000px;}
.h1_c01000{height:1263.000000px;}
.w3_c01000{width:22.680000px;}
.w2_c01000{width:864.044850px;}
.w0_c01000{width:892.935000px;}
.w1_c01000{width:893.250000px;}
.x0_c01000{left:0.000000px;}
.x1_c01000{left:14.445000px;}
.x2_c01000{left:113.040150px;}
.x2a_c01000{left:142.210650px;}
.x26_c01000{left:143.272650px;}
.x10_c01000{left:159.699900px;}
.x2b_c01000{left:162.198450px;}
.x13_c01000{left:170.202750px;}
.xe_c01000{left:172.439550px;}
.x12_c01000{left:173.902950px;}
.x19_c01000{left:183.163650px;}
.xd_c01000{left:192.412800px;}
.xf_c01000{left:196.407300px;}
.x21_c01000{left:200.709150px;}
.x6_c01000{left:201.931350px;}
.x2c_c01000{left:210.941100px;}
.x1e_c01000{left:213.658500px;}
.x25_c01000{left:219.078300px;}
.x17_c01000{left:221.671500px;}
.x11_c01000{left:225.174000px;}
.x20_c01000{left:226.563750px;}
.x14_c01000{left:242.418150px;}
.x8_c01000{left:245.938050px;}
.x1c_c01000{left:262.822200px;}
.x1d_c01000{left:264.887700px;}
.x27_c01000{left:275.083050px;}
.x4_c01000{left:276.427350px;}
.x9_c01000{left:284.878050px;}
.x5_c01000{left:297.644100px;}
.x7_c01000{left:303.642750px;}
.xb_c01000{left:308.160300px;}
.x23_c01000{left:311.539350px;}
.x24_c01000{left:321.958050px;}
.x18_c01000{left:331.618350px;}
.x15_c01000{left:334.153950px;}
.x28_c01000{left:341.949450px;}
.x1f_c01000{left:345.285600px;}
.x1a_c01000{left:371.740800px;}
.x16_c01000{left:415.373550px;}
.x29_c01000{left:424.222350px;}
.x22_c01000{left:426.720000px;}
.x1b_c01000{left:429.217500px;}
.xc_c01000{left:433.373550px;}
.x3_c01000{left:434.925000px;}
.xa_c01000{left:442.364850px;}
@media print{
.v2_c01000{vertical-align:-24.320000pt;}
.v0_c01000{vertical-align:0.000000pt;}
.v1_c01000{vertical-align:24.320000pt;}
.ls3_c01000{letter-spacing:0.000000pt;}
.ls2_c01000{letter-spacing:0.262400pt;}
.ls0_c01000{letter-spacing:0.419840pt;}
.ls4_c01000{letter-spacing:0.524800pt;}
.ls1_c01000{letter-spacing:0.656640pt;}
.ws2_c01000{word-spacing:-16.000000pt;}
.ws5_c01000{word-spacing:-13.644800pt;}
.ws0_c01000{word-spacing:-13.539840pt;}
.ws4_c01000{word-spacing:-13.382400pt;}
.ws3_c01000{word-spacing:-13.120000pt;}
.ws1_c01000{word-spacing:-9.296640pt;}
.ws6_c01000{word-spacing:0.000000pt;}
._0_c01000{margin-left:-2.490027pt;}
._2_c01000{width:0.969493pt;}
._1_c01000{width:19.200000pt;}
.fs2_c01000{font-size:34.560000pt;}
.fs1_c01000{font-size:52.480000pt;}
.fs0_c01000{font-size:64.000000pt;}
.y0_c01000{bottom:0.000000pt;}
.y2_c01000{bottom:2.840000pt;}
.y4_c01000{bottom:3.520000pt;}
.y1_c01000{bottom:47.999987pt;}
.y3b_c01000{bottom:49.560000pt;}
.y3_c01000{bottom:49.879987pt;}
.y3a_c01000{bottom:64.920000pt;}
.y39_c01000{bottom:80.280000pt;}
.y38_c01000{bottom:95.640013pt;}
.y37_c01000{bottom:110.680013pt;}
.y36_c01000{bottom:126.040013pt;}
.y35_c01000{bottom:141.400013pt;}
.y34_c01000{bottom:156.760013pt;}
.y33_c01000{bottom:172.120013pt;}
.y32_c01000{bottom:187.480013pt;}
.y31_c01000{bottom:202.840013pt;}
.y30_c01000{bottom:218.200013pt;}
.y2f_c01000{bottom:233.560013pt;}
.y2e_c01000{bottom:248.920013pt;}
.y2d_c01000{bottom:264.280013pt;}
.y2c_c01000{bottom:279.320013pt;}
.y2b_c01000{bottom:294.680013pt;}
.y2a_c01000{bottom:310.040013pt;}
.y29_c01000{bottom:325.400013pt;}
.y28_c01000{bottom:340.760013pt;}
.y27_c01000{bottom:356.120013pt;}
.y26_c01000{bottom:371.480013pt;}
.y25_c01000{bottom:386.840013pt;}
.y24_c01000{bottom:402.200013pt;}
.y23_c01000{bottom:417.560013pt;}
.y22_c01000{bottom:439.000013pt;}
.y21_c01000{bottom:448.600013pt;}
.y20_c01000{bottom:468.440013pt;}
.y1f_c01000{bottom:487.000013pt;}
.y1e_c01000{bottom:505.240013pt;}
.y1d_c01000{bottom:523.800013pt;}
.y1c_c01000{bottom:542.040013pt;}
.y1b_c01000{bottom:560.600013pt;}
.y1a_c01000{bottom:578.840013pt;}
.y19_c01000{bottom:597.400013pt;}
.y18_c01000{bottom:615.640013pt;}
.y17_c01000{bottom:634.200013pt;}
.y16_c01000{bottom:652.440013pt;}
.y15_c01000{bottom:671.000013pt;}
.y14_c01000{bottom:689.240013pt;}
.y13_c01000{bottom:707.800013pt;}
.y12_c01000{bottom:726.040013pt;}
.y11_c01000{bottom:744.600013pt;}
.y10_c01000{bottom:762.840013pt;}
.yf_c01000{bottom:781.400013pt;}
.ye_c01000{bottom:799.640013pt;}
.yd_c01000{bottom:818.200013pt;}
.yc_c01000{bottom:836.440013pt;}
.yb_c01000{bottom:855.000013pt;}
.ya_c01000{bottom:873.240013pt;}
.y9_c01000{bottom:891.800013pt;}
.y8_c01000{bottom:910.040013pt;}
.y7_c01000{bottom:928.600013pt;}
.y6_c01000{bottom:946.840013pt;}
.y5_c01000{bottom:965.400013pt;}
.h4_c01000{height:15.680000pt;}
.h6_c01000{height:30.324375pt;}
.h7_c01000{height:46.048125pt;}
.h8_c01000{height:46.176250pt;}
.h3_c01000{height:56.156250pt;}
.h5_c01000{height:56.312500pt;}
.h2_c01000{height:1067.800000pt;}
.h0_c01000{height:1122.520000pt;}
.h1_c01000{height:1122.666667pt;}
.w3_c01000{width:20.160000pt;}
.w2_c01000{width:768.039867pt;}
.w0_c01000{width:793.720000pt;}
.w1_c01000{width:794.000000pt;}
.x0_c01000{left:0.000000pt;}
.x1_c01000{left:12.840000pt;}
.x2_c01000{left:100.480133pt;}
.x2a_c01000{left:126.409467pt;}
.x26_c01000{left:127.353467pt;}
.x10_c01000{left:141.955467pt;}
.x2b_c01000{left:144.176400pt;}
.x13_c01000{left:151.291333pt;}
.xe_c01000{left:153.279600pt;}
.x12_c01000{left:154.580400pt;}
.x19_c01000{left:162.812133pt;}
.xd_c01000{left:171.033600pt;}
.xf_c01000{left:174.584267pt;}
.x21_c01000{left:178.408133pt;}
.x6_c01000{left:179.494533pt;}
.x2c_c01000{left:187.503200pt;}
.x1e_c01000{left:189.918667pt;}
.x25_c01000{left:194.736267pt;}
.x17_c01000{left:197.041333pt;}
.x11_c01000{left:200.154667pt;}
.x20_c01000{left:201.390000pt;}
.x14_c01000{left:215.482800pt;}
.x8_c01000{left:218.611600pt;}
.x1c_c01000{left:233.619733pt;}
.x1d_c01000{left:235.455733pt;}
.x27_c01000{left:244.518267pt;}
.x4_c01000{left:245.713200pt;}
.x9_c01000{left:253.224933pt;}
.x5_c01000{left:264.572533pt;}
.x7_c01000{left:269.904667pt;}
.xb_c01000{left:273.920267pt;}
.x23_c01000{left:276.923867pt;}
.x24_c01000{left:286.184933pt;}
.x18_c01000{left:294.771867pt;}
.x15_c01000{left:297.025733pt;}
.x28_c01000{left:303.955067pt;}
.x1f_c01000{left:306.920533pt;}
.x1a_c01000{left:330.436267pt;}
.x16_c01000{left:369.220933pt;}
.x29_c01000{left:377.086533pt;}
.x22_c01000{left:379.306667pt;}
.x1b_c01000{left:381.526667pt;}
.xc_c01000{left:385.220933pt;}
.x3_c01000{left:386.600000pt;}
.xa_c01000{left:393.213200pt;}
}





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

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





.ff0_c01001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01001;src:url('chunks/assets/font_d59ef077ad57509e5fb77162.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:1.093262;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_c01001;src:url('chunks/assets/font_df578f84a73a8cfa8816ac54.woff2')format("woff");}.ff2_c01001{font-family:ff2_c01001;line-height:1.095703;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_c01001{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);}
.v2_c01001{vertical-align:-27.360000px;}
.v0_c01001{vertical-align:0.000000px;}
.v1_c01001{vertical-align:27.360000px;}
.ls2_c01001{letter-spacing:0.000000px;}
.ls0_c01001{letter-spacing:0.472320px;}
.ls1_c01001{letter-spacing:0.738720px;}
.sc__c01001{text-shadow:none;}
.sc0_c01001{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__c01001{-webkit-text-stroke:0px transparent;}
.sc0_c01001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01001{word-spacing:-15.232320px;}
.ws1_c01001{word-spacing:-10.458720px;}
.ws2_c01001{word-spacing:0.000000px;}
._b_c01001{margin-left:-2.958480px;}
._a_c01001{width:1.296000px;}
._c_c01001{width:2.448000px;}
._4_c01001{width:3.600000px;}
._10_c01001{width:5.496480px;}
._11_c01001{width:6.515640px;}
._6_c01001{width:8.208000px;}
._3_c01001{width:9.576000px;}
._1_c01001{width:11.376000px;}
._5_c01001{width:13.104000px;}
._0_c01001{width:14.904000px;}
._7_c01001{width:15.960600px;}
._e_c01001{width:17.011560px;}
._f_c01001{width:18.425160px;}
._2_c01001{width:19.440000px;}
._d_c01001{width:21.600000px;}
._8_c01001{width:24.768000px;}
._9_c01001{width:26.208000px;}
.fc1_c01001{color:transparent;}
.fc0_c01001{color:rgb(0,0,0);}
.fs2_c01001{font-size:38.880000px;}
.fs1_c01001{font-size:59.040000px;}
.fs0_c01001{font-size:72.000000px;}
.y0_c01001{bottom:0.000000px;}
.y2_c01001{bottom:3.195000px;}
.y4_c01001{bottom:3.960000px;}
.y1_c01001{bottom:53.999985px;}
.y30_c01001{bottom:55.755000px;}
.y3_c01001{bottom:56.114985px;}
.y2f_c01001{bottom:73.035000px;}
.y2e_c01001{bottom:90.315000px;}
.y2d_c01001{bottom:107.595015px;}
.y2c_c01001{bottom:124.515015px;}
.y2b_c01001{bottom:141.795015px;}
.y2a_c01001{bottom:159.075015px;}
.y29_c01001{bottom:176.355015px;}
.y28_c01001{bottom:193.635015px;}
.y27_c01001{bottom:217.755015px;}
.y26_c01001{bottom:228.195015px;}
.y25_c01001{bottom:245.475015px;}
.y24_c01001{bottom:262.755015px;}
.y23_c01001{bottom:280.035015px;}
.y22_c01001{bottom:297.315015px;}
.y21_c01001{bottom:314.235015px;}
.y20_c01001{bottom:331.515015px;}
.y1f_c01001{bottom:349.515015px;}
.y1e_c01001{bottom:377.235015px;}
.y1d_c01001{bottom:408.195015px;}
.y1c_c01001{bottom:439.515015px;}
.y1b_c01001{bottom:470.475015px;}
.y1a_c01001{bottom:501.435015px;}
.y19_c01001{bottom:532.395015px;}
.y18_c01001{bottom:571.275015px;}
.y17_c01001{bottom:591.795015px;}
.y16_c01001{bottom:612.675015px;}
.y15_c01001{bottom:633.195015px;}
.y14_c01001{bottom:654.075015px;}
.y13_c01001{bottom:674.595015px;}
.y12_c01001{bottom:695.475015px;}
.y11_c01001{bottom:715.995015px;}
.y10_c01001{bottom:736.875015px;}
.yf_c01001{bottom:757.395015px;}
.ye_c01001{bottom:806.715015px;}
.yd_c01001{bottom:837.675015px;}
.yc_c01001{bottom:868.635015px;}
.yb_c01001{bottom:899.595015px;}
.ya_c01001{bottom:930.915015px;}
.y9_c01001{bottom:961.875015px;}
.y8_c01001{bottom:992.835015px;}
.y7_c01001{bottom:1023.795015px;}
.y6_c01001{bottom:1055.115015px;}
.y5_c01001{bottom:1086.075015px;}
.h4_c01001{height:17.640000px;}
.h7_c01001{height:34.114922px;}
.h5_c01001{height:51.804141px;}
.h6_c01001{height:51.948281px;}
.h3_c01001{height:63.175781px;}
.h2_c01001{height:1201.275000px;}
.h0_c01001{height:1262.835000px;}
.h1_c01001{height:1263.000000px;}
.w3_c01001{width:22.680000px;}
.w2_c01001{width:864.044850px;}
.w0_c01001{width:892.935000px;}
.w1_c01001{width:893.250000px;}
.x0_c01001{left:0.000000px;}
.x1_c01001{left:14.445000px;}
.x2_c01001{left:113.040150px;}
.x4_c01001{left:134.340090px;}
.x5_c01001{left:166.215000px;}
.x6_c01001{left:195.926550px;}
.xa_c01001{left:219.898650px;}
.xc_c01001{left:222.769800px;}
.x7_c01001{left:295.283250px;}
.xb_c01001{left:331.743150px;}
.x8_c01001{left:341.539350px;}
.x9_c01001{left:401.715150px;}
.x3_c01001{left:434.925000px;}
@media print{
.v2_c01001{vertical-align:-24.320000pt;}
.v0_c01001{vertical-align:0.000000pt;}
.v1_c01001{vertical-align:24.320000pt;}
.ls2_c01001{letter-spacing:0.000000pt;}
.ls0_c01001{letter-spacing:0.419840pt;}
.ls1_c01001{letter-spacing:0.656640pt;}
.ws0_c01001{word-spacing:-13.539840pt;}
.ws1_c01001{word-spacing:-9.296640pt;}
.ws2_c01001{word-spacing:0.000000pt;}
._b_c01001{margin-left:-2.629760pt;}
._a_c01001{width:1.152000pt;}
._c_c01001{width:2.176000pt;}
._4_c01001{width:3.200000pt;}
._10_c01001{width:4.885760pt;}
._11_c01001{width:5.791680pt;}
._6_c01001{width:7.296000pt;}
._3_c01001{width:8.512000pt;}
._1_c01001{width:10.112000pt;}
._5_c01001{width:11.648000pt;}
._0_c01001{width:13.248000pt;}
._7_c01001{width:14.187200pt;}
._e_c01001{width:15.121387pt;}
._f_c01001{width:16.377920pt;}
._2_c01001{width:17.280000pt;}
._d_c01001{width:19.200000pt;}
._8_c01001{width:22.016000pt;}
._9_c01001{width:23.296000pt;}
.fs2_c01001{font-size:34.560000pt;}
.fs1_c01001{font-size:52.480000pt;}
.fs0_c01001{font-size:64.000000pt;}
.y0_c01001{bottom:0.000000pt;}
.y2_c01001{bottom:2.840000pt;}
.y4_c01001{bottom:3.520000pt;}
.y1_c01001{bottom:47.999987pt;}
.y30_c01001{bottom:49.560000pt;}
.y3_c01001{bottom:49.879987pt;}
.y2f_c01001{bottom:64.920000pt;}
.y2e_c01001{bottom:80.280000pt;}
.y2d_c01001{bottom:95.640013pt;}
.y2c_c01001{bottom:110.680013pt;}
.y2b_c01001{bottom:126.040013pt;}
.y2a_c01001{bottom:141.400013pt;}
.y29_c01001{bottom:156.760013pt;}
.y28_c01001{bottom:172.120013pt;}
.y27_c01001{bottom:193.560013pt;}
.y26_c01001{bottom:202.840013pt;}
.y25_c01001{bottom:218.200013pt;}
.y24_c01001{bottom:233.560013pt;}
.y23_c01001{bottom:248.920013pt;}
.y22_c01001{bottom:264.280013pt;}
.y21_c01001{bottom:279.320013pt;}
.y20_c01001{bottom:294.680013pt;}
.y1f_c01001{bottom:310.680013pt;}
.y1e_c01001{bottom:335.320013pt;}
.y1d_c01001{bottom:362.840013pt;}
.y1c_c01001{bottom:390.680013pt;}
.y1b_c01001{bottom:418.200013pt;}
.y1a_c01001{bottom:445.720013pt;}
.y19_c01001{bottom:473.240013pt;}
.y18_c01001{bottom:507.800013pt;}
.y17_c01001{bottom:526.040013pt;}
.y16_c01001{bottom:544.600013pt;}
.y15_c01001{bottom:562.840013pt;}
.y14_c01001{bottom:581.400013pt;}
.y13_c01001{bottom:599.640013pt;}
.y12_c01001{bottom:618.200013pt;}
.y11_c01001{bottom:636.440013pt;}
.y10_c01001{bottom:655.000013pt;}
.yf_c01001{bottom:673.240013pt;}
.ye_c01001{bottom:717.080013pt;}
.yd_c01001{bottom:744.600013pt;}
.yc_c01001{bottom:772.120013pt;}
.yb_c01001{bottom:799.640013pt;}
.ya_c01001{bottom:827.480013pt;}
.y9_c01001{bottom:855.000013pt;}
.y8_c01001{bottom:882.520013pt;}
.y7_c01001{bottom:910.040013pt;}
.y6_c01001{bottom:937.880013pt;}
.y5_c01001{bottom:965.400013pt;}
.h4_c01001{height:15.680000pt;}
.h7_c01001{height:30.324375pt;}
.h5_c01001{height:46.048125pt;}
.h6_c01001{height:46.176250pt;}
.h3_c01001{height:56.156250pt;}
.h2_c01001{height:1067.800000pt;}
.h0_c01001{height:1122.520000pt;}
.h1_c01001{height:1122.666667pt;}
.w3_c01001{width:20.160000pt;}
.w2_c01001{width:768.039867pt;}
.w0_c01001{width:793.720000pt;}
.w1_c01001{width:794.000000pt;}
.x0_c01001{left:0.000000pt;}
.x1_c01001{left:12.840000pt;}
.x2_c01001{left:100.480133pt;}
.x4_c01001{left:119.413413pt;}
.x5_c01001{left:147.746667pt;}
.x6_c01001{left:174.156933pt;}
.xa_c01001{left:195.465467pt;}
.xc_c01001{left:198.017600pt;}
.x7_c01001{left:262.474000pt;}
.xb_c01001{left:294.882800pt;}
.x8_c01001{left:303.590533pt;}
.x9_c01001{left:357.080133pt;}
.x3_c01001{left:386.600000pt;}
}





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

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





.ff0_c01002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01002;src:url('chunks/assets/font_b67c31be05f81555ade29041.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.093262;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_c01002{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_c01002{vertical-align:0.000000px;}
.ls1_c01002{letter-spacing:0.000000px;}
.ls0_c01002{letter-spacing:0.472320px;}
.sc__c01002{text-shadow:none;}
.sc0_c01002{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__c01002{-webkit-text-stroke:0px transparent;}
.sc0_c01002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01002{word-spacing:-15.232320px;}
.ws1_c01002{word-spacing:0.000000px;}
._4_c01002{width:1.618200px;}
._2_c01002{width:3.277800px;}
._8_c01002{width:4.320000px;}
._5_c01002{width:6.120000px;}
._d_c01002{width:7.848000px;}
._9_c01002{width:9.576000px;}
._1_c01002{width:11.136900px;}
._0_c01002{width:12.456000px;}
._7_c01002{width:14.295000px;}
._3_c01002{width:15.480000px;}
._a_c01002{width:19.296000px;}
._c_c01002{width:20.376000px;}
._b_c01002{width:22.752000px;}
._e_c01002{width:26.208000px;}
._6_c01002{width:30.672000px;}
.fc1_c01002{color:transparent;}
.fc0_c01002{color:rgb(0,0,0);}
.fs1_c01002{font-size:59.040000px;}
.fs0_c01002{font-size:72.000000px;}
.y0_c01002{bottom:0.000000px;}
.y2_c01002{bottom:3.195000px;}
.y4_c01002{bottom:3.960000px;}
.y1_c01002{bottom:53.999985px;}
.y3_c01002{bottom:56.114985px;}
.y23_c01002{bottom:118.755015px;}
.y22_c01002{bottom:149.715015px;}
.y21_c01002{bottom:180.675015px;}
.y20_c01002{bottom:211.635015px;}
.y1f_c01002{bottom:242.595015px;}
.y1e_c01002{bottom:273.915015px;}
.y1d_c01002{bottom:304.875015px;}
.y1c_c01002{bottom:335.835015px;}
.y1b_c01002{bottom:366.795015px;}
.y1a_c01002{bottom:398.115015px;}
.y19_c01002{bottom:429.075015px;}
.y18_c01002{bottom:460.035015px;}
.y17_c01002{bottom:490.995015px;}
.y16_c01002{bottom:522.315015px;}
.y15_c01002{bottom:571.275015px;}
.y14_c01002{bottom:602.235015px;}
.y13_c01002{bottom:633.195015px;}
.y12_c01002{bottom:664.515015px;}
.y11_c01002{bottom:695.475015px;}
.y10_c01002{bottom:726.435015px;}
.yf_c01002{bottom:757.395015px;}
.ye_c01002{bottom:788.715015px;}
.yd_c01002{bottom:819.675015px;}
.yc_c01002{bottom:850.635015px;}
.yb_c01002{bottom:881.595015px;}
.ya_c01002{bottom:912.915015px;}
.y9_c01002{bottom:961.875015px;}
.y8_c01002{bottom:992.835015px;}
.y7_c01002{bottom:1023.795015px;}
.y6_c01002{bottom:1055.115015px;}
.y5_c01002{bottom:1086.075015px;}
.h4_c01002{height:17.640000px;}
.h3_c01002{height:63.175781px;}
.h2_c01002{height:1201.275000px;}
.h0_c01002{height:1262.835000px;}
.h1_c01002{height:1263.000000px;}
.w3_c01002{width:22.680000px;}
.w2_c01002{width:864.044850px;}
.w0_c01002{width:892.935000px;}
.w1_c01002{width:893.250000px;}
.x0_c01002{left:0.000000px;}
.x1_c01002{left:14.445000px;}
.x2_c01002{left:113.040150px;}
.x4_c01002{left:134.340090px;}
.x3_c01002{left:434.925000px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.ls1_c01002{letter-spacing:0.000000pt;}
.ls0_c01002{letter-spacing:0.419840pt;}
.ws0_c01002{word-spacing:-13.539840pt;}
.ws1_c01002{word-spacing:0.000000pt;}
._4_c01002{width:1.438400pt;}
._2_c01002{width:2.913600pt;}
._8_c01002{width:3.840000pt;}
._5_c01002{width:5.440000pt;}
._d_c01002{width:6.976000pt;}
._9_c01002{width:8.512000pt;}
._1_c01002{width:9.899467pt;}
._0_c01002{width:11.072000pt;}
._7_c01002{width:12.706667pt;}
._3_c01002{width:13.760000pt;}
._a_c01002{width:17.152000pt;}
._c_c01002{width:18.112000pt;}
._b_c01002{width:20.224000pt;}
._e_c01002{width:23.296000pt;}
._6_c01002{width:27.264000pt;}
.fs1_c01002{font-size:52.480000pt;}
.fs0_c01002{font-size:64.000000pt;}
.y0_c01002{bottom:0.000000pt;}
.y2_c01002{bottom:2.840000pt;}
.y4_c01002{bottom:3.520000pt;}
.y1_c01002{bottom:47.999987pt;}
.y3_c01002{bottom:49.879987pt;}
.y23_c01002{bottom:105.560013pt;}
.y22_c01002{bottom:133.080013pt;}
.y21_c01002{bottom:160.600013pt;}
.y20_c01002{bottom:188.120013pt;}
.y1f_c01002{bottom:215.640013pt;}
.y1e_c01002{bottom:243.480013pt;}
.y1d_c01002{bottom:271.000013pt;}
.y1c_c01002{bottom:298.520013pt;}
.y1b_c01002{bottom:326.040013pt;}
.y1a_c01002{bottom:353.880013pt;}
.y19_c01002{bottom:381.400013pt;}
.y18_c01002{bottom:408.920013pt;}
.y17_c01002{bottom:436.440013pt;}
.y16_c01002{bottom:464.280013pt;}
.y15_c01002{bottom:507.800013pt;}
.y14_c01002{bottom:535.320013pt;}
.y13_c01002{bottom:562.840013pt;}
.y12_c01002{bottom:590.680013pt;}
.y11_c01002{bottom:618.200013pt;}
.y10_c01002{bottom:645.720013pt;}
.yf_c01002{bottom:673.240013pt;}
.ye_c01002{bottom:701.080013pt;}
.yd_c01002{bottom:728.600013pt;}
.yc_c01002{bottom:756.120013pt;}
.yb_c01002{bottom:783.640013pt;}
.ya_c01002{bottom:811.480013pt;}
.y9_c01002{bottom:855.000013pt;}
.y8_c01002{bottom:882.520013pt;}
.y7_c01002{bottom:910.040013pt;}
.y6_c01002{bottom:937.880013pt;}
.y5_c01002{bottom:965.400013pt;}
.h4_c01002{height:15.680000pt;}
.h3_c01002{height:56.156250pt;}
.h2_c01002{height:1067.800000pt;}
.h0_c01002{height:1122.520000pt;}
.h1_c01002{height:1122.666667pt;}
.w3_c01002{width:20.160000pt;}
.w2_c01002{width:768.039867pt;}
.w0_c01002{width:793.720000pt;}
.w1_c01002{width:794.000000pt;}
.x0_c01002{left:0.000000pt;}
.x1_c01002{left:12.840000pt;}
.x2_c01002{left:100.480133pt;}
.x4_c01002{left:119.413413pt;}
.x3_c01002{left:386.600000pt;}
}





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

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





.ff0_c01003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01003;src:url('chunks/assets/font_a1698cfc865b57fc05ac496c.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.093262;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_c01003;src:url('chunks/assets/font_c688e2c11cac42c8c0ae52ad.woff2')format("woff");}.ff2_c01003{font-family:ff2_c01003;line-height:1.095703;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_c01003{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_c01003{vertical-align:0.000000px;}
.ls1_c01003{letter-spacing:0.000000px;}
.ls0_c01003{letter-spacing:0.472320px;}
.ls2_c01003{letter-spacing:12.384000px;}
.sc__c01003{text-shadow:none;}
.sc0_c01003{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__c01003{-webkit-text-stroke:0px transparent;}
.sc0_c01003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01003{word-spacing:-18.000000px;}
.ws0_c01003{word-spacing:-15.232320px;}
.ws2_c01003{word-spacing:0.000000px;}
._d_c01003{margin-left:-11.815800px;}
._5_c01003{width:1.440000px;}
._4_c01003{width:2.664000px;}
._2_c01003{width:3.816000px;}
._1_c01003{width:5.112000px;}
._3_c01003{width:6.696000px;}
._a_c01003{width:8.136000px;}
._0_c01003{width:9.216000px;}
._c_c01003{width:11.952000px;}
._7_c01003{width:13.392000px;}
._8_c01003{width:14.925600px;}
._6_c01003{width:15.992400px;}
._e_c01003{width:19.426200px;}
._b_c01003{width:23.688000px;}
._9_c01003{width:27.360000px;}
.fc1_c01003{color:transparent;}
.fc0_c01003{color:rgb(0,0,0);}
.fs1_c01003{font-size:59.040000px;}
.fs0_c01003{font-size:72.000000px;}
.y0_c01003{bottom:0.000000px;}
.y2_c01003{bottom:3.195000px;}
.y4_c01003{bottom:3.960000px;}
.y1_c01003{bottom:53.999985px;}
.y3_c01003{bottom:56.114985px;}
.y25_c01003{bottom:56.475000px;}
.y24_c01003{bottom:87.435000px;}
.y23_c01003{bottom:118.755015px;}
.y22_c01003{bottom:149.715015px;}
.y21_c01003{bottom:180.675015px;}
.y20_c01003{bottom:211.635015px;}
.y1f_c01003{bottom:242.595015px;}
.y1e_c01003{bottom:273.915015px;}
.y1d_c01003{bottom:304.875015px;}
.y1c_c01003{bottom:353.835015px;}
.y1b_c01003{bottom:384.795015px;}
.y1a_c01003{bottom:416.115015px;}
.y19_c01003{bottom:447.075015px;}
.y18_c01003{bottom:478.035015px;}
.y17_c01003{bottom:508.995015px;}
.y16_c01003{bottom:540.315015px;}
.y15_c01003{bottom:571.275015px;}
.y14_c01003{bottom:602.235015px;}
.y13_c01003{bottom:633.195015px;}
.y12_c01003{bottom:664.515015px;}
.y11_c01003{bottom:695.475015px;}
.y10_c01003{bottom:726.435015px;}
.yf_c01003{bottom:757.395015px;}
.ye_c01003{bottom:788.715015px;}
.yd_c01003{bottom:819.675015px;}
.yc_c01003{bottom:850.635015px;}
.yb_c01003{bottom:899.595015px;}
.ya_c01003{bottom:930.915015px;}
.y9_c01003{bottom:961.875015px;}
.y8_c01003{bottom:992.835015px;}
.y7_c01003{bottom:1023.795015px;}
.y6_c01003{bottom:1055.115015px;}
.y5_c01003{bottom:1086.075015px;}
.h4_c01003{height:17.640000px;}
.h3_c01003{height:63.175781px;}
.h5_c01003{height:63.351563px;}
.h2_c01003{height:1201.275000px;}
.h0_c01003{height:1262.835000px;}
.h1_c01003{height:1263.000000px;}
.w3_c01003{width:22.680000px;}
.w2_c01003{width:864.044850px;}
.w0_c01003{width:892.935000px;}
.w1_c01003{width:893.250000px;}
.x0_c01003{left:0.000000px;}
.x1_c01003{left:14.445000px;}
.x2_c01003{left:113.040150px;}
.x4_c01003{left:134.340090px;}
.x3_c01003{left:434.925000px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls1_c01003{letter-spacing:0.000000pt;}
.ls0_c01003{letter-spacing:0.419840pt;}
.ls2_c01003{letter-spacing:11.008000pt;}
.ws1_c01003{word-spacing:-16.000000pt;}
.ws0_c01003{word-spacing:-13.539840pt;}
.ws2_c01003{word-spacing:0.000000pt;}
._d_c01003{margin-left:-10.502933pt;}
._5_c01003{width:1.280000pt;}
._4_c01003{width:2.368000pt;}
._2_c01003{width:3.392000pt;}
._1_c01003{width:4.544000pt;}
._3_c01003{width:5.952000pt;}
._a_c01003{width:7.232000pt;}
._0_c01003{width:8.192000pt;}
._c_c01003{width:10.624000pt;}
._7_c01003{width:11.904000pt;}
._8_c01003{width:13.267200pt;}
._6_c01003{width:14.215467pt;}
._e_c01003{width:17.267733pt;}
._b_c01003{width:21.056000pt;}
._9_c01003{width:24.320000pt;}
.fs1_c01003{font-size:52.480000pt;}
.fs0_c01003{font-size:64.000000pt;}
.y0_c01003{bottom:0.000000pt;}
.y2_c01003{bottom:2.840000pt;}
.y4_c01003{bottom:3.520000pt;}
.y1_c01003{bottom:47.999987pt;}
.y3_c01003{bottom:49.879987pt;}
.y25_c01003{bottom:50.200000pt;}
.y24_c01003{bottom:77.720000pt;}
.y23_c01003{bottom:105.560013pt;}
.y22_c01003{bottom:133.080013pt;}
.y21_c01003{bottom:160.600013pt;}
.y20_c01003{bottom:188.120013pt;}
.y1f_c01003{bottom:215.640013pt;}
.y1e_c01003{bottom:243.480013pt;}
.y1d_c01003{bottom:271.000013pt;}
.y1c_c01003{bottom:314.520013pt;}
.y1b_c01003{bottom:342.040013pt;}
.y1a_c01003{bottom:369.880013pt;}
.y19_c01003{bottom:397.400013pt;}
.y18_c01003{bottom:424.920013pt;}
.y17_c01003{bottom:452.440013pt;}
.y16_c01003{bottom:480.280013pt;}
.y15_c01003{bottom:507.800013pt;}
.y14_c01003{bottom:535.320013pt;}
.y13_c01003{bottom:562.840013pt;}
.y12_c01003{bottom:590.680013pt;}
.y11_c01003{bottom:618.200013pt;}
.y10_c01003{bottom:645.720013pt;}
.yf_c01003{bottom:673.240013pt;}
.ye_c01003{bottom:701.080013pt;}
.yd_c01003{bottom:728.600013pt;}
.yc_c01003{bottom:756.120013pt;}
.yb_c01003{bottom:799.640013pt;}
.ya_c01003{bottom:827.480013pt;}
.y9_c01003{bottom:855.000013pt;}
.y8_c01003{bottom:882.520013pt;}
.y7_c01003{bottom:910.040013pt;}
.y6_c01003{bottom:937.880013pt;}
.y5_c01003{bottom:965.400013pt;}
.h4_c01003{height:15.680000pt;}
.h3_c01003{height:56.156250pt;}
.h5_c01003{height:56.312500pt;}
.h2_c01003{height:1067.800000pt;}
.h0_c01003{height:1122.520000pt;}
.h1_c01003{height:1122.666667pt;}
.w3_c01003{width:20.160000pt;}
.w2_c01003{width:768.039867pt;}
.w0_c01003{width:793.720000pt;}
.w1_c01003{width:794.000000pt;}
.x0_c01003{left:0.000000pt;}
.x1_c01003{left:12.840000pt;}
.x2_c01003{left:100.480133pt;}
.x4_c01003{left:119.413413pt;}
.x3_c01003{left:386.600000pt;}
}





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

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





.ff0_c01004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01004;src:url('chunks/assets/font_9312d01a1d5a94b3d9c978ad.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.093262;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_c01004;src:url('chunks/assets/font_606979e1053477136dbc7c1e.woff2')format("woff");}.ff2_c01004{font-family:ff2_c01004;line-height:1.104004;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_c01004;src:url('chunks/assets/font_e2e508a808654dba61057e38.woff2')format("woff");}.ff3_c01004{font-family:ff3_c01004;line-height:1.095703;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_c01004{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_c01004{vertical-align:0.000000px;}
.ls1_c01004{letter-spacing:0.000000px;}
.ls0_c01004{letter-spacing:0.472320px;}
.sc__c01004{text-shadow:none;}
.sc0_c01004{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__c01004{-webkit-text-stroke:0px transparent;}
.sc0_c01004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01004{word-spacing:-15.232320px;}
.ws1_c01004{word-spacing:0.000000px;}
.fc1_c01004{color:transparent;}
.fc0_c01004{color:rgb(0,0,0);}
.fs1_c01004{font-size:59.040000px;}
.fs0_c01004{font-size:72.000000px;}
.y0_c01004{bottom:0.000000px;}
.y2_c01004{bottom:3.195000px;}
.y4_c01004{bottom:3.960000px;}
.y1_c01004{bottom:53.999985px;}
.y3_c01004{bottom:56.114985px;}
.y1f_c01004{bottom:69.435000px;}
.y1e_c01004{bottom:108.315015px;}
.y1d_c01004{bottom:146.835015px;}
.y1c_c01004{bottom:185.715015px;}
.y1b_c01004{bottom:224.235015px;}
.y1a_c01004{bottom:263.115015px;}
.y19_c01004{bottom:301.635015px;}
.y18_c01004{bottom:340.515015px;}
.y17_c01004{bottom:379.035015px;}
.y16_c01004{bottom:417.915015px;}
.y15_c01004{bottom:456.435015px;}
.y14_c01004{bottom:495.315015px;}
.y13_c01004{bottom:533.835015px;}
.y12_c01004{bottom:572.715015px;}
.y11_c01004{bottom:611.235015px;}
.y10_c01004{bottom:650.115015px;}
.yf_c01004{bottom:688.635015px;}
.ye_c01004{bottom:727.515015px;}
.yd_c01004{bottom:766.035015px;}
.yc_c01004{bottom:804.915015px;}
.yb_c01004{bottom:843.435015px;}
.ya_c01004{bottom:882.315015px;}
.y9_c01004{bottom:920.835015px;}
.y8_c01004{bottom:959.715015px;}
.y7_c01004{bottom:998.235015px;}
.y6_c01004{bottom:1037.115015px;}
.y5_c01004{bottom:1086.075015px;}
.h4_c01004{height:17.640000px;}
.h3_c01004{height:63.175781px;}
.h6_c01004{height:63.351563px;}
.h5_c01004{height:63.949219px;}
.h2_c01004{height:1201.275000px;}
.h0_c01004{height:1262.835000px;}
.h1_c01004{height:1263.000000px;}
.w3_c01004{width:22.680000px;}
.w2_c01004{width:864.044850px;}
.w0_c01004{width:892.935000px;}
.w1_c01004{width:893.250000px;}
.x0_c01004{left:0.000000px;}
.x1_c01004{left:14.445000px;}
.x2_c01004{left:113.040150px;}
.x4_c01004{left:134.340090px;}
.x3_c01004{left:434.925000px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls1_c01004{letter-spacing:0.000000pt;}
.ls0_c01004{letter-spacing:0.419840pt;}
.ws0_c01004{word-spacing:-13.539840pt;}
.ws1_c01004{word-spacing:0.000000pt;}
.fs1_c01004{font-size:52.480000pt;}
.fs0_c01004{font-size:64.000000pt;}
.y0_c01004{bottom:0.000000pt;}
.y2_c01004{bottom:2.840000pt;}
.y4_c01004{bottom:3.520000pt;}
.y1_c01004{bottom:47.999987pt;}
.y3_c01004{bottom:49.879987pt;}
.y1f_c01004{bottom:61.720000pt;}
.y1e_c01004{bottom:96.280013pt;}
.y1d_c01004{bottom:130.520013pt;}
.y1c_c01004{bottom:165.080013pt;}
.y1b_c01004{bottom:199.320013pt;}
.y1a_c01004{bottom:233.880013pt;}
.y19_c01004{bottom:268.120013pt;}
.y18_c01004{bottom:302.680013pt;}
.y17_c01004{bottom:336.920013pt;}
.y16_c01004{bottom:371.480013pt;}
.y15_c01004{bottom:405.720013pt;}
.y14_c01004{bottom:440.280013pt;}
.y13_c01004{bottom:474.520013pt;}
.y12_c01004{bottom:509.080013pt;}
.y11_c01004{bottom:543.320013pt;}
.y10_c01004{bottom:577.880013pt;}
.yf_c01004{bottom:612.120013pt;}
.ye_c01004{bottom:646.680013pt;}
.yd_c01004{bottom:680.920013pt;}
.yc_c01004{bottom:715.480013pt;}
.yb_c01004{bottom:749.720013pt;}
.ya_c01004{bottom:784.280013pt;}
.y9_c01004{bottom:818.520013pt;}
.y8_c01004{bottom:853.080013pt;}
.y7_c01004{bottom:887.320013pt;}
.y6_c01004{bottom:921.880013pt;}
.y5_c01004{bottom:965.400013pt;}
.h4_c01004{height:15.680000pt;}
.h3_c01004{height:56.156250pt;}
.h6_c01004{height:56.312500pt;}
.h5_c01004{height:56.843750pt;}
.h2_c01004{height:1067.800000pt;}
.h0_c01004{height:1122.520000pt;}
.h1_c01004{height:1122.666667pt;}
.w3_c01004{width:20.160000pt;}
.w2_c01004{width:768.039867pt;}
.w0_c01004{width:793.720000pt;}
.w1_c01004{width:794.000000pt;}
.x0_c01004{left:0.000000pt;}
.x1_c01004{left:12.840000pt;}
.x2_c01004{left:100.480133pt;}
.x4_c01004{left:119.413413pt;}
.x3_c01004{left:386.600000pt;}
}





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

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





.ff0_c01005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01005;src:url('chunks/assets/font_8b50db165527a31b4baa522d.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.093262;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_c01005{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_c01005{vertical-align:0.000000px;}
.ls1_c01005{letter-spacing:0.000000px;}
.ls0_c01005{letter-spacing:0.472320px;}
.sc__c01005{text-shadow:none;}
.sc0_c01005{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__c01005{-webkit-text-stroke:0px transparent;}
.sc0_c01005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01005{word-spacing:-15.232320px;}
.ws1_c01005{word-spacing:0.000000px;}
.fc1_c01005{color:transparent;}
.fc0_c01005{color:rgb(0,0,0);}
.fs1_c01005{font-size:59.040000px;}
.fs0_c01005{font-size:72.000000px;}
.y0_c01005{bottom:0.000000px;}
.y2_c01005{bottom:3.195000px;}
.y4_c01005{bottom:3.960000px;}
.y1_c01005{bottom:53.999985px;}
.y3_c01005{bottom:56.114985px;}
.y1f_c01005{bottom:79.875000px;}
.y1e_c01005{bottom:118.395015px;}
.y1d_c01005{bottom:157.275015px;}
.y1c_c01005{bottom:195.795015px;}
.y1b_c01005{bottom:234.675015px;}
.y1a_c01005{bottom:273.195015px;}
.y19_c01005{bottom:312.075015px;}
.y18_c01005{bottom:350.595015px;}
.y17_c01005{bottom:389.475015px;}
.y16_c01005{bottom:427.995015px;}
.y15_c01005{bottom:466.875015px;}
.y14_c01005{bottom:505.395015px;}
.y13_c01005{bottom:544.275015px;}
.y12_c01005{bottom:582.795015px;}
.y11_c01005{bottom:621.675015px;}
.y10_c01005{bottom:660.195015px;}
.yf_c01005{bottom:699.075015px;}
.ye_c01005{bottom:737.595015px;}
.yd_c01005{bottom:776.475015px;}
.yc_c01005{bottom:814.995015px;}
.yb_c01005{bottom:853.875015px;}
.ya_c01005{bottom:892.395015px;}
.y9_c01005{bottom:931.275015px;}
.y8_c01005{bottom:969.795015px;}
.y7_c01005{bottom:1008.675015px;}
.y6_c01005{bottom:1047.195015px;}
.y5_c01005{bottom:1086.075015px;}
.h4_c01005{height:17.640000px;}
.h3_c01005{height:63.175781px;}
.h2_c01005{height:1201.275000px;}
.h0_c01005{height:1262.835000px;}
.h1_c01005{height:1263.000000px;}
.w3_c01005{width:22.680000px;}
.w2_c01005{width:864.044850px;}
.w0_c01005{width:892.935000px;}
.w1_c01005{width:893.250000px;}
.x0_c01005{left:0.000000px;}
.x1_c01005{left:14.445000px;}
.x2_c01005{left:113.040150px;}
.x3_c01005{left:434.925000px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls1_c01005{letter-spacing:0.000000pt;}
.ls0_c01005{letter-spacing:0.419840pt;}
.ws0_c01005{word-spacing:-13.539840pt;}
.ws1_c01005{word-spacing:0.000000pt;}
.fs1_c01005{font-size:52.480000pt;}
.fs0_c01005{font-size:64.000000pt;}
.y0_c01005{bottom:0.000000pt;}
.y2_c01005{bottom:2.840000pt;}
.y4_c01005{bottom:3.520000pt;}
.y1_c01005{bottom:47.999987pt;}
.y3_c01005{bottom:49.879987pt;}
.y1f_c01005{bottom:71.000000pt;}
.y1e_c01005{bottom:105.240013pt;}
.y1d_c01005{bottom:139.800013pt;}
.y1c_c01005{bottom:174.040013pt;}
.y1b_c01005{bottom:208.600013pt;}
.y1a_c01005{bottom:242.840013pt;}
.y19_c01005{bottom:277.400013pt;}
.y18_c01005{bottom:311.640013pt;}
.y17_c01005{bottom:346.200013pt;}
.y16_c01005{bottom:380.440013pt;}
.y15_c01005{bottom:415.000013pt;}
.y14_c01005{bottom:449.240013pt;}
.y13_c01005{bottom:483.800013pt;}
.y12_c01005{bottom:518.040013pt;}
.y11_c01005{bottom:552.600013pt;}
.y10_c01005{bottom:586.840013pt;}
.yf_c01005{bottom:621.400013pt;}
.ye_c01005{bottom:655.640013pt;}
.yd_c01005{bottom:690.200013pt;}
.yc_c01005{bottom:724.440013pt;}
.yb_c01005{bottom:759.000013pt;}
.ya_c01005{bottom:793.240013pt;}
.y9_c01005{bottom:827.800013pt;}
.y8_c01005{bottom:862.040013pt;}
.y7_c01005{bottom:896.600013pt;}
.y6_c01005{bottom:930.840013pt;}
.y5_c01005{bottom:965.400013pt;}
.h4_c01005{height:15.680000pt;}
.h3_c01005{height:56.156250pt;}
.h2_c01005{height:1067.800000pt;}
.h0_c01005{height:1122.520000pt;}
.h1_c01005{height:1122.666667pt;}
.w3_c01005{width:20.160000pt;}
.w2_c01005{width:768.039867pt;}
.w0_c01005{width:793.720000pt;}
.w1_c01005{width:794.000000pt;}
.x0_c01005{left:0.000000pt;}
.x1_c01005{left:12.840000pt;}
.x2_c01005{left:100.480133pt;}
.x3_c01005{left:386.600000pt;}
}





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

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





.ff0_c01006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01006;src:url('chunks/assets/font_70656c75256ad55e55672852.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.093262;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_c01006{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_c01006{vertical-align:0.000000px;}
.ls1_c01006{letter-spacing:0.000000px;}
.ls0_c01006{letter-spacing:0.472320px;}
.sc__c01006{text-shadow:none;}
.sc0_c01006{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__c01006{-webkit-text-stroke:0px transparent;}
.sc0_c01006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01006{word-spacing:-15.232320px;}
.ws1_c01006{word-spacing:0.000000px;}
._1_c01006{width:1.584000px;}
._6_c01006{width:3.600000px;}
._4_c01006{width:6.696000px;}
._5_c01006{width:11.016000px;}
._3_c01006{width:13.680000px;}
._2_c01006{width:16.272000px;}
._0_c01006{width:23.112000px;}
.fc1_c01006{color:transparent;}
.fc0_c01006{color:rgb(0,0,0);}
.fs1_c01006{font-size:59.040000px;}
.fs0_c01006{font-size:72.000000px;}
.y0_c01006{bottom:0.000000px;}
.y2_c01006{bottom:3.195000px;}
.y4_c01006{bottom:3.960000px;}
.y1_c01006{bottom:53.999985px;}
.y3_c01006{bottom:56.114985px;}
.y21_c01006{bottom:71.235000px;}
.y20_c01006{bottom:102.195015px;}
.y1f_c01006{bottom:133.515015px;}
.y1e_c01006{bottom:164.475015px;}
.y1d_c01006{bottom:195.435015px;}
.y1c_c01006{bottom:226.395015px;}
.y1b_c01006{bottom:257.715015px;}
.y1a_c01006{bottom:288.675015px;}
.y19_c01006{bottom:319.635015px;}
.y18_c01006{bottom:350.595015px;}
.y17_c01006{bottom:389.475015px;}
.y16_c01006{bottom:427.995015px;}
.y15_c01006{bottom:466.875015px;}
.y14_c01006{bottom:505.395015px;}
.y13_c01006{bottom:544.275015px;}
.y12_c01006{bottom:582.795015px;}
.y11_c01006{bottom:621.675015px;}
.y10_c01006{bottom:660.195015px;}
.yf_c01006{bottom:699.075015px;}
.ye_c01006{bottom:737.595015px;}
.yd_c01006{bottom:776.475015px;}
.yc_c01006{bottom:814.995015px;}
.yb_c01006{bottom:853.875015px;}
.ya_c01006{bottom:892.395015px;}
.y9_c01006{bottom:931.275015px;}
.y8_c01006{bottom:969.795015px;}
.y7_c01006{bottom:1008.675015px;}
.y6_c01006{bottom:1047.195015px;}
.y5_c01006{bottom:1086.075015px;}
.h4_c01006{height:17.640000px;}
.h3_c01006{height:63.175781px;}
.h2_c01006{height:1201.275000px;}
.h0_c01006{height:1262.835000px;}
.h1_c01006{height:1263.000000px;}
.w3_c01006{width:22.680000px;}
.w2_c01006{width:864.044850px;}
.w0_c01006{width:892.935000px;}
.w1_c01006{width:893.250000px;}
.x0_c01006{left:0.000000px;}
.x1_c01006{left:14.445000px;}
.x2_c01006{left:113.040150px;}
.x4_c01006{left:134.340090px;}
.x3_c01006{left:434.925000px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls1_c01006{letter-spacing:0.000000pt;}
.ls0_c01006{letter-spacing:0.419840pt;}
.ws0_c01006{word-spacing:-13.539840pt;}
.ws1_c01006{word-spacing:0.000000pt;}
._1_c01006{width:1.408000pt;}
._6_c01006{width:3.200000pt;}
._4_c01006{width:5.952000pt;}
._5_c01006{width:9.792000pt;}
._3_c01006{width:12.160000pt;}
._2_c01006{width:14.464000pt;}
._0_c01006{width:20.544000pt;}
.fs1_c01006{font-size:52.480000pt;}
.fs0_c01006{font-size:64.000000pt;}
.y0_c01006{bottom:0.000000pt;}
.y2_c01006{bottom:2.840000pt;}
.y4_c01006{bottom:3.520000pt;}
.y1_c01006{bottom:47.999987pt;}
.y3_c01006{bottom:49.879987pt;}
.y21_c01006{bottom:63.320000pt;}
.y20_c01006{bottom:90.840013pt;}
.y1f_c01006{bottom:118.680013pt;}
.y1e_c01006{bottom:146.200013pt;}
.y1d_c01006{bottom:173.720013pt;}
.y1c_c01006{bottom:201.240013pt;}
.y1b_c01006{bottom:229.080013pt;}
.y1a_c01006{bottom:256.600013pt;}
.y19_c01006{bottom:284.120013pt;}
.y18_c01006{bottom:311.640013pt;}
.y17_c01006{bottom:346.200013pt;}
.y16_c01006{bottom:380.440013pt;}
.y15_c01006{bottom:415.000013pt;}
.y14_c01006{bottom:449.240013pt;}
.y13_c01006{bottom:483.800013pt;}
.y12_c01006{bottom:518.040013pt;}
.y11_c01006{bottom:552.600013pt;}
.y10_c01006{bottom:586.840013pt;}
.yf_c01006{bottom:621.400013pt;}
.ye_c01006{bottom:655.640013pt;}
.yd_c01006{bottom:690.200013pt;}
.yc_c01006{bottom:724.440013pt;}
.yb_c01006{bottom:759.000013pt;}
.ya_c01006{bottom:793.240013pt;}
.y9_c01006{bottom:827.800013pt;}
.y8_c01006{bottom:862.040013pt;}
.y7_c01006{bottom:896.600013pt;}
.y6_c01006{bottom:930.840013pt;}
.y5_c01006{bottom:965.400013pt;}
.h4_c01006{height:15.680000pt;}
.h3_c01006{height:56.156250pt;}
.h2_c01006{height:1067.800000pt;}
.h0_c01006{height:1122.520000pt;}
.h1_c01006{height:1122.666667pt;}
.w3_c01006{width:20.160000pt;}
.w2_c01006{width:768.039867pt;}
.w0_c01006{width:793.720000pt;}
.w1_c01006{width:794.000000pt;}
.x0_c01006{left:0.000000pt;}
.x1_c01006{left:12.840000pt;}
.x2_c01006{left:100.480133pt;}
.x4_c01006{left:119.413413pt;}
.x3_c01006{left:386.600000pt;}
}





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

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





.ff0_c01007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01007;src:url('chunks/assets/font_dfee3f7ce3a2d12fb9a362b5.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.093262;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_c01007;src:url('chunks/assets/font_b4c859feb52c0240f4557f03.woff2')format("woff");}.ff2_c01007{font-family:ff2_c01007;line-height:1.104004;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_c01007{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_c01007{vertical-align:0.000000px;}
.ls1_c01007{letter-spacing:0.000000px;}
.ls0_c01007{letter-spacing:0.472320px;}
.sc__c01007{text-shadow:none;}
.sc0_c01007{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__c01007{-webkit-text-stroke:0px transparent;}
.sc0_c01007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01007{word-spacing:-15.232320px;}
.ws1_c01007{word-spacing:0.000000px;}
._1_c01007{width:1.368000px;}
._0_c01007{width:6.120000px;}
._8_c01007{width:7.524000px;}
._2_c01007{width:9.072000px;}
._4_c01007{width:11.448000px;}
._7_c01007{width:12.456000px;}
._6_c01007{width:16.056000px;}
._9_c01007{width:19.152000px;}
._5_c01007{width:20.160000px;}
._3_c01007{width:21.672000px;}
.fc1_c01007{color:transparent;}
.fc0_c01007{color:rgb(0,0,0);}
.fs1_c01007{font-size:59.040000px;}
.fs0_c01007{font-size:72.000000px;}
.y0_c01007{bottom:0.000000px;}
.y2_c01007{bottom:3.195000px;}
.y4_c01007{bottom:3.960000px;}
.y1_c01007{bottom:53.999985px;}
.y3_c01007{bottom:56.114985px;}
.y1e_c01007{bottom:75.915000px;}
.y1d_c01007{bottom:124.875015px;}
.y1c_c01007{bottom:173.835015px;}
.y1b_c01007{bottom:222.795015px;}
.y1a_c01007{bottom:272.115015px;}
.y19_c01007{bottom:321.075015px;}
.y18_c01007{bottom:370.035015px;}
.y17_c01007{bottom:418.995015px;}
.y16_c01007{bottom:468.315015px;}
.y15_c01007{bottom:517.275015px;}
.y14_c01007{bottom:566.235015px;}
.y13_c01007{bottom:615.195015px;}
.y12_c01007{bottom:664.515015px;}
.y11_c01007{bottom:695.475015px;}
.y10_c01007{bottom:726.435015px;}
.yf_c01007{bottom:757.395015px;}
.ye_c01007{bottom:788.715015px;}
.yd_c01007{bottom:819.675015px;}
.yc_c01007{bottom:850.635015px;}
.yb_c01007{bottom:881.595015px;}
.ya_c01007{bottom:930.915015px;}
.y9_c01007{bottom:961.875015px;}
.y8_c01007{bottom:992.835015px;}
.y7_c01007{bottom:1023.795015px;}
.y6_c01007{bottom:1055.115015px;}
.y5_c01007{bottom:1086.075015px;}
.h4_c01007{height:17.640000px;}
.h3_c01007{height:63.175781px;}
.h5_c01007{height:63.949219px;}
.h2_c01007{height:1201.275000px;}
.h0_c01007{height:1262.835000px;}
.h1_c01007{height:1263.000000px;}
.w3_c01007{width:22.680000px;}
.w2_c01007{width:864.044850px;}
.w0_c01007{width:892.935000px;}
.w1_c01007{width:893.250000px;}
.x0_c01007{left:0.000000px;}
.x1_c01007{left:14.445000px;}
.x2_c01007{left:113.040150px;}
.x4_c01007{left:134.340090px;}
.x3_c01007{left:434.925000px;}
@media print{
.v0_c01007{vertical-align:0.000000pt;}
.ls1_c01007{letter-spacing:0.000000pt;}
.ls0_c01007{letter-spacing:0.419840pt;}
.ws0_c01007{word-spacing:-13.539840pt;}
.ws1_c01007{word-spacing:0.000000pt;}
._1_c01007{width:1.216000pt;}
._0_c01007{width:5.440000pt;}
._8_c01007{width:6.688000pt;}
._2_c01007{width:8.064000pt;}
._4_c01007{width:10.176000pt;}
._7_c01007{width:11.072000pt;}
._6_c01007{width:14.272000pt;}
._9_c01007{width:17.024000pt;}
._5_c01007{width:17.920000pt;}
._3_c01007{width:19.264000pt;}
.fs1_c01007{font-size:52.480000pt;}
.fs0_c01007{font-size:64.000000pt;}
.y0_c01007{bottom:0.000000pt;}
.y2_c01007{bottom:2.840000pt;}
.y4_c01007{bottom:3.520000pt;}
.y1_c01007{bottom:47.999987pt;}
.y3_c01007{bottom:49.879987pt;}
.y1e_c01007{bottom:67.480000pt;}
.y1d_c01007{bottom:111.000013pt;}
.y1c_c01007{bottom:154.520013pt;}
.y1b_c01007{bottom:198.040013pt;}
.y1a_c01007{bottom:241.880013pt;}
.y19_c01007{bottom:285.400013pt;}
.y18_c01007{bottom:328.920013pt;}
.y17_c01007{bottom:372.440013pt;}
.y16_c01007{bottom:416.280013pt;}
.y15_c01007{bottom:459.800013pt;}
.y14_c01007{bottom:503.320013pt;}
.y13_c01007{bottom:546.840013pt;}
.y12_c01007{bottom:590.680013pt;}
.y11_c01007{bottom:618.200013pt;}
.y10_c01007{bottom:645.720013pt;}
.yf_c01007{bottom:673.240013pt;}
.ye_c01007{bottom:701.080013pt;}
.yd_c01007{bottom:728.600013pt;}
.yc_c01007{bottom:756.120013pt;}
.yb_c01007{bottom:783.640013pt;}
.ya_c01007{bottom:827.480013pt;}
.y9_c01007{bottom:855.000013pt;}
.y8_c01007{bottom:882.520013pt;}
.y7_c01007{bottom:910.040013pt;}
.y6_c01007{bottom:937.880013pt;}
.y5_c01007{bottom:965.400013pt;}
.h4_c01007{height:15.680000pt;}
.h3_c01007{height:56.156250pt;}
.h5_c01007{height:56.843750pt;}
.h2_c01007{height:1067.800000pt;}
.h0_c01007{height:1122.520000pt;}
.h1_c01007{height:1122.666667pt;}
.w3_c01007{width:20.160000pt;}
.w2_c01007{width:768.039867pt;}
.w0_c01007{width:793.720000pt;}
.w1_c01007{width:794.000000pt;}
.x0_c01007{left:0.000000pt;}
.x1_c01007{left:12.840000pt;}
.x2_c01007{left:100.480133pt;}
.x4_c01007{left:119.413413pt;}
.x3_c01007{left:386.600000pt;}
}





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

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





.ff0_c01008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01008;src:url('chunks/assets/font_b9bc621916723cade7ce8412.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.093262;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_c01008{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_c01008{vertical-align:0.000000px;}
.ls1_c01008{letter-spacing:0.000000px;}
.ls0_c01008{letter-spacing:0.472320px;}
.sc__c01008{text-shadow:none;}
.sc0_c01008{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__c01008{-webkit-text-stroke:0px transparent;}
.sc0_c01008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01008{word-spacing:-15.232320px;}
.ws1_c01008{word-spacing:0.000000px;}
._0_c01008{margin-left:-18.000000px;}
.fc1_c01008{color:transparent;}
.fc0_c01008{color:rgb(0,0,0);}
.fs1_c01008{font-size:59.040000px;}
.fs0_c01008{font-size:72.000000px;}
.y6_c01008{bottom:-11.160000px;}
.y0_c01008{bottom:0.000000px;}
.y2_c01008{bottom:3.195000px;}
.y4_c01008{bottom:3.960000px;}
.y1_c01008{bottom:53.999985px;}
.y3_c01008{bottom:56.114985px;}
.y5_c01008{bottom:1110.915000px;}
.h5_c01008{height:5.399964px;}
.h4_c01008{height:17.640000px;}
.h3_c01008{height:63.175781px;}
.h2_c01008{height:1201.275000px;}
.h0_c01008{height:1262.835000px;}
.h1_c01008{height:1263.000000px;}
.w3_c01008{width:22.680000px;}
.w5_c01008{width:39.240000px;}
.w4_c01008{width:66.240000px;}
.w2_c01008{width:864.044850px;}
.w0_c01008{width:892.935000px;}
.w1_c01008{width:893.250000px;}
.x0_c01008{left:0.000000px;}
.x5_c01008{left:3.240150px;}
.x1_c01008{left:14.445000px;}
.x2_c01008{left:113.040150px;}
.x4_c01008{left:405.045000px;}
.x6_c01008{left:432.045000px;}
.x3_c01008{left:434.925000px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls1_c01008{letter-spacing:0.000000pt;}
.ls0_c01008{letter-spacing:0.419840pt;}
.ws0_c01008{word-spacing:-13.539840pt;}
.ws1_c01008{word-spacing:0.000000pt;}
._0_c01008{margin-left:-16.000000pt;}
.fs1_c01008{font-size:52.480000pt;}
.fs0_c01008{font-size:64.000000pt;}
.y6_c01008{bottom:-9.920000pt;}
.y0_c01008{bottom:0.000000pt;}
.y2_c01008{bottom:2.840000pt;}
.y4_c01008{bottom:3.520000pt;}
.y1_c01008{bottom:47.999987pt;}
.y3_c01008{bottom:49.879987pt;}
.y5_c01008{bottom:987.480000pt;}
.h5_c01008{height:4.799968pt;}
.h4_c01008{height:15.680000pt;}
.h3_c01008{height:56.156250pt;}
.h2_c01008{height:1067.800000pt;}
.h0_c01008{height:1122.520000pt;}
.h1_c01008{height:1122.666667pt;}
.w3_c01008{width:20.160000pt;}
.w5_c01008{width:34.880000pt;}
.w4_c01008{width:58.880000pt;}
.w2_c01008{width:768.039867pt;}
.w0_c01008{width:793.720000pt;}
.w1_c01008{width:794.000000pt;}
.x0_c01008{left:0.000000pt;}
.x5_c01008{left:2.880133pt;}
.x1_c01008{left:12.840000pt;}
.x2_c01008{left:100.480133pt;}
.x4_c01008{left:360.040000pt;}
.x6_c01008{left:384.040000pt;}
.x3_c01008{left:386.600000pt;}
}





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

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





.ff0_c01009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01009;src:url('chunks/assets/font_59684a331766ca57f7d373ad.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.093262;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_c01009;src:url('chunks/assets/font_e03c8ffdbb049a87eedc9580.woff2')format("woff");}.ff2_c01009{font-family:ff2_c01009;line-height:1.104004;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_c01009;src:url('chunks/assets/font_cf488752eaf1fc56a22f4f7b.woff2')format("woff");}.ff3_c01009{font-family:ff3_c01009;line-height:1.095703;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_c01009{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);}
.v2_c01009{vertical-align:-27.360000px;}
.v0_c01009{vertical-align:0.000000px;}
.v1_c01009{vertical-align:27.360000px;}
.ls3_c01009{letter-spacing:0.000000px;}
.ls2_c01009{letter-spacing:0.236160px;}
.ls0_c01009{letter-spacing:0.472320px;}
.ls1_c01009{letter-spacing:0.738720px;}
.sc__c01009{text-shadow:none;}
.sc0_c01009{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__c01009{-webkit-text-stroke:0px transparent;}
.sc0_c01009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01009{word-spacing:-15.232320px;}
.ws1_c01009{word-spacing:-10.458720px;}
.ws2_c01009{word-spacing:0.000000px;}
._e_c01009{margin-left:-2.780280px;}
._2_c01009{width:1.584000px;}
._4_c01009{width:3.312000px;}
._1_c01009{width:5.112000px;}
._3_c01009{width:6.336000px;}
._d_c01009{width:7.488000px;}
._7_c01009{width:8.496000px;}
._b_c01009{width:9.720000px;}
._10_c01009{width:13.032000px;}
._5_c01009{width:14.184000px;}
._c_c01009{width:15.624000px;}
._a_c01009{width:16.920000px;}
._0_c01009{width:19.872000px;}
._8_c01009{width:20.952000px;}
._9_c01009{width:23.472000px;}
._f_c01009{width:24.696000px;}
._6_c01009{width:30.024000px;}
.fc1_c01009{color:transparent;}
.fc0_c01009{color:rgb(0,0,0);}
.fs2_c01009{font-size:38.880000px;}
.fs1_c01009{font-size:59.040000px;}
.fs0_c01009{font-size:72.000000px;}
.y0_c01009{bottom:0.000000px;}
.y2_c01009{bottom:3.195000px;}
.y4_c01009{bottom:3.960000px;}
.y1_c01009{bottom:53.999985px;}
.y3_c01009{bottom:56.114985px;}
.y27_c01009{bottom:62.595015px;}
.y26_c01009{bottom:73.395000px;}
.y25_c01009{bottom:103.275015px;}
.y24_c01009{bottom:134.235015px;}
.y23_c01009{bottom:165.195015px;}
.y22_c01009{bottom:214.515015px;}
.y21_c01009{bottom:235.035015px;}
.y20_c01009{bottom:255.915015px;}
.y1f_c01009{bottom:276.435015px;}
.y1e_c01009{bottom:297.315015px;}
.y1d_c01009{bottom:317.835015px;}
.y1c_c01009{bottom:338.715015px;}
.y1b_c01009{bottom:359.235015px;}
.y1a_c01009{bottom:380.115015px;}
.y19_c01009{bottom:429.075015px;}
.y18_c01009{bottom:460.035015px;}
.y17_c01009{bottom:490.995015px;}
.y16_c01009{bottom:522.315015px;}
.y15_c01009{bottom:553.275015px;}
.y14_c01009{bottom:584.235015px;}
.y13_c01009{bottom:615.195015px;}
.y12_c01009{bottom:646.515015px;}
.y11_c01009{bottom:677.475015px;}
.y10_c01009{bottom:726.435015px;}
.yf_c01009{bottom:757.395015px;}
.ye_c01009{bottom:788.715015px;}
.yd_c01009{bottom:819.675015px;}
.yc_c01009{bottom:850.635015px;}
.yb_c01009{bottom:881.595015px;}
.ya_c01009{bottom:912.915015px;}
.y9_c01009{bottom:943.875015px;}
.y8_c01009{bottom:974.835015px;}
.y7_c01009{bottom:1005.795015px;}
.y6_c01009{bottom:1037.115015px;}
.y5_c01009{bottom:1086.075015px;}
.h4_c01009{height:17.640000px;}
.h6_c01009{height:34.114922px;}
.h3_c01009{height:63.175781px;}
.h5_c01009{height:63.949219px;}
.h2_c01009{height:1201.275000px;}
.h0_c01009{height:1262.835000px;}
.h1_c01009{height:1263.000000px;}
.w3_c01009{width:22.680000px;}
.w2_c01009{width:864.044850px;}
.w0_c01009{width:892.935000px;}
.w1_c01009{width:893.250000px;}
.x0_c01009{left:0.000000px;}
.x1_c01009{left:14.445000px;}
.x2_c01009{left:113.040150px;}
.x4_c01009{left:134.340090px;}
.x5_c01009{left:166.215000px;}
.x3_c01009{left:434.925000px;}
@media print{
.v2_c01009{vertical-align:-24.320000pt;}
.v0_c01009{vertical-align:0.000000pt;}
.v1_c01009{vertical-align:24.320000pt;}
.ls3_c01009{letter-spacing:0.000000pt;}
.ls2_c01009{letter-spacing:0.209920pt;}
.ls0_c01009{letter-spacing:0.419840pt;}
.ls1_c01009{letter-spacing:0.656640pt;}
.ws0_c01009{word-spacing:-13.539840pt;}
.ws1_c01009{word-spacing:-9.296640pt;}
.ws2_c01009{word-spacing:0.000000pt;}
._e_c01009{margin-left:-2.471360pt;}
._2_c01009{width:1.408000pt;}
._4_c01009{width:2.944000pt;}
._1_c01009{width:4.544000pt;}
._3_c01009{width:5.632000pt;}
._d_c01009{width:6.656000pt;}
._7_c01009{width:7.552000pt;}
._b_c01009{width:8.640000pt;}
._10_c01009{width:11.584000pt;}
._5_c01009{width:12.608000pt;}
._c_c01009{width:13.888000pt;}
._a_c01009{width:15.040000pt;}
._0_c01009{width:17.664000pt;}
._8_c01009{width:18.624000pt;}
._9_c01009{width:20.864000pt;}
._f_c01009{width:21.952000pt;}
._6_c01009{width:26.688000pt;}
.fs2_c01009{font-size:34.560000pt;}
.fs1_c01009{font-size:52.480000pt;}
.fs0_c01009{font-size:64.000000pt;}
.y0_c01009{bottom:0.000000pt;}
.y2_c01009{bottom:2.840000pt;}
.y4_c01009{bottom:3.520000pt;}
.y1_c01009{bottom:47.999987pt;}
.y3_c01009{bottom:49.879987pt;}
.y27_c01009{bottom:55.640013pt;}
.y26_c01009{bottom:65.240000pt;}
.y25_c01009{bottom:91.800013pt;}
.y24_c01009{bottom:119.320013pt;}
.y23_c01009{bottom:146.840013pt;}
.y22_c01009{bottom:190.680013pt;}
.y21_c01009{bottom:208.920013pt;}
.y20_c01009{bottom:227.480013pt;}
.y1f_c01009{bottom:245.720013pt;}
.y1e_c01009{bottom:264.280013pt;}
.y1d_c01009{bottom:282.520013pt;}
.y1c_c01009{bottom:301.080013pt;}
.y1b_c01009{bottom:319.320013pt;}
.y1a_c01009{bottom:337.880013pt;}
.y19_c01009{bottom:381.400013pt;}
.y18_c01009{bottom:408.920013pt;}
.y17_c01009{bottom:436.440013pt;}
.y16_c01009{bottom:464.280013pt;}
.y15_c01009{bottom:491.800013pt;}
.y14_c01009{bottom:519.320013pt;}
.y13_c01009{bottom:546.840013pt;}
.y12_c01009{bottom:574.680013pt;}
.y11_c01009{bottom:602.200013pt;}
.y10_c01009{bottom:645.720013pt;}
.yf_c01009{bottom:673.240013pt;}
.ye_c01009{bottom:701.080013pt;}
.yd_c01009{bottom:728.600013pt;}
.yc_c01009{bottom:756.120013pt;}
.yb_c01009{bottom:783.640013pt;}
.ya_c01009{bottom:811.480013pt;}
.y9_c01009{bottom:839.000013pt;}
.y8_c01009{bottom:866.520013pt;}
.y7_c01009{bottom:894.040013pt;}
.y6_c01009{bottom:921.880013pt;}
.y5_c01009{bottom:965.400013pt;}
.h4_c01009{height:15.680000pt;}
.h6_c01009{height:30.324375pt;}
.h3_c01009{height:56.156250pt;}
.h5_c01009{height:56.843750pt;}
.h2_c01009{height:1067.800000pt;}
.h0_c01009{height:1122.520000pt;}
.h1_c01009{height:1122.666667pt;}
.w3_c01009{width:20.160000pt;}
.w2_c01009{width:768.039867pt;}
.w0_c01009{width:793.720000pt;}
.w1_c01009{width:794.000000pt;}
.x0_c01009{left:0.000000pt;}
.x1_c01009{left:12.840000pt;}
.x2_c01009{left:100.480133pt;}
.x4_c01009{left:119.413413pt;}
.x5_c01009{left:147.746667pt;}
.x3_c01009{left:386.600000pt;}
}





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

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





.ff0_c01010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01010;src:url('chunks/assets/font_b87d675e2d5a7ca128d431ed.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.093262;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_c01010{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_c01010{vertical-align:0.000000px;}
.ls1_c01010{letter-spacing:0.000000px;}
.ls0_c01010{letter-spacing:0.472320px;}
.sc__c01010{text-shadow:none;}
.sc0_c01010{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__c01010{-webkit-text-stroke:0px transparent;}
.sc0_c01010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01010{word-spacing:-15.232320px;}
.ws1_c01010{word-spacing:0.000000px;}
._5_c01010{margin-left:-1.416600px;}
._7_c01010{width:1.008000px;}
._8_c01010{width:2.016000px;}
._b_c01010{width:3.096000px;}
._a_c01010{width:4.536000px;}
._1_c01010{width:5.616000px;}
._3_c01010{width:7.488000px;}
._9_c01010{width:8.640000px;}
._2_c01010{width:10.872000px;}
._0_c01010{width:12.384000px;}
._6_c01010{width:13.680000px;}
._e_c01010{width:16.200000px;}
._4_c01010{width:19.512000px;}
._d_c01010{width:21.960000px;}
._c_c01010{width:22.968000px;}
._10_c01010{width:28.872000px;}
._f_c01010{width:39.024000px;}
.fc1_c01010{color:transparent;}
.fc0_c01010{color:rgb(0,0,0);}
.fs1_c01010{font-size:59.040000px;}
.fs0_c01010{font-size:72.000000px;}
.y0_c01010{bottom:0.000000px;}
.y2_c01010{bottom:3.195000px;}
.y4_c01010{bottom:3.960000px;}
.y1_c01010{bottom:53.999985px;}
.y3_c01010{bottom:56.114985px;}
.y23_c01010{bottom:82.755000px;}
.y22_c01010{bottom:113.715015px;}
.y21_c01010{bottom:144.675015px;}
.y20_c01010{bottom:175.635015px;}
.y1f_c01010{bottom:224.595015px;}
.y1e_c01010{bottom:255.915015px;}
.y1d_c01010{bottom:286.875015px;}
.y1c_c01010{bottom:317.835015px;}
.y1b_c01010{bottom:348.795015px;}
.y1a_c01010{bottom:380.115015px;}
.y19_c01010{bottom:411.075015px;}
.y18_c01010{bottom:442.035015px;}
.y17_c01010{bottom:472.995015px;}
.y16_c01010{bottom:504.315015px;}
.y15_c01010{bottom:535.275015px;}
.y14_c01010{bottom:566.235015px;}
.y13_c01010{bottom:597.195015px;}
.y12_c01010{bottom:646.515015px;}
.y11_c01010{bottom:677.475015px;}
.y10_c01010{bottom:708.435015px;}
.yf_c01010{bottom:739.395015px;}
.ye_c01010{bottom:770.715015px;}
.yd_c01010{bottom:801.675015px;}
.yc_c01010{bottom:832.635015px;}
.yb_c01010{bottom:863.595015px;}
.ya_c01010{bottom:912.915015px;}
.y9_c01010{bottom:943.875015px;}
.y8_c01010{bottom:974.835015px;}
.y7_c01010{bottom:1005.795015px;}
.y6_c01010{bottom:1055.115015px;}
.y5_c01010{bottom:1086.075015px;}
.h4_c01010{height:17.640000px;}
.h3_c01010{height:63.175781px;}
.h2_c01010{height:1201.275000px;}
.h0_c01010{height:1262.835000px;}
.h1_c01010{height:1263.000000px;}
.w3_c01010{width:22.680000px;}
.w2_c01010{width:864.044850px;}
.w0_c01010{width:892.935000px;}
.w1_c01010{width:893.250000px;}
.x0_c01010{left:0.000000px;}
.x1_c01010{left:14.445000px;}
.x2_c01010{left:113.040150px;}
.x4_c01010{left:134.340090px;}
.x3_c01010{left:434.925000px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls1_c01010{letter-spacing:0.000000pt;}
.ls0_c01010{letter-spacing:0.419840pt;}
.ws0_c01010{word-spacing:-13.539840pt;}
.ws1_c01010{word-spacing:0.000000pt;}
._5_c01010{margin-left:-1.259200pt;}
._7_c01010{width:0.896000pt;}
._8_c01010{width:1.792000pt;}
._b_c01010{width:2.752000pt;}
._a_c01010{width:4.032000pt;}
._1_c01010{width:4.992000pt;}
._3_c01010{width:6.656000pt;}
._9_c01010{width:7.680000pt;}
._2_c01010{width:9.664000pt;}
._0_c01010{width:11.008000pt;}
._6_c01010{width:12.160000pt;}
._e_c01010{width:14.400000pt;}
._4_c01010{width:17.344000pt;}
._d_c01010{width:19.520000pt;}
._c_c01010{width:20.416000pt;}
._10_c01010{width:25.664000pt;}
._f_c01010{width:34.688000pt;}
.fs1_c01010{font-size:52.480000pt;}
.fs0_c01010{font-size:64.000000pt;}
.y0_c01010{bottom:0.000000pt;}
.y2_c01010{bottom:2.840000pt;}
.y4_c01010{bottom:3.520000pt;}
.y1_c01010{bottom:47.999987pt;}
.y3_c01010{bottom:49.879987pt;}
.y23_c01010{bottom:73.560000pt;}
.y22_c01010{bottom:101.080013pt;}
.y21_c01010{bottom:128.600013pt;}
.y20_c01010{bottom:156.120013pt;}
.y1f_c01010{bottom:199.640013pt;}
.y1e_c01010{bottom:227.480013pt;}
.y1d_c01010{bottom:255.000013pt;}
.y1c_c01010{bottom:282.520013pt;}
.y1b_c01010{bottom:310.040013pt;}
.y1a_c01010{bottom:337.880013pt;}
.y19_c01010{bottom:365.400013pt;}
.y18_c01010{bottom:392.920013pt;}
.y17_c01010{bottom:420.440013pt;}
.y16_c01010{bottom:448.280013pt;}
.y15_c01010{bottom:475.800013pt;}
.y14_c01010{bottom:503.320013pt;}
.y13_c01010{bottom:530.840013pt;}
.y12_c01010{bottom:574.680013pt;}
.y11_c01010{bottom:602.200013pt;}
.y10_c01010{bottom:629.720013pt;}
.yf_c01010{bottom:657.240013pt;}
.ye_c01010{bottom:685.080013pt;}
.yd_c01010{bottom:712.600013pt;}
.yc_c01010{bottom:740.120013pt;}
.yb_c01010{bottom:767.640013pt;}
.ya_c01010{bottom:811.480013pt;}
.y9_c01010{bottom:839.000013pt;}
.y8_c01010{bottom:866.520013pt;}
.y7_c01010{bottom:894.040013pt;}
.y6_c01010{bottom:937.880013pt;}
.y5_c01010{bottom:965.400013pt;}
.h4_c01010{height:15.680000pt;}
.h3_c01010{height:56.156250pt;}
.h2_c01010{height:1067.800000pt;}
.h0_c01010{height:1122.520000pt;}
.h1_c01010{height:1122.666667pt;}
.w3_c01010{width:20.160000pt;}
.w2_c01010{width:768.039867pt;}
.w0_c01010{width:793.720000pt;}
.w1_c01010{width:794.000000pt;}
.x0_c01010{left:0.000000pt;}
.x1_c01010{left:12.840000pt;}
.x2_c01010{left:100.480133pt;}
.x4_c01010{left:119.413413pt;}
.x3_c01010{left:386.600000pt;}
}





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

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





.ff0_c01011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01011;src:url('chunks/assets/font_d152304ef4786efa865fba32.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.093262;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_c01011{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_c01011{vertical-align:0.000000px;}
.ls1_c01011{letter-spacing:0.000000px;}
.ls0_c01011{letter-spacing:0.472320px;}
.sc__c01011{text-shadow:none;}
.sc0_c01011{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__c01011{-webkit-text-stroke:0px transparent;}
.sc0_c01011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01011{word-spacing:-15.232320px;}
.ws1_c01011{word-spacing:0.000000px;}
._3_c01011{width:1.512000px;}
._7_c01011{width:3.240000px;}
._2_c01011{width:4.608000px;}
._5_c01011{width:6.336000px;}
._a_c01011{width:7.776000px;}
._b_c01011{width:9.216000px;}
._6_c01011{width:12.744000px;}
._0_c01011{width:14.746800px;}
._4_c01011{width:15.809400px;}
._8_c01011{width:21.312000px;}
._9_c01011{width:22.320000px;}
._c_c01011{width:23.328000px;}
._1_c01011{width:24.984000px;}
._d_c01011{width:36.072000px;}
.fc1_c01011{color:transparent;}
.fc0_c01011{color:rgb(0,0,0);}
.fs1_c01011{font-size:59.040000px;}
.fs0_c01011{font-size:72.000000px;}
.y0_c01011{bottom:0.000000px;}
.y2_c01011{bottom:3.195000px;}
.y4_c01011{bottom:3.960000px;}
.y1_c01011{bottom:53.999985px;}
.y3_c01011{bottom:56.114985px;}
.y24_c01011{bottom:69.435000px;}
.y23_c01011{bottom:100.755015px;}
.y22_c01011{bottom:131.715015px;}
.y21_c01011{bottom:162.675015px;}
.y20_c01011{bottom:193.635015px;}
.y1f_c01011{bottom:242.595015px;}
.y1e_c01011{bottom:273.915015px;}
.y1d_c01011{bottom:304.875015px;}
.y1c_c01011{bottom:335.835015px;}
.y1b_c01011{bottom:366.795015px;}
.y1a_c01011{bottom:398.115015px;}
.y19_c01011{bottom:429.075015px;}
.y18_c01011{bottom:460.035015px;}
.y17_c01011{bottom:508.995015px;}
.y16_c01011{bottom:540.315015px;}
.y15_c01011{bottom:571.275015px;}
.y14_c01011{bottom:602.235015px;}
.y13_c01011{bottom:633.195015px;}
.y12_c01011{bottom:664.515015px;}
.y11_c01011{bottom:695.475015px;}
.y10_c01011{bottom:726.435015px;}
.yf_c01011{bottom:757.395015px;}
.ye_c01011{bottom:788.715015px;}
.yd_c01011{bottom:837.675015px;}
.yc_c01011{bottom:868.635015px;}
.yb_c01011{bottom:899.595015px;}
.ya_c01011{bottom:930.915015px;}
.y9_c01011{bottom:961.875015px;}
.y8_c01011{bottom:992.835015px;}
.y7_c01011{bottom:1023.795015px;}
.y6_c01011{bottom:1055.115015px;}
.y5_c01011{bottom:1086.075015px;}
.h4_c01011{height:17.640000px;}
.h3_c01011{height:63.175781px;}
.h2_c01011{height:1201.275000px;}
.h0_c01011{height:1262.835000px;}
.h1_c01011{height:1263.000000px;}
.w3_c01011{width:22.680000px;}
.w2_c01011{width:864.044850px;}
.w0_c01011{width:892.935000px;}
.w1_c01011{width:893.250000px;}
.x0_c01011{left:0.000000px;}
.x1_c01011{left:14.445000px;}
.x2_c01011{left:113.040150px;}
.x4_c01011{left:134.340090px;}
.x3_c01011{left:434.925000px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.ls1_c01011{letter-spacing:0.000000pt;}
.ls0_c01011{letter-spacing:0.419840pt;}
.ws0_c01011{word-spacing:-13.539840pt;}
.ws1_c01011{word-spacing:0.000000pt;}
._3_c01011{width:1.344000pt;}
._7_c01011{width:2.880000pt;}
._2_c01011{width:4.096000pt;}
._5_c01011{width:5.632000pt;}
._a_c01011{width:6.912000pt;}
._b_c01011{width:8.192000pt;}
._6_c01011{width:11.328000pt;}
._0_c01011{width:13.108267pt;}
._4_c01011{width:14.052800pt;}
._8_c01011{width:18.944000pt;}
._9_c01011{width:19.840000pt;}
._c_c01011{width:20.736000pt;}
._1_c01011{width:22.208000pt;}
._d_c01011{width:32.064000pt;}
.fs1_c01011{font-size:52.480000pt;}
.fs0_c01011{font-size:64.000000pt;}
.y0_c01011{bottom:0.000000pt;}
.y2_c01011{bottom:2.840000pt;}
.y4_c01011{bottom:3.520000pt;}
.y1_c01011{bottom:47.999987pt;}
.y3_c01011{bottom:49.879987pt;}
.y24_c01011{bottom:61.720000pt;}
.y23_c01011{bottom:89.560013pt;}
.y22_c01011{bottom:117.080013pt;}
.y21_c01011{bottom:144.600013pt;}
.y20_c01011{bottom:172.120013pt;}
.y1f_c01011{bottom:215.640013pt;}
.y1e_c01011{bottom:243.480013pt;}
.y1d_c01011{bottom:271.000013pt;}
.y1c_c01011{bottom:298.520013pt;}
.y1b_c01011{bottom:326.040013pt;}
.y1a_c01011{bottom:353.880013pt;}
.y19_c01011{bottom:381.400013pt;}
.y18_c01011{bottom:408.920013pt;}
.y17_c01011{bottom:452.440013pt;}
.y16_c01011{bottom:480.280013pt;}
.y15_c01011{bottom:507.800013pt;}
.y14_c01011{bottom:535.320013pt;}
.y13_c01011{bottom:562.840013pt;}
.y12_c01011{bottom:590.680013pt;}
.y11_c01011{bottom:618.200013pt;}
.y10_c01011{bottom:645.720013pt;}
.yf_c01011{bottom:673.240013pt;}
.ye_c01011{bottom:701.080013pt;}
.yd_c01011{bottom:744.600013pt;}
.yc_c01011{bottom:772.120013pt;}
.yb_c01011{bottom:799.640013pt;}
.ya_c01011{bottom:827.480013pt;}
.y9_c01011{bottom:855.000013pt;}
.y8_c01011{bottom:882.520013pt;}
.y7_c01011{bottom:910.040013pt;}
.y6_c01011{bottom:937.880013pt;}
.y5_c01011{bottom:965.400013pt;}
.h4_c01011{height:15.680000pt;}
.h3_c01011{height:56.156250pt;}
.h2_c01011{height:1067.800000pt;}
.h0_c01011{height:1122.520000pt;}
.h1_c01011{height:1122.666667pt;}
.w3_c01011{width:20.160000pt;}
.w2_c01011{width:768.039867pt;}
.w0_c01011{width:793.720000pt;}
.w1_c01011{width:794.000000pt;}
.x0_c01011{left:0.000000pt;}
.x1_c01011{left:12.840000pt;}
.x2_c01011{left:100.480133pt;}
.x4_c01011{left:119.413413pt;}
.x3_c01011{left:386.600000pt;}
}





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

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





.ff0_c01012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01012;src:url('chunks/assets/font_7414a4841cd25a6b4617d3e2.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.093262;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_c01012;src:url('chunks/assets/font_78c9901f0b02b574171a86ba.woff2')format("woff");}.ff2_c01012{font-family:ff2_c01012;line-height:1.095703;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_c01012{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_c01012{vertical-align:0.000000px;}
.ls1_c01012{letter-spacing:0.000000px;}
.ls0_c01012{letter-spacing:0.472320px;}
.sc__c01012{text-shadow:none;}
.sc0_c01012{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__c01012{-webkit-text-stroke:0px transparent;}
.sc0_c01012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01012{word-spacing:-18.000000px;}
.ws0_c01012{word-spacing:-15.232320px;}
.ws2_c01012{word-spacing:0.000000px;}
._7_c01012{width:1.296000px;}
._2_c01012{width:2.376000px;}
._9_c01012{width:3.744000px;}
._4_c01012{width:4.968000px;}
._8_c01012{width:6.264000px;}
._0_c01012{width:8.208000px;}
._a_c01012{width:9.216000px;}
._6_c01012{width:10.224000px;}
._d_c01012{width:12.168000px;}
._1_c01012{width:15.120000px;}
._b_c01012{width:19.368000px;}
._c_c01012{width:20.376000px;}
._3_c01012{width:27.648000px;}
._5_c01012{width:43.848000px;}
.fc1_c01012{color:transparent;}
.fc0_c01012{color:rgb(0,0,0);}
.fs1_c01012{font-size:59.040000px;}
.fs0_c01012{font-size:72.000000px;}
.y0_c01012{bottom:0.000000px;}
.y2_c01012{bottom:3.195000px;}
.y4_c01012{bottom:3.960000px;}
.y1_c01012{bottom:53.999985px;}
.y3_c01012{bottom:56.114985px;}
.y24_c01012{bottom:69.435000px;}
.y23_c01012{bottom:100.755015px;}
.y22_c01012{bottom:149.715015px;}
.y21_c01012{bottom:180.675015px;}
.y20_c01012{bottom:211.635015px;}
.y1f_c01012{bottom:242.595015px;}
.y1e_c01012{bottom:273.915015px;}
.y1d_c01012{bottom:304.875015px;}
.y1c_c01012{bottom:335.835015px;}
.y1b_c01012{bottom:366.795015px;}
.y1a_c01012{bottom:398.115015px;}
.y19_c01012{bottom:447.075015px;}
.y18_c01012{bottom:478.035015px;}
.y17_c01012{bottom:508.995015px;}
.y16_c01012{bottom:540.315015px;}
.y15_c01012{bottom:571.275015px;}
.y14_c01012{bottom:602.235015px;}
.y13_c01012{bottom:651.195015px;}
.y12_c01012{bottom:682.515015px;}
.y11_c01012{bottom:713.475015px;}
.y10_c01012{bottom:744.435015px;}
.yf_c01012{bottom:775.395015px;}
.ye_c01012{bottom:806.715015px;}
.yd_c01012{bottom:837.675015px;}
.yc_c01012{bottom:868.635015px;}
.yb_c01012{bottom:899.595015px;}
.ya_c01012{bottom:930.915015px;}
.y9_c01012{bottom:961.875015px;}
.y8_c01012{bottom:992.835015px;}
.y7_c01012{bottom:1023.795015px;}
.y6_c01012{bottom:1055.115015px;}
.y5_c01012{bottom:1086.075015px;}
.h4_c01012{height:17.640000px;}
.h3_c01012{height:63.175781px;}
.h5_c01012{height:63.351563px;}
.h2_c01012{height:1201.275000px;}
.h0_c01012{height:1262.835000px;}
.h1_c01012{height:1263.000000px;}
.w3_c01012{width:22.680000px;}
.w2_c01012{width:864.044850px;}
.w0_c01012{width:892.935000px;}
.w1_c01012{width:893.250000px;}
.x0_c01012{left:0.000000px;}
.x1_c01012{left:14.445000px;}
.x2_c01012{left:113.040150px;}
.x4_c01012{left:134.340090px;}
.x3_c01012{left:434.925000px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.ls1_c01012{letter-spacing:0.000000pt;}
.ls0_c01012{letter-spacing:0.419840pt;}
.ws1_c01012{word-spacing:-16.000000pt;}
.ws0_c01012{word-spacing:-13.539840pt;}
.ws2_c01012{word-spacing:0.000000pt;}
._7_c01012{width:1.152000pt;}
._2_c01012{width:2.112000pt;}
._9_c01012{width:3.328000pt;}
._4_c01012{width:4.416000pt;}
._8_c01012{width:5.568000pt;}
._0_c01012{width:7.296000pt;}
._a_c01012{width:8.192000pt;}
._6_c01012{width:9.088000pt;}
._d_c01012{width:10.816000pt;}
._1_c01012{width:13.440000pt;}
._b_c01012{width:17.216000pt;}
._c_c01012{width:18.112000pt;}
._3_c01012{width:24.576000pt;}
._5_c01012{width:38.976000pt;}
.fs1_c01012{font-size:52.480000pt;}
.fs0_c01012{font-size:64.000000pt;}
.y0_c01012{bottom:0.000000pt;}
.y2_c01012{bottom:2.840000pt;}
.y4_c01012{bottom:3.520000pt;}
.y1_c01012{bottom:47.999987pt;}
.y3_c01012{bottom:49.879987pt;}
.y24_c01012{bottom:61.720000pt;}
.y23_c01012{bottom:89.560013pt;}
.y22_c01012{bottom:133.080013pt;}
.y21_c01012{bottom:160.600013pt;}
.y20_c01012{bottom:188.120013pt;}
.y1f_c01012{bottom:215.640013pt;}
.y1e_c01012{bottom:243.480013pt;}
.y1d_c01012{bottom:271.000013pt;}
.y1c_c01012{bottom:298.520013pt;}
.y1b_c01012{bottom:326.040013pt;}
.y1a_c01012{bottom:353.880013pt;}
.y19_c01012{bottom:397.400013pt;}
.y18_c01012{bottom:424.920013pt;}
.y17_c01012{bottom:452.440013pt;}
.y16_c01012{bottom:480.280013pt;}
.y15_c01012{bottom:507.800013pt;}
.y14_c01012{bottom:535.320013pt;}
.y13_c01012{bottom:578.840013pt;}
.y12_c01012{bottom:606.680013pt;}
.y11_c01012{bottom:634.200013pt;}
.y10_c01012{bottom:661.720013pt;}
.yf_c01012{bottom:689.240013pt;}
.ye_c01012{bottom:717.080013pt;}
.yd_c01012{bottom:744.600013pt;}
.yc_c01012{bottom:772.120013pt;}
.yb_c01012{bottom:799.640013pt;}
.ya_c01012{bottom:827.480013pt;}
.y9_c01012{bottom:855.000013pt;}
.y8_c01012{bottom:882.520013pt;}
.y7_c01012{bottom:910.040013pt;}
.y6_c01012{bottom:937.880013pt;}
.y5_c01012{bottom:965.400013pt;}
.h4_c01012{height:15.680000pt;}
.h3_c01012{height:56.156250pt;}
.h5_c01012{height:56.312500pt;}
.h2_c01012{height:1067.800000pt;}
.h0_c01012{height:1122.520000pt;}
.h1_c01012{height:1122.666667pt;}
.w3_c01012{width:20.160000pt;}
.w2_c01012{width:768.039867pt;}
.w0_c01012{width:793.720000pt;}
.w1_c01012{width:794.000000pt;}
.x0_c01012{left:0.000000pt;}
.x1_c01012{left:12.840000pt;}
.x2_c01012{left:100.480133pt;}
.x4_c01012{left:119.413413pt;}
.x3_c01012{left:386.600000pt;}
}





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

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





.ff0_c01013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01013;src:url('chunks/assets/font_c58f11750ca817759360af6a.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.093262;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_c01013;src:url('chunks/assets/font_f8ecd58983837730f8d88ab5.woff2')format("woff");}.ff2_c01013{font-family:ff2_c01013;line-height:1.095703;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_c01013{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_c01013{vertical-align:0.000000px;}
.ls1_c01013{letter-spacing:0.000000px;}
.ls0_c01013{letter-spacing:0.472320px;}
.sc__c01013{text-shadow:none;}
.sc0_c01013{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__c01013{-webkit-text-stroke:0px transparent;}
.sc0_c01013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01013{word-spacing:-18.000000px;}
.ws0_c01013{word-spacing:-15.232320px;}
.ws2_c01013{word-spacing:0.000000px;}
._8_c01013{width:1.440000px;}
._9_c01013{width:2.808000px;}
._3_c01013{width:4.176000px;}
._1_c01013{width:5.256000px;}
._0_c01013{width:6.408000px;}
._7_c01013{width:9.648000px;}
._2_c01013{width:11.016000px;}
._c_c01013{width:12.456000px;}
._5_c01013{width:15.120000px;}
._4_c01013{width:16.704000px;}
._a_c01013{width:19.656000px;}
._6_c01013{width:22.536000px;}
._b_c01013{width:24.408000px;}
._d_c01013{width:29.160000px;}
.fc1_c01013{color:transparent;}
.fc0_c01013{color:rgb(0,0,0);}
.fs1_c01013{font-size:59.040000px;}
.fs0_c01013{font-size:72.000000px;}
.y0_c01013{bottom:0.000000px;}
.y2_c01013{bottom:3.195000px;}
.y4_c01013{bottom:3.960000px;}
.y1_c01013{bottom:53.999985px;}
.y3_c01013{bottom:56.114985px;}
.y23_c01013{bottom:118.755015px;}
.y22_c01013{bottom:149.715015px;}
.y21_c01013{bottom:180.675015px;}
.y20_c01013{bottom:211.635015px;}
.y1f_c01013{bottom:242.595015px;}
.y1e_c01013{bottom:273.915015px;}
.y1d_c01013{bottom:304.875015px;}
.y1c_c01013{bottom:353.835015px;}
.y1b_c01013{bottom:384.795015px;}
.y1a_c01013{bottom:416.115015px;}
.y19_c01013{bottom:447.075015px;}
.y18_c01013{bottom:478.035015px;}
.y17_c01013{bottom:508.995015px;}
.y16_c01013{bottom:540.315015px;}
.y15_c01013{bottom:571.275015px;}
.y14_c01013{bottom:602.235015px;}
.y13_c01013{bottom:633.195015px;}
.y12_c01013{bottom:664.515015px;}
.y11_c01013{bottom:695.475015px;}
.y10_c01013{bottom:744.435015px;}
.yf_c01013{bottom:775.395015px;}
.ye_c01013{bottom:806.715015px;}
.yd_c01013{bottom:837.675015px;}
.yc_c01013{bottom:868.635015px;}
.yb_c01013{bottom:899.595015px;}
.ya_c01013{bottom:930.915015px;}
.y9_c01013{bottom:961.875015px;}
.y8_c01013{bottom:992.835015px;}
.y7_c01013{bottom:1023.795015px;}
.y6_c01013{bottom:1055.115015px;}
.y5_c01013{bottom:1086.075015px;}
.h4_c01013{height:17.640000px;}
.h3_c01013{height:63.175781px;}
.h5_c01013{height:63.351563px;}
.h2_c01013{height:1201.275000px;}
.h0_c01013{height:1262.835000px;}
.h1_c01013{height:1263.000000px;}
.w3_c01013{width:22.680000px;}
.w2_c01013{width:864.044850px;}
.w0_c01013{width:892.935000px;}
.w1_c01013{width:893.250000px;}
.x0_c01013{left:0.000000px;}
.x1_c01013{left:14.445000px;}
.x2_c01013{left:113.040150px;}
.x4_c01013{left:134.340090px;}
.x3_c01013{left:434.925000px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.ls1_c01013{letter-spacing:0.000000pt;}
.ls0_c01013{letter-spacing:0.419840pt;}
.ws1_c01013{word-spacing:-16.000000pt;}
.ws0_c01013{word-spacing:-13.539840pt;}
.ws2_c01013{word-spacing:0.000000pt;}
._8_c01013{width:1.280000pt;}
._9_c01013{width:2.496000pt;}
._3_c01013{width:3.712000pt;}
._1_c01013{width:4.672000pt;}
._0_c01013{width:5.696000pt;}
._7_c01013{width:8.576000pt;}
._2_c01013{width:9.792000pt;}
._c_c01013{width:11.072000pt;}
._5_c01013{width:13.440000pt;}
._4_c01013{width:14.848000pt;}
._a_c01013{width:17.472000pt;}
._6_c01013{width:20.032000pt;}
._b_c01013{width:21.696000pt;}
._d_c01013{width:25.920000pt;}
.fs1_c01013{font-size:52.480000pt;}
.fs0_c01013{font-size:64.000000pt;}
.y0_c01013{bottom:0.000000pt;}
.y2_c01013{bottom:2.840000pt;}
.y4_c01013{bottom:3.520000pt;}
.y1_c01013{bottom:47.999987pt;}
.y3_c01013{bottom:49.879987pt;}
.y23_c01013{bottom:105.560013pt;}
.y22_c01013{bottom:133.080013pt;}
.y21_c01013{bottom:160.600013pt;}
.y20_c01013{bottom:188.120013pt;}
.y1f_c01013{bottom:215.640013pt;}
.y1e_c01013{bottom:243.480013pt;}
.y1d_c01013{bottom:271.000013pt;}
.y1c_c01013{bottom:314.520013pt;}
.y1b_c01013{bottom:342.040013pt;}
.y1a_c01013{bottom:369.880013pt;}
.y19_c01013{bottom:397.400013pt;}
.y18_c01013{bottom:424.920013pt;}
.y17_c01013{bottom:452.440013pt;}
.y16_c01013{bottom:480.280013pt;}
.y15_c01013{bottom:507.800013pt;}
.y14_c01013{bottom:535.320013pt;}
.y13_c01013{bottom:562.840013pt;}
.y12_c01013{bottom:590.680013pt;}
.y11_c01013{bottom:618.200013pt;}
.y10_c01013{bottom:661.720013pt;}
.yf_c01013{bottom:689.240013pt;}
.ye_c01013{bottom:717.080013pt;}
.yd_c01013{bottom:744.600013pt;}
.yc_c01013{bottom:772.120013pt;}
.yb_c01013{bottom:799.640013pt;}
.ya_c01013{bottom:827.480013pt;}
.y9_c01013{bottom:855.000013pt;}
.y8_c01013{bottom:882.520013pt;}
.y7_c01013{bottom:910.040013pt;}
.y6_c01013{bottom:937.880013pt;}
.y5_c01013{bottom:965.400013pt;}
.h4_c01013{height:15.680000pt;}
.h3_c01013{height:56.156250pt;}
.h5_c01013{height:56.312500pt;}
.h2_c01013{height:1067.800000pt;}
.h0_c01013{height:1122.520000pt;}
.h1_c01013{height:1122.666667pt;}
.w3_c01013{width:20.160000pt;}
.w2_c01013{width:768.039867pt;}
.w0_c01013{width:793.720000pt;}
.w1_c01013{width:794.000000pt;}
.x0_c01013{left:0.000000pt;}
.x1_c01013{left:12.840000pt;}
.x2_c01013{left:100.480133pt;}
.x4_c01013{left:119.413413pt;}
.x3_c01013{left:386.600000pt;}
}





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

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





.ff0_c01014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01014;src:url('chunks/assets/font_7dec12f9c4daea629d024fa6.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.093262;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_c01014{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_c01014{vertical-align:0.000000px;}
.ls1_c01014{letter-spacing:0.000000px;}
.ls0_c01014{letter-spacing:0.472320px;}
.sc__c01014{text-shadow:none;}
.sc0_c01014{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__c01014{-webkit-text-stroke:0px transparent;}
.sc0_c01014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01014{word-spacing:-15.232320px;}
.ws1_c01014{word-spacing:0.000000px;}
._0_c01014{width:1.110840px;}
._1_c01014{width:2.448000px;}
._4_c01014{width:4.309020px;}
._6_c01014{width:5.770980px;}
._a_c01014{width:6.899160px;}
._9_c01014{width:8.064000px;}
._10_c01014{width:9.216000px;}
._b_c01014{width:10.224000px;}
._c_c01014{width:11.376000px;}
._2_c01014{width:12.960000px;}
._e_c01014{width:15.048000px;}
._7_c01014{width:19.656000px;}
._f_c01014{width:22.032000px;}
._3_c01014{width:23.196600px;}
._8_c01014{width:27.288000px;}
._5_c01014{width:32.760000px;}
._d_c01014{width:34.200000px;}
.fc1_c01014{color:transparent;}
.fc0_c01014{color:rgb(0,0,0);}
.fs1_c01014{font-size:59.040000px;}
.fs0_c01014{font-size:72.000000px;}
.y0_c01014{bottom:0.000000px;}
.y2_c01014{bottom:3.195000px;}
.y4_c01014{bottom:3.960000px;}
.y1_c01014{bottom:53.999985px;}
.y3_c01014{bottom:56.114985px;}
.y25_c01014{bottom:56.475000px;}
.y24_c01014{bottom:87.435000px;}
.y23_c01014{bottom:118.755015px;}
.y22_c01014{bottom:149.715015px;}
.y21_c01014{bottom:180.675015px;}
.y20_c01014{bottom:211.635015px;}
.y1f_c01014{bottom:242.595015px;}
.y1e_c01014{bottom:273.915015px;}
.y1d_c01014{bottom:304.875015px;}
.y1c_c01014{bottom:353.835015px;}
.y1b_c01014{bottom:384.795015px;}
.y1a_c01014{bottom:416.115015px;}
.y19_c01014{bottom:447.075015px;}
.y18_c01014{bottom:478.035015px;}
.y17_c01014{bottom:508.995015px;}
.y16_c01014{bottom:540.315015px;}
.y15_c01014{bottom:571.275015px;}
.y14_c01014{bottom:602.235015px;}
.y13_c01014{bottom:633.195015px;}
.y12_c01014{bottom:664.515015px;}
.y11_c01014{bottom:695.475015px;}
.y10_c01014{bottom:726.435015px;}
.yf_c01014{bottom:775.395015px;}
.ye_c01014{bottom:806.715015px;}
.yd_c01014{bottom:837.675015px;}
.yc_c01014{bottom:868.635015px;}
.yb_c01014{bottom:899.595015px;}
.ya_c01014{bottom:930.915015px;}
.y9_c01014{bottom:961.875015px;}
.y8_c01014{bottom:992.835015px;}
.y7_c01014{bottom:1023.795015px;}
.y6_c01014{bottom:1055.115015px;}
.y5_c01014{bottom:1086.075015px;}
.h4_c01014{height:17.640000px;}
.h3_c01014{height:63.175781px;}
.h2_c01014{height:1201.275000px;}
.h0_c01014{height:1262.835000px;}
.h1_c01014{height:1263.000000px;}
.w3_c01014{width:22.680000px;}
.w2_c01014{width:864.044850px;}
.w0_c01014{width:892.935000px;}
.w1_c01014{width:893.250000px;}
.x0_c01014{left:0.000000px;}
.x1_c01014{left:14.445000px;}
.x2_c01014{left:113.040150px;}
.x4_c01014{left:134.340090px;}
.x3_c01014{left:434.925000px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls1_c01014{letter-spacing:0.000000pt;}
.ls0_c01014{letter-spacing:0.419840pt;}
.ws0_c01014{word-spacing:-13.539840pt;}
.ws1_c01014{word-spacing:0.000000pt;}
._0_c01014{width:0.987413pt;}
._1_c01014{width:2.176000pt;}
._4_c01014{width:3.830240pt;}
._6_c01014{width:5.129760pt;}
._a_c01014{width:6.132587pt;}
._9_c01014{width:7.168000pt;}
._10_c01014{width:8.192000pt;}
._b_c01014{width:9.088000pt;}
._c_c01014{width:10.112000pt;}
._2_c01014{width:11.520000pt;}
._e_c01014{width:13.376000pt;}
._7_c01014{width:17.472000pt;}
._f_c01014{width:19.584000pt;}
._3_c01014{width:20.619200pt;}
._8_c01014{width:24.256000pt;}
._5_c01014{width:29.120000pt;}
._d_c01014{width:30.400000pt;}
.fs1_c01014{font-size:52.480000pt;}
.fs0_c01014{font-size:64.000000pt;}
.y0_c01014{bottom:0.000000pt;}
.y2_c01014{bottom:2.840000pt;}
.y4_c01014{bottom:3.520000pt;}
.y1_c01014{bottom:47.999987pt;}
.y3_c01014{bottom:49.879987pt;}
.y25_c01014{bottom:50.200000pt;}
.y24_c01014{bottom:77.720000pt;}
.y23_c01014{bottom:105.560013pt;}
.y22_c01014{bottom:133.080013pt;}
.y21_c01014{bottom:160.600013pt;}
.y20_c01014{bottom:188.120013pt;}
.y1f_c01014{bottom:215.640013pt;}
.y1e_c01014{bottom:243.480013pt;}
.y1d_c01014{bottom:271.000013pt;}
.y1c_c01014{bottom:314.520013pt;}
.y1b_c01014{bottom:342.040013pt;}
.y1a_c01014{bottom:369.880013pt;}
.y19_c01014{bottom:397.400013pt;}
.y18_c01014{bottom:424.920013pt;}
.y17_c01014{bottom:452.440013pt;}
.y16_c01014{bottom:480.280013pt;}
.y15_c01014{bottom:507.800013pt;}
.y14_c01014{bottom:535.320013pt;}
.y13_c01014{bottom:562.840013pt;}
.y12_c01014{bottom:590.680013pt;}
.y11_c01014{bottom:618.200013pt;}
.y10_c01014{bottom:645.720013pt;}
.yf_c01014{bottom:689.240013pt;}
.ye_c01014{bottom:717.080013pt;}
.yd_c01014{bottom:744.600013pt;}
.yc_c01014{bottom:772.120013pt;}
.yb_c01014{bottom:799.640013pt;}
.ya_c01014{bottom:827.480013pt;}
.y9_c01014{bottom:855.000013pt;}
.y8_c01014{bottom:882.520013pt;}
.y7_c01014{bottom:910.040013pt;}
.y6_c01014{bottom:937.880013pt;}
.y5_c01014{bottom:965.400013pt;}
.h4_c01014{height:15.680000pt;}
.h3_c01014{height:56.156250pt;}
.h2_c01014{height:1067.800000pt;}
.h0_c01014{height:1122.520000pt;}
.h1_c01014{height:1122.666667pt;}
.w3_c01014{width:20.160000pt;}
.w2_c01014{width:768.039867pt;}
.w0_c01014{width:793.720000pt;}
.w1_c01014{width:794.000000pt;}
.x0_c01014{left:0.000000pt;}
.x1_c01014{left:12.840000pt;}
.x2_c01014{left:100.480133pt;}
.x4_c01014{left:119.413413pt;}
.x3_c01014{left:386.600000pt;}
}





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

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





.ff0_c01015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01015;src:url('chunks/assets/font_51f6362b8121df674ecbf56d.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.093262;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_c01015{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_c01015{vertical-align:0.000000px;}
.ls1_c01015{letter-spacing:0.000000px;}
.ls0_c01015{letter-spacing:0.472320px;}
.sc__c01015{text-shadow:none;}
.sc0_c01015{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__c01015{-webkit-text-stroke:0px transparent;}
.sc0_c01015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01015{word-spacing:-15.232320px;}
.ws1_c01015{word-spacing:0.000000px;}
._2_c01015{width:4.608000px;}
._4_c01015{width:5.616000px;}
._1_c01015{width:8.352000px;}
._3_c01015{width:10.584000px;}
._0_c01015{width:12.456000px;}
._5_c01015{width:15.480000px;}
.fc1_c01015{color:transparent;}
.fc0_c01015{color:rgb(0,0,0);}
.fs1_c01015{font-size:59.040000px;}
.fs0_c01015{font-size:72.000000px;}
.y0_c01015{bottom:0.000000px;}
.y2_c01015{bottom:3.195000px;}
.y4_c01015{bottom:3.960000px;}
.y1_c01015{bottom:53.999985px;}
.y3_c01015{bottom:56.114985px;}
.yf_c01015{bottom:757.395015px;}
.ye_c01015{bottom:788.715015px;}
.yd_c01015{bottom:819.675015px;}
.yc_c01015{bottom:850.635015px;}
.yb_c01015{bottom:881.595015px;}
.ya_c01015{bottom:912.915015px;}
.y9_c01015{bottom:943.875015px;}
.y8_c01015{bottom:974.835015px;}
.y7_c01015{bottom:1005.795015px;}
.y6_c01015{bottom:1055.115015px;}
.y5_c01015{bottom:1086.075015px;}
.h4_c01015{height:17.640000px;}
.h3_c01015{height:63.175781px;}
.h2_c01015{height:1201.275000px;}
.h0_c01015{height:1262.835000px;}
.h1_c01015{height:1263.000000px;}
.w3_c01015{width:22.680000px;}
.w2_c01015{width:864.044850px;}
.w0_c01015{width:892.935000px;}
.w1_c01015{width:893.250000px;}
.x0_c01015{left:0.000000px;}
.x1_c01015{left:14.445000px;}
.x2_c01015{left:113.040150px;}
.x4_c01015{left:134.340090px;}
.x3_c01015{left:434.925000px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls1_c01015{letter-spacing:0.000000pt;}
.ls0_c01015{letter-spacing:0.419840pt;}
.ws0_c01015{word-spacing:-13.539840pt;}
.ws1_c01015{word-spacing:0.000000pt;}
._2_c01015{width:4.096000pt;}
._4_c01015{width:4.992000pt;}
._1_c01015{width:7.424000pt;}
._3_c01015{width:9.408000pt;}
._0_c01015{width:11.072000pt;}
._5_c01015{width:13.760000pt;}
.fs1_c01015{font-size:52.480000pt;}
.fs0_c01015{font-size:64.000000pt;}
.y0_c01015{bottom:0.000000pt;}
.y2_c01015{bottom:2.840000pt;}
.y4_c01015{bottom:3.520000pt;}
.y1_c01015{bottom:47.999987pt;}
.y3_c01015{bottom:49.879987pt;}
.yf_c01015{bottom:673.240013pt;}
.ye_c01015{bottom:701.080013pt;}
.yd_c01015{bottom:728.600013pt;}
.yc_c01015{bottom:756.120013pt;}
.yb_c01015{bottom:783.640013pt;}
.ya_c01015{bottom:811.480013pt;}
.y9_c01015{bottom:839.000013pt;}
.y8_c01015{bottom:866.520013pt;}
.y7_c01015{bottom:894.040013pt;}
.y6_c01015{bottom:937.880013pt;}
.y5_c01015{bottom:965.400013pt;}
.h4_c01015{height:15.680000pt;}
.h3_c01015{height:56.156250pt;}
.h2_c01015{height:1067.800000pt;}
.h0_c01015{height:1122.520000pt;}
.h1_c01015{height:1122.666667pt;}
.w3_c01015{width:20.160000pt;}
.w2_c01015{width:768.039867pt;}
.w0_c01015{width:793.720000pt;}
.w1_c01015{width:794.000000pt;}
.x0_c01015{left:0.000000pt;}
.x1_c01015{left:12.840000pt;}
.x2_c01015{left:100.480133pt;}
.x4_c01015{left:119.413413pt;}
.x3_c01015{left:386.600000pt;}
}





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

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





.ff0_c01016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01016;src:url('chunks/assets/font_82f9b2e30fa830171d6cd05f.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.093262;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_c01016{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_c01016{vertical-align:0.000000px;}
.ls1_c01016{letter-spacing:0.000000px;}
.ls0_c01016{letter-spacing:0.472320px;}
.sc__c01016{text-shadow:none;}
.sc0_c01016{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__c01016{-webkit-text-stroke:0px transparent;}
.sc0_c01016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01016{word-spacing:-15.232320px;}
.ws1_c01016{word-spacing:0.000000px;}
.fc1_c01016{color:transparent;}
.fc0_c01016{color:rgb(0,0,0);}
.fs1_c01016{font-size:59.040000px;}
.fs0_c01016{font-size:72.000000px;}
.y6_c01016{bottom:-11.160000px;}
.y0_c01016{bottom:0.000000px;}
.y2_c01016{bottom:3.195000px;}
.y4_c01016{bottom:3.960000px;}
.y1_c01016{bottom:53.999985px;}
.y3_c01016{bottom:56.114985px;}
.y5_c01016{bottom:60.434985px;}
.h5_c01016{height:5.399997px;}
.h4_c01016{height:17.640000px;}
.h3_c01016{height:63.175781px;}
.h2_c01016{height:1201.275000px;}
.h0_c01016{height:1262.835000px;}
.h1_c01016{height:1263.000000px;}
.w3_c01016{width:22.680000px;}
.w4_c01016{width:39.240000px;}
.w2_c01016{width:864.044850px;}
.w0_c01016{width:892.935000px;}
.w1_c01016{width:893.250000px;}
.x0_c01016{left:0.000000px;}
.x5_c01016{left:3.240150px;}
.x1_c01016{left:14.445000px;}
.x2_c01016{left:113.040150px;}
.x4_c01016{left:432.045000px;}
.x3_c01016{left:434.925000px;}
@media print{
.v0_c01016{vertical-align:0.000000pt;}
.ls1_c01016{letter-spacing:0.000000pt;}
.ls0_c01016{letter-spacing:0.419840pt;}
.ws0_c01016{word-spacing:-13.539840pt;}
.ws1_c01016{word-spacing:0.000000pt;}
.fs1_c01016{font-size:52.480000pt;}
.fs0_c01016{font-size:64.000000pt;}
.y6_c01016{bottom:-9.920000pt;}
.y0_c01016{bottom:0.000000pt;}
.y2_c01016{bottom:2.840000pt;}
.y4_c01016{bottom:3.520000pt;}
.y1_c01016{bottom:47.999987pt;}
.y3_c01016{bottom:49.879987pt;}
.y5_c01016{bottom:53.719987pt;}
.h5_c01016{height:4.799997pt;}
.h4_c01016{height:15.680000pt;}
.h3_c01016{height:56.156250pt;}
.h2_c01016{height:1067.800000pt;}
.h0_c01016{height:1122.520000pt;}
.h1_c01016{height:1122.666667pt;}
.w3_c01016{width:20.160000pt;}
.w4_c01016{width:34.880000pt;}
.w2_c01016{width:768.039867pt;}
.w0_c01016{width:793.720000pt;}
.w1_c01016{width:794.000000pt;}
.x0_c01016{left:0.000000pt;}
.x5_c01016{left:2.880133pt;}
.x1_c01016{left:12.840000pt;}
.x2_c01016{left:100.480133pt;}
.x4_c01016{left:384.040000pt;}
.x3_c01016{left:386.600000pt;}
}





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

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





.ff0_c01017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01017;src:url('chunks/assets/font_3d7c4c3308888706919035ab.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.093262;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_c01017;src:url('chunks/assets/font_0abdd71e98b4914640fa9e46.woff2')format("woff");}.ff2_c01017{font-family:ff2_c01017;line-height:1.104004;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_c01017;src:url('chunks/assets/font_9a42303edbb077b2f268a787.woff2')format("woff");}.ff3_c01017{font-family:ff3_c01017;line-height:1.095703;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_c01017{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_c01017{vertical-align:0.000000px;}
.ls1_c01017{letter-spacing:0.000000px;}
.ls0_c01017{letter-spacing:0.472320px;}
.sc__c01017{text-shadow:none;}
.sc0_c01017{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__c01017{-webkit-text-stroke:0px transparent;}
.sc0_c01017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01017{word-spacing:-18.000000px;}
.ws0_c01017{word-spacing:-15.232320px;}
.ws2_c01017{word-spacing:0.000000px;}
._0_c01017{width:1.872000px;}
._6_c01017{width:3.096000px;}
._5_c01017{width:5.328000px;}
._7_c01017{width:6.696000px;}
._4_c01017{width:8.496000px;}
._1_c01017{width:20.952000px;}
._3_c01017{width:30.168000px;}
._2_c01017{width:41.832000px;}
.fc1_c01017{color:transparent;}
.fc0_c01017{color:rgb(0,0,0);}
.fs1_c01017{font-size:59.040000px;}
.fs0_c01017{font-size:72.000000px;}
.y0_c01017{bottom:0.000000px;}
.y2_c01017{bottom:3.195000px;}
.y4_c01017{bottom:3.960000px;}
.y1_c01017{bottom:53.999985px;}
.y3_c01017{bottom:56.114985px;}
.y1e_c01017{bottom:57.915000px;}
.y1d_c01017{bottom:88.875000px;}
.y1c_c01017{bottom:137.835015px;}
.y1b_c01017{bottom:168.795015px;}
.y1a_c01017{bottom:218.115015px;}
.y19_c01017{bottom:249.075015px;}
.y18_c01017{bottom:298.035015px;}
.y17_c01017{bottom:328.995015px;}
.y16_c01017{bottom:378.315015px;}
.y15_c01017{bottom:409.275015px;}
.y14_c01017{bottom:458.235015px;}
.y13_c01017{bottom:507.195015px;}
.y12_c01017{bottom:556.515015px;}
.y11_c01017{bottom:605.475015px;}
.y10_c01017{bottom:654.435015px;}
.yf_c01017{bottom:685.395015px;}
.ye_c01017{bottom:734.715015px;}
.yd_c01017{bottom:765.675015px;}
.yc_c01017{bottom:796.635015px;}
.yb_c01017{bottom:845.595015px;}
.ya_c01017{bottom:876.915015px;}
.y9_c01017{bottom:925.875015px;}
.y8_c01017{bottom:956.835015px;}
.y7_c01017{bottom:1005.795015px;}
.y6_c01017{bottom:1037.115015px;}
.y5_c01017{bottom:1086.075015px;}
.h4_c01017{height:17.640000px;}
.h3_c01017{height:63.175781px;}
.h6_c01017{height:63.351563px;}
.h5_c01017{height:63.949219px;}
.h2_c01017{height:1201.275000px;}
.h0_c01017{height:1262.835000px;}
.h1_c01017{height:1263.000000px;}
.w3_c01017{width:22.680000px;}
.w2_c01017{width:864.044850px;}
.w0_c01017{width:892.935000px;}
.w1_c01017{width:893.250000px;}
.x0_c01017{left:0.000000px;}
.x1_c01017{left:14.445000px;}
.x2_c01017{left:113.040150px;}
.x3_c01017{left:434.925000px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.ls1_c01017{letter-spacing:0.000000pt;}
.ls0_c01017{letter-spacing:0.419840pt;}
.ws1_c01017{word-spacing:-16.000000pt;}
.ws0_c01017{word-spacing:-13.539840pt;}
.ws2_c01017{word-spacing:0.000000pt;}
._0_c01017{width:1.664000pt;}
._6_c01017{width:2.752000pt;}
._5_c01017{width:4.736000pt;}
._7_c01017{width:5.952000pt;}
._4_c01017{width:7.552000pt;}
._1_c01017{width:18.624000pt;}
._3_c01017{width:26.816000pt;}
._2_c01017{width:37.184000pt;}
.fs1_c01017{font-size:52.480000pt;}
.fs0_c01017{font-size:64.000000pt;}
.y0_c01017{bottom:0.000000pt;}
.y2_c01017{bottom:2.840000pt;}
.y4_c01017{bottom:3.520000pt;}
.y1_c01017{bottom:47.999987pt;}
.y3_c01017{bottom:49.879987pt;}
.y1e_c01017{bottom:51.480000pt;}
.y1d_c01017{bottom:79.000000pt;}
.y1c_c01017{bottom:122.520013pt;}
.y1b_c01017{bottom:150.040013pt;}
.y1a_c01017{bottom:193.880013pt;}
.y19_c01017{bottom:221.400013pt;}
.y18_c01017{bottom:264.920013pt;}
.y17_c01017{bottom:292.440013pt;}
.y16_c01017{bottom:336.280013pt;}
.y15_c01017{bottom:363.800013pt;}
.y14_c01017{bottom:407.320013pt;}
.y13_c01017{bottom:450.840013pt;}
.y12_c01017{bottom:494.680013pt;}
.y11_c01017{bottom:538.200013pt;}
.y10_c01017{bottom:581.720013pt;}
.yf_c01017{bottom:609.240013pt;}
.ye_c01017{bottom:653.080013pt;}
.yd_c01017{bottom:680.600013pt;}
.yc_c01017{bottom:708.120013pt;}
.yb_c01017{bottom:751.640013pt;}
.ya_c01017{bottom:779.480013pt;}
.y9_c01017{bottom:823.000013pt;}
.y8_c01017{bottom:850.520013pt;}
.y7_c01017{bottom:894.040013pt;}
.y6_c01017{bottom:921.880013pt;}
.y5_c01017{bottom:965.400013pt;}
.h4_c01017{height:15.680000pt;}
.h3_c01017{height:56.156250pt;}
.h6_c01017{height:56.312500pt;}
.h5_c01017{height:56.843750pt;}
.h2_c01017{height:1067.800000pt;}
.h0_c01017{height:1122.520000pt;}
.h1_c01017{height:1122.666667pt;}
.w3_c01017{width:20.160000pt;}
.w2_c01017{width:768.039867pt;}
.w0_c01017{width:793.720000pt;}
.w1_c01017{width:794.000000pt;}
.x0_c01017{left:0.000000pt;}
.x1_c01017{left:12.840000pt;}
.x2_c01017{left:100.480133pt;}
.x3_c01017{left:386.600000pt;}
}





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

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





.ff0_c01018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01018;src:url('chunks/assets/font_817c8eb01d5ae56c47dfce4e.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.093262;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_c01018;src:url('chunks/assets/font_1376c42fadac1d7e44c53be8.woff2')format("woff");}.ff2_c01018{font-family:ff2_c01018;line-height:1.095703;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_c01018{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_c01018{vertical-align:0.000000px;}
.ls1_c01018{letter-spacing:0.000000px;}
.ls0_c01018{letter-spacing:0.472320px;}
.sc__c01018{text-shadow:none;}
.sc0_c01018{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__c01018{-webkit-text-stroke:0px transparent;}
.sc0_c01018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01018{word-spacing:-18.000000px;}
.ws0_c01018{word-spacing:-15.232320px;}
.ws2_c01018{word-spacing:0.000000px;}
._7_c01018{margin-left:-1.416600px;}
._8_c01018{width:1.296000px;}
._a_c01018{width:3.528000px;}
._2_c01018{width:5.256000px;}
._1_c01018{width:6.408000px;}
._9_c01018{width:7.992000px;}
._5_c01018{width:9.000000px;}
._0_c01018{width:11.808000px;}
._b_c01018{width:13.104000px;}
._3_c01018{width:16.992000px;}
._6_c01018{width:29.592000px;}
._4_c01018{width:38.376000px;}
.fc2_c01018{color:transparent;}
.fc1_c01018{color:rgb(255,0,0);}
.fc0_c01018{color:rgb(0,0,0);}
.fs1_c01018{font-size:59.040000px;}
.fs0_c01018{font-size:72.000000px;}
.y0_c01018{bottom:0.000000px;}
.y2_c01018{bottom:3.195000px;}
.y4_c01018{bottom:3.960000px;}
.y1_c01018{bottom:53.999985px;}
.y3_c01018{bottom:56.114985px;}
.y1e_c01018{bottom:111.915015px;}
.y1d_c01018{bottom:142.875015px;}
.y1c_c01018{bottom:173.835015px;}
.y1b_c01018{bottom:222.795015px;}
.y1a_c01018{bottom:254.115015px;}
.y19_c01018{bottom:303.075015px;}
.y18_c01018{bottom:334.035015px;}
.y17_c01018{bottom:382.995015px;}
.y16_c01018{bottom:414.315015px;}
.y15_c01018{bottom:463.275015px;}
.y14_c01018{bottom:512.235015px;}
.y13_c01018{bottom:543.195015px;}
.y12_c01018{bottom:574.515015px;}
.y11_c01018{bottom:623.475015px;}
.y10_c01018{bottom:672.435015px;}
.yf_c01018{bottom:703.395015px;}
.ye_c01018{bottom:752.715015px;}
.yd_c01018{bottom:783.675015px;}
.yc_c01018{bottom:832.635015px;}
.yb_c01018{bottom:863.595015px;}
.ya_c01018{bottom:894.915015px;}
.y9_c01018{bottom:943.875015px;}
.y8_c01018{bottom:974.835015px;}
.y7_c01018{bottom:1005.795015px;}
.y6_c01018{bottom:1055.115015px;}
.y5_c01018{bottom:1086.075015px;}
.h4_c01018{height:17.640000px;}
.h3_c01018{height:63.175781px;}
.h5_c01018{height:63.351563px;}
.h2_c01018{height:1201.275000px;}
.h0_c01018{height:1262.835000px;}
.h1_c01018{height:1263.000000px;}
.w3_c01018{width:22.680000px;}
.w2_c01018{width:864.044850px;}
.w0_c01018{width:892.935000px;}
.w1_c01018{width:893.250000px;}
.x0_c01018{left:0.000000px;}
.x1_c01018{left:14.445000px;}
.x2_c01018{left:113.040150px;}
.x3_c01018{left:434.925000px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.ls1_c01018{letter-spacing:0.000000pt;}
.ls0_c01018{letter-spacing:0.419840pt;}
.ws1_c01018{word-spacing:-16.000000pt;}
.ws0_c01018{word-spacing:-13.539840pt;}
.ws2_c01018{word-spacing:0.000000pt;}
._7_c01018{margin-left:-1.259200pt;}
._8_c01018{width:1.152000pt;}
._a_c01018{width:3.136000pt;}
._2_c01018{width:4.672000pt;}
._1_c01018{width:5.696000pt;}
._9_c01018{width:7.104000pt;}
._5_c01018{width:8.000000pt;}
._0_c01018{width:10.496000pt;}
._b_c01018{width:11.648000pt;}
._3_c01018{width:15.104000pt;}
._6_c01018{width:26.304000pt;}
._4_c01018{width:34.112000pt;}
.fs1_c01018{font-size:52.480000pt;}
.fs0_c01018{font-size:64.000000pt;}
.y0_c01018{bottom:0.000000pt;}
.y2_c01018{bottom:2.840000pt;}
.y4_c01018{bottom:3.520000pt;}
.y1_c01018{bottom:47.999987pt;}
.y3_c01018{bottom:49.879987pt;}
.y1e_c01018{bottom:99.480013pt;}
.y1d_c01018{bottom:127.000013pt;}
.y1c_c01018{bottom:154.520013pt;}
.y1b_c01018{bottom:198.040013pt;}
.y1a_c01018{bottom:225.880013pt;}
.y19_c01018{bottom:269.400013pt;}
.y18_c01018{bottom:296.920013pt;}
.y17_c01018{bottom:340.440013pt;}
.y16_c01018{bottom:368.280013pt;}
.y15_c01018{bottom:411.800013pt;}
.y14_c01018{bottom:455.320013pt;}
.y13_c01018{bottom:482.840013pt;}
.y12_c01018{bottom:510.680013pt;}
.y11_c01018{bottom:554.200013pt;}
.y10_c01018{bottom:597.720013pt;}
.yf_c01018{bottom:625.240013pt;}
.ye_c01018{bottom:669.080013pt;}
.yd_c01018{bottom:696.600013pt;}
.yc_c01018{bottom:740.120013pt;}
.yb_c01018{bottom:767.640013pt;}
.ya_c01018{bottom:795.480013pt;}
.y9_c01018{bottom:839.000013pt;}
.y8_c01018{bottom:866.520013pt;}
.y7_c01018{bottom:894.040013pt;}
.y6_c01018{bottom:937.880013pt;}
.y5_c01018{bottom:965.400013pt;}
.h4_c01018{height:15.680000pt;}
.h3_c01018{height:56.156250pt;}
.h5_c01018{height:56.312500pt;}
.h2_c01018{height:1067.800000pt;}
.h0_c01018{height:1122.520000pt;}
.h1_c01018{height:1122.666667pt;}
.w3_c01018{width:20.160000pt;}
.w2_c01018{width:768.039867pt;}
.w0_c01018{width:793.720000pt;}
.w1_c01018{width:794.000000pt;}
.x0_c01018{left:0.000000pt;}
.x1_c01018{left:12.840000pt;}
.x2_c01018{left:100.480133pt;}
.x3_c01018{left:386.600000pt;}
}





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

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





.ff0_c01019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01019;src:url('chunks/assets/font_586fc6c9eb9dd5b7728eb8cf.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.093262;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_c01019;src:url('chunks/assets/font_a7c69fd804c326f7e120e980.woff2')format("woff");}.ff2_c01019{font-family:ff2_c01019;line-height:1.095703;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_c01019{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_c01019{vertical-align:0.000000px;}
.ls1_c01019{letter-spacing:0.000000px;}
.ls0_c01019{letter-spacing:0.472320px;}
.sc__c01019{text-shadow:none;}
.sc0_c01019{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__c01019{-webkit-text-stroke:0px transparent;}
.sc0_c01019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01019{word-spacing:-18.000000px;}
.ws0_c01019{word-spacing:-15.232320px;}
.ws2_c01019{word-spacing:0.000000px;}
._5_c01019{width:1.728000px;}
._7_c01019{width:2.808000px;}
._8_c01019{width:4.464000px;}
._4_c01019{width:7.776000px;}
._6_c01019{width:8.983800px;}
._1_c01019{width:12.528000px;}
._0_c01019{width:13.968000px;}
._3_c01019{width:15.363000px;}
._2_c01019{width:16.560000px;}
.fc1_c01019{color:transparent;}
.fc0_c01019{color:rgb(0,0,0);}
.fs1_c01019{font-size:59.040000px;}
.fs0_c01019{font-size:72.000000px;}
.y0_c01019{bottom:0.000000px;}
.y2_c01019{bottom:3.195000px;}
.y4_c01019{bottom:3.960000px;}
.y1_c01019{bottom:53.999985px;}
.y3_c01019{bottom:56.114985px;}
.y1f_c01019{bottom:80.595015px;}
.y1e_c01019{bottom:111.915015px;}
.y1d_c01019{bottom:160.875015px;}
.y1c_c01019{bottom:191.835015px;}
.y1b_c01019{bottom:222.795015px;}
.y1a_c01019{bottom:272.115015px;}
.y19_c01019{bottom:303.075015px;}
.y18_c01019{bottom:334.035015px;}
.y17_c01019{bottom:364.995015px;}
.y16_c01019{bottom:414.315015px;}
.y15_c01019{bottom:463.275015px;}
.y14_c01019{bottom:494.235015px;}
.y13_c01019{bottom:525.195015px;}
.y12_c01019{bottom:556.515015px;}
.y11_c01019{bottom:605.475015px;}
.y10_c01019{bottom:636.435015px;}
.yf_c01019{bottom:667.395015px;}
.ye_c01019{bottom:716.715015px;}
.yd_c01019{bottom:765.675015px;}
.yc_c01019{bottom:796.635015px;}
.yb_c01019{bottom:845.595015px;}
.ya_c01019{bottom:894.915015px;}
.y9_c01019{bottom:925.875015px;}
.y8_c01019{bottom:974.835015px;}
.y7_c01019{bottom:1005.795015px;}
.y6_c01019{bottom:1055.115015px;}
.y5_c01019{bottom:1086.075015px;}
.h4_c01019{height:17.640000px;}
.h3_c01019{height:63.175781px;}
.h5_c01019{height:63.351563px;}
.h2_c01019{height:1201.275000px;}
.h0_c01019{height:1262.835000px;}
.h1_c01019{height:1263.000000px;}
.w3_c01019{width:22.680000px;}
.w2_c01019{width:864.044850px;}
.w0_c01019{width:892.935000px;}
.w1_c01019{width:893.250000px;}
.x0_c01019{left:0.000000px;}
.x1_c01019{left:14.445000px;}
.x2_c01019{left:113.040150px;}
.x3_c01019{left:434.925000px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls1_c01019{letter-spacing:0.000000pt;}
.ls0_c01019{letter-spacing:0.419840pt;}
.ws1_c01019{word-spacing:-16.000000pt;}
.ws0_c01019{word-spacing:-13.539840pt;}
.ws2_c01019{word-spacing:0.000000pt;}
._5_c01019{width:1.536000pt;}
._7_c01019{width:2.496000pt;}
._8_c01019{width:3.968000pt;}
._4_c01019{width:6.912000pt;}
._6_c01019{width:7.985600pt;}
._1_c01019{width:11.136000pt;}
._0_c01019{width:12.416000pt;}
._3_c01019{width:13.656000pt;}
._2_c01019{width:14.720000pt;}
.fs1_c01019{font-size:52.480000pt;}
.fs0_c01019{font-size:64.000000pt;}
.y0_c01019{bottom:0.000000pt;}
.y2_c01019{bottom:2.840000pt;}
.y4_c01019{bottom:3.520000pt;}
.y1_c01019{bottom:47.999987pt;}
.y3_c01019{bottom:49.879987pt;}
.y1f_c01019{bottom:71.640013pt;}
.y1e_c01019{bottom:99.480013pt;}
.y1d_c01019{bottom:143.000013pt;}
.y1c_c01019{bottom:170.520013pt;}
.y1b_c01019{bottom:198.040013pt;}
.y1a_c01019{bottom:241.880013pt;}
.y19_c01019{bottom:269.400013pt;}
.y18_c01019{bottom:296.920013pt;}
.y17_c01019{bottom:324.440013pt;}
.y16_c01019{bottom:368.280013pt;}
.y15_c01019{bottom:411.800013pt;}
.y14_c01019{bottom:439.320013pt;}
.y13_c01019{bottom:466.840013pt;}
.y12_c01019{bottom:494.680013pt;}
.y11_c01019{bottom:538.200013pt;}
.y10_c01019{bottom:565.720013pt;}
.yf_c01019{bottom:593.240013pt;}
.ye_c01019{bottom:637.080013pt;}
.yd_c01019{bottom:680.600013pt;}
.yc_c01019{bottom:708.120013pt;}
.yb_c01019{bottom:751.640013pt;}
.ya_c01019{bottom:795.480013pt;}
.y9_c01019{bottom:823.000013pt;}
.y8_c01019{bottom:866.520013pt;}
.y7_c01019{bottom:894.040013pt;}
.y6_c01019{bottom:937.880013pt;}
.y5_c01019{bottom:965.400013pt;}
.h4_c01019{height:15.680000pt;}
.h3_c01019{height:56.156250pt;}
.h5_c01019{height:56.312500pt;}
.h2_c01019{height:1067.800000pt;}
.h0_c01019{height:1122.520000pt;}
.h1_c01019{height:1122.666667pt;}
.w3_c01019{width:20.160000pt;}
.w2_c01019{width:768.039867pt;}
.w0_c01019{width:793.720000pt;}
.w1_c01019{width:794.000000pt;}
.x0_c01019{left:0.000000pt;}
.x1_c01019{left:12.840000pt;}
.x2_c01019{left:100.480133pt;}
.x3_c01019{left:386.600000pt;}
}





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

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





.ff0_c01020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01020;src:url('chunks/assets/font_ac8935bd98cbc65c6c61e033.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.093262;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_c01020;src:url('chunks/assets/font_e56b77940204649cf9c9baff.woff2')format("woff");}.ff2_c01020{font-family:ff2_c01020;line-height:1.095703;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_c01020{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_c01020{vertical-align:0.000000px;}
.ls1_c01020{letter-spacing:0.000000px;}
.ls0_c01020{letter-spacing:0.472320px;}
.sc__c01020{text-shadow:none;}
.sc0_c01020{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__c01020{-webkit-text-stroke:0px transparent;}
.sc0_c01020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01020{word-spacing:-15.232320px;}
.ws1_c01020{word-spacing:0.000000px;}
._1_c01020{width:4.536000px;}
._0_c01020{width:5.760000px;}
._4_c01020{width:8.568000px;}
._5_c01020{width:14.256000px;}
._3_c01020{width:20.520000px;}
._7_c01020{width:22.176000px;}
._8_c01020{width:25.200000px;}
._2_c01020{width:26.424000px;}
._6_c01020{width:29.232000px;}
.fc2_c01020{color:transparent;}
.fc1_c01020{color:rgb(255,0,0);}
.fc0_c01020{color:rgb(0,0,0);}
.fs1_c01020{font-size:59.040000px;}
.fs0_c01020{font-size:72.000000px;}
.y0_c01020{bottom:0.000000px;}
.y2_c01020{bottom:3.195000px;}
.y4_c01020{bottom:3.960000px;}
.y1_c01020{bottom:53.999985px;}
.y3_c01020{bottom:56.114985px;}
.y1c_c01020{bottom:119.835015px;}
.y1b_c01020{bottom:150.795015px;}
.y1a_c01020{bottom:200.115015px;}
.y19_c01020{bottom:231.075015px;}
.y18_c01020{bottom:280.035015px;}
.y17_c01020{bottom:328.995015px;}
.y16_c01020{bottom:378.315015px;}
.y15_c01020{bottom:409.275015px;}
.y14_c01020{bottom:458.235015px;}
.y13_c01020{bottom:489.195015px;}
.y12_c01020{bottom:538.515015px;}
.y11_c01020{bottom:569.475015px;}
.y10_c01020{bottom:618.435015px;}
.yf_c01020{bottom:649.395015px;}
.ye_c01020{bottom:698.715015px;}
.yd_c01020{bottom:747.675015px;}
.yc_c01020{bottom:796.635015px;}
.yb_c01020{bottom:845.595015px;}
.ya_c01020{bottom:894.915015px;}
.y9_c01020{bottom:925.875015px;}
.y8_c01020{bottom:974.835015px;}
.y7_c01020{bottom:1005.795015px;}
.y6_c01020{bottom:1055.115015px;}
.y5_c01020{bottom:1086.075015px;}
.h4_c01020{height:17.640000px;}
.h3_c01020{height:63.175781px;}
.h5_c01020{height:63.351563px;}
.h2_c01020{height:1201.275000px;}
.h0_c01020{height:1262.835000px;}
.h1_c01020{height:1263.000000px;}
.w3_c01020{width:22.680000px;}
.w2_c01020{width:864.044850px;}
.w0_c01020{width:892.935000px;}
.w1_c01020{width:893.250000px;}
.x0_c01020{left:0.000000px;}
.x1_c01020{left:14.445000px;}
.x2_c01020{left:113.040150px;}
.x3_c01020{left:434.925000px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls1_c01020{letter-spacing:0.000000pt;}
.ls0_c01020{letter-spacing:0.419840pt;}
.ws0_c01020{word-spacing:-13.539840pt;}
.ws1_c01020{word-spacing:0.000000pt;}
._1_c01020{width:4.032000pt;}
._0_c01020{width:5.120000pt;}
._4_c01020{width:7.616000pt;}
._5_c01020{width:12.672000pt;}
._3_c01020{width:18.240000pt;}
._7_c01020{width:19.712000pt;}
._8_c01020{width:22.400000pt;}
._2_c01020{width:23.488000pt;}
._6_c01020{width:25.984000pt;}
.fs1_c01020{font-size:52.480000pt;}
.fs0_c01020{font-size:64.000000pt;}
.y0_c01020{bottom:0.000000pt;}
.y2_c01020{bottom:2.840000pt;}
.y4_c01020{bottom:3.520000pt;}
.y1_c01020{bottom:47.999987pt;}
.y3_c01020{bottom:49.879987pt;}
.y1c_c01020{bottom:106.520013pt;}
.y1b_c01020{bottom:134.040013pt;}
.y1a_c01020{bottom:177.880013pt;}
.y19_c01020{bottom:205.400013pt;}
.y18_c01020{bottom:248.920013pt;}
.y17_c01020{bottom:292.440013pt;}
.y16_c01020{bottom:336.280013pt;}
.y15_c01020{bottom:363.800013pt;}
.y14_c01020{bottom:407.320013pt;}
.y13_c01020{bottom:434.840013pt;}
.y12_c01020{bottom:478.680013pt;}
.y11_c01020{bottom:506.200013pt;}
.y10_c01020{bottom:549.720013pt;}
.yf_c01020{bottom:577.240013pt;}
.ye_c01020{bottom:621.080013pt;}
.yd_c01020{bottom:664.600013pt;}
.yc_c01020{bottom:708.120013pt;}
.yb_c01020{bottom:751.640013pt;}
.ya_c01020{bottom:795.480013pt;}
.y9_c01020{bottom:823.000013pt;}
.y8_c01020{bottom:866.520013pt;}
.y7_c01020{bottom:894.040013pt;}
.y6_c01020{bottom:937.880013pt;}
.y5_c01020{bottom:965.400013pt;}
.h4_c01020{height:15.680000pt;}
.h3_c01020{height:56.156250pt;}
.h5_c01020{height:56.312500pt;}
.h2_c01020{height:1067.800000pt;}
.h0_c01020{height:1122.520000pt;}
.h1_c01020{height:1122.666667pt;}
.w3_c01020{width:20.160000pt;}
.w2_c01020{width:768.039867pt;}
.w0_c01020{width:793.720000pt;}
.w1_c01020{width:794.000000pt;}
.x0_c01020{left:0.000000pt;}
.x1_c01020{left:12.840000pt;}
.x2_c01020{left:100.480133pt;}
.x3_c01020{left:386.600000pt;}
}





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

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





.ff0_c01021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01021;src:url('chunks/assets/font_e244a6d163ded848746322b4.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.093262;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_c01021;src:url('chunks/assets/font_01fdece2ebffb052f52226a4.woff2')format("woff");}.ff2_c01021{font-family:ff2_c01021;line-height:1.095703;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_c01021{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_c01021{vertical-align:0.000000px;}
.ls2_c01021{letter-spacing:0.000000px;}
.ls0_c01021{letter-spacing:0.472320px;}
.ls1_c01021{letter-spacing:11.465400px;}
.sc__c01021{text-shadow:none;}
.sc0_c01021{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__c01021{-webkit-text-stroke:0px transparent;}
.sc0_c01021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01021{word-spacing:-15.232320px;}
.ws1_c01021{word-spacing:0.000000px;}
._1_c01021{width:1.080000px;}
._3_c01021{width:3.024000px;}
._2_c01021{width:4.608000px;}
._6_c01021{width:7.992000px;}
._5_c01021{width:11.448000px;}
._4_c01021{width:14.544000px;}
._0_c01021{width:16.836600px;}
.fc2_c01021{color:transparent;}
.fc1_c01021{color:rgb(255,0,0);}
.fc0_c01021{color:rgb(0,0,0);}
.fs1_c01021{font-size:59.040000px;}
.fs0_c01021{font-size:72.000000px;}
.y0_c01021{bottom:0.000000px;}
.y2_c01021{bottom:3.195000px;}
.y4_c01021{bottom:3.960000px;}
.y1_c01021{bottom:53.999985px;}
.y3_c01021{bottom:56.114985px;}
.y1d_c01021{bottom:70.875000px;}
.y1c_c01021{bottom:119.835015px;}
.y1b_c01021{bottom:168.795015px;}
.y1a_c01021{bottom:200.115015px;}
.y19_c01021{bottom:249.075015px;}
.y18_c01021{bottom:280.035015px;}
.y17_c01021{bottom:328.995015px;}
.y16_c01021{bottom:360.315015px;}
.y15_c01021{bottom:409.275015px;}
.y14_c01021{bottom:440.235015px;}
.y13_c01021{bottom:489.195015px;}
.y12_c01021{bottom:538.515015px;}
.y11_c01021{bottom:569.475015px;}
.y10_c01021{bottom:600.435015px;}
.yf_c01021{bottom:649.395015px;}
.ye_c01021{bottom:698.715015px;}
.yd_c01021{bottom:747.675015px;}
.yc_c01021{bottom:778.635015px;}
.yb_c01021{bottom:827.595015px;}
.ya_c01021{bottom:876.915015px;}
.y9_c01021{bottom:925.875015px;}
.y8_c01021{bottom:974.835015px;}
.y7_c01021{bottom:1005.795015px;}
.y6_c01021{bottom:1055.115015px;}
.y5_c01021{bottom:1086.075015px;}
.h4_c01021{height:17.640000px;}
.h3_c01021{height:63.175781px;}
.h5_c01021{height:63.351563px;}
.h2_c01021{height:1201.275000px;}
.h0_c01021{height:1262.835000px;}
.h1_c01021{height:1263.000000px;}
.w3_c01021{width:22.680000px;}
.w2_c01021{width:864.044850px;}
.w0_c01021{width:892.935000px;}
.w1_c01021{width:893.250000px;}
.x0_c01021{left:0.000000px;}
.x1_c01021{left:14.445000px;}
.x2_c01021{left:113.040150px;}
.x3_c01021{left:434.925000px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.ls2_c01021{letter-spacing:0.000000pt;}
.ls0_c01021{letter-spacing:0.419840pt;}
.ls1_c01021{letter-spacing:10.191467pt;}
.ws0_c01021{word-spacing:-13.539840pt;}
.ws1_c01021{word-spacing:0.000000pt;}
._1_c01021{width:0.960000pt;}
._3_c01021{width:2.688000pt;}
._2_c01021{width:4.096000pt;}
._6_c01021{width:7.104000pt;}
._5_c01021{width:10.176000pt;}
._4_c01021{width:12.928000pt;}
._0_c01021{width:14.965867pt;}
.fs1_c01021{font-size:52.480000pt;}
.fs0_c01021{font-size:64.000000pt;}
.y0_c01021{bottom:0.000000pt;}
.y2_c01021{bottom:2.840000pt;}
.y4_c01021{bottom:3.520000pt;}
.y1_c01021{bottom:47.999987pt;}
.y3_c01021{bottom:49.879987pt;}
.y1d_c01021{bottom:63.000000pt;}
.y1c_c01021{bottom:106.520013pt;}
.y1b_c01021{bottom:150.040013pt;}
.y1a_c01021{bottom:177.880013pt;}
.y19_c01021{bottom:221.400013pt;}
.y18_c01021{bottom:248.920013pt;}
.y17_c01021{bottom:292.440013pt;}
.y16_c01021{bottom:320.280013pt;}
.y15_c01021{bottom:363.800013pt;}
.y14_c01021{bottom:391.320013pt;}
.y13_c01021{bottom:434.840013pt;}
.y12_c01021{bottom:478.680013pt;}
.y11_c01021{bottom:506.200013pt;}
.y10_c01021{bottom:533.720013pt;}
.yf_c01021{bottom:577.240013pt;}
.ye_c01021{bottom:621.080013pt;}
.yd_c01021{bottom:664.600013pt;}
.yc_c01021{bottom:692.120013pt;}
.yb_c01021{bottom:735.640013pt;}
.ya_c01021{bottom:779.480013pt;}
.y9_c01021{bottom:823.000013pt;}
.y8_c01021{bottom:866.520013pt;}
.y7_c01021{bottom:894.040013pt;}
.y6_c01021{bottom:937.880013pt;}
.y5_c01021{bottom:965.400013pt;}
.h4_c01021{height:15.680000pt;}
.h3_c01021{height:56.156250pt;}
.h5_c01021{height:56.312500pt;}
.h2_c01021{height:1067.800000pt;}
.h0_c01021{height:1122.520000pt;}
.h1_c01021{height:1122.666667pt;}
.w3_c01021{width:20.160000pt;}
.w2_c01021{width:768.039867pt;}
.w0_c01021{width:793.720000pt;}
.w1_c01021{width:794.000000pt;}
.x0_c01021{left:0.000000pt;}
.x1_c01021{left:12.840000pt;}
.x2_c01021{left:100.480133pt;}
.x3_c01021{left:386.600000pt;}
}





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

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





.ff0_c01022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01022;src:url('chunks/assets/font_7861355dce7e47d97c4e7423.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.093262;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_c01022;src:url('chunks/assets/font_cb2ef1c5d8ea7856e440f287.woff2')format("woff");}.ff2_c01022{font-family:ff2_c01022;line-height:1.095703;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_c01022{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_c01022{vertical-align:0.000000px;}
.ls1_c01022{letter-spacing:0.000000px;}
.ls0_c01022{letter-spacing:0.472320px;}
.sc__c01022{text-shadow:none;}
.sc0_c01022{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__c01022{-webkit-text-stroke:0px transparent;}
.sc0_c01022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01022{word-spacing:-18.000000px;}
.ws0_c01022{word-spacing:-15.232320px;}
.ws2_c01022{word-spacing:0.000000px;}
._5_c01022{width:1.080000px;}
._7_c01022{width:2.143200px;}
._6_c01022{width:3.312000px;}
._0_c01022{width:7.200000px;}
._4_c01022{width:8.496000px;}
._9_c01022{width:12.240000px;}
._8_c01022{width:15.624000px;}
._1_c01022{width:23.040000px;}
._a_c01022{width:32.184000px;}
._3_c01022{width:33.984000px;}
._2_c01022{width:37.800000px;}
.fc1_c01022{color:transparent;}
.fc0_c01022{color:rgb(0,0,0);}
.fs1_c01022{font-size:59.040000px;}
.fs0_c01022{font-size:72.000000px;}
.y0_c01022{bottom:0.000000px;}
.y2_c01022{bottom:3.195000px;}
.y4_c01022{bottom:3.960000px;}
.y1_c01022{bottom:53.999985px;}
.y3_c01022{bottom:56.114985px;}
.y1d_c01022{bottom:106.875015px;}
.y1c_c01022{bottom:137.835015px;}
.y1b_c01022{bottom:186.795015px;}
.y1a_c01022{bottom:218.115015px;}
.y19_c01022{bottom:267.075015px;}
.y18_c01022{bottom:298.035015px;}
.y17_c01022{bottom:328.995015px;}
.y16_c01022{bottom:378.315015px;}
.y15_c01022{bottom:409.275015px;}
.y14_c01022{bottom:458.235015px;}
.y13_c01022{bottom:489.195015px;}
.y12_c01022{bottom:538.515015px;}
.y11_c01022{bottom:587.475015px;}
.y10_c01022{bottom:618.435015px;}
.yf_c01022{bottom:667.395015px;}
.ye_c01022{bottom:698.715015px;}
.yd_c01022{bottom:747.675015px;}
.yc_c01022{bottom:796.635015px;}
.yb_c01022{bottom:827.595015px;}
.ya_c01022{bottom:876.915015px;}
.y9_c01022{bottom:907.875015px;}
.y8_c01022{bottom:956.835015px;}
.y7_c01022{bottom:987.795015px;}
.y6_c01022{bottom:1037.115015px;}
.y5_c01022{bottom:1086.075015px;}
.h4_c01022{height:17.640000px;}
.h3_c01022{height:63.175781px;}
.h5_c01022{height:63.351563px;}
.h2_c01022{height:1201.275000px;}
.h0_c01022{height:1262.835000px;}
.h1_c01022{height:1263.000000px;}
.w3_c01022{width:22.680000px;}
.w2_c01022{width:864.044850px;}
.w0_c01022{width:892.935000px;}
.w1_c01022{width:893.250000px;}
.x0_c01022{left:0.000000px;}
.x1_c01022{left:14.445000px;}
.x2_c01022{left:113.040150px;}
.x3_c01022{left:434.925000px;}
@media print{
.v0_c01022{vertical-align:0.000000pt;}
.ls1_c01022{letter-spacing:0.000000pt;}
.ls0_c01022{letter-spacing:0.419840pt;}
.ws1_c01022{word-spacing:-16.000000pt;}
.ws0_c01022{word-spacing:-13.539840pt;}
.ws2_c01022{word-spacing:0.000000pt;}
._5_c01022{width:0.960000pt;}
._7_c01022{width:1.905067pt;}
._6_c01022{width:2.944000pt;}
._0_c01022{width:6.400000pt;}
._4_c01022{width:7.552000pt;}
._9_c01022{width:10.880000pt;}
._8_c01022{width:13.888000pt;}
._1_c01022{width:20.480000pt;}
._a_c01022{width:28.608000pt;}
._3_c01022{width:30.208000pt;}
._2_c01022{width:33.600000pt;}
.fs1_c01022{font-size:52.480000pt;}
.fs0_c01022{font-size:64.000000pt;}
.y0_c01022{bottom:0.000000pt;}
.y2_c01022{bottom:2.840000pt;}
.y4_c01022{bottom:3.520000pt;}
.y1_c01022{bottom:47.999987pt;}
.y3_c01022{bottom:49.879987pt;}
.y1d_c01022{bottom:95.000013pt;}
.y1c_c01022{bottom:122.520013pt;}
.y1b_c01022{bottom:166.040013pt;}
.y1a_c01022{bottom:193.880013pt;}
.y19_c01022{bottom:237.400013pt;}
.y18_c01022{bottom:264.920013pt;}
.y17_c01022{bottom:292.440013pt;}
.y16_c01022{bottom:336.280013pt;}
.y15_c01022{bottom:363.800013pt;}
.y14_c01022{bottom:407.320013pt;}
.y13_c01022{bottom:434.840013pt;}
.y12_c01022{bottom:478.680013pt;}
.y11_c01022{bottom:522.200013pt;}
.y10_c01022{bottom:549.720013pt;}
.yf_c01022{bottom:593.240013pt;}
.ye_c01022{bottom:621.080013pt;}
.yd_c01022{bottom:664.600013pt;}
.yc_c01022{bottom:708.120013pt;}
.yb_c01022{bottom:735.640013pt;}
.ya_c01022{bottom:779.480013pt;}
.y9_c01022{bottom:807.000013pt;}
.y8_c01022{bottom:850.520013pt;}
.y7_c01022{bottom:878.040013pt;}
.y6_c01022{bottom:921.880013pt;}
.y5_c01022{bottom:965.400013pt;}
.h4_c01022{height:15.680000pt;}
.h3_c01022{height:56.156250pt;}
.h5_c01022{height:56.312500pt;}
.h2_c01022{height:1067.800000pt;}
.h0_c01022{height:1122.520000pt;}
.h1_c01022{height:1122.666667pt;}
.w3_c01022{width:20.160000pt;}
.w2_c01022{width:768.039867pt;}
.w0_c01022{width:793.720000pt;}
.w1_c01022{width:794.000000pt;}
.x0_c01022{left:0.000000pt;}
.x1_c01022{left:12.840000pt;}
.x2_c01022{left:100.480133pt;}
.x3_c01022{left:386.600000pt;}
}





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

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





.ff0_c01023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01023;src:url('chunks/assets/font_07efba33543310945e889971.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.093262;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_c01023;src:url('chunks/assets/font_123bdccfaee87ad0385af99d.woff2')format("woff");}.ff2_c01023{font-family:ff2_c01023;line-height:1.095703;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_c01023{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_c01023{vertical-align:0.000000px;}
.ls1_c01023{letter-spacing:0.000000px;}
.ls0_c01023{letter-spacing:0.472320px;}
.sc__c01023{text-shadow:none;}
.sc0_c01023{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__c01023{-webkit-text-stroke:0px transparent;}
.sc0_c01023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01023{word-spacing:-18.000000px;}
.ws0_c01023{word-spacing:-15.232320px;}
.ws2_c01023{word-spacing:0.000000px;}
._1_c01023{width:3.168000px;}
._5_c01023{width:4.968000px;}
._2_c01023{width:7.056000px;}
._3_c01023{width:8.208000px;}
._7_c01023{width:9.864000px;}
._6_c01023{width:11.520000px;}
._4_c01023{width:14.328000px;}
._0_c01023{width:16.989600px;}
._8_c01023{width:21.456000px;}
.fc1_c01023{color:transparent;}
.fc0_c01023{color:rgb(0,0,0);}
.fs1_c01023{font-size:59.040000px;}
.fs0_c01023{font-size:72.000000px;}
.y0_c01023{bottom:0.000000px;}
.y2_c01023{bottom:3.195000px;}
.y4_c01023{bottom:3.960000px;}
.y1_c01023{bottom:53.999985px;}
.y3_c01023{bottom:56.114985px;}
.y1e_c01023{bottom:75.915000px;}
.y1d_c01023{bottom:124.875015px;}
.y1c_c01023{bottom:155.835015px;}
.y1b_c01023{bottom:204.795015px;}
.y1a_c01023{bottom:254.115015px;}
.y19_c01023{bottom:285.075015px;}
.y18_c01023{bottom:334.035015px;}
.y17_c01023{bottom:364.995015px;}
.y16_c01023{bottom:414.315015px;}
.y15_c01023{bottom:445.275015px;}
.y14_c01023{bottom:494.235015px;}
.y13_c01023{bottom:525.195015px;}
.y12_c01023{bottom:574.515015px;}
.y11_c01023{bottom:605.475015px;}
.y10_c01023{bottom:654.435015px;}
.yf_c01023{bottom:685.395015px;}
.ye_c01023{bottom:734.715015px;}
.yd_c01023{bottom:765.675015px;}
.yc_c01023{bottom:814.635015px;}
.yb_c01023{bottom:845.595015px;}
.ya_c01023{bottom:876.915015px;}
.y9_c01023{bottom:925.875015px;}
.y8_c01023{bottom:956.835015px;}
.y7_c01023{bottom:1005.795015px;}
.y6_c01023{bottom:1055.115015px;}
.y5_c01023{bottom:1086.075015px;}
.h4_c01023{height:17.640000px;}
.h3_c01023{height:63.175781px;}
.h5_c01023{height:63.351563px;}
.h2_c01023{height:1201.275000px;}
.h0_c01023{height:1262.835000px;}
.h1_c01023{height:1263.000000px;}
.w3_c01023{width:22.680000px;}
.w2_c01023{width:864.044850px;}
.w0_c01023{width:892.935000px;}
.w1_c01023{width:893.250000px;}
.x0_c01023{left:0.000000px;}
.x1_c01023{left:14.445000px;}
.x2_c01023{left:113.040150px;}
.x3_c01023{left:434.925000px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.ls1_c01023{letter-spacing:0.000000pt;}
.ls0_c01023{letter-spacing:0.419840pt;}
.ws1_c01023{word-spacing:-16.000000pt;}
.ws0_c01023{word-spacing:-13.539840pt;}
.ws2_c01023{word-spacing:0.000000pt;}
._1_c01023{width:2.816000pt;}
._5_c01023{width:4.416000pt;}
._2_c01023{width:6.272000pt;}
._3_c01023{width:7.296000pt;}
._7_c01023{width:8.768000pt;}
._6_c01023{width:10.240000pt;}
._4_c01023{width:12.736000pt;}
._0_c01023{width:15.101867pt;}
._8_c01023{width:19.072000pt;}
.fs1_c01023{font-size:52.480000pt;}
.fs0_c01023{font-size:64.000000pt;}
.y0_c01023{bottom:0.000000pt;}
.y2_c01023{bottom:2.840000pt;}
.y4_c01023{bottom:3.520000pt;}
.y1_c01023{bottom:47.999987pt;}
.y3_c01023{bottom:49.879987pt;}
.y1e_c01023{bottom:67.480000pt;}
.y1d_c01023{bottom:111.000013pt;}
.y1c_c01023{bottom:138.520013pt;}
.y1b_c01023{bottom:182.040013pt;}
.y1a_c01023{bottom:225.880013pt;}
.y19_c01023{bottom:253.400013pt;}
.y18_c01023{bottom:296.920013pt;}
.y17_c01023{bottom:324.440013pt;}
.y16_c01023{bottom:368.280013pt;}
.y15_c01023{bottom:395.800013pt;}
.y14_c01023{bottom:439.320013pt;}
.y13_c01023{bottom:466.840013pt;}
.y12_c01023{bottom:510.680013pt;}
.y11_c01023{bottom:538.200013pt;}
.y10_c01023{bottom:581.720013pt;}
.yf_c01023{bottom:609.240013pt;}
.ye_c01023{bottom:653.080013pt;}
.yd_c01023{bottom:680.600013pt;}
.yc_c01023{bottom:724.120013pt;}
.yb_c01023{bottom:751.640013pt;}
.ya_c01023{bottom:779.480013pt;}
.y9_c01023{bottom:823.000013pt;}
.y8_c01023{bottom:850.520013pt;}
.y7_c01023{bottom:894.040013pt;}
.y6_c01023{bottom:937.880013pt;}
.y5_c01023{bottom:965.400013pt;}
.h4_c01023{height:15.680000pt;}
.h3_c01023{height:56.156250pt;}
.h5_c01023{height:56.312500pt;}
.h2_c01023{height:1067.800000pt;}
.h0_c01023{height:1122.520000pt;}
.h1_c01023{height:1122.666667pt;}
.w3_c01023{width:20.160000pt;}
.w2_c01023{width:768.039867pt;}
.w0_c01023{width:793.720000pt;}
.w1_c01023{width:794.000000pt;}
.x0_c01023{left:0.000000pt;}
.x1_c01023{left:12.840000pt;}
.x2_c01023{left:100.480133pt;}
.x3_c01023{left:386.600000pt;}
}





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

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





.ff0_c01024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01024;src:url('chunks/assets/font_ccf228438afdfc6d7db15f06.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.093262;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_c01024;src:url('chunks/assets/font_401ec8065ca192b9987201f7.woff2')format("woff");}.ff2_c01024{font-family:ff2_c01024;line-height:1.095703;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_c01024{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_c01024{vertical-align:0.000000px;}
.ls1_c01024{letter-spacing:0.000000px;}
.ls0_c01024{letter-spacing:0.472320px;}
.sc__c01024{text-shadow:none;}
.sc0_c01024{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__c01024{-webkit-text-stroke:0px transparent;}
.sc0_c01024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01024{word-spacing:-15.232320px;}
.ws1_c01024{word-spacing:0.000000px;}
._1_c01024{width:1.152000px;}
._2_c01024{width:2.808000px;}
._6_c01024{width:4.176000px;}
._4_c01024{width:6.768000px;}
._0_c01024{width:10.368000px;}
._3_c01024{width:13.176000px;}
._5_c01024{width:14.472000px;}
.fc1_c01024{color:transparent;}
.fc0_c01024{color:rgb(0,0,0);}
.fs1_c01024{font-size:59.040000px;}
.fs0_c01024{font-size:72.000000px;}
.y0_c01024{bottom:0.000000px;}
.y2_c01024{bottom:3.195000px;}
.y4_c01024{bottom:3.960000px;}
.y1_c01024{bottom:53.999985px;}
.y3_c01024{bottom:56.114985px;}
.y1b_c01024{bottom:132.795015px;}
.y1a_c01024{bottom:182.115015px;}
.y19_c01024{bottom:231.075015px;}
.y18_c01024{bottom:280.035015px;}
.y17_c01024{bottom:310.995015px;}
.y16_c01024{bottom:360.315015px;}
.y15_c01024{bottom:409.275015px;}
.y14_c01024{bottom:440.235015px;}
.y13_c01024{bottom:489.195015px;}
.y12_c01024{bottom:520.515015px;}
.y11_c01024{bottom:551.475015px;}
.y10_c01024{bottom:600.435015px;}
.yf_c01024{bottom:649.395015px;}
.ye_c01024{bottom:698.715015px;}
.yd_c01024{bottom:729.675015px;}
.yc_c01024{bottom:778.635015px;}
.yb_c01024{bottom:809.595015px;}
.ya_c01024{bottom:858.915015px;}
.y9_c01024{bottom:907.875015px;}
.y8_c01024{bottom:956.835015px;}
.y7_c01024{bottom:1005.795015px;}
.y6_c01024{bottom:1055.115015px;}
.y5_c01024{bottom:1086.075015px;}
.h4_c01024{height:17.640000px;}
.h3_c01024{height:63.175781px;}
.h5_c01024{height:63.351563px;}
.h2_c01024{height:1201.275000px;}
.h0_c01024{height:1262.835000px;}
.h1_c01024{height:1263.000000px;}
.w3_c01024{width:22.680000px;}
.w2_c01024{width:864.044850px;}
.w0_c01024{width:892.935000px;}
.w1_c01024{width:893.250000px;}
.x0_c01024{left:0.000000px;}
.x1_c01024{left:14.445000px;}
.x2_c01024{left:113.040150px;}
.x3_c01024{left:434.925000px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls1_c01024{letter-spacing:0.000000pt;}
.ls0_c01024{letter-spacing:0.419840pt;}
.ws0_c01024{word-spacing:-13.539840pt;}
.ws1_c01024{word-spacing:0.000000pt;}
._1_c01024{width:1.024000pt;}
._2_c01024{width:2.496000pt;}
._6_c01024{width:3.712000pt;}
._4_c01024{width:6.016000pt;}
._0_c01024{width:9.216000pt;}
._3_c01024{width:11.712000pt;}
._5_c01024{width:12.864000pt;}
.fs1_c01024{font-size:52.480000pt;}
.fs0_c01024{font-size:64.000000pt;}
.y0_c01024{bottom:0.000000pt;}
.y2_c01024{bottom:2.840000pt;}
.y4_c01024{bottom:3.520000pt;}
.y1_c01024{bottom:47.999987pt;}
.y3_c01024{bottom:49.879987pt;}
.y1b_c01024{bottom:118.040013pt;}
.y1a_c01024{bottom:161.880013pt;}
.y19_c01024{bottom:205.400013pt;}
.y18_c01024{bottom:248.920013pt;}
.y17_c01024{bottom:276.440013pt;}
.y16_c01024{bottom:320.280013pt;}
.y15_c01024{bottom:363.800013pt;}
.y14_c01024{bottom:391.320013pt;}
.y13_c01024{bottom:434.840013pt;}
.y12_c01024{bottom:462.680013pt;}
.y11_c01024{bottom:490.200013pt;}
.y10_c01024{bottom:533.720013pt;}
.yf_c01024{bottom:577.240013pt;}
.ye_c01024{bottom:621.080013pt;}
.yd_c01024{bottom:648.600013pt;}
.yc_c01024{bottom:692.120013pt;}
.yb_c01024{bottom:719.640013pt;}
.ya_c01024{bottom:763.480013pt;}
.y9_c01024{bottom:807.000013pt;}
.y8_c01024{bottom:850.520013pt;}
.y7_c01024{bottom:894.040013pt;}
.y6_c01024{bottom:937.880013pt;}
.y5_c01024{bottom:965.400013pt;}
.h4_c01024{height:15.680000pt;}
.h3_c01024{height:56.156250pt;}
.h5_c01024{height:56.312500pt;}
.h2_c01024{height:1067.800000pt;}
.h0_c01024{height:1122.520000pt;}
.h1_c01024{height:1122.666667pt;}
.w3_c01024{width:20.160000pt;}
.w2_c01024{width:768.039867pt;}
.w0_c01024{width:793.720000pt;}
.w1_c01024{width:794.000000pt;}
.x0_c01024{left:0.000000pt;}
.x1_c01024{left:12.840000pt;}
.x2_c01024{left:100.480133pt;}
.x3_c01024{left:386.600000pt;}
}





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

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





.ff0_c01025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01025;src:url('chunks/assets/font_2d9068189e716df59a5139bb.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.093262;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_c01025;src:url('chunks/assets/font_c78cba80a62e3c371b36bb25.woff2')format("woff");}.ff2_c01025{font-family:ff2_c01025;line-height:1.095703;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_c01025{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_c01025{vertical-align:0.000000px;}
.v1_c01025{vertical-align:33.120000px;}
.ls1_c01025{letter-spacing:0.000000px;}
.ls0_c01025{letter-spacing:0.472320px;}
.sc__c01025{text-shadow:none;}
.sc0_c01025{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__c01025{-webkit-text-stroke:0px transparent;}
.sc0_c01025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01025{word-spacing:-18.000000px;}
.ws0_c01025{word-spacing:-15.232320px;}
.ws2_c01025{word-spacing:0.000000px;}
._4_c01025{width:1.584000px;}
._6_c01025{width:2.880000px;}
._1_c01025{width:7.992000px;}
._5_c01025{width:12.672000px;}
._8_c01025{width:13.896000px;}
._0_c01025{width:14.904000px;}
._3_c01025{width:19.008000px;}
._7_c01025{width:21.672000px;}
._9_c01025{width:24.912000px;}
._2_c01025{width:29.376000px;}
.fc1_c01025{color:transparent;}
.fc0_c01025{color:rgb(0,0,0);}
.fs2_c01025{font-size:47.520000px;}
.fs1_c01025{font-size:59.040000px;}
.fs0_c01025{font-size:72.000000px;}
.y0_c01025{bottom:0.000000px;}
.y2_c01025{bottom:3.195000px;}
.y4_c01025{bottom:3.960000px;}
.y1_c01025{bottom:53.999985px;}
.y3_c01025{bottom:56.114985px;}
.y1d_c01025{bottom:88.875000px;}
.y1c_c01025{bottom:119.835015px;}
.y1b_c01025{bottom:168.795015px;}
.y1a_c01025{bottom:200.115015px;}
.y19_c01025{bottom:249.075015px;}
.y18_c01025{bottom:298.035015px;}
.y17_c01025{bottom:346.995015px;}
.y16_c01025{bottom:396.315015px;}
.y15_c01025{bottom:445.275015px;}
.y14_c01025{bottom:476.235015px;}
.y13_c01025{bottom:525.195015px;}
.y12_c01025{bottom:556.515015px;}
.y11_c01025{bottom:605.475015px;}
.y10_c01025{bottom:654.435015px;}
.yf_c01025{bottom:685.395015px;}
.ye_c01025{bottom:734.715015px;}
.yd_c01025{bottom:783.675015px;}
.yc_c01025{bottom:814.635015px;}
.yb_c01025{bottom:863.595015px;}
.ya_c01025{bottom:894.915015px;}
.y9_c01025{bottom:925.875015px;}
.y8_c01025{bottom:974.835015px;}
.y7_c01025{bottom:1005.795015px;}
.y6_c01025{bottom:1055.115015px;}
.y5_c01025{bottom:1086.075015px;}
.h4_c01025{height:17.640000px;}
.h3_c01025{height:63.175781px;}
.h5_c01025{height:63.351563px;}
.h6_c01025{height:74.816016px;}
.h2_c01025{height:1201.275000px;}
.h0_c01025{height:1262.835000px;}
.h1_c01025{height:1263.000000px;}
.w3_c01025{width:22.680000px;}
.w2_c01025{width:864.044850px;}
.w0_c01025{width:892.935000px;}
.w1_c01025{width:893.250000px;}
.x0_c01025{left:0.000000px;}
.x1_c01025{left:14.445000px;}
.x2_c01025{left:113.040150px;}
.x3_c01025{left:434.925000px;}
@media print{
.v0_c01025{vertical-align:0.000000pt;}
.v1_c01025{vertical-align:29.440000pt;}
.ls1_c01025{letter-spacing:0.000000pt;}
.ls0_c01025{letter-spacing:0.419840pt;}
.ws1_c01025{word-spacing:-16.000000pt;}
.ws0_c01025{word-spacing:-13.539840pt;}
.ws2_c01025{word-spacing:0.000000pt;}
._4_c01025{width:1.408000pt;}
._6_c01025{width:2.560000pt;}
._1_c01025{width:7.104000pt;}
._5_c01025{width:11.264000pt;}
._8_c01025{width:12.352000pt;}
._0_c01025{width:13.248000pt;}
._3_c01025{width:16.896000pt;}
._7_c01025{width:19.264000pt;}
._9_c01025{width:22.144000pt;}
._2_c01025{width:26.112000pt;}
.fs2_c01025{font-size:42.240000pt;}
.fs1_c01025{font-size:52.480000pt;}
.fs0_c01025{font-size:64.000000pt;}
.y0_c01025{bottom:0.000000pt;}
.y2_c01025{bottom:2.840000pt;}
.y4_c01025{bottom:3.520000pt;}
.y1_c01025{bottom:47.999987pt;}
.y3_c01025{bottom:49.879987pt;}
.y1d_c01025{bottom:79.000000pt;}
.y1c_c01025{bottom:106.520013pt;}
.y1b_c01025{bottom:150.040013pt;}
.y1a_c01025{bottom:177.880013pt;}
.y19_c01025{bottom:221.400013pt;}
.y18_c01025{bottom:264.920013pt;}
.y17_c01025{bottom:308.440013pt;}
.y16_c01025{bottom:352.280013pt;}
.y15_c01025{bottom:395.800013pt;}
.y14_c01025{bottom:423.320013pt;}
.y13_c01025{bottom:466.840013pt;}
.y12_c01025{bottom:494.680013pt;}
.y11_c01025{bottom:538.200013pt;}
.y10_c01025{bottom:581.720013pt;}
.yf_c01025{bottom:609.240013pt;}
.ye_c01025{bottom:653.080013pt;}
.yd_c01025{bottom:696.600013pt;}
.yc_c01025{bottom:724.120013pt;}
.yb_c01025{bottom:767.640013pt;}
.ya_c01025{bottom:795.480013pt;}
.y9_c01025{bottom:823.000013pt;}
.y8_c01025{bottom:866.520013pt;}
.y7_c01025{bottom:894.040013pt;}
.y6_c01025{bottom:937.880013pt;}
.y5_c01025{bottom:965.400013pt;}
.h4_c01025{height:15.680000pt;}
.h3_c01025{height:56.156250pt;}
.h5_c01025{height:56.312500pt;}
.h6_c01025{height:66.503125pt;}
.h2_c01025{height:1067.800000pt;}
.h0_c01025{height:1122.520000pt;}
.h1_c01025{height:1122.666667pt;}
.w3_c01025{width:20.160000pt;}
.w2_c01025{width:768.039867pt;}
.w0_c01025{width:793.720000pt;}
.w1_c01025{width:794.000000pt;}
.x0_c01025{left:0.000000pt;}
.x1_c01025{left:12.840000pt;}
.x2_c01025{left:100.480133pt;}
.x3_c01025{left:386.600000pt;}
}





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

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





.ff0_c01026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01026;src:url('chunks/assets/font_f2916624ae53c0cf281b1ae5.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.093262;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_c01026;src:url('chunks/assets/font_4eb6c44b5941506a0f2212e2.woff2')format("woff");}.ff2_c01026{font-family:ff2_c01026;line-height:1.095703;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_c01026{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_c01026{vertical-align:0.000000px;}
.ls2_c01026{letter-spacing:0.000000px;}
.ls0_c01026{letter-spacing:0.472320px;}
.ls1_c01026{letter-spacing:25.780200px;}
.sc__c01026{text-shadow:none;}
.sc0_c01026{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__c01026{-webkit-text-stroke:0px transparent;}
.sc0_c01026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01026{word-spacing:-18.000000px;}
.ws0_c01026{word-spacing:-15.232320px;}
.ws2_c01026{word-spacing:0.000000px;}
._0_c01026{width:1.633200px;}
._5_c01026{width:2.749800px;}
._6_c01026{width:4.558800px;}
._1_c01026{width:5.688000px;}
._7_c01026{width:6.912000px;}
._a_c01026{width:7.920000px;}
._8_c01026{width:10.008000px;}
._2_c01026{width:14.904000px;}
._4_c01026{width:16.416000px;}
._3_c01026{width:22.824000px;}
._9_c01026{width:25.776000px;}
._b_c01026{width:28.872000px;}
.fc1_c01026{color:transparent;}
.fc0_c01026{color:rgb(0,0,0);}
.fs1_c01026{font-size:59.040000px;}
.fs0_c01026{font-size:72.000000px;}
.y0_c01026{bottom:0.000000px;}
.y2_c01026{bottom:3.195000px;}
.y4_c01026{bottom:3.960000px;}
.y1_c01026{bottom:53.999985px;}
.y3_c01026{bottom:56.114985px;}
.y1f_c01026{bottom:80.595015px;}
.y1e_c01026{bottom:129.915015px;}
.y1d_c01026{bottom:160.875015px;}
.y1c_c01026{bottom:191.835015px;}
.y1b_c01026{bottom:240.795015px;}
.y1a_c01026{bottom:290.115015px;}
.y19_c01026{bottom:321.075015px;}
.y18_c01026{bottom:370.035015px;}
.y17_c01026{bottom:400.995015px;}
.y16_c01026{bottom:432.315015px;}
.y15_c01026{bottom:481.275015px;}
.y14_c01026{bottom:512.235015px;}
.y13_c01026{bottom:543.195015px;}
.y12_c01026{bottom:592.515015px;}
.y11_c01026{bottom:623.475015px;}
.y10_c01026{bottom:672.435015px;}
.yf_c01026{bottom:703.395015px;}
.ye_c01026{bottom:734.715015px;}
.yd_c01026{bottom:783.675015px;}
.yc_c01026{bottom:832.635015px;}
.yb_c01026{bottom:863.595015px;}
.ya_c01026{bottom:894.915015px;}
.y9_c01026{bottom:943.875015px;}
.y8_c01026{bottom:974.835015px;}
.y7_c01026{bottom:1005.795015px;}
.y6_c01026{bottom:1055.115015px;}
.y5_c01026{bottom:1086.075015px;}
.h4_c01026{height:17.640000px;}
.h3_c01026{height:63.175781px;}
.h5_c01026{height:63.351563px;}
.h2_c01026{height:1201.275000px;}
.h0_c01026{height:1262.835000px;}
.h1_c01026{height:1263.000000px;}
.w3_c01026{width:22.680000px;}
.w2_c01026{width:864.044850px;}
.w0_c01026{width:892.935000px;}
.w1_c01026{width:893.250000px;}
.x0_c01026{left:0.000000px;}
.x1_c01026{left:14.445000px;}
.x2_c01026{left:113.040150px;}
.x3_c01026{left:434.925000px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls2_c01026{letter-spacing:0.000000pt;}
.ls0_c01026{letter-spacing:0.419840pt;}
.ls1_c01026{letter-spacing:22.915733pt;}
.ws1_c01026{word-spacing:-16.000000pt;}
.ws0_c01026{word-spacing:-13.539840pt;}
.ws2_c01026{word-spacing:0.000000pt;}
._0_c01026{width:1.451733pt;}
._5_c01026{width:2.444267pt;}
._6_c01026{width:4.052267pt;}
._1_c01026{width:5.056000pt;}
._7_c01026{width:6.144000pt;}
._a_c01026{width:7.040000pt;}
._8_c01026{width:8.896000pt;}
._2_c01026{width:13.248000pt;}
._4_c01026{width:14.592000pt;}
._3_c01026{width:20.288000pt;}
._9_c01026{width:22.912000pt;}
._b_c01026{width:25.664000pt;}
.fs1_c01026{font-size:52.480000pt;}
.fs0_c01026{font-size:64.000000pt;}
.y0_c01026{bottom:0.000000pt;}
.y2_c01026{bottom:2.840000pt;}
.y4_c01026{bottom:3.520000pt;}
.y1_c01026{bottom:47.999987pt;}
.y3_c01026{bottom:49.879987pt;}
.y1f_c01026{bottom:71.640013pt;}
.y1e_c01026{bottom:115.480013pt;}
.y1d_c01026{bottom:143.000013pt;}
.y1c_c01026{bottom:170.520013pt;}
.y1b_c01026{bottom:214.040013pt;}
.y1a_c01026{bottom:257.880013pt;}
.y19_c01026{bottom:285.400013pt;}
.y18_c01026{bottom:328.920013pt;}
.y17_c01026{bottom:356.440013pt;}
.y16_c01026{bottom:384.280013pt;}
.y15_c01026{bottom:427.800013pt;}
.y14_c01026{bottom:455.320013pt;}
.y13_c01026{bottom:482.840013pt;}
.y12_c01026{bottom:526.680013pt;}
.y11_c01026{bottom:554.200013pt;}
.y10_c01026{bottom:597.720013pt;}
.yf_c01026{bottom:625.240013pt;}
.ye_c01026{bottom:653.080013pt;}
.yd_c01026{bottom:696.600013pt;}
.yc_c01026{bottom:740.120013pt;}
.yb_c01026{bottom:767.640013pt;}
.ya_c01026{bottom:795.480013pt;}
.y9_c01026{bottom:839.000013pt;}
.y8_c01026{bottom:866.520013pt;}
.y7_c01026{bottom:894.040013pt;}
.y6_c01026{bottom:937.880013pt;}
.y5_c01026{bottom:965.400013pt;}
.h4_c01026{height:15.680000pt;}
.h3_c01026{height:56.156250pt;}
.h5_c01026{height:56.312500pt;}
.h2_c01026{height:1067.800000pt;}
.h0_c01026{height:1122.520000pt;}
.h1_c01026{height:1122.666667pt;}
.w3_c01026{width:20.160000pt;}
.w2_c01026{width:768.039867pt;}
.w0_c01026{width:793.720000pt;}
.w1_c01026{width:794.000000pt;}
.x0_c01026{left:0.000000pt;}
.x1_c01026{left:12.840000pt;}
.x2_c01026{left:100.480133pt;}
.x3_c01026{left:386.600000pt;}
}





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

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





.ff0_c01027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01027;src:url('chunks/assets/font_ee1ff24b933fe09d47991313.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.093262;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_c01027;src:url('chunks/assets/font_beaf3408293d8a6886c3e3e3.woff2')format("woff");}.ff2_c01027{font-family:ff2_c01027;line-height:1.095703;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_c01027{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_c01027{vertical-align:0.000000px;}
.ls1_c01027{letter-spacing:0.000000px;}
.ls0_c01027{letter-spacing:0.472320px;}
.sc__c01027{text-shadow:none;}
.sc0_c01027{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__c01027{-webkit-text-stroke:0px transparent;}
.sc0_c01027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01027{word-spacing:-18.000000px;}
.ws0_c01027{word-spacing:-15.232320px;}
.ws2_c01027{word-spacing:0.000000px;}
._6_c01027{width:1.944000px;}
._0_c01027{width:3.096000px;}
._1_c01027{width:4.536000px;}
._5_c01027{width:13.586400px;}
._4_c01027{width:16.560000px;}
._7_c01027{width:19.240200px;}
._2_c01027{width:23.760000px;}
._3_c01027{width:25.632000px;}
.fc2_c01027{color:transparent;}
.fc1_c01027{color:rgb(255,0,0);}
.fc0_c01027{color:rgb(0,0,0);}
.fs1_c01027{font-size:59.040000px;}
.fs0_c01027{font-size:72.000000px;}
.y0_c01027{bottom:0.000000px;}
.y2_c01027{bottom:3.195000px;}
.y4_c01027{bottom:3.960000px;}
.y1_c01027{bottom:53.999985px;}
.y3_c01027{bottom:56.114985px;}
.y1d_c01027{bottom:88.875000px;}
.y1c_c01027{bottom:137.835015px;}
.y1b_c01027{bottom:168.795015px;}
.y1a_c01027{bottom:218.115015px;}
.y19_c01027{bottom:249.075015px;}
.y18_c01027{bottom:298.035015px;}
.y17_c01027{bottom:328.995015px;}
.y16_c01027{bottom:378.315015px;}
.y15_c01027{bottom:409.275015px;}
.y14_c01027{bottom:458.235015px;}
.y13_c01027{bottom:489.195015px;}
.y12_c01027{bottom:538.515015px;}
.y11_c01027{bottom:569.475015px;}
.y10_c01027{bottom:618.435015px;}
.yf_c01027{bottom:649.395015px;}
.ye_c01027{bottom:698.715015px;}
.yd_c01027{bottom:747.675015px;}
.yc_c01027{bottom:796.635015px;}
.yb_c01027{bottom:845.595015px;}
.ya_c01027{bottom:876.915015px;}
.y9_c01027{bottom:925.875015px;}
.y8_c01027{bottom:956.835015px;}
.y7_c01027{bottom:1005.795015px;}
.y6_c01027{bottom:1037.115015px;}
.y5_c01027{bottom:1086.075015px;}
.h4_c01027{height:17.640000px;}
.h3_c01027{height:63.175781px;}
.h5_c01027{height:63.351563px;}
.h2_c01027{height:1201.275000px;}
.h0_c01027{height:1262.835000px;}
.h1_c01027{height:1263.000000px;}
.w3_c01027{width:22.680000px;}
.w2_c01027{width:864.044850px;}
.w0_c01027{width:892.935000px;}
.w1_c01027{width:893.250000px;}
.x0_c01027{left:0.000000px;}
.x1_c01027{left:14.445000px;}
.x2_c01027{left:113.040150px;}
.x3_c01027{left:434.925000px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.ls1_c01027{letter-spacing:0.000000pt;}
.ls0_c01027{letter-spacing:0.419840pt;}
.ws1_c01027{word-spacing:-16.000000pt;}
.ws0_c01027{word-spacing:-13.539840pt;}
.ws2_c01027{word-spacing:0.000000pt;}
._6_c01027{width:1.728000pt;}
._0_c01027{width:2.752000pt;}
._1_c01027{width:4.032000pt;}
._5_c01027{width:12.076800pt;}
._4_c01027{width:14.720000pt;}
._7_c01027{width:17.102400pt;}
._2_c01027{width:21.120000pt;}
._3_c01027{width:22.784000pt;}
.fs1_c01027{font-size:52.480000pt;}
.fs0_c01027{font-size:64.000000pt;}
.y0_c01027{bottom:0.000000pt;}
.y2_c01027{bottom:2.840000pt;}
.y4_c01027{bottom:3.520000pt;}
.y1_c01027{bottom:47.999987pt;}
.y3_c01027{bottom:49.879987pt;}
.y1d_c01027{bottom:79.000000pt;}
.y1c_c01027{bottom:122.520013pt;}
.y1b_c01027{bottom:150.040013pt;}
.y1a_c01027{bottom:193.880013pt;}
.y19_c01027{bottom:221.400013pt;}
.y18_c01027{bottom:264.920013pt;}
.y17_c01027{bottom:292.440013pt;}
.y16_c01027{bottom:336.280013pt;}
.y15_c01027{bottom:363.800013pt;}
.y14_c01027{bottom:407.320013pt;}
.y13_c01027{bottom:434.840013pt;}
.y12_c01027{bottom:478.680013pt;}
.y11_c01027{bottom:506.200013pt;}
.y10_c01027{bottom:549.720013pt;}
.yf_c01027{bottom:577.240013pt;}
.ye_c01027{bottom:621.080013pt;}
.yd_c01027{bottom:664.600013pt;}
.yc_c01027{bottom:708.120013pt;}
.yb_c01027{bottom:751.640013pt;}
.ya_c01027{bottom:779.480013pt;}
.y9_c01027{bottom:823.000013pt;}
.y8_c01027{bottom:850.520013pt;}
.y7_c01027{bottom:894.040013pt;}
.y6_c01027{bottom:921.880013pt;}
.y5_c01027{bottom:965.400013pt;}
.h4_c01027{height:15.680000pt;}
.h3_c01027{height:56.156250pt;}
.h5_c01027{height:56.312500pt;}
.h2_c01027{height:1067.800000pt;}
.h0_c01027{height:1122.520000pt;}
.h1_c01027{height:1122.666667pt;}
.w3_c01027{width:20.160000pt;}
.w2_c01027{width:768.039867pt;}
.w0_c01027{width:793.720000pt;}
.w1_c01027{width:794.000000pt;}
.x0_c01027{left:0.000000pt;}
.x1_c01027{left:12.840000pt;}
.x2_c01027{left:100.480133pt;}
.x3_c01027{left:386.600000pt;}
}





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

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





.ff0_c01028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01028;src:url('chunks/assets/font_d44c7c9b73dad839472c84eb.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.093262;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_c01028;src:url('chunks/assets/font_4f65e809af42122fc3aaa417.woff2')format("woff");}.ff2_c01028{font-family:ff2_c01028;line-height:1.104004;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_c01028;src:url('chunks/assets/font_38862d322f6215e0ebaefc95.woff2')format("woff");}.ff3_c01028{font-family:ff3_c01028;line-height:1.095703;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_c01028{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_c01028{vertical-align:0.000000px;}
.ls1_c01028{letter-spacing:0.000000px;}
.ls0_c01028{letter-spacing:0.472320px;}
.sc__c01028{text-shadow:none;}
.sc0_c01028{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__c01028{-webkit-text-stroke:0px transparent;}
.sc0_c01028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01028{word-spacing:-18.000000px;}
.ws0_c01028{word-spacing:-15.232320px;}
.ws2_c01028{word-spacing:0.000000px;}
.fc1_c01028{color:transparent;}
.fc0_c01028{color:rgb(0,0,0);}
.fs1_c01028{font-size:59.040000px;}
.fs0_c01028{font-size:72.000000px;}
.y0_c01028{bottom:0.000000px;}
.y2_c01028{bottom:3.195000px;}
.y4_c01028{bottom:3.960000px;}
.y1_c01028{bottom:53.999985px;}
.y3_c01028{bottom:56.114985px;}
.yf_c01028{bottom:595.395015px;}
.ye_c01028{bottom:644.715015px;}
.yd_c01028{bottom:693.675015px;}
.yc_c01028{bottom:742.635015px;}
.yb_c01028{bottom:791.595015px;}
.ya_c01028{bottom:840.915015px;}
.y9_c01028{bottom:889.875015px;}
.y8_c01028{bottom:938.835015px;}
.y7_c01028{bottom:987.795015px;}
.y6_c01028{bottom:1037.115015px;}
.y5_c01028{bottom:1086.075015px;}
.h4_c01028{height:17.640000px;}
.h3_c01028{height:63.175781px;}
.h6_c01028{height:63.351563px;}
.h5_c01028{height:63.949219px;}
.h2_c01028{height:1201.275000px;}
.h0_c01028{height:1262.835000px;}
.h1_c01028{height:1263.000000px;}
.w3_c01028{width:22.680000px;}
.w2_c01028{width:864.044850px;}
.w0_c01028{width:892.935000px;}
.w1_c01028{width:893.250000px;}
.x0_c01028{left:0.000000px;}
.x1_c01028{left:14.445000px;}
.x2_c01028{left:113.040150px;}
.x3_c01028{left:434.925000px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.ls1_c01028{letter-spacing:0.000000pt;}
.ls0_c01028{letter-spacing:0.419840pt;}
.ws1_c01028{word-spacing:-16.000000pt;}
.ws0_c01028{word-spacing:-13.539840pt;}
.ws2_c01028{word-spacing:0.000000pt;}
.fs1_c01028{font-size:52.480000pt;}
.fs0_c01028{font-size:64.000000pt;}
.y0_c01028{bottom:0.000000pt;}
.y2_c01028{bottom:2.840000pt;}
.y4_c01028{bottom:3.520000pt;}
.y1_c01028{bottom:47.999987pt;}
.y3_c01028{bottom:49.879987pt;}
.yf_c01028{bottom:529.240013pt;}
.ye_c01028{bottom:573.080013pt;}
.yd_c01028{bottom:616.600013pt;}
.yc_c01028{bottom:660.120013pt;}
.yb_c01028{bottom:703.640013pt;}
.ya_c01028{bottom:747.480013pt;}
.y9_c01028{bottom:791.000013pt;}
.y8_c01028{bottom:834.520013pt;}
.y7_c01028{bottom:878.040013pt;}
.y6_c01028{bottom:921.880013pt;}
.y5_c01028{bottom:965.400013pt;}
.h4_c01028{height:15.680000pt;}
.h3_c01028{height:56.156250pt;}
.h6_c01028{height:56.312500pt;}
.h5_c01028{height:56.843750pt;}
.h2_c01028{height:1067.800000pt;}
.h0_c01028{height:1122.520000pt;}
.h1_c01028{height:1122.666667pt;}
.w3_c01028{width:20.160000pt;}
.w2_c01028{width:768.039867pt;}
.w0_c01028{width:793.720000pt;}
.w1_c01028{width:794.000000pt;}
.x0_c01028{left:0.000000pt;}
.x1_c01028{left:12.840000pt;}
.x2_c01028{left:100.480133pt;}
.x3_c01028{left:386.600000pt;}
}





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

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





.ff0_c01029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01029;src:url('chunks/assets/font_c86fe6c26e640a4c3eed6112.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.093262;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_c01029;src:url('chunks/assets/font_f2f80cc5b3977e9327244fab.woff2')format("woff");}.ff2_c01029{font-family:ff2_c01029;line-height:1.104004;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_c01029{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_c01029{vertical-align:0.000000px;}
.ls1_c01029{letter-spacing:0.000000px;}
.ls0_c01029{letter-spacing:0.472320px;}
.sc__c01029{text-shadow:none;}
.sc0_c01029{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__c01029{-webkit-text-stroke:0px transparent;}
.sc0_c01029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01029{word-spacing:-18.000000px;}
.ws0_c01029{word-spacing:-15.232320px;}
.ws2_c01029{word-spacing:0.000000px;}
.fc1_c01029{color:transparent;}
.fc0_c01029{color:rgb(0,0,0);}
.fs1_c01029{font-size:59.040000px;}
.fs0_c01029{font-size:72.000000px;}
.y0_c01029{bottom:0.000000px;}
.y2_c01029{bottom:3.195000px;}
.y4_c01029{bottom:3.960000px;}
.y1_c01029{bottom:53.999985px;}
.y3_c01029{bottom:56.114985px;}
.y1b_c01029{bottom:96.795015px;}
.y1a_c01029{bottom:146.115015px;}
.y19_c01029{bottom:195.075015px;}
.y18_c01029{bottom:244.035015px;}
.y17_c01029{bottom:274.995015px;}
.y16_c01029{bottom:324.315015px;}
.y15_c01029{bottom:373.275015px;}
.y14_c01029{bottom:422.235015px;}
.y13_c01029{bottom:453.195015px;}
.y12_c01029{bottom:502.515015px;}
.y11_c01029{bottom:551.475015px;}
.y10_c01029{bottom:600.435015px;}
.yf_c01029{bottom:631.395015px;}
.ye_c01029{bottom:680.715015px;}
.yd_c01029{bottom:711.675015px;}
.yc_c01029{bottom:760.635015px;}
.yb_c01029{bottom:809.595015px;}
.ya_c01029{bottom:858.915015px;}
.y9_c01029{bottom:907.875015px;}
.y8_c01029{bottom:956.835015px;}
.y7_c01029{bottom:1005.795015px;}
.y6_c01029{bottom:1037.115015px;}
.y5_c01029{bottom:1086.075015px;}
.h4_c01029{height:17.640000px;}
.h3_c01029{height:63.175781px;}
.h5_c01029{height:63.949219px;}
.h2_c01029{height:1201.275000px;}
.h0_c01029{height:1262.835000px;}
.h1_c01029{height:1263.000000px;}
.w3_c01029{width:22.680000px;}
.w2_c01029{width:864.044850px;}
.w0_c01029{width:892.935000px;}
.w1_c01029{width:893.250000px;}
.x0_c01029{left:0.000000px;}
.x1_c01029{left:14.445000px;}
.x2_c01029{left:113.040150px;}
.x3_c01029{left:434.925000px;}
@media print{
.v0_c01029{vertical-align:0.000000pt;}
.ls1_c01029{letter-spacing:0.000000pt;}
.ls0_c01029{letter-spacing:0.419840pt;}
.ws1_c01029{word-spacing:-16.000000pt;}
.ws0_c01029{word-spacing:-13.539840pt;}
.ws2_c01029{word-spacing:0.000000pt;}
.fs1_c01029{font-size:52.480000pt;}
.fs0_c01029{font-size:64.000000pt;}
.y0_c01029{bottom:0.000000pt;}
.y2_c01029{bottom:2.840000pt;}
.y4_c01029{bottom:3.520000pt;}
.y1_c01029{bottom:47.999987pt;}
.y3_c01029{bottom:49.879987pt;}
.y1b_c01029{bottom:86.040013pt;}
.y1a_c01029{bottom:129.880013pt;}
.y19_c01029{bottom:173.400013pt;}
.y18_c01029{bottom:216.920013pt;}
.y17_c01029{bottom:244.440013pt;}
.y16_c01029{bottom:288.280013pt;}
.y15_c01029{bottom:331.800013pt;}
.y14_c01029{bottom:375.320013pt;}
.y13_c01029{bottom:402.840013pt;}
.y12_c01029{bottom:446.680013pt;}
.y11_c01029{bottom:490.200013pt;}
.y10_c01029{bottom:533.720013pt;}
.yf_c01029{bottom:561.240013pt;}
.ye_c01029{bottom:605.080013pt;}
.yd_c01029{bottom:632.600013pt;}
.yc_c01029{bottom:676.120013pt;}
.yb_c01029{bottom:719.640013pt;}
.ya_c01029{bottom:763.480013pt;}
.y9_c01029{bottom:807.000013pt;}
.y8_c01029{bottom:850.520013pt;}
.y7_c01029{bottom:894.040013pt;}
.y6_c01029{bottom:921.880013pt;}
.y5_c01029{bottom:965.400013pt;}
.h4_c01029{height:15.680000pt;}
.h3_c01029{height:56.156250pt;}
.h5_c01029{height:56.843750pt;}
.h2_c01029{height:1067.800000pt;}
.h0_c01029{height:1122.520000pt;}
.h1_c01029{height:1122.666667pt;}
.w3_c01029{width:20.160000pt;}
.w2_c01029{width:768.039867pt;}
.w0_c01029{width:793.720000pt;}
.w1_c01029{width:794.000000pt;}
.x0_c01029{left:0.000000pt;}
.x1_c01029{left:12.840000pt;}
.x2_c01029{left:100.480133pt;}
.x3_c01029{left:386.600000pt;}
}





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

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





.ff0_c01030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01030;src:url('chunks/assets/font_2fcb4671f9f34e3338c98f45.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.093262;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_c01030{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_c01030{vertical-align:0.000000px;}
.ls1_c01030{letter-spacing:0.000000px;}
.ls0_c01030{letter-spacing:0.472320px;}
.sc__c01030{text-shadow:none;}
.sc0_c01030{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__c01030{-webkit-text-stroke:0px transparent;}
.sc0_c01030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01030{word-spacing:-18.000000px;}
.ws0_c01030{word-spacing:-15.232320px;}
.ws2_c01030{word-spacing:0.000000px;}
.fc1_c01030{color:transparent;}
.fc0_c01030{color:rgb(0,0,0);}
.fs1_c01030{font-size:59.040000px;}
.fs0_c01030{font-size:72.000000px;}
.y0_c01030{bottom:0.000000px;}
.y2_c01030{bottom:3.195000px;}
.y4_c01030{bottom:3.960000px;}
.y1_c01030{bottom:53.999985px;}
.y3_c01030{bottom:56.114985px;}
.y1c_c01030{bottom:65.835000px;}
.y1b_c01030{bottom:96.795015px;}
.y1a_c01030{bottom:146.115015px;}
.y19_c01030{bottom:195.075015px;}
.y18_c01030{bottom:244.035015px;}
.y17_c01030{bottom:274.995015px;}
.y16_c01030{bottom:324.315015px;}
.y15_c01030{bottom:355.275015px;}
.y14_c01030{bottom:404.235015px;}
.y13_c01030{bottom:435.195015px;}
.y12_c01030{bottom:484.515015px;}
.y11_c01030{bottom:533.475015px;}
.y10_c01030{bottom:564.435015px;}
.yf_c01030{bottom:613.395015px;}
.ye_c01030{bottom:662.715015px;}
.yd_c01030{bottom:711.675015px;}
.yc_c01030{bottom:760.635015px;}
.yb_c01030{bottom:791.595015px;}
.ya_c01030{bottom:840.915015px;}
.y9_c01030{bottom:889.875015px;}
.y8_c01030{bottom:938.835015px;}
.y7_c01030{bottom:987.795015px;}
.y6_c01030{bottom:1037.115015px;}
.y5_c01030{bottom:1086.075015px;}
.h4_c01030{height:17.640000px;}
.h3_c01030{height:63.175781px;}
.h2_c01030{height:1201.275000px;}
.h0_c01030{height:1262.835000px;}
.h1_c01030{height:1263.000000px;}
.w3_c01030{width:22.680000px;}
.w2_c01030{width:864.044850px;}
.w0_c01030{width:892.935000px;}
.w1_c01030{width:893.250000px;}
.x0_c01030{left:0.000000px;}
.x1_c01030{left:14.445000px;}
.x2_c01030{left:113.040150px;}
.x3_c01030{left:434.925000px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.ls1_c01030{letter-spacing:0.000000pt;}
.ls0_c01030{letter-spacing:0.419840pt;}
.ws1_c01030{word-spacing:-16.000000pt;}
.ws0_c01030{word-spacing:-13.539840pt;}
.ws2_c01030{word-spacing:0.000000pt;}
.fs1_c01030{font-size:52.480000pt;}
.fs0_c01030{font-size:64.000000pt;}
.y0_c01030{bottom:0.000000pt;}
.y2_c01030{bottom:2.840000pt;}
.y4_c01030{bottom:3.520000pt;}
.y1_c01030{bottom:47.999987pt;}
.y3_c01030{bottom:49.879987pt;}
.y1c_c01030{bottom:58.520000pt;}
.y1b_c01030{bottom:86.040013pt;}
.y1a_c01030{bottom:129.880013pt;}
.y19_c01030{bottom:173.400013pt;}
.y18_c01030{bottom:216.920013pt;}
.y17_c01030{bottom:244.440013pt;}
.y16_c01030{bottom:288.280013pt;}
.y15_c01030{bottom:315.800013pt;}
.y14_c01030{bottom:359.320013pt;}
.y13_c01030{bottom:386.840013pt;}
.y12_c01030{bottom:430.680013pt;}
.y11_c01030{bottom:474.200013pt;}
.y10_c01030{bottom:501.720013pt;}
.yf_c01030{bottom:545.240013pt;}
.ye_c01030{bottom:589.080013pt;}
.yd_c01030{bottom:632.600013pt;}
.yc_c01030{bottom:676.120013pt;}
.yb_c01030{bottom:703.640013pt;}
.ya_c01030{bottom:747.480013pt;}
.y9_c01030{bottom:791.000013pt;}
.y8_c01030{bottom:834.520013pt;}
.y7_c01030{bottom:878.040013pt;}
.y6_c01030{bottom:921.880013pt;}
.y5_c01030{bottom:965.400013pt;}
.h4_c01030{height:15.680000pt;}
.h3_c01030{height:56.156250pt;}
.h2_c01030{height:1067.800000pt;}
.h0_c01030{height:1122.520000pt;}
.h1_c01030{height:1122.666667pt;}
.w3_c01030{width:20.160000pt;}
.w2_c01030{width:768.039867pt;}
.w0_c01030{width:793.720000pt;}
.w1_c01030{width:794.000000pt;}
.x0_c01030{left:0.000000pt;}
.x1_c01030{left:12.840000pt;}
.x2_c01030{left:100.480133pt;}
.x3_c01030{left:386.600000pt;}
}





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

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





.ff0_c01031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01031;src:url('chunks/assets/font_24058feeedc977fab49873ec.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.093262;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_c01031{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_c01031{vertical-align:0.000000px;}
.ls1_c01031{letter-spacing:0.000000px;}
.ls0_c01031{letter-spacing:0.472320px;}
.sc__c01031{text-shadow:none;}
.sc0_c01031{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__c01031{-webkit-text-stroke:0px transparent;}
.sc0_c01031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01031{word-spacing:-18.000000px;}
.ws0_c01031{word-spacing:-15.232320px;}
.ws2_c01031{word-spacing:0.000000px;}
.fc1_c01031{color:transparent;}
.fc0_c01031{color:rgb(0,0,0);}
.fs1_c01031{font-size:59.040000px;}
.fs0_c01031{font-size:72.000000px;}
.y0_c01031{bottom:0.000000px;}
.y2_c01031{bottom:3.195000px;}
.y4_c01031{bottom:3.960000px;}
.y1_c01031{bottom:53.999985px;}
.y3_c01031{bottom:56.114985px;}
.y1b_c01031{bottom:96.795015px;}
.y1a_c01031{bottom:146.115015px;}
.y19_c01031{bottom:195.075015px;}
.y18_c01031{bottom:244.035015px;}
.y17_c01031{bottom:274.995015px;}
.y16_c01031{bottom:324.315015px;}
.y15_c01031{bottom:355.275015px;}
.y14_c01031{bottom:404.235015px;}
.y13_c01031{bottom:453.195015px;}
.y12_c01031{bottom:502.515015px;}
.y11_c01031{bottom:551.475015px;}
.y10_c01031{bottom:600.435015px;}
.yf_c01031{bottom:631.395015px;}
.ye_c01031{bottom:680.715015px;}
.yd_c01031{bottom:729.675015px;}
.yc_c01031{bottom:760.635015px;}
.yb_c01031{bottom:809.595015px;}
.ya_c01031{bottom:840.915015px;}
.y9_c01031{bottom:889.875015px;}
.y8_c01031{bottom:938.835015px;}
.y7_c01031{bottom:987.795015px;}
.y6_c01031{bottom:1037.115015px;}
.y5_c01031{bottom:1086.075015px;}
.h4_c01031{height:17.640000px;}
.h3_c01031{height:63.175781px;}
.h2_c01031{height:1201.275000px;}
.h0_c01031{height:1262.835000px;}
.h1_c01031{height:1263.000000px;}
.w3_c01031{width:22.680000px;}
.w2_c01031{width:864.044850px;}
.w0_c01031{width:892.935000px;}
.w1_c01031{width:893.250000px;}
.x0_c01031{left:0.000000px;}
.x1_c01031{left:14.445000px;}
.x2_c01031{left:113.040150px;}
.x3_c01031{left:434.925000px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.ls1_c01031{letter-spacing:0.000000pt;}
.ls0_c01031{letter-spacing:0.419840pt;}
.ws1_c01031{word-spacing:-16.000000pt;}
.ws0_c01031{word-spacing:-13.539840pt;}
.ws2_c01031{word-spacing:0.000000pt;}
.fs1_c01031{font-size:52.480000pt;}
.fs0_c01031{font-size:64.000000pt;}
.y0_c01031{bottom:0.000000pt;}
.y2_c01031{bottom:2.840000pt;}
.y4_c01031{bottom:3.520000pt;}
.y1_c01031{bottom:47.999987pt;}
.y3_c01031{bottom:49.879987pt;}
.y1b_c01031{bottom:86.040013pt;}
.y1a_c01031{bottom:129.880013pt;}
.y19_c01031{bottom:173.400013pt;}
.y18_c01031{bottom:216.920013pt;}
.y17_c01031{bottom:244.440013pt;}
.y16_c01031{bottom:288.280013pt;}
.y15_c01031{bottom:315.800013pt;}
.y14_c01031{bottom:359.320013pt;}
.y13_c01031{bottom:402.840013pt;}
.y12_c01031{bottom:446.680013pt;}
.y11_c01031{bottom:490.200013pt;}
.y10_c01031{bottom:533.720013pt;}
.yf_c01031{bottom:561.240013pt;}
.ye_c01031{bottom:605.080013pt;}
.yd_c01031{bottom:648.600013pt;}
.yc_c01031{bottom:676.120013pt;}
.yb_c01031{bottom:719.640013pt;}
.ya_c01031{bottom:747.480013pt;}
.y9_c01031{bottom:791.000013pt;}
.y8_c01031{bottom:834.520013pt;}
.y7_c01031{bottom:878.040013pt;}
.y6_c01031{bottom:921.880013pt;}
.y5_c01031{bottom:965.400013pt;}
.h4_c01031{height:15.680000pt;}
.h3_c01031{height:56.156250pt;}
.h2_c01031{height:1067.800000pt;}
.h0_c01031{height:1122.520000pt;}
.h1_c01031{height:1122.666667pt;}
.w3_c01031{width:20.160000pt;}
.w2_c01031{width:768.039867pt;}
.w0_c01031{width:793.720000pt;}
.w1_c01031{width:794.000000pt;}
.x0_c01031{left:0.000000pt;}
.x1_c01031{left:12.840000pt;}
.x2_c01031{left:100.480133pt;}
.x3_c01031{left:386.600000pt;}
}





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

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





.ff0_c01032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01032;src:url('chunks/assets/font_abf095f2e113c5faa13ca3c9.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.093262;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_c01032{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_c01032{vertical-align:0.000000px;}
.ls1_c01032{letter-spacing:0.000000px;}
.ls0_c01032{letter-spacing:0.472320px;}
.sc__c01032{text-shadow:none;}
.sc0_c01032{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__c01032{-webkit-text-stroke:0px transparent;}
.sc0_c01032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01032{word-spacing:-18.000000px;}
.ws0_c01032{word-spacing:-15.232320px;}
.ws2_c01032{word-spacing:0.000000px;}
.fc1_c01032{color:transparent;}
.fc0_c01032{color:rgb(0,0,0);}
.fs1_c01032{font-size:59.040000px;}
.fs0_c01032{font-size:72.000000px;}
.y0_c01032{bottom:0.000000px;}
.y2_c01032{bottom:3.195000px;}
.y4_c01032{bottom:3.960000px;}
.y1_c01032{bottom:53.999985px;}
.y3_c01032{bottom:56.114985px;}
.y1c_c01032{bottom:83.835000px;}
.y1b_c01032{bottom:114.795015px;}
.y1a_c01032{bottom:146.115015px;}
.y19_c01032{bottom:177.075015px;}
.y18_c01032{bottom:226.035015px;}
.y17_c01032{bottom:274.995015px;}
.y16_c01032{bottom:324.315015px;}
.y15_c01032{bottom:373.275015px;}
.y14_c01032{bottom:422.235015px;}
.y13_c01032{bottom:471.195015px;}
.y12_c01032{bottom:520.515015px;}
.y11_c01032{bottom:569.475015px;}
.y10_c01032{bottom:618.435015px;}
.yf_c01032{bottom:667.395015px;}
.ye_c01032{bottom:716.715015px;}
.yd_c01032{bottom:765.675015px;}
.yc_c01032{bottom:814.635015px;}
.yb_c01032{bottom:863.595015px;}
.ya_c01032{bottom:894.915015px;}
.y9_c01032{bottom:925.875015px;}
.y8_c01032{bottom:974.835015px;}
.y7_c01032{bottom:1005.795015px;}
.y6_c01032{bottom:1037.115015px;}
.y5_c01032{bottom:1086.075015px;}
.h4_c01032{height:17.640000px;}
.h3_c01032{height:63.175781px;}
.h2_c01032{height:1201.275000px;}
.h0_c01032{height:1262.835000px;}
.h1_c01032{height:1263.000000px;}
.w3_c01032{width:22.680000px;}
.w2_c01032{width:864.044850px;}
.w0_c01032{width:892.935000px;}
.w1_c01032{width:893.250000px;}
.x0_c01032{left:0.000000px;}
.x1_c01032{left:14.445000px;}
.x2_c01032{left:113.040150px;}
.x3_c01032{left:434.925000px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.ls1_c01032{letter-spacing:0.000000pt;}
.ls0_c01032{letter-spacing:0.419840pt;}
.ws1_c01032{word-spacing:-16.000000pt;}
.ws0_c01032{word-spacing:-13.539840pt;}
.ws2_c01032{word-spacing:0.000000pt;}
.fs1_c01032{font-size:52.480000pt;}
.fs0_c01032{font-size:64.000000pt;}
.y0_c01032{bottom:0.000000pt;}
.y2_c01032{bottom:2.840000pt;}
.y4_c01032{bottom:3.520000pt;}
.y1_c01032{bottom:47.999987pt;}
.y3_c01032{bottom:49.879987pt;}
.y1c_c01032{bottom:74.520000pt;}
.y1b_c01032{bottom:102.040013pt;}
.y1a_c01032{bottom:129.880013pt;}
.y19_c01032{bottom:157.400013pt;}
.y18_c01032{bottom:200.920013pt;}
.y17_c01032{bottom:244.440013pt;}
.y16_c01032{bottom:288.280013pt;}
.y15_c01032{bottom:331.800013pt;}
.y14_c01032{bottom:375.320013pt;}
.y13_c01032{bottom:418.840013pt;}
.y12_c01032{bottom:462.680013pt;}
.y11_c01032{bottom:506.200013pt;}
.y10_c01032{bottom:549.720013pt;}
.yf_c01032{bottom:593.240013pt;}
.ye_c01032{bottom:637.080013pt;}
.yd_c01032{bottom:680.600013pt;}
.yc_c01032{bottom:724.120013pt;}
.yb_c01032{bottom:767.640013pt;}
.ya_c01032{bottom:795.480013pt;}
.y9_c01032{bottom:823.000013pt;}
.y8_c01032{bottom:866.520013pt;}
.y7_c01032{bottom:894.040013pt;}
.y6_c01032{bottom:921.880013pt;}
.y5_c01032{bottom:965.400013pt;}
.h4_c01032{height:15.680000pt;}
.h3_c01032{height:56.156250pt;}
.h2_c01032{height:1067.800000pt;}
.h0_c01032{height:1122.520000pt;}
.h1_c01032{height:1122.666667pt;}
.w3_c01032{width:20.160000pt;}
.w2_c01032{width:768.039867pt;}
.w0_c01032{width:793.720000pt;}
.w1_c01032{width:794.000000pt;}
.x0_c01032{left:0.000000pt;}
.x1_c01032{left:12.840000pt;}
.x2_c01032{left:100.480133pt;}
.x3_c01032{left:386.600000pt;}
}





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

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





.ff0_c01033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01033;src:url('chunks/assets/font_134e82aeb21000fa5ef52d3e.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.093262;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_c01033{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_c01033{vertical-align:0.000000px;}
.ls1_c01033{letter-spacing:0.000000px;}
.ls0_c01033{letter-spacing:0.472320px;}
.sc__c01033{text-shadow:none;}
.sc0_c01033{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__c01033{-webkit-text-stroke:0px transparent;}
.sc0_c01033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01033{word-spacing:-18.000000px;}
.ws0_c01033{word-spacing:-15.232320px;}
.ws2_c01033{word-spacing:0.000000px;}
.fc1_c01033{color:transparent;}
.fc0_c01033{color:rgb(0,0,0);}
.fs1_c01033{font-size:59.040000px;}
.fs0_c01033{font-size:72.000000px;}
.y0_c01033{bottom:0.000000px;}
.y2_c01033{bottom:3.195000px;}
.y4_c01033{bottom:3.960000px;}
.y1_c01033{bottom:53.999985px;}
.y3_c01033{bottom:56.114985px;}
.y1b_c01033{bottom:96.795015px;}
.y1a_c01033{bottom:128.115015px;}
.y19_c01033{bottom:177.075015px;}
.y18_c01033{bottom:226.035015px;}
.y17_c01033{bottom:274.995015px;}
.y16_c01033{bottom:324.315015px;}
.y15_c01033{bottom:355.275015px;}
.y14_c01033{bottom:404.235015px;}
.y13_c01033{bottom:453.195015px;}
.y12_c01033{bottom:502.515015px;}
.y11_c01033{bottom:551.475015px;}
.y10_c01033{bottom:582.435015px;}
.yf_c01033{bottom:631.395015px;}
.ye_c01033{bottom:680.715015px;}
.yd_c01033{bottom:729.675015px;}
.yc_c01033{bottom:778.635015px;}
.yb_c01033{bottom:827.595015px;}
.ya_c01033{bottom:858.915015px;}
.y9_c01033{bottom:907.875015px;}
.y8_c01033{bottom:956.835015px;}
.y7_c01033{bottom:1005.795015px;}
.y6_c01033{bottom:1037.115015px;}
.y5_c01033{bottom:1086.075015px;}
.h4_c01033{height:17.640000px;}
.h3_c01033{height:63.175781px;}
.h2_c01033{height:1201.275000px;}
.h0_c01033{height:1262.835000px;}
.h1_c01033{height:1263.000000px;}
.w3_c01033{width:22.680000px;}
.w2_c01033{width:864.044850px;}
.w0_c01033{width:892.935000px;}
.w1_c01033{width:893.250000px;}
.x0_c01033{left:0.000000px;}
.x1_c01033{left:14.445000px;}
.x2_c01033{left:113.040150px;}
.x3_c01033{left:434.925000px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.ls1_c01033{letter-spacing:0.000000pt;}
.ls0_c01033{letter-spacing:0.419840pt;}
.ws1_c01033{word-spacing:-16.000000pt;}
.ws0_c01033{word-spacing:-13.539840pt;}
.ws2_c01033{word-spacing:0.000000pt;}
.fs1_c01033{font-size:52.480000pt;}
.fs0_c01033{font-size:64.000000pt;}
.y0_c01033{bottom:0.000000pt;}
.y2_c01033{bottom:2.840000pt;}
.y4_c01033{bottom:3.520000pt;}
.y1_c01033{bottom:47.999987pt;}
.y3_c01033{bottom:49.879987pt;}
.y1b_c01033{bottom:86.040013pt;}
.y1a_c01033{bottom:113.880013pt;}
.y19_c01033{bottom:157.400013pt;}
.y18_c01033{bottom:200.920013pt;}
.y17_c01033{bottom:244.440013pt;}
.y16_c01033{bottom:288.280013pt;}
.y15_c01033{bottom:315.800013pt;}
.y14_c01033{bottom:359.320013pt;}
.y13_c01033{bottom:402.840013pt;}
.y12_c01033{bottom:446.680013pt;}
.y11_c01033{bottom:490.200013pt;}
.y10_c01033{bottom:517.720013pt;}
.yf_c01033{bottom:561.240013pt;}
.ye_c01033{bottom:605.080013pt;}
.yd_c01033{bottom:648.600013pt;}
.yc_c01033{bottom:692.120013pt;}
.yb_c01033{bottom:735.640013pt;}
.ya_c01033{bottom:763.480013pt;}
.y9_c01033{bottom:807.000013pt;}
.y8_c01033{bottom:850.520013pt;}
.y7_c01033{bottom:894.040013pt;}
.y6_c01033{bottom:921.880013pt;}
.y5_c01033{bottom:965.400013pt;}
.h4_c01033{height:15.680000pt;}
.h3_c01033{height:56.156250pt;}
.h2_c01033{height:1067.800000pt;}
.h0_c01033{height:1122.520000pt;}
.h1_c01033{height:1122.666667pt;}
.w3_c01033{width:20.160000pt;}
.w2_c01033{width:768.039867pt;}
.w0_c01033{width:793.720000pt;}
.w1_c01033{width:794.000000pt;}
.x0_c01033{left:0.000000pt;}
.x1_c01033{left:12.840000pt;}
.x2_c01033{left:100.480133pt;}
.x3_c01033{left:386.600000pt;}
}





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

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





.ff0_c01034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01034;src:url('chunks/assets/font_489b65fefac3dadb7db175b4.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.093262;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_c01034{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_c01034{vertical-align:0.000000px;}
.ls1_c01034{letter-spacing:0.000000px;}
.ls0_c01034{letter-spacing:0.472320px;}
.sc__c01034{text-shadow:none;}
.sc0_c01034{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__c01034{-webkit-text-stroke:0px transparent;}
.sc0_c01034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01034{word-spacing:-18.000000px;}
.ws0_c01034{word-spacing:-15.232320px;}
.ws2_c01034{word-spacing:0.000000px;}
.fc1_c01034{color:transparent;}
.fc0_c01034{color:rgb(0,0,0);}
.fs1_c01034{font-size:59.040000px;}
.fs0_c01034{font-size:72.000000px;}
.y0_c01034{bottom:0.000000px;}
.y2_c01034{bottom:3.195000px;}
.y4_c01034{bottom:3.960000px;}
.y1_c01034{bottom:53.999985px;}
.y3_c01034{bottom:56.114985px;}
.y1b_c01034{bottom:78.795000px;}
.y1a_c01034{bottom:128.115015px;}
.y19_c01034{bottom:159.075015px;}
.y18_c01034{bottom:208.035015px;}
.y17_c01034{bottom:238.995015px;}
.y16_c01034{bottom:288.315015px;}
.y15_c01034{bottom:337.275015px;}
.y14_c01034{bottom:386.235015px;}
.y13_c01034{bottom:435.195015px;}
.y12_c01034{bottom:484.515015px;}
.y11_c01034{bottom:533.475015px;}
.y10_c01034{bottom:582.435015px;}
.yf_c01034{bottom:613.395015px;}
.ye_c01034{bottom:662.715015px;}
.yd_c01034{bottom:711.675015px;}
.yc_c01034{bottom:742.635015px;}
.yb_c01034{bottom:791.595015px;}
.ya_c01034{bottom:840.915015px;}
.y9_c01034{bottom:889.875015px;}
.y8_c01034{bottom:938.835015px;}
.y7_c01034{bottom:987.795015px;}
.y6_c01034{bottom:1037.115015px;}
.y5_c01034{bottom:1086.075015px;}
.h4_c01034{height:17.640000px;}
.h3_c01034{height:63.175781px;}
.h2_c01034{height:1201.275000px;}
.h0_c01034{height:1262.835000px;}
.h1_c01034{height:1263.000000px;}
.w3_c01034{width:22.680000px;}
.w2_c01034{width:864.044850px;}
.w0_c01034{width:892.935000px;}
.w1_c01034{width:893.250000px;}
.x0_c01034{left:0.000000px;}
.x1_c01034{left:14.445000px;}
.x2_c01034{left:113.040150px;}
.x3_c01034{left:434.925000px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls1_c01034{letter-spacing:0.000000pt;}
.ls0_c01034{letter-spacing:0.419840pt;}
.ws1_c01034{word-spacing:-16.000000pt;}
.ws0_c01034{word-spacing:-13.539840pt;}
.ws2_c01034{word-spacing:0.000000pt;}
.fs1_c01034{font-size:52.480000pt;}
.fs0_c01034{font-size:64.000000pt;}
.y0_c01034{bottom:0.000000pt;}
.y2_c01034{bottom:2.840000pt;}
.y4_c01034{bottom:3.520000pt;}
.y1_c01034{bottom:47.999987pt;}
.y3_c01034{bottom:49.879987pt;}
.y1b_c01034{bottom:70.040000pt;}
.y1a_c01034{bottom:113.880013pt;}
.y19_c01034{bottom:141.400013pt;}
.y18_c01034{bottom:184.920013pt;}
.y17_c01034{bottom:212.440013pt;}
.y16_c01034{bottom:256.280013pt;}
.y15_c01034{bottom:299.800013pt;}
.y14_c01034{bottom:343.320013pt;}
.y13_c01034{bottom:386.840013pt;}
.y12_c01034{bottom:430.680013pt;}
.y11_c01034{bottom:474.200013pt;}
.y10_c01034{bottom:517.720013pt;}
.yf_c01034{bottom:545.240013pt;}
.ye_c01034{bottom:589.080013pt;}
.yd_c01034{bottom:632.600013pt;}
.yc_c01034{bottom:660.120013pt;}
.yb_c01034{bottom:703.640013pt;}
.ya_c01034{bottom:747.480013pt;}
.y9_c01034{bottom:791.000013pt;}
.y8_c01034{bottom:834.520013pt;}
.y7_c01034{bottom:878.040013pt;}
.y6_c01034{bottom:921.880013pt;}
.y5_c01034{bottom:965.400013pt;}
.h4_c01034{height:15.680000pt;}
.h3_c01034{height:56.156250pt;}
.h2_c01034{height:1067.800000pt;}
.h0_c01034{height:1122.520000pt;}
.h1_c01034{height:1122.666667pt;}
.w3_c01034{width:20.160000pt;}
.w2_c01034{width:768.039867pt;}
.w0_c01034{width:793.720000pt;}
.w1_c01034{width:794.000000pt;}
.x0_c01034{left:0.000000pt;}
.x1_c01034{left:12.840000pt;}
.x2_c01034{left:100.480133pt;}
.x3_c01034{left:386.600000pt;}
}





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

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





.ff0_c01035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01035;src:url('chunks/assets/font_7611e38be2af0d78988e954b.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.093262;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_c01035{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_c01035{vertical-align:0.000000px;}
.ls1_c01035{letter-spacing:0.000000px;}
.ls0_c01035{letter-spacing:0.472320px;}
.sc__c01035{text-shadow:none;}
.sc0_c01035{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__c01035{-webkit-text-stroke:0px transparent;}
.sc0_c01035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01035{word-spacing:-15.232320px;}
.ws1_c01035{word-spacing:0.000000px;}
.fc1_c01035{color:transparent;}
.fc0_c01035{color:rgb(0,0,0);}
.fs1_c01035{font-size:59.040000px;}
.fs0_c01035{font-size:72.000000px;}
.y0_c01035{bottom:0.000000px;}
.y2_c01035{bottom:3.195000px;}
.y4_c01035{bottom:3.960000px;}
.y1_c01035{bottom:53.999985px;}
.y3_c01035{bottom:56.114985px;}
.yc_c01035{bottom:742.635015px;}
.yb_c01035{bottom:791.595015px;}
.ya_c01035{bottom:840.915015px;}
.y9_c01035{bottom:889.875015px;}
.y8_c01035{bottom:938.835015px;}
.y7_c01035{bottom:987.795015px;}
.y6_c01035{bottom:1037.115015px;}
.y5_c01035{bottom:1086.075015px;}
.h4_c01035{height:17.640000px;}
.h3_c01035{height:63.175781px;}
.h2_c01035{height:1201.275000px;}
.h0_c01035{height:1262.835000px;}
.h1_c01035{height:1263.000000px;}
.w3_c01035{width:22.680000px;}
.w2_c01035{width:864.044850px;}
.w0_c01035{width:892.935000px;}
.w1_c01035{width:893.250000px;}
.x0_c01035{left:0.000000px;}
.x1_c01035{left:14.445000px;}
.x2_c01035{left:113.040150px;}
.x3_c01035{left:434.925000px;}
@media print{
.v0_c01035{vertical-align:0.000000pt;}
.ls1_c01035{letter-spacing:0.000000pt;}
.ls0_c01035{letter-spacing:0.419840pt;}
.ws0_c01035{word-spacing:-13.539840pt;}
.ws1_c01035{word-spacing:0.000000pt;}
.fs1_c01035{font-size:52.480000pt;}
.fs0_c01035{font-size:64.000000pt;}
.y0_c01035{bottom:0.000000pt;}
.y2_c01035{bottom:2.840000pt;}
.y4_c01035{bottom:3.520000pt;}
.y1_c01035{bottom:47.999987pt;}
.y3_c01035{bottom:49.879987pt;}
.yc_c01035{bottom:660.120013pt;}
.yb_c01035{bottom:703.640013pt;}
.ya_c01035{bottom:747.480013pt;}
.y9_c01035{bottom:791.000013pt;}
.y8_c01035{bottom:834.520013pt;}
.y7_c01035{bottom:878.040013pt;}
.y6_c01035{bottom:921.880013pt;}
.y5_c01035{bottom:965.400013pt;}
.h4_c01035{height:15.680000pt;}
.h3_c01035{height:56.156250pt;}
.h2_c01035{height:1067.800000pt;}
.h0_c01035{height:1122.520000pt;}
.h1_c01035{height:1122.666667pt;}
.w3_c01035{width:20.160000pt;}
.w2_c01035{width:768.039867pt;}
.w0_c01035{width:793.720000pt;}
.w1_c01035{width:794.000000pt;}
.x0_c01035{left:0.000000pt;}
.x1_c01035{left:12.840000pt;}
.x2_c01035{left:100.480133pt;}
.x3_c01035{left:386.600000pt;}
}





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

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





.ff0_c01036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01036;src:url('chunks/assets/font_c8880abf7dbac6a9f9ff5e14.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.093262;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_c01036;src:url('chunks/assets/font_d61d86cca191b0ff9ab78da6.woff2')format("woff");}.ff2_c01036{font-family:ff2_c01036;line-height:1.104004;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_c01036;src:url('chunks/assets/font_15bcbfd2c3ad3bafe1d039a8.woff2')format("woff");}.ff3_c01036{font-family:ff3_c01036;line-height:0.893066;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_c01036;src:url('chunks/assets/font_5979f06f2f789d4c46b9ae6b.woff2')format("woff");}.ff4_c01036{font-family:ff4_c01036;line-height:1.095703;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_c01036{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_c01036{vertical-align:0.000000px;}
.ls1_c01036{letter-spacing:0.000000px;}
.ls0_c01036{letter-spacing:0.472320px;}
.sc__c01036{text-shadow:none;}
.sc0_c01036{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__c01036{-webkit-text-stroke:0px transparent;}
.sc0_c01036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01036{word-spacing:-18.000000px;}
.ws0_c01036{word-spacing:-15.232320px;}
.ws2_c01036{word-spacing:0.000000px;}
._0_c01036{width:3.312000px;}
._3_c01036{width:6.264000px;}
._1_c01036{width:7.704000px;}
._4_c01036{width:9.432000px;}
._2_c01036{width:10.944000px;}
.fc1_c01036{color:transparent;}
.fc0_c01036{color:rgb(0,0,0);}
.fs1_c01036{font-size:59.040000px;}
.fs0_c01036{font-size:72.000000px;}
.y0_c01036{bottom:0.000000px;}
.y2_c01036{bottom:3.195000px;}
.y4_c01036{bottom:3.960000px;}
.y1_c01036{bottom:53.999985px;}
.y3_c01036{bottom:56.114985px;}
.y35_c01036{bottom:92.475000px;}
.y34_c01036{bottom:113.355015px;}
.y33_c01036{bottom:133.875015px;}
.y32_c01036{bottom:154.755015px;}
.y31_c01036{bottom:175.275015px;}
.y30_c01036{bottom:196.155015px;}
.y2f_c01036{bottom:216.675015px;}
.y2e_c01036{bottom:237.195015px;}
.y2d_c01036{bottom:258.075015px;}
.y2c_c01036{bottom:278.595015px;}
.y2b_c01036{bottom:299.475015px;}
.y2a_c01036{bottom:319.995015px;}
.y29_c01036{bottom:340.875015px;}
.y28_c01036{bottom:361.395015px;}
.y27_c01036{bottom:382.275015px;}
.y26_c01036{bottom:402.795015px;}
.y25_c01036{bottom:423.675015px;}
.y24_c01036{bottom:444.195015px;}
.y23_c01036{bottom:465.075015px;}
.y22_c01036{bottom:485.595015px;}
.y21_c01036{bottom:506.475015px;}
.y20_c01036{bottom:526.995015px;}
.y1f_c01036{bottom:547.875015px;}
.y1e_c01036{bottom:568.395015px;}
.y1d_c01036{bottom:589.275015px;}
.y1c_c01036{bottom:609.795015px;}
.y1b_c01036{bottom:630.675015px;}
.y1a_c01036{bottom:651.195015px;}
.y19_c01036{bottom:672.075015px;}
.y18_c01036{bottom:692.595015px;}
.y17_c01036{bottom:713.475015px;}
.y16_c01036{bottom:733.995015px;}
.y15_c01036{bottom:754.875015px;}
.y14_c01036{bottom:775.395015px;}
.y13_c01036{bottom:796.275015px;}
.y12_c01036{bottom:816.795015px;}
.y11_c01036{bottom:837.675015px;}
.y10_c01036{bottom:858.195015px;}
.yf_c01036{bottom:879.075015px;}
.ye_c01036{bottom:899.595015px;}
.yd_c01036{bottom:920.475015px;}
.yc_c01036{bottom:940.995015px;}
.yb_c01036{bottom:961.875015px;}
.ya_c01036{bottom:982.395015px;}
.y9_c01036{bottom:1003.275015px;}
.y8_c01036{bottom:1023.795015px;}
.y7_c01036{bottom:1044.675015px;}
.y6_c01036{bottom:1065.195015px;}
.y5_c01036{bottom:1086.075015px;}
.h4_c01036{height:17.640000px;}
.h7_c01036{height:48.761719px;}
.h3_c01036{height:63.175781px;}
.h6_c01036{height:63.351563px;}
.h5_c01036{height:63.949219px;}
.h2_c01036{height:1201.275000px;}
.h0_c01036{height:1262.835000px;}
.h1_c01036{height:1263.000000px;}
.w3_c01036{width:22.680000px;}
.w2_c01036{width:864.044850px;}
.w0_c01036{width:892.935000px;}
.w1_c01036{width:893.250000px;}
.x0_c01036{left:0.000000px;}
.x1_c01036{left:14.445000px;}
.x2_c01036{left:113.040150px;}
.x4_c01036{left:166.140000px;}
.x3_c01036{left:434.925000px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.ls1_c01036{letter-spacing:0.000000pt;}
.ls0_c01036{letter-spacing:0.419840pt;}
.ws1_c01036{word-spacing:-16.000000pt;}
.ws0_c01036{word-spacing:-13.539840pt;}
.ws2_c01036{word-spacing:0.000000pt;}
._0_c01036{width:2.944000pt;}
._3_c01036{width:5.568000pt;}
._1_c01036{width:6.848000pt;}
._4_c01036{width:8.384000pt;}
._2_c01036{width:9.728000pt;}
.fs1_c01036{font-size:52.480000pt;}
.fs0_c01036{font-size:64.000000pt;}
.y0_c01036{bottom:0.000000pt;}
.y2_c01036{bottom:2.840000pt;}
.y4_c01036{bottom:3.520000pt;}
.y1_c01036{bottom:47.999987pt;}
.y3_c01036{bottom:49.879987pt;}
.y35_c01036{bottom:82.200000pt;}
.y34_c01036{bottom:100.760013pt;}
.y33_c01036{bottom:119.000013pt;}
.y32_c01036{bottom:137.560013pt;}
.y31_c01036{bottom:155.800013pt;}
.y30_c01036{bottom:174.360013pt;}
.y2f_c01036{bottom:192.600013pt;}
.y2e_c01036{bottom:210.840013pt;}
.y2d_c01036{bottom:229.400013pt;}
.y2c_c01036{bottom:247.640013pt;}
.y2b_c01036{bottom:266.200013pt;}
.y2a_c01036{bottom:284.440013pt;}
.y29_c01036{bottom:303.000013pt;}
.y28_c01036{bottom:321.240013pt;}
.y27_c01036{bottom:339.800013pt;}
.y26_c01036{bottom:358.040013pt;}
.y25_c01036{bottom:376.600013pt;}
.y24_c01036{bottom:394.840013pt;}
.y23_c01036{bottom:413.400013pt;}
.y22_c01036{bottom:431.640013pt;}
.y21_c01036{bottom:450.200013pt;}
.y20_c01036{bottom:468.440013pt;}
.y1f_c01036{bottom:487.000013pt;}
.y1e_c01036{bottom:505.240013pt;}
.y1d_c01036{bottom:523.800013pt;}
.y1c_c01036{bottom:542.040013pt;}
.y1b_c01036{bottom:560.600013pt;}
.y1a_c01036{bottom:578.840013pt;}
.y19_c01036{bottom:597.400013pt;}
.y18_c01036{bottom:615.640013pt;}
.y17_c01036{bottom:634.200013pt;}
.y16_c01036{bottom:652.440013pt;}
.y15_c01036{bottom:671.000013pt;}
.y14_c01036{bottom:689.240013pt;}
.y13_c01036{bottom:707.800013pt;}
.y12_c01036{bottom:726.040013pt;}
.y11_c01036{bottom:744.600013pt;}
.y10_c01036{bottom:762.840013pt;}
.yf_c01036{bottom:781.400013pt;}
.ye_c01036{bottom:799.640013pt;}
.yd_c01036{bottom:818.200013pt;}
.yc_c01036{bottom:836.440013pt;}
.yb_c01036{bottom:855.000013pt;}
.ya_c01036{bottom:873.240013pt;}
.y9_c01036{bottom:891.800013pt;}
.y8_c01036{bottom:910.040013pt;}
.y7_c01036{bottom:928.600013pt;}
.y6_c01036{bottom:946.840013pt;}
.y5_c01036{bottom:965.400013pt;}
.h4_c01036{height:15.680000pt;}
.h7_c01036{height:43.343750pt;}
.h3_c01036{height:56.156250pt;}
.h6_c01036{height:56.312500pt;}
.h5_c01036{height:56.843750pt;}
.h2_c01036{height:1067.800000pt;}
.h0_c01036{height:1122.520000pt;}
.h1_c01036{height:1122.666667pt;}
.w3_c01036{width:20.160000pt;}
.w2_c01036{width:768.039867pt;}
.w0_c01036{width:793.720000pt;}
.w1_c01036{width:794.000000pt;}
.x0_c01036{left:0.000000pt;}
.x1_c01036{left:12.840000pt;}
.x2_c01036{left:100.480133pt;}
.x4_c01036{left:147.680000pt;}
.x3_c01036{left:386.600000pt;}
}





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

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





.ff0_c01037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01037;src:url('chunks/assets/font_b951a6654c3b3280e935197c.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.093262;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_c01037;src:url('chunks/assets/font_0e42ecf2673e85eeaf75fb99.woff2')format("woff");}.ff2_c01037{font-family:ff2_c01037;line-height:1.104004;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_c01037;src:url('chunks/assets/font_71b1135ae1357a08a9b477a6.woff2')format("woff");}.ff3_c01037{font-family:ff3_c01037;line-height:1.095703;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_c01037;src:url('chunks/assets/font_fee6ea6fcaa21253c9b6bb77.woff2')format("woff");}.ff4_c01037{font-family:ff4_c01037;line-height:0.893066;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_c01037{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_c01037{vertical-align:0.000000px;}
.ls1_c01037{letter-spacing:0.000000px;}
.ls0_c01037{letter-spacing:0.472320px;}
.sc__c01037{text-shadow:none;}
.sc0_c01037{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__c01037{-webkit-text-stroke:0px transparent;}
.sc0_c01037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01037{word-spacing:-18.000000px;}
.ws0_c01037{word-spacing:-15.232320px;}
.ws2_c01037{word-spacing:0.000000px;}
._4_c01037{width:6.048000px;}
._2_c01037{width:7.776000px;}
._3_c01037{width:8.784000px;}
._0_c01037{width:10.944000px;}
._1_c01037{width:12.593400px;}
.fc1_c01037{color:transparent;}
.fc0_c01037{color:rgb(0,0,0);}
.fs1_c01037{font-size:59.040000px;}
.fs0_c01037{font-size:72.000000px;}
.y0_c01037{bottom:0.000000px;}
.y2_c01037{bottom:3.195000px;}
.y4_c01037{bottom:3.960000px;}
.y1_c01037{bottom:53.999985px;}
.y3_c01037{bottom:56.114985px;}
.y36_c01037{bottom:71.955000px;}
.y35_c01037{bottom:92.475000px;}
.y34_c01037{bottom:113.355015px;}
.y33_c01037{bottom:133.875015px;}
.y32_c01037{bottom:154.755015px;}
.y31_c01037{bottom:175.275015px;}
.y30_c01037{bottom:196.155015px;}
.y2f_c01037{bottom:216.675015px;}
.y2e_c01037{bottom:237.195015px;}
.y2d_c01037{bottom:258.075015px;}
.y2c_c01037{bottom:278.595015px;}
.y2b_c01037{bottom:299.475015px;}
.y2a_c01037{bottom:319.995015px;}
.y29_c01037{bottom:340.875015px;}
.y28_c01037{bottom:361.395015px;}
.y27_c01037{bottom:382.275015px;}
.y26_c01037{bottom:402.795015px;}
.y25_c01037{bottom:423.675015px;}
.y24_c01037{bottom:444.195015px;}
.y23_c01037{bottom:465.075015px;}
.y22_c01037{bottom:485.595015px;}
.y21_c01037{bottom:506.475015px;}
.y20_c01037{bottom:526.995015px;}
.y1f_c01037{bottom:547.875015px;}
.y1e_c01037{bottom:568.395015px;}
.y1d_c01037{bottom:589.275015px;}
.y1c_c01037{bottom:609.795015px;}
.y1b_c01037{bottom:630.675015px;}
.y1a_c01037{bottom:651.195015px;}
.y19_c01037{bottom:672.075015px;}
.y18_c01037{bottom:692.595015px;}
.y17_c01037{bottom:713.475015px;}
.y16_c01037{bottom:733.995015px;}
.y15_c01037{bottom:754.875015px;}
.y14_c01037{bottom:775.395015px;}
.y13_c01037{bottom:796.275015px;}
.y12_c01037{bottom:816.795015px;}
.y11_c01037{bottom:837.675015px;}
.y10_c01037{bottom:858.195015px;}
.yf_c01037{bottom:879.075015px;}
.ye_c01037{bottom:899.595015px;}
.yd_c01037{bottom:920.475015px;}
.yc_c01037{bottom:940.995015px;}
.yb_c01037{bottom:961.875015px;}
.ya_c01037{bottom:982.395015px;}
.y9_c01037{bottom:1003.275015px;}
.y8_c01037{bottom:1023.795015px;}
.y7_c01037{bottom:1044.675015px;}
.y6_c01037{bottom:1065.195015px;}
.y5_c01037{bottom:1086.075015px;}
.h4_c01037{height:17.640000px;}
.h3_c01037{height:63.175781px;}
.h6_c01037{height:63.351563px;}
.h5_c01037{height:63.949219px;}
.h2_c01037{height:1201.275000px;}
.h0_c01037{height:1262.835000px;}
.h1_c01037{height:1263.000000px;}
.w3_c01037{width:22.680000px;}
.w2_c01037{width:864.044850px;}
.w0_c01037{width:892.935000px;}
.w1_c01037{width:893.250000px;}
.x0_c01037{left:0.000000px;}
.x1_c01037{left:14.445000px;}
.x2_c01037{left:113.040150px;}
.x4_c01037{left:134.340090px;}
.x3_c01037{left:434.925000px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.ls1_c01037{letter-spacing:0.000000pt;}
.ls0_c01037{letter-spacing:0.419840pt;}
.ws1_c01037{word-spacing:-16.000000pt;}
.ws0_c01037{word-spacing:-13.539840pt;}
.ws2_c01037{word-spacing:0.000000pt;}
._4_c01037{width:5.376000pt;}
._2_c01037{width:6.912000pt;}
._3_c01037{width:7.808000pt;}
._0_c01037{width:9.728000pt;}
._1_c01037{width:11.194133pt;}
.fs1_c01037{font-size:52.480000pt;}
.fs0_c01037{font-size:64.000000pt;}
.y0_c01037{bottom:0.000000pt;}
.y2_c01037{bottom:2.840000pt;}
.y4_c01037{bottom:3.520000pt;}
.y1_c01037{bottom:47.999987pt;}
.y3_c01037{bottom:49.879987pt;}
.y36_c01037{bottom:63.960000pt;}
.y35_c01037{bottom:82.200000pt;}
.y34_c01037{bottom:100.760013pt;}
.y33_c01037{bottom:119.000013pt;}
.y32_c01037{bottom:137.560013pt;}
.y31_c01037{bottom:155.800013pt;}
.y30_c01037{bottom:174.360013pt;}
.y2f_c01037{bottom:192.600013pt;}
.y2e_c01037{bottom:210.840013pt;}
.y2d_c01037{bottom:229.400013pt;}
.y2c_c01037{bottom:247.640013pt;}
.y2b_c01037{bottom:266.200013pt;}
.y2a_c01037{bottom:284.440013pt;}
.y29_c01037{bottom:303.000013pt;}
.y28_c01037{bottom:321.240013pt;}
.y27_c01037{bottom:339.800013pt;}
.y26_c01037{bottom:358.040013pt;}
.y25_c01037{bottom:376.600013pt;}
.y24_c01037{bottom:394.840013pt;}
.y23_c01037{bottom:413.400013pt;}
.y22_c01037{bottom:431.640013pt;}
.y21_c01037{bottom:450.200013pt;}
.y20_c01037{bottom:468.440013pt;}
.y1f_c01037{bottom:487.000013pt;}
.y1e_c01037{bottom:505.240013pt;}
.y1d_c01037{bottom:523.800013pt;}
.y1c_c01037{bottom:542.040013pt;}
.y1b_c01037{bottom:560.600013pt;}
.y1a_c01037{bottom:578.840013pt;}
.y19_c01037{bottom:597.400013pt;}
.y18_c01037{bottom:615.640013pt;}
.y17_c01037{bottom:634.200013pt;}
.y16_c01037{bottom:652.440013pt;}
.y15_c01037{bottom:671.000013pt;}
.y14_c01037{bottom:689.240013pt;}
.y13_c01037{bottom:707.800013pt;}
.y12_c01037{bottom:726.040013pt;}
.y11_c01037{bottom:744.600013pt;}
.y10_c01037{bottom:762.840013pt;}
.yf_c01037{bottom:781.400013pt;}
.ye_c01037{bottom:799.640013pt;}
.yd_c01037{bottom:818.200013pt;}
.yc_c01037{bottom:836.440013pt;}
.yb_c01037{bottom:855.000013pt;}
.ya_c01037{bottom:873.240013pt;}
.y9_c01037{bottom:891.800013pt;}
.y8_c01037{bottom:910.040013pt;}
.y7_c01037{bottom:928.600013pt;}
.y6_c01037{bottom:946.840013pt;}
.y5_c01037{bottom:965.400013pt;}
.h4_c01037{height:15.680000pt;}
.h3_c01037{height:56.156250pt;}
.h6_c01037{height:56.312500pt;}
.h5_c01037{height:56.843750pt;}
.h2_c01037{height:1067.800000pt;}
.h0_c01037{height:1122.520000pt;}
.h1_c01037{height:1122.666667pt;}
.w3_c01037{width:20.160000pt;}
.w2_c01037{width:768.039867pt;}
.w0_c01037{width:793.720000pt;}
.w1_c01037{width:794.000000pt;}
.x0_c01037{left:0.000000pt;}
.x1_c01037{left:12.840000pt;}
.x2_c01037{left:100.480133pt;}
.x4_c01037{left:119.413413pt;}
.x3_c01037{left:386.600000pt;}
}





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

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





.ff0_c01038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01038;src:url('chunks/assets/font_efa9e3e2337fcaca36d8b036.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.093262;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_c01038;src:url('chunks/assets/font_15dfea65fd64fb5b7c262d6b.woff2')format("woff");}.ff2_c01038{font-family:ff2_c01038;line-height:1.104004;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_c01038;src:url('chunks/assets/font_e1eff108256f0cee29c54014.woff2')format("woff");}.ff3_c01038{font-family:ff3_c01038;line-height:0.893066;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_c01038;src:url('chunks/assets/font_b3ff17c38e076fad8dbdc541.woff2')format("woff");}.ff4_c01038{font-family:ff4_c01038;line-height:1.095703;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_c01038{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_c01038{vertical-align:0.000000px;}
.ls1_c01038{letter-spacing:0.000000px;}
.ls0_c01038{letter-spacing:0.472320px;}
.sc__c01038{text-shadow:none;}
.sc0_c01038{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__c01038{-webkit-text-stroke:0px transparent;}
.sc0_c01038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01038{word-spacing:-18.000000px;}
.ws0_c01038{word-spacing:-15.232320px;}
.ws2_c01038{word-spacing:0.000000px;}
.fc1_c01038{color:transparent;}
.fc0_c01038{color:rgb(0,0,0);}
.fs1_c01038{font-size:59.040000px;}
.fs0_c01038{font-size:72.000000px;}
.y0_c01038{bottom:0.000000px;}
.y2_c01038{bottom:3.195000px;}
.y4_c01038{bottom:3.960000px;}
.y1_c01038{bottom:53.999985px;}
.y3_c01038{bottom:56.114985px;}
.y36_c01038{bottom:71.955000px;}
.y35_c01038{bottom:92.475000px;}
.y34_c01038{bottom:113.355015px;}
.y33_c01038{bottom:133.875015px;}
.y32_c01038{bottom:154.755015px;}
.y31_c01038{bottom:175.275015px;}
.y30_c01038{bottom:196.155015px;}
.y2f_c01038{bottom:216.675015px;}
.y2e_c01038{bottom:237.195015px;}
.y2d_c01038{bottom:258.075015px;}
.y2c_c01038{bottom:278.595015px;}
.y2b_c01038{bottom:299.475015px;}
.y2a_c01038{bottom:319.995015px;}
.y29_c01038{bottom:340.875015px;}
.y28_c01038{bottom:361.395015px;}
.y27_c01038{bottom:382.275015px;}
.y26_c01038{bottom:402.795015px;}
.y25_c01038{bottom:423.675015px;}
.y24_c01038{bottom:444.195015px;}
.y23_c01038{bottom:465.075015px;}
.y22_c01038{bottom:485.595015px;}
.y21_c01038{bottom:506.475015px;}
.y20_c01038{bottom:526.995015px;}
.y1f_c01038{bottom:547.875015px;}
.y1e_c01038{bottom:568.395015px;}
.y1d_c01038{bottom:589.275015px;}
.y1c_c01038{bottom:609.795015px;}
.y1b_c01038{bottom:630.675015px;}
.y1a_c01038{bottom:651.195015px;}
.y19_c01038{bottom:672.075015px;}
.y18_c01038{bottom:692.595015px;}
.y17_c01038{bottom:713.475015px;}
.y16_c01038{bottom:733.995015px;}
.y15_c01038{bottom:754.875015px;}
.y14_c01038{bottom:775.395015px;}
.y13_c01038{bottom:796.275015px;}
.y12_c01038{bottom:816.795015px;}
.y11_c01038{bottom:837.675015px;}
.y10_c01038{bottom:858.195015px;}
.yf_c01038{bottom:879.075015px;}
.ye_c01038{bottom:899.595015px;}
.yd_c01038{bottom:920.475015px;}
.yc_c01038{bottom:940.995015px;}
.yb_c01038{bottom:961.875015px;}
.ya_c01038{bottom:982.395015px;}
.y9_c01038{bottom:1003.275015px;}
.y8_c01038{bottom:1023.795015px;}
.y7_c01038{bottom:1044.675015px;}
.y6_c01038{bottom:1065.195015px;}
.y5_c01038{bottom:1086.075015px;}
.h4_c01038{height:17.640000px;}
.h3_c01038{height:63.175781px;}
.h6_c01038{height:63.351563px;}
.h5_c01038{height:63.949219px;}
.h2_c01038{height:1201.275000px;}
.h0_c01038{height:1262.835000px;}
.h1_c01038{height:1263.000000px;}
.w3_c01038{width:22.680000px;}
.w2_c01038{width:864.044850px;}
.w0_c01038{width:892.935000px;}
.w1_c01038{width:893.250000px;}
.x0_c01038{left:0.000000px;}
.x1_c01038{left:14.445000px;}
.x2_c01038{left:113.040150px;}
.x4_c01038{left:134.340090px;}
.x3_c01038{left:434.925000px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls1_c01038{letter-spacing:0.000000pt;}
.ls0_c01038{letter-spacing:0.419840pt;}
.ws1_c01038{word-spacing:-16.000000pt;}
.ws0_c01038{word-spacing:-13.539840pt;}
.ws2_c01038{word-spacing:0.000000pt;}
.fs1_c01038{font-size:52.480000pt;}
.fs0_c01038{font-size:64.000000pt;}
.y0_c01038{bottom:0.000000pt;}
.y2_c01038{bottom:2.840000pt;}
.y4_c01038{bottom:3.520000pt;}
.y1_c01038{bottom:47.999987pt;}
.y3_c01038{bottom:49.879987pt;}
.y36_c01038{bottom:63.960000pt;}
.y35_c01038{bottom:82.200000pt;}
.y34_c01038{bottom:100.760013pt;}
.y33_c01038{bottom:119.000013pt;}
.y32_c01038{bottom:137.560013pt;}
.y31_c01038{bottom:155.800013pt;}
.y30_c01038{bottom:174.360013pt;}
.y2f_c01038{bottom:192.600013pt;}
.y2e_c01038{bottom:210.840013pt;}
.y2d_c01038{bottom:229.400013pt;}
.y2c_c01038{bottom:247.640013pt;}
.y2b_c01038{bottom:266.200013pt;}
.y2a_c01038{bottom:284.440013pt;}
.y29_c01038{bottom:303.000013pt;}
.y28_c01038{bottom:321.240013pt;}
.y27_c01038{bottom:339.800013pt;}
.y26_c01038{bottom:358.040013pt;}
.y25_c01038{bottom:376.600013pt;}
.y24_c01038{bottom:394.840013pt;}
.y23_c01038{bottom:413.400013pt;}
.y22_c01038{bottom:431.640013pt;}
.y21_c01038{bottom:450.200013pt;}
.y20_c01038{bottom:468.440013pt;}
.y1f_c01038{bottom:487.000013pt;}
.y1e_c01038{bottom:505.240013pt;}
.y1d_c01038{bottom:523.800013pt;}
.y1c_c01038{bottom:542.040013pt;}
.y1b_c01038{bottom:560.600013pt;}
.y1a_c01038{bottom:578.840013pt;}
.y19_c01038{bottom:597.400013pt;}
.y18_c01038{bottom:615.640013pt;}
.y17_c01038{bottom:634.200013pt;}
.y16_c01038{bottom:652.440013pt;}
.y15_c01038{bottom:671.000013pt;}
.y14_c01038{bottom:689.240013pt;}
.y13_c01038{bottom:707.800013pt;}
.y12_c01038{bottom:726.040013pt;}
.y11_c01038{bottom:744.600013pt;}
.y10_c01038{bottom:762.840013pt;}
.yf_c01038{bottom:781.400013pt;}
.ye_c01038{bottom:799.640013pt;}
.yd_c01038{bottom:818.200013pt;}
.yc_c01038{bottom:836.440013pt;}
.yb_c01038{bottom:855.000013pt;}
.ya_c01038{bottom:873.240013pt;}
.y9_c01038{bottom:891.800013pt;}
.y8_c01038{bottom:910.040013pt;}
.y7_c01038{bottom:928.600013pt;}
.y6_c01038{bottom:946.840013pt;}
.y5_c01038{bottom:965.400013pt;}
.h4_c01038{height:15.680000pt;}
.h3_c01038{height:56.156250pt;}
.h6_c01038{height:56.312500pt;}
.h5_c01038{height:56.843750pt;}
.h2_c01038{height:1067.800000pt;}
.h0_c01038{height:1122.520000pt;}
.h1_c01038{height:1122.666667pt;}
.w3_c01038{width:20.160000pt;}
.w2_c01038{width:768.039867pt;}
.w0_c01038{width:793.720000pt;}
.w1_c01038{width:794.000000pt;}
.x0_c01038{left:0.000000pt;}
.x1_c01038{left:12.840000pt;}
.x2_c01038{left:100.480133pt;}
.x4_c01038{left:119.413413pt;}
.x3_c01038{left:386.600000pt;}
}





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

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





.ff0_c01039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01039;src:url('chunks/assets/font_7fee3eff78a961854b60c9c7.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.093262;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_c01039;src:url('chunks/assets/font_4ac831e8ccfc4c2422da9fbd.woff2')format("woff");}.ff2_c01039{font-family:ff2_c01039;line-height:1.095703;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_c01039;src:url('chunks/assets/font_4089ae295884c714e327cfb1.woff2')format("woff");}.ff3_c01039{font-family:ff3_c01039;line-height:0.893066;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_c01039;src:url('chunks/assets/font_15d86efcbe714be14c314967.woff2')format("woff");}.ff4_c01039{font-family:ff4_c01039;line-height:1.104004;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_c01039{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_c01039{vertical-align:0.000000px;}
.ls1_c01039{letter-spacing:0.000000px;}
.ls0_c01039{letter-spacing:0.472320px;}
.sc__c01039{text-shadow:none;}
.sc0_c01039{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__c01039{-webkit-text-stroke:0px transparent;}
.sc0_c01039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01039{word-spacing:-15.232320px;}
.ws1_c01039{word-spacing:0.000000px;}
._0_c01039{width:3.456000px;}
._1_c01039{width:7.704000px;}
.fc1_c01039{color:transparent;}
.fc0_c01039{color:rgb(0,0,0);}
.fs1_c01039{font-size:59.040000px;}
.fs0_c01039{font-size:72.000000px;}
.y0_c01039{bottom:0.000000px;}
.y2_c01039{bottom:3.195000px;}
.y4_c01039{bottom:3.960000px;}
.y1_c01039{bottom:53.999985px;}
.y3_c01039{bottom:56.114985px;}
.y14_c01039{bottom:775.395015px;}
.y13_c01039{bottom:796.275015px;}
.y12_c01039{bottom:816.795015px;}
.y11_c01039{bottom:837.675015px;}
.y10_c01039{bottom:858.195015px;}
.yf_c01039{bottom:879.075015px;}
.ye_c01039{bottom:899.595015px;}
.yd_c01039{bottom:920.475015px;}
.yc_c01039{bottom:940.995015px;}
.yb_c01039{bottom:961.875015px;}
.ya_c01039{bottom:982.395015px;}
.y9_c01039{bottom:1003.275015px;}
.y8_c01039{bottom:1023.795015px;}
.y7_c01039{bottom:1044.675015px;}
.y6_c01039{bottom:1065.195015px;}
.y5_c01039{bottom:1086.075015px;}
.h4_c01039{height:17.640000px;}
.h6_c01039{height:48.761719px;}
.h3_c01039{height:63.175781px;}
.h5_c01039{height:63.351563px;}
.h7_c01039{height:63.949219px;}
.h2_c01039{height:1201.275000px;}
.h0_c01039{height:1262.835000px;}
.h1_c01039{height:1263.000000px;}
.w3_c01039{width:22.680000px;}
.w2_c01039{width:864.044850px;}
.w0_c01039{width:892.935000px;}
.w1_c01039{width:893.250000px;}
.x0_c01039{left:0.000000px;}
.x1_c01039{left:14.445000px;}
.x2_c01039{left:113.040150px;}
.x3_c01039{left:434.925000px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.ls1_c01039{letter-spacing:0.000000pt;}
.ls0_c01039{letter-spacing:0.419840pt;}
.ws0_c01039{word-spacing:-13.539840pt;}
.ws1_c01039{word-spacing:0.000000pt;}
._0_c01039{width:3.072000pt;}
._1_c01039{width:6.848000pt;}
.fs1_c01039{font-size:52.480000pt;}
.fs0_c01039{font-size:64.000000pt;}
.y0_c01039{bottom:0.000000pt;}
.y2_c01039{bottom:2.840000pt;}
.y4_c01039{bottom:3.520000pt;}
.y1_c01039{bottom:47.999987pt;}
.y3_c01039{bottom:49.879987pt;}
.y14_c01039{bottom:689.240013pt;}
.y13_c01039{bottom:707.800013pt;}
.y12_c01039{bottom:726.040013pt;}
.y11_c01039{bottom:744.600013pt;}
.y10_c01039{bottom:762.840013pt;}
.yf_c01039{bottom:781.400013pt;}
.ye_c01039{bottom:799.640013pt;}
.yd_c01039{bottom:818.200013pt;}
.yc_c01039{bottom:836.440013pt;}
.yb_c01039{bottom:855.000013pt;}
.ya_c01039{bottom:873.240013pt;}
.y9_c01039{bottom:891.800013pt;}
.y8_c01039{bottom:910.040013pt;}
.y7_c01039{bottom:928.600013pt;}
.y6_c01039{bottom:946.840013pt;}
.y5_c01039{bottom:965.400013pt;}
.h4_c01039{height:15.680000pt;}
.h6_c01039{height:43.343750pt;}
.h3_c01039{height:56.156250pt;}
.h5_c01039{height:56.312500pt;}
.h7_c01039{height:56.843750pt;}
.h2_c01039{height:1067.800000pt;}
.h0_c01039{height:1122.520000pt;}
.h1_c01039{height:1122.666667pt;}
.w3_c01039{width:20.160000pt;}
.w2_c01039{width:768.039867pt;}
.w0_c01039{width:793.720000pt;}
.w1_c01039{width:794.000000pt;}
.x0_c01039{left:0.000000pt;}
.x1_c01039{left:12.840000pt;}
.x2_c01039{left:100.480133pt;}
.x3_c01039{left:386.600000pt;}
}





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

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





.ff0_c01040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01040;src:url('chunks/assets/font_31857d4913c3488da37cbd3e.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.093262;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_c01040{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_c01040{vertical-align:0.000000px;}
.ls1_c01040{letter-spacing:0.000000px;}
.ls0_c01040{letter-spacing:0.472320px;}
.sc__c01040{text-shadow:none;}
.sc0_c01040{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__c01040{-webkit-text-stroke:0px transparent;}
.sc0_c01040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01040{word-spacing:-15.232320px;}
.ws1_c01040{word-spacing:0.000000px;}
.fc1_c01040{color:transparent;}
.fc0_c01040{color:rgb(0,0,0);}
.fs1_c01040{font-size:59.040000px;}
.fs0_c01040{font-size:72.000000px;}
.y6_c01040{bottom:-11.160000px;}
.y0_c01040{bottom:0.000000px;}
.y2_c01040{bottom:3.195000px;}
.y4_c01040{bottom:3.960000px;}
.y1_c01040{bottom:53.999985px;}
.y3_c01040{bottom:56.114985px;}
.y5_c01040{bottom:60.434985px;}
.h5_c01040{height:5.399997px;}
.h4_c01040{height:17.640000px;}
.h3_c01040{height:63.175781px;}
.h2_c01040{height:1201.275000px;}
.h0_c01040{height:1262.835000px;}
.h1_c01040{height:1263.000000px;}
.w3_c01040{width:22.680000px;}
.w4_c01040{width:39.240000px;}
.w2_c01040{width:864.044850px;}
.w0_c01040{width:892.935000px;}
.w1_c01040{width:893.250000px;}
.x0_c01040{left:0.000000px;}
.x5_c01040{left:3.240150px;}
.x1_c01040{left:14.445000px;}
.x2_c01040{left:113.040150px;}
.x4_c01040{left:432.045000px;}
.x3_c01040{left:434.925000px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.ls1_c01040{letter-spacing:0.000000pt;}
.ls0_c01040{letter-spacing:0.419840pt;}
.ws0_c01040{word-spacing:-13.539840pt;}
.ws1_c01040{word-spacing:0.000000pt;}
.fs1_c01040{font-size:52.480000pt;}
.fs0_c01040{font-size:64.000000pt;}
.y6_c01040{bottom:-9.920000pt;}
.y0_c01040{bottom:0.000000pt;}
.y2_c01040{bottom:2.840000pt;}
.y4_c01040{bottom:3.520000pt;}
.y1_c01040{bottom:47.999987pt;}
.y3_c01040{bottom:49.879987pt;}
.y5_c01040{bottom:53.719987pt;}
.h5_c01040{height:4.799997pt;}
.h4_c01040{height:15.680000pt;}
.h3_c01040{height:56.156250pt;}
.h2_c01040{height:1067.800000pt;}
.h0_c01040{height:1122.520000pt;}
.h1_c01040{height:1122.666667pt;}
.w3_c01040{width:20.160000pt;}
.w4_c01040{width:34.880000pt;}
.w2_c01040{width:768.039867pt;}
.w0_c01040{width:793.720000pt;}
.w1_c01040{width:794.000000pt;}
.x0_c01040{left:0.000000pt;}
.x5_c01040{left:2.880133pt;}
.x1_c01040{left:12.840000pt;}
.x2_c01040{left:100.480133pt;}
.x4_c01040{left:384.040000pt;}
.x3_c01040{left:386.600000pt;}
}





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

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





.ff0_c01041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01041;src:url('chunks/assets/font_190517a3111205cf0f19b4ae.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.093262;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_c01041;src:url('chunks/assets/font_b0f3fc6db8dca1417cd05331.woff2')format("woff");}.ff2_c01041{font-family:ff2_c01041;line-height:1.104004;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_c01041{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_c01041{vertical-align:0.000000px;}
.ls0_c01041{letter-spacing:0.000000px;}
.sc__c01041{text-shadow:none;}
.sc0_c01041{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__c01041{-webkit-text-stroke:0px transparent;}
.sc0_c01041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01041{word-spacing:0.000000px;}
.fc0_c01041{color:rgb(0,0,0);}
.fs0_c01041{font-size:72.000000px;}
.y0_c01041{bottom:0.000000px;}
.y1_c01041{bottom:53.999985px;}
.y8_c01041{bottom:791.595015px;}
.y7_c01041{bottom:840.915015px;}
.y6_c01041{bottom:889.875015px;}
.y5_c01041{bottom:938.835015px;}
.y4_c01041{bottom:987.795015px;}
.y3_c01041{bottom:1037.115015px;}
.y2_c01041{bottom:1086.075015px;}
.h3_c01041{height:63.175781px;}
.h4_c01041{height:63.949219px;}
.h2_c01041{height:1201.275000px;}
.h0_c01041{height:1262.835000px;}
.h1_c01041{height:1263.000000px;}
.w2_c01041{width:864.044850px;}
.w0_c01041{width:892.935000px;}
.w1_c01041{width:893.250000px;}
.x0_c01041{left:0.000000px;}
.x1_c01041{left:14.445000px;}
.x2_c01041{left:113.040150px;}
.x3_c01041{left:394.207800px;}
.x4_c01041{left:431.715150px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.ls0_c01041{letter-spacing:0.000000pt;}
.ws0_c01041{word-spacing:0.000000pt;}
.fs0_c01041{font-size:64.000000pt;}
.y0_c01041{bottom:0.000000pt;}
.y1_c01041{bottom:47.999987pt;}
.y8_c01041{bottom:703.640013pt;}
.y7_c01041{bottom:747.480013pt;}
.y6_c01041{bottom:791.000013pt;}
.y5_c01041{bottom:834.520013pt;}
.y4_c01041{bottom:878.040013pt;}
.y3_c01041{bottom:921.880013pt;}
.y2_c01041{bottom:965.400013pt;}
.h3_c01041{height:56.156250pt;}
.h4_c01041{height:56.843750pt;}
.h2_c01041{height:1067.800000pt;}
.h0_c01041{height:1122.520000pt;}
.h1_c01041{height:1122.666667pt;}
.w2_c01041{width:768.039867pt;}
.w0_c01041{width:793.720000pt;}
.w1_c01041{width:794.000000pt;}
.x0_c01041{left:0.000000pt;}
.x1_c01041{left:12.840000pt;}
.x2_c01041{left:100.480133pt;}
.x3_c01041{left:350.406933pt;}
.x4_c01041{left:383.746800pt;}
}





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

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





.ff0_c01042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01042;src:url('chunks/assets/font_d9ce64c3a46a0b13046a49bb.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.093262;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_c01042{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_c01042{vertical-align:0.000000px;}
.ls1_c01042{letter-spacing:0.000000px;}
.ls0_c01042{letter-spacing:0.472320px;}
.sc__c01042{text-shadow:none;}
.sc0_c01042{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__c01042{-webkit-text-stroke:0px transparent;}
.sc0_c01042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01042{word-spacing:-15.232320px;}
.ws1_c01042{word-spacing:0.000000px;}
.fc1_c01042{color:transparent;}
.fc0_c01042{color:rgb(0,0,0);}
.fs1_c01042{font-size:59.040000px;}
.fs0_c01042{font-size:72.000000px;}
.y6_c01042{bottom:-11.160000px;}
.y0_c01042{bottom:0.000000px;}
.y2_c01042{bottom:3.195000px;}
.y4_c01042{bottom:3.960000px;}
.y1_c01042{bottom:53.999985px;}
.y3_c01042{bottom:56.114985px;}
.y5_c01042{bottom:60.434985px;}
.h5_c01042{height:5.399997px;}
.h4_c01042{height:17.640000px;}
.h3_c01042{height:63.175781px;}
.h2_c01042{height:1201.275000px;}
.h0_c01042{height:1262.835000px;}
.h1_c01042{height:1263.000000px;}
.w3_c01042{width:22.680000px;}
.w4_c01042{width:39.240000px;}
.w2_c01042{width:864.044850px;}
.w0_c01042{width:892.935000px;}
.w1_c01042{width:893.250000px;}
.x0_c01042{left:0.000000px;}
.x5_c01042{left:3.240150px;}
.x1_c01042{left:14.445000px;}
.x2_c01042{left:113.040150px;}
.x4_c01042{left:432.045000px;}
.x3_c01042{left:434.925000px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.ls1_c01042{letter-spacing:0.000000pt;}
.ls0_c01042{letter-spacing:0.419840pt;}
.ws0_c01042{word-spacing:-13.539840pt;}
.ws1_c01042{word-spacing:0.000000pt;}
.fs1_c01042{font-size:52.480000pt;}
.fs0_c01042{font-size:64.000000pt;}
.y6_c01042{bottom:-9.920000pt;}
.y0_c01042{bottom:0.000000pt;}
.y2_c01042{bottom:2.840000pt;}
.y4_c01042{bottom:3.520000pt;}
.y1_c01042{bottom:47.999987pt;}
.y3_c01042{bottom:49.879987pt;}
.y5_c01042{bottom:53.719987pt;}
.h5_c01042{height:4.799997pt;}
.h4_c01042{height:15.680000pt;}
.h3_c01042{height:56.156250pt;}
.h2_c01042{height:1067.800000pt;}
.h0_c01042{height:1122.520000pt;}
.h1_c01042{height:1122.666667pt;}
.w3_c01042{width:20.160000pt;}
.w4_c01042{width:34.880000pt;}
.w2_c01042{width:768.039867pt;}
.w0_c01042{width:793.720000pt;}
.w1_c01042{width:794.000000pt;}
.x0_c01042{left:0.000000pt;}
.x5_c01042{left:2.880133pt;}
.x1_c01042{left:12.840000pt;}
.x2_c01042{left:100.480133pt;}
.x4_c01042{left:384.040000pt;}
.x3_c01042{left:386.600000pt;}
}





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

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





.ff0_c01043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01043;src:url('chunks/assets/font_82f9b2e30fa830171d6cd05f.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.093262;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_c01043;src:url('chunks/assets/font_4fe863f5dcb22af4b1726bda.woff2')format("woff");}.ff2_c01043{font-family:ff2_c01043;line-height:1.104004;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_c01043{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_c01043{vertical-align:0.000000px;}
.ls1_c01043{letter-spacing:0.000000px;}
.ls0_c01043{letter-spacing:0.472320px;}
.sc__c01043{text-shadow:none;}
.sc0_c01043{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__c01043{-webkit-text-stroke:0px transparent;}
.sc0_c01043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01043{word-spacing:-15.232320px;}
.ws1_c01043{word-spacing:0.000000px;}
.fc1_c01043{color:transparent;}
.fc0_c01043{color:rgb(0,0,0);}
.fs1_c01043{font-size:59.040000px;}
.fs0_c01043{font-size:72.000000px;}
.y13_c01043{bottom:-11.160000px;}
.y0_c01043{bottom:0.000000px;}
.y2_c01043{bottom:3.195000px;}
.y4_c01043{bottom:3.960000px;}
.y1_c01043{bottom:53.999985px;}
.y3_c01043{bottom:56.114985px;}
.y12_c01043{bottom:60.434985px;}
.y11_c01043{bottom:837.675015px;}
.y10_c01043{bottom:858.195015px;}
.yf_c01043{bottom:879.075015px;}
.ye_c01043{bottom:899.595015px;}
.yd_c01043{bottom:920.475015px;}
.yc_c01043{bottom:940.995015px;}
.yb_c01043{bottom:961.875015px;}
.ya_c01043{bottom:982.395015px;}
.y9_c01043{bottom:1003.275015px;}
.y8_c01043{bottom:1023.795015px;}
.y7_c01043{bottom:1044.675015px;}
.y6_c01043{bottom:1065.195015px;}
.y5_c01043{bottom:1086.075015px;}
.h6_c01043{height:5.399997px;}
.h4_c01043{height:17.640000px;}
.h3_c01043{height:63.175781px;}
.h5_c01043{height:63.949219px;}
.h2_c01043{height:1201.275000px;}
.h0_c01043{height:1262.835000px;}
.h1_c01043{height:1263.000000px;}
.w3_c01043{width:22.680000px;}
.w4_c01043{width:39.240000px;}
.w2_c01043{width:864.044850px;}
.w0_c01043{width:892.935000px;}
.w1_c01043{width:893.250000px;}
.x0_c01043{left:0.000000px;}
.x6_c01043{left:3.240150px;}
.x1_c01043{left:14.445000px;}
.x2_c01043{left:113.040150px;}
.x4_c01043{left:393.460650px;}
.x5_c01043{left:432.045000px;}
.x3_c01043{left:434.925000px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.ls1_c01043{letter-spacing:0.000000pt;}
.ls0_c01043{letter-spacing:0.419840pt;}
.ws0_c01043{word-spacing:-13.539840pt;}
.ws1_c01043{word-spacing:0.000000pt;}
.fs1_c01043{font-size:52.480000pt;}
.fs0_c01043{font-size:64.000000pt;}
.y13_c01043{bottom:-9.920000pt;}
.y0_c01043{bottom:0.000000pt;}
.y2_c01043{bottom:2.840000pt;}
.y4_c01043{bottom:3.520000pt;}
.y1_c01043{bottom:47.999987pt;}
.y3_c01043{bottom:49.879987pt;}
.y12_c01043{bottom:53.719987pt;}
.y11_c01043{bottom:744.600013pt;}
.y10_c01043{bottom:762.840013pt;}
.yf_c01043{bottom:781.400013pt;}
.ye_c01043{bottom:799.640013pt;}
.yd_c01043{bottom:818.200013pt;}
.yc_c01043{bottom:836.440013pt;}
.yb_c01043{bottom:855.000013pt;}
.ya_c01043{bottom:873.240013pt;}
.y9_c01043{bottom:891.800013pt;}
.y8_c01043{bottom:910.040013pt;}
.y7_c01043{bottom:928.600013pt;}
.y6_c01043{bottom:946.840013pt;}
.y5_c01043{bottom:965.400013pt;}
.h6_c01043{height:4.799997pt;}
.h4_c01043{height:15.680000pt;}
.h3_c01043{height:56.156250pt;}
.h5_c01043{height:56.843750pt;}
.h2_c01043{height:1067.800000pt;}
.h0_c01043{height:1122.520000pt;}
.h1_c01043{height:1122.666667pt;}
.w3_c01043{width:20.160000pt;}
.w4_c01043{width:34.880000pt;}
.w2_c01043{width:768.039867pt;}
.w0_c01043{width:793.720000pt;}
.w1_c01043{width:794.000000pt;}
.x0_c01043{left:0.000000pt;}
.x6_c01043{left:2.880133pt;}
.x1_c01043{left:12.840000pt;}
.x2_c01043{left:100.480133pt;}
.x4_c01043{left:349.742800pt;}
.x5_c01043{left:384.040000pt;}
.x3_c01043{left:386.600000pt;}
}





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

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





.ff0_c01044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01044;src:url('chunks/assets/font_a5b0cf6682431ac9ea8de4f6.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.093262;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_c01044{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_c01044{vertical-align:0.000000px;}
.ls1_c01044{letter-spacing:0.000000px;}
.ls0_c01044{letter-spacing:0.472320px;}
.sc__c01044{text-shadow:none;}
.sc0_c01044{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__c01044{-webkit-text-stroke:0px transparent;}
.sc0_c01044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01044{word-spacing:-15.232320px;}
.ws1_c01044{word-spacing:0.000000px;}
.fc1_c01044{color:transparent;}
.fc0_c01044{color:rgb(0,0,0);}
.fs1_c01044{font-size:59.040000px;}
.fs0_c01044{font-size:72.000000px;}
.y6_c01044{bottom:-11.160000px;}
.y0_c01044{bottom:0.000000px;}
.y2_c01044{bottom:3.195000px;}
.y4_c01044{bottom:3.960000px;}
.y1_c01044{bottom:53.999985px;}
.y3_c01044{bottom:56.114985px;}
.y7_c01044{bottom:60.434985px;}
.y5_c01044{bottom:329.355000px;}
.h6_c01044{height:5.399997px;}
.h5_c01044{height:5.400009px;}
.h4_c01044{height:17.640000px;}
.h3_c01044{height:63.175781px;}
.h2_c01044{height:1201.275000px;}
.h0_c01044{height:1262.835000px;}
.h1_c01044{height:1263.000000px;}
.w3_c01044{width:22.680000px;}
.w4_c01044{width:39.240000px;}
.w2_c01044{width:864.044850px;}
.w0_c01044{width:892.935000px;}
.w1_c01044{width:893.250000px;}
.x0_c01044{left:0.000000px;}
.x5_c01044{left:3.240150px;}
.x1_c01044{left:14.445000px;}
.x2_c01044{left:113.040150px;}
.x4_c01044{left:432.045000px;}
.x3_c01044{left:434.925000px;}
@media print{
.v0_c01044{vertical-align:0.000000pt;}
.ls1_c01044{letter-spacing:0.000000pt;}
.ls0_c01044{letter-spacing:0.419840pt;}
.ws0_c01044{word-spacing:-13.539840pt;}
.ws1_c01044{word-spacing:0.000000pt;}
.fs1_c01044{font-size:52.480000pt;}
.fs0_c01044{font-size:64.000000pt;}
.y6_c01044{bottom:-9.920000pt;}
.y0_c01044{bottom:0.000000pt;}
.y2_c01044{bottom:2.840000pt;}
.y4_c01044{bottom:3.520000pt;}
.y1_c01044{bottom:47.999987pt;}
.y3_c01044{bottom:49.879987pt;}
.y7_c01044{bottom:53.719987pt;}
.y5_c01044{bottom:292.760000pt;}
.h6_c01044{height:4.799997pt;}
.h5_c01044{height:4.800008pt;}
.h4_c01044{height:15.680000pt;}
.h3_c01044{height:56.156250pt;}
.h2_c01044{height:1067.800000pt;}
.h0_c01044{height:1122.520000pt;}
.h1_c01044{height:1122.666667pt;}
.w3_c01044{width:20.160000pt;}
.w4_c01044{width:34.880000pt;}
.w2_c01044{width:768.039867pt;}
.w0_c01044{width:793.720000pt;}
.w1_c01044{width:794.000000pt;}
.x0_c01044{left:0.000000pt;}
.x5_c01044{left:2.880133pt;}
.x1_c01044{left:12.840000pt;}
.x2_c01044{left:100.480133pt;}
.x4_c01044{left:384.040000pt;}
.x3_c01044{left:386.600000pt;}
}





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

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





.ff0_c01045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01045;src:url('chunks/assets/font_aaddd8892c693a608b85a50b.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.093262;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_c01045;src:url('chunks/assets/font_3e0a12496a2a64f0d3ce0b1c.woff2')format("woff");}.ff2_c01045{font-family:ff2_c01045;line-height:1.104004;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_c01045;src:url('chunks/assets/font_e75ade6380f5f24f0c3d978e.woff2')format("woff");}.ff3_c01045{font-family:ff3_c01045;line-height:0.893066;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_c01045{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_c01045{vertical-align:0.000000px;}
.ls1_c01045{letter-spacing:0.000000px;}
.ls0_c01045{letter-spacing:0.472320px;}
.sc__c01045{text-shadow:none;}
.sc0_c01045{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__c01045{-webkit-text-stroke:0px transparent;}
.sc0_c01045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01045{word-spacing:-15.232320px;}
.ws1_c01045{word-spacing:0.000000px;}
.fc1_c01045{color:transparent;}
.fc0_c01045{color:rgb(0,0,0);}
.fs1_c01045{font-size:59.040000px;}
.fs0_c01045{font-size:72.000000px;}
.ya_c01045{bottom:-11.160000px;}
.y0_c01045{bottom:0.000000px;}
.y2_c01045{bottom:3.195000px;}
.y4_c01045{bottom:3.960000px;}
.y1_c01045{bottom:53.999985px;}
.y3_c01045{bottom:56.114985px;}
.y9_c01045{bottom:60.434985px;}
.y8_c01045{bottom:182.115015px;}
.y7_c01045{bottom:202.995015px;}
.y6_c01045{bottom:223.515015px;}
.y5_c01045{bottom:240.075015px;}
.h6_c01045{height:5.399997px;}
.h4_c01045{height:17.640000px;}
.h3_c01045{height:63.175781px;}
.h5_c01045{height:63.949219px;}
.h2_c01045{height:1201.275000px;}
.h0_c01045{height:1262.835000px;}
.h1_c01045{height:1263.000000px;}
.w3_c01045{width:22.680000px;}
.w4_c01045{width:39.240000px;}
.w2_c01045{width:864.044850px;}
.w0_c01045{width:892.935000px;}
.w1_c01045{width:893.250000px;}
.x0_c01045{left:0.000000px;}
.x7_c01045{left:3.240150px;}
.x1_c01045{left:14.445000px;}
.x2_c01045{left:113.040150px;}
.x6_c01045{left:235.696950px;}
.x5_c01045{left:431.715150px;}
.x3_c01045{left:434.925000px;}
.x4_c01045{left:707.677350px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.ls1_c01045{letter-spacing:0.000000pt;}
.ls0_c01045{letter-spacing:0.419840pt;}
.ws0_c01045{word-spacing:-13.539840pt;}
.ws1_c01045{word-spacing:0.000000pt;}
.fs1_c01045{font-size:52.480000pt;}
.fs0_c01045{font-size:64.000000pt;}
.ya_c01045{bottom:-9.920000pt;}
.y0_c01045{bottom:0.000000pt;}
.y2_c01045{bottom:2.840000pt;}
.y4_c01045{bottom:3.520000pt;}
.y1_c01045{bottom:47.999987pt;}
.y3_c01045{bottom:49.879987pt;}
.y9_c01045{bottom:53.719987pt;}
.y8_c01045{bottom:161.880013pt;}
.y7_c01045{bottom:180.440013pt;}
.y6_c01045{bottom:198.680013pt;}
.y5_c01045{bottom:213.400013pt;}
.h6_c01045{height:4.799997pt;}
.h4_c01045{height:15.680000pt;}
.h3_c01045{height:56.156250pt;}
.h5_c01045{height:56.843750pt;}
.h2_c01045{height:1067.800000pt;}
.h0_c01045{height:1122.520000pt;}
.h1_c01045{height:1122.666667pt;}
.w3_c01045{width:20.160000pt;}
.w4_c01045{width:34.880000pt;}
.w2_c01045{width:768.039867pt;}
.w0_c01045{width:793.720000pt;}
.w1_c01045{width:794.000000pt;}
.x0_c01045{left:0.000000pt;}
.x7_c01045{left:2.880133pt;}
.x1_c01045{left:12.840000pt;}
.x2_c01045{left:100.480133pt;}
.x6_c01045{left:209.508400pt;}
.x5_c01045{left:383.746800pt;}
.x3_c01045{left:386.600000pt;}
.x4_c01045{left:629.046533pt;}
}





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

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





.ff0_c01046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01046;src:url('chunks/assets/font_8b3262f27a1a8078dde646ea.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.093262;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_c01046;src:url('chunks/assets/font_bc18fbbb641baf231c119892.woff2')format("woff");}.ff2_c01046{font-family:ff2_c01046;line-height:1.104004;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_c01046;src:url('chunks/assets/font_78dd1fb92ac0af2437fdb2d6.woff2')format("woff");}.ff3_c01046{font-family:ff3_c01046;line-height:0.893066;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_c01046{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_c01046{vertical-align:0.000000px;}
.ls1_c01046{letter-spacing:0.000000px;}
.ls0_c01046{letter-spacing:0.472320px;}
.sc__c01046{text-shadow:none;}
.sc0_c01046{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__c01046{-webkit-text-stroke:0px transparent;}
.sc0_c01046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01046{word-spacing:-15.232320px;}
.ws1_c01046{word-spacing:0.000000px;}
.fc1_c01046{color:transparent;}
.fc0_c01046{color:rgb(0,0,0);}
.fs1_c01046{font-size:59.040000px;}
.fs0_c01046{font-size:72.000000px;}
.ya_c01046{bottom:-11.160000px;}
.y0_c01046{bottom:0.000000px;}
.y2_c01046{bottom:3.195000px;}
.y4_c01046{bottom:3.960000px;}
.y1_c01046{bottom:53.999985px;}
.y3_c01046{bottom:56.114985px;}
.yb_c01046{bottom:60.434985px;}
.y8_c01046{bottom:62.595015px;}
.y7_c01046{bottom:83.475000px;}
.y6_c01046{bottom:103.995015px;}
.y5_c01046{bottom:120.555015px;}
.y9_c01046{bottom:357.435000px;}
.h7_c01046{height:5.399997px;}
.h6_c01046{height:5.400009px;}
.h4_c01046{height:17.640000px;}
.h3_c01046{height:63.175781px;}
.h5_c01046{height:63.949219px;}
.h2_c01046{height:1201.275000px;}
.h0_c01046{height:1262.835000px;}
.h1_c01046{height:1263.000000px;}
.w3_c01046{width:22.680000px;}
.w4_c01046{width:39.239955px;}
.w5_c01046{width:39.240000px;}
.w2_c01046{width:864.044850px;}
.w0_c01046{width:892.935000px;}
.w1_c01046{width:893.250000px;}
.x0_c01046{left:0.000000px;}
.x8_c01046{left:3.240150px;}
.x1_c01046{left:14.445000px;}
.x2_c01046{left:113.040150px;}
.x6_c01046{left:185.208300px;}
.x5_c01046{left:431.715150px;}
.x3_c01046{left:434.925000px;}
.x4_c01046{left:749.879850px;}
.x7_c01046{left:810.045000px;}
@media print{
.v0_c01046{vertical-align:0.000000pt;}
.ls1_c01046{letter-spacing:0.000000pt;}
.ls0_c01046{letter-spacing:0.419840pt;}
.ws0_c01046{word-spacing:-13.539840pt;}
.ws1_c01046{word-spacing:0.000000pt;}
.fs1_c01046{font-size:52.480000pt;}
.fs0_c01046{font-size:64.000000pt;}
.ya_c01046{bottom:-9.920000pt;}
.y0_c01046{bottom:0.000000pt;}
.y2_c01046{bottom:2.840000pt;}
.y4_c01046{bottom:3.520000pt;}
.y1_c01046{bottom:47.999987pt;}
.y3_c01046{bottom:49.879987pt;}
.yb_c01046{bottom:53.719987pt;}
.y8_c01046{bottom:55.640013pt;}
.y7_c01046{bottom:74.200000pt;}
.y6_c01046{bottom:92.440013pt;}
.y5_c01046{bottom:107.160013pt;}
.y9_c01046{bottom:317.720000pt;}
.h7_c01046{height:4.799997pt;}
.h6_c01046{height:4.800008pt;}
.h4_c01046{height:15.680000pt;}
.h3_c01046{height:56.156250pt;}
.h5_c01046{height:56.843750pt;}
.h2_c01046{height:1067.800000pt;}
.h0_c01046{height:1122.520000pt;}
.h1_c01046{height:1122.666667pt;}
.w3_c01046{width:20.160000pt;}
.w4_c01046{width:34.879960pt;}
.w5_c01046{width:34.880000pt;}
.w2_c01046{width:768.039867pt;}
.w0_c01046{width:793.720000pt;}
.w1_c01046{width:794.000000pt;}
.x0_c01046{left:0.000000pt;}
.x8_c01046{left:2.880133pt;}
.x1_c01046{left:12.840000pt;}
.x2_c01046{left:100.480133pt;}
.x6_c01046{left:164.629600pt;}
.x5_c01046{left:383.746800pt;}
.x3_c01046{left:386.600000pt;}
.x4_c01046{left:666.559867pt;}
.x7_c01046{left:720.040000pt;}
}





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

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





.ff0_c01047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01047;src:url('chunks/assets/font_8b3262f27a1a8078dde646ea.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.093262;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_c01047;src:url('chunks/assets/font_f5a80078d7591c125aaaba3a.woff2')format("woff");}.ff2_c01047{font-family:ff2_c01047;line-height:1.104004;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_c01047{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_c01047{vertical-align:0.000000px;}
.ls1_c01047{letter-spacing:0.000000px;}
.ls0_c01047{letter-spacing:0.472320px;}
.sc__c01047{text-shadow:none;}
.sc0_c01047{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__c01047{-webkit-text-stroke:0px transparent;}
.sc0_c01047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01047{word-spacing:-15.232320px;}
.ws1_c01047{word-spacing:0.000000px;}
.fc1_c01047{color:transparent;}
.fc0_c01047{color:rgb(0,0,0);}
.fs1_c01047{font-size:59.040000px;}
.fs0_c01047{font-size:72.000000px;}
.yd_c01047{bottom:-11.520000px;}
.yb_c01047{bottom:-11.160000px;}
.y0_c01047{bottom:0.000000px;}
.y2_c01047{bottom:3.195000px;}
.y4_c01047{bottom:3.960000px;}
.y1_c01047{bottom:53.999985px;}
.y3_c01047{bottom:56.114985px;}
.yc_c01047{bottom:60.794985px;}
.ya_c01047{bottom:162.675000px;}
.y9_c01047{bottom:456.795015px;}
.y8_c01047{bottom:477.315015px;}
.y7_c01047{bottom:498.195015px;}
.y6_c01047{bottom:518.715015px;}
.y5_c01047{bottom:535.635015px;}
.h7_c01047{height:5.040001px;}
.h6_c01047{height:5.399997px;}
.h4_c01047{height:17.640000px;}
.h3_c01047{height:63.175781px;}
.h5_c01047{height:63.949219px;}
.h2_c01047{height:1201.275000px;}
.h0_c01047{height:1262.835000px;}
.h1_c01047{height:1263.000000px;}
.w3_c01047{width:22.680000px;}
.w4_c01047{width:39.240000px;}
.w2_c01047{width:864.044850px;}
.w0_c01047{width:892.935000px;}
.w1_c01047{width:893.250000px;}
.x0_c01047{left:0.000000px;}
.x8_c01047{left:3.240150px;}
.x1_c01047{left:14.445000px;}
.x2_c01047{left:113.040150px;}
.x6_c01047{left:142.713150px;}
.x7_c01047{left:369.699450px;}
.x5_c01047{left:431.715150px;}
.x3_c01047{left:434.925000px;}
.x4_c01047{left:613.927350px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.ls1_c01047{letter-spacing:0.000000pt;}
.ls0_c01047{letter-spacing:0.419840pt;}
.ws0_c01047{word-spacing:-13.539840pt;}
.ws1_c01047{word-spacing:0.000000pt;}
.fs1_c01047{font-size:52.480000pt;}
.fs0_c01047{font-size:64.000000pt;}
.yd_c01047{bottom:-10.240000pt;}
.yb_c01047{bottom:-9.920000pt;}
.y0_c01047{bottom:0.000000pt;}
.y2_c01047{bottom:2.840000pt;}
.y4_c01047{bottom:3.520000pt;}
.y1_c01047{bottom:47.999987pt;}
.y3_c01047{bottom:49.879987pt;}
.yc_c01047{bottom:54.039987pt;}
.ya_c01047{bottom:144.600000pt;}
.y9_c01047{bottom:406.040013pt;}
.y8_c01047{bottom:424.280013pt;}
.y7_c01047{bottom:442.840013pt;}
.y6_c01047{bottom:461.080013pt;}
.y5_c01047{bottom:476.120013pt;}
.h7_c01047{height:4.480001pt;}
.h6_c01047{height:4.799997pt;}
.h4_c01047{height:15.680000pt;}
.h3_c01047{height:56.156250pt;}
.h5_c01047{height:56.843750pt;}
.h2_c01047{height:1067.800000pt;}
.h0_c01047{height:1122.520000pt;}
.h1_c01047{height:1122.666667pt;}
.w3_c01047{width:20.160000pt;}
.w4_c01047{width:34.880000pt;}
.w2_c01047{width:768.039867pt;}
.w0_c01047{width:793.720000pt;}
.w1_c01047{width:794.000000pt;}
.x0_c01047{left:0.000000pt;}
.x8_c01047{left:2.880133pt;}
.x1_c01047{left:12.840000pt;}
.x2_c01047{left:100.480133pt;}
.x6_c01047{left:126.856133pt;}
.x7_c01047{left:328.621733pt;}
.x5_c01047{left:383.746800pt;}
.x3_c01047{left:386.600000pt;}
.x4_c01047{left:545.713200pt;}
}





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

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





.ff0_c01048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01048;src:url('chunks/assets/font_cb1b6e9874ca7ea98a2c52f1.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.093262;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_c01048;src:url('chunks/assets/font_5d42e9397e4a6db8813d4062.woff2')format("woff");}.ff2_c01048{font-family:ff2_c01048;line-height:1.104004;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_c01048{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_c01048{vertical-align:0.000000px;}
.ls1_c01048{letter-spacing:0.000000px;}
.ls0_c01048{letter-spacing:0.472320px;}
.sc__c01048{text-shadow:none;}
.sc0_c01048{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__c01048{-webkit-text-stroke:0px transparent;}
.sc0_c01048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01048{word-spacing:-15.232320px;}
.ws1_c01048{word-spacing:0.000000px;}
.fc1_c01048{color:transparent;}
.fc0_c01048{color:rgb(0,0,0);}
.fs1_c01048{font-size:59.040000px;}
.fs0_c01048{font-size:72.000000px;}
.yb_c01048{bottom:-11.520000px;}
.yd_c01048{bottom:-11.160000px;}
.y0_c01048{bottom:0.000000px;}
.y2_c01048{bottom:3.195000px;}
.y4_c01048{bottom:3.960000px;}
.y1_c01048{bottom:53.999985px;}
.y3_c01048{bottom:56.114985px;}
.yc_c01048{bottom:60.434985px;}
.ya_c01048{bottom:136.034985px;}
.y9_c01048{bottom:619.155015px;}
.y8_c01048{bottom:640.035015px;}
.y7_c01048{bottom:660.555015px;}
.y6_c01048{bottom:681.075015px;}
.y5_c01048{bottom:697.995015px;}
.h6_c01048{height:5.040001px;}
.h7_c01048{height:5.399997px;}
.h4_c01048{height:17.640000px;}
.h3_c01048{height:63.175781px;}
.h5_c01048{height:63.949219px;}
.h2_c01048{height:1201.275000px;}
.h0_c01048{height:1262.835000px;}
.h1_c01048{height:1263.000000px;}
.w3_c01048{width:22.680000px;}
.w4_c01048{width:39.240000px;}
.w5_c01048{width:66.240000px;}
.w2_c01048{width:864.044850px;}
.w0_c01048{width:892.935000px;}
.w1_c01048{width:893.250000px;}
.x0_c01048{left:0.000000px;}
.x8_c01048{left:3.240150px;}
.x1_c01048{left:14.445000px;}
.x2_c01048{left:113.040150px;}
.x6_c01048{left:130.979715px;}
.x7_c01048{left:278.464650px;}
.x5_c01048{left:431.715150px;}
.x3_c01048{left:434.925000px;}
.x4_c01048{left:684.427350px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.ls1_c01048{letter-spacing:0.000000pt;}
.ls0_c01048{letter-spacing:0.419840pt;}
.ws0_c01048{word-spacing:-13.539840pt;}
.ws1_c01048{word-spacing:0.000000pt;}
.fs1_c01048{font-size:52.480000pt;}
.fs0_c01048{font-size:64.000000pt;}
.yb_c01048{bottom:-10.240000pt;}
.yd_c01048{bottom:-9.920000pt;}
.y0_c01048{bottom:0.000000pt;}
.y2_c01048{bottom:2.840000pt;}
.y4_c01048{bottom:3.520000pt;}
.y1_c01048{bottom:47.999987pt;}
.y3_c01048{bottom:49.879987pt;}
.yc_c01048{bottom:53.719987pt;}
.ya_c01048{bottom:120.919987pt;}
.y9_c01048{bottom:550.360013pt;}
.y8_c01048{bottom:568.920013pt;}
.y7_c01048{bottom:587.160013pt;}
.y6_c01048{bottom:605.400013pt;}
.y5_c01048{bottom:620.440013pt;}
.h6_c01048{height:4.480001pt;}
.h7_c01048{height:4.799997pt;}
.h4_c01048{height:15.680000pt;}
.h3_c01048{height:56.156250pt;}
.h5_c01048{height:56.843750pt;}
.h2_c01048{height:1067.800000pt;}
.h0_c01048{height:1122.520000pt;}
.h1_c01048{height:1122.666667pt;}
.w3_c01048{width:20.160000pt;}
.w4_c01048{width:34.880000pt;}
.w5_c01048{width:58.880000pt;}
.w2_c01048{width:768.039867pt;}
.w0_c01048{width:793.720000pt;}
.w1_c01048{width:794.000000pt;}
.x0_c01048{left:0.000000pt;}
.x8_c01048{left:2.880133pt;}
.x1_c01048{left:12.840000pt;}
.x2_c01048{left:100.480133pt;}
.x6_c01048{left:116.426413pt;}
.x7_c01048{left:247.524133pt;}
.x5_c01048{left:383.746800pt;}
.x3_c01048{left:386.600000pt;}
.x4_c01048{left:608.379867pt;}
}





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

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





.ff0_c01049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01049;src:url('chunks/assets/font_e90dc4d876cb963bf5f2ea7d.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:1.093262;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_c01049;src:url('chunks/assets/font_8f76a1a11ebf59925ed1826e.woff2')format("woff");}.ff2_c01049{font-family:ff2_c01049;line-height:1.104004;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_c01049;src:url('chunks/assets/font_5673bcd26cf9a6089f2f252e.woff2')format("woff");}.ff3_c01049{font-family:ff3_c01049;line-height:0.893066;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_c01049{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_c01049{vertical-align:0.000000px;}
.ls1_c01049{letter-spacing:0.000000px;}
.ls0_c01049{letter-spacing:0.472320px;}
.sc__c01049{text-shadow:none;}
.sc0_c01049{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__c01049{-webkit-text-stroke:0px transparent;}
.sc0_c01049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01049{word-spacing:-15.232320px;}
.ws1_c01049{word-spacing:0.000000px;}
.fc1_c01049{color:transparent;}
.fc0_c01049{color:rgb(0,0,0);}
.fs1_c01049{font-size:59.040000px;}
.fs0_c01049{font-size:72.000000px;}
.ya_c01049{bottom:-11.160000px;}
.y0_c01049{bottom:0.000000px;}
.y2_c01049{bottom:3.195000px;}
.y4_c01049{bottom:3.960000px;}
.y1_c01049{bottom:53.999985px;}
.y3_c01049{bottom:56.114985px;}
.y9_c01049{bottom:60.434985px;}
.y8_c01049{bottom:197.235015px;}
.y7_c01049{bottom:218.115015px;}
.y6_c01049{bottom:238.635015px;}
.y5_c01049{bottom:255.555015px;}
.h6_c01049{height:5.399997px;}
.h4_c01049{height:17.640000px;}
.h3_c01049{height:63.175781px;}
.h5_c01049{height:63.949219px;}
.h2_c01049{height:1201.275000px;}
.h0_c01049{height:1262.835000px;}
.h1_c01049{height:1263.000000px;}
.w3_c01049{width:22.680000px;}
.w4_c01049{width:39.240000px;}
.w2_c01049{width:864.044850px;}
.w0_c01049{width:892.935000px;}
.w1_c01049{width:893.250000px;}
.x0_c01049{left:0.000000px;}
.x7_c01049{left:3.240150px;}
.x1_c01049{left:14.445000px;}
.x2_c01049{left:113.040150px;}
.x6_c01049{left:195.728700px;}
.x5_c01049{left:431.715150px;}
.x3_c01049{left:434.925000px;}
.x4_c01049{left:750.046050px;}
@media print{
.v0_c01049{vertical-align:0.000000pt;}
.ls1_c01049{letter-spacing:0.000000pt;}
.ls0_c01049{letter-spacing:0.419840pt;}
.ws0_c01049{word-spacing:-13.539840pt;}
.ws1_c01049{word-spacing:0.000000pt;}
.fs1_c01049{font-size:52.480000pt;}
.fs0_c01049{font-size:64.000000pt;}
.ya_c01049{bottom:-9.920000pt;}
.y0_c01049{bottom:0.000000pt;}
.y2_c01049{bottom:2.840000pt;}
.y4_c01049{bottom:3.520000pt;}
.y1_c01049{bottom:47.999987pt;}
.y3_c01049{bottom:49.879987pt;}
.y9_c01049{bottom:53.719987pt;}
.y8_c01049{bottom:175.320013pt;}
.y7_c01049{bottom:193.880013pt;}
.y6_c01049{bottom:212.120013pt;}
.y5_c01049{bottom:227.160013pt;}
.h6_c01049{height:4.799997pt;}
.h4_c01049{height:15.680000pt;}
.h3_c01049{height:56.156250pt;}
.h5_c01049{height:56.843750pt;}
.h2_c01049{height:1067.800000pt;}
.h0_c01049{height:1122.520000pt;}
.h1_c01049{height:1122.666667pt;}
.w3_c01049{width:20.160000pt;}
.w4_c01049{width:34.880000pt;}
.w2_c01049{width:768.039867pt;}
.w0_c01049{width:793.720000pt;}
.w1_c01049{width:794.000000pt;}
.x0_c01049{left:0.000000pt;}
.x7_c01049{left:2.880133pt;}
.x1_c01049{left:12.840000pt;}
.x2_c01049{left:100.480133pt;}
.x6_c01049{left:173.981067pt;}
.x5_c01049{left:383.746800pt;}
.x3_c01049{left:386.600000pt;}
.x4_c01049{left:666.707600pt;}
}





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

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





.ff0_c01050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01050;src:url('chunks/assets/font_76ac9ec4efbb5ac0e28a33c8.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.093262;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_c01050;src:url('chunks/assets/font_268dcd09ab950a5effc31e07.woff2')format("woff");}.ff2_c01050{font-family:ff2_c01050;line-height:1.104004;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_c01050{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_c01050{vertical-align:0.000000px;}
.ls1_c01050{letter-spacing:0.000000px;}
.ls0_c01050{letter-spacing:0.472320px;}
.sc__c01050{text-shadow:none;}
.sc0_c01050{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__c01050{-webkit-text-stroke:0px transparent;}
.sc0_c01050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01050{word-spacing:-15.232320px;}
.ws1_c01050{word-spacing:0.000000px;}
.fc1_c01050{color:transparent;}
.fc0_c01050{color:rgb(0,0,0);}
.fs1_c01050{font-size:59.040000px;}
.fs0_c01050{font-size:72.000000px;}
.y21_c01050{bottom:-11.160000px;}
.y0_c01050{bottom:0.000000px;}
.y2_c01050{bottom:3.195000px;}
.y4_c01050{bottom:3.960000px;}
.y1_c01050{bottom:53.999985px;}
.y3_c01050{bottom:56.114985px;}
.y22_c01050{bottom:60.434985px;}
.y20_c01050{bottom:163.755000px;}
.y1f_c01050{bottom:547.875015px;}
.y1e_c01050{bottom:568.395015px;}
.y1d_c01050{bottom:589.275015px;}
.y1c_c01050{bottom:609.795015px;}
.y1b_c01050{bottom:630.675015px;}
.y1a_c01050{bottom:651.195015px;}
.y19_c01050{bottom:672.075015px;}
.y18_c01050{bottom:692.595015px;}
.y17_c01050{bottom:713.475015px;}
.y16_c01050{bottom:733.995015px;}
.y15_c01050{bottom:754.875015px;}
.y14_c01050{bottom:775.395015px;}
.y13_c01050{bottom:796.275015px;}
.y12_c01050{bottom:816.795015px;}
.y11_c01050{bottom:837.675015px;}
.y10_c01050{bottom:858.195015px;}
.yf_c01050{bottom:879.075015px;}
.ye_c01050{bottom:899.595015px;}
.yd_c01050{bottom:920.475015px;}
.yc_c01050{bottom:940.995015px;}
.yb_c01050{bottom:961.875015px;}
.ya_c01050{bottom:982.395015px;}
.y9_c01050{bottom:1003.275015px;}
.y8_c01050{bottom:1023.795015px;}
.y7_c01050{bottom:1044.675015px;}
.y6_c01050{bottom:1065.195015px;}
.y5_c01050{bottom:1086.075015px;}
.h6_c01050{height:5.399997px;}
.h4_c01050{height:17.640000px;}
.h3_c01050{height:63.175781px;}
.h5_c01050{height:63.949219px;}
.h2_c01050{height:1201.275000px;}
.h0_c01050{height:1262.835000px;}
.h1_c01050{height:1263.000000px;}
.w3_c01050{width:22.680000px;}
.w4_c01050{width:39.240000px;}
.w2_c01050{width:864.044850px;}
.w0_c01050{width:892.935000px;}
.w1_c01050{width:893.250000px;}
.x0_c01050{left:0.000000px;}
.x7_c01050{left:3.240150px;}
.x1_c01050{left:14.445000px;}
.x2_c01050{left:113.040150px;}
.x5_c01050{left:159.727650px;}
.x6_c01050{left:223.994400px;}
.x4_c01050{left:431.715150px;}
.x3_c01050{left:434.925000px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.ls1_c01050{letter-spacing:0.000000pt;}
.ls0_c01050{letter-spacing:0.419840pt;}
.ws0_c01050{word-spacing:-13.539840pt;}
.ws1_c01050{word-spacing:0.000000pt;}
.fs1_c01050{font-size:52.480000pt;}
.fs0_c01050{font-size:64.000000pt;}
.y21_c01050{bottom:-9.920000pt;}
.y0_c01050{bottom:0.000000pt;}
.y2_c01050{bottom:2.840000pt;}
.y4_c01050{bottom:3.520000pt;}
.y1_c01050{bottom:47.999987pt;}
.y3_c01050{bottom:49.879987pt;}
.y22_c01050{bottom:53.719987pt;}
.y20_c01050{bottom:145.560000pt;}
.y1f_c01050{bottom:487.000013pt;}
.y1e_c01050{bottom:505.240013pt;}
.y1d_c01050{bottom:523.800013pt;}
.y1c_c01050{bottom:542.040013pt;}
.y1b_c01050{bottom:560.600013pt;}
.y1a_c01050{bottom:578.840013pt;}
.y19_c01050{bottom:597.400013pt;}
.y18_c01050{bottom:615.640013pt;}
.y17_c01050{bottom:634.200013pt;}
.y16_c01050{bottom:652.440013pt;}
.y15_c01050{bottom:671.000013pt;}
.y14_c01050{bottom:689.240013pt;}
.y13_c01050{bottom:707.800013pt;}
.y12_c01050{bottom:726.040013pt;}
.y11_c01050{bottom:744.600013pt;}
.y10_c01050{bottom:762.840013pt;}
.yf_c01050{bottom:781.400013pt;}
.ye_c01050{bottom:799.640013pt;}
.yd_c01050{bottom:818.200013pt;}
.yc_c01050{bottom:836.440013pt;}
.yb_c01050{bottom:855.000013pt;}
.ya_c01050{bottom:873.240013pt;}
.y9_c01050{bottom:891.800013pt;}
.y8_c01050{bottom:910.040013pt;}
.y7_c01050{bottom:928.600013pt;}
.y6_c01050{bottom:946.840013pt;}
.y5_c01050{bottom:965.400013pt;}
.h6_c01050{height:4.799997pt;}
.h4_c01050{height:15.680000pt;}
.h3_c01050{height:56.156250pt;}
.h5_c01050{height:56.843750pt;}
.h2_c01050{height:1067.800000pt;}
.h0_c01050{height:1122.520000pt;}
.h1_c01050{height:1122.666667pt;}
.w3_c01050{width:20.160000pt;}
.w4_c01050{width:34.880000pt;}
.w2_c01050{width:768.039867pt;}
.w0_c01050{width:793.720000pt;}
.w1_c01050{width:794.000000pt;}
.x0_c01050{left:0.000000pt;}
.x7_c01050{left:2.880133pt;}
.x1_c01050{left:12.840000pt;}
.x2_c01050{left:100.480133pt;}
.x5_c01050{left:141.980133pt;}
.x6_c01050{left:199.106133pt;}
.x4_c01050{left:383.746800pt;}
.x3_c01050{left:386.600000pt;}
}





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

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





.ff0_c01051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01051;src:url('chunks/assets/font_6bddbc0aca91405579aaa338.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.093262;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_c01051;src:url('chunks/assets/font_4fe863f5dcb22af4b1726bda.woff2')format("woff");}.ff2_c01051{font-family:ff2_c01051;line-height:1.104004;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_c01051{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_c01051{vertical-align:0.000000px;}
.ls1_c01051{letter-spacing:0.000000px;}
.ls0_c01051{letter-spacing:0.472320px;}
.sc__c01051{text-shadow:none;}
.sc0_c01051{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__c01051{-webkit-text-stroke:0px transparent;}
.sc0_c01051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01051{word-spacing:-15.232320px;}
.ws1_c01051{word-spacing:0.000000px;}
.fc1_c01051{color:transparent;}
.fc0_c01051{color:rgb(0,0,0);}
.fs1_c01051{font-size:59.040000px;}
.fs0_c01051{font-size:72.000000px;}
.y13_c01051{bottom:-11.160000px;}
.y0_c01051{bottom:0.000000px;}
.y2_c01051{bottom:3.195000px;}
.y4_c01051{bottom:3.960000px;}
.y1_c01051{bottom:53.999985px;}
.y3_c01051{bottom:56.114985px;}
.y12_c01051{bottom:60.434985px;}
.y11_c01051{bottom:837.675015px;}
.y10_c01051{bottom:858.195015px;}
.yf_c01051{bottom:879.075015px;}
.ye_c01051{bottom:899.595015px;}
.yd_c01051{bottom:920.475015px;}
.yc_c01051{bottom:940.995015px;}
.yb_c01051{bottom:961.875015px;}
.ya_c01051{bottom:982.395015px;}
.y9_c01051{bottom:1003.275015px;}
.y8_c01051{bottom:1023.795015px;}
.y7_c01051{bottom:1044.675015px;}
.y6_c01051{bottom:1065.195015px;}
.y5_c01051{bottom:1086.075015px;}
.h6_c01051{height:5.399997px;}
.h4_c01051{height:17.640000px;}
.h3_c01051{height:63.175781px;}
.h5_c01051{height:63.949219px;}
.h2_c01051{height:1201.275000px;}
.h0_c01051{height:1262.835000px;}
.h1_c01051{height:1263.000000px;}
.w3_c01051{width:22.680000px;}
.w4_c01051{width:39.240000px;}
.w2_c01051{width:864.044850px;}
.w0_c01051{width:892.935000px;}
.w1_c01051{width:893.250000px;}
.x0_c01051{left:0.000000px;}
.x6_c01051{left:3.240150px;}
.x1_c01051{left:14.445000px;}
.x2_c01051{left:113.040150px;}
.x4_c01051{left:389.958300px;}
.x5_c01051{left:432.045000px;}
.x3_c01051{left:434.925000px;}
@media print{
.v0_c01051{vertical-align:0.000000pt;}
.ls1_c01051{letter-spacing:0.000000pt;}
.ls0_c01051{letter-spacing:0.419840pt;}
.ws0_c01051{word-spacing:-13.539840pt;}
.ws1_c01051{word-spacing:0.000000pt;}
.fs1_c01051{font-size:52.480000pt;}
.fs0_c01051{font-size:64.000000pt;}
.y13_c01051{bottom:-9.920000pt;}
.y0_c01051{bottom:0.000000pt;}
.y2_c01051{bottom:2.840000pt;}
.y4_c01051{bottom:3.520000pt;}
.y1_c01051{bottom:47.999987pt;}
.y3_c01051{bottom:49.879987pt;}
.y12_c01051{bottom:53.719987pt;}
.y11_c01051{bottom:744.600013pt;}
.y10_c01051{bottom:762.840013pt;}
.yf_c01051{bottom:781.400013pt;}
.ye_c01051{bottom:799.640013pt;}
.yd_c01051{bottom:818.200013pt;}
.yc_c01051{bottom:836.440013pt;}
.yb_c01051{bottom:855.000013pt;}
.ya_c01051{bottom:873.240013pt;}
.y9_c01051{bottom:891.800013pt;}
.y8_c01051{bottom:910.040013pt;}
.y7_c01051{bottom:928.600013pt;}
.y6_c01051{bottom:946.840013pt;}
.y5_c01051{bottom:965.400013pt;}
.h6_c01051{height:4.799997pt;}
.h4_c01051{height:15.680000pt;}
.h3_c01051{height:56.156250pt;}
.h5_c01051{height:56.843750pt;}
.h2_c01051{height:1067.800000pt;}
.h0_c01051{height:1122.520000pt;}
.h1_c01051{height:1122.666667pt;}
.w3_c01051{width:20.160000pt;}
.w4_c01051{width:34.880000pt;}
.w2_c01051{width:768.039867pt;}
.w0_c01051{width:793.720000pt;}
.w1_c01051{width:794.000000pt;}
.x0_c01051{left:0.000000pt;}
.x6_c01051{left:2.880133pt;}
.x1_c01051{left:12.840000pt;}
.x2_c01051{left:100.480133pt;}
.x4_c01051{left:346.629600pt;}
.x5_c01051{left:384.040000pt;}
.x3_c01051{left:386.600000pt;}
}





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

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





.ff0_c01052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01052;src:url('chunks/assets/font_31032d61217f058927d3355e.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.093262;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_c01052{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_c01052{vertical-align:0.000000px;}
.ls1_c01052{letter-spacing:0.000000px;}
.ls0_c01052{letter-spacing:0.472320px;}
.sc__c01052{text-shadow:none;}
.sc0_c01052{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__c01052{-webkit-text-stroke:0px transparent;}
.sc0_c01052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01052{word-spacing:-15.232320px;}
.ws1_c01052{word-spacing:0.000000px;}
.fc1_c01052{color:transparent;}
.fc0_c01052{color:rgb(0,0,0);}
.fs1_c01052{font-size:59.040000px;}
.fs0_c01052{font-size:72.000000px;}
.y6_c01052{bottom:-11.160000px;}
.y0_c01052{bottom:0.000000px;}
.y2_c01052{bottom:3.195000px;}
.y4_c01052{bottom:3.960000px;}
.y1_c01052{bottom:53.999985px;}
.y3_c01052{bottom:56.114985px;}
.y5_c01052{bottom:60.434985px;}
.h5_c01052{height:5.399997px;}
.h4_c01052{height:17.640000px;}
.h3_c01052{height:63.175781px;}
.h2_c01052{height:1201.275000px;}
.h0_c01052{height:1262.835000px;}
.h1_c01052{height:1263.000000px;}
.w3_c01052{width:22.680000px;}
.w4_c01052{width:39.240000px;}
.w2_c01052{width:864.044850px;}
.w0_c01052{width:892.935000px;}
.w1_c01052{width:893.250000px;}
.x0_c01052{left:0.000000px;}
.x5_c01052{left:3.240150px;}
.x1_c01052{left:14.445000px;}
.x2_c01052{left:113.040150px;}
.x4_c01052{left:432.045000px;}
.x3_c01052{left:434.925000px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.ls1_c01052{letter-spacing:0.000000pt;}
.ls0_c01052{letter-spacing:0.419840pt;}
.ws0_c01052{word-spacing:-13.539840pt;}
.ws1_c01052{word-spacing:0.000000pt;}
.fs1_c01052{font-size:52.480000pt;}
.fs0_c01052{font-size:64.000000pt;}
.y6_c01052{bottom:-9.920000pt;}
.y0_c01052{bottom:0.000000pt;}
.y2_c01052{bottom:2.840000pt;}
.y4_c01052{bottom:3.520000pt;}
.y1_c01052{bottom:47.999987pt;}
.y3_c01052{bottom:49.879987pt;}
.y5_c01052{bottom:53.719987pt;}
.h5_c01052{height:4.799997pt;}
.h4_c01052{height:15.680000pt;}
.h3_c01052{height:56.156250pt;}
.h2_c01052{height:1067.800000pt;}
.h0_c01052{height:1122.520000pt;}
.h1_c01052{height:1122.666667pt;}
.w3_c01052{width:20.160000pt;}
.w4_c01052{width:34.880000pt;}
.w2_c01052{width:768.039867pt;}
.w0_c01052{width:793.720000pt;}
.w1_c01052{width:794.000000pt;}
.x0_c01052{left:0.000000pt;}
.x5_c01052{left:2.880133pt;}
.x1_c01052{left:12.840000pt;}
.x2_c01052{left:100.480133pt;}
.x4_c01052{left:384.040000pt;}
.x3_c01052{left:386.600000pt;}
}





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

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





.ff0_c01053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01053;src:url('chunks/assets/font_86d8af896f476169138fbd84.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.093262;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_c01053;src:url('chunks/assets/font_3b2b3b2d1cffcdfd59df2f61.woff2')format("woff");}.ff2_c01053{font-family:ff2_c01053;line-height:1.104004;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_c01053{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_c01053{vertical-align:0.000000px;}
.ls1_c01053{letter-spacing:0.000000px;}
.ls0_c01053{letter-spacing:0.472320px;}
.sc__c01053{text-shadow:none;}
.sc0_c01053{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__c01053{-webkit-text-stroke:0px transparent;}
.sc0_c01053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01053{word-spacing:-15.232320px;}
.ws1_c01053{word-spacing:0.000000px;}
.fc1_c01053{color:transparent;}
.fc0_c01053{color:rgb(0,0,0);}
.fs1_c01053{font-size:59.040000px;}
.fs0_c01053{font-size:72.000000px;}
.y38_c01053{bottom:-11.160000px;}
.y0_c01053{bottom:0.000000px;}
.y2_c01053{bottom:3.195000px;}
.y4_c01053{bottom:3.960000px;}
.y1_c01053{bottom:53.999985px;}
.y3_c01053{bottom:56.114985px;}
.y37_c01053{bottom:60.434985px;}
.y36_c01053{bottom:71.955000px;}
.y35_c01053{bottom:92.475000px;}
.y34_c01053{bottom:113.355015px;}
.y33_c01053{bottom:133.875015px;}
.y32_c01053{bottom:154.755015px;}
.y31_c01053{bottom:175.275015px;}
.y30_c01053{bottom:196.155015px;}
.y2f_c01053{bottom:216.675015px;}
.y2e_c01053{bottom:237.195015px;}
.y2d_c01053{bottom:258.075015px;}
.y2c_c01053{bottom:278.595015px;}
.y2b_c01053{bottom:299.475015px;}
.y2a_c01053{bottom:319.995015px;}
.y29_c01053{bottom:340.875015px;}
.y28_c01053{bottom:361.395015px;}
.y27_c01053{bottom:382.275015px;}
.y26_c01053{bottom:402.795015px;}
.y25_c01053{bottom:423.675015px;}
.y24_c01053{bottom:444.195015px;}
.y23_c01053{bottom:465.075015px;}
.y22_c01053{bottom:485.595015px;}
.y21_c01053{bottom:506.475015px;}
.y20_c01053{bottom:526.995015px;}
.y1f_c01053{bottom:547.875015px;}
.y1e_c01053{bottom:568.395015px;}
.y1d_c01053{bottom:589.275015px;}
.y1c_c01053{bottom:609.795015px;}
.y1b_c01053{bottom:630.675015px;}
.y1a_c01053{bottom:651.195015px;}
.y19_c01053{bottom:672.075015px;}
.y18_c01053{bottom:692.595015px;}
.y17_c01053{bottom:713.475015px;}
.y16_c01053{bottom:733.995015px;}
.y15_c01053{bottom:754.875015px;}
.y14_c01053{bottom:775.395015px;}
.y13_c01053{bottom:796.275015px;}
.y12_c01053{bottom:816.795015px;}
.y11_c01053{bottom:837.675015px;}
.y10_c01053{bottom:858.195015px;}
.yf_c01053{bottom:879.075015px;}
.ye_c01053{bottom:899.595015px;}
.yd_c01053{bottom:920.475015px;}
.yc_c01053{bottom:940.995015px;}
.yb_c01053{bottom:961.875015px;}
.ya_c01053{bottom:982.395015px;}
.y9_c01053{bottom:1003.275015px;}
.y8_c01053{bottom:1023.795015px;}
.y7_c01053{bottom:1044.675015px;}
.y6_c01053{bottom:1065.195015px;}
.y5_c01053{bottom:1086.075015px;}
.h6_c01053{height:5.399997px;}
.h4_c01053{height:17.640000px;}
.h3_c01053{height:63.175781px;}
.h5_c01053{height:63.949219px;}
.h2_c01053{height:1201.275000px;}
.h0_c01053{height:1262.835000px;}
.h1_c01053{height:1263.000000px;}
.w3_c01053{width:22.680000px;}
.w4_c01053{width:39.240000px;}
.w2_c01053{width:864.044850px;}
.w0_c01053{width:892.935000px;}
.w1_c01053{width:893.250000px;}
.x0_c01053{left:0.000000px;}
.x7_c01053{left:3.240150px;}
.x1_c01053{left:14.445000px;}
.x2_c01053{left:113.040150px;}
.x5_c01053{left:124.489005px;}
.x6_c01053{left:296.715000px;}
.x4_c01053{left:431.715150px;}
.x3_c01053{left:434.925000px;}
@media print{
.v0_c01053{vertical-align:0.000000pt;}
.ls1_c01053{letter-spacing:0.000000pt;}
.ls0_c01053{letter-spacing:0.419840pt;}
.ws0_c01053{word-spacing:-13.539840pt;}
.ws1_c01053{word-spacing:0.000000pt;}
.fs1_c01053{font-size:52.480000pt;}
.fs0_c01053{font-size:64.000000pt;}
.y38_c01053{bottom:-9.920000pt;}
.y0_c01053{bottom:0.000000pt;}
.y2_c01053{bottom:2.840000pt;}
.y4_c01053{bottom:3.520000pt;}
.y1_c01053{bottom:47.999987pt;}
.y3_c01053{bottom:49.879987pt;}
.y37_c01053{bottom:53.719987pt;}
.y36_c01053{bottom:63.960000pt;}
.y35_c01053{bottom:82.200000pt;}
.y34_c01053{bottom:100.760013pt;}
.y33_c01053{bottom:119.000013pt;}
.y32_c01053{bottom:137.560013pt;}
.y31_c01053{bottom:155.800013pt;}
.y30_c01053{bottom:174.360013pt;}
.y2f_c01053{bottom:192.600013pt;}
.y2e_c01053{bottom:210.840013pt;}
.y2d_c01053{bottom:229.400013pt;}
.y2c_c01053{bottom:247.640013pt;}
.y2b_c01053{bottom:266.200013pt;}
.y2a_c01053{bottom:284.440013pt;}
.y29_c01053{bottom:303.000013pt;}
.y28_c01053{bottom:321.240013pt;}
.y27_c01053{bottom:339.800013pt;}
.y26_c01053{bottom:358.040013pt;}
.y25_c01053{bottom:376.600013pt;}
.y24_c01053{bottom:394.840013pt;}
.y23_c01053{bottom:413.400013pt;}
.y22_c01053{bottom:431.640013pt;}
.y21_c01053{bottom:450.200013pt;}
.y20_c01053{bottom:468.440013pt;}
.y1f_c01053{bottom:487.000013pt;}
.y1e_c01053{bottom:505.240013pt;}
.y1d_c01053{bottom:523.800013pt;}
.y1c_c01053{bottom:542.040013pt;}
.y1b_c01053{bottom:560.600013pt;}
.y1a_c01053{bottom:578.840013pt;}
.y19_c01053{bottom:597.400013pt;}
.y18_c01053{bottom:615.640013pt;}
.y17_c01053{bottom:634.200013pt;}
.y16_c01053{bottom:652.440013pt;}
.y15_c01053{bottom:671.000013pt;}
.y14_c01053{bottom:689.240013pt;}
.y13_c01053{bottom:707.800013pt;}
.y12_c01053{bottom:726.040013pt;}
.y11_c01053{bottom:744.600013pt;}
.y10_c01053{bottom:762.840013pt;}
.yf_c01053{bottom:781.400013pt;}
.ye_c01053{bottom:799.640013pt;}
.yd_c01053{bottom:818.200013pt;}
.yc_c01053{bottom:836.440013pt;}
.yb_c01053{bottom:855.000013pt;}
.ya_c01053{bottom:873.240013pt;}
.y9_c01053{bottom:891.800013pt;}
.y8_c01053{bottom:910.040013pt;}
.y7_c01053{bottom:928.600013pt;}
.y6_c01053{bottom:946.840013pt;}
.y5_c01053{bottom:965.400013pt;}
.h6_c01053{height:4.799997pt;}
.h4_c01053{height:15.680000pt;}
.h3_c01053{height:56.156250pt;}
.h5_c01053{height:56.843750pt;}
.h2_c01053{height:1067.800000pt;}
.h0_c01053{height:1122.520000pt;}
.h1_c01053{height:1122.666667pt;}
.w3_c01053{width:20.160000pt;}
.w4_c01053{width:34.880000pt;}
.w2_c01053{width:768.039867pt;}
.w0_c01053{width:793.720000pt;}
.w1_c01053{width:794.000000pt;}
.x0_c01053{left:0.000000pt;}
.x7_c01053{left:2.880133pt;}
.x1_c01053{left:12.840000pt;}
.x2_c01053{left:100.480133pt;}
.x5_c01053{left:110.656893pt;}
.x6_c01053{left:263.746667pt;}
.x4_c01053{left:383.746800pt;}
.x3_c01053{left:386.600000pt;}
}





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

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





.ff0_c01054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01054;src:url('chunks/assets/font_0d6d97f8faefd549c6579d96.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.093262;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_c01054;src:url('chunks/assets/font_1df82b0e8f7cb1856d48ae43.woff2')format("woff");}.ff2_c01054{font-family:ff2_c01054;line-height:1.104004;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_c01054{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_c01054{vertical-align:0.000000px;}
.ls1_c01054{letter-spacing:0.000000px;}
.ls0_c01054{letter-spacing:0.472320px;}
.sc__c01054{text-shadow:none;}
.sc0_c01054{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__c01054{-webkit-text-stroke:0px transparent;}
.sc0_c01054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01054{word-spacing:-15.232320px;}
.ws1_c01054{word-spacing:0.000000px;}
.fc1_c01054{color:transparent;}
.fc0_c01054{color:rgb(0,0,0);}
.fs1_c01054{font-size:59.040000px;}
.fs0_c01054{font-size:72.000000px;}
.ya_c01054{bottom:-11.160000px;}
.y0_c01054{bottom:0.000000px;}
.y2_c01054{bottom:3.195000px;}
.y4_c01054{bottom:3.960000px;}
.y1_c01054{bottom:53.999985px;}
.y3_c01054{bottom:56.114985px;}
.y9_c01054{bottom:60.434985px;}
.y8_c01054{bottom:162.675015px;}
.y7_c01054{bottom:183.555015px;}
.y6_c01054{bottom:204.075015px;}
.y5_c01054{bottom:220.995015px;}
.h6_c01054{height:5.399997px;}
.h4_c01054{height:17.640000px;}
.h3_c01054{height:63.175781px;}
.h5_c01054{height:63.949219px;}
.h2_c01054{height:1201.275000px;}
.h0_c01054{height:1262.835000px;}
.h1_c01054{height:1263.000000px;}
.w3_c01054{width:22.680000px;}
.w4_c01054{width:39.240000px;}
.w2_c01054{width:864.044850px;}
.w0_c01054{width:892.935000px;}
.w1_c01054{width:893.250000px;}
.x0_c01054{left:0.000000px;}
.x8_c01054{left:3.240150px;}
.x1_c01054{left:14.445000px;}
.x2_c01054{left:113.040150px;}
.x5_c01054{left:124.981185px;}
.x6_c01054{left:365.212650px;}
.x7_c01054{left:432.045000px;}
.x3_c01054{left:434.925000px;}
.x4_c01054{left:750.206550px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.ls1_c01054{letter-spacing:0.000000pt;}
.ls0_c01054{letter-spacing:0.419840pt;}
.ws0_c01054{word-spacing:-13.539840pt;}
.ws1_c01054{word-spacing:0.000000pt;}
.fs1_c01054{font-size:52.480000pt;}
.fs0_c01054{font-size:64.000000pt;}
.ya_c01054{bottom:-9.920000pt;}
.y0_c01054{bottom:0.000000pt;}
.y2_c01054{bottom:2.840000pt;}
.y4_c01054{bottom:3.520000pt;}
.y1_c01054{bottom:47.999987pt;}
.y3_c01054{bottom:49.879987pt;}
.y9_c01054{bottom:53.719987pt;}
.y8_c01054{bottom:144.600013pt;}
.y7_c01054{bottom:163.160013pt;}
.y6_c01054{bottom:181.400013pt;}
.y5_c01054{bottom:196.440013pt;}
.h6_c01054{height:4.799997pt;}
.h4_c01054{height:15.680000pt;}
.h3_c01054{height:56.156250pt;}
.h5_c01054{height:56.843750pt;}
.h2_c01054{height:1067.800000pt;}
.h0_c01054{height:1122.520000pt;}
.h1_c01054{height:1122.666667pt;}
.w3_c01054{width:20.160000pt;}
.w4_c01054{width:34.880000pt;}
.w2_c01054{width:768.039867pt;}
.w0_c01054{width:793.720000pt;}
.w1_c01054{width:794.000000pt;}
.x0_c01054{left:0.000000pt;}
.x8_c01054{left:2.880133pt;}
.x1_c01054{left:12.840000pt;}
.x2_c01054{left:100.480133pt;}
.x5_c01054{left:111.094387pt;}
.x6_c01054{left:324.633467pt;}
.x7_c01054{left:384.040000pt;}
.x3_c01054{left:386.600000pt;}
.x4_c01054{left:666.850267pt;}
}





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

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





.ff0_c01055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01055;src:url('chunks/assets/font_af8f37db4514da9dc1fd9e34.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.093262;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_c01055;src:url('chunks/assets/font_93309b277cd385616770c29a.woff2')format("woff");}.ff2_c01055{font-family:ff2_c01055;line-height:1.104004;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_c01055{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_c01055{vertical-align:0.000000px;}
.ls1_c01055{letter-spacing:0.000000px;}
.ls0_c01055{letter-spacing:0.472320px;}
.sc__c01055{text-shadow:none;}
.sc0_c01055{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__c01055{-webkit-text-stroke:0px transparent;}
.sc0_c01055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01055{word-spacing:-15.232320px;}
.ws1_c01055{word-spacing:0.000000px;}
.fc1_c01055{color:transparent;}
.fc0_c01055{color:rgb(0,0,0);}
.fs1_c01055{font-size:59.040000px;}
.fs0_c01055{font-size:72.000000px;}
.ya_c01055{bottom:-11.160000px;}
.y0_c01055{bottom:0.000000px;}
.y2_c01055{bottom:3.195000px;}
.y4_c01055{bottom:3.960000px;}
.y1_c01055{bottom:53.999985px;}
.y3_c01055{bottom:56.114985px;}
.y9_c01055{bottom:60.434985px;}
.y8_c01055{bottom:184.275015px;}
.y7_c01055{bottom:205.155015px;}
.y6_c01055{bottom:225.675015px;}
.y5_c01055{bottom:242.595015px;}
.h6_c01055{height:5.399997px;}
.h4_c01055{height:17.640000px;}
.h3_c01055{height:63.175781px;}
.h5_c01055{height:63.949219px;}
.h2_c01055{height:1201.275000px;}
.h0_c01055{height:1262.835000px;}
.h1_c01055{height:1263.000000px;}
.w3_c01055{width:22.680000px;}
.w4_c01055{width:39.240000px;}
.w2_c01055{width:864.044850px;}
.w0_c01055{width:892.935000px;}
.w1_c01055{width:893.250000px;}
.x0_c01055{left:0.000000px;}
.x8_c01055{left:3.240150px;}
.x1_c01055{left:14.445000px;}
.x2_c01055{left:113.040150px;}
.x5_c01055{left:124.981185px;}
.x6_c01055{left:365.212650px;}
.x7_c01055{left:432.045000px;}
.x3_c01055{left:434.925000px;}
.x4_c01055{left:750.019350px;}
@media print{
.v0_c01055{vertical-align:0.000000pt;}
.ls1_c01055{letter-spacing:0.000000pt;}
.ls0_c01055{letter-spacing:0.419840pt;}
.ws0_c01055{word-spacing:-13.539840pt;}
.ws1_c01055{word-spacing:0.000000pt;}
.fs1_c01055{font-size:52.480000pt;}
.fs0_c01055{font-size:64.000000pt;}
.ya_c01055{bottom:-9.920000pt;}
.y0_c01055{bottom:0.000000pt;}
.y2_c01055{bottom:2.840000pt;}
.y4_c01055{bottom:3.520000pt;}
.y1_c01055{bottom:47.999987pt;}
.y3_c01055{bottom:49.879987pt;}
.y9_c01055{bottom:53.719987pt;}
.y8_c01055{bottom:163.800013pt;}
.y7_c01055{bottom:182.360013pt;}
.y6_c01055{bottom:200.600013pt;}
.y5_c01055{bottom:215.640013pt;}
.h6_c01055{height:4.799997pt;}
.h4_c01055{height:15.680000pt;}
.h3_c01055{height:56.156250pt;}
.h5_c01055{height:56.843750pt;}
.h2_c01055{height:1067.800000pt;}
.h0_c01055{height:1122.520000pt;}
.h1_c01055{height:1122.666667pt;}
.w3_c01055{width:20.160000pt;}
.w4_c01055{width:34.880000pt;}
.w2_c01055{width:768.039867pt;}
.w0_c01055{width:793.720000pt;}
.w1_c01055{width:794.000000pt;}
.x0_c01055{left:0.000000pt;}
.x8_c01055{left:2.880133pt;}
.x1_c01055{left:12.840000pt;}
.x2_c01055{left:100.480133pt;}
.x5_c01055{left:111.094387pt;}
.x6_c01055{left:324.633467pt;}
.x7_c01055{left:384.040000pt;}
.x3_c01055{left:386.600000pt;}
.x4_c01055{left:666.683867pt;}
}





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

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





.ff0_c01056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01056;src:url('chunks/assets/font_8b3262f27a1a8078dde646ea.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.093262;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_c01056;src:url('chunks/assets/font_738b0f59162b793fdcf748e5.woff2')format("woff");}.ff2_c01056{font-family:ff2_c01056;line-height:1.104004;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_c01056{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_c01056{vertical-align:0.000000px;}
.ls1_c01056{letter-spacing:0.000000px;}
.ls0_c01056{letter-spacing:0.472320px;}
.sc__c01056{text-shadow:none;}
.sc0_c01056{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__c01056{-webkit-text-stroke:0px transparent;}
.sc0_c01056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01056{word-spacing:-15.232320px;}
.ws1_c01056{word-spacing:0.000000px;}
.fc1_c01056{color:transparent;}
.fc0_c01056{color:rgb(0,0,0);}
.fs1_c01056{font-size:59.040000px;}
.fs0_c01056{font-size:72.000000px;}
.yc_c01056{bottom:-11.160000px;}
.y0_c01056{bottom:0.000000px;}
.y2_c01056{bottom:3.195000px;}
.y4_c01056{bottom:3.960000px;}
.y1_c01056{bottom:53.999985px;}
.y3_c01056{bottom:56.114985px;}
.yb_c01056{bottom:60.434985px;}
.ya_c01056{bottom:142.875015px;}
.y9_c01056{bottom:163.395015px;}
.y8_c01056{bottom:184.275015px;}
.y7_c01056{bottom:200.835015px;}
.y6_c01056{bottom:1065.195015px;}
.y5_c01056{bottom:1086.075015px;}
.h6_c01056{height:5.399997px;}
.h4_c01056{height:17.640000px;}
.h3_c01056{height:63.175781px;}
.h5_c01056{height:63.949219px;}
.h2_c01056{height:1201.275000px;}
.h0_c01056{height:1262.835000px;}
.h1_c01056{height:1263.000000px;}
.w3_c01056{width:22.680000px;}
.w4_c01056{width:39.240000px;}
.w2_c01056{width:864.044850px;}
.w0_c01056{width:892.935000px;}
.w1_c01056{width:893.250000px;}
.x0_c01056{left:0.000000px;}
.x9_c01056{left:3.240150px;}
.x1_c01056{left:14.445000px;}
.x2_c01056{left:113.040150px;}
.x6_c01056{left:124.981185px;}
.x4_c01056{left:166.215000px;}
.x7_c01056{left:365.212650px;}
.x8_c01056{left:432.045000px;}
.x3_c01056{left:434.925000px;}
.x5_c01056{left:749.880900px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.ls1_c01056{letter-spacing:0.000000pt;}
.ls0_c01056{letter-spacing:0.419840pt;}
.ws0_c01056{word-spacing:-13.539840pt;}
.ws1_c01056{word-spacing:0.000000pt;}
.fs1_c01056{font-size:52.480000pt;}
.fs0_c01056{font-size:64.000000pt;}
.yc_c01056{bottom:-9.920000pt;}
.y0_c01056{bottom:0.000000pt;}
.y2_c01056{bottom:2.840000pt;}
.y4_c01056{bottom:3.520000pt;}
.y1_c01056{bottom:47.999987pt;}
.y3_c01056{bottom:49.879987pt;}
.yb_c01056{bottom:53.719987pt;}
.ya_c01056{bottom:127.000013pt;}
.y9_c01056{bottom:145.240013pt;}
.y8_c01056{bottom:163.800013pt;}
.y7_c01056{bottom:178.520013pt;}
.y6_c01056{bottom:946.840013pt;}
.y5_c01056{bottom:965.400013pt;}
.h6_c01056{height:4.799997pt;}
.h4_c01056{height:15.680000pt;}
.h3_c01056{height:56.156250pt;}
.h5_c01056{height:56.843750pt;}
.h2_c01056{height:1067.800000pt;}
.h0_c01056{height:1122.520000pt;}
.h1_c01056{height:1122.666667pt;}
.w3_c01056{width:20.160000pt;}
.w4_c01056{width:34.880000pt;}
.w2_c01056{width:768.039867pt;}
.w0_c01056{width:793.720000pt;}
.w1_c01056{width:794.000000pt;}
.x0_c01056{left:0.000000pt;}
.x9_c01056{left:2.880133pt;}
.x1_c01056{left:12.840000pt;}
.x2_c01056{left:100.480133pt;}
.x6_c01056{left:111.094387pt;}
.x4_c01056{left:147.746667pt;}
.x7_c01056{left:324.633467pt;}
.x8_c01056{left:384.040000pt;}
.x3_c01056{left:386.600000pt;}
.x5_c01056{left:666.560800pt;}
}





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

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





.ff0_c01057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01057;src:url('chunks/assets/font_550d08ccd2e98272c189ed24.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.093262;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_c01057;src:url('chunks/assets/font_bd34319e96020b3f02cf0985.woff2')format("woff");}.ff2_c01057{font-family:ff2_c01057;line-height:1.104004;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_c01057;src:url('chunks/assets/font_23a9c22ca680a0de89a50ef2.woff2')format("woff");}.ff3_c01057{font-family:ff3_c01057;line-height:0.893066;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_c01057{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_c01057{vertical-align:0.000000px;}
.ls1_c01057{letter-spacing:0.000000px;}
.ls0_c01057{letter-spacing:0.472320px;}
.sc__c01057{text-shadow:none;}
.sc0_c01057{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__c01057{-webkit-text-stroke:0px transparent;}
.sc0_c01057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01057{word-spacing:-15.232320px;}
.ws1_c01057{word-spacing:0.000000px;}
.fc1_c01057{color:transparent;}
.fc0_c01057{color:rgb(0,0,0);}
.fs1_c01057{font-size:59.040000px;}
.fs0_c01057{font-size:72.000000px;}
.ya_c01057{bottom:-11.160000px;}
.y0_c01057{bottom:0.000000px;}
.y2_c01057{bottom:3.195000px;}
.y4_c01057{bottom:3.960000px;}
.y1_c01057{bottom:53.999985px;}
.y3_c01057{bottom:56.114985px;}
.y9_c01057{bottom:60.434985px;}
.y8_c01057{bottom:145.755015px;}
.y7_c01057{bottom:166.635015px;}
.y6_c01057{bottom:187.155015px;}
.y5_c01057{bottom:203.715015px;}
.h6_c01057{height:5.399997px;}
.h4_c01057{height:17.640000px;}
.h3_c01057{height:63.175781px;}
.h5_c01057{height:63.949219px;}
.h2_c01057{height:1201.275000px;}
.h0_c01057{height:1262.835000px;}
.h1_c01057{height:1263.000000px;}
.w3_c01057{width:22.680000px;}
.w4_c01057{width:39.240000px;}
.w2_c01057{width:864.044850px;}
.w0_c01057{width:892.935000px;}
.w1_c01057{width:893.250000px;}
.x0_c01057{left:0.000000px;}
.x8_c01057{left:3.240150px;}
.x1_c01057{left:14.445000px;}
.x2_c01057{left:113.040150px;}
.x5_c01057{left:116.183340px;}
.x6_c01057{left:189.207300px;}
.x7_c01057{left:432.045000px;}
.x3_c01057{left:434.925000px;}
.x4_c01057{left:750.230250px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls1_c01057{letter-spacing:0.000000pt;}
.ls0_c01057{letter-spacing:0.419840pt;}
.ws0_c01057{word-spacing:-13.539840pt;}
.ws1_c01057{word-spacing:0.000000pt;}
.fs1_c01057{font-size:52.480000pt;}
.fs0_c01057{font-size:64.000000pt;}
.ya_c01057{bottom:-9.920000pt;}
.y0_c01057{bottom:0.000000pt;}
.y2_c01057{bottom:2.840000pt;}
.y4_c01057{bottom:3.520000pt;}
.y1_c01057{bottom:47.999987pt;}
.y3_c01057{bottom:49.879987pt;}
.y9_c01057{bottom:53.719987pt;}
.y8_c01057{bottom:129.560013pt;}
.y7_c01057{bottom:148.120013pt;}
.y6_c01057{bottom:166.360013pt;}
.y5_c01057{bottom:181.080013pt;}
.h6_c01057{height:4.799997pt;}
.h4_c01057{height:15.680000pt;}
.h3_c01057{height:56.156250pt;}
.h5_c01057{height:56.843750pt;}
.h2_c01057{height:1067.800000pt;}
.h0_c01057{height:1122.520000pt;}
.h1_c01057{height:1122.666667pt;}
.w3_c01057{width:20.160000pt;}
.w4_c01057{width:34.880000pt;}
.w2_c01057{width:768.039867pt;}
.w0_c01057{width:793.720000pt;}
.w1_c01057{width:794.000000pt;}
.x0_c01057{left:0.000000pt;}
.x8_c01057{left:2.880133pt;}
.x1_c01057{left:12.840000pt;}
.x2_c01057{left:100.480133pt;}
.x5_c01057{left:103.274080pt;}
.x6_c01057{left:168.184267pt;}
.x7_c01057{left:384.040000pt;}
.x3_c01057{left:386.600000pt;}
.x4_c01057{left:666.871333pt;}
}





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

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





.ff0_c01058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01058;src:url('chunks/assets/font_53612477c2a0f5d8ea4d31c4.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.093262;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_c01058;src:url('chunks/assets/font_a94a7192c74dad98247a5c77.woff2')format("woff");}.ff2_c01058{font-family:ff2_c01058;line-height:1.104004;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_c01058;src:url('chunks/assets/font_4efe466dab0c0f2226264b64.woff2')format("woff");}.ff3_c01058{font-family:ff3_c01058;line-height:0.893066;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_c01058{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_c01058{vertical-align:0.000000px;}
.ls1_c01058{letter-spacing:0.000000px;}
.ls0_c01058{letter-spacing:0.472320px;}
.sc__c01058{text-shadow:none;}
.sc0_c01058{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__c01058{-webkit-text-stroke:0px transparent;}
.sc0_c01058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01058{word-spacing:-18.000000px;}
.ws0_c01058{word-spacing:-15.232320px;}
.ws2_c01058{word-spacing:0.000000px;}
.fc1_c01058{color:transparent;}
.fc0_c01058{color:rgb(0,0,0);}
.fs1_c01058{font-size:59.040000px;}
.fs0_c01058{font-size:72.000000px;}
.y11_c01058{bottom:-11.160000px;}
.y0_c01058{bottom:0.000000px;}
.y2_c01058{bottom:3.195000px;}
.y4_c01058{bottom:3.960000px;}
.y1_c01058{bottom:53.999985px;}
.y3_c01058{bottom:56.114985px;}
.y10_c01058{bottom:60.434985px;}
.yf_c01058{bottom:337.635015px;}
.ye_c01058{bottom:358.155015px;}
.yd_c01058{bottom:379.035015px;}
.yc_c01058{bottom:399.555015px;}
.yb_c01058{bottom:416.115015px;}
.ya_c01058{bottom:982.395015px;}
.y9_c01058{bottom:1003.275015px;}
.y8_c01058{bottom:1023.795015px;}
.y7_c01058{bottom:1044.675015px;}
.y6_c01058{bottom:1065.195015px;}
.y5_c01058{bottom:1086.075015px;}
.h6_c01058{height:5.399997px;}
.h4_c01058{height:17.640000px;}
.h3_c01058{height:63.175781px;}
.h5_c01058{height:63.949219px;}
.h2_c01058{height:1201.275000px;}
.h0_c01058{height:1262.835000px;}
.h1_c01058{height:1263.000000px;}
.w3_c01058{width:22.680000px;}
.w4_c01058{width:39.240000px;}
.w2_c01058{width:864.044850px;}
.w0_c01058{width:892.935000px;}
.w1_c01058{width:893.250000px;}
.x0_c01058{left:0.000000px;}
.x8_c01058{left:3.240150px;}
.x1_c01058{left:14.445000px;}
.x2_c01058{left:113.040150px;}
.x6_c01058{left:114.944085px;}
.x7_c01058{left:371.962650px;}
.x5_c01058{left:431.715150px;}
.x3_c01058{left:434.925000px;}
.x4_c01058{left:774.921000px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.ls1_c01058{letter-spacing:0.000000pt;}
.ls0_c01058{letter-spacing:0.419840pt;}
.ws1_c01058{word-spacing:-16.000000pt;}
.ws0_c01058{word-spacing:-13.539840pt;}
.ws2_c01058{word-spacing:0.000000pt;}
.fs1_c01058{font-size:52.480000pt;}
.fs0_c01058{font-size:64.000000pt;}
.y11_c01058{bottom:-9.920000pt;}
.y0_c01058{bottom:0.000000pt;}
.y2_c01058{bottom:2.840000pt;}
.y4_c01058{bottom:3.520000pt;}
.y1_c01058{bottom:47.999987pt;}
.y3_c01058{bottom:49.879987pt;}
.y10_c01058{bottom:53.719987pt;}
.yf_c01058{bottom:300.120013pt;}
.ye_c01058{bottom:318.360013pt;}
.yd_c01058{bottom:336.920013pt;}
.yc_c01058{bottom:355.160013pt;}
.yb_c01058{bottom:369.880013pt;}
.ya_c01058{bottom:873.240013pt;}
.y9_c01058{bottom:891.800013pt;}
.y8_c01058{bottom:910.040013pt;}
.y7_c01058{bottom:928.600013pt;}
.y6_c01058{bottom:946.840013pt;}
.y5_c01058{bottom:965.400013pt;}
.h6_c01058{height:4.799997pt;}
.h4_c01058{height:15.680000pt;}
.h3_c01058{height:56.156250pt;}
.h5_c01058{height:56.843750pt;}
.h2_c01058{height:1067.800000pt;}
.h0_c01058{height:1122.520000pt;}
.h1_c01058{height:1122.666667pt;}
.w3_c01058{width:20.160000pt;}
.w4_c01058{width:34.880000pt;}
.w2_c01058{width:768.039867pt;}
.w0_c01058{width:793.720000pt;}
.w1_c01058{width:794.000000pt;}
.x0_c01058{left:0.000000pt;}
.x8_c01058{left:2.880133pt;}
.x1_c01058{left:12.840000pt;}
.x2_c01058{left:100.480133pt;}
.x6_c01058{left:102.172520pt;}
.x7_c01058{left:330.633467pt;}
.x5_c01058{left:383.746800pt;}
.x3_c01058{left:386.600000pt;}
.x4_c01058{left:688.818667pt;}
}





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

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





.ff0_c01059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01059;src:url('chunks/assets/font_0a17ceb3851f01e100540e5f.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.093262;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_c01059;src:url('chunks/assets/font_d95f0ac7bd6fdfc0c6ed6bff.woff2')format("woff");}.ff2_c01059{font-family:ff2_c01059;line-height:1.104004;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_c01059;src:url('chunks/assets/font_4efe466dab0c0f2226264b64.woff2')format("woff");}.ff3_c01059{font-family:ff3_c01059;line-height:0.893066;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_c01059{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_c01059{vertical-align:0.000000px;}
.ls1_c01059{letter-spacing:0.000000px;}
.ls0_c01059{letter-spacing:0.472320px;}
.sc__c01059{text-shadow:none;}
.sc0_c01059{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__c01059{-webkit-text-stroke:0px transparent;}
.sc0_c01059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01059{word-spacing:-18.000000px;}
.ws0_c01059{word-spacing:-15.232320px;}
.ws2_c01059{word-spacing:0.000000px;}
.fc1_c01059{color:transparent;}
.fc0_c01059{color:rgb(0,0,0);}
.fs1_c01059{font-size:59.040000px;}
.fs0_c01059{font-size:72.000000px;}
.yb_c01059{bottom:-11.160000px;}
.y0_c01059{bottom:0.000000px;}
.y2_c01059{bottom:3.195000px;}
.y4_c01059{bottom:3.960000px;}
.y1_c01059{bottom:53.999985px;}
.y3_c01059{bottom:56.114985px;}
.ya_c01059{bottom:60.434985px;}
.y9_c01059{bottom:215.955015px;}
.y8_c01059{bottom:236.835015px;}
.y7_c01059{bottom:257.355015px;}
.y6_c01059{bottom:278.235015px;}
.y5_c01059{bottom:294.795015px;}
.h6_c01059{height:5.399997px;}
.h4_c01059{height:17.640000px;}
.h3_c01059{height:63.175781px;}
.h5_c01059{height:63.949219px;}
.h2_c01059{height:1201.275000px;}
.h0_c01059{height:1262.835000px;}
.h1_c01059{height:1263.000000px;}
.w3_c01059{width:22.680000px;}
.w4_c01059{width:39.240000px;}
.w2_c01059{width:864.044850px;}
.w0_c01059{width:892.935000px;}
.w1_c01059{width:893.250000px;}
.x0_c01059{left:0.000000px;}
.x9_c01059{left:3.240150px;}
.x1_c01059{left:14.445000px;}
.x2_c01059{left:113.040150px;}
.x5_c01059{left:114.944085px;}
.x7_c01059{left:166.215000px;}
.x6_c01059{left:371.962650px;}
.x8_c01059{left:432.045000px;}
.x3_c01059{left:434.925000px;}
.x4_c01059{left:750.160350px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.ls1_c01059{letter-spacing:0.000000pt;}
.ls0_c01059{letter-spacing:0.419840pt;}
.ws1_c01059{word-spacing:-16.000000pt;}
.ws0_c01059{word-spacing:-13.539840pt;}
.ws2_c01059{word-spacing:0.000000pt;}
.fs1_c01059{font-size:52.480000pt;}
.fs0_c01059{font-size:64.000000pt;}
.yb_c01059{bottom:-9.920000pt;}
.y0_c01059{bottom:0.000000pt;}
.y2_c01059{bottom:2.840000pt;}
.y4_c01059{bottom:3.520000pt;}
.y1_c01059{bottom:47.999987pt;}
.y3_c01059{bottom:49.879987pt;}
.ya_c01059{bottom:53.719987pt;}
.y9_c01059{bottom:191.960013pt;}
.y8_c01059{bottom:210.520013pt;}
.y7_c01059{bottom:228.760013pt;}
.y6_c01059{bottom:247.320013pt;}
.y5_c01059{bottom:262.040013pt;}
.h6_c01059{height:4.799997pt;}
.h4_c01059{height:15.680000pt;}
.h3_c01059{height:56.156250pt;}
.h5_c01059{height:56.843750pt;}
.h2_c01059{height:1067.800000pt;}
.h0_c01059{height:1122.520000pt;}
.h1_c01059{height:1122.666667pt;}
.w3_c01059{width:20.160000pt;}
.w4_c01059{width:34.880000pt;}
.w2_c01059{width:768.039867pt;}
.w0_c01059{width:793.720000pt;}
.w1_c01059{width:794.000000pt;}
.x0_c01059{left:0.000000pt;}
.x9_c01059{left:2.880133pt;}
.x1_c01059{left:12.840000pt;}
.x2_c01059{left:100.480133pt;}
.x5_c01059{left:102.172520pt;}
.x7_c01059{left:147.746667pt;}
.x6_c01059{left:330.633467pt;}
.x8_c01059{left:384.040000pt;}
.x3_c01059{left:386.600000pt;}
.x4_c01059{left:666.809200pt;}
}





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

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





.ff0_c01060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01060;src:url('chunks/assets/font_699c2024c3b1535c7537ae8e.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.093262;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_c01060;src:url('chunks/assets/font_378c39fb3604bbeea8d2a1c3.woff2')format("woff");}.ff2_c01060{font-family:ff2_c01060;line-height:1.104004;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_c01060{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_c01060{vertical-align:0.000000px;}
.ls1_c01060{letter-spacing:0.000000px;}
.ls0_c01060{letter-spacing:0.472320px;}
.sc__c01060{text-shadow:none;}
.sc0_c01060{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__c01060{-webkit-text-stroke:0px transparent;}
.sc0_c01060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01060{word-spacing:-15.232320px;}
.ws1_c01060{word-spacing:0.000000px;}
.fc1_c01060{color:transparent;}
.fc0_c01060{color:rgb(0,0,0);}
.fs1_c01060{font-size:59.040000px;}
.fs0_c01060{font-size:72.000000px;}
.yc_c01060{bottom:-11.160000px;}
.y0_c01060{bottom:0.000000px;}
.y2_c01060{bottom:3.195000px;}
.y4_c01060{bottom:3.960000px;}
.y1_c01060{bottom:53.999985px;}
.y3_c01060{bottom:56.114985px;}
.yb_c01060{bottom:60.434985px;}
.ya_c01060{bottom:356.715015px;}
.y9_c01060{bottom:377.235015px;}
.y8_c01060{bottom:398.115015px;}
.y7_c01060{bottom:418.635015px;}
.y6_c01060{bottom:439.515015px;}
.y5_c01060{bottom:456.075015px;}
.h6_c01060{height:5.399997px;}
.h4_c01060{height:17.640000px;}
.h3_c01060{height:63.175781px;}
.h5_c01060{height:63.949219px;}
.h2_c01060{height:1201.275000px;}
.h0_c01060{height:1262.835000px;}
.h1_c01060{height:1263.000000px;}
.w3_c01060{width:22.680000px;}
.w4_c01060{width:39.240000px;}
.w2_c01060{width:864.044850px;}
.w0_c01060{width:892.935000px;}
.w1_c01060{width:893.250000px;}
.x0_c01060{left:0.000000px;}
.x7_c01060{left:3.240150px;}
.x1_c01060{left:14.445000px;}
.x2_c01060{left:113.040150px;}
.x6_c01060{left:203.977350px;}
.x5_c01060{left:431.715150px;}
.x3_c01060{left:434.925000px;}
.x4_c01060{left:750.543000px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.ls1_c01060{letter-spacing:0.000000pt;}
.ls0_c01060{letter-spacing:0.419840pt;}
.ws0_c01060{word-spacing:-13.539840pt;}
.ws1_c01060{word-spacing:0.000000pt;}
.fs1_c01060{font-size:52.480000pt;}
.fs0_c01060{font-size:64.000000pt;}
.yc_c01060{bottom:-9.920000pt;}
.y0_c01060{bottom:0.000000pt;}
.y2_c01060{bottom:2.840000pt;}
.y4_c01060{bottom:3.520000pt;}
.y1_c01060{bottom:47.999987pt;}
.y3_c01060{bottom:49.879987pt;}
.yb_c01060{bottom:53.719987pt;}
.ya_c01060{bottom:317.080013pt;}
.y9_c01060{bottom:335.320013pt;}
.y8_c01060{bottom:353.880013pt;}
.y7_c01060{bottom:372.120013pt;}
.y6_c01060{bottom:390.680013pt;}
.y5_c01060{bottom:405.400013pt;}
.h6_c01060{height:4.799997pt;}
.h4_c01060{height:15.680000pt;}
.h3_c01060{height:56.156250pt;}
.h5_c01060{height:56.843750pt;}
.h2_c01060{height:1067.800000pt;}
.h0_c01060{height:1122.520000pt;}
.h1_c01060{height:1122.666667pt;}
.w3_c01060{width:20.160000pt;}
.w4_c01060{width:34.880000pt;}
.w2_c01060{width:768.039867pt;}
.w0_c01060{width:793.720000pt;}
.w1_c01060{width:794.000000pt;}
.x0_c01060{left:0.000000pt;}
.x7_c01060{left:2.880133pt;}
.x1_c01060{left:12.840000pt;}
.x2_c01060{left:100.480133pt;}
.x6_c01060{left:181.313200pt;}
.x5_c01060{left:383.746800pt;}
.x3_c01060{left:386.600000pt;}
.x4_c01060{left:667.149333pt;}
}





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

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





.ff0_c01061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01061;src:url('chunks/assets/font_9e1459bd5b7b2bc5f3bfd8d8.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.093262;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_c01061;src:url('chunks/assets/font_bab5e41bf869b764cc83abba.woff2')format("woff");}.ff2_c01061{font-family:ff2_c01061;line-height:1.104004;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_c01061{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_c01061{vertical-align:0.000000px;}
.ls1_c01061{letter-spacing:0.000000px;}
.ls0_c01061{letter-spacing:0.472320px;}
.sc__c01061{text-shadow:none;}
.sc0_c01061{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__c01061{-webkit-text-stroke:0px transparent;}
.sc0_c01061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01061{word-spacing:-15.232320px;}
.ws1_c01061{word-spacing:0.000000px;}
.fc1_c01061{color:transparent;}
.fc0_c01061{color:rgb(0,0,0);}
.fs1_c01061{font-size:59.040000px;}
.fs0_c01061{font-size:72.000000px;}
.yf_c01061{bottom:-11.160000px;}
.y0_c01061{bottom:0.000000px;}
.y2_c01061{bottom:3.195000px;}
.y4_c01061{bottom:3.960000px;}
.y1_c01061{bottom:53.999985px;}
.y3_c01061{bottom:56.114985px;}
.ye_c01061{bottom:60.434985px;}
.yd_c01061{bottom:317.835015px;}
.yc_c01061{bottom:338.355015px;}
.yb_c01061{bottom:359.235015px;}
.ya_c01061{bottom:379.755015px;}
.y9_c01061{bottom:400.635015px;}
.y8_c01061{bottom:421.155015px;}
.y7_c01061{bottom:442.035015px;}
.y6_c01061{bottom:458.595015px;}
.y5_c01061{bottom:1086.075015px;}
.h6_c01061{height:5.399997px;}
.h4_c01061{height:17.640000px;}
.h3_c01061{height:63.175781px;}
.h5_c01061{height:63.949219px;}
.h2_c01061{height:1201.275000px;}
.h0_c01061{height:1262.835000px;}
.h1_c01061{height:1263.000000px;}
.w3_c01061{width:22.680000px;}
.w4_c01061{width:39.240000px;}
.w2_c01061{width:864.044850px;}
.w0_c01061{width:892.935000px;}
.w1_c01061{width:893.250000px;}
.x0_c01061{left:0.000000px;}
.x8_c01061{left:3.240150px;}
.x1_c01061{left:14.445000px;}
.x2_c01061{left:113.040150px;}
.x7_c01061{left:166.215000px;}
.x6_c01061{left:338.959650px;}
.x4_c01061{left:431.715150px;}
.x3_c01061{left:434.925000px;}
.x5_c01061{left:750.476400px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.ls1_c01061{letter-spacing:0.000000pt;}
.ls0_c01061{letter-spacing:0.419840pt;}
.ws0_c01061{word-spacing:-13.539840pt;}
.ws1_c01061{word-spacing:0.000000pt;}
.fs1_c01061{font-size:52.480000pt;}
.fs0_c01061{font-size:64.000000pt;}
.yf_c01061{bottom:-9.920000pt;}
.y0_c01061{bottom:0.000000pt;}
.y2_c01061{bottom:2.840000pt;}
.y4_c01061{bottom:3.520000pt;}
.y1_c01061{bottom:47.999987pt;}
.y3_c01061{bottom:49.879987pt;}
.ye_c01061{bottom:53.719987pt;}
.yd_c01061{bottom:282.520013pt;}
.yc_c01061{bottom:300.760013pt;}
.yb_c01061{bottom:319.320013pt;}
.ya_c01061{bottom:337.560013pt;}
.y9_c01061{bottom:356.120013pt;}
.y8_c01061{bottom:374.360013pt;}
.y7_c01061{bottom:392.920013pt;}
.y6_c01061{bottom:407.640013pt;}
.y5_c01061{bottom:965.400013pt;}
.h6_c01061{height:4.799997pt;}
.h4_c01061{height:15.680000pt;}
.h3_c01061{height:56.156250pt;}
.h5_c01061{height:56.843750pt;}
.h2_c01061{height:1067.800000pt;}
.h0_c01061{height:1122.520000pt;}
.h1_c01061{height:1122.666667pt;}
.w3_c01061{width:20.160000pt;}
.w4_c01061{width:34.880000pt;}
.w2_c01061{width:768.039867pt;}
.w0_c01061{width:793.720000pt;}
.w1_c01061{width:794.000000pt;}
.x0_c01061{left:0.000000pt;}
.x8_c01061{left:2.880133pt;}
.x1_c01061{left:12.840000pt;}
.x2_c01061{left:100.480133pt;}
.x7_c01061{left:147.746667pt;}
.x6_c01061{left:301.297467pt;}
.x4_c01061{left:383.746800pt;}
.x3_c01061{left:386.600000pt;}
.x5_c01061{left:667.090133pt;}
}





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

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





.ff0_c01062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01062;src:url('chunks/assets/font_b9bc621916723cade7ce8412.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.093262;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_c01062{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_c01062{vertical-align:0.000000px;}
.ls1_c01062{letter-spacing:0.000000px;}
.ls0_c01062{letter-spacing:0.472320px;}
.sc__c01062{text-shadow:none;}
.sc0_c01062{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__c01062{-webkit-text-stroke:0px transparent;}
.sc0_c01062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01062{word-spacing:-15.232320px;}
.ws1_c01062{word-spacing:0.000000px;}
.fc1_c01062{color:transparent;}
.fc0_c01062{color:rgb(0,0,0);}
.fs1_c01062{font-size:59.040000px;}
.fs0_c01062{font-size:72.000000px;}
.y6_c01062{bottom:-11.160000px;}
.y0_c01062{bottom:0.000000px;}
.y2_c01062{bottom:3.195000px;}
.y4_c01062{bottom:3.960000px;}
.y1_c01062{bottom:53.999985px;}
.y3_c01062{bottom:56.114985px;}
.y5_c01062{bottom:60.434985px;}
.h5_c01062{height:5.399997px;}
.h4_c01062{height:17.640000px;}
.h3_c01062{height:63.175781px;}
.h2_c01062{height:1201.275000px;}
.h0_c01062{height:1262.835000px;}
.h1_c01062{height:1263.000000px;}
.w3_c01062{width:22.680000px;}
.w4_c01062{width:39.240000px;}
.w2_c01062{width:864.044850px;}
.w0_c01062{width:892.935000px;}
.w1_c01062{width:893.250000px;}
.x0_c01062{left:0.000000px;}
.x5_c01062{left:3.240150px;}
.x1_c01062{left:14.445000px;}
.x2_c01062{left:113.040150px;}
.x4_c01062{left:432.045000px;}
.x3_c01062{left:434.925000px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.ls1_c01062{letter-spacing:0.000000pt;}
.ls0_c01062{letter-spacing:0.419840pt;}
.ws0_c01062{word-spacing:-13.539840pt;}
.ws1_c01062{word-spacing:0.000000pt;}
.fs1_c01062{font-size:52.480000pt;}
.fs0_c01062{font-size:64.000000pt;}
.y6_c01062{bottom:-9.920000pt;}
.y0_c01062{bottom:0.000000pt;}
.y2_c01062{bottom:2.840000pt;}
.y4_c01062{bottom:3.520000pt;}
.y1_c01062{bottom:47.999987pt;}
.y3_c01062{bottom:49.879987pt;}
.y5_c01062{bottom:53.719987pt;}
.h5_c01062{height:4.799997pt;}
.h4_c01062{height:15.680000pt;}
.h3_c01062{height:56.156250pt;}
.h2_c01062{height:1067.800000pt;}
.h0_c01062{height:1122.520000pt;}
.h1_c01062{height:1122.666667pt;}
.w3_c01062{width:20.160000pt;}
.w4_c01062{width:34.880000pt;}
.w2_c01062{width:768.039867pt;}
.w0_c01062{width:793.720000pt;}
.w1_c01062{width:794.000000pt;}
.x0_c01062{left:0.000000pt;}
.x5_c01062{left:2.880133pt;}
.x1_c01062{left:12.840000pt;}
.x2_c01062{left:100.480133pt;}
.x4_c01062{left:384.040000pt;}
.x3_c01062{left:386.600000pt;}
}





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

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





.ff0_c01063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01063;src:url('chunks/assets/font_c32f6d0ec197e2fb54764ecd.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.093262;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_c01063;src:url('chunks/assets/font_4fe863f5dcb22af4b1726bda.woff2')format("woff");}.ff2_c01063{font-family:ff2_c01063;line-height:1.104004;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_c01063{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_c01063{vertical-align:0.000000px;}
.ls1_c01063{letter-spacing:0.000000px;}
.ls0_c01063{letter-spacing:0.472320px;}
.sc__c01063{text-shadow:none;}
.sc0_c01063{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__c01063{-webkit-text-stroke:0px transparent;}
.sc0_c01063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01063{word-spacing:-15.232320px;}
.ws1_c01063{word-spacing:0.000000px;}
.fc1_c01063{color:transparent;}
.fc0_c01063{color:rgb(0,0,0);}
.fs1_c01063{font-size:59.040000px;}
.fs0_c01063{font-size:72.000000px;}
.y13_c01063{bottom:-11.160000px;}
.y0_c01063{bottom:0.000000px;}
.y2_c01063{bottom:3.195000px;}
.y4_c01063{bottom:3.960000px;}
.y1_c01063{bottom:53.999985px;}
.y3_c01063{bottom:56.114985px;}
.y12_c01063{bottom:60.434985px;}
.y11_c01063{bottom:837.675015px;}
.y10_c01063{bottom:858.195015px;}
.yf_c01063{bottom:879.075015px;}
.ye_c01063{bottom:899.595015px;}
.yd_c01063{bottom:920.475015px;}
.yc_c01063{bottom:940.995015px;}
.yb_c01063{bottom:961.875015px;}
.ya_c01063{bottom:982.395015px;}
.y9_c01063{bottom:1003.275015px;}
.y8_c01063{bottom:1023.795015px;}
.y7_c01063{bottom:1044.675015px;}
.y6_c01063{bottom:1065.195015px;}
.y5_c01063{bottom:1086.075015px;}
.h6_c01063{height:5.399997px;}
.h4_c01063{height:17.640000px;}
.h3_c01063{height:63.175781px;}
.h5_c01063{height:63.949219px;}
.h2_c01063{height:1201.275000px;}
.h0_c01063{height:1262.835000px;}
.h1_c01063{height:1263.000000px;}
.w3_c01063{width:22.680000px;}
.w4_c01063{width:39.240000px;}
.w2_c01063{width:864.044850px;}
.w0_c01063{width:892.935000px;}
.w1_c01063{width:893.250000px;}
.x0_c01063{left:0.000000px;}
.x6_c01063{left:3.240150px;}
.x1_c01063{left:14.445000px;}
.x2_c01063{left:113.040150px;}
.x4_c01063{left:386.455800px;}
.x5_c01063{left:432.045000px;}
.x3_c01063{left:434.925000px;}
@media print{
.v0_c01063{vertical-align:0.000000pt;}
.ls1_c01063{letter-spacing:0.000000pt;}
.ls0_c01063{letter-spacing:0.419840pt;}
.ws0_c01063{word-spacing:-13.539840pt;}
.ws1_c01063{word-spacing:0.000000pt;}
.fs1_c01063{font-size:52.480000pt;}
.fs0_c01063{font-size:64.000000pt;}
.y13_c01063{bottom:-9.920000pt;}
.y0_c01063{bottom:0.000000pt;}
.y2_c01063{bottom:2.840000pt;}
.y4_c01063{bottom:3.520000pt;}
.y1_c01063{bottom:47.999987pt;}
.y3_c01063{bottom:49.879987pt;}
.y12_c01063{bottom:53.719987pt;}
.y11_c01063{bottom:744.600013pt;}
.y10_c01063{bottom:762.840013pt;}
.yf_c01063{bottom:781.400013pt;}
.ye_c01063{bottom:799.640013pt;}
.yd_c01063{bottom:818.200013pt;}
.yc_c01063{bottom:836.440013pt;}
.yb_c01063{bottom:855.000013pt;}
.ya_c01063{bottom:873.240013pt;}
.y9_c01063{bottom:891.800013pt;}
.y8_c01063{bottom:910.040013pt;}
.y7_c01063{bottom:928.600013pt;}
.y6_c01063{bottom:946.840013pt;}
.y5_c01063{bottom:965.400013pt;}
.h6_c01063{height:4.799997pt;}
.h4_c01063{height:15.680000pt;}
.h3_c01063{height:56.156250pt;}
.h5_c01063{height:56.843750pt;}
.h2_c01063{height:1067.800000pt;}
.h0_c01063{height:1122.520000pt;}
.h1_c01063{height:1122.666667pt;}
.w3_c01063{width:20.160000pt;}
.w4_c01063{width:34.880000pt;}
.w2_c01063{width:768.039867pt;}
.w0_c01063{width:793.720000pt;}
.w1_c01063{width:794.000000pt;}
.x0_c01063{left:0.000000pt;}
.x6_c01063{left:2.880133pt;}
.x1_c01063{left:12.840000pt;}
.x2_c01063{left:100.480133pt;}
.x4_c01063{left:343.516267pt;}
.x5_c01063{left:384.040000pt;}
.x3_c01063{left:386.600000pt;}
}





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

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





.ff0_c01064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01064;src:url('chunks/assets/font_f628afc8b5232c833cd826a8.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.093262;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_c01064{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_c01064{vertical-align:0.000000px;}
.ls1_c01064{letter-spacing:0.000000px;}
.ls0_c01064{letter-spacing:0.472320px;}
.sc__c01064{text-shadow:none;}
.sc0_c01064{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__c01064{-webkit-text-stroke:0px transparent;}
.sc0_c01064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01064{word-spacing:-15.232320px;}
.ws1_c01064{word-spacing:0.000000px;}
.fc1_c01064{color:transparent;}
.fc0_c01064{color:rgb(0,0,0);}
.fs1_c01064{font-size:59.040000px;}
.fs0_c01064{font-size:72.000000px;}
.y6_c01064{bottom:-11.160000px;}
.y0_c01064{bottom:0.000000px;}
.y2_c01064{bottom:3.195000px;}
.y4_c01064{bottom:3.960000px;}
.y1_c01064{bottom:53.999985px;}
.y3_c01064{bottom:56.114985px;}
.y5_c01064{bottom:60.434985px;}
.h5_c01064{height:5.399997px;}
.h4_c01064{height:17.640000px;}
.h3_c01064{height:63.175781px;}
.h2_c01064{height:1201.275000px;}
.h0_c01064{height:1262.835000px;}
.h1_c01064{height:1263.000000px;}
.w3_c01064{width:22.680000px;}
.w4_c01064{width:93.240000px;}
.w2_c01064{width:864.044850px;}
.w0_c01064{width:892.935000px;}
.w1_c01064{width:893.250000px;}
.x0_c01064{left:0.000000px;}
.x5_c01064{left:3.240150px;}
.x1_c01064{left:14.445000px;}
.x2_c01064{left:113.040150px;}
.x4_c01064{left:405.045000px;}
.x3_c01064{left:434.925000px;}
@media print{
.v0_c01064{vertical-align:0.000000pt;}
.ls1_c01064{letter-spacing:0.000000pt;}
.ls0_c01064{letter-spacing:0.419840pt;}
.ws0_c01064{word-spacing:-13.539840pt;}
.ws1_c01064{word-spacing:0.000000pt;}
.fs1_c01064{font-size:52.480000pt;}
.fs0_c01064{font-size:64.000000pt;}
.y6_c01064{bottom:-9.920000pt;}
.y0_c01064{bottom:0.000000pt;}
.y2_c01064{bottom:2.840000pt;}
.y4_c01064{bottom:3.520000pt;}
.y1_c01064{bottom:47.999987pt;}
.y3_c01064{bottom:49.879987pt;}
.y5_c01064{bottom:53.719987pt;}
.h5_c01064{height:4.799997pt;}
.h4_c01064{height:15.680000pt;}
.h3_c01064{height:56.156250pt;}
.h2_c01064{height:1067.800000pt;}
.h0_c01064{height:1122.520000pt;}
.h1_c01064{height:1122.666667pt;}
.w3_c01064{width:20.160000pt;}
.w4_c01064{width:82.880000pt;}
.w2_c01064{width:768.039867pt;}
.w0_c01064{width:793.720000pt;}
.w1_c01064{width:794.000000pt;}
.x0_c01064{left:0.000000pt;}
.x5_c01064{left:2.880133pt;}
.x1_c01064{left:12.840000pt;}
.x2_c01064{left:100.480133pt;}
.x4_c01064{left:360.040000pt;}
.x3_c01064{left:386.600000pt;}
}





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

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





.ff0_c01065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01065;src:url('chunks/assets/font_8baf498bf3e42d6e7dc44018.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.093262;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_c01065;src:url('chunks/assets/font_7953c71cb8c97373e08023ad.woff2')format("woff");}.ff2_c01065{font-family:ff2_c01065;line-height:1.104004;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_c01065{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_c01065{vertical-align:0.000000px;}
.ls1_c01065{letter-spacing:0.000000px;}
.ls0_c01065{letter-spacing:0.472320px;}
.sc__c01065{text-shadow:none;}
.sc0_c01065{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__c01065{-webkit-text-stroke:0px transparent;}
.sc0_c01065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01065{word-spacing:-15.232320px;}
.ws1_c01065{word-spacing:0.000000px;}
.fc1_c01065{color:transparent;}
.fc0_c01065{color:rgb(0,0,0);}
.fs1_c01065{font-size:59.040000px;}
.fs0_c01065{font-size:72.000000px;}
.yb_c01065{bottom:-11.160000px;}
.y0_c01065{bottom:0.000000px;}
.y2_c01065{bottom:3.195000px;}
.y4_c01065{bottom:3.960000px;}
.y1_c01065{bottom:53.999985px;}
.y3_c01065{bottom:56.114985px;}
.ya_c01065{bottom:60.434985px;}
.y9_c01065{bottom:147.915015px;}
.y8_c01065{bottom:168.795015px;}
.y7_c01065{bottom:189.315015px;}
.y6_c01065{bottom:210.195015px;}
.y5_c01065{bottom:226.755015px;}
.h6_c01065{height:5.399997px;}
.h4_c01065{height:17.640000px;}
.h3_c01065{height:63.175781px;}
.h5_c01065{height:63.949219px;}
.h2_c01065{height:1201.275000px;}
.h0_c01065{height:1262.835000px;}
.h1_c01065{height:1263.000000px;}
.w3_c01065{width:22.680000px;}
.w4_c01065{width:39.240000px;}
.w2_c01065{width:864.044850px;}
.w0_c01065{width:892.935000px;}
.w1_c01065{width:893.250000px;}
.x0_c01065{left:0.000000px;}
.x8_c01065{left:3.240150px;}
.x1_c01065{left:14.445000px;}
.x2_c01065{left:113.040150px;}
.x6_c01065{left:117.466545px;}
.x7_c01065{left:200.268300px;}
.x5_c01065{left:431.715150px;}
.x3_c01065{left:434.925000px;}
.x4_c01065{left:750.146100px;}
@media print{
.v0_c01065{vertical-align:0.000000pt;}
.ls1_c01065{letter-spacing:0.000000pt;}
.ls0_c01065{letter-spacing:0.419840pt;}
.ws0_c01065{word-spacing:-13.539840pt;}
.ws1_c01065{word-spacing:0.000000pt;}
.fs1_c01065{font-size:52.480000pt;}
.fs0_c01065{font-size:64.000000pt;}
.yb_c01065{bottom:-9.920000pt;}
.y0_c01065{bottom:0.000000pt;}
.y2_c01065{bottom:2.840000pt;}
.y4_c01065{bottom:3.520000pt;}
.y1_c01065{bottom:47.999987pt;}
.y3_c01065{bottom:49.879987pt;}
.ya_c01065{bottom:53.719987pt;}
.y9_c01065{bottom:131.480013pt;}
.y8_c01065{bottom:150.040013pt;}
.y7_c01065{bottom:168.280013pt;}
.y6_c01065{bottom:186.840013pt;}
.y5_c01065{bottom:201.560013pt;}
.h6_c01065{height:4.799997pt;}
.h4_c01065{height:15.680000pt;}
.h3_c01065{height:56.156250pt;}
.h5_c01065{height:56.843750pt;}
.h2_c01065{height:1067.800000pt;}
.h0_c01065{height:1122.520000pt;}
.h1_c01065{height:1122.666667pt;}
.w3_c01065{width:20.160000pt;}
.w4_c01065{width:34.880000pt;}
.w2_c01065{width:768.039867pt;}
.w0_c01065{width:793.720000pt;}
.w1_c01065{width:794.000000pt;}
.x0_c01065{left:0.000000pt;}
.x8_c01065{left:2.880133pt;}
.x1_c01065{left:12.840000pt;}
.x2_c01065{left:100.480133pt;}
.x6_c01065{left:104.414707pt;}
.x7_c01065{left:178.016267pt;}
.x5_c01065{left:383.746800pt;}
.x3_c01065{left:386.600000pt;}
.x4_c01065{left:666.796533pt;}
}





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

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





.ff0_c01066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01066;src:url('chunks/assets/font_cb1b6e9874ca7ea98a2c52f1.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.093262;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_c01066;src:url('chunks/assets/font_ec414d84ce691b4a2df0e27f.woff2')format("woff");}.ff2_c01066{font-family:ff2_c01066;line-height:1.104004;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_c01066{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_c01066{vertical-align:0.000000px;}
.ls1_c01066{letter-spacing:0.000000px;}
.ls0_c01066{letter-spacing:0.472320px;}
.sc__c01066{text-shadow:none;}
.sc0_c01066{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__c01066{-webkit-text-stroke:0px transparent;}
.sc0_c01066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01066{word-spacing:-15.232320px;}
.ws1_c01066{word-spacing:0.000000px;}
.fc1_c01066{color:transparent;}
.fc0_c01066{color:rgb(0,0,0);}
.fs1_c01066{font-size:59.040000px;}
.fs0_c01066{font-size:72.000000px;}
.y38_c01066{bottom:-11.160000px;}
.y0_c01066{bottom:0.000000px;}
.y2_c01066{bottom:3.195000px;}
.y4_c01066{bottom:3.960000px;}
.y1_c01066{bottom:53.999985px;}
.y3_c01066{bottom:56.114985px;}
.y37_c01066{bottom:60.434985px;}
.y36_c01066{bottom:71.955000px;}
.y35_c01066{bottom:92.475000px;}
.y34_c01066{bottom:113.355015px;}
.y33_c01066{bottom:133.875015px;}
.y32_c01066{bottom:154.755015px;}
.y31_c01066{bottom:175.275015px;}
.y30_c01066{bottom:196.155015px;}
.y2f_c01066{bottom:216.675015px;}
.y2e_c01066{bottom:237.195015px;}
.y2d_c01066{bottom:258.075015px;}
.y2c_c01066{bottom:278.595015px;}
.y2b_c01066{bottom:299.475015px;}
.y2a_c01066{bottom:319.995015px;}
.y29_c01066{bottom:340.875015px;}
.y28_c01066{bottom:361.395015px;}
.y27_c01066{bottom:382.275015px;}
.y26_c01066{bottom:402.795015px;}
.y25_c01066{bottom:423.675015px;}
.y24_c01066{bottom:444.195015px;}
.y23_c01066{bottom:465.075015px;}
.y22_c01066{bottom:485.595015px;}
.y21_c01066{bottom:506.475015px;}
.y20_c01066{bottom:526.995015px;}
.y1f_c01066{bottom:547.875015px;}
.y1e_c01066{bottom:568.395015px;}
.y1d_c01066{bottom:589.275015px;}
.y1c_c01066{bottom:609.795015px;}
.y1b_c01066{bottom:630.675015px;}
.y1a_c01066{bottom:651.195015px;}
.y19_c01066{bottom:672.075015px;}
.y18_c01066{bottom:692.595015px;}
.y17_c01066{bottom:713.475015px;}
.y16_c01066{bottom:733.995015px;}
.y15_c01066{bottom:754.875015px;}
.y14_c01066{bottom:775.395015px;}
.y13_c01066{bottom:796.275015px;}
.y12_c01066{bottom:816.795015px;}
.y11_c01066{bottom:837.675015px;}
.y10_c01066{bottom:858.195015px;}
.yf_c01066{bottom:879.075015px;}
.ye_c01066{bottom:899.595015px;}
.yd_c01066{bottom:920.475015px;}
.yc_c01066{bottom:940.995015px;}
.yb_c01066{bottom:961.875015px;}
.ya_c01066{bottom:982.395015px;}
.y9_c01066{bottom:1003.275015px;}
.y8_c01066{bottom:1023.795015px;}
.y7_c01066{bottom:1044.675015px;}
.y6_c01066{bottom:1065.195015px;}
.y5_c01066{bottom:1086.075015px;}
.h6_c01066{height:5.399997px;}
.h4_c01066{height:17.640000px;}
.h3_c01066{height:63.175781px;}
.h5_c01066{height:63.949219px;}
.h2_c01066{height:1201.275000px;}
.h0_c01066{height:1262.835000px;}
.h1_c01066{height:1263.000000px;}
.w3_c01066{width:22.680000px;}
.w4_c01066{width:66.240000px;}
.w2_c01066{width:864.044850px;}
.w0_c01066{width:892.935000px;}
.w1_c01066{width:893.250000px;}
.x0_c01066{left:0.000000px;}
.x7_c01066{left:3.240150px;}
.x1_c01066{left:14.445000px;}
.x2_c01066{left:113.040150px;}
.x5_c01066{left:317.975850px;}
.x6_c01066{left:405.045000px;}
.x4_c01066{left:431.715150px;}
.x3_c01066{left:434.925000px;}
@media print{
.v0_c01066{vertical-align:0.000000pt;}
.ls1_c01066{letter-spacing:0.000000pt;}
.ls0_c01066{letter-spacing:0.419840pt;}
.ws0_c01066{word-spacing:-13.539840pt;}
.ws1_c01066{word-spacing:0.000000pt;}
.fs1_c01066{font-size:52.480000pt;}
.fs0_c01066{font-size:64.000000pt;}
.y38_c01066{bottom:-9.920000pt;}
.y0_c01066{bottom:0.000000pt;}
.y2_c01066{bottom:2.840000pt;}
.y4_c01066{bottom:3.520000pt;}
.y1_c01066{bottom:47.999987pt;}
.y3_c01066{bottom:49.879987pt;}
.y37_c01066{bottom:53.719987pt;}
.y36_c01066{bottom:63.960000pt;}
.y35_c01066{bottom:82.200000pt;}
.y34_c01066{bottom:100.760013pt;}
.y33_c01066{bottom:119.000013pt;}
.y32_c01066{bottom:137.560013pt;}
.y31_c01066{bottom:155.800013pt;}
.y30_c01066{bottom:174.360013pt;}
.y2f_c01066{bottom:192.600013pt;}
.y2e_c01066{bottom:210.840013pt;}
.y2d_c01066{bottom:229.400013pt;}
.y2c_c01066{bottom:247.640013pt;}
.y2b_c01066{bottom:266.200013pt;}
.y2a_c01066{bottom:284.440013pt;}
.y29_c01066{bottom:303.000013pt;}
.y28_c01066{bottom:321.240013pt;}
.y27_c01066{bottom:339.800013pt;}
.y26_c01066{bottom:358.040013pt;}
.y25_c01066{bottom:376.600013pt;}
.y24_c01066{bottom:394.840013pt;}
.y23_c01066{bottom:413.400013pt;}
.y22_c01066{bottom:431.640013pt;}
.y21_c01066{bottom:450.200013pt;}
.y20_c01066{bottom:468.440013pt;}
.y1f_c01066{bottom:487.000013pt;}
.y1e_c01066{bottom:505.240013pt;}
.y1d_c01066{bottom:523.800013pt;}
.y1c_c01066{bottom:542.040013pt;}
.y1b_c01066{bottom:560.600013pt;}
.y1a_c01066{bottom:578.840013pt;}
.y19_c01066{bottom:597.400013pt;}
.y18_c01066{bottom:615.640013pt;}
.y17_c01066{bottom:634.200013pt;}
.y16_c01066{bottom:652.440013pt;}
.y15_c01066{bottom:671.000013pt;}
.y14_c01066{bottom:689.240013pt;}
.y13_c01066{bottom:707.800013pt;}
.y12_c01066{bottom:726.040013pt;}
.y11_c01066{bottom:744.600013pt;}
.y10_c01066{bottom:762.840013pt;}
.yf_c01066{bottom:781.400013pt;}
.ye_c01066{bottom:799.640013pt;}
.yd_c01066{bottom:818.200013pt;}
.yc_c01066{bottom:836.440013pt;}
.yb_c01066{bottom:855.000013pt;}
.ya_c01066{bottom:873.240013pt;}
.y9_c01066{bottom:891.800013pt;}
.y8_c01066{bottom:910.040013pt;}
.y7_c01066{bottom:928.600013pt;}
.y6_c01066{bottom:946.840013pt;}
.y5_c01066{bottom:965.400013pt;}
.h6_c01066{height:4.799997pt;}
.h4_c01066{height:15.680000pt;}
.h3_c01066{height:56.156250pt;}
.h5_c01066{height:56.843750pt;}
.h2_c01066{height:1067.800000pt;}
.h0_c01066{height:1122.520000pt;}
.h1_c01066{height:1122.666667pt;}
.w3_c01066{width:20.160000pt;}
.w4_c01066{width:58.880000pt;}
.w2_c01066{width:768.039867pt;}
.w0_c01066{width:793.720000pt;}
.w1_c01066{width:794.000000pt;}
.x0_c01066{left:0.000000pt;}
.x7_c01066{left:2.880133pt;}
.x1_c01066{left:12.840000pt;}
.x2_c01066{left:100.480133pt;}
.x5_c01066{left:282.645200pt;}
.x6_c01066{left:360.040000pt;}
.x4_c01066{left:383.746800pt;}
.x3_c01066{left:386.600000pt;}
}





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

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





.ff0_c01067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01067;src:url('chunks/assets/font_53612477c2a0f5d8ea4d31c4.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:1.093262;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_c01067;src:url('chunks/assets/font_5ea9f5b05c16a1657865e9f7.woff2')format("woff");}.ff2_c01067{font-family:ff2_c01067;line-height:1.104004;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_c01067{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_c01067{vertical-align:0.000000px;}
.ls1_c01067{letter-spacing:0.000000px;}
.ls0_c01067{letter-spacing:0.472320px;}
.sc__c01067{text-shadow:none;}
.sc0_c01067{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__c01067{-webkit-text-stroke:0px transparent;}
.sc0_c01067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01067{word-spacing:-15.232320px;}
.ws1_c01067{word-spacing:0.000000px;}
.fc1_c01067{color:transparent;}
.fc0_c01067{color:rgb(0,0,0);}
.fs1_c01067{font-size:59.040000px;}
.fs0_c01067{font-size:72.000000px;}
.y1e_c01067{bottom:-11.160000px;}
.y0_c01067{bottom:0.000000px;}
.y2_c01067{bottom:3.195000px;}
.y4_c01067{bottom:3.960000px;}
.y1_c01067{bottom:53.999985px;}
.y3_c01067{bottom:56.114985px;}
.y1d_c01067{bottom:60.434985px;}
.y1c_c01067{bottom:158.355015px;}
.y1b_c01067{bottom:178.875015px;}
.y1a_c01067{bottom:199.755015px;}
.y19_c01067{bottom:220.275015px;}
.y18_c01067{bottom:241.155015px;}
.y17_c01067{bottom:261.675015px;}
.y16_c01067{bottom:282.555015px;}
.y15_c01067{bottom:303.075015px;}
.y14_c01067{bottom:323.955015px;}
.y13_c01067{bottom:344.475015px;}
.y12_c01067{bottom:365.355015px;}
.y11_c01067{bottom:385.875015px;}
.y10_c01067{bottom:406.755015px;}
.yf_c01067{bottom:427.275015px;}
.ye_c01067{bottom:448.155015px;}
.yd_c01067{bottom:464.715015px;}
.yc_c01067{bottom:940.995015px;}
.yb_c01067{bottom:961.875015px;}
.ya_c01067{bottom:982.395015px;}
.y9_c01067{bottom:1003.275015px;}
.y8_c01067{bottom:1023.795015px;}
.y7_c01067{bottom:1044.675015px;}
.y6_c01067{bottom:1065.195015px;}
.y5_c01067{bottom:1086.075015px;}
.h6_c01067{height:5.399997px;}
.h4_c01067{height:17.640000px;}
.h3_c01067{height:63.175781px;}
.h5_c01067{height:63.949219px;}
.h2_c01067{height:1201.275000px;}
.h0_c01067{height:1262.835000px;}
.h1_c01067{height:1263.000000px;}
.w3_c01067{width:22.680000px;}
.w4_c01067{width:39.240000px;}
.w2_c01067{width:864.044850px;}
.w0_c01067{width:892.935000px;}
.w1_c01067{width:893.250000px;}
.x0_c01067{left:0.000000px;}
.x7_c01067{left:3.240150px;}
.x1_c01067{left:14.445000px;}
.x2_c01067{left:113.040150px;}
.x6_c01067{left:317.975850px;}
.x4_c01067{left:431.715150px;}
.x3_c01067{left:434.925000px;}
.x5_c01067{left:603.427350px;}
@media print{
.v0_c01067{vertical-align:0.000000pt;}
.ls1_c01067{letter-spacing:0.000000pt;}
.ls0_c01067{letter-spacing:0.419840pt;}
.ws0_c01067{word-spacing:-13.539840pt;}
.ws1_c01067{word-spacing:0.000000pt;}
.fs1_c01067{font-size:52.480000pt;}
.fs0_c01067{font-size:64.000000pt;}
.y1e_c01067{bottom:-9.920000pt;}
.y0_c01067{bottom:0.000000pt;}
.y2_c01067{bottom:2.840000pt;}
.y4_c01067{bottom:3.520000pt;}
.y1_c01067{bottom:47.999987pt;}
.y3_c01067{bottom:49.879987pt;}
.y1d_c01067{bottom:53.719987pt;}
.y1c_c01067{bottom:140.760013pt;}
.y1b_c01067{bottom:159.000013pt;}
.y1a_c01067{bottom:177.560013pt;}
.y19_c01067{bottom:195.800013pt;}
.y18_c01067{bottom:214.360013pt;}
.y17_c01067{bottom:232.600013pt;}
.y16_c01067{bottom:251.160013pt;}
.y15_c01067{bottom:269.400013pt;}
.y14_c01067{bottom:287.960013pt;}
.y13_c01067{bottom:306.200013pt;}
.y12_c01067{bottom:324.760013pt;}
.y11_c01067{bottom:343.000013pt;}
.y10_c01067{bottom:361.560013pt;}
.yf_c01067{bottom:379.800013pt;}
.ye_c01067{bottom:398.360013pt;}
.yd_c01067{bottom:413.080013pt;}
.yc_c01067{bottom:836.440013pt;}
.yb_c01067{bottom:855.000013pt;}
.ya_c01067{bottom:873.240013pt;}
.y9_c01067{bottom:891.800013pt;}
.y8_c01067{bottom:910.040013pt;}
.y7_c01067{bottom:928.600013pt;}
.y6_c01067{bottom:946.840013pt;}
.y5_c01067{bottom:965.400013pt;}
.h6_c01067{height:4.799997pt;}
.h4_c01067{height:15.680000pt;}
.h3_c01067{height:56.156250pt;}
.h5_c01067{height:56.843750pt;}
.h2_c01067{height:1067.800000pt;}
.h0_c01067{height:1122.520000pt;}
.h1_c01067{height:1122.666667pt;}
.w3_c01067{width:20.160000pt;}
.w4_c01067{width:34.880000pt;}
.w2_c01067{width:768.039867pt;}
.w0_c01067{width:793.720000pt;}
.w1_c01067{width:794.000000pt;}
.x0_c01067{left:0.000000pt;}
.x7_c01067{left:2.880133pt;}
.x1_c01067{left:12.840000pt;}
.x2_c01067{left:100.480133pt;}
.x6_c01067{left:282.645200pt;}
.x4_c01067{left:383.746800pt;}
.x3_c01067{left:386.600000pt;}
.x5_c01067{left:536.379867pt;}
}





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

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





.ff0_c01068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01068;src:url('chunks/assets/font_53612477c2a0f5d8ea4d31c4.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.093262;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_c01068;src:url('chunks/assets/font_ea4ab50583216b10455c9649.woff2')format("woff");}.ff2_c01068{font-family:ff2_c01068;line-height:1.104004;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_c01068{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_c01068{vertical-align:0.000000px;}
.ls1_c01068{letter-spacing:0.000000px;}
.ls0_c01068{letter-spacing:0.472320px;}
.sc__c01068{text-shadow:none;}
.sc0_c01068{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__c01068{-webkit-text-stroke:0px transparent;}
.sc0_c01068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01068{word-spacing:-15.232320px;}
.ws1_c01068{word-spacing:0.000000px;}
.fc1_c01068{color:transparent;}
.fc0_c01068{color:rgb(0,0,0);}
.fs1_c01068{font-size:59.040000px;}
.fs0_c01068{font-size:72.000000px;}
.y38_c01068{bottom:-11.160000px;}
.y0_c01068{bottom:0.000000px;}
.y2_c01068{bottom:3.195000px;}
.y4_c01068{bottom:3.960000px;}
.y1_c01068{bottom:53.999985px;}
.y3_c01068{bottom:56.114985px;}
.y37_c01068{bottom:60.434985px;}
.y36_c01068{bottom:71.955000px;}
.y35_c01068{bottom:92.475000px;}
.y34_c01068{bottom:113.355015px;}
.y33_c01068{bottom:133.875015px;}
.y32_c01068{bottom:154.755015px;}
.y31_c01068{bottom:175.275015px;}
.y30_c01068{bottom:196.155015px;}
.y2f_c01068{bottom:216.675015px;}
.y2e_c01068{bottom:237.195015px;}
.y2d_c01068{bottom:258.075015px;}
.y2c_c01068{bottom:278.595015px;}
.y2b_c01068{bottom:299.475015px;}
.y2a_c01068{bottom:319.995015px;}
.y29_c01068{bottom:340.875015px;}
.y28_c01068{bottom:361.395015px;}
.y27_c01068{bottom:382.275015px;}
.y26_c01068{bottom:402.795015px;}
.y25_c01068{bottom:423.675015px;}
.y24_c01068{bottom:444.195015px;}
.y23_c01068{bottom:465.075015px;}
.y22_c01068{bottom:485.595015px;}
.y21_c01068{bottom:506.475015px;}
.y20_c01068{bottom:526.995015px;}
.y1f_c01068{bottom:547.875015px;}
.y1e_c01068{bottom:568.395015px;}
.y1d_c01068{bottom:589.275015px;}
.y1c_c01068{bottom:609.795015px;}
.y1b_c01068{bottom:630.675015px;}
.y1a_c01068{bottom:651.195015px;}
.y19_c01068{bottom:672.075015px;}
.y18_c01068{bottom:692.595015px;}
.y17_c01068{bottom:713.475015px;}
.y16_c01068{bottom:733.995015px;}
.y15_c01068{bottom:754.875015px;}
.y14_c01068{bottom:775.395015px;}
.y13_c01068{bottom:796.275015px;}
.y12_c01068{bottom:816.795015px;}
.y11_c01068{bottom:837.675015px;}
.y10_c01068{bottom:858.195015px;}
.yf_c01068{bottom:879.075015px;}
.ye_c01068{bottom:899.595015px;}
.yd_c01068{bottom:920.475015px;}
.yc_c01068{bottom:940.995015px;}
.yb_c01068{bottom:961.875015px;}
.ya_c01068{bottom:982.395015px;}
.y9_c01068{bottom:1003.275015px;}
.y8_c01068{bottom:1023.795015px;}
.y7_c01068{bottom:1044.675015px;}
.y6_c01068{bottom:1065.195015px;}
.y5_c01068{bottom:1086.075015px;}
.h6_c01068{height:5.399997px;}
.h4_c01068{height:17.640000px;}
.h3_c01068{height:63.175781px;}
.h5_c01068{height:63.949219px;}
.h2_c01068{height:1201.275000px;}
.h0_c01068{height:1262.835000px;}
.h1_c01068{height:1263.000000px;}
.w3_c01068{width:22.680000px;}
.w4_c01068{width:39.240000px;}
.w2_c01068{width:864.044850px;}
.w0_c01068{width:892.935000px;}
.w1_c01068{width:893.250000px;}
.x0_c01068{left:0.000000px;}
.x7_c01068{left:3.240150px;}
.x1_c01068{left:14.445000px;}
.x2_c01068{left:113.040150px;}
.x6_c01068{left:317.975850px;}
.x5_c01068{left:431.715150px;}
.x3_c01068{left:434.925000px;}
.x4_c01068{left:741.524700px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.ls1_c01068{letter-spacing:0.000000pt;}
.ls0_c01068{letter-spacing:0.419840pt;}
.ws0_c01068{word-spacing:-13.539840pt;}
.ws1_c01068{word-spacing:0.000000pt;}
.fs1_c01068{font-size:52.480000pt;}
.fs0_c01068{font-size:64.000000pt;}
.y38_c01068{bottom:-9.920000pt;}
.y0_c01068{bottom:0.000000pt;}
.y2_c01068{bottom:2.840000pt;}
.y4_c01068{bottom:3.520000pt;}
.y1_c01068{bottom:47.999987pt;}
.y3_c01068{bottom:49.879987pt;}
.y37_c01068{bottom:53.719987pt;}
.y36_c01068{bottom:63.960000pt;}
.y35_c01068{bottom:82.200000pt;}
.y34_c01068{bottom:100.760013pt;}
.y33_c01068{bottom:119.000013pt;}
.y32_c01068{bottom:137.560013pt;}
.y31_c01068{bottom:155.800013pt;}
.y30_c01068{bottom:174.360013pt;}
.y2f_c01068{bottom:192.600013pt;}
.y2e_c01068{bottom:210.840013pt;}
.y2d_c01068{bottom:229.400013pt;}
.y2c_c01068{bottom:247.640013pt;}
.y2b_c01068{bottom:266.200013pt;}
.y2a_c01068{bottom:284.440013pt;}
.y29_c01068{bottom:303.000013pt;}
.y28_c01068{bottom:321.240013pt;}
.y27_c01068{bottom:339.800013pt;}
.y26_c01068{bottom:358.040013pt;}
.y25_c01068{bottom:376.600013pt;}
.y24_c01068{bottom:394.840013pt;}
.y23_c01068{bottom:413.400013pt;}
.y22_c01068{bottom:431.640013pt;}
.y21_c01068{bottom:450.200013pt;}
.y20_c01068{bottom:468.440013pt;}
.y1f_c01068{bottom:487.000013pt;}
.y1e_c01068{bottom:505.240013pt;}
.y1d_c01068{bottom:523.800013pt;}
.y1c_c01068{bottom:542.040013pt;}
.y1b_c01068{bottom:560.600013pt;}
.y1a_c01068{bottom:578.840013pt;}
.y19_c01068{bottom:597.400013pt;}
.y18_c01068{bottom:615.640013pt;}
.y17_c01068{bottom:634.200013pt;}
.y16_c01068{bottom:652.440013pt;}
.y15_c01068{bottom:671.000013pt;}
.y14_c01068{bottom:689.240013pt;}
.y13_c01068{bottom:707.800013pt;}
.y12_c01068{bottom:726.040013pt;}
.y11_c01068{bottom:744.600013pt;}
.y10_c01068{bottom:762.840013pt;}
.yf_c01068{bottom:781.400013pt;}
.ye_c01068{bottom:799.640013pt;}
.yd_c01068{bottom:818.200013pt;}
.yc_c01068{bottom:836.440013pt;}
.yb_c01068{bottom:855.000013pt;}
.ya_c01068{bottom:873.240013pt;}
.y9_c01068{bottom:891.800013pt;}
.y8_c01068{bottom:910.040013pt;}
.y7_c01068{bottom:928.600013pt;}
.y6_c01068{bottom:946.840013pt;}
.y5_c01068{bottom:965.400013pt;}
.h6_c01068{height:4.799997pt;}
.h4_c01068{height:15.680000pt;}
.h3_c01068{height:56.156250pt;}
.h5_c01068{height:56.843750pt;}
.h2_c01068{height:1067.800000pt;}
.h0_c01068{height:1122.520000pt;}
.h1_c01068{height:1122.666667pt;}
.w3_c01068{width:20.160000pt;}
.w4_c01068{width:34.880000pt;}
.w2_c01068{width:768.039867pt;}
.w0_c01068{width:793.720000pt;}
.w1_c01068{width:794.000000pt;}
.x0_c01068{left:0.000000pt;}
.x7_c01068{left:2.880133pt;}
.x1_c01068{left:12.840000pt;}
.x2_c01068{left:100.480133pt;}
.x6_c01068{left:282.645200pt;}
.x5_c01068{left:383.746800pt;}
.x3_c01068{left:386.600000pt;}
.x4_c01068{left:659.133067pt;}
}





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

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





.ff0_c01069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01069;src:url('chunks/assets/font_498cb2106e31f40538158672.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:1.093262;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_c01069;src:url('chunks/assets/font_33652ca4ebe57f76df4f5f68.woff2')format("woff");}.ff2_c01069{font-family:ff2_c01069;line-height:1.104004;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_c01069{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_c01069{vertical-align:0.000000px;}
.ls1_c01069{letter-spacing:0.000000px;}
.ls0_c01069{letter-spacing:0.472320px;}
.sc__c01069{text-shadow:none;}
.sc0_c01069{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__c01069{-webkit-text-stroke:0px transparent;}
.sc0_c01069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01069{word-spacing:-15.232320px;}
.ws1_c01069{word-spacing:0.000000px;}
.fc1_c01069{color:transparent;}
.fc0_c01069{color:rgb(0,0,0);}
.fs1_c01069{font-size:59.040000px;}
.fs0_c01069{font-size:72.000000px;}
.y38_c01069{bottom:-11.160000px;}
.y0_c01069{bottom:0.000000px;}
.y2_c01069{bottom:3.195000px;}
.y4_c01069{bottom:3.960000px;}
.y1_c01069{bottom:53.999985px;}
.y3_c01069{bottom:56.114985px;}
.y37_c01069{bottom:60.434985px;}
.y36_c01069{bottom:71.955000px;}
.y35_c01069{bottom:92.475000px;}
.y34_c01069{bottom:113.355015px;}
.y33_c01069{bottom:133.875015px;}
.y32_c01069{bottom:154.755015px;}
.y31_c01069{bottom:175.275015px;}
.y30_c01069{bottom:196.155015px;}
.y2f_c01069{bottom:216.675015px;}
.y2e_c01069{bottom:237.195015px;}
.y2d_c01069{bottom:258.075015px;}
.y2c_c01069{bottom:278.595015px;}
.y2b_c01069{bottom:299.475015px;}
.y2a_c01069{bottom:319.995015px;}
.y29_c01069{bottom:340.875015px;}
.y28_c01069{bottom:361.395015px;}
.y27_c01069{bottom:382.275015px;}
.y26_c01069{bottom:402.795015px;}
.y25_c01069{bottom:423.675015px;}
.y24_c01069{bottom:444.195015px;}
.y23_c01069{bottom:465.075015px;}
.y22_c01069{bottom:485.595015px;}
.y21_c01069{bottom:506.475015px;}
.y20_c01069{bottom:526.995015px;}
.y1f_c01069{bottom:547.875015px;}
.y1e_c01069{bottom:568.395015px;}
.y1d_c01069{bottom:589.275015px;}
.y1c_c01069{bottom:609.795015px;}
.y1b_c01069{bottom:630.675015px;}
.y1a_c01069{bottom:651.195015px;}
.y19_c01069{bottom:672.075015px;}
.y18_c01069{bottom:692.595015px;}
.y17_c01069{bottom:713.475015px;}
.y16_c01069{bottom:733.995015px;}
.y15_c01069{bottom:754.875015px;}
.y14_c01069{bottom:775.395015px;}
.y13_c01069{bottom:796.275015px;}
.y12_c01069{bottom:816.795015px;}
.y11_c01069{bottom:837.675015px;}
.y10_c01069{bottom:858.195015px;}
.yf_c01069{bottom:879.075015px;}
.ye_c01069{bottom:899.595015px;}
.yd_c01069{bottom:920.475015px;}
.yc_c01069{bottom:940.995015px;}
.yb_c01069{bottom:961.875015px;}
.ya_c01069{bottom:982.395015px;}
.y9_c01069{bottom:1003.275015px;}
.y8_c01069{bottom:1023.795015px;}
.y7_c01069{bottom:1044.675015px;}
.y6_c01069{bottom:1065.195015px;}
.y5_c01069{bottom:1086.075015px;}
.h6_c01069{height:5.399997px;}
.h4_c01069{height:17.640000px;}
.h3_c01069{height:63.175781px;}
.h5_c01069{height:63.949219px;}
.h2_c01069{height:1201.275000px;}
.h0_c01069{height:1262.835000px;}
.h1_c01069{height:1263.000000px;}
.w3_c01069{width:22.680000px;}
.w4_c01069{width:39.240000px;}
.w2_c01069{width:864.044850px;}
.w0_c01069{width:892.935000px;}
.w1_c01069{width:893.250000px;}
.x0_c01069{left:0.000000px;}
.x6_c01069{left:3.240150px;}
.x1_c01069{left:14.445000px;}
.x2_c01069{left:113.040150px;}
.x5_c01069{left:317.975850px;}
.x4_c01069{left:431.715150px;}
.x3_c01069{left:434.925000px;}
@media print{
.v0_c01069{vertical-align:0.000000pt;}
.ls1_c01069{letter-spacing:0.000000pt;}
.ls0_c01069{letter-spacing:0.419840pt;}
.ws0_c01069{word-spacing:-13.539840pt;}
.ws1_c01069{word-spacing:0.000000pt;}
.fs1_c01069{font-size:52.480000pt;}
.fs0_c01069{font-size:64.000000pt;}
.y38_c01069{bottom:-9.920000pt;}
.y0_c01069{bottom:0.000000pt;}
.y2_c01069{bottom:2.840000pt;}
.y4_c01069{bottom:3.520000pt;}
.y1_c01069{bottom:47.999987pt;}
.y3_c01069{bottom:49.879987pt;}
.y37_c01069{bottom:53.719987pt;}
.y36_c01069{bottom:63.960000pt;}
.y35_c01069{bottom:82.200000pt;}
.y34_c01069{bottom:100.760013pt;}
.y33_c01069{bottom:119.000013pt;}
.y32_c01069{bottom:137.560013pt;}
.y31_c01069{bottom:155.800013pt;}
.y30_c01069{bottom:174.360013pt;}
.y2f_c01069{bottom:192.600013pt;}
.y2e_c01069{bottom:210.840013pt;}
.y2d_c01069{bottom:229.400013pt;}
.y2c_c01069{bottom:247.640013pt;}
.y2b_c01069{bottom:266.200013pt;}
.y2a_c01069{bottom:284.440013pt;}
.y29_c01069{bottom:303.000013pt;}
.y28_c01069{bottom:321.240013pt;}
.y27_c01069{bottom:339.800013pt;}
.y26_c01069{bottom:358.040013pt;}
.y25_c01069{bottom:376.600013pt;}
.y24_c01069{bottom:394.840013pt;}
.y23_c01069{bottom:413.400013pt;}
.y22_c01069{bottom:431.640013pt;}
.y21_c01069{bottom:450.200013pt;}
.y20_c01069{bottom:468.440013pt;}
.y1f_c01069{bottom:487.000013pt;}
.y1e_c01069{bottom:505.240013pt;}
.y1d_c01069{bottom:523.800013pt;}
.y1c_c01069{bottom:542.040013pt;}
.y1b_c01069{bottom:560.600013pt;}
.y1a_c01069{bottom:578.840013pt;}
.y19_c01069{bottom:597.400013pt;}
.y18_c01069{bottom:615.640013pt;}
.y17_c01069{bottom:634.200013pt;}
.y16_c01069{bottom:652.440013pt;}
.y15_c01069{bottom:671.000013pt;}
.y14_c01069{bottom:689.240013pt;}
.y13_c01069{bottom:707.800013pt;}
.y12_c01069{bottom:726.040013pt;}
.y11_c01069{bottom:744.600013pt;}
.y10_c01069{bottom:762.840013pt;}
.yf_c01069{bottom:781.400013pt;}
.ye_c01069{bottom:799.640013pt;}
.yd_c01069{bottom:818.200013pt;}
.yc_c01069{bottom:836.440013pt;}
.yb_c01069{bottom:855.000013pt;}
.ya_c01069{bottom:873.240013pt;}
.y9_c01069{bottom:891.800013pt;}
.y8_c01069{bottom:910.040013pt;}
.y7_c01069{bottom:928.600013pt;}
.y6_c01069{bottom:946.840013pt;}
.y5_c01069{bottom:965.400013pt;}
.h6_c01069{height:4.799997pt;}
.h4_c01069{height:15.680000pt;}
.h3_c01069{height:56.156250pt;}
.h5_c01069{height:56.843750pt;}
.h2_c01069{height:1067.800000pt;}
.h0_c01069{height:1122.520000pt;}
.h1_c01069{height:1122.666667pt;}
.w3_c01069{width:20.160000pt;}
.w4_c01069{width:34.880000pt;}
.w2_c01069{width:768.039867pt;}
.w0_c01069{width:793.720000pt;}
.w1_c01069{width:794.000000pt;}
.x0_c01069{left:0.000000pt;}
.x6_c01069{left:2.880133pt;}
.x1_c01069{left:12.840000pt;}
.x2_c01069{left:100.480133pt;}
.x5_c01069{left:282.645200pt;}
.x4_c01069{left:383.746800pt;}
.x3_c01069{left:386.600000pt;}
}





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

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





.ff0_c01070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01070;src:url('chunks/assets/font_977fa521b4e787ea7bd6538b.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.093262;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_c01070;src:url('chunks/assets/font_be49d493006c12a957adc553.woff2')format("woff");}.ff2_c01070{font-family:ff2_c01070;line-height:1.104004;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_c01070{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_c01070{vertical-align:0.000000px;}
.ls1_c01070{letter-spacing:0.000000px;}
.ls0_c01070{letter-spacing:0.472320px;}
.sc__c01070{text-shadow:none;}
.sc0_c01070{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__c01070{-webkit-text-stroke:0px transparent;}
.sc0_c01070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01070{word-spacing:-15.232320px;}
.ws1_c01070{word-spacing:0.000000px;}
.fc1_c01070{color:transparent;}
.fc0_c01070{color:rgb(0,0,0);}
.fs1_c01070{font-size:59.040000px;}
.fs0_c01070{font-size:72.000000px;}
.y37_c01070{bottom:-11.160000px;}
.y0_c01070{bottom:0.000000px;}
.y2_c01070{bottom:3.195000px;}
.y4_c01070{bottom:3.960000px;}
.y1_c01070{bottom:53.999985px;}
.y3_c01070{bottom:56.114985px;}
.y36_c01070{bottom:60.434985px;}
.y35_c01070{bottom:92.475000px;}
.y34_c01070{bottom:113.355015px;}
.y33_c01070{bottom:133.875015px;}
.y32_c01070{bottom:154.755015px;}
.y31_c01070{bottom:175.275015px;}
.y30_c01070{bottom:196.155015px;}
.y2f_c01070{bottom:216.675015px;}
.y2e_c01070{bottom:237.195015px;}
.y2d_c01070{bottom:258.075015px;}
.y2c_c01070{bottom:278.595015px;}
.y2b_c01070{bottom:299.475015px;}
.y2a_c01070{bottom:319.995015px;}
.y29_c01070{bottom:340.875015px;}
.y28_c01070{bottom:361.395015px;}
.y27_c01070{bottom:382.275015px;}
.y26_c01070{bottom:402.795015px;}
.y25_c01070{bottom:423.675015px;}
.y24_c01070{bottom:444.195015px;}
.y23_c01070{bottom:465.075015px;}
.y22_c01070{bottom:485.595015px;}
.y21_c01070{bottom:506.475015px;}
.y20_c01070{bottom:526.995015px;}
.y1f_c01070{bottom:547.875015px;}
.y1e_c01070{bottom:568.395015px;}
.y1d_c01070{bottom:589.275015px;}
.y1c_c01070{bottom:609.795015px;}
.y1b_c01070{bottom:630.675015px;}
.y1a_c01070{bottom:651.195015px;}
.y19_c01070{bottom:672.075015px;}
.y18_c01070{bottom:692.595015px;}
.y17_c01070{bottom:713.475015px;}
.y16_c01070{bottom:733.995015px;}
.y15_c01070{bottom:754.875015px;}
.y14_c01070{bottom:775.395015px;}
.y13_c01070{bottom:796.275015px;}
.y12_c01070{bottom:816.795015px;}
.y11_c01070{bottom:837.675015px;}
.y10_c01070{bottom:858.195015px;}
.yf_c01070{bottom:879.075015px;}
.ye_c01070{bottom:899.595015px;}
.yd_c01070{bottom:920.475015px;}
.yc_c01070{bottom:940.995015px;}
.yb_c01070{bottom:961.875015px;}
.ya_c01070{bottom:982.395015px;}
.y9_c01070{bottom:1003.275015px;}
.y8_c01070{bottom:1023.795015px;}
.y7_c01070{bottom:1044.675015px;}
.y6_c01070{bottom:1065.195015px;}
.y5_c01070{bottom:1086.075015px;}
.h6_c01070{height:5.399997px;}
.h4_c01070{height:17.640000px;}
.h3_c01070{height:63.175781px;}
.h5_c01070{height:63.949219px;}
.h2_c01070{height:1201.275000px;}
.h0_c01070{height:1262.835000px;}
.h1_c01070{height:1263.000000px;}
.w3_c01070{width:22.680000px;}
.w4_c01070{width:39.240000px;}
.w2_c01070{width:864.044850px;}
.w0_c01070{width:892.935000px;}
.w1_c01070{width:893.250000px;}
.x0_c01070{left:0.000000px;}
.x6_c01070{left:3.240150px;}
.x1_c01070{left:14.445000px;}
.x2_c01070{left:113.040150px;}
.x5_c01070{left:317.975850px;}
.x4_c01070{left:431.715150px;}
.x3_c01070{left:434.925000px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.ls1_c01070{letter-spacing:0.000000pt;}
.ls0_c01070{letter-spacing:0.419840pt;}
.ws0_c01070{word-spacing:-13.539840pt;}
.ws1_c01070{word-spacing:0.000000pt;}
.fs1_c01070{font-size:52.480000pt;}
.fs0_c01070{font-size:64.000000pt;}
.y37_c01070{bottom:-9.920000pt;}
.y0_c01070{bottom:0.000000pt;}
.y2_c01070{bottom:2.840000pt;}
.y4_c01070{bottom:3.520000pt;}
.y1_c01070{bottom:47.999987pt;}
.y3_c01070{bottom:49.879987pt;}
.y36_c01070{bottom:53.719987pt;}
.y35_c01070{bottom:82.200000pt;}
.y34_c01070{bottom:100.760013pt;}
.y33_c01070{bottom:119.000013pt;}
.y32_c01070{bottom:137.560013pt;}
.y31_c01070{bottom:155.800013pt;}
.y30_c01070{bottom:174.360013pt;}
.y2f_c01070{bottom:192.600013pt;}
.y2e_c01070{bottom:210.840013pt;}
.y2d_c01070{bottom:229.400013pt;}
.y2c_c01070{bottom:247.640013pt;}
.y2b_c01070{bottom:266.200013pt;}
.y2a_c01070{bottom:284.440013pt;}
.y29_c01070{bottom:303.000013pt;}
.y28_c01070{bottom:321.240013pt;}
.y27_c01070{bottom:339.800013pt;}
.y26_c01070{bottom:358.040013pt;}
.y25_c01070{bottom:376.600013pt;}
.y24_c01070{bottom:394.840013pt;}
.y23_c01070{bottom:413.400013pt;}
.y22_c01070{bottom:431.640013pt;}
.y21_c01070{bottom:450.200013pt;}
.y20_c01070{bottom:468.440013pt;}
.y1f_c01070{bottom:487.000013pt;}
.y1e_c01070{bottom:505.240013pt;}
.y1d_c01070{bottom:523.800013pt;}
.y1c_c01070{bottom:542.040013pt;}
.y1b_c01070{bottom:560.600013pt;}
.y1a_c01070{bottom:578.840013pt;}
.y19_c01070{bottom:597.400013pt;}
.y18_c01070{bottom:615.640013pt;}
.y17_c01070{bottom:634.200013pt;}
.y16_c01070{bottom:652.440013pt;}
.y15_c01070{bottom:671.000013pt;}
.y14_c01070{bottom:689.240013pt;}
.y13_c01070{bottom:707.800013pt;}
.y12_c01070{bottom:726.040013pt;}
.y11_c01070{bottom:744.600013pt;}
.y10_c01070{bottom:762.840013pt;}
.yf_c01070{bottom:781.400013pt;}
.ye_c01070{bottom:799.640013pt;}
.yd_c01070{bottom:818.200013pt;}
.yc_c01070{bottom:836.440013pt;}
.yb_c01070{bottom:855.000013pt;}
.ya_c01070{bottom:873.240013pt;}
.y9_c01070{bottom:891.800013pt;}
.y8_c01070{bottom:910.040013pt;}
.y7_c01070{bottom:928.600013pt;}
.y6_c01070{bottom:946.840013pt;}
.y5_c01070{bottom:965.400013pt;}
.h6_c01070{height:4.799997pt;}
.h4_c01070{height:15.680000pt;}
.h3_c01070{height:56.156250pt;}
.h5_c01070{height:56.843750pt;}
.h2_c01070{height:1067.800000pt;}
.h0_c01070{height:1122.520000pt;}
.h1_c01070{height:1122.666667pt;}
.w3_c01070{width:20.160000pt;}
.w4_c01070{width:34.880000pt;}
.w2_c01070{width:768.039867pt;}
.w0_c01070{width:793.720000pt;}
.w1_c01070{width:794.000000pt;}
.x0_c01070{left:0.000000pt;}
.x6_c01070{left:2.880133pt;}
.x1_c01070{left:12.840000pt;}
.x2_c01070{left:100.480133pt;}
.x5_c01070{left:282.645200pt;}
.x4_c01070{left:383.746800pt;}
.x3_c01070{left:386.600000pt;}
}





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

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





.ff0_c01071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01071;src:url('chunks/assets/font_bd78d31541495671564872a2.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.093262;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_c01071;src:url('chunks/assets/font_cca8554a51618e77dea79adb.woff2')format("woff");}.ff2_c01071{font-family:ff2_c01071;line-height:1.104004;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_c01071{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_c01071{vertical-align:0.000000px;}
.ls1_c01071{letter-spacing:0.000000px;}
.ls0_c01071{letter-spacing:0.472320px;}
.sc__c01071{text-shadow:none;}
.sc0_c01071{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__c01071{-webkit-text-stroke:0px transparent;}
.sc0_c01071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01071{word-spacing:-15.232320px;}
.ws1_c01071{word-spacing:0.000000px;}
.fc1_c01071{color:transparent;}
.fc0_c01071{color:rgb(0,0,0);}
.fs1_c01071{font-size:59.040000px;}
.fs0_c01071{font-size:72.000000px;}
.y13_c01071{bottom:-11.160000px;}
.y0_c01071{bottom:0.000000px;}
.y2_c01071{bottom:3.195000px;}
.y4_c01071{bottom:3.960000px;}
.y1_c01071{bottom:53.999985px;}
.y3_c01071{bottom:56.114985px;}
.y12_c01071{bottom:60.434985px;}
.y11_c01071{bottom:837.675015px;}
.y10_c01071{bottom:858.195015px;}
.yf_c01071{bottom:879.075015px;}
.ye_c01071{bottom:899.595015px;}
.yd_c01071{bottom:920.475015px;}
.yc_c01071{bottom:940.995015px;}
.yb_c01071{bottom:961.875015px;}
.ya_c01071{bottom:982.395015px;}
.y9_c01071{bottom:1003.275015px;}
.y8_c01071{bottom:1023.795015px;}
.y7_c01071{bottom:1044.675015px;}
.y6_c01071{bottom:1065.195015px;}
.y5_c01071{bottom:1086.075015px;}
.h6_c01071{height:5.399997px;}
.h4_c01071{height:17.640000px;}
.h3_c01071{height:63.175781px;}
.h5_c01071{height:63.949219px;}
.h2_c01071{height:1201.275000px;}
.h0_c01071{height:1262.835000px;}
.h1_c01071{height:1263.000000px;}
.w3_c01071{width:22.680000px;}
.w4_c01071{width:39.240000px;}
.w2_c01071{width:864.044850px;}
.w0_c01071{width:892.935000px;}
.w1_c01071{width:893.250000px;}
.x0_c01071{left:0.000000px;}
.x6_c01071{left:3.240150px;}
.x1_c01071{left:14.445000px;}
.x2_c01071{left:113.040150px;}
.x4_c01071{left:386.956800px;}
.x5_c01071{left:432.045000px;}
.x3_c01071{left:434.925000px;}
@media print{
.v0_c01071{vertical-align:0.000000pt;}
.ls1_c01071{letter-spacing:0.000000pt;}
.ls0_c01071{letter-spacing:0.419840pt;}
.ws0_c01071{word-spacing:-13.539840pt;}
.ws1_c01071{word-spacing:0.000000pt;}
.fs1_c01071{font-size:52.480000pt;}
.fs0_c01071{font-size:64.000000pt;}
.y13_c01071{bottom:-9.920000pt;}
.y0_c01071{bottom:0.000000pt;}
.y2_c01071{bottom:2.840000pt;}
.y4_c01071{bottom:3.520000pt;}
.y1_c01071{bottom:47.999987pt;}
.y3_c01071{bottom:49.879987pt;}
.y12_c01071{bottom:53.719987pt;}
.y11_c01071{bottom:744.600013pt;}
.y10_c01071{bottom:762.840013pt;}
.yf_c01071{bottom:781.400013pt;}
.ye_c01071{bottom:799.640013pt;}
.yd_c01071{bottom:818.200013pt;}
.yc_c01071{bottom:836.440013pt;}
.yb_c01071{bottom:855.000013pt;}
.ya_c01071{bottom:873.240013pt;}
.y9_c01071{bottom:891.800013pt;}
.y8_c01071{bottom:910.040013pt;}
.y7_c01071{bottom:928.600013pt;}
.y6_c01071{bottom:946.840013pt;}
.y5_c01071{bottom:965.400013pt;}
.h6_c01071{height:4.799997pt;}
.h4_c01071{height:15.680000pt;}
.h3_c01071{height:56.156250pt;}
.h5_c01071{height:56.843750pt;}
.h2_c01071{height:1067.800000pt;}
.h0_c01071{height:1122.520000pt;}
.h1_c01071{height:1122.666667pt;}
.w3_c01071{width:20.160000pt;}
.w4_c01071{width:34.880000pt;}
.w2_c01071{width:768.039867pt;}
.w0_c01071{width:793.720000pt;}
.w1_c01071{width:794.000000pt;}
.x0_c01071{left:0.000000pt;}
.x6_c01071{left:2.880133pt;}
.x1_c01071{left:12.840000pt;}
.x2_c01071{left:100.480133pt;}
.x4_c01071{left:343.961600pt;}
.x5_c01071{left:384.040000pt;}
.x3_c01071{left:386.600000pt;}
}





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

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





.ff0_c01072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01072;src:url('chunks/assets/font_49b5228d327ae49262672e11.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.093262;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_c01072;src:url('chunks/assets/font_b4c859feb52c0240f4557f03.woff2')format("woff");}.ff2_c01072{font-family:ff2_c01072;line-height:1.104004;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_c01072{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_c01072{vertical-align:0.000000px;}
.ls1_c01072{letter-spacing:0.000000px;}
.ls0_c01072{letter-spacing:0.472320px;}
.sc__c01072{text-shadow:none;}
.sc0_c01072{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__c01072{-webkit-text-stroke:0px transparent;}
.sc0_c01072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01072{word-spacing:-15.232320px;}
.ws1_c01072{word-spacing:0.000000px;}
.fc1_c01072{color:transparent;}
.fc0_c01072{color:rgb(0,0,0);}
.fs1_c01072{font-size:59.040000px;}
.fs0_c01072{font-size:72.000000px;}
.yc_c01072{bottom:-11.160000px;}
.y0_c01072{bottom:0.000000px;}
.y2_c01072{bottom:3.195000px;}
.y4_c01072{bottom:3.960000px;}
.y1_c01072{bottom:53.999985px;}
.y3_c01072{bottom:56.114985px;}
.yb_c01072{bottom:60.434985px;}
.ya_c01072{bottom:982.395015px;}
.y9_c01072{bottom:1003.275015px;}
.y8_c01072{bottom:1023.795015px;}
.y7_c01072{bottom:1044.675015px;}
.y6_c01072{bottom:1065.195015px;}
.y5_c01072{bottom:1086.075015px;}
.h6_c01072{height:5.399997px;}
.h4_c01072{height:17.640000px;}
.h3_c01072{height:63.175781px;}
.h5_c01072{height:63.949219px;}
.h2_c01072{height:1201.275000px;}
.h0_c01072{height:1262.835000px;}
.h1_c01072{height:1263.000000px;}
.w3_c01072{width:22.680000px;}
.w4_c01072{width:39.240000px;}
.w2_c01072{width:864.044850px;}
.w0_c01072{width:892.935000px;}
.w1_c01072{width:893.250000px;}
.x0_c01072{left:0.000000px;}
.x5_c01072{left:3.240150px;}
.x1_c01072{left:14.445000px;}
.x2_c01072{left:113.040150px;}
.x4_c01072{left:431.715150px;}
.x3_c01072{left:434.925000px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.ls1_c01072{letter-spacing:0.000000pt;}
.ls0_c01072{letter-spacing:0.419840pt;}
.ws0_c01072{word-spacing:-13.539840pt;}
.ws1_c01072{word-spacing:0.000000pt;}
.fs1_c01072{font-size:52.480000pt;}
.fs0_c01072{font-size:64.000000pt;}
.yc_c01072{bottom:-9.920000pt;}
.y0_c01072{bottom:0.000000pt;}
.y2_c01072{bottom:2.840000pt;}
.y4_c01072{bottom:3.520000pt;}
.y1_c01072{bottom:47.999987pt;}
.y3_c01072{bottom:49.879987pt;}
.yb_c01072{bottom:53.719987pt;}
.ya_c01072{bottom:873.240013pt;}
.y9_c01072{bottom:891.800013pt;}
.y8_c01072{bottom:910.040013pt;}
.y7_c01072{bottom:928.600013pt;}
.y6_c01072{bottom:946.840013pt;}
.y5_c01072{bottom:965.400013pt;}
.h6_c01072{height:4.799997pt;}
.h4_c01072{height:15.680000pt;}
.h3_c01072{height:56.156250pt;}
.h5_c01072{height:56.843750pt;}
.h2_c01072{height:1067.800000pt;}
.h0_c01072{height:1122.520000pt;}
.h1_c01072{height:1122.666667pt;}
.w3_c01072{width:20.160000pt;}
.w4_c01072{width:34.880000pt;}
.w2_c01072{width:768.039867pt;}
.w0_c01072{width:793.720000pt;}
.w1_c01072{width:794.000000pt;}
.x0_c01072{left:0.000000pt;}
.x5_c01072{left:2.880133pt;}
.x1_c01072{left:12.840000pt;}
.x2_c01072{left:100.480133pt;}
.x4_c01072{left:383.746800pt;}
.x3_c01072{left:386.600000pt;}
}





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

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





.ff0_c01073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01073;src:url('chunks/assets/font_80f77d82bf69e0fcc626ef3e.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.093262;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_c01073;src:url('chunks/assets/font_dd28a4d51f9df62db1d6175d.woff2')format("woff");}.ff2_c01073{font-family:ff2_c01073;line-height:1.104004;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_c01073;src:url('chunks/assets/font_6c2c858d837971c93cda4f9c.woff2')format("woff");}.ff3_c01073{font-family:ff3_c01073;line-height:0.893066;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_c01073{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_c01073{vertical-align:0.000000px;}
.ls1_c01073{letter-spacing:0.000000px;}
.ls0_c01073{letter-spacing:0.472320px;}
.sc__c01073{text-shadow:none;}
.sc0_c01073{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__c01073{-webkit-text-stroke:0px transparent;}
.sc0_c01073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01073{word-spacing:-15.232320px;}
.ws1_c01073{word-spacing:0.000000px;}
.fc1_c01073{color:transparent;}
.fc0_c01073{color:rgb(0,0,0);}
.fs1_c01073{font-size:59.040000px;}
.fs0_c01073{font-size:72.000000px;}
.y9_c01073{bottom:-11.160000px;}
.y0_c01073{bottom:0.000000px;}
.y2_c01073{bottom:3.195000px;}
.y4_c01073{bottom:3.960000px;}
.y1_c01073{bottom:53.999985px;}
.y3_c01073{bottom:56.114985px;}
.y8_c01073{bottom:60.434985px;}
.y7_c01073{bottom:404.955015px;}
.y6_c01073{bottom:425.835015px;}
.y5_c01073{bottom:442.395015px;}
.h6_c01073{height:5.399997px;}
.h4_c01073{height:17.640000px;}
.h3_c01073{height:63.175781px;}
.h5_c01073{height:63.949219px;}
.h2_c01073{height:1201.275000px;}
.h0_c01073{height:1262.835000px;}
.h1_c01073{height:1263.000000px;}
.w3_c01073{width:22.680000px;}
.w5_c01073{width:39.240000px;}
.w4_c01073{width:93.240000px;}
.w2_c01073{width:864.044850px;}
.w0_c01073{width:892.935000px;}
.w1_c01073{width:893.250000px;}
.x0_c01073{left:0.000000px;}
.x8_c01073{left:3.240150px;}
.x1_c01073{left:14.445000px;}
.x2_c01073{left:113.040150px;}
.x6_c01073{left:261.967500px;}
.x7_c01073{left:405.045000px;}
.x5_c01073{left:431.715150px;}
.x3_c01073{left:434.925000px;}
.x4_c01073{left:750.201450px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.ls1_c01073{letter-spacing:0.000000pt;}
.ls0_c01073{letter-spacing:0.419840pt;}
.ws0_c01073{word-spacing:-13.539840pt;}
.ws1_c01073{word-spacing:0.000000pt;}
.fs1_c01073{font-size:52.480000pt;}
.fs0_c01073{font-size:64.000000pt;}
.y9_c01073{bottom:-9.920000pt;}
.y0_c01073{bottom:0.000000pt;}
.y2_c01073{bottom:2.840000pt;}
.y4_c01073{bottom:3.520000pt;}
.y1_c01073{bottom:47.999987pt;}
.y3_c01073{bottom:49.879987pt;}
.y8_c01073{bottom:53.719987pt;}
.y7_c01073{bottom:359.960013pt;}
.y6_c01073{bottom:378.520013pt;}
.y5_c01073{bottom:393.240013pt;}
.h6_c01073{height:4.799997pt;}
.h4_c01073{height:15.680000pt;}
.h3_c01073{height:56.156250pt;}
.h5_c01073{height:56.843750pt;}
.h2_c01073{height:1067.800000pt;}
.h0_c01073{height:1122.520000pt;}
.h1_c01073{height:1122.666667pt;}
.w3_c01073{width:20.160000pt;}
.w5_c01073{width:34.880000pt;}
.w4_c01073{width:82.880000pt;}
.w2_c01073{width:768.039867pt;}
.w0_c01073{width:793.720000pt;}
.w1_c01073{width:794.000000pt;}
.x0_c01073{left:0.000000pt;}
.x8_c01073{left:2.880133pt;}
.x1_c01073{left:12.840000pt;}
.x2_c01073{left:100.480133pt;}
.x6_c01073{left:232.860000pt;}
.x7_c01073{left:360.040000pt;}
.x5_c01073{left:383.746800pt;}
.x3_c01073{left:386.600000pt;}
.x4_c01073{left:666.845733pt;}
}





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

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





.ff0_c01074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01074;src:url('chunks/assets/font_523d715f8885fe4c017e2971.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.093262;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_c01074;src:url('chunks/assets/font_462a6290c70d2aae79616d55.woff2')format("woff");}.ff2_c01074{font-family:ff2_c01074;line-height:1.104004;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_c01074;src:url('chunks/assets/font_4c30f32daeef1a9e9e4f98c8.woff2')format("woff");}.ff3_c01074{font-family:ff3_c01074;line-height:0.893066;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_c01074{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_c01074{vertical-align:0.000000px;}
.ls1_c01074{letter-spacing:0.000000px;}
.ls0_c01074{letter-spacing:0.472320px;}
.sc__c01074{text-shadow:none;}
.sc0_c01074{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__c01074{-webkit-text-stroke:0px transparent;}
.sc0_c01074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01074{word-spacing:-15.232320px;}
.ws1_c01074{word-spacing:0.000000px;}
.fc1_c01074{color:transparent;}
.fc0_c01074{color:rgb(0,0,0);}
.fs1_c01074{font-size:59.040000px;}
.fs0_c01074{font-size:72.000000px;}
.yb_c01074{bottom:-11.160000px;}
.y0_c01074{bottom:0.000000px;}
.y2_c01074{bottom:3.195000px;}
.y4_c01074{bottom:3.960000px;}
.y1_c01074{bottom:53.999985px;}
.y3_c01074{bottom:56.114985px;}
.ya_c01074{bottom:60.434985px;}
.y9_c01074{bottom:196.155015px;}
.y8_c01074{bottom:216.675015px;}
.y7_c01074{bottom:237.555015px;}
.y6_c01074{bottom:258.075015px;}
.y5_c01074{bottom:274.635015px;}
.h6_c01074{height:5.399997px;}
.h4_c01074{height:17.640000px;}
.h3_c01074{height:63.175781px;}
.h5_c01074{height:63.949219px;}
.h2_c01074{height:1201.275000px;}
.h0_c01074{height:1262.835000px;}
.h1_c01074{height:1263.000000px;}
.w3_c01074{width:22.680000px;}
.w4_c01074{width:66.240000px;}
.w2_c01074{width:864.044850px;}
.w0_c01074{width:892.935000px;}
.w1_c01074{width:893.250000px;}
.x0_c01074{left:0.000000px;}
.x8_c01074{left:3.240150px;}
.x1_c01074{left:14.445000px;}
.x2_c01074{left:113.040150px;}
.x6_c01074{left:299.940600px;}
.x7_c01074{left:405.045000px;}
.x5_c01074{left:431.715150px;}
.x3_c01074{left:434.925000px;}
.x4_c01074{left:750.191550px;}
@media print{
.v0_c01074{vertical-align:0.000000pt;}
.ls1_c01074{letter-spacing:0.000000pt;}
.ls0_c01074{letter-spacing:0.419840pt;}
.ws0_c01074{word-spacing:-13.539840pt;}
.ws1_c01074{word-spacing:0.000000pt;}
.fs1_c01074{font-size:52.480000pt;}
.fs0_c01074{font-size:64.000000pt;}
.yb_c01074{bottom:-9.920000pt;}
.y0_c01074{bottom:0.000000pt;}
.y2_c01074{bottom:2.840000pt;}
.y4_c01074{bottom:3.520000pt;}
.y1_c01074{bottom:47.999987pt;}
.y3_c01074{bottom:49.879987pt;}
.ya_c01074{bottom:53.719987pt;}
.y9_c01074{bottom:174.360013pt;}
.y8_c01074{bottom:192.600013pt;}
.y7_c01074{bottom:211.160013pt;}
.y6_c01074{bottom:229.400013pt;}
.y5_c01074{bottom:244.120013pt;}
.h6_c01074{height:4.799997pt;}
.h4_c01074{height:15.680000pt;}
.h3_c01074{height:56.156250pt;}
.h5_c01074{height:56.843750pt;}
.h2_c01074{height:1067.800000pt;}
.h0_c01074{height:1122.520000pt;}
.h1_c01074{height:1122.666667pt;}
.w3_c01074{width:20.160000pt;}
.w4_c01074{width:58.880000pt;}
.w2_c01074{width:768.039867pt;}
.w0_c01074{width:793.720000pt;}
.w1_c01074{width:794.000000pt;}
.x0_c01074{left:0.000000pt;}
.x8_c01074{left:2.880133pt;}
.x1_c01074{left:12.840000pt;}
.x2_c01074{left:100.480133pt;}
.x6_c01074{left:266.613867pt;}
.x7_c01074{left:360.040000pt;}
.x5_c01074{left:383.746800pt;}
.x3_c01074{left:386.600000pt;}
.x4_c01074{left:666.836933pt;}
}





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

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





.ff0_c01075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01075;src:url('chunks/assets/font_0e26164f42c706b20d17b287.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.093262;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_c01075;src:url('chunks/assets/font_ead1fcfe4752466c326a1bf2.woff2')format("woff");}.ff2_c01075{font-family:ff2_c01075;line-height:1.104004;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_c01075;src:url('chunks/assets/font_5ac8b1309168d6727ccd183e.woff2')format("woff");}.ff3_c01075{font-family:ff3_c01075;line-height:0.893066;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_c01075{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_c01075{vertical-align:0.000000px;}
.ls1_c01075{letter-spacing:0.000000px;}
.ls0_c01075{letter-spacing:0.472320px;}
.sc__c01075{text-shadow:none;}
.sc0_c01075{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__c01075{-webkit-text-stroke:0px transparent;}
.sc0_c01075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01075{word-spacing:-15.232320px;}
.ws1_c01075{word-spacing:0.000000px;}
.fc1_c01075{color:transparent;}
.fc0_c01075{color:rgb(0,0,0);}
.fs1_c01075{font-size:59.040000px;}
.fs0_c01075{font-size:72.000000px;}
.y10_c01075{bottom:-11.160000px;}
.y0_c01075{bottom:0.000000px;}
.y2_c01075{bottom:3.195000px;}
.y4_c01075{bottom:3.960000px;}
.y1_c01075{bottom:53.999985px;}
.y3_c01075{bottom:56.114985px;}
.yf_c01075{bottom:60.434985px;}
.ye_c01075{bottom:460.035015px;}
.yd_c01075{bottom:480.915015px;}
.yc_c01075{bottom:501.435015px;}
.yb_c01075{bottom:517.995015px;}
.ya_c01075{bottom:982.395015px;}
.y9_c01075{bottom:1003.275015px;}
.y8_c01075{bottom:1023.795015px;}
.y7_c01075{bottom:1044.675015px;}
.y6_c01075{bottom:1065.195015px;}
.y5_c01075{bottom:1086.075015px;}
.h6_c01075{height:5.399997px;}
.h4_c01075{height:17.640000px;}
.h3_c01075{height:63.175781px;}
.h5_c01075{height:63.949219px;}
.h2_c01075{height:1201.275000px;}
.h0_c01075{height:1262.835000px;}
.h1_c01075{height:1263.000000px;}
.w3_c01075{width:22.680000px;}
.w4_c01075{width:66.240000px;}
.w2_c01075{width:864.044850px;}
.w0_c01075{width:892.935000px;}
.w1_c01075{width:893.250000px;}
.x0_c01075{left:0.000000px;}
.x7_c01075{left:3.240150px;}
.x1_c01075{left:14.445000px;}
.x2_c01075{left:113.040150px;}
.x6_c01075{left:265.219500px;}
.x4_c01075{left:431.715150px;}
.x3_c01075{left:434.925000px;}
.x5_c01075{left:760.612650px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.ls1_c01075{letter-spacing:0.000000pt;}
.ls0_c01075{letter-spacing:0.419840pt;}
.ws0_c01075{word-spacing:-13.539840pt;}
.ws1_c01075{word-spacing:0.000000pt;}
.fs1_c01075{font-size:52.480000pt;}
.fs0_c01075{font-size:64.000000pt;}
.y10_c01075{bottom:-9.920000pt;}
.y0_c01075{bottom:0.000000pt;}
.y2_c01075{bottom:2.840000pt;}
.y4_c01075{bottom:3.520000pt;}
.y1_c01075{bottom:47.999987pt;}
.y3_c01075{bottom:49.879987pt;}
.yf_c01075{bottom:53.719987pt;}
.ye_c01075{bottom:408.920013pt;}
.yd_c01075{bottom:427.480013pt;}
.yc_c01075{bottom:445.720013pt;}
.yb_c01075{bottom:460.440013pt;}
.ya_c01075{bottom:873.240013pt;}
.y9_c01075{bottom:891.800013pt;}
.y8_c01075{bottom:910.040013pt;}
.y7_c01075{bottom:928.600013pt;}
.y6_c01075{bottom:946.840013pt;}
.y5_c01075{bottom:965.400013pt;}
.h6_c01075{height:4.799997pt;}
.h4_c01075{height:15.680000pt;}
.h3_c01075{height:56.156250pt;}
.h5_c01075{height:56.843750pt;}
.h2_c01075{height:1067.800000pt;}
.h0_c01075{height:1122.520000pt;}
.h1_c01075{height:1122.666667pt;}
.w3_c01075{width:20.160000pt;}
.w4_c01075{width:58.880000pt;}
.w2_c01075{width:768.039867pt;}
.w0_c01075{width:793.720000pt;}
.w1_c01075{width:794.000000pt;}
.x0_c01075{left:0.000000pt;}
.x7_c01075{left:2.880133pt;}
.x1_c01075{left:12.840000pt;}
.x2_c01075{left:100.480133pt;}
.x6_c01075{left:235.750667pt;}
.x4_c01075{left:383.746800pt;}
.x3_c01075{left:386.600000pt;}
.x5_c01075{left:676.100133pt;}
}





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

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





.ff0_c01076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01076;src:url('chunks/assets/font_e90dc4d876cb963bf5f2ea7d.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.093262;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_c01076;src:url('chunks/assets/font_a2be7416da64f275ac3e340a.woff2')format("woff");}.ff2_c01076{font-family:ff2_c01076;line-height:1.104004;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_c01076;src:url('chunks/assets/font_67e01ab1d9472504a594ac8a.woff2')format("woff");}.ff3_c01076{font-family:ff3_c01076;line-height:0.893066;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_c01076{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_c01076{vertical-align:0.000000px;}
.ls1_c01076{letter-spacing:0.000000px;}
.ls0_c01076{letter-spacing:0.472320px;}
.sc__c01076{text-shadow:none;}
.sc0_c01076{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__c01076{-webkit-text-stroke:0px transparent;}
.sc0_c01076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01076{word-spacing:-15.232320px;}
.ws1_c01076{word-spacing:0.000000px;}
.fc1_c01076{color:transparent;}
.fc0_c01076{color:rgb(0,0,0);}
.fs1_c01076{font-size:59.040000px;}
.fs0_c01076{font-size:72.000000px;}
.y1b_c01076{bottom:-11.160000px;}
.y0_c01076{bottom:0.000000px;}
.y2_c01076{bottom:3.195000px;}
.y4_c01076{bottom:3.960000px;}
.y1_c01076{bottom:53.999985px;}
.y3_c01076{bottom:56.114985px;}
.y1a_c01076{bottom:60.434985px;}
.y19_c01076{bottom:256.275015px;}
.y18_c01076{bottom:277.155015px;}
.y17_c01076{bottom:297.675015px;}
.y16_c01076{bottom:318.555015px;}
.y15_c01076{bottom:339.075015px;}
.y14_c01076{bottom:359.955015px;}
.y13_c01076{bottom:380.475015px;}
.y12_c01076{bottom:401.355015px;}
.y11_c01076{bottom:421.875015px;}
.y10_c01076{bottom:442.755015px;}
.yf_c01076{bottom:463.275015px;}
.ye_c01076{bottom:484.155015px;}
.yd_c01076{bottom:504.675015px;}
.yc_c01076{bottom:525.555015px;}
.yb_c01076{bottom:546.075015px;}
.ya_c01076{bottom:566.955015px;}
.y9_c01076{bottom:587.475015px;}
.y8_c01076{bottom:608.355015px;}
.y7_c01076{bottom:628.875015px;}
.y6_c01076{bottom:649.755015px;}
.y5_c01076{bottom:666.315015px;}
.h6_c01076{height:5.399997px;}
.h4_c01076{height:17.640000px;}
.h3_c01076{height:63.175781px;}
.h5_c01076{height:63.949219px;}
.h2_c01076{height:1201.275000px;}
.h0_c01076{height:1262.835000px;}
.h1_c01076{height:1263.000000px;}
.w3_c01076{width:22.680000px;}
.w4_c01076{width:39.240000px;}
.w2_c01076{width:864.044850px;}
.w0_c01076{width:892.935000px;}
.w1_c01076{width:893.250000px;}
.x0_c01076{left:0.000000px;}
.x7_c01076{left:3.240150px;}
.x1_c01076{left:14.445000px;}
.x2_c01076{left:113.040150px;}
.x6_c01076{left:282.977700px;}
.x5_c01076{left:431.715150px;}
.x3_c01076{left:434.925000px;}
.x4_c01076{left:749.832600px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.ls1_c01076{letter-spacing:0.000000pt;}
.ls0_c01076{letter-spacing:0.419840pt;}
.ws0_c01076{word-spacing:-13.539840pt;}
.ws1_c01076{word-spacing:0.000000pt;}
.fs1_c01076{font-size:52.480000pt;}
.fs0_c01076{font-size:64.000000pt;}
.y1b_c01076{bottom:-9.920000pt;}
.y0_c01076{bottom:0.000000pt;}
.y2_c01076{bottom:2.840000pt;}
.y4_c01076{bottom:3.520000pt;}
.y1_c01076{bottom:47.999987pt;}
.y3_c01076{bottom:49.879987pt;}
.y1a_c01076{bottom:53.719987pt;}
.y19_c01076{bottom:227.800013pt;}
.y18_c01076{bottom:246.360013pt;}
.y17_c01076{bottom:264.600013pt;}
.y16_c01076{bottom:283.160013pt;}
.y15_c01076{bottom:301.400013pt;}
.y14_c01076{bottom:319.960013pt;}
.y13_c01076{bottom:338.200013pt;}
.y12_c01076{bottom:356.760013pt;}
.y11_c01076{bottom:375.000013pt;}
.y10_c01076{bottom:393.560013pt;}
.yf_c01076{bottom:411.800013pt;}
.ye_c01076{bottom:430.360013pt;}
.yd_c01076{bottom:448.600013pt;}
.yc_c01076{bottom:467.160013pt;}
.yb_c01076{bottom:485.400013pt;}
.ya_c01076{bottom:503.960013pt;}
.y9_c01076{bottom:522.200013pt;}
.y8_c01076{bottom:540.760013pt;}
.y7_c01076{bottom:559.000013pt;}
.y6_c01076{bottom:577.560013pt;}
.y5_c01076{bottom:592.280013pt;}
.h6_c01076{height:4.799997pt;}
.h4_c01076{height:15.680000pt;}
.h3_c01076{height:56.156250pt;}
.h5_c01076{height:56.843750pt;}
.h2_c01076{height:1067.800000pt;}
.h0_c01076{height:1122.520000pt;}
.h1_c01076{height:1122.666667pt;}
.w3_c01076{width:20.160000pt;}
.w4_c01076{width:34.880000pt;}
.w2_c01076{width:768.039867pt;}
.w0_c01076{width:793.720000pt;}
.w1_c01076{width:794.000000pt;}
.x0_c01076{left:0.000000pt;}
.x7_c01076{left:2.880133pt;}
.x1_c01076{left:12.840000pt;}
.x2_c01076{left:100.480133pt;}
.x6_c01076{left:251.535733pt;}
.x5_c01076{left:383.746800pt;}
.x3_c01076{left:386.600000pt;}
.x4_c01076{left:666.517867pt;}
}





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

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





.ff0_c01077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01077;src:url('chunks/assets/font_0a17ceb3851f01e100540e5f.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:1.093262;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_c01077;src:url('chunks/assets/font_05a26ec72cd223db165b6d10.woff2')format("woff");}.ff2_c01077{font-family:ff2_c01077;line-height:1.104004;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_c01077;src:url('chunks/assets/font_31c435022521036bf0e649cd.woff2')format("woff");}.ff3_c01077{font-family:ff3_c01077;line-height:0.893066;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_c01077{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_c01077{vertical-align:0.000000px;}
.ls1_c01077{letter-spacing:0.000000px;}
.ls0_c01077{letter-spacing:0.472320px;}
.sc__c01077{text-shadow:none;}
.sc0_c01077{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__c01077{-webkit-text-stroke:0px transparent;}
.sc0_c01077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01077{word-spacing:-15.232320px;}
.ws1_c01077{word-spacing:0.000000px;}
.fc1_c01077{color:transparent;}
.fc0_c01077{color:rgb(0,0,0);}
.fs1_c01077{font-size:59.040000px;}
.fs0_c01077{font-size:72.000000px;}
.y1a_c01077{bottom:-11.520000px;}
.y0_c01077{bottom:0.000000px;}
.y2_c01077{bottom:3.195000px;}
.y4_c01077{bottom:3.960000px;}
.y1_c01077{bottom:53.999985px;}
.y3_c01077{bottom:56.114985px;}
.y19_c01077{bottom:60.794985px;}
.y18_c01077{bottom:73.035000px;}
.y17_c01077{bottom:93.555015px;}
.y16_c01077{bottom:114.435015px;}
.y15_c01077{bottom:134.955015px;}
.y14_c01077{bottom:155.835015px;}
.y13_c01077{bottom:176.355015px;}
.y12_c01077{bottom:197.235015px;}
.y11_c01077{bottom:217.755015px;}
.y10_c01077{bottom:238.635015px;}
.yf_c01077{bottom:259.155015px;}
.ye_c01077{bottom:280.035015px;}
.yd_c01077{bottom:300.555015px;}
.yc_c01077{bottom:321.435015px;}
.yb_c01077{bottom:341.955015px;}
.ya_c01077{bottom:362.835015px;}
.y9_c01077{bottom:383.355015px;}
.y8_c01077{bottom:404.235015px;}
.y7_c01077{bottom:424.755015px;}
.y6_c01077{bottom:445.635015px;}
.y5_c01077{bottom:462.195015px;}
.h6_c01077{height:5.040001px;}
.h4_c01077{height:17.640000px;}
.h3_c01077{height:63.175781px;}
.h5_c01077{height:63.949219px;}
.h2_c01077{height:1201.275000px;}
.h0_c01077{height:1262.835000px;}
.h1_c01077{height:1263.000000px;}
.w3_c01077{width:22.680000px;}
.w4_c01077{width:66.240000px;}
.w2_c01077{width:864.044850px;}
.w0_c01077{width:892.935000px;}
.w1_c01077{width:893.250000px;}
.x0_c01077{left:0.000000px;}
.x8_c01077{left:3.240150px;}
.x1_c01077{left:14.445000px;}
.x2_c01077{left:113.040150px;}
.x6_c01077{left:214.467000px;}
.x7_c01077{left:405.045000px;}
.x5_c01077{left:431.715150px;}
.x3_c01077{left:434.925000px;}
.x4_c01077{left:750.388200px;}
@media print{
.v0_c01077{vertical-align:0.000000pt;}
.ls1_c01077{letter-spacing:0.000000pt;}
.ls0_c01077{letter-spacing:0.419840pt;}
.ws0_c01077{word-spacing:-13.539840pt;}
.ws1_c01077{word-spacing:0.000000pt;}
.fs1_c01077{font-size:52.480000pt;}
.fs0_c01077{font-size:64.000000pt;}
.y1a_c01077{bottom:-10.240000pt;}
.y0_c01077{bottom:0.000000pt;}
.y2_c01077{bottom:2.840000pt;}
.y4_c01077{bottom:3.520000pt;}
.y1_c01077{bottom:47.999987pt;}
.y3_c01077{bottom:49.879987pt;}
.y19_c01077{bottom:54.039987pt;}
.y18_c01077{bottom:64.920000pt;}
.y17_c01077{bottom:83.160013pt;}
.y16_c01077{bottom:101.720013pt;}
.y15_c01077{bottom:119.960013pt;}
.y14_c01077{bottom:138.520013pt;}
.y13_c01077{bottom:156.760013pt;}
.y12_c01077{bottom:175.320013pt;}
.y11_c01077{bottom:193.560013pt;}
.y10_c01077{bottom:212.120013pt;}
.yf_c01077{bottom:230.360013pt;}
.ye_c01077{bottom:248.920013pt;}
.yd_c01077{bottom:267.160013pt;}
.yc_c01077{bottom:285.720013pt;}
.yb_c01077{bottom:303.960013pt;}
.ya_c01077{bottom:322.520013pt;}
.y9_c01077{bottom:340.760013pt;}
.y8_c01077{bottom:359.320013pt;}
.y7_c01077{bottom:377.560013pt;}
.y6_c01077{bottom:396.120013pt;}
.y5_c01077{bottom:410.840013pt;}
.h6_c01077{height:4.480001pt;}
.h4_c01077{height:15.680000pt;}
.h3_c01077{height:56.156250pt;}
.h5_c01077{height:56.843750pt;}
.h2_c01077{height:1067.800000pt;}
.h0_c01077{height:1122.520000pt;}
.h1_c01077{height:1122.666667pt;}
.w3_c01077{width:20.160000pt;}
.w4_c01077{width:58.880000pt;}
.w2_c01077{width:768.039867pt;}
.w0_c01077{width:793.720000pt;}
.w1_c01077{width:794.000000pt;}
.x0_c01077{left:0.000000pt;}
.x8_c01077{left:2.880133pt;}
.x1_c01077{left:12.840000pt;}
.x2_c01077{left:100.480133pt;}
.x6_c01077{left:190.637333pt;}
.x7_c01077{left:360.040000pt;}
.x5_c01077{left:383.746800pt;}
.x3_c01077{left:386.600000pt;}
.x4_c01077{left:667.011733pt;}
}





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

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





.ff0_c01078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01078;src:url('chunks/assets/font_498cb2106e31f40538158672.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.093262;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_c01078;src:url('chunks/assets/font_d05b4f0924eb58701464614e.woff2')format("woff");}.ff2_c01078{font-family:ff2_c01078;line-height:1.104004;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_c01078{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_c01078{vertical-align:0.000000px;}
.ls1_c01078{letter-spacing:0.000000px;}
.ls0_c01078{letter-spacing:0.472320px;}
.sc__c01078{text-shadow:none;}
.sc0_c01078{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__c01078{-webkit-text-stroke:0px transparent;}
.sc0_c01078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01078{word-spacing:-15.232320px;}
.ws1_c01078{word-spacing:0.000000px;}
.fc1_c01078{color:transparent;}
.fc0_c01078{color:rgb(0,0,0);}
.fs1_c01078{font-size:59.040000px;}
.fs0_c01078{font-size:72.000000px;}
.y38_c01078{bottom:-11.160000px;}
.y0_c01078{bottom:0.000000px;}
.y2_c01078{bottom:3.195000px;}
.y4_c01078{bottom:3.960000px;}
.y1_c01078{bottom:53.999985px;}
.y3_c01078{bottom:56.114985px;}
.y37_c01078{bottom:60.434985px;}
.y36_c01078{bottom:71.955000px;}
.y35_c01078{bottom:92.475000px;}
.y34_c01078{bottom:113.355015px;}
.y33_c01078{bottom:133.875015px;}
.y32_c01078{bottom:154.755015px;}
.y31_c01078{bottom:175.275015px;}
.y30_c01078{bottom:196.155015px;}
.y2f_c01078{bottom:216.675015px;}
.y2e_c01078{bottom:237.195015px;}
.y2d_c01078{bottom:258.075015px;}
.y2c_c01078{bottom:278.595015px;}
.y2b_c01078{bottom:299.475015px;}
.y2a_c01078{bottom:319.995015px;}
.y29_c01078{bottom:340.875015px;}
.y28_c01078{bottom:361.395015px;}
.y27_c01078{bottom:382.275015px;}
.y26_c01078{bottom:402.795015px;}
.y25_c01078{bottom:423.675015px;}
.y24_c01078{bottom:444.195015px;}
.y23_c01078{bottom:465.075015px;}
.y22_c01078{bottom:485.595015px;}
.y21_c01078{bottom:506.475015px;}
.y20_c01078{bottom:526.995015px;}
.y1f_c01078{bottom:547.875015px;}
.y1e_c01078{bottom:568.395015px;}
.y1d_c01078{bottom:589.275015px;}
.y1c_c01078{bottom:609.795015px;}
.y1b_c01078{bottom:630.675015px;}
.y1a_c01078{bottom:651.195015px;}
.y19_c01078{bottom:672.075015px;}
.y18_c01078{bottom:692.595015px;}
.y17_c01078{bottom:713.475015px;}
.y16_c01078{bottom:733.995015px;}
.y15_c01078{bottom:754.875015px;}
.y14_c01078{bottom:775.395015px;}
.y13_c01078{bottom:796.275015px;}
.y12_c01078{bottom:816.795015px;}
.y11_c01078{bottom:837.675015px;}
.y10_c01078{bottom:858.195015px;}
.yf_c01078{bottom:879.075015px;}
.ye_c01078{bottom:899.595015px;}
.yd_c01078{bottom:920.475015px;}
.yc_c01078{bottom:940.995015px;}
.yb_c01078{bottom:961.875015px;}
.ya_c01078{bottom:982.395015px;}
.y9_c01078{bottom:1003.275015px;}
.y8_c01078{bottom:1023.795015px;}
.y7_c01078{bottom:1044.675015px;}
.y6_c01078{bottom:1065.195015px;}
.y5_c01078{bottom:1086.075015px;}
.h6_c01078{height:5.399997px;}
.h4_c01078{height:17.640000px;}
.h3_c01078{height:63.175781px;}
.h5_c01078{height:63.949219px;}
.h2_c01078{height:1201.275000px;}
.h0_c01078{height:1262.835000px;}
.h1_c01078{height:1263.000000px;}
.w3_c01078{width:22.680000px;}
.w4_c01078{width:93.240000px;}
.w2_c01078{width:864.044850px;}
.w0_c01078{width:892.935000px;}
.w1_c01078{width:893.250000px;}
.x0_c01078{left:0.000000px;}
.x7_c01078{left:3.240150px;}
.x1_c01078{left:14.445000px;}
.x2_c01078{left:113.040150px;}
.x5_c01078{left:329.977350px;}
.x6_c01078{left:405.045000px;}
.x4_c01078{left:431.715150px;}
.x3_c01078{left:434.925000px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.ls1_c01078{letter-spacing:0.000000pt;}
.ls0_c01078{letter-spacing:0.419840pt;}
.ws0_c01078{word-spacing:-13.539840pt;}
.ws1_c01078{word-spacing:0.000000pt;}
.fs1_c01078{font-size:52.480000pt;}
.fs0_c01078{font-size:64.000000pt;}
.y38_c01078{bottom:-9.920000pt;}
.y0_c01078{bottom:0.000000pt;}
.y2_c01078{bottom:2.840000pt;}
.y4_c01078{bottom:3.520000pt;}
.y1_c01078{bottom:47.999987pt;}
.y3_c01078{bottom:49.879987pt;}
.y37_c01078{bottom:53.719987pt;}
.y36_c01078{bottom:63.960000pt;}
.y35_c01078{bottom:82.200000pt;}
.y34_c01078{bottom:100.760013pt;}
.y33_c01078{bottom:119.000013pt;}
.y32_c01078{bottom:137.560013pt;}
.y31_c01078{bottom:155.800013pt;}
.y30_c01078{bottom:174.360013pt;}
.y2f_c01078{bottom:192.600013pt;}
.y2e_c01078{bottom:210.840013pt;}
.y2d_c01078{bottom:229.400013pt;}
.y2c_c01078{bottom:247.640013pt;}
.y2b_c01078{bottom:266.200013pt;}
.y2a_c01078{bottom:284.440013pt;}
.y29_c01078{bottom:303.000013pt;}
.y28_c01078{bottom:321.240013pt;}
.y27_c01078{bottom:339.800013pt;}
.y26_c01078{bottom:358.040013pt;}
.y25_c01078{bottom:376.600013pt;}
.y24_c01078{bottom:394.840013pt;}
.y23_c01078{bottom:413.400013pt;}
.y22_c01078{bottom:431.640013pt;}
.y21_c01078{bottom:450.200013pt;}
.y20_c01078{bottom:468.440013pt;}
.y1f_c01078{bottom:487.000013pt;}
.y1e_c01078{bottom:505.240013pt;}
.y1d_c01078{bottom:523.800013pt;}
.y1c_c01078{bottom:542.040013pt;}
.y1b_c01078{bottom:560.600013pt;}
.y1a_c01078{bottom:578.840013pt;}
.y19_c01078{bottom:597.400013pt;}
.y18_c01078{bottom:615.640013pt;}
.y17_c01078{bottom:634.200013pt;}
.y16_c01078{bottom:652.440013pt;}
.y15_c01078{bottom:671.000013pt;}
.y14_c01078{bottom:689.240013pt;}
.y13_c01078{bottom:707.800013pt;}
.y12_c01078{bottom:726.040013pt;}
.y11_c01078{bottom:744.600013pt;}
.y10_c01078{bottom:762.840013pt;}
.yf_c01078{bottom:781.400013pt;}
.ye_c01078{bottom:799.640013pt;}
.yd_c01078{bottom:818.200013pt;}
.yc_c01078{bottom:836.440013pt;}
.yb_c01078{bottom:855.000013pt;}
.ya_c01078{bottom:873.240013pt;}
.y9_c01078{bottom:891.800013pt;}
.y8_c01078{bottom:910.040013pt;}
.y7_c01078{bottom:928.600013pt;}
.y6_c01078{bottom:946.840013pt;}
.y5_c01078{bottom:965.400013pt;}
.h6_c01078{height:4.799997pt;}
.h4_c01078{height:15.680000pt;}
.h3_c01078{height:56.156250pt;}
.h5_c01078{height:56.843750pt;}
.h2_c01078{height:1067.800000pt;}
.h0_c01078{height:1122.520000pt;}
.h1_c01078{height:1122.666667pt;}
.w3_c01078{width:20.160000pt;}
.w4_c01078{width:82.880000pt;}
.w2_c01078{width:768.039867pt;}
.w0_c01078{width:793.720000pt;}
.w1_c01078{width:794.000000pt;}
.x0_c01078{left:0.000000pt;}
.x7_c01078{left:2.880133pt;}
.x1_c01078{left:12.840000pt;}
.x2_c01078{left:100.480133pt;}
.x5_c01078{left:293.313200pt;}
.x6_c01078{left:360.040000pt;}
.x4_c01078{left:383.746800pt;}
.x3_c01078{left:386.600000pt;}
}





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

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





.ff0_c01079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01079;src:url('chunks/assets/font_0a17ceb3851f01e100540e5f.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.093262;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_c01079;src:url('chunks/assets/font_0678698ac4e72f414c0d81c7.woff2')format("woff");}.ff2_c01079{font-family:ff2_c01079;line-height:1.104004;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_c01079;src:url('chunks/assets/font_bb997444948ec62811aa51c5.woff2')format("woff");}.ff3_c01079{font-family:ff3_c01079;line-height:0.893066;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_c01079{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_c01079{vertical-align:0.000000px;}
.ls1_c01079{letter-spacing:0.000000px;}
.ls0_c01079{letter-spacing:0.472320px;}
.sc__c01079{text-shadow:none;}
.sc0_c01079{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__c01079{-webkit-text-stroke:0px transparent;}
.sc0_c01079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01079{word-spacing:-15.232320px;}
.ws1_c01079{word-spacing:0.000000px;}
.fc1_c01079{color:transparent;}
.fc0_c01079{color:rgb(0,0,0);}
.fs1_c01079{font-size:59.040000px;}
.fs0_c01079{font-size:72.000000px;}
.y38_c01079{bottom:-11.160000px;}
.y0_c01079{bottom:0.000000px;}
.y2_c01079{bottom:3.195000px;}
.y4_c01079{bottom:3.960000px;}
.y1_c01079{bottom:53.999985px;}
.y3_c01079{bottom:56.114985px;}
.y37_c01079{bottom:60.434985px;}
.y36_c01079{bottom:71.955000px;}
.y35_c01079{bottom:92.475000px;}
.y34_c01079{bottom:113.355015px;}
.y33_c01079{bottom:133.875015px;}
.y32_c01079{bottom:154.755015px;}
.y31_c01079{bottom:175.275015px;}
.y30_c01079{bottom:196.155015px;}
.y2f_c01079{bottom:216.675015px;}
.y2e_c01079{bottom:237.195015px;}
.y2d_c01079{bottom:258.075015px;}
.y2c_c01079{bottom:278.595015px;}
.y2b_c01079{bottom:299.475015px;}
.y2a_c01079{bottom:319.995015px;}
.y29_c01079{bottom:340.875015px;}
.y28_c01079{bottom:361.395015px;}
.y27_c01079{bottom:382.275015px;}
.y26_c01079{bottom:402.795015px;}
.y25_c01079{bottom:423.675015px;}
.y24_c01079{bottom:444.195015px;}
.y23_c01079{bottom:465.075015px;}
.y22_c01079{bottom:485.595015px;}
.y21_c01079{bottom:506.475015px;}
.y20_c01079{bottom:526.995015px;}
.y1f_c01079{bottom:547.875015px;}
.y1e_c01079{bottom:568.395015px;}
.y1d_c01079{bottom:589.275015px;}
.y1c_c01079{bottom:609.795015px;}
.y1b_c01079{bottom:630.675015px;}
.y1a_c01079{bottom:651.195015px;}
.y19_c01079{bottom:672.075015px;}
.y18_c01079{bottom:692.595015px;}
.y17_c01079{bottom:713.475015px;}
.y16_c01079{bottom:733.995015px;}
.y15_c01079{bottom:754.875015px;}
.y14_c01079{bottom:775.395015px;}
.y13_c01079{bottom:796.275015px;}
.y12_c01079{bottom:816.795015px;}
.y11_c01079{bottom:837.675015px;}
.y10_c01079{bottom:858.195015px;}
.yf_c01079{bottom:879.075015px;}
.ye_c01079{bottom:899.595015px;}
.yd_c01079{bottom:920.475015px;}
.yc_c01079{bottom:940.995015px;}
.yb_c01079{bottom:961.875015px;}
.ya_c01079{bottom:982.395015px;}
.y9_c01079{bottom:1003.275015px;}
.y8_c01079{bottom:1023.795015px;}
.y7_c01079{bottom:1044.675015px;}
.y6_c01079{bottom:1065.195015px;}
.y5_c01079{bottom:1086.075015px;}
.h6_c01079{height:5.399997px;}
.h4_c01079{height:17.640000px;}
.h3_c01079{height:63.175781px;}
.h5_c01079{height:63.949219px;}
.h2_c01079{height:1201.275000px;}
.h0_c01079{height:1262.835000px;}
.h1_c01079{height:1263.000000px;}
.w3_c01079{width:22.680000px;}
.w4_c01079{width:39.240000px;}
.w2_c01079{width:864.044850px;}
.w0_c01079{width:892.935000px;}
.w1_c01079{width:893.250000px;}
.x0_c01079{left:0.000000px;}
.x6_c01079{left:3.240150px;}
.x1_c01079{left:14.445000px;}
.x2_c01079{left:113.040150px;}
.x5_c01079{left:235.956300px;}
.x4_c01079{left:431.715150px;}
.x3_c01079{left:434.925000px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.ls1_c01079{letter-spacing:0.000000pt;}
.ls0_c01079{letter-spacing:0.419840pt;}
.ws0_c01079{word-spacing:-13.539840pt;}
.ws1_c01079{word-spacing:0.000000pt;}
.fs1_c01079{font-size:52.480000pt;}
.fs0_c01079{font-size:64.000000pt;}
.y38_c01079{bottom:-9.920000pt;}
.y0_c01079{bottom:0.000000pt;}
.y2_c01079{bottom:2.840000pt;}
.y4_c01079{bottom:3.520000pt;}
.y1_c01079{bottom:47.999987pt;}
.y3_c01079{bottom:49.879987pt;}
.y37_c01079{bottom:53.719987pt;}
.y36_c01079{bottom:63.960000pt;}
.y35_c01079{bottom:82.200000pt;}
.y34_c01079{bottom:100.760013pt;}
.y33_c01079{bottom:119.000013pt;}
.y32_c01079{bottom:137.560013pt;}
.y31_c01079{bottom:155.800013pt;}
.y30_c01079{bottom:174.360013pt;}
.y2f_c01079{bottom:192.600013pt;}
.y2e_c01079{bottom:210.840013pt;}
.y2d_c01079{bottom:229.400013pt;}
.y2c_c01079{bottom:247.640013pt;}
.y2b_c01079{bottom:266.200013pt;}
.y2a_c01079{bottom:284.440013pt;}
.y29_c01079{bottom:303.000013pt;}
.y28_c01079{bottom:321.240013pt;}
.y27_c01079{bottom:339.800013pt;}
.y26_c01079{bottom:358.040013pt;}
.y25_c01079{bottom:376.600013pt;}
.y24_c01079{bottom:394.840013pt;}
.y23_c01079{bottom:413.400013pt;}
.y22_c01079{bottom:431.640013pt;}
.y21_c01079{bottom:450.200013pt;}
.y20_c01079{bottom:468.440013pt;}
.y1f_c01079{bottom:487.000013pt;}
.y1e_c01079{bottom:505.240013pt;}
.y1d_c01079{bottom:523.800013pt;}
.y1c_c01079{bottom:542.040013pt;}
.y1b_c01079{bottom:560.600013pt;}
.y1a_c01079{bottom:578.840013pt;}
.y19_c01079{bottom:597.400013pt;}
.y18_c01079{bottom:615.640013pt;}
.y17_c01079{bottom:634.200013pt;}
.y16_c01079{bottom:652.440013pt;}
.y15_c01079{bottom:671.000013pt;}
.y14_c01079{bottom:689.240013pt;}
.y13_c01079{bottom:707.800013pt;}
.y12_c01079{bottom:726.040013pt;}
.y11_c01079{bottom:744.600013pt;}
.y10_c01079{bottom:762.840013pt;}
.yf_c01079{bottom:781.400013pt;}
.ye_c01079{bottom:799.640013pt;}
.yd_c01079{bottom:818.200013pt;}
.yc_c01079{bottom:836.440013pt;}
.yb_c01079{bottom:855.000013pt;}
.ya_c01079{bottom:873.240013pt;}
.y9_c01079{bottom:891.800013pt;}
.y8_c01079{bottom:910.040013pt;}
.y7_c01079{bottom:928.600013pt;}
.y6_c01079{bottom:946.840013pt;}
.y5_c01079{bottom:965.400013pt;}
.h6_c01079{height:4.799997pt;}
.h4_c01079{height:15.680000pt;}
.h3_c01079{height:56.156250pt;}
.h5_c01079{height:56.843750pt;}
.h2_c01079{height:1067.800000pt;}
.h0_c01079{height:1122.520000pt;}
.h1_c01079{height:1122.666667pt;}
.w3_c01079{width:20.160000pt;}
.w4_c01079{width:34.880000pt;}
.w2_c01079{width:768.039867pt;}
.w0_c01079{width:793.720000pt;}
.w1_c01079{width:794.000000pt;}
.x0_c01079{left:0.000000pt;}
.x6_c01079{left:2.880133pt;}
.x1_c01079{left:12.840000pt;}
.x2_c01079{left:100.480133pt;}
.x5_c01079{left:209.738933pt;}
.x4_c01079{left:383.746800pt;}
.x3_c01079{left:386.600000pt;}
}





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

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





.ff0_c01080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01080;src:url('chunks/assets/font_2fed076d3061ccde9b51aa68.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.093262;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_c01080;src:url('chunks/assets/font_5ded170a4e8deb235b34c02f.woff2')format("woff");}.ff2_c01080{font-family:ff2_c01080;line-height:1.104004;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_c01080;src:url('chunks/assets/font_f25c0b5e28cbe4637862f0ce.woff2')format("woff");}.ff3_c01080{font-family:ff3_c01080;line-height:0.893066;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_c01080{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_c01080{vertical-align:0.000000px;}
.ls1_c01080{letter-spacing:0.000000px;}
.ls0_c01080{letter-spacing:0.472320px;}
.sc__c01080{text-shadow:none;}
.sc0_c01080{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__c01080{-webkit-text-stroke:0px transparent;}
.sc0_c01080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01080{word-spacing:-15.232320px;}
.ws1_c01080{word-spacing:0.000000px;}
.fc1_c01080{color:transparent;}
.fc0_c01080{color:rgb(0,0,0);}
.fs1_c01080{font-size:59.040000px;}
.fs0_c01080{font-size:72.000000px;}
.yc_c01080{bottom:-11.160000px;}
.y0_c01080{bottom:0.000000px;}
.y2_c01080{bottom:3.195000px;}
.y4_c01080{bottom:3.960000px;}
.y1_c01080{bottom:53.999985px;}
.y3_c01080{bottom:56.114985px;}
.yb_c01080{bottom:60.434985px;}
.ya_c01080{bottom:60.795000px;}
.y9_c01080{bottom:81.675000px;}
.y8_c01080{bottom:102.195015px;}
.y7_c01080{bottom:123.075015px;}
.y6_c01080{bottom:143.595015px;}
.y5_c01080{bottom:160.515015px;}
.h6_c01080{height:5.399997px;}
.h4_c01080{height:17.640000px;}
.h3_c01080{height:63.175781px;}
.h5_c01080{height:63.949219px;}
.h2_c01080{height:1201.275000px;}
.h0_c01080{height:1262.835000px;}
.h1_c01080{height:1263.000000px;}
.w3_c01080{width:22.680000px;}
.w4_c01080{width:39.240000px;}
.w2_c01080{width:864.044850px;}
.w0_c01080{width:892.935000px;}
.w1_c01080{width:893.250000px;}
.x0_c01080{left:0.000000px;}
.x7_c01080{left:3.240150px;}
.x1_c01080{left:14.445000px;}
.x2_c01080{left:113.040150px;}
.x6_c01080{left:226.213650px;}
.x5_c01080{left:431.715150px;}
.x3_c01080{left:434.925000px;}
.x4_c01080{left:750.058200px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.ls1_c01080{letter-spacing:0.000000pt;}
.ls0_c01080{letter-spacing:0.419840pt;}
.ws0_c01080{word-spacing:-13.539840pt;}
.ws1_c01080{word-spacing:0.000000pt;}
.fs1_c01080{font-size:52.480000pt;}
.fs0_c01080{font-size:64.000000pt;}
.yc_c01080{bottom:-9.920000pt;}
.y0_c01080{bottom:0.000000pt;}
.y2_c01080{bottom:2.840000pt;}
.y4_c01080{bottom:3.520000pt;}
.y1_c01080{bottom:47.999987pt;}
.y3_c01080{bottom:49.879987pt;}
.yb_c01080{bottom:53.719987pt;}
.ya_c01080{bottom:54.040000pt;}
.y9_c01080{bottom:72.600000pt;}
.y8_c01080{bottom:90.840013pt;}
.y7_c01080{bottom:109.400013pt;}
.y6_c01080{bottom:127.640013pt;}
.y5_c01080{bottom:142.680013pt;}
.h6_c01080{height:4.799997pt;}
.h4_c01080{height:15.680000pt;}
.h3_c01080{height:56.156250pt;}
.h5_c01080{height:56.843750pt;}
.h2_c01080{height:1067.800000pt;}
.h0_c01080{height:1122.520000pt;}
.h1_c01080{height:1122.666667pt;}
.w3_c01080{width:20.160000pt;}
.w4_c01080{width:34.880000pt;}
.w2_c01080{width:768.039867pt;}
.w0_c01080{width:793.720000pt;}
.w1_c01080{width:794.000000pt;}
.x0_c01080{left:0.000000pt;}
.x7_c01080{left:2.880133pt;}
.x1_c01080{left:12.840000pt;}
.x2_c01080{left:100.480133pt;}
.x6_c01080{left:201.078800pt;}
.x5_c01080{left:383.746800pt;}
.x3_c01080{left:386.600000pt;}
.x4_c01080{left:666.718400pt;}
}





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

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





.ff0_c01081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01081;src:url('chunks/assets/font_1194a32a963fceeb13ab788b.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.093262;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_c01081;src:url('chunks/assets/font_5f253321a7383c8c277c7c55.woff2')format("woff");}.ff2_c01081{font-family:ff2_c01081;line-height:1.104004;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_c01081;src:url('chunks/assets/font_bb2fd7fa3552b2b69d2d51e3.woff2')format("woff");}.ff3_c01081{font-family:ff3_c01081;line-height:0.893066;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_c01081{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_c01081{vertical-align:0.000000px;}
.ls1_c01081{letter-spacing:0.000000px;}
.ls0_c01081{letter-spacing:0.472320px;}
.sc__c01081{text-shadow:none;}
.sc0_c01081{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__c01081{-webkit-text-stroke:0px transparent;}
.sc0_c01081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01081{word-spacing:-15.232320px;}
.ws1_c01081{word-spacing:0.000000px;}
.fc1_c01081{color:transparent;}
.fc0_c01081{color:rgb(0,0,0);}
.fs1_c01081{font-size:59.040000px;}
.fs0_c01081{font-size:72.000000px;}
.y14_c01081{bottom:-11.160000px;}
.y0_c01081{bottom:0.000000px;}
.y2_c01081{bottom:3.195000px;}
.y4_c01081{bottom:3.960000px;}
.y1_c01081{bottom:53.999985px;}
.y3_c01081{bottom:56.114985px;}
.y13_c01081{bottom:60.074985px;}
.y12_c01081{bottom:70.875000px;}
.y11_c01081{bottom:91.755000px;}
.y10_c01081{bottom:112.275015px;}
.yf_c01081{bottom:133.155015px;}
.ye_c01081{bottom:153.675015px;}
.yd_c01081{bottom:174.555015px;}
.yc_c01081{bottom:195.075015px;}
.yb_c01081{bottom:215.955015px;}
.ya_c01081{bottom:236.475015px;}
.y9_c01081{bottom:257.355015px;}
.y8_c01081{bottom:277.875015px;}
.y7_c01081{bottom:298.755015px;}
.y6_c01081{bottom:319.275015px;}
.y5_c01081{bottom:335.835015px;}
.h6_c01081{height:5.399997px;}
.h4_c01081{height:17.640000px;}
.h3_c01081{height:63.175781px;}
.h5_c01081{height:63.949219px;}
.h2_c01081{height:1201.275000px;}
.h0_c01081{height:1262.835000px;}
.h1_c01081{height:1263.000000px;}
.w3_c01081{width:22.680000px;}
.w4_c01081{width:66.240000px;}
.w2_c01081{width:864.044850px;}
.w0_c01081{width:892.935000px;}
.w1_c01081{width:893.250000px;}
.x0_c01081{left:0.000000px;}
.x8_c01081{left:3.240150px;}
.x1_c01081{left:14.445000px;}
.x2_c01081{left:113.040150px;}
.x6_c01081{left:244.204800px;}
.x7_c01081{left:405.045000px;}
.x5_c01081{left:431.715150px;}
.x3_c01081{left:434.925000px;}
.x4_c01081{left:750.126600px;}
@media print{
.v0_c01081{vertical-align:0.000000pt;}
.ls1_c01081{letter-spacing:0.000000pt;}
.ls0_c01081{letter-spacing:0.419840pt;}
.ws0_c01081{word-spacing:-13.539840pt;}
.ws1_c01081{word-spacing:0.000000pt;}
.fs1_c01081{font-size:52.480000pt;}
.fs0_c01081{font-size:64.000000pt;}
.y14_c01081{bottom:-9.920000pt;}
.y0_c01081{bottom:0.000000pt;}
.y2_c01081{bottom:2.840000pt;}
.y4_c01081{bottom:3.520000pt;}
.y1_c01081{bottom:47.999987pt;}
.y3_c01081{bottom:49.879987pt;}
.y13_c01081{bottom:53.399987pt;}
.y12_c01081{bottom:63.000000pt;}
.y11_c01081{bottom:81.560000pt;}
.y10_c01081{bottom:99.800013pt;}
.yf_c01081{bottom:118.360013pt;}
.ye_c01081{bottom:136.600013pt;}
.yd_c01081{bottom:155.160013pt;}
.yc_c01081{bottom:173.400013pt;}
.yb_c01081{bottom:191.960013pt;}
.ya_c01081{bottom:210.200013pt;}
.y9_c01081{bottom:228.760013pt;}
.y8_c01081{bottom:247.000013pt;}
.y7_c01081{bottom:265.560013pt;}
.y6_c01081{bottom:283.800013pt;}
.y5_c01081{bottom:298.520013pt;}
.h6_c01081{height:4.799997pt;}
.h4_c01081{height:15.680000pt;}
.h3_c01081{height:56.156250pt;}
.h5_c01081{height:56.843750pt;}
.h2_c01081{height:1067.800000pt;}
.h0_c01081{height:1122.520000pt;}
.h1_c01081{height:1122.666667pt;}
.w3_c01081{width:20.160000pt;}
.w4_c01081{width:58.880000pt;}
.w2_c01081{width:768.039867pt;}
.w0_c01081{width:793.720000pt;}
.w1_c01081{width:794.000000pt;}
.x0_c01081{left:0.000000pt;}
.x8_c01081{left:2.880133pt;}
.x1_c01081{left:12.840000pt;}
.x2_c01081{left:100.480133pt;}
.x6_c01081{left:217.070933pt;}
.x7_c01081{left:360.040000pt;}
.x5_c01081{left:383.746800pt;}
.x3_c01081{left:386.600000pt;}
.x4_c01081{left:666.779200pt;}
}





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

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





.ff0_c01082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01082;src:url('chunks/assets/font_6d62f052f88f1b467088838a.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.093262;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_c01082;src:url('chunks/assets/font_63d485590bd8eb5086ce9253.woff2')format("woff");}.ff2_c01082{font-family:ff2_c01082;line-height:1.104004;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_c01082;src:url('chunks/assets/font_d16e92f5842ded7b9ed2f104.woff2')format("woff");}.ff3_c01082{font-family:ff3_c01082;line-height:0.893066;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_c01082{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_c01082{vertical-align:0.000000px;}
.ls1_c01082{letter-spacing:0.000000px;}
.ls0_c01082{letter-spacing:0.472320px;}
.sc__c01082{text-shadow:none;}
.sc0_c01082{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__c01082{-webkit-text-stroke:0px transparent;}
.sc0_c01082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01082{word-spacing:-18.000000px;}
.ws0_c01082{word-spacing:-15.232320px;}
.ws2_c01082{word-spacing:0.000000px;}
.fc1_c01082{color:transparent;}
.fc0_c01082{color:rgb(0,0,0);}
.fs1_c01082{font-size:59.040000px;}
.fs0_c01082{font-size:72.000000px;}
.y25_c01082{bottom:-11.160000px;}
.y0_c01082{bottom:0.000000px;}
.y2_c01082{bottom:3.195000px;}
.y4_c01082{bottom:3.960000px;}
.y1_c01082{bottom:53.999985px;}
.y3_c01082{bottom:56.114985px;}
.y24_c01082{bottom:60.434985px;}
.y23_c01082{bottom:65.475000px;}
.y22_c01082{bottom:86.355000px;}
.y21_c01082{bottom:106.875015px;}
.y20_c01082{bottom:127.755015px;}
.y1f_c01082{bottom:148.275015px;}
.y1e_c01082{bottom:169.155015px;}
.y1d_c01082{bottom:189.675015px;}
.y1c_c01082{bottom:210.555015px;}
.y1b_c01082{bottom:231.075015px;}
.y1a_c01082{bottom:251.595015px;}
.y19_c01082{bottom:272.475015px;}
.y18_c01082{bottom:292.995015px;}
.y17_c01082{bottom:313.875015px;}
.y16_c01082{bottom:334.395015px;}
.y15_c01082{bottom:355.275015px;}
.y14_c01082{bottom:375.795015px;}
.y13_c01082{bottom:396.675015px;}
.y12_c01082{bottom:417.195015px;}
.y11_c01082{bottom:438.075015px;}
.y10_c01082{bottom:458.595015px;}
.yf_c01082{bottom:479.475015px;}
.ye_c01082{bottom:499.995015px;}
.yd_c01082{bottom:520.875015px;}
.yc_c01082{bottom:541.395015px;}
.yb_c01082{bottom:562.275015px;}
.ya_c01082{bottom:582.795015px;}
.y9_c01082{bottom:599.715015px;}
.y8_c01082{bottom:1023.795015px;}
.y7_c01082{bottom:1044.675015px;}
.y6_c01082{bottom:1065.195015px;}
.y5_c01082{bottom:1086.075015px;}
.h6_c01082{height:5.399997px;}
.h4_c01082{height:17.640000px;}
.h3_c01082{height:63.175781px;}
.h5_c01082{height:63.949219px;}
.h2_c01082{height:1201.275000px;}
.h0_c01082{height:1262.835000px;}
.h1_c01082{height:1263.000000px;}
.w3_c01082{width:22.680000px;}
.w4_c01082{width:39.240000px;}
.w2_c01082{width:864.044850px;}
.w0_c01082{width:892.935000px;}
.w1_c01082{width:893.250000px;}
.x0_c01082{left:0.000000px;}
.x7_c01082{left:3.240150px;}
.x1_c01082{left:14.445000px;}
.x2_c01082{left:113.040150px;}
.x6_c01082{left:254.426550px;}
.x4_c01082{left:431.715150px;}
.x3_c01082{left:434.925000px;}
.x5_c01082{left:750.385200px;}
@media print{
.v0_c01082{vertical-align:0.000000pt;}
.ls1_c01082{letter-spacing:0.000000pt;}
.ls0_c01082{letter-spacing:0.419840pt;}
.ws1_c01082{word-spacing:-16.000000pt;}
.ws0_c01082{word-spacing:-13.539840pt;}
.ws2_c01082{word-spacing:0.000000pt;}
.fs1_c01082{font-size:52.480000pt;}
.fs0_c01082{font-size:64.000000pt;}
.y25_c01082{bottom:-9.920000pt;}
.y0_c01082{bottom:0.000000pt;}
.y2_c01082{bottom:2.840000pt;}
.y4_c01082{bottom:3.520000pt;}
.y1_c01082{bottom:47.999987pt;}
.y3_c01082{bottom:49.879987pt;}
.y24_c01082{bottom:53.719987pt;}
.y23_c01082{bottom:58.200000pt;}
.y22_c01082{bottom:76.760000pt;}
.y21_c01082{bottom:95.000013pt;}
.y20_c01082{bottom:113.560013pt;}
.y1f_c01082{bottom:131.800013pt;}
.y1e_c01082{bottom:150.360013pt;}
.y1d_c01082{bottom:168.600013pt;}
.y1c_c01082{bottom:187.160013pt;}
.y1b_c01082{bottom:205.400013pt;}
.y1a_c01082{bottom:223.640013pt;}
.y19_c01082{bottom:242.200013pt;}
.y18_c01082{bottom:260.440013pt;}
.y17_c01082{bottom:279.000013pt;}
.y16_c01082{bottom:297.240013pt;}
.y15_c01082{bottom:315.800013pt;}
.y14_c01082{bottom:334.040013pt;}
.y13_c01082{bottom:352.600013pt;}
.y12_c01082{bottom:370.840013pt;}
.y11_c01082{bottom:389.400013pt;}
.y10_c01082{bottom:407.640013pt;}
.yf_c01082{bottom:426.200013pt;}
.ye_c01082{bottom:444.440013pt;}
.yd_c01082{bottom:463.000013pt;}
.yc_c01082{bottom:481.240013pt;}
.yb_c01082{bottom:499.800013pt;}
.ya_c01082{bottom:518.040013pt;}
.y9_c01082{bottom:533.080013pt;}
.y8_c01082{bottom:910.040013pt;}
.y7_c01082{bottom:928.600013pt;}
.y6_c01082{bottom:946.840013pt;}
.y5_c01082{bottom:965.400013pt;}
.h6_c01082{height:4.799997pt;}
.h4_c01082{height:15.680000pt;}
.h3_c01082{height:56.156250pt;}
.h5_c01082{height:56.843750pt;}
.h2_c01082{height:1067.800000pt;}
.h0_c01082{height:1122.520000pt;}
.h1_c01082{height:1122.666667pt;}
.w3_c01082{width:20.160000pt;}
.w4_c01082{width:34.880000pt;}
.w2_c01082{width:768.039867pt;}
.w0_c01082{width:793.720000pt;}
.w1_c01082{width:794.000000pt;}
.x0_c01082{left:0.000000pt;}
.x7_c01082{left:2.880133pt;}
.x1_c01082{left:12.840000pt;}
.x2_c01082{left:100.480133pt;}
.x6_c01082{left:226.156933pt;}
.x4_c01082{left:383.746800pt;}
.x3_c01082{left:386.600000pt;}
.x5_c01082{left:667.009067pt;}
}





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

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





.ff0_c01083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01083;src:url('chunks/assets/font_1effa86e17749cbb7bbb8550.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:1.093262;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_c01083;src:url('chunks/assets/font_0fc28af73affd429a2234559.woff2')format("woff");}.ff2_c01083{font-family:ff2_c01083;line-height:1.104004;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_c01083{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_c01083{vertical-align:0.000000px;}
.ls1_c01083{letter-spacing:0.000000px;}
.ls0_c01083{letter-spacing:0.472320px;}
.sc__c01083{text-shadow:none;}
.sc0_c01083{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__c01083{-webkit-text-stroke:0px transparent;}
.sc0_c01083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01083{word-spacing:-15.232320px;}
.ws1_c01083{word-spacing:0.000000px;}
.fc1_c01083{color:transparent;}
.fc0_c01083{color:rgb(0,0,0);}
.fs1_c01083{font-size:59.040000px;}
.fs0_c01083{font-size:72.000000px;}
.yf_c01083{bottom:-11.160000px;}
.y0_c01083{bottom:0.000000px;}
.y2_c01083{bottom:3.195000px;}
.y4_c01083{bottom:3.960000px;}
.y1_c01083{bottom:53.999985px;}
.y3_c01083{bottom:56.114985px;}
.ye_c01083{bottom:60.074985px;}
.yd_c01083{bottom:341.235015px;}
.yc_c01083{bottom:361.755015px;}
.yb_c01083{bottom:382.635015px;}
.ya_c01083{bottom:403.155015px;}
.y9_c01083{bottom:424.035015px;}
.y8_c01083{bottom:444.555015px;}
.y7_c01083{bottom:461.475015px;}
.y6_c01083{bottom:1065.195015px;}
.y5_c01083{bottom:1086.075015px;}
.h6_c01083{height:5.399997px;}
.h4_c01083{height:17.640000px;}
.h3_c01083{height:63.175781px;}
.h5_c01083{height:63.949219px;}
.h2_c01083{height:1201.275000px;}
.h0_c01083{height:1262.835000px;}
.h1_c01083{height:1263.000000px;}
.w3_c01083{width:22.680000px;}
.w4_c01083{width:39.240000px;}
.w2_c01083{width:864.044850px;}
.w0_c01083{width:892.935000px;}
.w1_c01083{width:893.250000px;}
.x0_c01083{left:0.000000px;}
.x7_c01083{left:3.240150px;}
.x1_c01083{left:14.445000px;}
.x2_c01083{left:113.040150px;}
.x6_c01083{left:362.466000px;}
.x4_c01083{left:431.715150px;}
.x3_c01083{left:434.925000px;}
.x5_c01083{left:631.927350px;}
@media print{
.v0_c01083{vertical-align:0.000000pt;}
.ls1_c01083{letter-spacing:0.000000pt;}
.ls0_c01083{letter-spacing:0.419840pt;}
.ws0_c01083{word-spacing:-13.539840pt;}
.ws1_c01083{word-spacing:0.000000pt;}
.fs1_c01083{font-size:52.480000pt;}
.fs0_c01083{font-size:64.000000pt;}
.yf_c01083{bottom:-9.920000pt;}
.y0_c01083{bottom:0.000000pt;}
.y2_c01083{bottom:2.840000pt;}
.y4_c01083{bottom:3.520000pt;}
.y1_c01083{bottom:47.999987pt;}
.y3_c01083{bottom:49.879987pt;}
.ye_c01083{bottom:53.399987pt;}
.yd_c01083{bottom:303.320013pt;}
.yc_c01083{bottom:321.560013pt;}
.yb_c01083{bottom:340.120013pt;}
.ya_c01083{bottom:358.360013pt;}
.y9_c01083{bottom:376.920013pt;}
.y8_c01083{bottom:395.160013pt;}
.y7_c01083{bottom:410.200013pt;}
.y6_c01083{bottom:946.840013pt;}
.y5_c01083{bottom:965.400013pt;}
.h6_c01083{height:4.799997pt;}
.h4_c01083{height:15.680000pt;}
.h3_c01083{height:56.156250pt;}
.h5_c01083{height:56.843750pt;}
.h2_c01083{height:1067.800000pt;}
.h0_c01083{height:1122.520000pt;}
.h1_c01083{height:1122.666667pt;}
.w3_c01083{width:20.160000pt;}
.w4_c01083{width:34.880000pt;}
.w2_c01083{width:768.039867pt;}
.w0_c01083{width:793.720000pt;}
.w1_c01083{width:794.000000pt;}
.x0_c01083{left:0.000000pt;}
.x7_c01083{left:2.880133pt;}
.x1_c01083{left:12.840000pt;}
.x2_c01083{left:100.480133pt;}
.x6_c01083{left:322.192000pt;}
.x4_c01083{left:383.746800pt;}
.x3_c01083{left:386.600000pt;}
.x5_c01083{left:561.713200pt;}
}





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

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





.ff0_c01084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01084;src:url('chunks/assets/font_394690e1c8c144f9d659a4a9.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.093262;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_c01084;src:url('chunks/assets/font_c835d80a300c1c9c3812ea9f.woff2')format("woff");}.ff2_c01084{font-family:ff2_c01084;line-height:1.104004;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_c01084;src:url('chunks/assets/font_e01d82c4189c927e7c5b027b.woff2')format("woff");}.ff3_c01084{font-family:ff3_c01084;line-height:0.893066;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_c01084{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_c01084{vertical-align:0.000000px;}
.ls1_c01084{letter-spacing:0.000000px;}
.ls0_c01084{letter-spacing:0.472320px;}
.sc__c01084{text-shadow:none;}
.sc0_c01084{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__c01084{-webkit-text-stroke:0px transparent;}
.sc0_c01084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01084{word-spacing:-15.232320px;}
.ws1_c01084{word-spacing:0.000000px;}
.fc1_c01084{color:transparent;}
.fc0_c01084{color:rgb(0,0,0);}
.fs1_c01084{font-size:59.040000px;}
.fs0_c01084{font-size:72.000000px;}
.yb_c01084{bottom:-11.160000px;}
.y0_c01084{bottom:0.000000px;}
.y2_c01084{bottom:3.195000px;}
.y4_c01084{bottom:3.960000px;}
.y1_c01084{bottom:53.999985px;}
.y3_c01084{bottom:56.114985px;}
.ya_c01084{bottom:60.434985px;}
.y9_c01084{bottom:313.155015px;}
.y8_c01084{bottom:333.675015px;}
.y7_c01084{bottom:354.555015px;}
.y6_c01084{bottom:375.075015px;}
.y5_c01084{bottom:391.635015px;}
.h6_c01084{height:5.399997px;}
.h4_c01084{height:17.640000px;}
.h3_c01084{height:63.175781px;}
.h5_c01084{height:63.949219px;}
.h2_c01084{height:1201.275000px;}
.h0_c01084{height:1262.835000px;}
.h1_c01084{height:1263.000000px;}
.w3_c01084{width:22.680000px;}
.w4_c01084{width:66.240000px;}
.w2_c01084{width:864.044850px;}
.w0_c01084{width:892.935000px;}
.w1_c01084{width:893.250000px;}
.x0_c01084{left:0.000000px;}
.x7_c01084{left:3.240150px;}
.x1_c01084{left:14.445000px;}
.x2_c01084{left:113.040150px;}
.x6_c01084{left:261.185250px;}
.x5_c01084{left:431.715150px;}
.x3_c01084{left:434.925000px;}
.x4_c01084{left:662.677350px;}
@media print{
.v0_c01084{vertical-align:0.000000pt;}
.ls1_c01084{letter-spacing:0.000000pt;}
.ls0_c01084{letter-spacing:0.419840pt;}
.ws0_c01084{word-spacing:-13.539840pt;}
.ws1_c01084{word-spacing:0.000000pt;}
.fs1_c01084{font-size:52.480000pt;}
.fs0_c01084{font-size:64.000000pt;}
.yb_c01084{bottom:-9.920000pt;}
.y0_c01084{bottom:0.000000pt;}
.y2_c01084{bottom:2.840000pt;}
.y4_c01084{bottom:3.520000pt;}
.y1_c01084{bottom:47.999987pt;}
.y3_c01084{bottom:49.879987pt;}
.ya_c01084{bottom:53.719987pt;}
.y9_c01084{bottom:278.360013pt;}
.y8_c01084{bottom:296.600013pt;}
.y7_c01084{bottom:315.160013pt;}
.y6_c01084{bottom:333.400013pt;}
.y5_c01084{bottom:348.120013pt;}
.h6_c01084{height:4.799997pt;}
.h4_c01084{height:15.680000pt;}
.h3_c01084{height:56.156250pt;}
.h5_c01084{height:56.843750pt;}
.h2_c01084{height:1067.800000pt;}
.h0_c01084{height:1122.520000pt;}
.h1_c01084{height:1122.666667pt;}
.w3_c01084{width:20.160000pt;}
.w4_c01084{width:58.880000pt;}
.w2_c01084{width:768.039867pt;}
.w0_c01084{width:793.720000pt;}
.w1_c01084{width:794.000000pt;}
.x0_c01084{left:0.000000pt;}
.x7_c01084{left:2.880133pt;}
.x1_c01084{left:12.840000pt;}
.x2_c01084{left:100.480133pt;}
.x6_c01084{left:232.164667pt;}
.x5_c01084{left:383.746800pt;}
.x3_c01084{left:386.600000pt;}
.x4_c01084{left:589.046533pt;}
}





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

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





.ff0_c01085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01085;src:url('chunks/assets/font_31857d4913c3488da37cbd3e.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.093262;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_c01085;src:url('chunks/assets/font_a785d833fc4515f90db766d5.woff2')format("woff");}.ff2_c01085{font-family:ff2_c01085;line-height:1.104004;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_c01085{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_c01085{vertical-align:0.000000px;}
.ls1_c01085{letter-spacing:0.000000px;}
.ls0_c01085{letter-spacing:0.472320px;}
.sc__c01085{text-shadow:none;}
.sc0_c01085{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__c01085{-webkit-text-stroke:0px transparent;}
.sc0_c01085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01085{word-spacing:-15.232320px;}
.ws1_c01085{word-spacing:0.000000px;}
.fc1_c01085{color:transparent;}
.fc0_c01085{color:rgb(0,0,0);}
.fs1_c01085{font-size:59.040000px;}
.fs0_c01085{font-size:72.000000px;}
.y13_c01085{bottom:-11.160000px;}
.y0_c01085{bottom:0.000000px;}
.y2_c01085{bottom:3.195000px;}
.y4_c01085{bottom:3.960000px;}
.y1_c01085{bottom:53.999985px;}
.y3_c01085{bottom:56.114985px;}
.y12_c01085{bottom:60.434985px;}
.y11_c01085{bottom:837.675015px;}
.y10_c01085{bottom:858.195015px;}
.yf_c01085{bottom:879.075015px;}
.ye_c01085{bottom:899.595015px;}
.yd_c01085{bottom:920.475015px;}
.yc_c01085{bottom:940.995015px;}
.yb_c01085{bottom:961.875015px;}
.ya_c01085{bottom:982.395015px;}
.y9_c01085{bottom:1003.275015px;}
.y8_c01085{bottom:1023.795015px;}
.y7_c01085{bottom:1044.675015px;}
.y6_c01085{bottom:1065.195015px;}
.y5_c01085{bottom:1086.075015px;}
.h6_c01085{height:5.399997px;}
.h4_c01085{height:17.640000px;}
.h3_c01085{height:63.175781px;}
.h5_c01085{height:63.949219px;}
.h2_c01085{height:1201.275000px;}
.h0_c01085{height:1262.835000px;}
.h1_c01085{height:1263.000000px;}
.w3_c01085{width:22.680000px;}
.w4_c01085{width:39.240000px;}
.w2_c01085{width:864.044850px;}
.w0_c01085{width:892.935000px;}
.w1_c01085{width:893.250000px;}
.x0_c01085{left:0.000000px;}
.x6_c01085{left:3.240150px;}
.x1_c01085{left:14.445000px;}
.x2_c01085{left:113.040150px;}
.x4_c01085{left:390.459300px;}
.x5_c01085{left:432.045000px;}
.x3_c01085{left:434.925000px;}
@media print{
.v0_c01085{vertical-align:0.000000pt;}
.ls1_c01085{letter-spacing:0.000000pt;}
.ls0_c01085{letter-spacing:0.419840pt;}
.ws0_c01085{word-spacing:-13.539840pt;}
.ws1_c01085{word-spacing:0.000000pt;}
.fs1_c01085{font-size:52.480000pt;}
.fs0_c01085{font-size:64.000000pt;}
.y13_c01085{bottom:-9.920000pt;}
.y0_c01085{bottom:0.000000pt;}
.y2_c01085{bottom:2.840000pt;}
.y4_c01085{bottom:3.520000pt;}
.y1_c01085{bottom:47.999987pt;}
.y3_c01085{bottom:49.879987pt;}
.y12_c01085{bottom:53.719987pt;}
.y11_c01085{bottom:744.600013pt;}
.y10_c01085{bottom:762.840013pt;}
.yf_c01085{bottom:781.400013pt;}
.ye_c01085{bottom:799.640013pt;}
.yd_c01085{bottom:818.200013pt;}
.yc_c01085{bottom:836.440013pt;}
.yb_c01085{bottom:855.000013pt;}
.ya_c01085{bottom:873.240013pt;}
.y9_c01085{bottom:891.800013pt;}
.y8_c01085{bottom:910.040013pt;}
.y7_c01085{bottom:928.600013pt;}
.y6_c01085{bottom:946.840013pt;}
.y5_c01085{bottom:965.400013pt;}
.h6_c01085{height:4.799997pt;}
.h4_c01085{height:15.680000pt;}
.h3_c01085{height:56.156250pt;}
.h5_c01085{height:56.843750pt;}
.h2_c01085{height:1067.800000pt;}
.h0_c01085{height:1122.520000pt;}
.h1_c01085{height:1122.666667pt;}
.w3_c01085{width:20.160000pt;}
.w4_c01085{width:34.880000pt;}
.w2_c01085{width:768.039867pt;}
.w0_c01085{width:793.720000pt;}
.w1_c01085{width:794.000000pt;}
.x0_c01085{left:0.000000pt;}
.x6_c01085{left:2.880133pt;}
.x1_c01085{left:12.840000pt;}
.x2_c01085{left:100.480133pt;}
.x4_c01085{left:347.074933pt;}
.x5_c01085{left:384.040000pt;}
.x3_c01085{left:386.600000pt;}
}





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

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





.ff0_c01086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01086;src:url('chunks/assets/font_76ac9ec4efbb5ac0e28a33c8.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.093262;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_c01086{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_c01086{vertical-align:0.000000px;}
.ls1_c01086{letter-spacing:0.000000px;}
.ls0_c01086{letter-spacing:0.472320px;}
.sc__c01086{text-shadow:none;}
.sc0_c01086{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__c01086{-webkit-text-stroke:0px transparent;}
.sc0_c01086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01086{word-spacing:-15.232320px;}
.ws1_c01086{word-spacing:0.000000px;}
.fc1_c01086{color:transparent;}
.fc0_c01086{color:rgb(0,0,0);}
.fs1_c01086{font-size:59.040000px;}
.fs0_c01086{font-size:72.000000px;}
.y6_c01086{bottom:-11.160000px;}
.y0_c01086{bottom:0.000000px;}
.y2_c01086{bottom:3.195000px;}
.y4_c01086{bottom:3.960000px;}
.y1_c01086{bottom:53.999985px;}
.y3_c01086{bottom:56.114985px;}
.y5_c01086{bottom:60.434985px;}
.h5_c01086{height:5.399997px;}
.h4_c01086{height:17.640000px;}
.h3_c01086{height:63.175781px;}
.h2_c01086{height:1201.275000px;}
.h0_c01086{height:1262.835000px;}
.h1_c01086{height:1263.000000px;}
.w3_c01086{width:22.680000px;}
.w4_c01086{width:66.240000px;}
.w2_c01086{width:864.044850px;}
.w0_c01086{width:892.935000px;}
.w1_c01086{width:893.250000px;}
.x0_c01086{left:0.000000px;}
.x5_c01086{left:3.240150px;}
.x1_c01086{left:14.445000px;}
.x2_c01086{left:113.040150px;}
.x4_c01086{left:432.045000px;}
.x3_c01086{left:434.925000px;}
@media print{
.v0_c01086{vertical-align:0.000000pt;}
.ls1_c01086{letter-spacing:0.000000pt;}
.ls0_c01086{letter-spacing:0.419840pt;}
.ws0_c01086{word-spacing:-13.539840pt;}
.ws1_c01086{word-spacing:0.000000pt;}
.fs1_c01086{font-size:52.480000pt;}
.fs0_c01086{font-size:64.000000pt;}
.y6_c01086{bottom:-9.920000pt;}
.y0_c01086{bottom:0.000000pt;}
.y2_c01086{bottom:2.840000pt;}
.y4_c01086{bottom:3.520000pt;}
.y1_c01086{bottom:47.999987pt;}
.y3_c01086{bottom:49.879987pt;}
.y5_c01086{bottom:53.719987pt;}
.h5_c01086{height:4.799997pt;}
.h4_c01086{height:15.680000pt;}
.h3_c01086{height:56.156250pt;}
.h2_c01086{height:1067.800000pt;}
.h0_c01086{height:1122.520000pt;}
.h1_c01086{height:1122.666667pt;}
.w3_c01086{width:20.160000pt;}
.w4_c01086{width:58.880000pt;}
.w2_c01086{width:768.039867pt;}
.w0_c01086{width:793.720000pt;}
.w1_c01086{width:794.000000pt;}
.x0_c01086{left:0.000000pt;}
.x5_c01086{left:2.880133pt;}
.x1_c01086{left:12.840000pt;}
.x2_c01086{left:100.480133pt;}
.x4_c01086{left:384.040000pt;}
.x3_c01086{left:386.600000pt;}
}





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

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





.ff0_c01087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01087;src:url('chunks/assets/font_699c2024c3b1535c7537ae8e.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.093262;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_c01087;src:url('chunks/assets/font_4d91e2831d1fec058cf158b9.woff2')format("woff");}.ff2_c01087{font-family:ff2_c01087;line-height:1.104004;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_c01087{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_c01087{vertical-align:0.000000px;}
.ls1_c01087{letter-spacing:0.000000px;}
.ls0_c01087{letter-spacing:0.472320px;}
.sc__c01087{text-shadow:none;}
.sc0_c01087{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__c01087{-webkit-text-stroke:0px transparent;}
.sc0_c01087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01087{word-spacing:-15.232320px;}
.ws1_c01087{word-spacing:0.000000px;}
.fc1_c01087{color:transparent;}
.fc0_c01087{color:rgb(0,0,0);}
.fs1_c01087{font-size:59.040000px;}
.fs0_c01087{font-size:72.000000px;}
.y28_c01087{bottom:-11.160000px;}
.y0_c01087{bottom:0.000000px;}
.y2_c01087{bottom:3.195000px;}
.y4_c01087{bottom:3.960000px;}
.y1_c01087{bottom:53.999985px;}
.y3_c01087{bottom:56.114985px;}
.y27_c01087{bottom:60.074985px;}
.y26_c01087{bottom:402.795015px;}
.y25_c01087{bottom:423.675015px;}
.y24_c01087{bottom:444.195015px;}
.y23_c01087{bottom:465.075015px;}
.y22_c01087{bottom:485.595015px;}
.y21_c01087{bottom:506.475015px;}
.y20_c01087{bottom:526.995015px;}
.y1f_c01087{bottom:547.875015px;}
.y1e_c01087{bottom:568.395015px;}
.y1d_c01087{bottom:589.275015px;}
.y1c_c01087{bottom:609.795015px;}
.y1b_c01087{bottom:630.675015px;}
.y1a_c01087{bottom:651.195015px;}
.y19_c01087{bottom:672.075015px;}
.y18_c01087{bottom:692.595015px;}
.y17_c01087{bottom:713.475015px;}
.y16_c01087{bottom:733.995015px;}
.y15_c01087{bottom:754.875015px;}
.y14_c01087{bottom:775.395015px;}
.y13_c01087{bottom:796.275015px;}
.y12_c01087{bottom:816.795015px;}
.y11_c01087{bottom:837.675015px;}
.y10_c01087{bottom:858.195015px;}
.yf_c01087{bottom:879.075015px;}
.ye_c01087{bottom:899.595015px;}
.yd_c01087{bottom:920.475015px;}
.yc_c01087{bottom:940.995015px;}
.yb_c01087{bottom:961.875015px;}
.ya_c01087{bottom:982.395015px;}
.y9_c01087{bottom:1003.275015px;}
.y8_c01087{bottom:1023.795015px;}
.y7_c01087{bottom:1044.675015px;}
.y6_c01087{bottom:1065.195015px;}
.y5_c01087{bottom:1086.075015px;}
.h6_c01087{height:5.399997px;}
.h4_c01087{height:17.640000px;}
.h3_c01087{height:63.175781px;}
.h5_c01087{height:63.949219px;}
.h2_c01087{height:1201.275000px;}
.h0_c01087{height:1262.835000px;}
.h1_c01087{height:1263.000000px;}
.w3_c01087{width:22.680000px;}
.w4_c01087{width:39.240000px;}
.w2_c01087{width:864.044850px;}
.w0_c01087{width:892.935000px;}
.w1_c01087{width:893.250000px;}
.x0_c01087{left:0.000000px;}
.x6_c01087{left:3.240150px;}
.x1_c01087{left:14.445000px;}
.x2_c01087{left:113.040150px;}
.x5_c01087{left:213.711150px;}
.x4_c01087{left:431.715150px;}
.x3_c01087{left:434.925000px;}
@media print{
.v0_c01087{vertical-align:0.000000pt;}
.ls1_c01087{letter-spacing:0.000000pt;}
.ls0_c01087{letter-spacing:0.419840pt;}
.ws0_c01087{word-spacing:-13.539840pt;}
.ws1_c01087{word-spacing:0.000000pt;}
.fs1_c01087{font-size:52.480000pt;}
.fs0_c01087{font-size:64.000000pt;}
.y28_c01087{bottom:-9.920000pt;}
.y0_c01087{bottom:0.000000pt;}
.y2_c01087{bottom:2.840000pt;}
.y4_c01087{bottom:3.520000pt;}
.y1_c01087{bottom:47.999987pt;}
.y3_c01087{bottom:49.879987pt;}
.y27_c01087{bottom:53.399987pt;}
.y26_c01087{bottom:358.040013pt;}
.y25_c01087{bottom:376.600013pt;}
.y24_c01087{bottom:394.840013pt;}
.y23_c01087{bottom:413.400013pt;}
.y22_c01087{bottom:431.640013pt;}
.y21_c01087{bottom:450.200013pt;}
.y20_c01087{bottom:468.440013pt;}
.y1f_c01087{bottom:487.000013pt;}
.y1e_c01087{bottom:505.240013pt;}
.y1d_c01087{bottom:523.800013pt;}
.y1c_c01087{bottom:542.040013pt;}
.y1b_c01087{bottom:560.600013pt;}
.y1a_c01087{bottom:578.840013pt;}
.y19_c01087{bottom:597.400013pt;}
.y18_c01087{bottom:615.640013pt;}
.y17_c01087{bottom:634.200013pt;}
.y16_c01087{bottom:652.440013pt;}
.y15_c01087{bottom:671.000013pt;}
.y14_c01087{bottom:689.240013pt;}
.y13_c01087{bottom:707.800013pt;}
.y12_c01087{bottom:726.040013pt;}
.y11_c01087{bottom:744.600013pt;}
.y10_c01087{bottom:762.840013pt;}
.yf_c01087{bottom:781.400013pt;}
.ye_c01087{bottom:799.640013pt;}
.yd_c01087{bottom:818.200013pt;}
.yc_c01087{bottom:836.440013pt;}
.yb_c01087{bottom:855.000013pt;}
.ya_c01087{bottom:873.240013pt;}
.y9_c01087{bottom:891.800013pt;}
.y8_c01087{bottom:910.040013pt;}
.y7_c01087{bottom:928.600013pt;}
.y6_c01087{bottom:946.840013pt;}
.y5_c01087{bottom:965.400013pt;}
.h6_c01087{height:4.799997pt;}
.h4_c01087{height:15.680000pt;}
.h3_c01087{height:56.156250pt;}
.h5_c01087{height:56.843750pt;}
.h2_c01087{height:1067.800000pt;}
.h0_c01087{height:1122.520000pt;}
.h1_c01087{height:1122.666667pt;}
.w3_c01087{width:20.160000pt;}
.w4_c01087{width:34.880000pt;}
.w2_c01087{width:768.039867pt;}
.w0_c01087{width:793.720000pt;}
.w1_c01087{width:794.000000pt;}
.x0_c01087{left:0.000000pt;}
.x6_c01087{left:2.880133pt;}
.x1_c01087{left:12.840000pt;}
.x2_c01087{left:100.480133pt;}
.x5_c01087{left:189.965467pt;}
.x4_c01087{left:383.746800pt;}
.x3_c01087{left:386.600000pt;}
}





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

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





.ff0_c01088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01088;src:url('chunks/assets/font_977fa521b4e787ea7bd6538b.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.093262;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_c01088;src:url('chunks/assets/font_2ff279cb72a1b68052aefe11.woff2')format("woff");}.ff2_c01088{font-family:ff2_c01088;line-height:1.104004;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_c01088{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_c01088{vertical-align:0.000000px;}
.ls1_c01088{letter-spacing:0.000000px;}
.ls0_c01088{letter-spacing:0.472320px;}
.sc__c01088{text-shadow:none;}
.sc0_c01088{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__c01088{-webkit-text-stroke:0px transparent;}
.sc0_c01088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01088{word-spacing:-15.232320px;}
.ws1_c01088{word-spacing:0.000000px;}
.fc1_c01088{color:transparent;}
.fc0_c01088{color:rgb(0,0,0);}
.fs1_c01088{font-size:59.040000px;}
.fs0_c01088{font-size:72.000000px;}
.y28_c01088{bottom:-11.160000px;}
.y0_c01088{bottom:0.000000px;}
.y2_c01088{bottom:3.195000px;}
.y4_c01088{bottom:3.960000px;}
.y1_c01088{bottom:53.999985px;}
.y3_c01088{bottom:56.114985px;}
.y27_c01088{bottom:60.434985px;}
.y26_c01088{bottom:402.795015px;}
.y25_c01088{bottom:423.675015px;}
.y24_c01088{bottom:444.195015px;}
.y23_c01088{bottom:465.075015px;}
.y22_c01088{bottom:485.595015px;}
.y21_c01088{bottom:506.475015px;}
.y20_c01088{bottom:526.995015px;}
.y1f_c01088{bottom:547.875015px;}
.y1e_c01088{bottom:568.395015px;}
.y1d_c01088{bottom:589.275015px;}
.y1c_c01088{bottom:609.795015px;}
.y1b_c01088{bottom:630.675015px;}
.y1a_c01088{bottom:651.195015px;}
.y19_c01088{bottom:672.075015px;}
.y18_c01088{bottom:692.595015px;}
.y17_c01088{bottom:713.475015px;}
.y16_c01088{bottom:733.995015px;}
.y15_c01088{bottom:754.875015px;}
.y14_c01088{bottom:775.395015px;}
.y13_c01088{bottom:796.275015px;}
.y12_c01088{bottom:816.795015px;}
.y11_c01088{bottom:837.675015px;}
.y10_c01088{bottom:858.195015px;}
.yf_c01088{bottom:879.075015px;}
.ye_c01088{bottom:899.595015px;}
.yd_c01088{bottom:920.475015px;}
.yc_c01088{bottom:940.995015px;}
.yb_c01088{bottom:961.875015px;}
.ya_c01088{bottom:982.395015px;}
.y9_c01088{bottom:1003.275015px;}
.y8_c01088{bottom:1023.795015px;}
.y7_c01088{bottom:1044.675015px;}
.y6_c01088{bottom:1065.195015px;}
.y5_c01088{bottom:1086.075015px;}
.h6_c01088{height:5.399997px;}
.h4_c01088{height:17.640000px;}
.h3_c01088{height:63.175781px;}
.h5_c01088{height:63.949219px;}
.h2_c01088{height:1201.275000px;}
.h0_c01088{height:1262.835000px;}
.h1_c01088{height:1263.000000px;}
.w3_c01088{width:22.680000px;}
.w4_c01088{width:66.240000px;}
.w2_c01088{width:864.044850px;}
.w0_c01088{width:892.935000px;}
.w1_c01088{width:893.250000px;}
.x0_c01088{left:0.000000px;}
.x7_c01088{left:3.240150px;}
.x1_c01088{left:14.445000px;}
.x2_c01088{left:113.040150px;}
.x5_c01088{left:213.711150px;}
.x6_c01088{left:405.045000px;}
.x4_c01088{left:431.715150px;}
.x3_c01088{left:434.925000px;}
@media print{
.v0_c01088{vertical-align:0.000000pt;}
.ls1_c01088{letter-spacing:0.000000pt;}
.ls0_c01088{letter-spacing:0.419840pt;}
.ws0_c01088{word-spacing:-13.539840pt;}
.ws1_c01088{word-spacing:0.000000pt;}
.fs1_c01088{font-size:52.480000pt;}
.fs0_c01088{font-size:64.000000pt;}
.y28_c01088{bottom:-9.920000pt;}
.y0_c01088{bottom:0.000000pt;}
.y2_c01088{bottom:2.840000pt;}
.y4_c01088{bottom:3.520000pt;}
.y1_c01088{bottom:47.999987pt;}
.y3_c01088{bottom:49.879987pt;}
.y27_c01088{bottom:53.719987pt;}
.y26_c01088{bottom:358.040013pt;}
.y25_c01088{bottom:376.600013pt;}
.y24_c01088{bottom:394.840013pt;}
.y23_c01088{bottom:413.400013pt;}
.y22_c01088{bottom:431.640013pt;}
.y21_c01088{bottom:450.200013pt;}
.y20_c01088{bottom:468.440013pt;}
.y1f_c01088{bottom:487.000013pt;}
.y1e_c01088{bottom:505.240013pt;}
.y1d_c01088{bottom:523.800013pt;}
.y1c_c01088{bottom:542.040013pt;}
.y1b_c01088{bottom:560.600013pt;}
.y1a_c01088{bottom:578.840013pt;}
.y19_c01088{bottom:597.400013pt;}
.y18_c01088{bottom:615.640013pt;}
.y17_c01088{bottom:634.200013pt;}
.y16_c01088{bottom:652.440013pt;}
.y15_c01088{bottom:671.000013pt;}
.y14_c01088{bottom:689.240013pt;}
.y13_c01088{bottom:707.800013pt;}
.y12_c01088{bottom:726.040013pt;}
.y11_c01088{bottom:744.600013pt;}
.y10_c01088{bottom:762.840013pt;}
.yf_c01088{bottom:781.400013pt;}
.ye_c01088{bottom:799.640013pt;}
.yd_c01088{bottom:818.200013pt;}
.yc_c01088{bottom:836.440013pt;}
.yb_c01088{bottom:855.000013pt;}
.ya_c01088{bottom:873.240013pt;}
.y9_c01088{bottom:891.800013pt;}
.y8_c01088{bottom:910.040013pt;}
.y7_c01088{bottom:928.600013pt;}
.y6_c01088{bottom:946.840013pt;}
.y5_c01088{bottom:965.400013pt;}
.h6_c01088{height:4.799997pt;}
.h4_c01088{height:15.680000pt;}
.h3_c01088{height:56.156250pt;}
.h5_c01088{height:56.843750pt;}
.h2_c01088{height:1067.800000pt;}
.h0_c01088{height:1122.520000pt;}
.h1_c01088{height:1122.666667pt;}
.w3_c01088{width:20.160000pt;}
.w4_c01088{width:58.880000pt;}
.w2_c01088{width:768.039867pt;}
.w0_c01088{width:793.720000pt;}
.w1_c01088{width:794.000000pt;}
.x0_c01088{left:0.000000pt;}
.x7_c01088{left:2.880133pt;}
.x1_c01088{left:12.840000pt;}
.x2_c01088{left:100.480133pt;}
.x5_c01088{left:189.965467pt;}
.x6_c01088{left:360.040000pt;}
.x4_c01088{left:383.746800pt;}
.x3_c01088{left:386.600000pt;}
}





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

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





.ff0_c01089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01089;src:url('chunks/assets/font_2fed076d3061ccde9b51aa68.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.093262;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_c01089;src:url('chunks/assets/font_62942406c62ee77d730e6ab3.woff2')format("woff");}.ff2_c01089{font-family:ff2_c01089;line-height:1.104004;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_c01089{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_c01089{vertical-align:0.000000px;}
.ls1_c01089{letter-spacing:0.000000px;}
.ls0_c01089{letter-spacing:0.472320px;}
.sc__c01089{text-shadow:none;}
.sc0_c01089{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__c01089{-webkit-text-stroke:0px transparent;}
.sc0_c01089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01089{word-spacing:-15.232320px;}
.ws1_c01089{word-spacing:0.000000px;}
.fc1_c01089{color:transparent;}
.fc0_c01089{color:rgb(0,0,0);}
.fs1_c01089{font-size:59.040000px;}
.fs0_c01089{font-size:72.000000px;}
.y2c_c01089{bottom:-11.160000px;}
.y0_c01089{bottom:0.000000px;}
.y2_c01089{bottom:3.195000px;}
.y4_c01089{bottom:3.960000px;}
.y1_c01089{bottom:53.999985px;}
.y3_c01089{bottom:56.114985px;}
.y2b_c01089{bottom:60.434985px;}
.y2a_c01089{bottom:319.995015px;}
.y29_c01089{bottom:340.875015px;}
.y28_c01089{bottom:361.395015px;}
.y27_c01089{bottom:382.275015px;}
.y26_c01089{bottom:402.795015px;}
.y25_c01089{bottom:423.675015px;}
.y24_c01089{bottom:444.195015px;}
.y23_c01089{bottom:465.075015px;}
.y22_c01089{bottom:485.595015px;}
.y21_c01089{bottom:506.475015px;}
.y20_c01089{bottom:526.995015px;}
.y1f_c01089{bottom:547.875015px;}
.y1e_c01089{bottom:568.395015px;}
.y1d_c01089{bottom:589.275015px;}
.y1c_c01089{bottom:609.795015px;}
.y1b_c01089{bottom:630.675015px;}
.y1a_c01089{bottom:651.195015px;}
.y19_c01089{bottom:672.075015px;}
.y18_c01089{bottom:692.595015px;}
.y17_c01089{bottom:713.475015px;}
.y16_c01089{bottom:733.995015px;}
.y15_c01089{bottom:754.875015px;}
.y14_c01089{bottom:775.395015px;}
.y13_c01089{bottom:796.275015px;}
.y12_c01089{bottom:816.795015px;}
.y11_c01089{bottom:837.675015px;}
.y10_c01089{bottom:858.195015px;}
.yf_c01089{bottom:879.075015px;}
.ye_c01089{bottom:899.595015px;}
.yd_c01089{bottom:920.475015px;}
.yc_c01089{bottom:940.995015px;}
.yb_c01089{bottom:961.875015px;}
.ya_c01089{bottom:982.395015px;}
.y9_c01089{bottom:1003.275015px;}
.y8_c01089{bottom:1023.795015px;}
.y7_c01089{bottom:1044.675015px;}
.y6_c01089{bottom:1065.195015px;}
.y5_c01089{bottom:1086.075015px;}
.h6_c01089{height:5.399997px;}
.h4_c01089{height:17.640000px;}
.h3_c01089{height:63.175781px;}
.h5_c01089{height:63.949219px;}
.h2_c01089{height:1201.275000px;}
.h0_c01089{height:1262.835000px;}
.h1_c01089{height:1263.000000px;}
.w3_c01089{width:22.680000px;}
.w4_c01089{width:93.240000px;}
.w2_c01089{width:864.044850px;}
.w0_c01089{width:892.935000px;}
.w1_c01089{width:893.250000px;}
.x0_c01089{left:0.000000px;}
.x7_c01089{left:3.240150px;}
.x1_c01089{left:14.445000px;}
.x2_c01089{left:113.040150px;}
.x5_c01089{left:213.711150px;}
.x6_c01089{left:405.045000px;}
.x4_c01089{left:431.715150px;}
.x3_c01089{left:434.925000px;}
@media print{
.v0_c01089{vertical-align:0.000000pt;}
.ls1_c01089{letter-spacing:0.000000pt;}
.ls0_c01089{letter-spacing:0.419840pt;}
.ws0_c01089{word-spacing:-13.539840pt;}
.ws1_c01089{word-spacing:0.000000pt;}
.fs1_c01089{font-size:52.480000pt;}
.fs0_c01089{font-size:64.000000pt;}
.y2c_c01089{bottom:-9.920000pt;}
.y0_c01089{bottom:0.000000pt;}
.y2_c01089{bottom:2.840000pt;}
.y4_c01089{bottom:3.520000pt;}
.y1_c01089{bottom:47.999987pt;}
.y3_c01089{bottom:49.879987pt;}
.y2b_c01089{bottom:53.719987pt;}
.y2a_c01089{bottom:284.440013pt;}
.y29_c01089{bottom:303.000013pt;}
.y28_c01089{bottom:321.240013pt;}
.y27_c01089{bottom:339.800013pt;}
.y26_c01089{bottom:358.040013pt;}
.y25_c01089{bottom:376.600013pt;}
.y24_c01089{bottom:394.840013pt;}
.y23_c01089{bottom:413.400013pt;}
.y22_c01089{bottom:431.640013pt;}
.y21_c01089{bottom:450.200013pt;}
.y20_c01089{bottom:468.440013pt;}
.y1f_c01089{bottom:487.000013pt;}
.y1e_c01089{bottom:505.240013pt;}
.y1d_c01089{bottom:523.800013pt;}
.y1c_c01089{bottom:542.040013pt;}
.y1b_c01089{bottom:560.600013pt;}
.y1a_c01089{bottom:578.840013pt;}
.y19_c01089{bottom:597.400013pt;}
.y18_c01089{bottom:615.640013pt;}
.y17_c01089{bottom:634.200013pt;}
.y16_c01089{bottom:652.440013pt;}
.y15_c01089{bottom:671.000013pt;}
.y14_c01089{bottom:689.240013pt;}
.y13_c01089{bottom:707.800013pt;}
.y12_c01089{bottom:726.040013pt;}
.y11_c01089{bottom:744.600013pt;}
.y10_c01089{bottom:762.840013pt;}
.yf_c01089{bottom:781.400013pt;}
.ye_c01089{bottom:799.640013pt;}
.yd_c01089{bottom:818.200013pt;}
.yc_c01089{bottom:836.440013pt;}
.yb_c01089{bottom:855.000013pt;}
.ya_c01089{bottom:873.240013pt;}
.y9_c01089{bottom:891.800013pt;}
.y8_c01089{bottom:910.040013pt;}
.y7_c01089{bottom:928.600013pt;}
.y6_c01089{bottom:946.840013pt;}
.y5_c01089{bottom:965.400013pt;}
.h6_c01089{height:4.799997pt;}
.h4_c01089{height:15.680000pt;}
.h3_c01089{height:56.156250pt;}
.h5_c01089{height:56.843750pt;}
.h2_c01089{height:1067.800000pt;}
.h0_c01089{height:1122.520000pt;}
.h1_c01089{height:1122.666667pt;}
.w3_c01089{width:20.160000pt;}
.w4_c01089{width:82.880000pt;}
.w2_c01089{width:768.039867pt;}
.w0_c01089{width:793.720000pt;}
.w1_c01089{width:794.000000pt;}
.x0_c01089{left:0.000000pt;}
.x7_c01089{left:2.880133pt;}
.x1_c01089{left:12.840000pt;}
.x2_c01089{left:100.480133pt;}
.x5_c01089{left:189.965467pt;}
.x6_c01089{left:360.040000pt;}
.x4_c01089{left:383.746800pt;}
.x3_c01089{left:386.600000pt;}
}





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

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





.ff0_c01090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01090;src:url('chunks/assets/font_699c2024c3b1535c7537ae8e.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.093262;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_c01090;src:url('chunks/assets/font_59082ce5b414e9f73f3de25c.woff2')format("woff");}.ff2_c01090{font-family:ff2_c01090;line-height:1.104004;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_c01090{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_c01090{vertical-align:0.000000px;}
.ls1_c01090{letter-spacing:0.000000px;}
.ls0_c01090{letter-spacing:0.472320px;}
.sc__c01090{text-shadow:none;}
.sc0_c01090{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__c01090{-webkit-text-stroke:0px transparent;}
.sc0_c01090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01090{word-spacing:-15.232320px;}
.ws1_c01090{word-spacing:0.000000px;}
.fc1_c01090{color:transparent;}
.fc0_c01090{color:rgb(0,0,0);}
.fs1_c01090{font-size:59.040000px;}
.fs0_c01090{font-size:72.000000px;}
.y10_c01090{bottom:-11.160000px;}
.y0_c01090{bottom:0.000000px;}
.y2_c01090{bottom:3.195000px;}
.y4_c01090{bottom:3.960000px;}
.y1_c01090{bottom:53.999985px;}
.y3_c01090{bottom:56.114985px;}
.ye_c01090{bottom:57.555015px;}
.yf_c01090{bottom:60.434985px;}
.yd_c01090{bottom:78.435000px;}
.yc_c01090{bottom:98.955015px;}
.yb_c01090{bottom:119.835015px;}
.ya_c01090{bottom:140.355015px;}
.y9_c01090{bottom:161.235015px;}
.y8_c01090{bottom:181.755015px;}
.y7_c01090{bottom:198.315015px;}
.y6_c01090{bottom:1065.195015px;}
.y5_c01090{bottom:1086.075015px;}
.h6_c01090{height:5.399997px;}
.h4_c01090{height:17.640000px;}
.h3_c01090{height:63.175781px;}
.h5_c01090{height:63.949219px;}
.h2_c01090{height:1201.275000px;}
.h0_c01090{height:1262.835000px;}
.h1_c01090{height:1263.000000px;}
.w3_c01090{width:22.680000px;}
.w4_c01090{width:66.240000px;}
.w2_c01090{width:864.044850px;}
.w0_c01090{width:892.935000px;}
.w1_c01090{width:893.250000px;}
.x0_c01090{left:0.000000px;}
.x7_c01090{left:3.240150px;}
.x1_c01090{left:14.445000px;}
.x2_c01090{left:113.040150px;}
.x6_c01090{left:115.963620px;}
.x4_c01090{left:431.715150px;}
.x3_c01090{left:434.925000px;}
.x5_c01090{left:750.282000px;}
@media print{
.v0_c01090{vertical-align:0.000000pt;}
.ls1_c01090{letter-spacing:0.000000pt;}
.ls0_c01090{letter-spacing:0.419840pt;}
.ws0_c01090{word-spacing:-13.539840pt;}
.ws1_c01090{word-spacing:0.000000pt;}
.fs1_c01090{font-size:52.480000pt;}
.fs0_c01090{font-size:64.000000pt;}
.y10_c01090{bottom:-9.920000pt;}
.y0_c01090{bottom:0.000000pt;}
.y2_c01090{bottom:2.840000pt;}
.y4_c01090{bottom:3.520000pt;}
.y1_c01090{bottom:47.999987pt;}
.y3_c01090{bottom:49.879987pt;}
.ye_c01090{bottom:51.160013pt;}
.yf_c01090{bottom:53.719987pt;}
.yd_c01090{bottom:69.720000pt;}
.yc_c01090{bottom:87.960013pt;}
.yb_c01090{bottom:106.520013pt;}
.ya_c01090{bottom:124.760013pt;}
.y9_c01090{bottom:143.320013pt;}
.y8_c01090{bottom:161.560013pt;}
.y7_c01090{bottom:176.280013pt;}
.y6_c01090{bottom:946.840013pt;}
.y5_c01090{bottom:965.400013pt;}
.h6_c01090{height:4.799997pt;}
.h4_c01090{height:15.680000pt;}
.h3_c01090{height:56.156250pt;}
.h5_c01090{height:56.843750pt;}
.h2_c01090{height:1067.800000pt;}
.h0_c01090{height:1122.520000pt;}
.h1_c01090{height:1122.666667pt;}
.w3_c01090{width:20.160000pt;}
.w4_c01090{width:58.880000pt;}
.w2_c01090{width:768.039867pt;}
.w0_c01090{width:793.720000pt;}
.w1_c01090{width:794.000000pt;}
.x0_c01090{left:0.000000pt;}
.x7_c01090{left:2.880133pt;}
.x1_c01090{left:12.840000pt;}
.x2_c01090{left:100.480133pt;}
.x6_c01090{left:103.078773pt;}
.x4_c01090{left:383.746800pt;}
.x3_c01090{left:386.600000pt;}
.x5_c01090{left:666.917333pt;}
}





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

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





.ff0_c01091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01091;src:url('chunks/assets/font_e1cae2bcf5017d2c9fe561ab.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.093262;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_c01091;src:url('chunks/assets/font_cca8554a51618e77dea79adb.woff2')format("woff");}.ff2_c01091{font-family:ff2_c01091;line-height:1.104004;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_c01091{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_c01091{vertical-align:0.000000px;}
.ls1_c01091{letter-spacing:0.000000px;}
.ls0_c01091{letter-spacing:0.472320px;}
.sc__c01091{text-shadow:none;}
.sc0_c01091{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__c01091{-webkit-text-stroke:0px transparent;}
.sc0_c01091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01091{word-spacing:-15.232320px;}
.ws1_c01091{word-spacing:0.000000px;}
.fc1_c01091{color:transparent;}
.fc0_c01091{color:rgb(0,0,0);}
.fs1_c01091{font-size:59.040000px;}
.fs0_c01091{font-size:72.000000px;}
.y13_c01091{bottom:-11.160000px;}
.y0_c01091{bottom:0.000000px;}
.y2_c01091{bottom:3.195000px;}
.y4_c01091{bottom:3.960000px;}
.y1_c01091{bottom:53.999985px;}
.y3_c01091{bottom:56.114985px;}
.y12_c01091{bottom:60.434985px;}
.y11_c01091{bottom:837.675015px;}
.y10_c01091{bottom:858.195015px;}
.yf_c01091{bottom:879.075015px;}
.ye_c01091{bottom:899.595015px;}
.yd_c01091{bottom:920.475015px;}
.yc_c01091{bottom:940.995015px;}
.yb_c01091{bottom:961.875015px;}
.ya_c01091{bottom:982.395015px;}
.y9_c01091{bottom:1003.275015px;}
.y8_c01091{bottom:1023.795015px;}
.y7_c01091{bottom:1044.675015px;}
.y6_c01091{bottom:1065.195015px;}
.y5_c01091{bottom:1086.075015px;}
.h6_c01091{height:5.399997px;}
.h4_c01091{height:17.640000px;}
.h3_c01091{height:63.175781px;}
.h5_c01091{height:63.949219px;}
.h2_c01091{height:1201.275000px;}
.h0_c01091{height:1262.835000px;}
.h1_c01091{height:1263.000000px;}
.w3_c01091{width:22.680000px;}
.w4_c01091{width:39.240000px;}
.w2_c01091{width:864.044850px;}
.w0_c01091{width:892.935000px;}
.w1_c01091{width:893.250000px;}
.x0_c01091{left:0.000000px;}
.x6_c01091{left:3.240150px;}
.x1_c01091{left:14.445000px;}
.x2_c01091{left:113.040150px;}
.x5_c01091{left:386.956800px;}
.x4_c01091{left:431.715150px;}
.x3_c01091{left:434.925000px;}
@media print{
.v0_c01091{vertical-align:0.000000pt;}
.ls1_c01091{letter-spacing:0.000000pt;}
.ls0_c01091{letter-spacing:0.419840pt;}
.ws0_c01091{word-spacing:-13.539840pt;}
.ws1_c01091{word-spacing:0.000000pt;}
.fs1_c01091{font-size:52.480000pt;}
.fs0_c01091{font-size:64.000000pt;}
.y13_c01091{bottom:-9.920000pt;}
.y0_c01091{bottom:0.000000pt;}
.y2_c01091{bottom:2.840000pt;}
.y4_c01091{bottom:3.520000pt;}
.y1_c01091{bottom:47.999987pt;}
.y3_c01091{bottom:49.879987pt;}
.y12_c01091{bottom:53.719987pt;}
.y11_c01091{bottom:744.600013pt;}
.y10_c01091{bottom:762.840013pt;}
.yf_c01091{bottom:781.400013pt;}
.ye_c01091{bottom:799.640013pt;}
.yd_c01091{bottom:818.200013pt;}
.yc_c01091{bottom:836.440013pt;}
.yb_c01091{bottom:855.000013pt;}
.ya_c01091{bottom:873.240013pt;}
.y9_c01091{bottom:891.800013pt;}
.y8_c01091{bottom:910.040013pt;}
.y7_c01091{bottom:928.600013pt;}
.y6_c01091{bottom:946.840013pt;}
.y5_c01091{bottom:965.400013pt;}
.h6_c01091{height:4.799997pt;}
.h4_c01091{height:15.680000pt;}
.h3_c01091{height:56.156250pt;}
.h5_c01091{height:56.843750pt;}
.h2_c01091{height:1067.800000pt;}
.h0_c01091{height:1122.520000pt;}
.h1_c01091{height:1122.666667pt;}
.w3_c01091{width:20.160000pt;}
.w4_c01091{width:34.880000pt;}
.w2_c01091{width:768.039867pt;}
.w0_c01091{width:793.720000pt;}
.w1_c01091{width:794.000000pt;}
.x0_c01091{left:0.000000pt;}
.x6_c01091{left:2.880133pt;}
.x1_c01091{left:12.840000pt;}
.x2_c01091{left:100.480133pt;}
.x5_c01091{left:343.961600pt;}
.x4_c01091{left:383.746800pt;}
.x3_c01091{left:386.600000pt;}
}





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

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





.ff0_c01092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01092;src:url('chunks/assets/font_50d60f7ef4fc60fc0f148f4b.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.093262;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_c01092{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_c01092{vertical-align:0.000000px;}
.ls1_c01092{letter-spacing:0.000000px;}
.ls0_c01092{letter-spacing:0.472320px;}
.sc__c01092{text-shadow:none;}
.sc0_c01092{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__c01092{-webkit-text-stroke:0px transparent;}
.sc0_c01092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01092{word-spacing:-15.232320px;}
.ws1_c01092{word-spacing:0.000000px;}
.fc1_c01092{color:transparent;}
.fc0_c01092{color:rgb(0,0,0);}
.fs1_c01092{font-size:59.040000px;}
.fs0_c01092{font-size:72.000000px;}
.y6_c01092{bottom:-11.160000px;}
.y0_c01092{bottom:0.000000px;}
.y2_c01092{bottom:3.195000px;}
.y4_c01092{bottom:3.960000px;}
.y1_c01092{bottom:53.999985px;}
.y3_c01092{bottom:56.114985px;}
.y5_c01092{bottom:60.434985px;}
.h5_c01092{height:5.399997px;}
.h4_c01092{height:17.640000px;}
.h3_c01092{height:63.175781px;}
.h2_c01092{height:1201.275000px;}
.h0_c01092{height:1262.835000px;}
.h1_c01092{height:1263.000000px;}
.w3_c01092{width:22.680000px;}
.w4_c01092{width:39.240000px;}
.w2_c01092{width:864.044850px;}
.w0_c01092{width:892.935000px;}
.w1_c01092{width:893.250000px;}
.x0_c01092{left:0.000000px;}
.x5_c01092{left:3.240150px;}
.x1_c01092{left:14.445000px;}
.x2_c01092{left:113.040150px;}
.x4_c01092{left:432.045000px;}
.x3_c01092{left:434.925000px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.ls1_c01092{letter-spacing:0.000000pt;}
.ls0_c01092{letter-spacing:0.419840pt;}
.ws0_c01092{word-spacing:-13.539840pt;}
.ws1_c01092{word-spacing:0.000000pt;}
.fs1_c01092{font-size:52.480000pt;}
.fs0_c01092{font-size:64.000000pt;}
.y6_c01092{bottom:-9.920000pt;}
.y0_c01092{bottom:0.000000pt;}
.y2_c01092{bottom:2.840000pt;}
.y4_c01092{bottom:3.520000pt;}
.y1_c01092{bottom:47.999987pt;}
.y3_c01092{bottom:49.879987pt;}
.y5_c01092{bottom:53.719987pt;}
.h5_c01092{height:4.799997pt;}
.h4_c01092{height:15.680000pt;}
.h3_c01092{height:56.156250pt;}
.h2_c01092{height:1067.800000pt;}
.h0_c01092{height:1122.520000pt;}
.h1_c01092{height:1122.666667pt;}
.w3_c01092{width:20.160000pt;}
.w4_c01092{width:34.880000pt;}
.w2_c01092{width:768.039867pt;}
.w0_c01092{width:793.720000pt;}
.w1_c01092{width:794.000000pt;}
.x0_c01092{left:0.000000pt;}
.x5_c01092{left:2.880133pt;}
.x1_c01092{left:12.840000pt;}
.x2_c01092{left:100.480133pt;}
.x4_c01092{left:384.040000pt;}
.x3_c01092{left:386.600000pt;}
}





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

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





.ff0_c01093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01093;src:url('chunks/assets/font_cf3a5253ca33d8e6dc871ab8.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.093262;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_c01093;src:url('chunks/assets/font_350a51eb6a0009380138a9f2.woff2')format("woff");}.ff2_c01093{font-family:ff2_c01093;line-height:1.104004;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_c01093{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_c01093{vertical-align:0.000000px;}
.ls1_c01093{letter-spacing:0.000000px;}
.ls0_c01093{letter-spacing:0.472320px;}
.sc__c01093{text-shadow:none;}
.sc0_c01093{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__c01093{-webkit-text-stroke:0px transparent;}
.sc0_c01093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01093{word-spacing:-15.232320px;}
.ws1_c01093{word-spacing:0.000000px;}
.fc1_c01093{color:transparent;}
.fc0_c01093{color:rgb(0,0,0);}
.fs1_c01093{font-size:59.040000px;}
.fs0_c01093{font-size:72.000000px;}
.y15_c01093{bottom:-11.160000px;}
.y0_c01093{bottom:0.000000px;}
.y2_c01093{bottom:3.195000px;}
.y4_c01093{bottom:3.960000px;}
.y1_c01093{bottom:53.999985px;}
.y3_c01093{bottom:56.114985px;}
.y14_c01093{bottom:60.434985px;}
.y13_c01093{bottom:482.355015px;}
.y12_c01093{bottom:503.235015px;}
.y11_c01093{bottom:523.755015px;}
.y10_c01093{bottom:544.635015px;}
.yf_c01093{bottom:565.155015px;}
.ye_c01093{bottom:586.035015px;}
.yd_c01093{bottom:606.555015px;}
.yc_c01093{bottom:623.115015px;}
.yb_c01093{bottom:961.875015px;}
.ya_c01093{bottom:982.395015px;}
.y9_c01093{bottom:1003.275015px;}
.y8_c01093{bottom:1023.795015px;}
.y7_c01093{bottom:1044.675015px;}
.y6_c01093{bottom:1065.195015px;}
.y5_c01093{bottom:1086.075015px;}
.h6_c01093{height:5.399997px;}
.h4_c01093{height:17.640000px;}
.h3_c01093{height:63.175781px;}
.h5_c01093{height:63.949219px;}
.h2_c01093{height:1201.275000px;}
.h0_c01093{height:1262.835000px;}
.h1_c01093{height:1263.000000px;}
.w3_c01093{width:22.680000px;}
.w4_c01093{width:66.240000px;}
.w2_c01093{width:864.044850px;}
.w0_c01093{width:892.935000px;}
.w1_c01093{width:893.250000px;}
.x0_c01093{left:0.000000px;}
.xa_c01093{left:3.240150px;}
.x1_c01093{left:14.445000px;}
.x2_c01093{left:113.040150px;}
.x6_c01093{left:123.240945px;}
.x8_c01093{left:364.948950px;}
.x7_c01093{left:372.960150px;}
.x9_c01093{left:405.045000px;}
.x4_c01093{left:431.715150px;}
.x3_c01093{left:434.925000px;}
.x5_c01093{left:734.677350px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.ls1_c01093{letter-spacing:0.000000pt;}
.ls0_c01093{letter-spacing:0.419840pt;}
.ws0_c01093{word-spacing:-13.539840pt;}
.ws1_c01093{word-spacing:0.000000pt;}
.fs1_c01093{font-size:52.480000pt;}
.fs0_c01093{font-size:64.000000pt;}
.y15_c01093{bottom:-9.920000pt;}
.y0_c01093{bottom:0.000000pt;}
.y2_c01093{bottom:2.840000pt;}
.y4_c01093{bottom:3.520000pt;}
.y1_c01093{bottom:47.999987pt;}
.y3_c01093{bottom:49.879987pt;}
.y14_c01093{bottom:53.719987pt;}
.y13_c01093{bottom:428.760013pt;}
.y12_c01093{bottom:447.320013pt;}
.y11_c01093{bottom:465.560013pt;}
.y10_c01093{bottom:484.120013pt;}
.yf_c01093{bottom:502.360013pt;}
.ye_c01093{bottom:520.920013pt;}
.yd_c01093{bottom:539.160013pt;}
.yc_c01093{bottom:553.880013pt;}
.yb_c01093{bottom:855.000013pt;}
.ya_c01093{bottom:873.240013pt;}
.y9_c01093{bottom:891.800013pt;}
.y8_c01093{bottom:910.040013pt;}
.y7_c01093{bottom:928.600013pt;}
.y6_c01093{bottom:946.840013pt;}
.y5_c01093{bottom:965.400013pt;}
.h6_c01093{height:4.799997pt;}
.h4_c01093{height:15.680000pt;}
.h3_c01093{height:56.156250pt;}
.h5_c01093{height:56.843750pt;}
.h2_c01093{height:1067.800000pt;}
.h0_c01093{height:1122.520000pt;}
.h1_c01093{height:1122.666667pt;}
.w3_c01093{width:20.160000pt;}
.w4_c01093{width:58.880000pt;}
.w2_c01093{width:768.039867pt;}
.w0_c01093{width:793.720000pt;}
.w1_c01093{width:794.000000pt;}
.x0_c01093{left:0.000000pt;}
.xa_c01093{left:2.880133pt;}
.x1_c01093{left:12.840000pt;}
.x2_c01093{left:100.480133pt;}
.x6_c01093{left:109.547507pt;}
.x8_c01093{left:324.399067pt;}
.x7_c01093{left:331.520133pt;}
.x9_c01093{left:360.040000pt;}
.x4_c01093{left:383.746800pt;}
.x3_c01093{left:386.600000pt;}
.x5_c01093{left:653.046533pt;}
}





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

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





.ff0_c01094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01094;src:url('chunks/assets/font_a65ff7a77b0cb56ebc4e2a52.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.093262;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_c01094;src:url('chunks/assets/font_b4c859feb52c0240f4557f03.woff2')format("woff");}.ff2_c01094{font-family:ff2_c01094;line-height:1.104004;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_c01094{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_c01094{vertical-align:0.000000px;}
.ls1_c01094{letter-spacing:0.000000px;}
.ls0_c01094{letter-spacing:0.472320px;}
.sc__c01094{text-shadow:none;}
.sc0_c01094{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__c01094{-webkit-text-stroke:0px transparent;}
.sc0_c01094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01094{word-spacing:-15.232320px;}
.ws1_c01094{word-spacing:0.000000px;}
.fc1_c01094{color:transparent;}
.fc0_c01094{color:rgb(0,0,0);}
.fs1_c01094{font-size:59.040000px;}
.fs0_c01094{font-size:72.000000px;}
.yf_c01094{bottom:-11.160000px;}
.y0_c01094{bottom:0.000000px;}
.y2_c01094{bottom:3.195000px;}
.y4_c01094{bottom:3.960000px;}
.y1_c01094{bottom:53.999985px;}
.y3_c01094{bottom:56.114985px;}
.ye_c01094{bottom:60.434985px;}
.yd_c01094{bottom:920.475015px;}
.yc_c01094{bottom:940.995015px;}
.yb_c01094{bottom:961.875015px;}
.ya_c01094{bottom:982.395015px;}
.y9_c01094{bottom:1003.275015px;}
.y8_c01094{bottom:1023.795015px;}
.y7_c01094{bottom:1044.675015px;}
.y6_c01094{bottom:1065.195015px;}
.y5_c01094{bottom:1086.075015px;}
.h6_c01094{height:5.399997px;}
.h4_c01094{height:17.640000px;}
.h3_c01094{height:63.175781px;}
.h5_c01094{height:63.949219px;}
.h2_c01094{height:1201.275000px;}
.h0_c01094{height:1262.835000px;}
.h1_c01094{height:1263.000000px;}
.w3_c01094{width:22.680000px;}
.w4_c01094{width:66.240000px;}
.w2_c01094{width:864.044850px;}
.w0_c01094{width:892.935000px;}
.w1_c01094{width:893.250000px;}
.x0_c01094{left:0.000000px;}
.x6_c01094{left:3.240150px;}
.x1_c01094{left:14.445000px;}
.x2_c01094{left:113.040150px;}
.x5_c01094{left:405.045000px;}
.x4_c01094{left:431.715150px;}
.x3_c01094{left:434.925000px;}
@media print{
.v0_c01094{vertical-align:0.000000pt;}
.ls1_c01094{letter-spacing:0.000000pt;}
.ls0_c01094{letter-spacing:0.419840pt;}
.ws0_c01094{word-spacing:-13.539840pt;}
.ws1_c01094{word-spacing:0.000000pt;}
.fs1_c01094{font-size:52.480000pt;}
.fs0_c01094{font-size:64.000000pt;}
.yf_c01094{bottom:-9.920000pt;}
.y0_c01094{bottom:0.000000pt;}
.y2_c01094{bottom:2.840000pt;}
.y4_c01094{bottom:3.520000pt;}
.y1_c01094{bottom:47.999987pt;}
.y3_c01094{bottom:49.879987pt;}
.ye_c01094{bottom:53.719987pt;}
.yd_c01094{bottom:818.200013pt;}
.yc_c01094{bottom:836.440013pt;}
.yb_c01094{bottom:855.000013pt;}
.ya_c01094{bottom:873.240013pt;}
.y9_c01094{bottom:891.800013pt;}
.y8_c01094{bottom:910.040013pt;}
.y7_c01094{bottom:928.600013pt;}
.y6_c01094{bottom:946.840013pt;}
.y5_c01094{bottom:965.400013pt;}
.h6_c01094{height:4.799997pt;}
.h4_c01094{height:15.680000pt;}
.h3_c01094{height:56.156250pt;}
.h5_c01094{height:56.843750pt;}
.h2_c01094{height:1067.800000pt;}
.h0_c01094{height:1122.520000pt;}
.h1_c01094{height:1122.666667pt;}
.w3_c01094{width:20.160000pt;}
.w4_c01094{width:58.880000pt;}
.w2_c01094{width:768.039867pt;}
.w0_c01094{width:793.720000pt;}
.w1_c01094{width:794.000000pt;}
.x0_c01094{left:0.000000pt;}
.x6_c01094{left:2.880133pt;}
.x1_c01094{left:12.840000pt;}
.x2_c01094{left:100.480133pt;}
.x5_c01094{left:360.040000pt;}
.x4_c01094{left:383.746800pt;}
.x3_c01094{left:386.600000pt;}
}





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

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





.ff0_c01095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01095;src:url('chunks/assets/font_f492744cbe2acd32b85bc777.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:1.093262;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_c01095;src:url('chunks/assets/font_b4c859feb52c0240f4557f03.woff2')format("woff");}.ff2_c01095{font-family:ff2_c01095;line-height:1.104004;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_c01095{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_c01095{vertical-align:0.000000px;}
.ls1_c01095{letter-spacing:0.000000px;}
.ls0_c01095{letter-spacing:0.472320px;}
.sc__c01095{text-shadow:none;}
.sc0_c01095{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__c01095{-webkit-text-stroke:0px transparent;}
.sc0_c01095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01095{word-spacing:-15.232320px;}
.ws1_c01095{word-spacing:0.000000px;}
.fc1_c01095{color:transparent;}
.fc0_c01095{color:rgb(0,0,0);}
.fs1_c01095{font-size:59.040000px;}
.fs0_c01095{font-size:72.000000px;}
.y7_c01095{bottom:-11.160000px;}
.y0_c01095{bottom:0.000000px;}
.y2_c01095{bottom:3.195000px;}
.y4_c01095{bottom:3.960000px;}
.y1_c01095{bottom:53.999985px;}
.y3_c01095{bottom:56.114985px;}
.y8_c01095{bottom:60.434985px;}
.y6_c01095{bottom:246.555000px;}
.y5_c01095{bottom:1086.075015px;}
.h7_c01095{height:5.399997px;}
.h6_c01095{height:5.400009px;}
.h4_c01095{height:17.640000px;}
.h3_c01095{height:63.175781px;}
.h5_c01095{height:63.949219px;}
.h2_c01095{height:1201.275000px;}
.h0_c01095{height:1262.835000px;}
.h1_c01095{height:1263.000000px;}
.w3_c01095{width:22.680000px;}
.w4_c01095{width:39.240000px;}
.w5_c01095{width:66.240000px;}
.w2_c01095{width:864.044850px;}
.w0_c01095{width:892.935000px;}
.w1_c01095{width:893.250000px;}
.x0_c01095{left:0.000000px;}
.x5_c01095{left:3.240150px;}
.x1_c01095{left:14.445000px;}
.x2_c01095{left:113.040150px;}
.x4_c01095{left:431.715150px;}
.x3_c01095{left:434.925000px;}
@media print{
.v0_c01095{vertical-align:0.000000pt;}
.ls1_c01095{letter-spacing:0.000000pt;}
.ls0_c01095{letter-spacing:0.419840pt;}
.ws0_c01095{word-spacing:-13.539840pt;}
.ws1_c01095{word-spacing:0.000000pt;}
.fs1_c01095{font-size:52.480000pt;}
.fs0_c01095{font-size:64.000000pt;}
.y7_c01095{bottom:-9.920000pt;}
.y0_c01095{bottom:0.000000pt;}
.y2_c01095{bottom:2.840000pt;}
.y4_c01095{bottom:3.520000pt;}
.y1_c01095{bottom:47.999987pt;}
.y3_c01095{bottom:49.879987pt;}
.y8_c01095{bottom:53.719987pt;}
.y6_c01095{bottom:219.160000pt;}
.y5_c01095{bottom:965.400013pt;}
.h7_c01095{height:4.799997pt;}
.h6_c01095{height:4.800008pt;}
.h4_c01095{height:15.680000pt;}
.h3_c01095{height:56.156250pt;}
.h5_c01095{height:56.843750pt;}
.h2_c01095{height:1067.800000pt;}
.h0_c01095{height:1122.520000pt;}
.h1_c01095{height:1122.666667pt;}
.w3_c01095{width:20.160000pt;}
.w4_c01095{width:34.880000pt;}
.w5_c01095{width:58.880000pt;}
.w2_c01095{width:768.039867pt;}
.w0_c01095{width:793.720000pt;}
.w1_c01095{width:794.000000pt;}
.x0_c01095{left:0.000000pt;}
.x5_c01095{left:2.880133pt;}
.x1_c01095{left:12.840000pt;}
.x2_c01095{left:100.480133pt;}
.x4_c01095{left:383.746800pt;}
.x3_c01095{left:386.600000pt;}
}




    .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; }
  