
    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_373271a5b5513cbbf61f172e.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:0.975098;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_f35bb27e7c37f6a6a1c1e630.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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00000;src:url('chunks/assets/font_073d59f2e3519f2f65cd4125.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:0.984863;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_6452ee0c28729421ac7e565e.woff2')format("woff");}.ff5_c00000{font-family:ff5_c00000;line-height:0.902000;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_8db422db002fd6ac33117532.woff2')format("woff");}.ff6_c00000{font-family:ff6_c00000;line-height:1.001000;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_2707d29e2eb5a93284972ee5.woff2')format("woff");}.ff7_c00000{font-family:ff7_c00000;line-height:1.001000;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_f36a9dd8d7749c5ccf4af304.woff2')format("woff");}.ff8_c00000{font-family:ff8_c00000;line-height:1.001000;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_064b57dc3149624b6f83ca70.woff2')format("woff");}.ff9_c00000{font-family:ff9_c00000;line-height:1.000000;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_f3bfff766733a84435390ee7.woff2')format("woff");}.ffa_c00000{font-family:ffa_c00000;line-height:0.697000;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_523f43d262d31bf37fe6c866.woff2')format("woff");}.ffb_c00000{font-family:ffb_c00000;line-height:0.696000;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_d3921ca7f719fe6a4030f618.woff2')format("woff");}.ffc_c00000{font-family:ffc_c00000;line-height:1.000000;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:ffd_c00000;src:url('chunks/assets/font_9535932d49ae2bd9c5db2e0a.woff2')format("woff");}.ffd_c00000{font-family:ffd_c00000;line-height:1.000000;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:ffe_c00000;src:url('chunks/assets/font_d29ba4ebcf3d0ceb81e51d5d.woff2')format("woff");}.ffe_c00000{font-family:ffe_c00000;line-height:0.462000;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:fff_c00000;src:url('chunks/assets/font_2ca40387b97dba271bfdcb98.woff2')format("woff");}.fff_c00000{font-family:fff_c00000;line-height:1.000000;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:ff10_c00000;src:url('chunks/assets/font_7e164990344f0033ca9f6592.woff2')format("woff");}.ff10_c00000{font-family:ff10_c00000;line-height:0.459000;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:-21.690000px;}
.v9_c00000{vertical-align:-6.582000px;}
.v0_c00000{vertical-align:0.000000px;}
.va_c00000{vertical-align:5.976000px;}
.v8_c00000{vertical-align:7.170000px;}
.v1_c00000{vertical-align:11.520000px;}
.v7_c00000{vertical-align:15.108000px;}
.v3_c00000{vertical-align:17.334000px;}
.v2_c00000{vertical-align:20.802000px;}
.v5_c00000{vertical-align:26.034000px;}
.v4_c00000{vertical-align:35.940000px;}
.ls4_c00000{letter-spacing:-0.794880px;}
.ls6_c00000{letter-spacing:-0.662400px;}
.lsd_c00000{letter-spacing:-0.480960px;}
.ls8_c00000{letter-spacing:-0.463680px;}
.lsb_c00000{letter-spacing:-0.336960px;}
.ls7_c00000{letter-spacing:-0.331200px;}
.lsf_c00000{letter-spacing:-0.216000px;}
.ls2_c00000{letter-spacing:-0.198720px;}
.ls11_c00000{letter-spacing:-0.191520px;}
.lse_c00000{letter-spacing:-0.168480px;}
.ls5_c00000{letter-spacing:-0.132480px;}
.lsc_c00000{letter-spacing:-0.120240px;}
.ls13_c00000{letter-spacing:-0.084240px;}
.ls3_c00000{letter-spacing:0.000000px;}
.ls9c_c00000{letter-spacing:0.001440px;}
.ls49_c00000{letter-spacing:0.002880px;}
.lsa1_c00000{letter-spacing:0.003000px;}
.ls105_c00000{letter-spacing:0.037740px;}
.lsa_c00000{letter-spacing:0.131760px;}
.ls10_c00000{letter-spacing:0.191520px;}
.ls12_c00000{letter-spacing:0.252720px;}
.ls1_c00000{letter-spacing:0.263520px;}
.ls9_c00000{letter-spacing:0.335520px;}
.ls1a_c00000{letter-spacing:2.999580px;}
.ls18_c00000{letter-spacing:3.004764px;}
.ls17_c00000{letter-spacing:3.005580px;}
.ls1d_c00000{letter-spacing:3.010764px;}
.ls21_c00000{letter-spacing:5.371182px;}
.ls32_c00000{letter-spacing:7.443432px;}
.ls79_c00000{letter-spacing:7.452270px;}
.ls4e_c00000{letter-spacing:7.456716px;}
.lsf8_c00000{letter-spacing:7.458270px;}
.lsf6_c00000{letter-spacing:7.462716px;}
.lsb7_c00000{letter-spacing:7.466358px;}
.ls50_c00000{letter-spacing:7.468500px;}
.lsee_c00000{letter-spacing:7.477392px;}
.lsd9_c00000{letter-spacing:8.298750px;}
.ls30_c00000{letter-spacing:8.304750px;}
.ls15_c00000{letter-spacing:8.772180px;}
.ls20_c00000{letter-spacing:10.474764px;}
.ls104_c00000{letter-spacing:15.219216px;}
.ls103_c00000{letter-spacing:15.357216px;}
.ls53_c00000{letter-spacing:16.039440px;}
.ls107_c00000{letter-spacing:16.117590px;}
.ls106_c00000{letter-spacing:16.135440px;}
.ls11b_c00000{letter-spacing:16.386300px;}
.ls11a_c00000{letter-spacing:16.411440px;}
.ls46_c00000{letter-spacing:16.843590px;}
.ls114_c00000{letter-spacing:16.894764px;}
.ls11d_c00000{letter-spacing:16.939440px;}
.ls1f_c00000{letter-spacing:17.305716px;}
.lsf3_c00000{letter-spacing:17.313450px;}
.lsa3_c00000{letter-spacing:17.485590px;}
.ls9e_c00000{letter-spacing:17.818764px;}
.ls2c_c00000{letter-spacing:17.922300px;}
.ls1c_c00000{letter-spacing:17.989716px;}
.ls25_c00000{letter-spacing:18.033450px;}
.ls101_c00000{letter-spacing:18.055590px;}
.ls100_c00000{letter-spacing:18.061590px;}
.lsa0_c00000{letter-spacing:18.112764px;}
.lsa6_c00000{letter-spacing:18.268764px;}
.ls38_c00000{letter-spacing:18.460764px;}
.lsd1_c00000{letter-spacing:18.472764px;}
.lsfa_c00000{letter-spacing:18.604764px;}
.ls78_c00000{letter-spacing:18.617580px;}
.ls86_c00000{letter-spacing:18.733590px;}
.ls84_c00000{letter-spacing:18.751440px;}
.lse6_c00000{letter-spacing:18.775590px;}
.lse5_c00000{letter-spacing:18.787440px;}
.ls92_c00000{letter-spacing:18.874764px;}
.ls7e_c00000{letter-spacing:18.973590px;}
.lsed_c00000{letter-spacing:19.006764px;}
.ls10b_c00000{letter-spacing:19.036764px;}
.ls54_c00000{letter-spacing:19.110300px;}
.lsf2_c00000{letter-spacing:19.111590px;}
.lsb6_c00000{letter-spacing:19.336764px;}
.ls3c_c00000{letter-spacing:19.368072px;}
.ls45_c00000{letter-spacing:19.498764px;}
.ls87_c00000{letter-spacing:19.645440px;}
.ls10c_c00000{letter-spacing:19.684764px;}
.ls10e_c00000{letter-spacing:19.705440px;}
.ls5c_c00000{letter-spacing:19.786518px;}
.lsd6_c00000{letter-spacing:19.909716px;}
.lsa4_c00000{letter-spacing:19.911216px;}
.lsd5_c00000{letter-spacing:19.915716px;}
.ls31_c00000{letter-spacing:19.924764px;}
.lsad_c00000{letter-spacing:19.957716px;}
.ls7f_c00000{letter-spacing:20.038764px;}
.ls82_c00000{letter-spacing:20.351580px;}
.ls24_c00000{letter-spacing:20.443590px;}
.lsf0_c00000{letter-spacing:20.563632px;}
.ls8c_c00000{letter-spacing:20.596764px;}
.ls116_c00000{letter-spacing:20.652300px;}
.ls118_c00000{letter-spacing:20.743590px;}
.ls71_c00000{letter-spacing:20.764764px;}
.ls4c_c00000{letter-spacing:20.803440px;}
.lsfb_c00000{letter-spacing:20.859000px;}
.ls102_c00000{letter-spacing:20.877216px;}
.ls60_c00000{letter-spacing:20.976870px;}
.lsc1_c00000{letter-spacing:21.055440px;}
.ls111_c00000{letter-spacing:21.059580px;}
.lsab_c00000{letter-spacing:21.122340px;}
.ls29_c00000{letter-spacing:21.136764px;}
.ls63_c00000{letter-spacing:21.199590px;}
.lsf4_c00000{letter-spacing:21.208764px;}
.lsd0_c00000{letter-spacing:21.237216px;}
.lscf_c00000{letter-spacing:21.241716px;}
.ls73_c00000{letter-spacing:21.253590px;}
.lsb8_c00000{letter-spacing:21.280968px;}
.lsaa_c00000{letter-spacing:21.283716px;}
.lse3_c00000{letter-spacing:21.460302px;}
.ls19_c00000{letter-spacing:21.461580px;}
.ls8f_c00000{letter-spacing:21.484764px;}
.ls5e_c00000{letter-spacing:21.700764px;}
.lsdb_c00000{letter-spacing:21.758340px;}
.ls108_c00000{letter-spacing:21.818970px;}
.ls34_c00000{letter-spacing:21.868764px;}
.ls6c_c00000{letter-spacing:21.949590px;}
.lsdd_c00000{letter-spacing:21.950880px;}
.ls70_c00000{letter-spacing:21.975216px;}
.ls77_c00000{letter-spacing:22.031580px;}
.ls109_c00000{letter-spacing:22.033590px;}
.ls72_c00000{letter-spacing:22.039590px;}
.lsce_c00000{letter-spacing:22.093716px;}
.ls117_c00000{letter-spacing:22.159440px;}
.ls56_c00000{letter-spacing:22.237416px;}
.ls1e_c00000{letter-spacing:22.276764px;}
.ls51_c00000{letter-spacing:22.444764px;}
.lsfd_c00000{letter-spacing:22.459590px;}
.ls8e_c00000{letter-spacing:22.471590px;}
.ls8d_c00000{letter-spacing:22.483440px;}
.ls44_c00000{letter-spacing:22.495440px;}
.lsc5_c00000{letter-spacing:22.571580px;}
.ls8b_c00000{letter-spacing:22.597590px;}
.lse8_c00000{letter-spacing:22.655862px;}
.ls2f_c00000{letter-spacing:22.702764px;}
.ls6f_c00000{letter-spacing:22.717590px;}
.ls23_c00000{letter-spacing:22.930764px;}
.ls27_c00000{letter-spacing:22.936764px;}
.ls61_c00000{letter-spacing:23.004870px;}
.ls1b_c00000{letter-spacing:23.032764px;}
.lse7_c00000{letter-spacing:23.174340px;}
.ls5d_c00000{letter-spacing:23.188764px;}
.ls97_c00000{letter-spacing:23.203590px;}
.ls64_c00000{letter-spacing:23.215590px;}
.ls96_c00000{letter-spacing:23.221440px;}
.ls2b_c00000{letter-spacing:23.382300px;}
.ls52_c00000{letter-spacing:23.384340px;}
.ls62_c00000{letter-spacing:23.394870px;}
.ls6a_c00000{letter-spacing:23.395590px;}
.lse0_c00000{letter-spacing:23.401590px;}
.lsbc_c00000{letter-spacing:23.407440px;}
.lsbb_c00000{letter-spacing:23.413440px;}
.ls2d_c00000{letter-spacing:23.496300px;}
.ls4f_c00000{letter-spacing:23.518764px;}
.lse4_c00000{letter-spacing:23.530764px;}
.ls43_c00000{letter-spacing:23.785590px;}
.ls3d_c00000{letter-spacing:23.791644px;}
.ls9a_c00000{letter-spacing:23.794764px;}
.ls9f_c00000{letter-spacing:23.800764px;}
.lse2_c00000{letter-spacing:23.814300px;}
.lse1_c00000{letter-spacing:23.839440px;}
.ls10f_c00000{letter-spacing:23.911590px;}
.ls119_c00000{letter-spacing:23.998764px;}
.lsb4_c00000{letter-spacing:24.118932px;}
.ls115_c00000{letter-spacing:24.145440px;}
.lsa5_c00000{letter-spacing:24.250764px;}
.ls2e_c00000{letter-spacing:24.316764px;}
.lsd2_c00000{letter-spacing:24.389424px;}
.lsde_c00000{letter-spacing:24.391440px;}
.lsa2_c00000{letter-spacing:24.520764px;}
.ls74_c00000{letter-spacing:24.539580px;}
.lsa8_c00000{letter-spacing:24.568764px;}
.ls9d_c00000{letter-spacing:24.574764px;}
.ls95_c00000{letter-spacing:24.592764px;}
.ls3a_c00000{letter-spacing:24.745590px;}
.lsc4_c00000{letter-spacing:24.911580px;}
.ls67_c00000{letter-spacing:24.973590px;}
.ls80_c00000{letter-spacing:25.009590px;}
.ls113_c00000{letter-spacing:25.072764px;}
.ls4d_c00000{letter-spacing:25.085580px;}
.ls7c_c00000{letter-spacing:25.109580px;}
.ls10a_c00000{letter-spacing:25.174764px;}
.ls91_c00000{letter-spacing:25.193580px;}
.ls2a_c00000{letter-spacing:25.234764px;}
.lsf7_c00000{letter-spacing:25.264764px;}
.lsfe_c00000{letter-spacing:25.327590px;}
.lsb2_c00000{letter-spacing:25.364340px;}
.lsdc_c00000{letter-spacing:25.470300px;}
.ls7b_c00000{letter-spacing:25.504764px;}
.lsf1_c00000{letter-spacing:25.598340px;}
.ls28_c00000{letter-spacing:25.648764px;}
.ls47_c00000{letter-spacing:25.750764px;}
.ls11c_c00000{letter-spacing:25.764318px;}
.ls41_c00000{letter-spacing:25.814340px;}
.lsea_c00000{letter-spacing:25.864764px;}
.ls8a_c00000{letter-spacing:25.906932px;}
.ls68_c00000{letter-spacing:25.927590px;}
.ls57_c00000{letter-spacing:25.960764px;}
.ls4b_c00000{letter-spacing:26.411580px;}
.ls35_c00000{letter-spacing:26.417580px;}
.lse9_c00000{letter-spacing:26.524764px;}
.lsf9_c00000{letter-spacing:26.656764px;}
.lsba_c00000{letter-spacing:26.671440px;}
.lsd7_c00000{letter-spacing:26.748300px;}
.ls6e_c00000{letter-spacing:26.755590px;}
.ls55_c00000{letter-spacing:26.756340px;}
.ls6d_c00000{letter-spacing:26.773440px;}
.lsa9_c00000{letter-spacing:26.779440px;}
.lsef_c00000{letter-spacing:26.836764px;}
.ls90_c00000{letter-spacing:26.932764px;}
.lsec_c00000{letter-spacing:27.071580px;}
.ls110_c00000{letter-spacing:27.150300px;}
.ls75_c00000{letter-spacing:27.520764px;}
.lsd8_c00000{letter-spacing:27.565440px;}
.ls83_c00000{letter-spacing:27.589590px;}
.lsac_c00000{letter-spacing:27.757440px;}
.ls88_c00000{letter-spacing:27.787440px;}
.ls89_c00000{letter-spacing:27.793440px;}
.ls81_c00000{letter-spacing:27.823590px;}
.lsbf_c00000{letter-spacing:27.824340px;}
.ls26_c00000{letter-spacing:27.886764px;}
.lsc9_c00000{letter-spacing:28.045440px;}
.lsc2_c00000{letter-spacing:28.048764px;}
.lsf5_c00000{letter-spacing:28.102764px;}
.ls9b_c00000{letter-spacing:28.168764px;}
.ls94_c00000{letter-spacing:28.180764px;}
.lsc8_c00000{letter-spacing:28.256340px;}
.ls22_c00000{letter-spacing:28.391580px;}
.lsd4_c00000{letter-spacing:28.483716px;}
.lsd3_c00000{letter-spacing:28.489716px;}
.lsdf_c00000{letter-spacing:28.585590px;}
.ls37_c00000{letter-spacing:28.609590px;}
.lsbe_c00000{letter-spacing:28.801440px;}
.ls93_c00000{letter-spacing:28.855590px;}
.ls48_c00000{letter-spacing:28.883580px;}
.lsc0_c00000{letter-spacing:28.888764px;}
.lsda_c00000{letter-spacing:28.968300px;}
.lsc7_c00000{letter-spacing:28.984764px;}
.lseb_c00000{letter-spacing:29.315580px;}
.ls112_c00000{letter-spacing:29.735580px;}
.ls99_c00000{letter-spacing:29.755590px;}
.ls98_c00000{letter-spacing:29.767440px;}
.ls58_c00000{letter-spacing:29.864340px;}
.lsb9_c00000{letter-spacing:29.870340px;}
.lscc_c00000{letter-spacing:30.000300px;}
.ls6b_c00000{letter-spacing:30.097590px;}
.ls10d_c00000{letter-spacing:30.406764px;}
.ls33_c00000{letter-spacing:30.496764px;}
.lsb0_c00000{letter-spacing:30.607590px;}
.lsae_c00000{letter-spacing:30.625440px;}
.lsaf_c00000{letter-spacing:30.631440px;}
.ls3f_c00000{letter-spacing:30.635580px;}
.ls39_c00000{letter-spacing:30.668340px;}
.lsa7_c00000{letter-spacing:31.222764px;}
.ls36_c00000{letter-spacing:31.315440px;}
.ls5a_c00000{letter-spacing:31.405440px;}
.ls85_c00000{letter-spacing:31.417440px;}
.lsb3_c00000{letter-spacing:31.448340px;}
.ls7a_c00000{letter-spacing:31.453590px;}
.ls5f_c00000{letter-spacing:31.470870px;}
.lscb_c00000{letter-spacing:31.531590px;}
.lsca_c00000{letter-spacing:31.543440px;}
.ls7d_c00000{letter-spacing:31.703580px;}
.lsbd_c00000{letter-spacing:31.805580px;}
.ls76_c00000{letter-spacing:31.984764px;}
.ls69_c00000{letter-spacing:32.083590px;}
.ls66_c00000{letter-spacing:32.371590px;}
.ls65_c00000{letter-spacing:32.389440px;}
.lscd_c00000{letter-spacing:32.659590px;}
.lsb5_c00000{letter-spacing:33.380340px;}
.ls40_c00000{letter-spacing:33.443580px;}
.ls59_c00000{letter-spacing:33.774300px;}
.ls4a_c00000{letter-spacing:33.785580px;}
.ls3b_c00000{letter-spacing:34.208340px;}
.lsb1_c00000{letter-spacing:34.322340px;}
.lsc3_c00000{letter-spacing:34.595580px;}
.ls3e_c00000{letter-spacing:34.718340px;}
.lsfc_c00000{letter-spacing:35.558340px;}
.ls14_c00000{letter-spacing:35.865000px;}
.ls5b_c00000{letter-spacing:36.061590px;}
.lsff_c00000{letter-spacing:37.501440px;}
.ls42_c00000{letter-spacing:38.048340px;}
.lsc6_c00000{letter-spacing:38.063580px;}
.ls0_c00000{letter-spacing:66.605760px;}
.ls16_c00000{letter-spacing:109.799400px;}
.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;}
}
.ws6_c00000{word-spacing:-45.966240px;}
.ws8_c00000{word-spacing:-36.365760px;}
.ws7_c00000{word-spacing:-36.102240px;}
.ws2c_c00000{word-spacing:-35.936730px;}
.wsa_c00000{word-spacing:-32.464800px;}
.ws532_c00000{word-spacing:-25.824096px;}
.ws26_c00000{word-spacing:-25.033770px;}
.ws458_c00000{word-spacing:-24.449202px;}
.ws28f_c00000{word-spacing:-23.851422px;}
.wsb_c00000{word-spacing:-22.913280px;}
.ws9_c00000{word-spacing:-22.744800px;}
.ws496_c00000{word-spacing:-22.715640px;}
.ws2f7_c00000{word-spacing:-22.297194px;}
.ws4e0_c00000{word-spacing:-21.878748px;}
.ws488_c00000{word-spacing:-21.520080px;}
.ws3fd_c00000{word-spacing:-21.340746px;}
.ws4b7_c00000{word-spacing:-20.623410px;}
.ws31d_c00000{word-spacing:-19.846296px;}
.ws28_c00000{word-spacing:-19.510560px;}
.ws285_c00000{word-spacing:-19.427850px;}
.ws3a_c00000{word-spacing:-18.578070px;}
.ws2_c00000{word-spacing:-18.149760px;}
.ws0_c00000{word-spacing:-18.083520px;}
.ws4_c00000{word-spacing:-17.951040px;}
.ws5_c00000{word-spacing:-17.818560px;}
.ws3_c00000{word-spacing:-17.619840px;}
.ws1_c00000{word-spacing:-17.487360px;}
.ws32_c00000{word-spacing:-16.641360px;}
.ws39_c00000{word-spacing:-15.780600px;}
.ws31_c00000{word-spacing:-12.409290px;}
.ws2a_c00000{word-spacing:-11.476800px;}
.ws29_c00000{word-spacing:-10.974690px;}
.ws34_c00000{word-spacing:-9.468360px;}
.ws3c_c00000{word-spacing:-1.649790px;}
.ws16_c00000{word-spacing:-0.589680px;}
.ws11_c00000{word-spacing:-0.480960px;}
.ws14_c00000{word-spacing:-0.478800px;}
.wsd_c00000{word-spacing:-0.264960px;}
.wsf_c00000{word-spacing:-0.263520px;}
.ws17_c00000{word-spacing:-0.252720px;}
.wse_c00000{word-spacing:-0.167760px;}
.ws3f_c00000{word-spacing:-0.148722px;}
.ws10_c00000{word-spacing:-0.131760px;}
.ws15_c00000{word-spacing:-0.095760px;}
.wsd3_c00000{word-spacing:-0.086076px;}
.ws27_c00000{word-spacing:-0.071730px;}
.ws98_c00000{word-spacing:-0.059778px;}
.ws102_c00000{word-spacing:-0.047820px;}
.wsfd_c00000{word-spacing:-0.041844px;}
.wsc_c00000{word-spacing:0.000000px;}
.ws18_c00000{word-spacing:0.084240px;}
.ws13_c00000{word-spacing:0.108000px;}
.ws12_c00000{word-spacing:0.120240px;}
.ws35_c00000{word-spacing:1.004220px;}
.ws4e5_c00000{word-spacing:8.379684px;}
.ws1d1_c00000{word-spacing:9.086256px;}
.ws174_c00000{word-spacing:9.863370px;}
.ws3cf_c00000{word-spacing:10.413840px;}
.ws267_c00000{word-spacing:11.620260px;}
.ws4da_c00000{word-spacing:13.379580px;}
.ws233_c00000{word-spacing:13.390272px;}
.ws4b2_c00000{word-spacing:13.450050px;}
.ws472_c00000{word-spacing:13.509828px;}
.ws4f2_c00000{word-spacing:13.517154px;}
.ws3c3_c00000{word-spacing:13.569606px;}
.ws3a3_c00000{word-spacing:13.629384px;}
.ws50b_c00000{word-spacing:13.689162px;}
.ws2ad_c00000{word-spacing:13.748940px;}
.ws35c_c00000{word-spacing:13.808718px;}
.ws173_c00000{word-spacing:13.868496px;}
.ws4ad_c00000{word-spacing:14.039796px;}
.ws2f1_c00000{word-spacing:14.047830px;}
.ws1e8_c00000{word-spacing:14.107608px;}
.ws4ac_c00000{word-spacing:14.167386px;}
.ws1d2_c00000{word-spacing:14.227164px;}
.ws1d3_c00000{word-spacing:14.241654px;}
.ws1c4_c00000{word-spacing:14.286942px;}
.ws1a6_c00000{word-spacing:14.346720px;}
.ws4bd_c00000{word-spacing:14.406498px;}
.ws35d_c00000{word-spacing:14.466276px;}
.ws277_c00000{word-spacing:14.526054px;}
.ws289_c00000{word-spacing:14.585832px;}
.ws1c7_c00000{word-spacing:14.645610px;}
.ws1c9_c00000{word-spacing:14.705388px;}
.ws163_c00000{word-spacing:14.765166px;}
.ws3c2_c00000{word-spacing:14.824944px;}
.ws20e_c00000{word-spacing:14.884722px;}
.ws3b2_c00000{word-spacing:14.944500px;}
.ws2d2_c00000{word-spacing:14.986200px;}
.ws254_c00000{word-spacing:15.004278px;}
.ws216_c00000{word-spacing:15.039246px;}
.ws215_c00000{word-spacing:15.064056px;}
.ws2de_c00000{word-spacing:15.123834px;}
.ws386_c00000{word-spacing:15.183612px;}
.ws2c7_c00000{word-spacing:15.243390px;}
.ws4de_c00000{word-spacing:15.303168px;}
.wsa8_c00000{word-spacing:15.362946px;}
.ws234_c00000{word-spacing:15.422724px;}
.ws231_c00000{word-spacing:15.461442px;}
.ws232_c00000{word-spacing:15.482502px;}
.ws415_c00000{word-spacing:15.493200px;}
.ws71_c00000{word-spacing:15.493680px;}
.wscc_c00000{word-spacing:15.542280px;}
.ws25b_c00000{word-spacing:15.565410px;}
.ws2ae_c00000{word-spacing:15.602058px;}
.ws307_c00000{word-spacing:15.603006px;}
.ws19e_c00000{word-spacing:15.637140px;}
.ws9c_c00000{word-spacing:15.640440px;}
.ws9b_c00000{word-spacing:15.661836px;}
.ws123_c00000{word-spacing:15.708870px;}
.ws28c_c00000{word-spacing:15.721614px;}
.ws3e1_c00000{word-spacing:15.727410px;}
.ws49_c00000{word-spacing:15.780600px;}
.ws2bb_c00000{word-spacing:15.781392px;}
.ws1c3_c00000{word-spacing:15.841170px;}
.ws268_c00000{word-spacing:15.852330px;}
.ws160_c00000{word-spacing:15.900948px;}
.ws226_c00000{word-spacing:15.924060px;}
.ws17a_c00000{word-spacing:15.960726px;}
.ws3cc_c00000{word-spacing:15.978930px;}
.ws6f_c00000{word-spacing:15.995790px;}
.ws4b3_c00000{word-spacing:16.000056px;}
.ws1e7_c00000{word-spacing:16.020504px;}
.ws11e_c00000{word-spacing:16.067520px;}
.ws310_c00000{word-spacing:16.074690px;}
.ws113_c00000{word-spacing:16.080282px;}
.ws2c2_c00000{word-spacing:16.139250px;}
.ws1d4_c00000{word-spacing:16.140060px;}
.ws508_c00000{word-spacing:16.156554px;}
.ws350_c00000{word-spacing:16.199838px;}
.ws4f4_c00000{word-spacing:16.209090px;}
.ws286_c00000{word-spacing:16.210980px;}
.ws1a5_c00000{word-spacing:16.259616px;}
.ws291_c00000{word-spacing:16.282710px;}
.ws2e9_c00000{word-spacing:16.319394px;}
.ws11f_c00000{word-spacing:16.354440px;}
.ws276_c00000{word-spacing:16.379172px;}
.ws13e_c00000{word-spacing:16.426170px;}
.ws203_c00000{word-spacing:16.438950px;}
.ws47a_c00000{word-spacing:16.465470px;}
.ws13a_c00000{word-spacing:16.497900px;}
.ws212_c00000{word-spacing:16.498728px;}
.ws3c7_c00000{word-spacing:16.534320px;}
.ws1c8_c00000{word-spacing:16.558506px;}
.ws19d_c00000{word-spacing:16.569630px;}
.ws1a9_c00000{word-spacing:16.618284px;}
.ws1be_c00000{word-spacing:16.641360px;}
.ws162_c00000{word-spacing:16.678062px;}
.ws1da_c00000{word-spacing:16.713090px;}
.ws1ca_c00000{word-spacing:16.737840px;}
.ws72_c00000{word-spacing:16.784820px;}
.ws12f_c00000{word-spacing:16.797618px;}
.ws165_c00000{word-spacing:16.856550px;}
.wse0_c00000{word-spacing:16.857396px;}
.ws217_c00000{word-spacing:16.917174px;}
.ws111_c00000{word-spacing:16.928280px;}
.ws1a4_c00000{word-spacing:16.976952px;}
.ws2a5_c00000{word-spacing:17.000010px;}
.ws264_c00000{word-spacing:17.036730px;}
.ws526_c00000{word-spacing:17.068740px;}
.ws2d_c00000{word-spacing:17.071740px;}
.ws17e_c00000{word-spacing:17.096508px;}
.ws52e_c00000{word-spacing:17.116320px;}
.ws1fb_c00000{word-spacing:17.141016px;}
.ws1e2_c00000{word-spacing:17.143470px;}
.wsa9_c00000{word-spacing:17.156286px;}
.ws1bd_c00000{word-spacing:17.215200px;}
.wsa7_c00000{word-spacing:17.216064px;}
.ws419_c00000{word-spacing:17.258892px;}
.ws202_c00000{word-spacing:17.275842px;}
.ws1fa_c00000{word-spacing:17.286930px;}
.wscd_c00000{word-spacing:17.335620px;}
.ws23d_c00000{word-spacing:17.358660px;}
.ws99_c00000{word-spacing:17.395398px;}
.ws269_c00000{word-spacing:17.430390px;}
.ws16e_c00000{word-spacing:17.455176px;}
.ws24f_c00000{word-spacing:17.502120px;}
.wsbf_c00000{word-spacing:17.506722px;}
.ws96_c00000{word-spacing:17.514954px;}
.ws39a_c00000{word-spacing:17.515422px;}
.wsa0_c00000{word-spacing:17.533428px;}
.ws84_c00000{word-spacing:17.573850px;}
.ws9f_c00000{word-spacing:17.574732px;}
.ws2cc_c00000{word-spacing:17.634510px;}
.ws13f_c00000{word-spacing:17.645580px;}
.ws15f_c00000{word-spacing:17.694288px;}
.ws34d_c00000{word-spacing:17.697390px;}
.ws178_c00000{word-spacing:17.717310px;}
.wsbe_c00000{word-spacing:17.754066px;}
.ws2ef_c00000{word-spacing:17.772000px;}
.ws190_c00000{word-spacing:17.789040px;}
.ws14b_c00000{word-spacing:17.813844px;}
.ws1cf_c00000{word-spacing:17.860770px;}
.wsb8_c00000{word-spacing:17.873622px;}
.wsdb_c00000{word-spacing:17.932500px;}
.wsb7_c00000{word-spacing:17.933400px;}
.ws4fd_c00000{word-spacing:17.961360px;}
.ws14a_c00000{word-spacing:17.993178px;}
.ws127_c00000{word-spacing:18.004230px;}
.ws116_c00000{word-spacing:18.052956px;}
.ws198_c00000{word-spacing:18.075960px;}
.wsb3_c00000{word-spacing:18.112734px;}
.ws4c3_c00000{word-spacing:18.138672px;}
.wseb_c00000{word-spacing:18.147690px;}
.ws204_c00000{word-spacing:18.172512px;}
.ws132_c00000{word-spacing:18.219420px;}
.ws213_c00000{word-spacing:18.232290px;}
.ws243_c00000{word-spacing:18.253302px;}
.ws120_c00000{word-spacing:18.291150px;}
.ws148_c00000{word-spacing:18.292068px;}
.ws147_c00000{word-spacing:18.316950px;}
.ws214_c00000{word-spacing:18.351846px;}
.ws8f_c00000{word-spacing:18.362880px;}
.wsbb_c00000{word-spacing:18.406722px;}
.wsba_c00000{word-spacing:18.411624px;}
.wsf3_c00000{word-spacing:18.434610px;}
.wse2_c00000{word-spacing:18.471402px;}
.ws3df_c00000{word-spacing:18.495762px;}
.ws5c_c00000{word-spacing:18.506340px;}
.wsa3_c00000{word-spacing:18.531180px;}
.ws416_c00000{word-spacing:18.539100px;}
.wse9_c00000{word-spacing:18.578070px;}
.wsdf_c00000{word-spacing:18.590958px;}
.ws323_c00000{word-spacing:18.647148px;}
.ws18b_c00000{word-spacing:18.649800px;}
.ws62_c00000{word-spacing:18.650736px;}
.ws3da_c00000{word-spacing:18.706590px;}
.ws265_c00000{word-spacing:18.710514px;}
.ws38f_c00000{word-spacing:18.719970px;}
.ws250_c00000{word-spacing:18.721530px;}
.ws4bb_c00000{word-spacing:18.744720px;}
.ws228_c00000{word-spacing:18.770292px;}
.ws1ea_c00000{word-spacing:18.793260px;}
.ws1ba_c00000{word-spacing:18.830070px;}
.ws121_c00000{word-spacing:18.864990px;}
.wse1_c00000{word-spacing:18.889848px;}
.ws110_c00000{word-spacing:18.936720px;}
.ws2ce_c00000{word-spacing:18.939420px;}
.ws4df_c00000{word-spacing:18.939954px;}
.ws244_c00000{word-spacing:18.949626px;}
.ws225_c00000{word-spacing:18.989340px;}
.ws129_c00000{word-spacing:19.008450px;}
.ws1fc_c00000{word-spacing:19.009404px;}
.ws4c1_c00000{word-spacing:19.022640px;}
.ws9a_c00000{word-spacing:19.069182px;}
.ws11d_c00000{word-spacing:19.080180px;}
.ws36a_c00000{word-spacing:19.098630px;}
.ws16f_c00000{word-spacing:19.128960px;}
.ws55_c00000{word-spacing:19.151910px;}
.ws95_c00000{word-spacing:19.188738px;}
.wsc4_c00000{word-spacing:19.215006px;}
.ws1bf_c00000{word-spacing:19.223640px;}
.ws67_c00000{word-spacing:19.248516px;}
.ws2fa_c00000{word-spacing:19.277100px;}
.ws29f_c00000{word-spacing:19.289340px;}
.ws1b4_c00000{word-spacing:19.295370px;}
.ws4f3_c00000{word-spacing:19.307340px;}
.ws15e_c00000{word-spacing:19.308294px;}
.ws177_c00000{word-spacing:19.367100px;}
.wsbd_c00000{word-spacing:19.368072px;}
.ws47d_c00000{word-spacing:19.418850px;}
.ws2fb_c00000{word-spacing:19.427850px;}
.wsdc_c00000{word-spacing:19.438830px;}
.ws432_c00000{word-spacing:19.451820px;}
.wsaa_c00000{word-spacing:19.487628px;}
.ws1f9_c00000{word-spacing:19.510560px;}
.ws442_c00000{word-spacing:19.523340px;}
.wsb9_c00000{word-spacing:19.547406px;}
.ws37e_c00000{word-spacing:19.557240px;}
.ws471_c00000{word-spacing:19.575780px;}
.ws89_c00000{word-spacing:19.582290px;}
.ws3e7_c00000{word-spacing:19.603470px;}
.wsca_c00000{word-spacing:19.607184px;}
.ws4f9_c00000{word-spacing:19.630290px;}
.ws23f_c00000{word-spacing:19.654020px;}
.ws115_c00000{word-spacing:19.666962px;}
.ws8e_c00000{word-spacing:19.725750px;}
.wsa5_c00000{word-spacing:19.726740px;}
.ws2c6_c00000{word-spacing:19.731210px;}
.wse6_c00000{word-spacing:19.786518px;}
.ws3ac_c00000{word-spacing:19.790580px;}
.ws109_c00000{word-spacing:19.797480px;}
.ws4ba_c00000{word-spacing:19.807470px;}
.ws4e2_c00000{word-spacing:19.812600px;}
.ws4e6_c00000{word-spacing:19.824354px;}
.ws3bc_c00000{word-spacing:19.826154px;}
.ws3bf_c00000{word-spacing:19.829250px;}
.ws1e9_c00000{word-spacing:19.829262px;}
.ws447_c00000{word-spacing:19.829346px;}
.ws377_c00000{word-spacing:19.829988px;}
.ws2da_c00000{word-spacing:19.831554px;}
.ws2cd_c00000{word-spacing:19.833054px;}
.ws2e0_c00000{word-spacing:19.833354px;}
.ws3a1_c00000{word-spacing:19.833654px;}
.ws4ea_c00000{word-spacing:19.835154px;}
.ws304_c00000{word-spacing:19.835688px;}
.ws3ee_c00000{word-spacing:19.836288px;}
.ws1d0_c00000{word-spacing:19.836384px;}
.ws426_c00000{word-spacing:19.837146px;}
.ws2db_c00000{word-spacing:19.838154px;}
.ws35b_c00000{word-spacing:19.839246px;}
.ws498_c00000{word-spacing:19.839438px;}
.ws3a7_c00000{word-spacing:19.839654px;}
.ws388_c00000{word-spacing:19.841046px;}
.ws2b5_c00000{word-spacing:19.841838px;}
.ws2d6_c00000{word-spacing:19.842930px;}
.ws303_c00000{word-spacing:19.845138px;}
.ws1c1_c00000{word-spacing:19.846134px;}
.ws6a_c00000{word-spacing:19.846296px;}
.ws1ee_c00000{word-spacing:19.847388px;}
.ws37b_c00000{word-spacing:19.848288px;}
.ws384_c00000{word-spacing:19.849638px;}
.ws429_c00000{word-spacing:19.849938px;}
.ws404_c00000{word-spacing:19.850772px;}
.ws27a_c00000{word-spacing:19.852830px;}
.ws30a_c00000{word-spacing:19.852938px;}
.ws4a6_c00000{word-spacing:19.858080px;}
.ws383_c00000{word-spacing:19.858164px;}
.ws51c_c00000{word-spacing:19.859172px;}
.ws4bc_c00000{word-spacing:19.860072px;}
.ws475_c00000{word-spacing:19.864764px;}
.ws33e_c00000{word-spacing:19.868664px;}
.ws1f7_c00000{word-spacing:19.869006px;}
.wscf_c00000{word-spacing:19.869210px;}
.ws2e8_c00000{word-spacing:19.869864px;}
.ws15c_c00000{word-spacing:19.872306px;}
.ws1fe_c00000{word-spacing:19.874598px;}
.ws2d0_c00000{word-spacing:19.875006px;}
.ws3b8_c00000{word-spacing:19.876944px;}
.ws326_c00000{word-spacing:19.877148px;}
.ws4a3_c00000{word-spacing:19.880040px;}
.ws25c_c00000{word-spacing:19.883940px;}
.ws4dd_c00000{word-spacing:19.893882px;}
.wsfb_c00000{word-spacing:19.906074px;}
.ws40f_c00000{word-spacing:19.924980px;}
.ws8d_c00000{word-spacing:19.940940px;}
.ws3c8_c00000{word-spacing:19.954980px;}
.ws29b_c00000{word-spacing:19.961730px;}
.ws97_c00000{word-spacing:19.965852px;}
.ws14f_c00000{word-spacing:20.012670px;}
.wsbc_c00000{word-spacing:20.025630px;}
.ws351_c00000{word-spacing:20.051340px;}
.wsc1_c00000{word-spacing:20.084400px;}
.wsc0_c00000{word-spacing:20.085408px;}
.ws506_c00000{word-spacing:20.097990px;}
.ws534_c00000{word-spacing:20.130030px;}
.wsa4_c00000{word-spacing:20.145186px;}
.ws128_c00000{word-spacing:20.156130px;}
.ws3c4_c00000{word-spacing:20.165154px;}
.ws207_c00000{word-spacing:20.192850px;}
.ws65_c00000{word-spacing:20.204964px;}
.ws266_c00000{word-spacing:20.225490px;}
.ws361_c00000{word-spacing:20.226450px;}
.ws272_c00000{word-spacing:20.227860px;}
.ws2c9_c00000{word-spacing:20.264742px;}
.ws1d7_c00000{word-spacing:20.299590px;}
.wsac_c00000{word-spacing:20.324520px;}
.ws4dc_c00000{word-spacing:20.359050px;}
.ws101_c00000{word-spacing:20.371320px;}
.ws20d_c00000{word-spacing:20.384298px;}
.ws493_c00000{word-spacing:20.389590px;}
.ws52a_c00000{word-spacing:20.400900px;}
.ws1a3_c00000{word-spacing:20.443050px;}
.ws172_c00000{word-spacing:20.444076px;}
.ws263_c00000{word-spacing:20.503854px;}
.ws7b_c00000{word-spacing:20.514780px;}
.ws1fd_c00000{word-spacing:20.563632px;}
.ws359_c00000{word-spacing:20.580600px;}
.ws119_c00000{word-spacing:20.585640px;}
.ws11a_c00000{word-spacing:20.586510px;}
.ws306_c00000{word-spacing:20.603136px;}
.ws1b1_c00000{word-spacing:20.623410px;}
.ws58_c00000{word-spacing:20.658240px;}
.ws44a_c00000{word-spacing:20.670216px;}
.ws9e_c00000{word-spacing:20.683188px;}
.ws305_c00000{word-spacing:20.687634px;}
.ws531_c00000{word-spacing:20.699550px;}
.ws227_c00000{word-spacing:20.729970px;}
.ws68_c00000{word-spacing:20.742966px;}
.ws5d_c00000{word-spacing:20.801700px;}
.ws66_c00000{word-spacing:20.802744px;}
.wsae_c00000{word-spacing:20.862522px;}
.ws122_c00000{word-spacing:20.873430px;}
.wsfa_c00000{word-spacing:20.922300px;}
.ws105_c00000{word-spacing:20.945160px;}
.ws22e_c00000{word-spacing:20.945340px;}
.wsab_c00000{word-spacing:20.982078px;}
.ws78_c00000{word-spacing:21.016890px;}
.ws517_c00000{word-spacing:21.032550px;}
.wscb_c00000{word-spacing:21.041856px;}
.ws518_c00000{word-spacing:21.046110px;}
.ws17c_c00000{word-spacing:21.046884px;}
.ws36b_c00000{word-spacing:21.048270px;}
.ws4b8_c00000{word-spacing:21.075900px;}
.ws140_c00000{word-spacing:21.088620px;}
.ws3ec_c00000{word-spacing:21.095340px;}
.ws20b_c00000{word-spacing:21.101634px;}
.ws3e5_c00000{word-spacing:21.126864px;}
.ws3dc_c00000{word-spacing:21.130290px;}
.ws1f8_c00000{word-spacing:21.160350px;}
.ws1b2_c00000{word-spacing:21.161412px;}
.ws522_c00000{word-spacing:21.172560px;}
.wsa6_c00000{word-spacing:21.221190px;}
.ws43b_c00000{word-spacing:21.224700px;}
.ws10e_c00000{word-spacing:21.232080px;}
.wse5_c00000{word-spacing:21.280968px;}
.wsd9_c00000{word-spacing:21.303810px;}
.ws39c_c00000{word-spacing:21.336630px;}
.ws69_c00000{word-spacing:21.340746px;}
.ws57_c00000{word-spacing:21.375540px;}
.wsc9_c00000{word-spacing:21.400524px;}
.wsc7_c00000{word-spacing:21.413364px;}
.ws487_c00000{word-spacing:21.413430px;}
.ws462_c00000{word-spacing:21.440550px;}
.wsea_c00000{word-spacing:21.447270px;}
.ws2a7_c00000{word-spacing:21.460302px;}
.ws41e_c00000{word-spacing:21.467100px;}
.ws4a0_c00000{word-spacing:21.481722px;}
.ws3b1_c00000{word-spacing:21.516810px;}
.ws43_c00000{word-spacing:21.519000px;}
.wse8_c00000{word-spacing:21.520080px;}
.ws520_c00000{word-spacing:21.522450px;}
.wsee_c00000{word-spacing:21.545340px;}
.wse7_c00000{word-spacing:21.563148px;}
.ws30f_c00000{word-spacing:21.572550px;}
.ws91_c00000{word-spacing:21.579858px;}
.ws6e_c00000{word-spacing:21.590730px;}
.ws90_c00000{word-spacing:21.639636px;}
.ws4ab_c00000{word-spacing:21.660006px;}
.ws85_c00000{word-spacing:21.662460px;}
.ws348_c00000{word-spacing:21.699414px;}
.ws157_c00000{word-spacing:21.734190px;}
.wsb4_c00000{word-spacing:21.742110px;}
.ws40a_c00000{word-spacing:21.751470px;}
.wsb6_c00000{word-spacing:21.759192px;}
.ws43e_c00000{word-spacing:21.766110px;}
.ws166_c00000{word-spacing:21.805920px;}
.ws1e6_c00000{word-spacing:21.818970px;}
.ws37d_c00000{word-spacing:21.862980px;}
.ws3fe_c00000{word-spacing:21.875340px;}
.ws81_c00000{word-spacing:21.877650px;}
.wsf5_c00000{word-spacing:21.878748px;}
.ws428_c00000{word-spacing:21.889200px;}
.ws35f_c00000{word-spacing:21.898350px;}
.ws51f_c00000{word-spacing:21.923340px;}
.ws249_c00000{word-spacing:21.938526px;}
.ws53_c00000{word-spacing:21.949380px;}
.ws3be_c00000{word-spacing:21.972288px;}
.ws20a_c00000{word-spacing:21.998304px;}
.ws155_c00000{word-spacing:22.021110px;}
.ws9d_c00000{word-spacing:22.058082px;}
.ws316_c00000{word-spacing:22.088010px;}
.ws40b_c00000{word-spacing:22.091340px;}
.ws74_c00000{word-spacing:22.092840px;}
.ws1b0_c00000{word-spacing:22.117860px;}
.ws4e4_c00000{word-spacing:22.119006px;}
.ws18c_c00000{word-spacing:22.164570px;}
.ws4c4_c00000{word-spacing:22.173996px;}
.ws181_c00000{word-spacing:22.177638px;}
.ws2d3_c00000{word-spacing:22.228920px;}
.ws2e1_c00000{word-spacing:22.235154px;}
.ws19c_c00000{word-spacing:22.236300px;}
.wsaf_c00000{word-spacing:22.237416px;}
.ws32f_c00000{word-spacing:22.265100px;}
.ws2c1_c00000{word-spacing:22.297194px;}
.ws83_c00000{word-spacing:22.308030px;}
.ws4fe_c00000{word-spacing:22.347060px;}
.ws346_c00000{word-spacing:22.356972px;}
.ws142_c00000{word-spacing:22.379760px;}
.ws43c_c00000{word-spacing:22.385340px;}
.ws4db_c00000{word-spacing:22.399770px;}
.ws17d_c00000{word-spacing:22.416750px;}
.ws3f6_c00000{word-spacing:22.438680px;}
.wsd1_c00000{word-spacing:22.451490px;}
.ws1bb_c00000{word-spacing:22.476528px;}
.ws409_c00000{word-spacing:22.521930px;}
.ws478_c00000{word-spacing:22.523100px;}
.ws79_c00000{word-spacing:22.523220px;}
.ws12e_c00000{word-spacing:22.536306px;}
.ws3bd_c00000{word-spacing:22.552020px;}
.wsff_c00000{word-spacing:22.594950px;}
.ws176_c00000{word-spacing:22.596084px;}
.ws4aa_c00000{word-spacing:22.625340px;}
.ws33b_c00000{word-spacing:22.644900px;}
.ws2a3_c00000{word-spacing:22.655862px;}
.ws158_c00000{word-spacing:22.666680px;}
.ws46d_c00000{word-spacing:22.700280px;}
.wsc8_c00000{word-spacing:22.715640px;}
.ws32a_c00000{word-spacing:22.721190px;}
.ws42_c00000{word-spacing:22.738410px;}
.ws319_c00000{word-spacing:22.756980px;}
.ws94_c00000{word-spacing:22.775418px;}
.ws368_c00000{word-spacing:22.777470px;}
.ws41_c00000{word-spacing:22.810140px;}
.ws3b7_c00000{word-spacing:22.835148px;}
.ws1dd_c00000{word-spacing:22.835196px;}
.ws430_c00000{word-spacing:22.849770px;}
.ws151_c00000{word-spacing:22.881870px;}
.wsb1_c00000{word-spacing:22.894974px;}
.ws4b_c00000{word-spacing:22.953600px;}
.ws92_c00000{word-spacing:22.954752px;}
.ws25a_c00000{word-spacing:22.963512px;}
.ws394_c00000{word-spacing:22.969830px;}
.ws2ee_c00000{word-spacing:23.014530px;}
.ws13b_c00000{word-spacing:23.025330px;}
.ws2ca_c00000{word-spacing:23.027190px;}
.wsb5_c00000{word-spacing:23.074308px;}
.wsd8_c00000{word-spacing:23.097060px;}
.ws4f7_c00000{word-spacing:23.101770px;}
.ws25d_c00000{word-spacing:23.103264px;}
.ws395_c00000{word-spacing:23.106030px;}
.ws14e_c00000{word-spacing:23.117340px;}
.ws2df_c00000{word-spacing:23.134086px;}
.ws44_c00000{word-spacing:23.168790px;}
.ws2d1_c00000{word-spacing:23.185200px;}
.wsf6_c00000{word-spacing:23.193864px;}
.ws4d4_c00000{word-spacing:23.195340px;}
.ws37_c00000{word-spacing:23.240520px;}
.ws457_c00000{word-spacing:23.244420px;}
.ws182_c00000{word-spacing:23.253642px;}
.ws464_c00000{word-spacing:23.286240px;}
.ws4fb_c00000{word-spacing:23.289600px;}
.ws433_c00000{word-spacing:23.289810px;}
.ws444_c00000{word-spacing:23.291280px;}
.ws2f4_c00000{word-spacing:23.294820px;}
.ws30e_c00000{word-spacing:23.295090px;}
.ws273_c00000{word-spacing:23.295360px;}
.ws274_c00000{word-spacing:23.299050px;}
.ws497_c00000{word-spacing:23.300490px;}
.ws452_c00000{word-spacing:23.301990px;}
.ws3a2_c00000{word-spacing:23.311920px;}
.ws1c_c00000{word-spacing:23.312250px;}
.wse3_c00000{word-spacing:23.313420px;}
.ws336_c00000{word-spacing:23.315460px;}
.ws455_c00000{word-spacing:23.316420px;}
.ws3b4_c00000{word-spacing:23.323560px;}
.ws39b_c00000{word-spacing:23.327790px;}
.ws24d_c00000{word-spacing:23.328654px;}
.ws313_c00000{word-spacing:23.331630px;}
.ws3ab_c00000{word-spacing:23.334990px;}
.ws308_c00000{word-spacing:23.335230px;}
.ws4c7_c00000{word-spacing:23.336670px;}
.ws421_c00000{word-spacing:23.344080px;}
.ws1ff_c00000{word-spacing:23.349210px;}
.ws4c6_c00000{word-spacing:23.352570px;}
.ws335_c00000{word-spacing:23.352600px;}
.ws19f_c00000{word-spacing:23.353530px;}
.ws2e7_c00000{word-spacing:23.354040px;}
.ws51d_c00000{word-spacing:23.357100px;}
.ws4d0_c00000{word-spacing:23.357790px;}
.ws63_c00000{word-spacing:23.373198px;}
.ws2b_c00000{word-spacing:23.383980px;}
.ws399_c00000{word-spacing:23.417100px;}
.ws1aa_c00000{word-spacing:23.432976px;}
.ws1ab_c00000{word-spacing:23.446548px;}
.ws154_c00000{word-spacing:23.455710px;}
.ws3c0_c00000{word-spacing:23.488830px;}
.ws26f_c00000{word-spacing:23.492754px;}
.ws52f_c00000{word-spacing:23.501340px;}
.ws103_c00000{word-spacing:23.527440px;}
.ws175_c00000{word-spacing:23.552532px;}
.ws465_c00000{word-spacing:23.576340px;}
.ws466_c00000{word-spacing:23.596110px;}
.wsdd_c00000{word-spacing:23.599170px;}
.ws131_c00000{word-spacing:23.612310px;}
.ws342_c00000{word-spacing:23.614920px;}
.ws3f0_c00000{word-spacing:23.627340px;}
.wsec_c00000{word-spacing:23.670900px;}
.ws279_c00000{word-spacing:23.672088px;}
.ws1ad_c00000{word-spacing:23.731866px;}
.ws1cd_c00000{word-spacing:23.735340px;}
.ws1e5_c00000{word-spacing:23.742630px;}
.ws445_c00000{word-spacing:23.788170px;}
.ws1a8_c00000{word-spacing:23.791644px;}
.ws5b_c00000{word-spacing:23.814360px;}
.ws39f_c00000{word-spacing:23.825028px;}
.ws271_c00000{word-spacing:23.851422px;}
.ws6b_c00000{word-spacing:23.886090px;}
.ws2c3_c00000{word-spacing:23.911200px;}
.ws3f1_c00000{word-spacing:23.952720px;}
.ws42d_c00000{word-spacing:23.957340px;}
.ws104_c00000{word-spacing:23.957820px;}
.ws477_c00000{word-spacing:23.958312px;}
.wsfc_c00000{word-spacing:23.970978px;}
.ws406_c00000{word-spacing:23.975790px;}
.ws2a2_c00000{word-spacing:24.005340px;}
.ws10a_c00000{word-spacing:24.029550px;}
.ws1de_c00000{word-spacing:24.030756px;}
.ws48d_c00000{word-spacing:24.051030px;}
.ws470_c00000{word-spacing:24.058800px;}
.ws390_c00000{word-spacing:24.073800px;}
.ws453_c00000{word-spacing:24.077340px;}
.wsb2_c00000{word-spacing:24.090534px;}
.ws82_c00000{word-spacing:24.101280px;}
.ws491_c00000{word-spacing:24.106716px;}
.ws26d_c00000{word-spacing:24.114000px;}
.ws141_c00000{word-spacing:24.119340px;}
.ws411_c00000{word-spacing:24.129660px;}
.ws329_c00000{word-spacing:24.131250px;}
.wsb0_c00000{word-spacing:24.150312px;}
.ws3e6_c00000{word-spacing:24.151770px;}
.ws139_c00000{word-spacing:24.173010px;}
.ws137_c00000{word-spacing:24.184110px;}
.ws138_c00000{word-spacing:24.190110px;}
.ws325_c00000{word-spacing:24.190920px;}
.ws374_c00000{word-spacing:24.191340px;}
.ws450_c00000{word-spacing:24.203790px;}
.ws161_c00000{word-spacing:24.210090px;}
.ws4c_c00000{word-spacing:24.244740px;}
.ws205_c00000{word-spacing:24.269868px;}
.ws4fc_c00000{word-spacing:24.310410px;}
.ws5f_c00000{word-spacing:24.316470px;}
.ws17b_c00000{word-spacing:24.329646px;}
.ws4f6_c00000{word-spacing:24.366600px;}
.ws159_c00000{word-spacing:24.388200px;}
.wsc2_c00000{word-spacing:24.389424px;}
.ws375_c00000{word-spacing:24.399558px;}
.ws3d7_c00000{word-spacing:24.446742px;}
.ws1df_c00000{word-spacing:24.449202px;}
.ws13c_c00000{word-spacing:24.459930px;}
.ws4be_c00000{word-spacing:24.479340px;}
.ws35a_c00000{word-spacing:24.479520px;}
.ws49a_c00000{word-spacing:24.484788px;}
.ws4f1_c00000{word-spacing:24.492300px;}
.ws366_c00000{word-spacing:24.502800px;}
.wse4_c00000{word-spacing:24.508980px;}
.ws70_c00000{word-spacing:24.531660px;}
.ws425_c00000{word-spacing:24.544260px;}
.ws283_c00000{word-spacing:24.551340px;}
.ws64_c00000{word-spacing:24.568758px;}
.ws56_c00000{word-spacing:24.603390px;}
.ws1ac_c00000{word-spacing:24.628536px;}
.ws48c_c00000{word-spacing:24.635100px;}
.ws245_c00000{word-spacing:24.663270px;}
.ws1ed_c00000{word-spacing:24.675120px;}
.ws2a6_c00000{word-spacing:24.688314px;}
.ws423_c00000{word-spacing:24.695340px;}
.ws2ea_c00000{word-spacing:24.707100px;}
.ws2bc_c00000{word-spacing:24.713340px;}
.ws2ab_c00000{word-spacing:24.731340px;}
.ws4f8_c00000{word-spacing:24.731550px;}
.ws11b_c00000{word-spacing:24.746850px;}
.ws130_c00000{word-spacing:24.748092px;}
.ws4d8_c00000{word-spacing:24.755340px;}
.ws156_c00000{word-spacing:24.767340px;}
.ws15b_c00000{word-spacing:24.807870px;}
.ws322_c00000{word-spacing:24.812220px;}
.wsd4_c00000{word-spacing:24.818580px;}
.ws3d4_c00000{word-spacing:24.832800px;}
.ws45f_c00000{word-spacing:24.854820px;}
.ws1b3_c00000{word-spacing:24.867648px;}
.ws4cb_c00000{word-spacing:24.889530px;}
.ws8c_c00000{word-spacing:24.890310px;}
.ws302_c00000{word-spacing:24.906270px;}
.ws1a7_c00000{word-spacing:24.927426px;}
.ws179_c00000{word-spacing:24.962040px;}
.ws376_c00000{word-spacing:24.987204px;}
.ws414_c00000{word-spacing:24.997860px;}
.ws4e1_c00000{word-spacing:25.013340px;}
.ws2f0_c00000{word-spacing:25.025100px;}
.ws11c_c00000{word-spacing:25.033770px;}
.ws2c8_c00000{word-spacing:25.046982px;}
.ws208_c00000{word-spacing:25.050750px;}
.ws338_c00000{word-spacing:25.072350px;}
.ws4d6_c00000{word-spacing:25.092060px;}
.ws211_c00000{word-spacing:25.094880px;}
.ws1c0_c00000{word-spacing:25.105500px;}
.ws22d_c00000{word-spacing:25.106760px;}
.ws469_c00000{word-spacing:25.123938px;}
.ws22b_c00000{word-spacing:25.126116px;}
.ws14c_c00000{word-spacing:25.131252px;}
.ws4ae_c00000{word-spacing:25.166538px;}
.ws50_c00000{word-spacing:25.177230px;}
.ws3c5_c00000{word-spacing:25.222554px;}
.ws33f_c00000{word-spacing:25.226316px;}
.ws5e_c00000{word-spacing:25.248960px;}
.ws391_c00000{word-spacing:25.271340px;}
.wsfe_c00000{word-spacing:25.286094px;}
.ws4cf_c00000{word-spacing:25.295340px;}
.ws49f_c00000{word-spacing:25.308156px;}
.ws3b_c00000{word-spacing:25.320690px;}
.ws3b5_c00000{word-spacing:25.322970px;}
.ws2f8_c00000{word-spacing:25.325100px;}
.ws341_c00000{word-spacing:25.335270px;}
.ws61_c00000{word-spacing:25.345872px;}
.ws460_c00000{word-spacing:25.360920px;}
.ws126_c00000{word-spacing:25.392420px;}
.ws3d2_c00000{word-spacing:25.402680px;}
.ws206_c00000{word-spacing:25.405650px;}
.ws27d_c00000{word-spacing:25.410330px;}
.ws3d1_c00000{word-spacing:25.423290px;}
.ws373_c00000{word-spacing:25.440540px;}
.ws143_c00000{word-spacing:25.451340px;}
.ws1e0_c00000{word-spacing:25.464150px;}
.ws278_c00000{word-spacing:25.465428px;}
.ws26e_c00000{word-spacing:25.487220px;}
.ws168_c00000{word-spacing:25.493340px;}
.ws167_c00000{word-spacing:25.499340px;}
.wsc3_c00000{word-spacing:25.525206px;}
.wsd5_c00000{word-spacing:25.535880px;}
.ws331_c00000{word-spacing:25.545030px;}
.ws48a_c00000{word-spacing:25.584984px;}
.ws1db_c00000{word-spacing:25.602114px;}
.ws29a_c00000{word-spacing:25.607340px;}
.ws1bc_c00000{word-spacing:25.607610px;}
.ws46e_c00000{word-spacing:25.619340px;}
.ws3d0_c00000{word-spacing:25.643400px;}
.ws93_c00000{word-spacing:25.644762px;}
.ws527_c00000{word-spacing:25.674600px;}
.ws10b_c00000{word-spacing:25.679340px;}
.ws340_c00000{word-spacing:25.687668px;}
.ws2e_c00000{word-spacing:25.703250px;}
.ws229_c00000{word-spacing:25.704540px;}
.ws86_c00000{word-spacing:25.751070px;}
.ws434_c00000{word-spacing:25.760550px;}
.ws22a_c00000{word-spacing:25.764318px;}
.ws2e6_c00000{word-spacing:25.775100px;}
.ws420_c00000{word-spacing:25.785030px;}
.ws134_c00000{word-spacing:25.822800px;}
.ws299_c00000{word-spacing:25.824096px;}
.ws2d4_c00000{word-spacing:25.835100px;}
.ws47f_c00000{word-spacing:25.843080px;}
.ws2f_c00000{word-spacing:25.845780px;}
.ws149_c00000{word-spacing:25.883874px;}
.ws5a_c00000{word-spacing:25.894530px;}
.ws2eb_c00000{word-spacing:25.895100px;}
.ws25e_c00000{word-spacing:25.943652px;}
.ws186_c00000{word-spacing:25.966260px;}
.ws513_c00000{word-spacing:25.978050px;}
.ws29c_c00000{word-spacing:26.003430px;}
.ws19b_c00000{word-spacing:26.037990px;}
.ws379_c00000{word-spacing:26.063208px;}
.ws49c_c00000{word-spacing:26.079090px;}
.ws1d8_c00000{word-spacing:26.109720px;}
.ws492_c00000{word-spacing:26.117700px;}
.ws22c_c00000{word-spacing:26.122986px;}
.ws106_c00000{word-spacing:26.129130px;}
.ws400_c00000{word-spacing:26.136270px;}
.ws440_c00000{word-spacing:26.165790px;}
.ws108_c00000{word-spacing:26.181450px;}
.wsad_c00000{word-spacing:26.182764px;}
.ws402_c00000{word-spacing:26.213790px;}
.ws48e_c00000{word-spacing:26.234550px;}
.ws3c6_c00000{word-spacing:26.242542px;}
.ws3f3_c00000{word-spacing:26.243340px;}
.ws47c_c00000{word-spacing:26.247030px;}
.ws1b8_c00000{word-spacing:26.253180px;}
.ws357_c00000{word-spacing:26.263230px;}
.ws538_c00000{word-spacing:26.297340px;}
.ws114_c00000{word-spacing:26.302320px;}
.ws87_c00000{word-spacing:26.324910px;}
.ws2dd_c00000{word-spacing:26.345100px;}
.ws2d5_c00000{word-spacing:26.362098px;}
.ws164_c00000{word-spacing:26.375340px;}
.ws275_c00000{word-spacing:26.381340px;}
.ws2ed_c00000{word-spacing:26.386920px;}
.ws525_c00000{word-spacing:26.395770px;}
.ws52_c00000{word-spacing:26.396640px;}
.ws2e2_c00000{word-spacing:26.421876px;}
.ws240_c00000{word-spacing:26.427180px;}
.ws378_c00000{word-spacing:26.441340px;}
.ws50e_c00000{word-spacing:26.465340px;}
.ws48_c00000{word-spacing:26.468370px;}
.ws481_c00000{word-spacing:26.474280px;}
.ws317_c00000{word-spacing:26.477550px;}
.ws1c6_c00000{word-spacing:26.481654px;}
.ws27c_c00000{word-spacing:26.495280px;}
.ws1b7_c00000{word-spacing:26.540100px;}
.ws446_c00000{word-spacing:26.541432px;}
.ws514_c00000{word-spacing:26.564310px;}
.ws270_c00000{word-spacing:26.601210px;}
.wsda_c00000{word-spacing:26.611830px;}
.ws144_c00000{word-spacing:26.646450px;}
.ws45c_c00000{word-spacing:26.647170px;}
.ws146_c00000{word-spacing:26.660988px;}
.ws184_c00000{word-spacing:26.683560px;}
.ws49d_c00000{word-spacing:26.691990px;}
.ws33a_c00000{word-spacing:26.694870px;}
.ws300_c00000{word-spacing:26.699100px;}
.ws505_c00000{word-spacing:26.699280px;}
.ws29d_c00000{word-spacing:26.720766px;}
.ws52b_c00000{word-spacing:26.731290px;}
.ws344_c00000{word-spacing:26.732910px;}
.ws201_c00000{word-spacing:26.733540px;}
.ws3dd_c00000{word-spacing:26.741280px;}
.ws30_c00000{word-spacing:26.755290px;}
.ws2b9_c00000{word-spacing:26.764320px;}
.ws3b0_c00000{word-spacing:26.767968px;}
.ws2b8_c00000{word-spacing:26.780544px;}
.ws23_c00000{word-spacing:26.827020px;}
.ws4a2_c00000{word-spacing:26.832450px;}
.ws1dc_c00000{word-spacing:26.840322px;}
.ws88_c00000{word-spacing:26.898750px;}
.ws3e8_c00000{word-spacing:26.900100px;}
.ws397_c00000{word-spacing:26.908530px;}
.ws4eb_c00000{word-spacing:26.954640px;}
.ws12d_c00000{word-spacing:26.959878px;}
.wsf4_c00000{word-spacing:26.970480px;}
.ws511_c00000{word-spacing:27.019656px;}
.ws3ff_c00000{word-spacing:27.035340px;}
.ws188_c00000{word-spacing:27.042210px;}
.ws28b_c00000{word-spacing:27.079434px;}
.ws3c1_c00000{word-spacing:27.090414px;}
.ws30d_c00000{word-spacing:27.107310px;}
.ws7f_c00000{word-spacing:27.113940px;}
.ws363_c00000{word-spacing:27.114210px;}
.ws367_c00000{word-spacing:27.119550px;}
.ws2c4_c00000{word-spacing:27.131550px;}
.ws2cf_c00000{word-spacing:27.139212px;}
.ws495_c00000{word-spacing:27.155700px;}
.ws21b_c00000{word-spacing:27.185670px;}
.ws3b6_c00000{word-spacing:27.198990px;}
.ws15d_c00000{word-spacing:27.201252px;}
.ws152_c00000{word-spacing:27.257400px;}
.ws2f3_c00000{word-spacing:27.258768px;}
.ws284_c00000{word-spacing:27.263730px;}
.wsa1_c00000{word-spacing:27.318546px;}
.ws135_c00000{word-spacing:27.329130px;}
.ws222_c00000{word-spacing:27.378324px;}
.ws529_c00000{word-spacing:27.389970px;}
.ws7a_c00000{word-spacing:27.400860px;}
.ws512_c00000{word-spacing:27.401340px;}
.ws50f_c00000{word-spacing:27.419340px;}
.ws449_c00000{word-spacing:27.431340px;}
.ws1c5_c00000{word-spacing:27.438102px;}
.ws3d9_c00000{word-spacing:27.449460px;}
.ws4e3_c00000{word-spacing:27.451290px;}
.ws427_c00000{word-spacing:27.460800px;}
.ws3bb_c00000{word-spacing:27.464874px;}
.ws1e3_c00000{word-spacing:27.472590px;}
.ws23c_c00000{word-spacing:27.497880px;}
.ws23b_c00000{word-spacing:27.517236px;}
.ws2aa_c00000{word-spacing:27.521340px;}
.ws59_c00000{word-spacing:27.544320px;}
.ws355_c00000{word-spacing:27.551340px;}
.ws145_c00000{word-spacing:27.557658px;}
.ws3a6_c00000{word-spacing:27.593700px;}
.ws4d3_c00000{word-spacing:27.594030px;}
.ws44f_c00000{word-spacing:27.598116px;}
.ws107_c00000{word-spacing:27.616050px;}
.ws2e5_c00000{word-spacing:27.617436px;}
.ws3a5_c00000{word-spacing:27.659550px;}
.ws28a_c00000{word-spacing:27.677214px;}
.ws3ea_c00000{word-spacing:27.677340px;}
.ws10c_c00000{word-spacing:27.687780px;}
.ws439_c00000{word-spacing:27.700530px;}
.ws193_c00000{word-spacing:27.702780px;}
.ws503_c00000{word-spacing:27.726810px;}
.ws533_c00000{word-spacing:27.732810px;}
.ws482_c00000{word-spacing:27.734790px;}
.ws504_c00000{word-spacing:27.736770px;}
.ws288_c00000{word-spacing:27.736992px;}
.ws339_c00000{word-spacing:27.756792px;}
.ws1d9_c00000{word-spacing:27.759510px;}
.ws301_c00000{word-spacing:27.761100px;}
.ws2b3_c00000{word-spacing:27.763800px;}
.ws18e_c00000{word-spacing:27.764550px;}
.ws24b_c00000{word-spacing:27.765300px;}
.ws4cd_c00000{word-spacing:27.775770px;}
.ws369_c00000{word-spacing:27.777030px;}
.ws12c_c00000{word-spacing:27.796770px;}
.ws287_c00000{word-spacing:27.827340px;}
.ws51_c00000{word-spacing:27.831240px;}
.ws330_c00000{word-spacing:27.835800px;}
.ws3e0_c00000{word-spacing:27.856548px;}
.ws2f2_c00000{word-spacing:27.867450px;}
.ws8a_c00000{word-spacing:27.902970px;}
.ws50d_c00000{word-spacing:27.916326px;}
.ws25f_c00000{word-spacing:27.923340px;}
.ws4b9_c00000{word-spacing:27.937020px;}
.ws38_c00000{word-spacing:27.973020px;}
.ws73_c00000{word-spacing:27.974700px;}
.ws24c_c00000{word-spacing:27.976104px;}
.ws4d1_c00000{word-spacing:28.003512px;}
.ws32e_c00000{word-spacing:28.024350px;}
.ws387_c00000{word-spacing:28.035882px;}
.ws1f2_c00000{word-spacing:28.046430px;}
.ws354_c00000{word-spacing:28.079340px;}
.ws2a8_c00000{word-spacing:28.080180px;}
.ws3af_c00000{word-spacing:28.095660px;}
.ws410_c00000{word-spacing:28.109610px;}
.ws1cb_c00000{word-spacing:28.118160px;}
.ws31a_c00000{word-spacing:28.136310px;}
.ws3ae_c00000{word-spacing:28.155438px;}
.ws485_c00000{word-spacing:28.160310px;}
.ws4d5_c00000{word-spacing:28.163340px;}
.ws236_c00000{word-spacing:28.189890px;}
.wsa2_c00000{word-spacing:28.215216px;}
.ws38e_c00000{word-spacing:28.235190px;}
.ws403_c00000{word-spacing:28.242150px;}
.ws223_c00000{word-spacing:28.261620px;}
.ws38c_c00000{word-spacing:28.274994px;}
.ws3eb_c00000{word-spacing:28.301340px;}
.ws3a0_c00000{word-spacing:28.331100px;}
.ws54_c00000{word-spacing:28.333350px;}
.ws17f_c00000{word-spacing:28.334772px;}
.ws4ca_c00000{word-spacing:28.344240px;}
.ws35e_c00000{word-spacing:28.353810px;}
.ws2e3_c00000{word-spacing:28.379100px;}
.ws501_c00000{word-spacing:28.385940px;}
.ws4fa_c00000{word-spacing:28.387530px;}
.ws1c2_c00000{word-spacing:28.394550px;}
.ws3f4_c00000{word-spacing:28.403340px;}
.wsed_c00000{word-spacing:28.405080px;}
.ws4e9_c00000{word-spacing:28.409370px;}
.ws298_c00000{word-spacing:28.454328px;}
.ws461_c00000{word-spacing:28.457340px;}
.ws230_c00000{word-spacing:28.476810px;}
.ws438_c00000{word-spacing:28.501890px;}
.ws436_c00000{word-spacing:28.514106px;}
.ws22f_c00000{word-spacing:28.548540px;}
.ws20c_c00000{word-spacing:28.573884px;}
.ws1ec_c00000{word-spacing:28.620270px;}
.ws171_c00000{word-spacing:28.633662px;}
.ws451_c00000{word-spacing:28.661340px;}
.ws32d_c00000{word-spacing:28.668300px;}
.ws194_c00000{word-spacing:28.670280px;}
.ws195_c00000{word-spacing:28.671780px;}
.ws3e4_c00000{word-spacing:28.673340px;}
.ws337_c00000{word-spacing:28.674030px;}
.ws4d2_c00000{word-spacing:28.680090px;}
.ws196_c00000{word-spacing:28.682910px;}
.ws401_c00000{word-spacing:28.691910px;}
.ws100_c00000{word-spacing:28.692000px;}
.ws3aa_c00000{word-spacing:28.693440px;}
.ws502_c00000{word-spacing:28.693560px;}
.ws18f_c00000{word-spacing:28.697310px;}
.ws40c_c00000{word-spacing:28.703340px;}
.ws483_c00000{word-spacing:28.704540px;}
.ws191_c00000{word-spacing:28.708770px;}
.ws18d_c00000{word-spacing:28.736550px;}
.ws2c5_c00000{word-spacing:28.741800px;}
.ws523_c00000{word-spacing:28.751340px;}
.ws1ae_c00000{word-spacing:28.753218px;}
.ws150_c00000{word-spacing:28.763730px;}
.ws41c_c00000{word-spacing:28.801530px;}
.ws2cb_c00000{word-spacing:28.812996px;}
.ws4b1_c00000{word-spacing:28.829970px;}
.ws2ff_c00000{word-spacing:28.833930px;}
.ws7e_c00000{word-spacing:28.835460px;}
.ws42e_c00000{word-spacing:28.869270px;}
.ws467_c00000{word-spacing:28.871700px;}
.ws2b4_c00000{word-spacing:28.872774px;}
.ws454_c00000{word-spacing:28.889130px;}
.ws2a9_c00000{word-spacing:28.901340px;}
.ws218_c00000{word-spacing:28.907190px;}
.ws345_c00000{word-spacing:28.920864px;}
.ws2f6_c00000{word-spacing:28.932552px;}
.ws343_c00000{word-spacing:28.934604px;}
.ws42f_c00000{word-spacing:28.952460px;}
.ws199_c00000{word-spacing:28.978920px;}
.ws364_c00000{word-spacing:28.981050px;}
.ws242_c00000{word-spacing:28.992330px;}
.ws44b_c00000{word-spacing:29.025780px;}
.ws418_c00000{word-spacing:29.042580px;}
.ws252_c00000{word-spacing:29.046012px;}
.ws4a_c00000{word-spacing:29.050650px;}
.ws27f_c00000{word-spacing:29.051550px;}
.ws251_c00000{word-spacing:29.052108px;}
.ws49b_c00000{word-spacing:29.072298px;}
.ws180_c00000{word-spacing:29.111886px;}
.ws153_c00000{word-spacing:29.122380px;}
.ws484_c00000{word-spacing:29.123100px;}
.ws32b_c00000{word-spacing:29.126790px;}
.ws38d_c00000{word-spacing:29.159310px;}
.ws32c_c00000{word-spacing:29.163780px;}
.ws385_c00000{word-spacing:29.171664px;}
.ws43f_c00000{word-spacing:29.174550px;}
.ws3d6_c00000{word-spacing:29.177340px;}
.ws4b6_c00000{word-spacing:29.181330px;}
.ws353_c00000{word-spacing:29.183340px;}
.ws1b9_c00000{word-spacing:29.194110px;}
.ws381_c00000{word-spacing:29.206530px;}
.ws43d_c00000{word-spacing:29.212770px;}
.wsc6_c00000{word-spacing:29.231442px;}
.ws1f5_c00000{word-spacing:29.265840px;}
.ws290_c00000{word-spacing:29.273520px;}
.ws50c_c00000{word-spacing:29.274270px;}
.ws2d8_c00000{word-spacing:29.291220px;}
.ws4e8_c00000{word-spacing:29.293146px;}
.ws16c_c00000{word-spacing:29.337570px;}
.ws437_c00000{word-spacing:29.350998px;}
.ws46a_c00000{word-spacing:29.384280px;}
.ws424_c00000{word-spacing:29.408304px;}
.wsce_c00000{word-spacing:29.409300px;}
.ws170_c00000{word-spacing:29.410776px;}
.ws34a_c00000{word-spacing:29.470554px;}
.ws7d_c00000{word-spacing:29.481030px;}
.ws3cd_c00000{word-spacing:29.484150px;}
.ws43a_c00000{word-spacing:29.508270px;}
.ws328_c00000{word-spacing:29.526780px;}
.ws1af_c00000{word-spacing:29.530332px;}
.ws136_c00000{word-spacing:29.533530px;}
.ws412_c00000{word-spacing:29.545020px;}
.ws47_c00000{word-spacing:29.552760px;}
.ws297_c00000{word-spacing:29.590110px;}
.ws486_c00000{word-spacing:29.621100px;}
.ws13d_c00000{word-spacing:29.624490px;}
.ws3ce_c00000{word-spacing:29.636520px;}
.ws463_c00000{word-spacing:29.645340px;}
.ws2e4_c00000{word-spacing:29.649888px;}
.ws4c5_c00000{word-spacing:29.687340px;}
.wsd0_c00000{word-spacing:29.696220px;}
.ws3b3_c00000{word-spacing:29.701530px;}
.ws3f7_c00000{word-spacing:29.723340px;}
.ws41d_c00000{word-spacing:29.725560px;}
.ws41b_c00000{word-spacing:29.741520px;}
.ws1a2_c00000{word-spacing:29.767950px;}
.ws253_c00000{word-spacing:29.769444px;}
.ws239_c00000{word-spacing:29.829222px;}
.ws10f_c00000{word-spacing:29.839680px;}
.ws408_c00000{word-spacing:29.863800px;}
.ws510_c00000{word-spacing:29.879340px;}
.ws2f5_c00000{word-spacing:29.889000px;}
.ws183_c00000{word-spacing:29.911410px;}
.wsc5_c00000{word-spacing:29.948778px;}
.ws6c_c00000{word-spacing:29.983140px;}
.ws2d9_c00000{word-spacing:30.008556px;}
.ws1f_c00000{word-spacing:30.040524px;}
.ws46_c00000{word-spacing:30.054870px;}
.ws2b0_c00000{word-spacing:30.068334px;}
.ws459_c00000{word-spacing:30.071340px;}
.ws499_c00000{word-spacing:30.113340px;}
.ws77_c00000{word-spacing:30.126600px;}
.ws2bf_c00000{word-spacing:30.128112px;}
.ws516_c00000{word-spacing:30.131340px;}
.ws393_c00000{word-spacing:30.189780px;}
.wsf1_c00000{word-spacing:30.198330px;}
.ws4cc_c00000{word-spacing:30.208800px;}
.ws473_c00000{word-spacing:30.247668px;}
.ws1b5_c00000{word-spacing:30.270060px;}
.ws37a_c00000{word-spacing:30.271410px;}
.ws321_c00000{word-spacing:30.278550px;}
.ws530_c00000{word-spacing:30.304320px;}
.ws8b_c00000{word-spacing:30.341790px;}
.ws40e_c00000{word-spacing:30.363060px;}
.ws4a5_c00000{word-spacing:30.365010px;}
.ws4a4_c00000{word-spacing:30.394110px;}
.ws407_c00000{word-spacing:30.400770px;}
.ws16b_c00000{word-spacing:30.413520px;}
.ws347_c00000{word-spacing:30.427002px;}
.ws324_c00000{word-spacing:30.441030px;}
.ws15a_c00000{word-spacing:30.485250px;}
.ws23a_c00000{word-spacing:30.486780px;}
.wsf2_c00000{word-spacing:30.556980px;}
.ws292_c00000{word-spacing:30.606336px;}
.ws280_c00000{word-spacing:30.628710px;}
.ws33c_c00000{word-spacing:30.646020px;}
.ws3f8_c00000{word-spacing:30.666114px;}
.ws309_c00000{word-spacing:30.679050px;}
.ws1a1_c00000{word-spacing:30.700440px;}
.ws500_c00000{word-spacing:30.723270px;}
.ws2c0_c00000{word-spacing:30.725892px;}
.ws219_c00000{word-spacing:30.772170px;}
.ws192_c00000{word-spacing:30.780270px;}
.ws47b_c00000{word-spacing:30.816300px;}
.ws333_c00000{word-spacing:30.817050px;}
.ws21c_c00000{word-spacing:30.843900px;}
.ws36e_c00000{word-spacing:30.857340px;}
.ws189_c00000{word-spacing:30.915630px;}
.ws4b5_c00000{word-spacing:30.930660px;}
.ws19_c00000{word-spacing:30.987000px;}
.ws14d_c00000{word-spacing:30.987360px;}
.ws519_c00000{word-spacing:31.010634px;}
.ws3db_c00000{word-spacing:31.013220px;}
.ws18a_c00000{word-spacing:31.018320px;}
.ws2af_c00000{word-spacing:31.024320px;}
.ws38a_c00000{word-spacing:31.024782px;}
.ws1cc_c00000{word-spacing:31.059090px;}
.ws1a_c00000{word-spacing:31.090290px;}
.ws45d_c00000{word-spacing:31.103790px;}
.ws4ff_c00000{word-spacing:31.124970px;}
.ws1eb_c00000{word-spacing:31.130820px;}
.ws3f2_c00000{word-spacing:31.199340px;}
.ws255_c00000{word-spacing:31.202550px;}
.ws3ef_c00000{word-spacing:31.204116px;}
.ws489_c00000{word-spacing:31.253100px;}
.ws34b_c00000{word-spacing:31.265340px;}
.ws16d_c00000{word-spacing:31.274280px;}
.ws47e_c00000{word-spacing:31.318560px;}
.ws48b_c00000{word-spacing:31.323672px;}
.wsde_c00000{word-spacing:31.346010px;}
.ws45b_c00000{word-spacing:31.391310px;}
.ws1b6_c00000{word-spacing:31.417740px;}
.ws3f5_c00000{word-spacing:31.458780px;}
.ws1ef_c00000{word-spacing:31.489470px;}
.ws4e7_c00000{word-spacing:31.535280px;}
.ws1f3_c00000{word-spacing:31.561200px;}
.ws51a_c00000{word-spacing:31.622562px;}
.wsd6_c00000{word-spacing:31.632930px;}
.ws36d_c00000{word-spacing:31.646040px;}
.ws327_c00000{word-spacing:31.692540px;}
.ws4d_c00000{word-spacing:31.704660px;}
.ws26b_c00000{word-spacing:31.727790px;}
.ws4b4_c00000{word-spacing:31.745790px;}
.ws125_c00000{word-spacing:31.776390px;}
.ws413_c00000{word-spacing:31.830060px;}
.ws200_c00000{word-spacing:31.848120px;}
.ws31c_c00000{word-spacing:31.861674px;}
.ws1d5_c00000{word-spacing:31.919850px;}
.ws235_c00000{word-spacing:31.991580px;}
.ws21d_c00000{word-spacing:32.018610px;}
.ws4c8_c00000{word-spacing:32.041008px;}
.ws4bf_c00000{word-spacing:32.051280px;}
.ws220_c00000{word-spacing:32.058510px;}
.ws75_c00000{word-spacing:32.063310px;}
.ws4b0_c00000{word-spacing:32.071020px;}
.ws197_c00000{word-spacing:32.088780px;}
.ws31b_c00000{word-spacing:32.095410px;}
.ws536_c00000{word-spacing:32.099970px;}
.ws12b_c00000{word-spacing:32.100786px;}
.ws358_c00000{word-spacing:32.105970px;}
.ws1d_c00000{word-spacing:32.106348px;}
.ws36_c00000{word-spacing:32.114010px;}
.ws29e_c00000{word-spacing:32.118600px;}
.ws241_c00000{word-spacing:32.135040px;}
.ws41a_c00000{word-spacing:32.158080px;}
.ws4a8_c00000{word-spacing:32.164110px;}
.ws237_c00000{word-spacing:32.186910px;}
.ws1e_c00000{word-spacing:32.192424px;}
.ws2b1_c00000{word-spacing:32.193630px;}
.ws2b2_c00000{word-spacing:32.198250px;}
.ws76_c00000{word-spacing:32.206770px;}
.ws435_c00000{word-spacing:32.219790px;}
.ws3ad_c00000{word-spacing:32.241870px;}
.ws256_c00000{word-spacing:32.278500px;}
.ws3e3_c00000{word-spacing:32.279340px;}
.ws3a8_c00000{word-spacing:32.346630px;}
.ws24e_c00000{word-spacing:32.350230px;}
.ws246_c00000{word-spacing:32.357790px;}
.wsf0_c00000{word-spacing:32.364576px;}
.ws27e_c00000{word-spacing:32.406540px;}
.ws23e_c00000{word-spacing:32.421960px;}
.ws490_c00000{word-spacing:32.429100px;}
.wsd2_c00000{word-spacing:32.450652px;}
.ws51e_c00000{word-spacing:32.459130px;}
.ws44d_c00000{word-spacing:32.459454px;}
.ws19a_c00000{word-spacing:32.493690px;}
.ws4d7_c00000{word-spacing:32.519232px;}
.ws509_c00000{word-spacing:32.536728px;}
.ws221_c00000{word-spacing:32.549340px;}
.ws185_c00000{word-spacing:32.565420px;}
.ws44c_c00000{word-spacing:32.575770px;}
.ws12a_c00000{word-spacing:32.579010px;}
.ws295_c00000{word-spacing:32.637150px;}
.ws2ec_c00000{word-spacing:32.638920px;}
.ws372_c00000{word-spacing:32.702550px;}
.ws4f5_c00000{word-spacing:32.705340px;}
.ws224_c00000{word-spacing:32.708880px;}
.ws4ef_c00000{word-spacing:32.713050px;}
.wsf7_c00000{word-spacing:32.758344px;}
.ws1f6_c00000{word-spacing:32.780610px;}
.wsf9_c00000{word-spacing:32.818122px;}
.ws26c_c00000{word-spacing:32.852340px;}
.ws380_c00000{word-spacing:32.885310px;}
.ws209_c00000{word-spacing:32.924070px;}
.ws44e_c00000{word-spacing:32.937678px;}
.ws1e1_c00000{word-spacing:32.969340px;}
.ws417_c00000{word-spacing:32.986800px;}
.ws10d_c00000{word-spacing:32.995800px;}
.ws21e_c00000{word-spacing:33.067530px;}
.ws441_c00000{word-spacing:33.068130px;}
.ws40d_c00000{word-spacing:33.101340px;}
.ws39d_c00000{word-spacing:33.117012px;}
.ws118_c00000{word-spacing:33.139260px;}
.ws1ce_c00000{word-spacing:33.210990px;}
.wsf8_c00000{word-spacing:33.236568px;}
.ws4ee_c00000{word-spacing:33.255390px;}
.ws474_c00000{word-spacing:33.257340px;}
.ws247_c00000{word-spacing:33.282720px;}
.ws4ec_c00000{word-spacing:33.294270px;}
.ws4ed_c00000{word-spacing:33.301020px;}
.ws468_c00000{word-spacing:33.317040px;}
.ws448_c00000{word-spacing:33.327480px;}
.ws3d3_c00000{word-spacing:33.348030px;}
.ws4f_c00000{word-spacing:33.354450px;}
.ws187_c00000{word-spacing:33.426180px;}
.ws311_c00000{word-spacing:33.483720px;}
.ws16a_c00000{word-spacing:33.491340px;}
.ws1d6_c00000{word-spacing:33.497910px;}
.ws2a1_c00000{word-spacing:33.503340px;}
.ws3ba_c00000{word-spacing:33.533340px;}
.ws39e_c00000{word-spacing:33.535458px;}
.ws45_c00000{word-spacing:33.569640px;}
.ws4f0_c00000{word-spacing:33.635520px;}
.ws6d_c00000{word-spacing:33.641370px;}
.ws494_c00000{word-spacing:33.659100px;}
.ws133_c00000{word-spacing:33.713100px;}
.ws318_c00000{word-spacing:33.772920px;}
.ws124_c00000{word-spacing:33.784830px;}
.ws33d_c00000{word-spacing:33.794550px;}
.ws362_c00000{word-spacing:33.834348px;}
.ws24a_c00000{word-spacing:33.856560px;}
.ws50a_c00000{word-spacing:33.876300px;}
.ws315_c00000{word-spacing:33.899910px;}
.ws21a_c00000{word-spacing:33.928290px;}
.ws258_c00000{word-spacing:33.950550px;}
.wsd7_c00000{word-spacing:34.000020px;}
.ws117_c00000{word-spacing:34.071750px;}
.ws262_c00000{word-spacing:34.143480px;}
.ws480_c00000{word-spacing:34.152030px;}
.ws80_c00000{word-spacing:34.215210px;}
.ws2fe_c00000{word-spacing:34.242270px;}
.ws1f1_c00000{word-spacing:34.286940px;}
.ws2b6_c00000{word-spacing:34.358670px;}
.ws4d9_c00000{word-spacing:34.394148px;}
.ws28e_c00000{word-spacing:34.430400px;}
.ws2ba_c00000{word-spacing:34.502130px;}
.ws1e4_c00000{word-spacing:34.573860px;}
.ws524_c00000{word-spacing:34.619340px;}
.ws479_c00000{word-spacing:34.640040px;}
.ws28d_c00000{word-spacing:34.645590px;}
.ws515_c00000{word-spacing:34.705770px;}
.ws112_c00000{word-spacing:34.717320px;}
.ws382_c00000{word-spacing:34.751340px;}
.ws507_c00000{word-spacing:34.766280px;}
.ws7c_c00000{word-spacing:34.789050px;}
.ws60_c00000{word-spacing:34.860780px;}
.ws36c_c00000{word-spacing:34.907340px;}
.ws2b7_c00000{word-spacing:34.932510px;}
.ws2a0_c00000{word-spacing:35.004240px;}
.ws2fc_c00000{word-spacing:35.044320px;}
.ws1f0_c00000{word-spacing:35.075970px;}
.ws42a_c00000{word-spacing:35.089686px;}
.ws21f_c00000{word-spacing:35.099340px;}
.ws3c9_c00000{word-spacing:35.147340px;}
.ws20f_c00000{word-spacing:35.147700px;}
.ws4a7_c00000{word-spacing:35.201340px;}
.ws4a9_c00000{word-spacing:35.207340px;}
.ws2a4_c00000{word-spacing:35.219430px;}
.ws443_c00000{word-spacing:35.285340px;}
.ws210_c00000{word-spacing:35.291160px;}
.ws3d5_c00000{word-spacing:35.315340px;}
.ws51b_c00000{word-spacing:35.328798px;}
.ws281_c00000{word-spacing:35.362890px;}
.ws42b_c00000{word-spacing:35.388576px;}
.ws282_c00000{word-spacing:35.434620px;}
.ws46c_c00000{word-spacing:35.506350px;}
.ws296_c00000{word-spacing:35.578080px;}
.ws396_c00000{word-spacing:35.649810px;}
.ws261_c00000{word-spacing:35.721540px;}
.ws405_c00000{word-spacing:35.723280px;}
.ws24_c00000{word-spacing:35.793270px;}
.ws3e9_c00000{word-spacing:35.850288px;}
.ws294_c00000{word-spacing:35.865000px;}
.ws2ac_c00000{word-spacing:35.936730px;}
.ws360_c00000{word-spacing:35.964270px;}
.ws3de_c00000{word-spacing:35.979768px;}
.ws257_c00000{word-spacing:35.991270px;}
.ws3ed_c00000{word-spacing:36.008460px;}
.ws41f_c00000{word-spacing:36.083100px;}
.ws320_c00000{word-spacing:36.103410px;}
.ws528_c00000{word-spacing:36.137760px;}
.ws332_c00000{word-spacing:36.151920px;}
.ws45e_c00000{word-spacing:36.223650px;}
.ws398_c00000{word-spacing:36.295380px;}
.ws4c2_c00000{word-spacing:36.365340px;}
.ws259_c00000{word-spacing:36.367110px;}
.ws46b_c00000{word-spacing:36.377340px;}
.ws293_c00000{word-spacing:36.438840px;}
.ws3e2_c00000{word-spacing:36.472410px;}
.ws3fa_c00000{word-spacing:36.486030px;}
.ws33_c00000{word-spacing:36.582300px;}
.ws4ce_c00000{word-spacing:36.593622px;}
.ws248_c00000{word-spacing:36.654030px;}
.ws352_c00000{word-spacing:36.772770px;}
.ws3fb_c00000{word-spacing:36.797490px;}
.ws4a1_c00000{word-spacing:36.821130px;}
.ws31f_c00000{word-spacing:36.847560px;}
.ws169_c00000{word-spacing:36.869220px;}
.ws4af_c00000{word-spacing:36.905970px;}
.ws2be_c00000{word-spacing:36.940950px;}
.ws4c9_c00000{word-spacing:37.012680px;}
.ws46f_c00000{word-spacing:37.043340px;}
.ws521_c00000{word-spacing:37.045050px;}
.ws3a9_c00000{word-spacing:37.051530px;}
.ws3ca_c00000{word-spacing:37.067340px;}
.ws2d7_c00000{word-spacing:37.084410px;}
.ws26a_c00000{word-spacing:37.112520px;}
.ws27b_c00000{word-spacing:37.156140px;}
.ws3b9_c00000{word-spacing:37.259340px;}
.ws371_c00000{word-spacing:37.299600px;}
.ws3f9_c00000{word-spacing:37.371330px;}
.ws431_c00000{word-spacing:37.402020px;}
.ws2f9_c00000{word-spacing:37.443060px;}
.ws2bd_c00000{word-spacing:37.514790px;}
.ws34e_c00000{word-spacing:37.529136px;}
.ws1f4_c00000{word-spacing:37.586520px;}
.ws34f_c00000{word-spacing:37.615212px;}
.ws4e_c00000{word-spacing:37.658250px;}
.ws356_c00000{word-spacing:37.729980px;}
.ws49e_c00000{word-spacing:37.737570px;}
.ws392_c00000{word-spacing:37.764780px;}
.ws42c_c00000{word-spacing:37.801710px;}
.ws2dc_c00000{word-spacing:37.870920px;}
.ws389_c00000{word-spacing:37.908030px;}
.ws30c_c00000{word-spacing:38.016900px;}
.ws3d8_c00000{word-spacing:38.018808px;}
.ws349_c00000{word-spacing:38.160360px;}
.ws31e_c00000{word-spacing:38.176530px;}
.ws334_c00000{word-spacing:38.195550px;}
.ws38b_c00000{word-spacing:38.232090px;}
.ws312_c00000{word-spacing:38.447280px;}
.ws30b_c00000{word-spacing:38.519010px;}
.ws3a4_c00000{word-spacing:38.697270px;}
.ws476_c00000{word-spacing:38.795922px;}
.ws314_c00000{word-spacing:38.826540px;}
.ws238_c00000{word-spacing:39.383520px;}
.ws45a_c00000{word-spacing:39.829770px;}
.ws3fc_c00000{word-spacing:39.875340px;}
.ws34c_c00000{word-spacing:40.527450px;}
.ws456_c00000{word-spacing:40.543050px;}
.ws2fd_c00000{word-spacing:41.306598px;}
.ws3cb_c00000{word-spacing:41.485932px;}
.ws365_c00000{word-spacing:41.486280px;}
.ws25_c00000{word-spacing:42.464160px;}
.ws36f_c00000{word-spacing:42.666270px;}
.ws370_c00000{word-spacing:42.822810px;}
.ws535_c00000{word-spacing:43.696452px;}
.ws4c0_c00000{word-spacing:45.041970px;}
.ws52d_c00000{word-spacing:45.550836px;}
.ws1b_c00000{word-spacing:46.367772px;}
.ws52c_c00000{word-spacing:46.626840px;}
.ws422_c00000{word-spacing:50.119314px;}
.ws1a0_c00000{word-spacing:52.796310px;}
.ws40_c00000{word-spacing:55.473306px;}
.ws20_c00000{word-spacing:55.622028px;}
.ws537_c00000{word-spacing:78.787404px;}
.ws260_c00000{word-spacing:79.261650px;}
.ws37c_c00000{word-spacing:79.263900px;}
.wsef_c00000{word-spacing:95.113980px;}
.ws21_c00000{word-spacing:96.749424px;}
.ws48f_c00000{word-spacing:106.317324px;}
.ws37f_c00000{word-spacing:106.337352px;}
.ws3e_c00000{word-spacing:916.967628px;}
.ws3d_c00000{word-spacing:1432.562868px;}
.ws22_c00000{word-spacing:1579.150296px;}
._90_c00000{margin-left:-88.084080px;}
._7c_c00000{margin-left:-84.027930px;}
._94_c00000{margin-left:-82.899912px;}
._72_c00000{margin-left:-73.048068px;}
._34_c00000{margin-left:-70.359840px;}
._4_c00000{margin-left:-68.812584px;}
._76_c00000{margin-left:-65.803248px;}
._84_c00000{margin-left:-64.675230px;}
._31_c00000{margin-left:-63.194130px;}
._6_c00000{margin-left:-48.374712px;}
._53_c00000{margin-left:-45.126990px;}
._30_c00000{margin-left:-43.627950px;}
._54_c00000{margin-left:-41.675130px;}
._10_c00000{margin-left:-40.527450px;}
._88_c00000{margin-left:-39.251910px;}
._8_c00000{margin-left:-37.701288px;}
._25_c00000{margin-left:-36.207540px;}
._14_c00000{margin-left:-35.147700px;}
._33_c00000{margin-left:-33.479802px;}
._3c_c00000{margin-left:-32.462160px;}
._1f_c00000{margin-left:-31.417740px;}
._79_c00000{margin-left:-30.367224px;}
._78_c00000{margin-left:-29.056578px;}
._15_c00000{margin-left:-27.214362px;}
._9a_c00000{margin-left:-25.610736px;}
._7a_c00000{margin-left:-24.369210px;}
._7d_c00000{margin-left:-22.533216px;}
._8c_c00000{margin-left:-20.373486px;}
._89_c00000{margin-left:-19.157736px;}
._52_c00000{margin-left:-18.075960px;}
._32_c00000{margin-left:-15.629850px;}
._77_c00000{margin-left:-13.831146px;}
._2c_c00000{margin-left:-12.098970px;}
._7_c00000{margin-left:-10.742316px;}
._1e_c00000{margin-left:-9.204480px;}
._5_c00000{margin-left:-8.005068px;}
._d_c00000{margin-left:-6.742620px;}
._3f_c00000{margin-left:-5.738400px;}
._9_c00000{margin-left:-4.389876px;}
._3_c00000{margin-left:-2.685540px;}
._2_c00000{margin-left:-1.006560px;}
._0_c00000{width:1.059840px;}
._1_c00000{width:2.318400px;}
._80_c00000{width:3.356310px;}
._e_c00000{width:4.375530px;}
._50_c00000{width:5.786040px;}
._61_c00000{width:7.252188px;}
._40_c00000{width:9.029160px;}
._4e_c00000{width:10.604880px;}
._a_c00000{width:12.235536px;}
._99_c00000{width:13.565460px;}
._86_c00000{width:15.041244px;}
._5e_c00000{width:16.068720px;}
._2b_c00000{width:17.382060px;}
._44_c00000{width:18.578070px;}
._1b_c00000{width:20.243970px;}
._5c_c00000{width:21.925980px;}
._13_c00000{width:23.383980px;}
._27_c00000{width:24.443820px;}
._39_c00000{width:25.543170px;}
._4a_c00000{width:26.899950px;}
._4d_c00000{width:28.541250px;}
._4c_c00000{width:29.542782px;}
._2d_c00000{width:30.962430px;}
._4b_c00000{width:32.874930px;}
._65_c00000{width:33.896196px;}
._42_c00000{width:35.205360px;}
._35_c00000{width:36.556110px;}
._1a_c00000{width:37.777620px;}
._46_c00000{width:39.715020px;}
._41_c00000{width:41.294730px;}
._b_c00000{width:42.535890px;}
._2f_c00000{width:43.588800px;}
._68_c00000{width:44.641440px;}
._3a_c00000{width:45.692010px;}
._16_c00000{width:47.700450px;}
._28_c00000{width:49.596960px;}
._3e_c00000{width:50.928300px;}
._12_c00000{width:52.219440px;}
._29_c00000{width:54.382170px;}
._51_c00000{width:55.614990px;}
._3d_c00000{width:57.808050px;}
._49_c00000{width:59.743452px;}
._19_c00000{width:60.755310px;}
._1c_c00000{width:62.692020px;}
._26_c00000{width:63.983160px;}
._18_c00000{width:66.079440px;}
._36_c00000{width:67.426200px;}
._5f_c00000{width:68.630790px;}
._38_c00000{width:69.649830px;}
._3b_c00000{width:71.084430px;}
._6c_c00000{width:72.409440px;}
._47_c00000{width:73.443882px;}
._81_c00000{width:79.333380px;}
._7f_c00000{width:95.200056px;}
._22_c00000{width:97.185456px;}
._17_c00000{width:101.282760px;}
._98_c00000{width:192.636528px;}
._67_c00000{width:199.996908px;}
._24_c00000{width:389.907120px;}
._85_c00000{width:417.283050px;}
._70_c00000{width:432.867510px;}
._6e_c00000{width:472.605930px;}
._6b_c00000{width:524.194146px;}
._6d_c00000{width:567.846210px;}
._2a_c00000{width:593.175390px;}
._87_c00000{width:620.264400px;}
._20_c00000{width:649.913820px;}
._93_c00000{width:660.629400px;}
._59_c00000{width:668.635350px;}
._83_c00000{width:676.234770px;}
._6a_c00000{width:736.076076px;}
._8b_c00000{width:770.823840px;}
._37_c00000{width:779.068020px;}
._8a_c00000{width:805.941840px;}
._8d_c00000{width:819.472800px;}
._45_c00000{width:828.369570px;}
._75_c00000{width:858.522024px;}
._8e_c00000{width:932.925150px;}
._48_c00000{width:940.572450px;}
._5b_c00000{width:941.720130px;}
._56_c00000{width:972.899844px;}
._f_c00000{width:977.608170px;}
._73_c00000{width:998.380476px;}
._7b_c00000{width:999.718110px;}
._95_c00000{width:1077.707820px;}
._5a_c00000{width:1085.928960px;}
._62_c00000{width:1166.662596px;}
._6f_c00000{width:1225.753770px;}
._97_c00000{width:1234.836720px;}
._66_c00000{width:1242.555750px;}
._92_c00000{width:1256.266830px;}
._91_c00000{width:1260.762780px;}
._58_c00000{width:1264.129320px;}
._57_c00000{width:1268.768730px;}
._96_c00000{width:1334.093880px;}
._63_c00000{width:1341.956370px;}
._8f_c00000{width:1408.670730px;}
._55_c00000{width:1416.818940px;}
._64_c00000{width:1424.319570px;}
._74_c00000{width:1426.967928px;}
._69_c00000{width:1477.893390px;}
._82_c00000{width:1643.022450px;}
._11_c00000{width:1656.317430px;}
._7e_c00000{width:1678.140450px;}
._21_c00000{width:1783.167600px;}
._60_c00000{width:1812.428760px;}
._71_c00000{width:1814.978760px;}
._5d_c00000{width:1835.702760px;}
._43_c00000{width:1856.420760px;}
._4f_c00000{width:1858.970760px;}
._2e_c00000{width:1879.694760px;}
._23_c00000{width:1882.223892px;}
._c_c00000{width:1921.216320px;}
._1d_c00000{width:2031.640320px;}
.fc3_c00000{color:transparent;}
.fc2_c00000{color:rgb(0,0,0);}
.fc1_c00000{color:rgb(54,95,145);}
.fc0_c00000{color:rgb(36,64,97);}
.fsf_c00000{font-size:41.844000px;}
.fse_c00000{font-size:47.820000px;}
.fs4_c00000{font-size:59.760000px;}
.fs10_c00000{font-size:59.778000px;}
.fs0_c00000{font-size:66.240000px;}
.fsb_c00000{font-size:71.730000px;}
.fs1_c00000{font-size:72.000000px;}
.fs6_c00000{font-size:84.240000px;}
.fsc_c00000{font-size:86.076000px;}
.fs8_c00000{font-size:95.760000px;}
.fs9_c00000{font-size:103.290000px;}
.fs7_c00000{font-size:108.000000px;}
.fs2_c00000{font-size:120.240000px;}
.fsa_c00000{font-size:123.978000px;}
.fs5_c00000{font-size:131.760000px;}
.fsd_c00000{font-size:148.722000px;}
.fs3_c00000{font-size:167.760000px;}
.y0_c00000{bottom:0.000000px;}
.y2_c00000{bottom:57.600000px;}
.y119_c00000{bottom:61.552500px;}
.y1_c00000{bottom:82.260000px;}
.y4c_c00000{bottom:85.039500px;}
.y214_c00000{bottom:93.442500px;}
.ya9d_c00000{bottom:93.457500px;}
.ye8d_c00000{bottom:93.469500px;}
.y113d_c00000{bottom:93.474000px;}
.y1852_c00000{bottom:93.504000px;}
.y1577_c00000{bottom:93.522000px;}
.y16eb_c00000{bottom:93.561000px;}
.y960_c00000{bottom:93.595500px;}
.y189b_c00000{bottom:93.619500px;}
.yc85_c00000{bottom:93.628500px;}
.y18c_c00000{bottom:93.721500px;}
.yae8_c00000{bottom:94.366500px;}
.y393_c00000{bottom:94.500000px;}
.y192a_c00000{bottom:94.716000px;}
.y1278_c00000{bottom:94.740000px;}
.y13da_c00000{bottom:94.848000px;}
.y845_c00000{bottom:94.864500px;}
.y4e8_c00000{bottom:94.956000px;}
.y1890_c00000{bottom:95.329500px;}
.y608_c00000{bottom:95.538000px;}
.ya3c_c00000{bottom:95.968500px;}
.y17cb_c00000{bottom:95.977500px;}
.y42f_c00000{bottom:96.226500px;}
.y6ab_c00000{bottom:96.318000px;}
.ycf0_c00000{bottom:96.685500px;}
.ye10_c00000{bottom:97.098000px;}
.y10b9_c00000{bottom:97.215000px;}
.y1298_c00000{bottom:97.405500px;}
.y160e_c00000{bottom:97.596000px;}
.y1877_c00000{bottom:97.612500px;}
.ye86_c00000{bottom:97.704000px;}
.y1065_c00000{bottom:97.713000px;}
.y8a2_c00000{bottom:97.729500px;}
.y14e2_c00000{bottom:97.746000px;}
.y118d_c00000{bottom:97.828500px;}
.y195c_c00000{bottom:97.870500px;}
.y159e_c00000{bottom:97.929000px;}
.y956_c00000{bottom:97.962000px;}
.yf7_c00000{bottom:97.990500px;}
.y10d2_c00000{bottom:98.053500px;}
.y1339_c00000{bottom:98.134500px;}
.y1476_c00000{bottom:98.310000px;}
.y1335_c00000{bottom:98.352000px;}
.y16a4_c00000{bottom:98.601000px;}
.y7a1_c00000{bottom:98.766000px;}
.ydb5_c00000{bottom:98.802000px;}
.y152f_c00000{bottom:98.824500px;}
.y2c0_c00000{bottom:98.865000px;}
.y15c1_c00000{bottom:98.869500px;}
.y3f7_c00000{bottom:98.877000px;}
.ydac_c00000{bottom:98.878500px;}
.y5b1_c00000{bottom:98.889000px;}
.ybe5_c00000{bottom:98.901000px;}
.y121d_c00000{bottom:98.943000px;}
.y97c_c00000{bottom:98.983500px;}
.y719_c00000{bottom:99.000000px;}
.y1f1_c00000{bottom:99.001500px;}
.yaed_c00000{bottom:99.018000px;}
.y152c_c00000{bottom:99.073500px;}
.ye59_c00000{bottom:99.108000px;}
.y5c6_c00000{bottom:99.172500px;}
.y1658_c00000{bottom:99.216000px;}
.y10cb_c00000{bottom:99.232500px;}
.y1191_c00000{bottom:99.274500px;}
.y876_c00000{bottom:99.331500px;}
.y13d2_c00000{bottom:99.340500px;}
.y138f_c00000{bottom:99.349500px;}
.ycbb_c00000{bottom:99.364500px;}
.y823_c00000{bottom:99.456000px;}
.y392_c00000{bottom:99.922500px;}
.yb05_c00000{bottom:99.954000px;}
.y171e_c00000{bottom:100.054500px;}
.y7d1_c00000{bottom:100.078500px;}
.y1929_c00000{bottom:100.138500px;}
.y1277_c00000{bottom:100.164000px;}
.ydb_c00000{bottom:100.170000px;}
.y2fe_c00000{bottom:100.272000px;}
.y94f_c00000{bottom:100.305000px;}
.y43b_c00000{bottom:100.320000px;}
.y7c2_c00000{bottom:100.360500px;}
.y699_c00000{bottom:100.560000px;}
.y572_c00000{bottom:100.644000px;}
.y967_c00000{bottom:100.662000px;}
.y1807_c00000{bottom:100.726500px;}
.y641_c00000{bottom:100.743000px;}
.y1832_c00000{bottom:100.818000px;}
.y930_c00000{bottom:100.950000px;}
.y143e_c00000{bottom:100.959000px;}
.y1250_c00000{bottom:101.041500px;}
.y15d9_c00000{bottom:101.161500px;}
.y1310_c00000{bottom:101.182500px;}
.y121c_c00000{bottom:101.259000px;}
.y112_c00000{bottom:101.275500px;}
.y1512_c00000{bottom:101.293500px;}
.y700_c00000{bottom:101.308500px;}
.ya3b_c00000{bottom:101.391000px;}
.y13b3_c00000{bottom:101.863500px;}
.y18f0_c00000{bottom:101.874000px;}
.y18ac_c00000{bottom:102.072000px;}
.y1035_c00000{bottom:102.171000px;}
.y319_c00000{bottom:102.204000px;}
.y8e5_c00000{bottom:102.220500px;}
.y1624_c00000{bottom:102.229500px;}
.y9f8_c00000{bottom:102.237000px;}
.y5ad_c00000{bottom:102.312000px;}
.yc99_c00000{bottom:102.553500px;}
.y1457_c00000{bottom:102.727500px;}
.y485_c00000{bottom:102.960000px;}
.y73f_c00000{bottom:103.084500px;}
.y1c0_c00000{bottom:103.167000px;}
.y195b_c00000{bottom:103.293000px;}
.ya01_c00000{bottom:103.426500px;}
.ya29_c00000{bottom:103.557000px;}
.yf32_c00000{bottom:103.590000px;}
.y1281_c00000{bottom:103.723500px;}
.yf0b_c00000{bottom:103.789500px;}
.y15b9_c00000{bottom:103.806000px;}
.y1067_c00000{bottom:103.822500px;}
.yb07_c00000{bottom:103.839000px;}
.y5e2_c00000{bottom:103.930500px;}
.y14f_c00000{bottom:104.179500px;}
.y1357_c00000{bottom:104.629500px;}
.yc8c_c00000{bottom:104.638500px;}
.y1700_c00000{bottom:104.655000px;}
.y1095_c00000{bottom:104.746500px;}
.y186c_c00000{bottom:104.785500px;}
.ycba_c00000{bottom:104.788500px;}
.y1296_c00000{bottom:104.820000px;}
.y4ff_c00000{bottom:104.869500px;}
.y17ad_c00000{bottom:104.986500px;}
.y1884_c00000{bottom:105.004500px;}
.y157a_c00000{bottom:105.222000px;}
.y5cc_c00000{bottom:105.334500px;}
.y114f_c00000{bottom:105.427500px;}
.y1582_c00000{bottom:105.726000px;}
.y22f_c00000{bottom:105.958500px;}
.y1ad_c00000{bottom:106.023000px;}
.y120f_c00000{bottom:106.041000px;}
.y571_c00000{bottom:106.066500px;}
.y178b_c00000{bottom:106.149000px;}
.y640_c00000{bottom:106.165500px;}
.yb6_c00000{bottom:106.216500px;}
.y92f_c00000{bottom:106.374000px;}
.y1263_c00000{bottom:106.482000px;}
.y1712_c00000{bottom:106.521000px;}
.y8ff_c00000{bottom:106.570500px;}
.y130f_c00000{bottom:106.606500px;}
.y16fd_c00000{bottom:106.770000px;}
.yc97_c00000{bottom:106.803000px;}
.y145c_c00000{bottom:106.920000px;}
.ya99_c00000{bottom:107.116500px;}
.y808_c00000{bottom:107.121000px;}
.yb5c_c00000{bottom:107.610000px;}
.y1670_c00000{bottom:107.634000px;}
.y9f7_c00000{bottom:107.661000px;}
.y137c_c00000{bottom:107.817000px;}
.y1027_c00000{bottom:107.841000px;}
.y125d_c00000{bottom:107.965500px;}
.y1209_c00000{bottom:107.974500px;}
.yb53_c00000{bottom:107.976000px;}
.ybce_c00000{bottom:107.992500px;}
.yf03_c00000{bottom:108.066000px;}
.yc50_c00000{bottom:108.073500px;}
.y1660_c00000{bottom:108.232500px;}
.ya13_c00000{bottom:108.273000px;}
.y908_c00000{bottom:108.289500px;}
.y167e_c00000{bottom:108.381000px;}
.y409_c00000{bottom:108.396000px;}
.y469_c00000{bottom:108.672000px;}
.y1909_c00000{bottom:108.732000px;}
.ya28_c00000{bottom:108.979500px;}
.y187d_c00000{bottom:108.996000px;}
.y17b0_c00000{bottom:109.012500px;}
.y43d_c00000{bottom:109.128000px;}
.y14d9_c00000{bottom:109.138500px;}
.y3e1_c00000{bottom:109.194000px;}
.y5e1_c00000{bottom:109.354500px;}
.yd2_c00000{bottom:109.501500px;}
.yfef_c00000{bottom:109.576500px;}
.y512_c00000{bottom:109.743000px;}
.yed4_c00000{bottom:109.792500px;}
.ye78_c00000{bottom:109.891500px;}
.ye00_c00000{bottom:109.908000px;}
.y841_c00000{bottom:109.924500px;}
.y1098_c00000{bottom:109.942500px;}
.y18a1_c00000{bottom:109.999500px;}
.y838_c00000{bottom:110.530500px;}
.y5cb_c00000{bottom:110.757000px;}
.y1316_c00000{bottom:110.848500px;}
.y12a3_c00000{bottom:110.880000px;}
.ye48_c00000{bottom:111.046500px;}
.y1308_c00000{bottom:111.079500px;}
.ye33_c00000{bottom:111.145500px;}
.y9bc_c00000{bottom:111.162000px;}
.y297_c00000{bottom:111.178500px;}
.y1547_c00000{bottom:111.187500px;}
.yd65_c00000{bottom:111.195000px;}
.y425_c00000{bottom:111.253500px;}
.y1575_c00000{bottom:111.255000px;}
.yd17_c00000{bottom:111.301500px;}
.y11fa_c00000{bottom:111.303000px;}
.y213_c00000{bottom:111.375000px;}
.y3f6_c00000{bottom:111.387000px;}
.ydab_c00000{bottom:111.388500px;}
.ya9c_c00000{bottom:111.391500px;}
.y5b0_c00000{bottom:111.399000px;}
.y1717_c00000{bottom:111.402000px;}
.ye8c_c00000{bottom:111.403500px;}
.y113c_c00000{bottom:111.408000px;}
.ybe4_c00000{bottom:111.411000px;}
.y16ea_c00000{bottom:111.495000px;}
.y83b_c00000{bottom:111.511500px;}
.yaec_c00000{bottom:111.528000px;}
.y2a1_c00000{bottom:111.543000px;}
.yc84_c00000{bottom:111.561000px;}
.y2c6_c00000{bottom:111.576000px;}
.y18b_c00000{bottom:111.654000px;}
.y1917_c00000{bottom:111.711000px;}
.y1190_c00000{bottom:111.784500px;}
.y138e_c00000{bottom:111.859500px;}
.y1015_c00000{bottom:111.901500px;}
.y8d4_c00000{bottom:111.936000px;}
.y109d_c00000{bottom:111.994500px;}
.y17cf_c00000{bottom:112.119000px;}
.yae7_c00000{bottom:112.299000px;}
.y6e8_c00000{bottom:112.432500px;}
.y184c_c00000{bottom:112.579500px;}
.y1955_c00000{bottom:112.648500px;}
.ycb1_c00000{bottom:112.696500px;}
.yf2b_c00000{bottom:112.747500px;}
.y6d7_c00000{bottom:112.764000px;}
.y1c6_c00000{bottom:112.780500px;}
.y4d9_c00000{bottom:112.977000px;}
.y140a_c00000{bottom:113.022000px;}
.y15ec_c00000{bottom:113.088000px;}
.y966_c00000{bottom:113.172000px;}
.y1203_c00000{bottom:113.223000px;}
.y188f_c00000{bottom:113.263500px;}
.y607_c00000{bottom:113.470500px;}
.y182d_c00000{bottom:113.613000px;}
.y86a_c00000{bottom:113.778000px;}
.y6ff_c00000{bottom:113.818500px;}
.ycb5_c00000{bottom:113.854500px;}
.yf3c_c00000{bottom:113.869500px;}
.y17ca_c00000{bottom:113.910000px;}
.y132e_c00000{bottom:113.919000px;}
.y391_c00000{bottom:114.034500px;}
.y42e_c00000{bottom:114.159000px;}
.y1928_c00000{bottom:114.250500px;}
.y1276_c00000{bottom:114.276000px;}
.y18ef_c00000{bottom:114.384000px;}
.ycef_c00000{bottom:114.618000px;}
.yf47_c00000{bottom:114.982500px;}
.yfee_c00000{bottom:114.999000px;}
.ye0f_c00000{bottom:115.030500px;}
.y1883_c00000{bottom:115.107000px;}
.y919_c00000{bottom:115.155000px;}
.y80d_c00000{bottom:115.231500px;}
.y1964_c00000{bottom:115.339500px;}
.y1097_c00000{bottom:115.365000px;}
.ya3a_c00000{bottom:115.503000px;}
.y850_c00000{bottom:115.528500px;}
.y1876_c00000{bottom:115.546500px;}
.y151d_c00000{bottom:115.620000px;}
.ye85_c00000{bottom:115.636500px;}
.y8a1_c00000{bottom:115.662000px;}
.y14e1_c00000{bottom:115.678500px;}
.y118c_c00000{bottom:115.761000px;}
.y159d_c00000{bottom:115.861500px;}
.y12dd_c00000{bottom:115.894500px;}
.ya00_c00000{bottom:115.936500px;}
.yc58_c00000{bottom:116.002500px;}
.y18e1_c00000{bottom:116.019000px;}
.y1338_c00000{bottom:116.067000px;}
.ybb0_c00000{bottom:116.226000px;}
.y1502_c00000{bottom:116.356500px;}
.y1307_c00000{bottom:116.502000px;}
.y16a3_c00000{bottom:116.533500px;}
.y9bb_c00000{bottom:116.584500px;}
.y155a_c00000{bottom:116.586000px;}
.y828_c00000{bottom:116.602500px;}
.yd64_c00000{bottom:116.619000px;}
.yf90_c00000{bottom:116.674500px;}
.y7a0_c00000{bottom:116.698500px;}
.yb45_c00000{bottom:116.716500px;}
.y627_c00000{bottom:116.727000px;}
.ydb4_c00000{bottom:116.734500px;}
.y166e_c00000{bottom:116.749500px;}
.y8f6_c00000{bottom:116.782500px;}
.y2a5_c00000{bottom:116.797500px;}
.y15c0_c00000{bottom:116.802000px;}
.ya9b_c00000{bottom:116.814000px;}
.y1716_c00000{bottom:116.826000px;}
.y113b_c00000{bottom:116.830500px;}
.yead_c00000{bottom:116.832000px;}
.y1851_c00000{bottom:116.859000px;}
.y1576_c00000{bottom:116.877000px;}
.y97b_c00000{bottom:116.916000px;}
.y718_c00000{bottom:116.932500px;}
.y1f0_c00000{bottom:116.934000px;}
.y95f_c00000{bottom:116.950500px;}
.y1637_c00000{bottom:116.974500px;}
.y189a_c00000{bottom:116.976000px;}
.yc83_c00000{bottom:116.983500px;}
.y152b_c00000{bottom:117.007500px;}
.yb4e_c00000{bottom:117.024000px;}
.ye58_c00000{bottom:117.040500px;}
.y1356_c00000{bottom:117.139500px;}
.y725_c00000{bottom:117.148500px;}
.y10ca_c00000{bottom:117.165000px;}
.y1094_c00000{bottom:117.256500px;}
.y875_c00000{bottom:117.264000px;}
.y323_c00000{bottom:117.330000px;}
.y171b_c00000{bottom:117.372000px;}
.y822_c00000{bottom:117.388500px;}
.y195a_c00000{bottom:117.405000px;}
.y17ac_c00000{bottom:117.496500px;}
.y18ec_c00000{bottom:117.513000px;}
.y1579_c00000{bottom:117.732000px;}
.y710_c00000{bottom:117.855000px;}
.yb04_c00000{bottom:117.886500px;}
.y928_c00000{bottom:117.903000px;}
.y1490_c00000{bottom:118.003500px;}
.y257_c00000{bottom:118.086000px;}
.y1d2_c00000{bottom:118.171500px;}
.yfea_c00000{bottom:118.204500px;}
.y844_c00000{bottom:118.221000px;}
.y1581_c00000{bottom:118.236000px;}
.y43a_c00000{bottom:118.252500px;}
.y7c1_c00000{bottom:118.294500px;}
.y4e7_c00000{bottom:118.312500px;}
.y4a3_c00000{bottom:118.401000px;}
.y22e_c00000{bottom:118.468500px;}
.y698_c00000{bottom:118.492500px;}
.ya89_c00000{bottom:118.518000px;}
.y120e_c00000{bottom:118.551000px;}
.y1749_c00000{bottom:118.717500px;}
.y154f_c00000{bottom:118.734000px;}
.yf8_c00000{bottom:118.833000px;}
.y96_c00000{bottom:118.834500px;}
.y16d3_c00000{bottom:118.866000px;}
.yc88_c00000{bottom:118.882500px;}
.yd8b_c00000{bottom:118.957500px;}
.y124f_c00000{bottom:118.974000px;}
.y1332_c00000{bottom:118.990500px;}
.y869_c00000{bottom:119.200500px;}
.y6fe_c00000{bottom:119.242500px;}
.y42d_c00000{bottom:119.583000px;}
.y807_c00000{bottom:119.631000px;}
.y6aa_c00000{bottom:119.673000px;}
.y13b2_c00000{bottom:119.796000px;}
.y10c8_c00000{bottom:119.880000px;}
.y8b6_c00000{bottom:119.896500px;}
.ye70_c00000{bottom:119.914500px;}
.y18ab_c00000{bottom:120.004500px;}
.ycee_c00000{bottom:120.040500px;}
.y1034_c00000{bottom:120.103500px;}
.yb5b_c00000{bottom:120.120000px;}
.y318_c00000{bottom:120.136500px;}
.y8e4_c00000{bottom:120.153000px;}
.y1623_c00000{bottom:120.162000px;}
.y570_c00000{bottom:120.178500px;}
.y5ac_c00000{bottom:120.244500px;}
.y1806_c00000{bottom:120.261000px;}
.yccd_c00000{bottom:120.313500px;}
.y240_c00000{bottom:120.333000px;}
.yb52_c00000{bottom:120.486000px;}
.ybcd_c00000{bottom:120.502500px;}
.y10b8_c00000{bottom:120.570000px;}
.y59a_c00000{bottom:120.651000px;}
.y130e_c00000{bottom:120.718500px;}
.y165f_c00000{bottom:120.742500px;}
.y484_c00000{bottom:120.892500px;}
.y160d_c00000{bottom:120.952500px;}
.y1875_c00000{bottom:120.969000px;}
.y73e_c00000{bottom:121.017000px;}
.ye84_c00000{bottom:121.060500px;}
.y1064_c00000{bottom:121.068000px;}
.y8a0_c00000{bottom:121.084500px;}
.y1bf_c00000{bottom:121.099500px;}
.y14e0_c00000{bottom:121.101000px;}
.y1908_c00000{bottom:121.242000px;}
.y955_c00000{bottom:121.317000px;}
.y9ff_c00000{bottom:121.359000px;}
.y185e_c00000{bottom:121.389000px;}
.y10d1_c00000{bottom:121.408500px;}
.y1337_c00000{bottom:121.491000px;}
.y1594_c00000{bottom:121.606500px;}
.y14d8_c00000{bottom:121.648500px;}
.y14bc_c00000{bottom:121.656000px;}
.y1475_c00000{bottom:121.666500px;}
.y1334_c00000{bottom:121.707000px;}
.yf0a_c00000{bottom:121.722000px;}
.y18e2_c00000{bottom:121.756500px;}
.y1933_c00000{bottom:121.846500px;}
.y14e_c00000{bottom:122.112000px;}
.y79f_c00000{bottom:122.121000px;}
.y152e_c00000{bottom:122.181000px;}
.y97a_c00000{bottom:122.338500px;}
.y1553_c00000{bottom:122.554500px;}
.yc8b_c00000{bottom:122.571000px;}
.y10c9_c00000{bottom:122.587500px;}
.y13d1_c00000{bottom:122.695500px;}
.y322_c00000{bottom:122.752500px;}
.y1959_c00000{bottom:122.829000px;}
.y4bd_c00000{bottom:122.893500px;}
.ya27_c00000{bottom:123.091500px;}
.y114e_c00000{bottom:123.360000px;}
.y12a2_c00000{bottom:123.390000px;}
.y7d0_c00000{bottom:123.435000px;}
.y5e0_c00000{bottom:123.466500px;}
.y1470_c00000{bottom:123.483000px;}
.y13c1_c00000{bottom:123.576000px;}
.y7c0_c00000{bottom:123.717000px;}
.y1ac_c00000{bottom:123.955500px;}
.y1958_c00000{bottom:123.973500px;}
.y16a_c00000{bottom:124.047000px;}
.y178a_c00000{bottom:124.081500px;}
.y1831_c00000{bottom:124.173000px;}
.y17aa_c00000{bottom:124.189500px;}
.y1172_c00000{bottom:124.221000px;}
.y1297_c00000{bottom:124.296000px;}
.y11ce_c00000{bottom:124.299000px;}
.yc87_c00000{bottom:124.306500px;}
.y143d_c00000{bottom:124.315500px;}
.ycb9_c00000{bottom:124.323000px;}
.y1262_c00000{bottom:124.414500px;}
.yb10_c00000{bottom:124.431000px;}
.y8d3_c00000{bottom:124.446000px;}
.yfe8_c00000{bottom:124.452000px;}
.y1711_c00000{bottom:124.453500px;}
.y8fe_c00000{bottom:124.504500px;}
.y17ce_c00000{bottom:124.629000px;}
.y1511_c00000{bottom:124.648500px;}
.y145b_c00000{bottom:124.852500px;}
.y5ca_c00000{bottom:124.869000px;}
.yf6_c00000{bottom:124.881000px;}
.ya98_c00000{bottom:125.049000px;}
.yaa7_c00000{bottom:125.076000px;}
.y13b1_c00000{bottom:125.220000px;}
.y8b5_c00000{bottom:125.319000px;}
.y55e_c00000{bottom:125.334000px;}
.y1033_c00000{bottom:125.526000px;}
.y317_c00000{bottom:125.560500px;}
.y8e3_c00000{bottom:125.577000px;}
.y137b_c00000{bottom:125.749500px;}
.y1026_c00000{bottom:125.773500px;}
.y125c_c00000{bottom:125.898000px;}
.y1208_c00000{bottom:125.907000px;}
.y92e_c00000{bottom:125.908500px;}
.y5c5_c00000{bottom:126.063000px;}
.y599_c00000{bottom:126.075000px;}
.y1456_c00000{bottom:126.082500px;}
.y109c_c00000{bottom:126.106500px;}
.y182c_c00000{bottom:126.123000px;}
.y167d_c00000{bottom:126.313500px;}
.y483_c00000{bottom:126.315000px;}
.y408_c00000{bottom:126.330000px;}
.yb87_c00000{bottom:126.363000px;}
.ycb4_c00000{bottom:126.364500px;}
.y73d_c00000{bottom:126.439500px;}
.y468_c00000{bottom:126.604500px;}
.yd33_c00000{bottom:126.769500px;}
.yf31_c00000{bottom:126.945000px;}
.y2fd_c00000{bottom:127.027500px;}
.yda_c00000{bottom:127.060500px;}
.y1280_c00000{bottom:127.080000px;}
.y3e0_c00000{bottom:127.128000px;}
.y15b8_c00000{bottom:127.162500px;}
.y1066_c00000{bottom:127.179000px;}
.yb06_c00000{bottom:127.195500px;}
.yf46_c00000{bottom:127.492500px;}
.y1589_c00000{bottom:127.675500px;}
.y6c8_c00000{bottom:127.708500px;}
.ydff_c00000{bottom:127.840500px;}
.y1963_c00000{bottom:127.849500px;}
.y15d8_c00000{bottom:127.918500px;}
.y18a0_c00000{bottom:127.933500px;}
.y121b_c00000{bottom:128.016000px;}
.y4b_c00000{bottom:128.040000px;}
.y186b_c00000{bottom:128.142000px;}
.y111_c00000{bottom:128.166000px;}
.y1295_c00000{bottom:128.175000px;}
.y4bc_c00000{bottom:128.316000px;}
.y291_c00000{bottom:128.697000px;}
.y1315_c00000{bottom:128.781000px;}
.y114d_c00000{bottom:128.784000px;}
.y12a1_c00000{bottom:128.814000px;}
.y146f_c00000{bottom:128.905500px;}
.y93f_c00000{bottom:128.970000px;}
.y417_c00000{bottom:129.055500px;}
.ya1b_c00000{bottom:129.078000px;}
.y16c4_c00000{bottom:129.094500px;}
.yd39_c00000{bottom:129.111000px;}
.y1546_c00000{bottom:129.120000px;}
.y424_c00000{bottom:129.186000px;}
.y134_c00000{bottom:129.271500px;}
.y2a4_c00000{bottom:129.307500px;}
.y15bf_c00000{bottom:129.312000px;}
.y5af_c00000{bottom:129.331500px;}
.y1392_c00000{bottom:129.343500px;}
.y1ab_c00000{bottom:129.379500px;}
.y95e_c00000{bottom:129.460500px;}
.y2c5_c00000{bottom:129.508500px;}
.y18a_c00000{bottom:129.586500px;}
.y138d_c00000{bottom:129.792000px;}
.ya80_c00000{bottom:129.841500px;}
.y8fd_c00000{bottom:129.927000px;}
.y16fc_c00000{bottom:130.126500px;}
.yc96_c00000{bottom:130.159500px;}
.yae6_c00000{bottom:130.233000px;}
.y145a_c00000{bottom:130.275000px;}
.y5c9_c00000{bottom:130.293000px;}
.y6e7_c00000{bottom:130.365000px;}
.ya97_c00000{bottom:130.473000px;}
.y2e3_c00000{bottom:130.512000px;}
.y126d_c00000{bottom:130.548000px;}
.y1954_c00000{bottom:130.581000px;}
.y1306_c00000{bottom:130.614000px;}
.ycb0_c00000{bottom:130.630500px;}
.y1d1_c00000{bottom:130.680000px;}
.y9ba_c00000{bottom:130.698000px;}
.y827_c00000{bottom:130.714500px;}
.y843_c00000{bottom:130.731000px;}
.y364_c00000{bottom:130.909500px;}
.y1715_c00000{bottom:130.938000px;}
.y113a_c00000{bottom:130.942500px;}
.y1409_c00000{bottom:130.954500px;}
.yc82_c00000{bottom:131.095500px;}
.y137a_c00000{bottom:131.172000px;}
.y188e_c00000{bottom:131.196000px;}
.y1025_c00000{bottom:131.197500px;}
.y125b_c00000{bottom:131.322000px;}
.y1207_c00000{bottom:131.329500px;}
.yf02_c00000{bottom:131.421000px;}
.yc4f_c00000{bottom:131.430000px;}
.ya12_c00000{bottom:131.629500px;}
.y907_c00000{bottom:131.646000px;}
.y94e_c00000{bottom:131.743500px;}
.y4fe_c00000{bottom:131.760000px;}
.yf3b_c00000{bottom:131.802000px;}
.y17c9_c00000{bottom:131.842500px;}
.y1493_c00000{bottom:131.878500px;}
.y390_c00000{bottom:131.967000px;}
.y6de_c00000{bottom:131.983500px;}
.y1275_c00000{bottom:132.208500px;}
.y18ee_c00000{bottom:132.316500px;}
.y4d8_c00000{bottom:132.513000px;}
.y72_c00000{bottom:132.988500px;}
.y1882_c00000{bottom:133.039500px;}
.y10b7_c00000{bottom:133.080000px;}
.y78c_c00000{bottom:133.096500px;}
.y511_c00000{bottom:133.098000px;}
.yb5_c00000{bottom:133.108500px;}
.y16f4_c00000{bottom:133.114500px;}
.ya04_c00000{bottom:133.131000px;}
.yed3_c00000{bottom:133.147500px;}
.ye77_c00000{bottom:133.248000px;}
.y840_c00000{bottom:133.281000px;}
.y868_c00000{bottom:133.312500px;}
.y6fd_c00000{bottom:133.354500px;}
.y84f_c00000{bottom:133.462500px;}
.y1462_c00000{bottom:133.479000px;}
.y151c_c00000{bottom:133.552500px;}
.y1063_c00000{bottom:133.578000px;}
.y42c_c00000{bottom:133.695000px;}
.y16d6_c00000{bottom:133.794000px;}
.y954_c00000{bottom:133.827000px;}
.y837_c00000{bottom:133.887000px;}
.y10d0_c00000{bottom:133.918500px;}
.y18e0_c00000{bottom:133.951500px;}
.yced_c00000{bottom:134.154000px;}
.y1333_c00000{bottom:134.217000px;}
.ye47_c00000{bottom:134.401500px;}
.ye32_c00000{bottom:134.502000px;}
.y1559_c00000{bottom:134.518500px;}
.y63f_c00000{bottom:134.524500px;}
.y296_c00000{bottom:134.535000px;}
.yf8f_c00000{bottom:134.608500px;}
.yd16_c00000{bottom:134.658000px;}
.y626_c00000{bottom:134.659500px;}
.y166d_c00000{bottom:134.682000px;}
.y152d_c00000{bottom:134.691000px;}
.y8f5_c00000{bottom:134.715000px;}
.y212_c00000{bottom:134.730000px;}
.y3b6_c00000{bottom:134.731500px;}
.y3f5_c00000{bottom:134.742000px;}
.ydaa_c00000{bottom:134.745000px;}
.y5ae_c00000{bottom:134.755500px;}
.ye8b_c00000{bottom:134.758500px;}
.ybe3_c00000{bottom:134.767500px;}
.yd23_c00000{bottom:134.848500px;}
.y16e9_c00000{bottom:134.850000px;}
.y717_c00000{bottom:134.865000px;}
.y1ef_c00000{bottom:134.866500px;}
.yaeb_c00000{bottom:134.883000px;}
.y2a0_c00000{bottom:134.898000px;}
.y1899_c00000{bottom:134.908500px;}
.yed0_c00000{bottom:134.956500px;}
.y1552_c00000{bottom:135.064500px;}
.y1355_c00000{bottom:135.072000px;}
.y724_c00000{bottom:135.081000px;}
.y90a_c00000{bottom:135.097500px;}
.y118f_c00000{bottom:135.141000px;}
.ye83_c00000{bottom:135.172500px;}
.y874_c00000{bottom:135.196500px;}
.y13d0_c00000{bottom:135.205500px;}
.y14df_c00000{bottom:135.213000px;}
.y1014_c00000{bottom:135.256500px;}
.ya7f_c00000{bottom:135.265500px;}
.y171a_c00000{bottom:135.304500px;}
.y821_c00000{bottom:135.321000px;}
.y17ab_c00000{bottom:135.429000px;}
.y18eb_c00000{bottom:135.447000px;}
.y9fe_c00000{bottom:135.471000px;}
.y6e6_c00000{bottom:135.789000px;}
.yb03_c00000{bottom:135.820500px;}
.y927_c00000{bottom:135.837000px;}
.y187c_c00000{bottom:135.886500px;}
.y17af_c00000{bottom:135.903000px;}
.y184b_c00000{bottom:135.936000px;}
.y7cf_c00000{bottom:135.945000px;}
.y43c_c00000{bottom:136.018500px;}
.y13c0_c00000{bottom:136.086000px;}
.yf2a_c00000{bottom:136.104000px;}
.y6d6_c00000{bottom:136.120500px;}
.y1c5_c00000{bottom:136.137000px;}
.y158b_c00000{bottom:136.185000px;}
.y79e_c00000{bottom:136.233000px;}
.y4e6_c00000{bottom:136.245000px;}
.y9db_c00000{bottom:136.333500px;}
.y1714_c00000{bottom:136.360500px;}
.y1408_c00000{bottom:136.377000px;}
.yd1_c00000{bottom:136.392000px;}
.y113_c00000{bottom:136.393500px;}
.y22d_c00000{bottom:136.401000px;}
.y697_c00000{bottom:136.426500px;}
.y979_c00000{bottom:136.450500px;}
.y120d_c00000{bottom:136.483500px;}
.y965_c00000{bottom:136.527000px;}
.y1789_c00000{bottom:136.591500px;}
.y1748_c00000{bottom:136.650000px;}
.y1657_c00000{bottom:136.683000px;}
.y606_c00000{bottom:136.825500px;}
.ycb8_c00000{bottom:136.833000px;}
.y321_c00000{bottom:136.864500px;}
.yd8a_c00000{bottom:136.891500px;}
.y124e_c00000{bottom:136.908000px;}
.y1261_c00000{bottom:136.924500px;}
.y1510_c00000{bottom:137.158500px;}
.y94d_c00000{bottom:137.166000px;}
.y132d_c00000{bottom:137.274000px;}
.y38f_c00000{bottom:137.391000px;}
.y6dd_c00000{bottom:137.407500px;}
.y806_c00000{bottom:137.563500px;}
.y6a9_c00000{bottom:137.607000px;}
.y1274_c00000{bottom:137.631000px;}
.y18ed_c00000{bottom:137.739000px;}
.y10c7_c00000{bottom:137.812500px;}
.y7bf_c00000{bottom:137.829000px;}
.ye6f_c00000{bottom:137.847000px;}
.y781_c00000{bottom:137.872500px;}
.y4d7_c00000{bottom:137.935500px;}
.y18aa_c00000{bottom:137.937000px;}
.yb5a_c00000{bottom:138.052500px;}
.y1017_c00000{bottom:138.087000px;}
.y1622_c00000{bottom:138.094500px;}
.y56f_c00000{bottom:138.111000px;}
.ye0e_c00000{bottom:138.387000px;}
.yc86_c00000{bottom:138.418500px;}
.y918_c00000{bottom:138.511500px;}
.y1916_c00000{bottom:138.601500px;}
.ya39_c00000{bottom:138.859500px;}
.yb86_c00000{bottom:138.873000px;}
.y84e_c00000{bottom:138.885000px;}
.yc07_c00000{bottom:139.018500px;}
.y1be_c00000{bottom:139.033500px;}
.y118b_c00000{bottom:139.117500px;}
.y159c_c00000{bottom:139.216500px;}
.y12dc_c00000{bottom:139.251000px;}
.y185d_c00000{bottom:139.323000px;}
.yc57_c00000{bottom:139.359000px;}
.y18df_c00000{bottom:139.375500px;}
.y8b4_c00000{bottom:139.431000px;}
.yf30_c00000{bottom:139.455000px;}
.y1593_c00000{bottom:139.539000px;}
.y14d7_c00000{bottom:139.581000px;}
.ybaf_c00000{bottom:139.582500px;}
.y14bb_c00000{bottom:139.588500px;}
.yf09_c00000{bottom:139.656000px;}
.y1680_c00000{bottom:139.672500px;}
.y8e2_c00000{bottom:139.689000px;}
.y30_c00000{bottom:139.843500px;}
.yc28_c00000{bottom:139.873500px;}
.y16a2_c00000{bottom:139.890000px;}
.y1202_c00000{bottom:139.978500px;}
.y14d_c00000{bottom:140.044500px;}
.ydb3_c00000{bottom:140.091000px;}
.y8f4_c00000{bottom:140.139000px;}
.y716_c00000{bottom:140.287500px;}
.y1636_c00000{bottom:140.329500px;}
.y152a_c00000{bottom:140.362500px;}
.yb4d_c00000{bottom:140.379000px;}
.ye57_c00000{bottom:140.395500px;}
.y482_c00000{bottom:140.427000px;}
.y1551_c00000{bottom:140.487000px;}
.y96f_c00000{bottom:140.503500px;}
.y909_c00000{bottom:140.520000px;}
.y1093_c00000{bottom:140.611500px;}
.y873_c00000{bottom:140.620500px;}
.y186a_c00000{bottom:140.652000px;}
.y1294_c00000{bottom:140.685000px;}
.yecb_c00000{bottom:140.745000px;}
.y18ea_c00000{bottom:140.869500px;}
.y9fd_c00000{bottom:140.893500px;}
.ya26_c00000{bottom:141.024000px;}
.y1578_c00000{bottom:141.087000px;}
.y290_c00000{bottom:141.207000px;}
.y926_c00000{bottom:141.259500px;}
.y1314_c00000{bottom:141.291000px;}
.y416_c00000{bottom:141.565500px;}
.y1580_c00000{bottom:141.591000px;}
.y439_c00000{bottom:141.607500px;}
.y1083_c00000{bottom:141.781500px;}
.y22c_c00000{bottom:141.823500px;}
.ya88_c00000{bottom:141.873000px;}
.y120c_c00000{bottom:141.907500px;}
.y80c_c00000{bottom:141.988500px;}
.y154e_c00000{bottom:142.089000px;}
.y1830_c00000{bottom:142.107000px;}
.y9b6_c00000{bottom:142.114500px;}
.y1173_c00000{bottom:142.123500px;}
.y16d2_c00000{bottom:142.222500px;}
.y11f8_c00000{bottom:142.251000px;}
.ycb7_c00000{bottom:142.255500px;}
.y1331_c00000{bottom:142.347000px;}
.y4bb_c00000{bottom:142.428000px;}
.y17cd_c00000{bottom:142.561500px;}
.y16fb_c00000{bottom:142.636500px;}
.yfc7_c00000{bottom:142.743000px;}
.ye7d_c00000{bottom:142.785000px;}
.y114c_c00000{bottom:142.896000px;}
.y12a0_c00000{bottom:142.926000px;}
.y805_c00000{bottom:142.986000px;}
.y146e_c00000{bottom:143.017500px;}
.y126c_c00000{bottom:143.058000px;}
.y194b_c00000{bottom:143.164500px;}
.y7be_c00000{bottom:143.251500px;}
.y996_c00000{bottom:143.418000px;}
.yb59_c00000{bottom:143.476500px;}
.y1aa_c00000{bottom:143.491500px;}
.y16ff_c00000{bottom:143.493000px;}
.y1016_c00000{bottom:143.509500px;}
.y5ab_c00000{bottom:143.601000px;}
.yb44_c00000{bottom:143.607000px;}
.y1805_c00000{bottom:143.617500px;}
.y8df_c00000{bottom:143.649000px;}
.yb09_c00000{bottom:143.724000px;}
.y92d_c00000{bottom:143.841000px;}
.ybcc_c00000{bottom:143.857500px;}
.yf01_c00000{bottom:143.931000px;}
.yc4e_c00000{bottom:143.940000px;}
.y8fc_c00000{bottom:144.039000px;}
.y130d_c00000{bottom:144.073500px;}
.y165e_c00000{bottom:144.099000px;}
.ya11_c00000{bottom:144.138000px;}
.y906_c00000{bottom:144.154500px;}
.ya96_c00000{bottom:144.187500px;}
.y167c_c00000{bottom:144.246000px;}
.y15b2_c00000{bottom:144.271500px;}
.ycb3_c00000{bottom:144.297000px;}
.y1492_c00000{bottom:144.387000px;}
.y467_c00000{bottom:144.537000px;}
.y1907_c00000{bottom:144.597000px;}
.yd32_c00000{bottom:144.702000px;}
.y185c_c00000{bottom:144.745500px;}
.yc00_c00000{bottom:144.759000px;}
.y1828_c00000{bottom:144.804000px;}
.y256_c00000{bottom:144.976500px;}
.y14d6_c00000{bottom:145.003500px;}
.y14ba_c00000{bottom:145.012500px;}
.y3df_c00000{bottom:145.060500px;}
.y1032_c00000{bottom:145.062000px;}
.y12d9_c00000{bottom:145.081500px;}
.y15b7_c00000{bottom:145.095000px;}
.y1932_c00000{bottom:145.203000px;}
.y1379_c00000{bottom:145.284000px;}
.y1024_c00000{bottom:145.309500px;}
.y148f_c00000{bottom:145.332000px;}
.yf45_c00000{bottom:145.425000px;}
.y125a_c00000{bottom:145.434000px;}
.y1206_c00000{bottom:145.441500px;}
.y510_c00000{bottom:145.608000px;}
.y16f3_c00000{bottom:145.624500px;}
.yed2_c00000{bottom:145.657500px;}
.y95_c00000{bottom:145.725000px;}
.ye50_c00000{bottom:145.758000px;}
.ydfe_c00000{bottom:145.773000px;}
.y83f_c00000{bottom:145.791000px;}
.y481_c00000{bottom:145.851000px;}
.y189f_c00000{bottom:145.866000px;}
.y73c_c00000{bottom:145.975500px;}
.y836_c00000{bottom:146.397000px;}
.y11b0_c00000{bottom:146.565000px;}
.y5df_c00000{bottom:146.821500px;}
.y775_c00000{bottom:146.878500px;}
.y93e_c00000{bottom:146.902500px;}
.ye46_c00000{bottom:146.911500px;}
.y415_c00000{bottom:146.988000px;}
.ye31_c00000{bottom:147.010500px;}
.y1558_c00000{bottom:147.028500px;}
.y295_c00000{bottom:147.045000px;}
.y1545_c00000{bottom:147.052500px;}
.y423_c00000{bottom:147.118500px;}
.yd15_c00000{bottom:147.168000px;}
.yccc_c00000{bottom:147.204000px;}
.y23f_c00000{bottom:147.223500px;}
.y211_c00000{bottom:147.240000px;}
.y15be_c00000{bottom:147.246000px;}
.y3f4_c00000{bottom:147.252000px;}
.yda9_c00000{bottom:147.255000px;}
.ybe2_c00000{bottom:147.277500px;}
.y16e8_c00000{bottom:147.360000px;}
.y1ee_c00000{bottom:147.376500px;}
.yaea_c00000{bottom:147.393000px;}
.y29f_c00000{bottom:147.408000px;}
.y189_c00000{bottom:147.520500px;}
.y184f_c00000{bottom:147.543000px;}
.y1171_c00000{bottom:147.577500px;}
.y138c_c00000{bottom:147.724500px;}
.y1013_c00000{bottom:147.766500px;}
.y8d2_c00000{bottom:147.801000px;}
.y1710_c00000{bottom:147.810000px;}
.y17cc_c00000{bottom:147.984000px;}
.yae5_c00000{bottom:148.165500px;}
.ye7c_c00000{bottom:148.209000px;}
.y190e_c00000{bottom:148.297500px;}
.ya69_c00000{bottom:148.389000px;}
.y1474_c00000{bottom:148.422000px;}
.yaa6_c00000{bottom:148.431000px;}
.y126b_c00000{bottom:148.480500px;}
.ycaf_c00000{bottom:148.563000px;}
.yf29_c00000{bottom:148.614000px;}
.y1c4_c00000{bottom:148.647000px;}
.y55d_c00000{bottom:148.690500px;}
.y363_c00000{bottom:148.842000px;}
.y380_c00000{bottom:148.843500px;}
.y1139_c00000{bottom:148.875000px;}
.yc81_c00000{bottom:149.028000px;}
.y964_c00000{bottom:149.037000px;}
.y188d_c00000{bottom:149.128500px;}
.y605_c00000{bottom:149.335500px;}
.ya7e_c00000{bottom:149.377500px;}
.y1336_c00000{bottom:149.452500px;}
.y182b_c00000{bottom:149.478000px;}
.ya95_c00000{bottom:149.610000px;}
.y407_c00000{bottom:149.685000px;}
.ycb2_c00000{bottom:149.719500px;}
.yf3a_c00000{bottom:149.734500px;}
.y17c8_c00000{bottom:149.775000px;}
.y132c_c00000{bottom:149.784000px;}
.y1459_c00000{bottom:149.811000px;}
.y6e5_c00000{bottom:149.901000px;}
.y466_c00000{bottom:149.959500px;}
.y6a8_c00000{bottom:150.117000px;}
.yd31_c00000{bottom:150.124500px;}
.y780_c00000{bottom:150.382500px;}
.yab5_c00000{bottom:150.445500px;}
.y1407_c00000{bottom:150.490500px;}
.yf44_c00000{bottom:150.849000px;}
.y1259_c00000{bottom:150.856500px;}
.ye0d_c00000{bottom:150.897000px;}
.y169_c00000{bottom:150.937500px;}
.y598_c00000{bottom:150.946500px;}
.y1881_c00000{bottom:150.973500px;}
.y10b6_c00000{bottom:151.012500px;}
.y6c7_c00000{bottom:151.065000px;}
.y143c_c00000{bottom:151.071000px;}
.ye76_c00000{bottom:151.180500px;}
.yb0f_c00000{bottom:151.186500px;}
.y11cd_c00000{bottom:151.189500px;}
.ydfd_c00000{bottom:151.195500px;}
.y1962_c00000{bottom:151.206000px;}
.y867_c00000{bottom:151.245000px;}
.y94c_c00000{bottom:151.278000px;}
.y6fc_c00000{bottom:151.287000px;}
.yfe7_c00000{bottom:151.342500px;}
.ya38_c00000{bottom:151.368000px;}
.y1461_c00000{bottom:151.411500px;}
.y151b_c00000{bottom:151.486500px;}
.y38e_c00000{bottom:151.503000px;}
.y6dc_c00000{bottom:151.519500px;}
.yc06_c00000{bottom:151.527000px;}
.y159b_c00000{bottom:151.726500px;}
.y1273_c00000{bottom:151.743000px;}
.y953_c00000{bottom:151.759500px;}
.yf5_c00000{bottom:151.771500px;}
.yc27_c00000{bottom:152.383500px;}
.ya1a_c00000{bottom:152.434500px;}
.yd38_c00000{bottom:152.467500px;}
.yf8e_c00000{bottom:152.541000px;}
.y166c_c00000{bottom:152.614500px;}
.y45a_c00000{bottom:152.664000px;}
.ye8a_c00000{bottom:152.691000px;}
.y95d_c00000{bottom:152.815500px;}
.y1635_c00000{bottom:152.839500px;}
.y1898_c00000{bottom:152.841000px;}
.y2c4_c00000{bottom:152.865000px;}
.y1529_c00000{bottom:152.872500px;}
.yb4c_c00000{bottom:152.889000px;}
.ye56_c00000{bottom:152.905500px;}
.y5c4_c00000{bottom:152.955000px;}
.y160c_c00000{bottom:152.997000px;}
.y723_c00000{bottom:153.013500px;}
.y118e_c00000{bottom:153.073500px;}
.y1762_c00000{bottom:153.121500px;}
.y89f_c00000{bottom:153.130500px;}
.y13cf_c00000{bottom:153.138000px;}
.y14de_c00000{bottom:153.147000px;}
.y138b_c00000{bottom:153.148500px;}
.yeca_c00000{bottom:153.255000px;}
.y13b0_c00000{bottom:153.579000px;}
.yb02_c00000{bottom:153.753000px;}
.y127f_c00000{bottom:153.835500px;}
.y2e2_c00000{bottom:153.868500px;}
.y7ce_c00000{bottom:153.877500px;}
.y316_c00000{bottom:153.918000px;}
.y1953_c00000{bottom:153.937500px;}
.yd9_c00000{bottom:153.951000px;}
.yf9_c00000{bottom:153.952500px;}
.y1305_c00000{bottom:153.970500px;}
.y1d0_c00000{bottom:154.036500px;}
.y6d5_c00000{bottom:154.053000px;}
.y13d9_c00000{bottom:154.069500px;}
.y842_c00000{bottom:154.086000px;}
.y157f_c00000{bottom:154.101000px;}
.y79d_c00000{bottom:154.167000px;}
.y4e5_c00000{bottom:154.177500px;}
.y8f3_c00000{bottom:154.251000px;}
.y362_c00000{bottom:154.266000px;}
.y696_c00000{bottom:154.359000px;}
.ya87_c00000{bottom:154.383000px;}
.y715_c00000{bottom:154.399500px;}
.y963_c00000{bottom:154.459500px;}
.y1788_c00000{bottom:154.524000px;}
.y1747_c00000{bottom:154.582500px;}
.y154d_c00000{bottom:154.599000px;}
.y182f_c00000{bottom:154.615500px;}
.y872_c00000{bottom:154.732500px;}
.y320_c00000{bottom:154.797000px;}
.ya7d_c00000{bottom:154.800000px;}
.y15d7_c00000{bottom:154.809000px;}
.yd89_c00000{bottom:154.824000px;}
.y1330_c00000{bottom:154.857000px;}
.y121a_c00000{bottom:154.906500px;}
.y4a_c00000{bottom:154.930500px;}
.y9fc_c00000{bottom:155.005500px;}
.y110_c00000{bottom:155.056500px;}
.y17c7_c00000{bottom:155.199000px;}
.y879_c00000{bottom:155.323500px;}
.y925_c00000{bottom:155.371500px;}
.y10c6_c00000{bottom:155.745000px;}
.ye6e_c00000{bottom:155.779500px;}
.y899_c00000{bottom:155.868000px;}
.y18a9_c00000{bottom:155.869500px;}
.y1713_c00000{bottom:155.896500px;}
.y22b_c00000{bottom:155.935500px;}
.y120b_c00000{bottom:156.019500px;}
.y1621_c00000{bottom:156.027000px;}
.y56e_c00000{bottom:156.043500px;}
.y133_c00000{bottom:156.162000px;}
.y92c_c00000{bottom:156.351000px;}
.y917_c00000{bottom:156.444000px;}
.y78b_c00000{bottom:156.453000px;}
.y866_c00000{bottom:156.669000px;}
.y6fb_c00000{bottom:156.709500px;}
.yc95_c00000{bottom:156.915000px;}
.y1062_c00000{bottom:156.934500px;}
.y6db_c00000{bottom:156.942000px;}
.y42b_c00000{bottom:157.050000px;}
.y16d5_c00000{bottom:157.150500px;}
.y1272_c00000{bottom:157.167000px;}
.y952_c00000{bottom:157.183500px;}
.y10cf_c00000{bottom:157.275000px;}
.y7bd_c00000{bottom:157.363500px;}
.yf2f_c00000{bottom:157.387500px;}
.yf7b_c00000{bottom:157.470000px;}
.y1592_c00000{bottom:157.471500px;}
.y7b7_c00000{bottom:157.504500px;}
.ycec_c00000{bottom:157.509000px;}
.ybae_c00000{bottom:157.515000px;}
.y1031_c00000{bottom:157.572000px;}
.yb58_c00000{bottom:157.588500px;}
.y15b6_c00000{bottom:157.605000px;}
.y8e1_c00000{bottom:157.621500px;}
.y17bc_c00000{bottom:157.953000px;}
.y14c_c00000{bottom:157.977000px;}
.yd22_c00000{bottom:158.203500px;}
.y27_c00000{bottom:158.215500px;}
.yecf_c00000{bottom:158.311500px;}
.y84d_c00000{bottom:158.419500px;}
.y1354_c00000{bottom:158.428500px;}
.y722_c00000{bottom:158.436000px;}
.y73b_c00000{bottom:158.485500px;}
.ye82_c00000{bottom:158.527500px;}
.y89e_c00000{bottom:158.553000px;}
.y13ce_c00000{bottom:158.562000px;}
.y14dd_c00000{bottom:158.569500px;}
.y1293_c00000{bottom:158.617500px;}
.y4fd_c00000{bottom:158.650500px;}
.y1719_c00000{bottom:158.659500px;}
.y820_c00000{bottom:158.677500px;}
.y12db_c00000{bottom:158.785500px;}
.y104e_c00000{bottom:158.815500px;}
.ya25_c00000{bottom:158.956500px;}
.y14d5_c00000{bottom:159.115500px;}
.y14b9_c00000{bottom:159.124500px;}
.y28f_c00000{bottom:159.139500px;}
.yb01_c00000{bottom:159.175500px;}
.y1313_c00000{bottom:159.223500px;}
.y7cd_c00000{bottom:159.300000px;}
.yc94_c00000{bottom:159.321000px;}
.y13bf_c00000{bottom:159.441000px;}
.ye6a_c00000{bottom:159.489000px;}
.y438_c00000{bottom:159.541500px;}
.y79c_c00000{bottom:159.589500px;}
.y695_c00000{bottom:159.781500px;}
.y978_c00000{bottom:159.807000px;}
.y71_c00000{bottom:159.879000px;}
.y1787_c00000{bottom:159.948000px;}
.y480_c00000{bottom:159.963000px;}
.yb4_c00000{bottom:159.999000px;}
.y96e_c00000{bottom:160.039500px;}
.y31f_c00000{bottom:160.221000px;}
.y124d_c00000{bottom:160.263000px;}
.y1260_c00000{bottom:160.279500px;}
.y8d1_c00000{bottom:160.311000px;}
.y170f_c00000{bottom:160.320000px;}
.y4ba_c00000{bottom:160.360500px;}
.y18e9_c00000{bottom:160.404000px;}
.y150f_c00000{bottom:160.515000px;}
.y1454_c00000{bottom:160.624500px;}
.y924_c00000{bottom:160.794000px;}
.y114b_c00000{bottom:160.828500px;}
.y129f_c00000{bottom:160.858500px;}
.y17a9_c00000{bottom:161.145000px;}
.y15eb_c00000{bottom:161.158500px;}
.y1786_c00000{bottom:161.176500px;}
.y55c_c00000{bottom:161.199000px;}
.yeab_c00000{bottom:161.275500px;}
.y625_c00000{bottom:161.415000px;}
.y16fe_c00000{bottom:161.425500px;}
.y120a_c00000{bottom:161.442000px;}
.y1804_c00000{bottom:161.550000px;}
.yb51_c00000{bottom:161.773500px;}
.yca3_c00000{bottom:161.856000px;}
.yf00_c00000{bottom:161.863500px;}
.yc4d_c00000{bottom:161.872500px;}
.y109b_c00000{bottom:161.971500px;}
.y182a_c00000{bottom:161.988000px;}
.y130c_c00000{bottom:162.007500px;}
.y165d_c00000{bottom:162.031500px;}
.y17f8_c00000{bottom:162.040500px;}
.ya10_c00000{bottom:162.072000px;}
.y7ab_c00000{bottom:162.088500px;}
.y167b_c00000{bottom:162.180000px;}
.y406_c00000{bottom:162.195000px;}
.y15b1_c00000{bottom:162.204000px;}
.yb85_c00000{bottom:162.229500px;}
.ye7b_c00000{bottom:162.321000px;}
.y184a_c00000{bottom:162.352500px;}
.y1bd_c00000{bottom:162.388500px;}
.yc44_c00000{bottom:162.547500px;}
.y1233_c00000{bottom:162.604500px;}
.y14fa_c00000{bottom:162.652500px;}
.y1501_c00000{bottom:162.673500px;}
.y52e_c00000{bottom:162.726000px;}
.y187b_c00000{bottom:162.777000px;}
.y8b3_c00000{bottom:162.787500px;}
.y17ae_c00000{bottom:162.793500px;}
.yf2e_c00000{bottom:162.811500px;}
.y9f2_c00000{bottom:162.844500px;}
.y9f6_c00000{bottom:162.910500px;}
.yfec_c00000{bottom:163.044000px;}
.y1931_c00000{bottom:163.135500px;}
.yd0_c00000{bottom:163.284000px;}
.y1205_c00000{bottom:163.375500px;}
.y1880_c00000{bottom:163.483500px;}
.y50f_c00000{bottom:163.540500px;}
.y6c6_c00000{bottom:163.573500px;}
.ye4f_c00000{bottom:163.690500px;}
.y83e_c00000{bottom:163.723500px;}
.y1869_c00000{bottom:164.007000px;}
.y1292_c00000{bottom:164.041500px;}
.yef1_c00000{bottom:164.056500px;}
.y465_c00000{bottom:164.073000px;}
.yd30_c00000{bottom:164.236500px;}
.y1284_c00000{bottom:164.406000px;}
.y11af_c00000{bottom:164.497500px;}
.y14d4_c00000{bottom:164.539500px;}
.y14b8_c00000{bottom:164.547000px;}
.y1312_c00000{bottom:164.647500px;}
.y774_c00000{bottom:164.811000px;}
.ye45_c00000{bottom:164.844000px;}
.ydfc_c00000{bottom:164.910000px;}
.ya19_c00000{bottom:164.944500px;}
.yf43_c00000{bottom:164.961000px;}
.y1258_c00000{bottom:164.968500px;}
.yfed_c00000{bottom:164.977500px;}
.y1544_c00000{bottom:164.985000px;}
.y422_c00000{bottom:165.052500px;}
.yd14_c00000{bottom:165.100500px;}
.y4d6_c00000{bottom:165.151500px;}
.y210_c00000{bottom:165.172500px;}
.y3b5_c00000{bottom:165.174000px;}
.yda8_c00000{bottom:165.187500px;}
.ye89_c00000{bottom:165.201000px;}
.ye75_c00000{bottom:165.292500px;}
.y1ed_c00000{bottom:165.309000px;}
.y29e_c00000{bottom:165.340500px;}
.y1897_c00000{bottom:165.351000px;}
.y2c3_c00000{bottom:165.375000px;}
.y188_c00000{bottom:165.453000px;}
.y184e_c00000{bottom:165.475500px;}
.y1915_c00000{bottom:165.492000px;}
.y1012_c00000{bottom:165.699000px;}
.y4b9_c00000{bottom:165.784500px;}
.y16fa_c00000{bottom:165.991500px;}
.yae4_c00000{bottom:166.098000px;}
.yc56_c00000{bottom:166.114500px;}
.y190d_c00000{bottom:166.231500px;}
.y33a_c00000{bottom:166.264500px;}
.ya68_c00000{bottom:166.321500px;}
.y146d_c00000{bottom:166.374000px;}
.y2e1_c00000{bottom:166.378500px;}
.y1952_c00000{bottom:166.447500px;}
.y1cf_c00000{bottom:166.546500px;}
.y6d4_c00000{bottom:166.563000px;}
.y826_c00000{bottom:166.579500px;}
.y16a1_c00000{bottom:166.645500px;}
.y4e4_c00000{bottom:166.687500px;}
.y37f_c00000{bottom:166.776000px;}
.y1a9_c00000{bottom:166.846500px;}
.y1201_c00000{bottom:166.870500px;}
.y8de_c00000{bottom:167.004000px;}
.y188c_c00000{bottom:167.061000px;}
.y138a_c00000{bottom:167.260500px;}
.y604_c00000{bottom:167.268000px;}
.yeff_c00000{bottom:167.287500px;}
.yc4c_c00000{bottom:167.295000px;}
.y1092_c00000{bottom:167.368500px;}
.y8fb_c00000{bottom:167.395500px;}
.y1829_c00000{bottom:167.412000px;}
.y15b0_c00000{bottom:167.626500px;}
.y18de_c00000{bottom:167.733000px;}
.y1491_c00000{bottom:167.743500px;}
.y878_c00000{bottom:167.833500px;}
.ydb2_c00000{bottom:167.844000px;}
.y126a_c00000{bottom:168.016500px;}
.y13d8_c00000{bottom:168.181500px;}
.y77f_c00000{bottom:168.315000px;}
.y361_c00000{bottom:168.378000px;}
.y3de_c00000{bottom:168.415500px;}
.y962_c00000{bottom:168.571500px;}
.y1378_c00000{bottom:168.640500px;}
.y1023_c00000{bottom:168.664500px;}
.y1082_c00000{bottom:168.672000px;}
.y1204_c00000{bottom:168.798000px;}
.ye0c_c00000{bottom:168.829500px;}
.y2fc_c00000{bottom:168.862500px;}
.y80b_c00000{bottom:168.879000px;}
.ya7c_c00000{bottom:168.912000px;}
.y10b5_c00000{bottom:168.945000px;}
.y916_c00000{bottom:168.954000px;}
.y78a_c00000{bottom:168.961500px;}
.y16f2_c00000{bottom:168.981000px;}
.y9b5_c00000{bottom:169.005000px;}
.yed1_c00000{bottom:169.014000px;}
.ye4e_c00000{bottom:169.113000px;}
.y11f7_c00000{bottom:169.143000px;}
.y83d_c00000{bottom:169.146000px;}
.y94b_c00000{bottom:169.212000px;}
.y189e_c00000{bottom:169.221000px;}
.y17c6_c00000{bottom:169.311000px;}
.y1460_c00000{bottom:169.344000px;}
.y151a_c00000{bottom:169.419000px;}
.y38d_c00000{bottom:169.435500px;}
.yc05_c00000{bottom:169.461000px;}
.y185b_c00000{bottom:169.617000px;}
.yfc6_c00000{bottom:169.635000px;}
.y159a_c00000{bottom:169.659000px;}
.y835_c00000{bottom:169.752000px;}
.y10ce_c00000{bottom:169.783500px;}
.ybad_c00000{bottom:170.025000px;}
.y194a_c00000{bottom:170.055000px;}
.y93d_c00000{bottom:170.259000px;}
.y995_c00000{bottom:170.308500px;}
.yc26_c00000{bottom:170.316000px;}
.y5aa_c00000{bottom:170.356500px;}
.ye30_c00000{bottom:170.367000px;}
.y294_c00000{bottom:170.400000px;}
.yf8d_c00000{bottom:170.473500px;}
.yb43_c00000{bottom:170.497500px;}
.yd13_c00000{bottom:170.523000px;}
.y3b4_c00000{bottom:170.596500px;}
.y15bd_c00000{bottom:170.601000px;}
.y3f3_c00000{bottom:170.608500px;}
.yda7_c00000{bottom:170.610000px;}
.yb08_c00000{bottom:170.614500px;}
.ybe1_c00000{bottom:170.632500px;}
.yd21_c00000{bottom:170.713500px;}
.yae9_c00000{bottom:170.749500px;}
.y29d_c00000{bottom:170.764500px;}
.y1634_c00000{bottom:170.772000px;}
.y1528_c00000{bottom:170.805000px;}
.y6fa_c00000{bottom:170.821500px;}
.ye55_c00000{bottom:170.838000px;}
.y184d_c00000{bottom:170.898000px;}
.y84c_c00000{bottom:170.929500px;}
.yc8a_c00000{bottom:170.946000px;}
.ye81_c00000{bottom:171.037500px;}
.y1011_c00000{bottom:171.123000px;}
.yec9_c00000{bottom:171.187500px;}
.y1271_c00000{bottom:171.279000px;}
.y804_c00000{bottom:171.345000px;}
.y1906_c00000{bottom:171.354000px;}
.ybff_c00000{bottom:171.649500px;}
.y190c_c00000{bottom:171.654000px;}
.y1827_c00000{bottom:171.696000px;}
.ya67_c00000{bottom:171.745500px;}
.y2e0_c00000{bottom:171.801000px;}
.y255_c00000{bottom:171.868500px;}
.ycae_c00000{bottom:171.918000px;}
.y12d8_c00000{bottom:171.972000px;}
.y1c3_c00000{bottom:172.002000px;}
.y4e3_c00000{bottom:172.110000px;}
.y8f2_c00000{bottom:172.183500px;}
.ya4d_c00000{bottom:172.198500px;}
.y148e_c00000{bottom:172.222500px;}
.y1138_c00000{bottom:172.231500px;}
.y977_c00000{bottom:172.315500px;}
.y714_c00000{bottom:172.333500px;}
.yc80_c00000{bottom:172.384500px;}
.yece_c00000{bottom:172.425000px;}
.y1746_c00000{bottom:172.515000px;}
.y154c_c00000{bottom:172.531500px;}
.y721_c00000{bottom:172.549500px;}
.y94_c00000{bottom:172.615500px;}
.y871_c00000{bottom:172.665000px;}
.yd88_c00000{bottom:172.756500px;}
.y124c_c00000{bottom:172.773000px;}
.yf39_c00000{bottom:173.089500px;}
.y132b_c00000{bottom:173.140500px;}
.y6e4_c00000{bottom:173.256000px;}
.yb00_c00000{bottom:173.287500px;}
.y7cc_c00000{bottom:173.412000px;}
.y6a7_c00000{bottom:173.472000px;}
.y5de_c00000{bottom:173.578500px;}
.y10c5_c00000{bottom:173.677500px;}
.ye6d_c00000{bottom:173.713500px;}
.y360_c00000{bottom:173.800500px;}
.y1406_c00000{bottom:173.845500px;}
.y694_c00000{bottom:173.893500px;}
.y31e_c00000{bottom:173.935500px;}
.y1957_c00000{bottom:173.952000px;}
.y1620_c00000{bottom:173.959500px;}
.yccb_c00000{bottom:174.094500px;}
.y23e_c00000{bottom:174.115500px;}
.ye0b_c00000{bottom:174.252000px;}
.y92b_c00000{bottom:174.283500px;}
.y1170_c00000{bottom:174.333000px;}
.y10b4_c00000{bottom:174.369000px;}
.y915_c00000{bottom:174.376500px;}
.y165c_c00000{bottom:174.541500px;}
.ya37_c00000{bottom:174.724500px;}
.y17c5_c00000{bottom:174.733500px;}
.y145f_c00000{bottom:174.766500px;}
.y118a_c00000{bottom:174.814500px;}
.y38c_c00000{bottom:174.858000px;}
.y1061_c00000{bottom:174.867000px;}
.yc04_c00000{bottom:174.883500px;}
.y1bc_c00000{bottom:174.898500px;}
.yaa5_c00000{bottom:175.188000px;}
.y1473_c00000{bottom:175.314000px;}
.yab4_c00000{bottom:175.404000px;}
.y1591_c00000{bottom:175.405500px;}
.y7b6_c00000{bottom:175.438500px;}
.yceb_c00000{bottom:175.441500px;}
.yf08_c00000{bottom:175.521000px;}
.y15b5_c00000{bottom:175.537500px;}
.y1930_c00000{bottom:175.645500px;}
.yc25_c00000{bottom:175.738500px;}
.y17bb_c00000{bottom:175.887000px;}
.y14b_c00000{bottom:175.909500px;}
.y166b_c00000{bottom:175.971000px;}
.yb4b_c00000{bottom:176.245500px;}
.ye54_c00000{bottom:176.262000px;}
.y414_c00000{bottom:176.343000px;}
.y1353_c00000{bottom:176.361000px;}
.yc89_c00000{bottom:176.370000px;}
.y73a_c00000{bottom:176.418000px;}
.y6da_c00000{bottom:176.478000px;}
.yc0b_c00000{bottom:176.485500px;}
.y81f_c00000{bottom:176.610000px;}
.y8b2_c00000{bottom:176.899500px;}
.y1283_c00000{bottom:176.916000px;}
.y11ae_c00000{bottom:177.007500px;}
.y28e_c00000{bottom:177.072000px;}
.y1803_c00000{bottom:177.151500px;}
.y13be_c00000{bottom:177.373500px;}
.y157e_c00000{bottom:177.457500px;}
.y976_c00000{bottom:177.739500px;}
.y713_c00000{bottom:177.756000px;}
.y168_c00000{bottom:177.829500px;}
.y597_c00000{bottom:177.837000px;}
.y47f_c00000{bottom:177.895500px;}
.y143b_c00000{bottom:177.961500px;}
.y182e_c00000{bottom:177.972000px;}
.yb0e_c00000{bottom:178.078500px;}
.y11cc_c00000{bottom:178.080000px;}
.y16d1_c00000{bottom:178.087500px;}
.y13cd_c00000{bottom:178.096500px;}
.y14dc_c00000{bottom:178.104000px;}
.y1291_c00000{bottom:178.153500px;}
.y125f_c00000{bottom:178.212000px;}
.yfe6_c00000{bottom:178.234500px;}
.y8d0_c00000{bottom:178.243500px;}
.y181a_c00000{bottom:178.248000px;}
.y170e_c00000{bottom:178.252500px;}
.y9fb_c00000{bottom:178.362000px;}
.y16f9_c00000{bottom:178.501500px;}
.y14d3_c00000{bottom:178.651500px;}
.yf4_c00000{bottom:178.662000px;}
.y79b_c00000{bottom:178.728000px;}
.y114a_c00000{bottom:178.761000px;}
.y339_c00000{bottom:178.774500px;}
.y146c_c00000{bottom:178.884000px;}
.y10c4_c00000{bottom:179.101500px;}
.y173e_c00000{bottom:179.160000px;}
.y65f_c00000{bottom:179.182500px;}
.y9da_c00000{bottom:179.193000px;}
.y18a8_c00000{bottom:179.226000px;}
.y22a_c00000{bottom:179.292000px;}
.y1a8_c00000{bottom:179.356500px;}
.y1956_c00000{bottom:179.374500px;}
.y56d_c00000{bottom:179.400000px;}
.y1247_c00000{bottom:179.466000px;}
.y8dd_c00000{bottom:179.514000px;}
.y1137_c00000{bottom:179.518500px;}
.y95c_c00000{bottom:179.572500px;}
.yb50_c00000{bottom:179.707500px;}
.y5c3_c00000{bottom:179.845500px;}
.y4b8_c00000{bottom:179.896500px;}
.y8fa_c00000{bottom:179.904000px;}
.ya0f_c00000{bottom:180.004500px;}
.y7aa_c00000{bottom:180.021000px;}
.y167a_c00000{bottom:180.112500px;}
.y1374_c00000{bottom:180.253500px;}
.y923_c00000{bottom:180.330000px;}
.y13af_c00000{bottom:180.469500px;}
.y1269_c00000{bottom:180.526500px;}
.y14d1_c00000{bottom:180.588000px;}
.y4a2_c00000{bottom:180.661500px;}
.y7bc_c00000{bottom:180.720000px;}
.y127e_c00000{bottom:180.726000px;}
.y315_c00000{bottom:180.810000px;}
.yd8_c00000{bottom:180.843000px;}
.y3dd_c00000{bottom:180.925500px;}
.y1030_c00000{bottom:180.927000px;}
.yb57_c00000{bottom:180.943500px;}
.y75b_c00000{bottom:180.960000px;}
.y8e0_c00000{bottom:180.976500px;}
.y590_c00000{bottom:181.111500px;}
.y1022_c00000{bottom:181.174500px;}
.y187f_c00000{bottom:181.416000px;}
.y50e_c00000{bottom:181.473000px;}
.y16f1_c00000{bottom:181.489500px;}
.y898_c00000{bottom:181.561500px;}
.ya94_c00000{bottom:181.654500px;}
.y15d6_c00000{bottom:181.699500px;}
.y15af_c00000{bottom:181.740000px;}
.yad3_c00000{bottom:181.743000px;}
.y1219_c00000{bottom:181.797000px;}
.y49_c00000{bottom:181.821000px;}
.y739_c00000{bottom:181.840500px;}
.y10f_c00000{bottom:181.947000px;}
.y464_c00000{bottom:182.005500px;}
.yd2f_c00000{bottom:182.169000px;}
.ya24_c00000{bottom:182.313000px;}
.y1282_c00000{bottom:182.338500px;}
.y773_c00000{bottom:182.743500px;}
.ydfb_c00000{bottom:182.844000px;}
.y70a_c00000{bottom:182.877000px;}
.yf42_c00000{bottom:182.893500px;}
.y293_c00000{bottom:182.910000px;}
.y1543_c00000{bottom:182.919000px;}
.y421_c00000{bottom:182.985000px;}
.y132_c00000{bottom:183.052500px;}
.y20f_c00000{bottom:183.106500px;}
.ye88_c00000{bottom:183.133500px;}
.ye4d_c00000{bottom:183.225000px;}
.y83a_c00000{bottom:183.241500px;}
.y1896_c00000{bottom:183.283500px;}
.y2c2_c00000{bottom:183.307500px;}
.y47e_c00000{bottom:183.318000px;}
.y187_c00000{bottom:183.385500px;}
.yf7a_c00000{bottom:183.562500px;}
.y1290_c00000{bottom:183.576000px;}
.y42a_c00000{bottom:183.807000px;}
.yae3_c00000{bottom:184.030500px;}
.y14d2_c00000{bottom:184.074000px;}
.y14b7_c00000{bottom:184.083000px;}
.y1149_c00000{bottom:184.183500px;}
.y129e_c00000{bottom:184.213500px;}
.yd12_c00000{bottom:184.237500px;}
.y3b3_c00000{bottom:184.311000px;}
.ycad_c00000{bottom:184.428000px;}
.y29c_c00000{bottom:184.479000px;}
.y6d3_c00000{bottom:184.495500px;}
.y1c2_c00000{bottom:184.512000px;}
.y55b_c00000{bottom:184.555500px;}
.y37e_c00000{bottom:184.708500px;}
.y188b_c00000{bottom:184.993500px;}
.y865_c00000{bottom:185.026500px;}
.y603_c00000{bottom:185.202000px;}
.yca2_c00000{bottom:185.211000px;}
.y8f9_c00000{bottom:185.328000px;}
.y1718_c00000{bottom:185.416500px;}
.y4fc_c00000{bottom:185.541000px;}
.y951_c00000{bottom:185.542500px;}
.y405_c00000{bottom:185.551500px;}
.yf38_c00000{bottom:185.599500px;}
.y132a_c00000{bottom:185.649000px;}
.ye7a_c00000{bottom:185.676000px;}
.y104d_c00000{bottom:185.706000px;}
.y6e3_c00000{bottom:185.766000px;}
.ya66_c00000{bottom:185.857500px;}
.y13d7_c00000{bottom:186.114000px;}
.y26_c00000{bottom:186.120000px;}
.y2f_c00000{bottom:186.160500px;}
.yc93_c00000{bottom:186.211500px;}
.y437_c00000{bottom:186.297000px;}
.yded_c00000{bottom:186.310500px;}
.y1405_c00000{bottom:186.355500px;}
.ye69_c00000{bottom:186.379500px;}
.y70_c00000{bottom:186.771000px;}
.y96d_c00000{bottom:186.795000px;}
.y187e_c00000{bottom:186.838500px;}
.ya7b_c00000{bottom:186.844500px;}
.y1588_c00000{bottom:186.897000px;}
.y6c5_c00000{bottom:186.930000px;}
.y94a_c00000{bottom:187.144500px;}
.y189d_c00000{bottom:187.153500px;}
.y18e8_c00000{bottom:187.161000px;}
.ya36_c00000{bottom:187.234500px;}
.y150e_c00000{bottom:187.270500px;}
.y1519_c00000{bottom:187.351500px;}
.y1060_c00000{bottom:187.377000px;}
.yb65_c00000{bottom:187.485000px;}
.y1453_c00000{bottom:187.515000px;}
.yd2e_c00000{bottom:187.593000px;}
.y35f_c00000{bottom:187.912500px;}
.y17a8_c00000{bottom:188.035500px;}
.y15ea_c00000{bottom:188.049000px;}
.y1785_c00000{bottom:188.068500px;}
.yeaa_c00000{bottom:188.166000px;}
.y93c_c00000{bottom:188.191500px;}
.ye44_c00000{bottom:188.200500px;}
.ydfa_c00000{bottom:188.266500px;}
.y166f_c00000{bottom:188.305500px;}
.y624_c00000{bottom:188.307000px;}
.y1257_c00000{bottom:188.325000px;}
.y292_c00000{bottom:188.332500px;}
.ye0a_c00000{bottom:188.364000px;}
.yf8c_c00000{bottom:188.406000px;}
.y2a3_c00000{bottom:188.529000px;}
.y3f2_c00000{bottom:188.541000px;}
.ye87_c00000{bottom:188.557500px;}
.y1ec_c00000{bottom:188.665500px;}
.y1633_c00000{bottom:188.704500px;}
.y1895_c00000{bottom:188.706000px;}
.y2c1_c00000{bottom:188.730000px;}
.y6f9_c00000{bottom:188.754000px;}
.y130b_c00000{bottom:188.763000px;}
.y17c4_c00000{bottom:188.845500px;}
.y145e_c00000{bottom:188.878500px;}
.y17f7_c00000{bottom:188.931000px;}
.ye80_c00000{bottom:188.970000px;}
.yb84_c00000{bottom:188.985000px;}
.yc0a_c00000{bottom:188.995500px;}
.y81e_c00000{bottom:189.120000px;}
.y1849_c00000{bottom:189.243000px;}
.yc43_c00000{bottom:189.439500px;}
.y1232_c00000{bottom:189.495000px;}
.y14f9_c00000{bottom:189.543000px;}
.y1500_c00000{bottom:189.565500px;}
.y52d_c00000{bottom:189.616500px;}
.y187a_c00000{bottom:189.667500px;}
.y9f1_c00000{bottom:189.735000px;}
.y9f5_c00000{bottom:189.801000px;}
.y1951_c00000{bottom:189.802500px;}
.y1ce_c00000{bottom:189.901500px;}
.y9b9_c00000{bottom:189.918000px;}
.y825_c00000{bottom:189.934500px;}
.yfe9_c00000{bottom:189.936000px;}
.y157d_c00000{bottom:189.967500px;}
.y8f1_c00000{bottom:190.116000px;}
.y37d_c00000{bottom:190.131000px;}
.ycf_c00000{bottom:190.174500px;}
.yb4a_c00000{bottom:190.357500px;}
.ye53_c00000{bottom:190.374000px;}
.y1745_c00000{bottom:190.449000px;}
.y1550_c00000{bottom:190.465500px;}
.y14db_c00000{bottom:190.614000px;}
.y1389_c00000{bottom:190.615500px;}
.y1868_c00000{bottom:190.764000px;}
.yf2d_c00000{bottom:190.771500px;}
.y9fa_c00000{bottom:190.872000px;}
.yef0_c00000{bottom:190.947000px;}
.y1329_c00000{bottom:191.073000px;}
.y6e2_c00000{bottom:191.188500px;}
.yaff_c00000{bottom:191.220000px;}
.y79a_c00000{bottom:191.236500px;}
.y7cb_c00000{bottom:191.344500px;}
.y6a6_c00000{bottom:191.404500px;}
.y13d6_c00000{bottom:191.538000px;}
.y1652_c00000{bottom:191.611500px;}
.y77e_c00000{bottom:191.670000px;}
.yf5e_c00000{bottom:191.733000px;}
.y18a7_c00000{bottom:191.736000px;}
.y229_c00000{bottom:191.802000px;}
.y693_c00000{bottom:191.826000px;}
.y975_c00000{bottom:191.851500px;}
.y712_c00000{bottom:191.868000px;}
.y161f_c00000{bottom:191.893500px;}
.y56c_c00000{bottom:191.910000px;}
.y961_c00000{bottom:191.928000px;}
.y4d5_c00000{bottom:192.042000px;}
.y12ba_c00000{bottom:192.067500px;}
.y16d0_c00000{bottom:192.199500px;}
.y789_c00000{bottom:192.318000px;}
.y1914_c00000{bottom:192.382500px;}
.y1518_c00000{bottom:192.774000px;}
.y1bb_c00000{bottom:192.831000px;}
.y922_c00000{bottom:192.840000px;}
.yc55_c00000{bottom:193.005000px;}
.y1599_c00000{bottom:193.015500px;}
.y10cd_c00000{bottom:193.140000px;}
.y10c3_c00000{bottom:193.213500px;}
.y1590_c00000{bottom:193.338000px;}
.y7b5_c00000{bottom:193.371000px;}
.ybac_c00000{bottom:193.380000px;}
.y102f_c00000{bottom:193.437000px;}
.yf07_c00000{bottom:193.453500px;}
.y15b4_c00000{bottom:193.470000px;}
.y16a0_c00000{bottom:193.537500px;}
.y192f_c00000{bottom:193.578000px;}
.y1200_c00000{bottom:193.761000px;}
.y17ba_c00000{bottom:193.819500px;}
.yd20_c00000{bottom:194.070000px;}
.y1527_c00000{bottom:194.161500px;}
.y1091_c00000{bottom:194.259000px;}
.y84b_c00000{bottom:194.286000px;}
.y145d_c00000{bottom:194.302500px;}
.yc03_c00000{bottom:194.418000px;}
.y81d_c00000{bottom:194.542500px;}
.y18dd_c00000{bottom:194.625000px;}
.y1270_c00000{bottom:194.634000px;}
.ydb1_c00000{bottom:194.734500px;}
.yd63_c00000{bottom:194.782500px;}
.ya23_c00000{bottom:194.823000px;}
.y28d_c00000{bottom:195.006000px;}
.y13bd_c00000{bottom:195.306000px;}
.y1377_c00000{bottom:195.396000px;}
.y8f0_c00000{bottom:195.540000px;}
.y1081_c00000{bottom:195.564000px;}
.yefe_c00000{bottom:195.645000px;}
.yc4b_c00000{bottom:195.654000px;}
.y2fb_c00000{bottom:195.753000px;}
.y80a_c00000{bottom:195.769500px;}
.yb49_c00000{bottom:195.780000px;}
.y154b_c00000{bottom:195.888000px;}
.y720_c00000{bottom:195.904500px;}
.y1010_c00000{bottom:195.994500px;}
.y870_c00000{bottom:196.021500px;}
.y11f6_c00000{bottom:196.033500px;}
.y14da_c00000{bottom:196.038000px;}
.yd87_c00000{bottom:196.111500px;}
.y124b_c00000{bottom:196.129500px;}
.y8cf_c00000{bottom:196.177500px;}
.y9f9_c00000{bottom:196.294500px;}
.y185a_c00000{bottom:196.507500px;}
.yfc5_c00000{bottom:196.525500px;}
.y11ab_c00000{bottom:196.555500px;}
.yafe_c00000{bottom:196.644000px;}
.y799_c00000{bottom:196.660500px;}
.y338_c00000{bottom:196.707000px;}
.y129d_c00000{bottom:196.723500px;}
.y7ca_c00000{bottom:196.768500px;}
.y146b_c00000{bottom:196.816500px;}
.y1949_c00000{bottom:196.945500px;}
.y55a_c00000{bottom:197.065500px;}
.y5a9_c00000{bottom:197.248500px;}
.ya86_c00000{bottom:197.274000px;}
.y1a7_c00000{bottom:197.289000px;}
.y31d_c00000{bottom:197.290500px;}
.yb42_c00000{bottom:197.389500px;}
.y12b9_c00000{bottom:197.490000px;}
.y834_c00000{bottom:197.505000px;}
.y92a_c00000{bottom:197.640000px;}
.yca1_c00000{bottom:197.721000px;}
.y109a_c00000{bottom:197.838000px;}
.y165b_c00000{bottom:197.896500px;}
.ya0e_c00000{bottom:197.937000px;}
.y7a9_c00000{bottom:197.953500px;}
.y1679_c00000{bottom:198.045000px;}
.yda6_c00000{bottom:198.106500px;}
.y803_c00000{bottom:198.235500px;}
.y1905_c00000{bottom:198.244500px;}
.y1ba_c00000{bottom:198.253500px;}
.y1148_c00000{bottom:198.295500px;}
.y1268_c00000{bottom:198.459000px;}
.yc73_c00000{bottom:198.502500px;}
.ybfe_c00000{bottom:198.540000px;}
.y1826_c00000{bottom:198.586500px;}
.y254_c00000{bottom:198.759000px;}
.y7b4_c00000{bottom:198.793500px;}
.y3dc_c00000{bottom:198.858000px;}
.yb56_c00000{bottom:198.876000px;}
.y75a_c00000{bottom:198.894000px;}
.y14a0_c00000{bottom:198.916500px;}
.y1761_c00000{bottom:198.946500px;}
.y192e_c00000{bottom:199.002000px;}
.y148d_c00000{bottom:199.113000px;}
.y2df_c00000{bottom:199.165500px;}
.y14a_c00000{bottom:199.266000px;}
.y11d6_c00000{bottom:199.392000px;}
.y50d_c00000{bottom:199.407000px;}
.y8f8_c00000{bottom:199.440000px;}
.ya4c_c00000{bottom:199.486500px;}
.y93_c00000{bottom:199.506000px;}
.ya93_c00000{bottom:199.588500px;}
.y189c_c00000{bottom:199.663500px;}
.y15ae_c00000{bottom:199.672500px;}
.y1373_c00000{bottom:199.788000px;}
.y70f_c00000{bottom:200.013000px;}
.y8b1_c00000{bottom:200.254500px;}
.y11ad_c00000{bottom:200.362500px;}
.y4e2_c00000{bottom:200.469000px;}
.yc24_c00000{bottom:200.610000px;}
.y772_c00000{bottom:200.676000px;}
.y93b_c00000{bottom:200.701500px;}
.ye43_c00000{bottom:200.710500px;}
.ye2f_c00000{bottom:200.809500px;}
.y1557_c00000{bottom:200.826000px;}
.yd37_c00000{bottom:200.842500px;}
.y1542_c00000{bottom:200.851500px;}
.y420_c00000{bottom:200.917500px;}
.y26f_c00000{bottom:200.986500px;}
.y23d_c00000{bottom:201.006000px;}
.y20e_c00000{bottom:201.039000px;}
.ye74_c00000{bottom:201.157500px;}
.ye4c_c00000{bottom:201.159000px;}
.y1eb_c00000{bottom:201.175500px;}
.y116f_c00000{bottom:201.225000px;}
.y186_c00000{bottom:201.318000px;}
.y16c1_c00000{bottom:201.463500px;}
.y170d_c00000{bottom:201.607500px;}
.yd2d_c00000{bottom:201.705000px;}
.y16f8_c00000{bottom:201.858000px;}
.yae2_c00000{bottom:201.963000px;}
.yfa9_c00000{bottom:202.075500px;}
.yaa4_c00000{bottom:202.078500px;}
.y337_c00000{bottom:202.129500px;}
.ycea_c00000{bottom:202.198500px;}
.y1472_c00000{bottom:202.204500px;}
.y3b2_c00000{bottom:202.243500px;}
.ycac_c00000{bottom:202.360500px;}
.ydf9_c00000{bottom:202.378500px;}
.y1cd_c00000{bottom:202.411500px;}
.y9b8_c00000{bottom:202.428000px;}
.y824_c00000{bottom:202.444500px;}
.y3e2_c00000{bottom:202.641000px;}
.y10b3_c00000{bottom:202.728000px;}
.y914_c00000{bottom:202.735500px;}
.y1894_c00000{bottom:202.818000px;}
.y47d_c00000{bottom:202.854000px;}
.y8dc_c00000{bottom:202.870500px;}
.y188a_c00000{bottom:202.926000px;}
.y1352_c00000{bottom:203.118000px;}
.y1388_c00000{bottom:203.125500px;}
.y602_c00000{bottom:203.134500px;}
.y38b_c00000{bottom:203.217000px;}
.y413_c00000{bottom:203.233500px;}
.y4b7_c00000{bottom:203.251500px;}
.y1099_c00000{bottom:203.260500px;}
.y7a8_c00000{bottom:203.376000px;}
.yf37_c00000{bottom:203.532000px;}
.y1147_c00000{bottom:203.719500px;}
.ya65_c00000{bottom:203.790000px;}
.y37c_c00000{bottom:203.845500px;}
.y1267_c00000{bottom:203.881500px;}
.y1802_c00000{bottom:204.042000px;}
.y1106_c00000{bottom:204.243000px;}
.y3db_c00000{bottom:204.282000px;}
.yb3_c00000{bottom:204.448500px;}
.y1021_c00000{bottom:204.531000px;}
.y167_c00000{bottom:204.720000px;}
.y596_c00000{bottom:204.727500px;}
.ya7a_c00000{bottom:204.778500px;}
.y788_c00000{bottom:204.828000px;}
.y1587_c00000{bottom:204.829500px;}
.y16f0_c00000{bottom:204.846000px;}
.y13cc_c00000{bottom:204.852000px;}
.y1961_c00000{bottom:204.853500px;}
.y6d9_c00000{bottom:204.862500px;}
.yb0d_c00000{bottom:204.969000px;}
.y11cb_c00000{bottom:204.970500px;}
.ya92_c00000{bottom:205.011000px;}
.y949_c00000{bottom:205.077000px;}
.yfe5_c00000{bottom:205.125000px;}
.y1819_c00000{bottom:205.140000px;}
.ya35_c00000{bottom:205.167000px;}
.y1328_c00000{bottom:205.185000px;}
.y1372_c00000{bottom:205.212000px;}
.y6e1_c00000{bottom:205.300500px;}
.y105f_c00000{bottom:205.309500px;}
.y463_c00000{bottom:205.360500px;}
.yb64_c00000{bottom:205.417500px;}
.y101_c00000{bottom:205.552500px;}
.yf3_c00000{bottom:205.554000px;}
.y35e_c00000{bottom:205.845000px;}
.yab3_c00000{bottom:205.846500px;}
.ybab_c00000{bottom:205.890000px;}
.y65e_c00000{bottom:206.074500px;}
.y9d9_c00000{bottom:206.085000px;}
.y93a_c00000{bottom:206.124000px;}
.y709_c00000{bottom:206.232000px;}
.yf41_c00000{bottom:206.248500px;}
.yd36_c00000{bottom:206.265000px;}
.ye09_c00000{bottom:206.298000px;}
.yf8b_c00000{bottom:206.338500px;}
.y1246_c00000{bottom:206.356500px;}
.y1136_c00000{bottom:206.409000px;}
.y7e8_c00000{bottom:206.461500px;}
.y95b_c00000{bottom:206.463000px;}
.yd1f_c00000{bottom:206.580000px;}
.y16e7_c00000{bottom:206.581500px;}
.y12d7_c00000{bottom:206.583000px;}
.y15a1_c00000{bottom:206.598000px;}
.y1632_c00000{bottom:206.637000px;}
.y1526_c00000{bottom:206.671500px;}
.y6f8_c00000{bottom:206.688000px;}
.y5c2_c00000{bottom:206.736000px;}
.y84a_c00000{bottom:206.796000px;}
.y1517_c00000{bottom:206.886000px;}
.ye7f_c00000{bottom:206.904000px;}
.yc02_c00000{bottom:206.928000px;}
.y16d4_c00000{bottom:207.127500px;}
.y13ae_c00000{bottom:207.360000px;}
.yae1_c00000{bottom:207.387000px;}
.y7bb_c00000{bottom:207.475500px;}
.y14d0_c00000{bottom:207.478500px;}
.y4a1_c00000{bottom:207.553500px;}
.yd11_c00000{bottom:207.594000px;}
.y127d_c00000{bottom:207.618000px;}
.y3b1_c00000{bottom:207.667500px;}
.y314_c00000{bottom:207.700500px;}
.yd7_c00000{bottom:207.733500px;}
.ycab_c00000{bottom:207.784500px;}
.y13bc_c00000{bottom:207.816000px;}
.y29b_c00000{bottom:207.835500px;}
.y6d2_c00000{bottom:207.852000px;}
.y1c1_c00000{bottom:207.868500px;}
.y157c_c00000{bottom:207.900000px;}
.y58f_c00000{bottom:208.003500px;}
.y2a2_c00000{bottom:208.063500px;}
.yb2e_c00000{bottom:208.065000px;}
.y1893_c00000{bottom:208.242000px;}
.yecd_c00000{bottom:208.290000px;}
.ye52_c00000{bottom:208.306500px;}
.y1744_c00000{bottom:208.381500px;}
.y154a_c00000{bottom:208.398000px;}
.y897_c00000{bottom:208.452000px;}
.y86f_c00000{bottom:208.530000px;}
.y15d5_c00000{bottom:208.590000px;}
.yd86_c00000{bottom:208.621500px;}
.yad2_c00000{bottom:208.633500px;}
.y124a_c00000{bottom:208.638000px;}
.y81c_c00000{bottom:208.654500px;}
.y1218_c00000{bottom:208.689000px;}
.y10e_c00000{bottom:208.837500px;}
.y37b_c00000{bottom:209.269500px;}
.y1651_c00000{bottom:209.544000px;}
.ycca_c00000{bottom:209.667000px;}
.y18a6_c00000{bottom:209.668500px;}
.y994_c00000{bottom:209.674500px;}
.y1404_c00000{bottom:209.710500px;}
.y1639_c00000{bottom:209.784000px;}
.y31c_c00000{bottom:209.800500px;}
.y161e_c00000{bottom:209.826000px;}
.y56b_c00000{bottom:209.842500px;}
.yb48_c00000{bottom:209.892000px;}
.y131_c00000{bottom:209.944500px;}
.y16cf_c00000{bottom:210.133500px;}
.y738_c00000{bottom:210.199500px;}
.y787_c00000{bottom:210.250500px;}
.y165a_c00000{bottom:210.406500px;}
.yf79_c00000{bottom:210.453000px;}
.y948_c00000{bottom:210.499500px;}
.y429_c00000{bottom:210.697500px;}
.y105e_c00000{bottom:210.732000px;}
.y798_c00000{bottom:210.772500px;}
.y14b6_c00000{bottom:210.838500px;}
.yb63_c00000{bottom:210.840000px;}
.y9b4_c00000{bottom:210.949500px;}
.y10c2_c00000{bottom:211.146000px;}
.y35d_c00000{bottom:211.269000px;}
.ya85_c00000{bottom:211.386000px;}
.y759_c00000{bottom:211.402500px;}
.ye08_c00000{bottom:211.720500px;}
.y17b9_c00000{bottom:211.752000px;}
.y864_c00000{bottom:211.918500px;}
.y128f_c00000{bottom:211.935000px;}
.yd1e_c00000{bottom:212.002500px;}
.y6f7_c00000{bottom:212.110500px;}
.y17c3_c00000{bottom:212.202000px;}
.y404_c00000{bottom:212.307000px;}
.yc01_c00000{bottom:212.352000px;}
.y1b9_c00000{bottom:212.367000px;}
.y4fb_c00000{bottom:212.433000px;}
.y1598_c00000{bottom:212.550000px;}
.y126f_c00000{bottom:212.566500px;}
.y104c_c00000{bottom:212.596500px;}
.ya22_c00000{bottom:212.755500px;}
.y8b0_c00000{bottom:212.764500px;}
.y7b3_c00000{bottom:212.905500px;}
.y28c_c00000{bottom:212.938500px;}
.y896_c00000{bottom:212.985000px;}
.y2e_c00000{bottom:213.052500px;}
.yc92_c00000{bottom:213.102000px;}
.yd4b_c00000{bottom:213.117000px;}
.y436_c00000{bottom:213.187500px;}
.y13bb_c00000{bottom:213.240000px;}
.y1303_c00000{bottom:213.295500px;}
.yba0_c00000{bottom:213.321000px;}
.y6f_c00000{bottom:213.661500px;}
.y6c4_c00000{bottom:213.685500px;}
.ye51_c00000{bottom:213.729000px;}
.y89d_c00000{bottom:213.954000px;}
.y18e7_c00000{bottom:214.051500px;}
.y81b_c00000{bottom:214.078500px;}
.y170c_c00000{bottom:214.117500px;}
.y150d_c00000{bottom:214.161000px;}
.y13f5_c00000{bottom:214.359000px;}
.y16f7_c00000{bottom:214.366500px;}
.y13a8_c00000{bottom:214.432500px;}
.y25_c00000{bottom:214.560000px;}
.ybcb_c00000{bottom:214.575000px;}
.y17a7_c00000{bottom:214.926000px;}
.y77d_c00000{bottom:214.939500px;}
.y1784_c00000{bottom:214.959000px;}
.y8ef_c00000{bottom:215.074500px;}
.y1256_c00000{bottom:215.080500px;}
.y228_c00000{bottom:215.157000px;}
.y692_c00000{bottom:215.182500px;}
.y623_c00000{bottom:215.197500px;}
.y974_c00000{bottom:215.206500px;}
.y1a6_c00000{bottom:215.221500px;}
.y711_c00000{bottom:215.224500px;}
.yca0_c00000{bottom:215.653500px;}
.y17f6_c00000{bottom:215.821500px;}
.y336_c00000{bottom:215.845500px;}
.ya0d_c00000{bottom:215.869500px;}
.yb83_c00000{bottom:215.877000px;}
.y905_c00000{bottom:215.886000px;}
.y1678_c00000{bottom:215.977500px;}
.y1848_c00000{bottom:216.133500px;}
.y797_c00000{bottom:216.195000px;}
.yc42_c00000{bottom:216.330000px;}
.y1231_c00000{bottom:216.385500px;}
.y14f8_c00000{bottom:216.433500px;}
.y1879_c00000{bottom:216.559500px;}
.y757_c00000{bottom:216.574500px;}
.y9f0_c00000{bottom:216.625500px;}
.y9f4_c00000{bottom:216.691500px;}
.y158f_c00000{bottom:216.693000px;}
.y102e_c00000{bottom:216.793500px;}
.y15b3_c00000{bottom:216.826500px;}
.y12b8_c00000{bottom:217.026000px;}
.y1020_c00000{bottom:217.041000px;}
.yce_c00000{bottom:217.065000px;}
.y50c_c00000{bottom:217.339500px;}
.y16ef_c00000{bottom:217.356000px;}
.y7a7_c00000{bottom:217.488000px;}
.y1266_c00000{bottom:217.596000px;}
.y15ad_c00000{bottom:217.605000px;}
.y1867_c00000{bottom:217.654500px;}
.yf2c_c00000{bottom:217.663500px;}
.y1146_c00000{bottom:217.831500px;}
.yeef_c00000{bottom:217.837500px;}
.y67c_c00000{bottom:218.031000px;}
.y6a5_c00000{bottom:218.161500px;}
.ya21_c00000{bottom:218.178000px;}
.y11ac_c00000{bottom:218.295000px;}
.y3da_c00000{bottom:218.394000px;}
.yf5d_c00000{bottom:218.431500px;}
.ye42_c00000{bottom:218.643000px;}
.ya91_c00000{bottom:218.725500px;}
.y708_c00000{bottom:218.742000px;}
.yf40_c00000{bottom:218.758500px;}
.y1541_c00000{bottom:218.784000px;}
.y41f_c00000{bottom:218.850000px;}
.y4d4_c00000{bottom:218.932500px;}
.y61f_c00000{bottom:218.971500px;}
.ye4b_c00000{bottom:219.091500px;}
.y185_c00000{bottom:219.250500px;}
.y1913_c00000{bottom:219.273000px;}
.y8ce_c00000{bottom:219.532500px;}
.y170b_c00000{bottom:219.541500px;}
.y10cc_c00000{bottom:219.895500px;}
.yc54_c00000{bottom:219.897000px;}
.y129c_c00000{bottom:220.080000px;}
.yd10_c00000{bottom:220.104000px;}
.y146a_c00000{bottom:220.171500px;}
.y939_c00000{bottom:220.236000px;}
.ydf8_c00000{bottom:220.311000px;}
.y1cc_c00000{bottom:220.344000px;}
.y6d1_c00000{bottom:220.360500px;}
.y559_c00000{bottom:220.420500px;}
.y169f_c00000{bottom:220.428000px;}
.y548_c00000{bottom:220.573500px;}
.y11ff_c00000{bottom:220.651500px;}
.y1889_c00000{bottom:220.860000px;}
.ye68_c00000{bottom:220.992000px;}
.y1387_c00000{bottom:221.058000px;}
.y601_c00000{bottom:221.067000px;}
.yc9f_c00000{bottom:221.077500px;}
.y1090_c00000{bottom:221.149500px;}
.yf36_c00000{bottom:221.466000px;}
.yae0_c00000{bottom:221.499000px;}
.yafd_c00000{bottom:221.515500px;}
.ydb0_c00000{bottom:221.625000px;}
.yd62_c00000{bottom:221.673000px;}
.y3b0_c00000{bottom:221.779500px;}
.y12f7_c00000{bottom:222.175500px;}
.y1403_c00000{bottom:222.220500px;}
.y1892_c00000{bottom:222.354000px;}
.y1080_c00000{bottom:222.454500px;}
.y101f_c00000{bottom:222.463500px;}
.yefd_c00000{bottom:222.537000px;}
.yc4a_c00000{bottom:222.544500px;}
.y1540_c00000{bottom:222.561000px;}
.y2fa_c00000{bottom:222.645000px;}
.y71f_c00000{bottom:222.661500px;}
.yea9_c00000{bottom:222.778500px;}
.y8f7_c00000{bottom:222.795000px;}
.y100f_c00000{bottom:222.885000px;}
.y11f5_c00000{bottom:222.924000px;}
.y37a_c00000{bottom:222.984000px;}
.y1327_c00000{bottom:223.117500px;}
.y6e0_c00000{bottom:223.234500px;}
.y1859_c00000{bottom:223.399500px;}
.yfc4_c00000{bottom:223.416000px;}
.y11aa_c00000{bottom:223.446000px;}
.y1105_c00000{bottom:223.779000px;}
.y3d9_c00000{bottom:223.816500px;}
.y1948_c00000{bottom:223.836000px;}
.y771_c00000{bottom:224.032500px;}
.ye41_c00000{bottom:224.065500px;}
.ya90_c00000{bottom:224.148000px;}
.y707_c00000{bottom:224.166000px;}
.y1351_c00000{bottom:224.179500px;}
.y1556_c00000{bottom:224.182500px;}
.yf8a_c00000{bottom:224.271000px;}
.yb41_c00000{bottom:224.280000px;}
.y786_c00000{bottom:224.362500px;}
.y20d_c00000{bottom:224.394000px;}
.y833_c00000{bottom:224.395500px;}
.y173d_c00000{bottom:224.436000px;}
.ye73_c00000{bottom:224.514000px;}
.y1ea_c00000{bottom:224.530500px;}
.y1631_c00000{bottom:224.571000px;}
.y1525_c00000{bottom:224.604000px;}
.y947_c00000{bottom:224.611500px;}
.y17c2_c00000{bottom:224.712000px;}
.y1371_c00000{bottom:224.746500px;}
.y1516_c00000{bottom:224.820000px;}
.y105d_c00000{bottom:224.844000px;}
.yb62_c00000{bottom:224.952000px;}
.yda5_c00000{bottom:224.998500px;}
.yd2c_c00000{bottom:225.060000px;}
.y7c9_c00000{bottom:225.126000px;}
.y1904_c00000{bottom:225.135000px;}
.y35c_c00000{bottom:225.381000px;}
.yc72_c00000{bottom:225.393000px;}
.ybfd_c00000{bottom:225.430500px;}
.y1825_c00000{bottom:225.477000px;}
.y253_c00000{bottom:225.649500px;}
.y149f_c00000{bottom:225.808500px;}
.y1760_c00000{bottom:225.837000px;}
.y547_c00000{bottom:225.997500px;}
.y148c_c00000{bottom:226.003500px;}
.y149_c00000{bottom:226.021500px;}
.y2de_c00000{bottom:226.056000px;}
.yd1d_c00000{bottom:226.114500px;}
.yecc_c00000{bottom:226.222500px;}
.y48_c00000{bottom:226.272000px;}
.y1743_c00000{bottom:226.314000px;}
.y1549_c00000{bottom:226.330500px;}
.ya4b_c00000{bottom:226.377000px;}
.y92_c00000{bottom:226.396500px;}
.y86e_c00000{bottom:226.464000px;}
.yd85_c00000{bottom:226.554000px;}
.y70e_c00000{bottom:226.903500px;}
.ya64_c00000{bottom:227.146500px;}
.y13ba_c00000{bottom:227.352000px;}
.y4e1_c00000{bottom:227.359500px;}
.y1650_c00000{bottom:227.476500px;}
.yc23_c00000{bottom:227.500500px;}
.ydec_c00000{bottom:227.599500px;}
.y18a5_c00000{bottom:227.601000px;}
.y1402_c00000{bottom:227.644500px;}
.y227_c00000{bottom:227.667000px;}
.y691_c00000{bottom:227.692500px;}
.y973_c00000{bottom:227.716500px;}
.y31b_c00000{bottom:227.733000px;}
.y161d_c00000{bottom:227.758500px;}
.y56a_c00000{bottom:227.775000px;}
.y26e_c00000{bottom:227.877000px;}
.y23c_c00000{bottom:227.896500px;}
.y116e_c00000{bottom:228.115500px;}
.ya79_c00000{bottom:228.133500px;}
.y81a_c00000{bottom:228.190500px;}
.y16c0_c00000{bottom:228.354000px;}
.y379_c00000{bottom:228.406500px;}
.ya34_c00000{bottom:228.522000px;}
.y1326_c00000{bottom:228.540000px;}
.y1189_c00000{bottom:228.595500px;}
.y6df_c00000{bottom:228.657000px;}
.yfa8_c00000{bottom:228.966000px;}
.yaa3_c00000{bottom:228.969000px;}
.y10c1_c00000{bottom:229.078500px;}
.yce9_c00000{bottom:229.089000px;}
.y158e_c00000{bottom:229.203000px;}
.ybaa_c00000{bottom:229.246500px;}
.y102d_c00000{bottom:229.302000px;}
.yf06_c00000{bottom:229.320000px;}
.y167f_c00000{bottom:229.336500px;}
.y47c_c00000{bottom:229.609500px;}
.y10b2_c00000{bottom:229.618500px;}
.y8db_c00000{bottom:229.626000px;}
.y4b6_c00000{bottom:230.008500px;}
.y1524_c00000{bottom:230.026500px;}
.y38a_c00000{bottom:230.107500px;}
.y412_c00000{bottom:230.124000px;}
.y849_c00000{bottom:230.151000px;}
.ye7e_c00000{bottom:230.259000px;}
.y105c_c00000{bottom:230.268000px;}
.y1b8_c00000{bottom:230.299500px;}
.y1452_c00000{bottom:230.382000px;}
.y1597_c00000{bottom:230.484000px;}
.y8af_c00000{bottom:230.697000px;}
.y35b_c00000{bottom:230.803500px;}
.y7b2_c00000{bottom:230.838000px;}
.y28b_c00000{bottom:230.871000px;}
.yb2_c00000{bottom:231.339000px;}
.y166_c00000{bottom:231.610500px;}
.y595_c00000{bottom:231.619500px;}
.y6f6_c00000{bottom:231.645000px;}
.y13cb_c00000{bottom:231.744000px;}
.y160b_c00000{bottom:231.753000px;}
.yb0c_c00000{bottom:231.859500px;}
.y11ca_c00000{bottom:231.862500px;}
.y86d_c00000{bottom:231.886500px;}
.y1249_c00000{bottom:231.994500px;}
.yfe4_c00000{bottom:232.015500px;}
.yf28_c00000{bottom:232.021500px;}
.y1818_c00000{bottom:232.030500px;}
.y1574_c00000{bottom:232.045500px;}
.ya20_c00000{bottom:232.290000px;}
.yf2_c00000{bottom:232.444500px;}
.y129b_c00000{bottom:232.588500px;}
.y558_c00000{bottom:232.930500px;}
.y65d_c00000{bottom:232.965000px;}
.y9d8_c00000{bottom:232.975500px;}
.ydcf_c00000{bottom:232.980000px;}
.y18a4_c00000{bottom:233.023500px;}
.y462_c00000{bottom:233.113500px;}
.y690_c00000{bottom:233.115000px;}
.y1638_c00000{bottom:233.140500px;}
.y1a5_c00000{bottom:233.155500px;}
.y31a_c00000{bottom:233.157000px;}
.y1245_c00000{bottom:233.247000px;}
.yb47_c00000{bottom:233.248500px;}
.y95a_c00000{bottom:233.353500px;}
.y16ce_c00000{bottom:233.488500px;}
.y819_c00000{bottom:233.613000px;}
.y5c1_c00000{bottom:233.626500px;}
.y1659_c00000{bottom:233.763000px;}
.y335_c00000{bottom:233.778000px;}
.y904_c00000{bottom:233.818500px;}
.y459_c00000{bottom:233.869500px;}
.y1677_c00000{bottom:233.910000px;}
.yb2d_c00000{bottom:234.246000px;}
.y13ad_c00000{bottom:234.250500px;}
.y18d5_c00000{bottom:234.355500px;}
.y7ba_c00000{bottom:234.367500px;}
.yd08_c00000{bottom:234.459000px;}
.y52c_c00000{bottom:234.483000px;}
.y127c_c00000{bottom:234.508500px;}
.yec7_c00000{bottom:234.550500px;}
.y313_c00000{bottom:234.591000px;}
.yd6_c00000{bottom:234.624000px;}
.yab2_c00000{bottom:234.643500px;}
.ya84_c00000{bottom:234.742500px;}
.y758_c00000{bottom:234.759000px;}
.y58e_c00000{bottom:234.894000px;}
.y12b7_c00000{bottom:234.958500px;}
.y17b8_c00000{bottom:235.107000px;}
.ycc9_c00000{bottom:235.167000px;}
.y50b_c00000{bottom:235.272000px;}
.y16ee_c00000{bottom:235.288500px;}
.y895_c00000{bottom:235.342500px;}
.y7a6_c00000{bottom:235.422000px;}
.y15d4_c00000{bottom:235.482000px;}
.y15ac_c00000{bottom:235.537500px;}
.y1217_c00000{bottom:235.579500px;}
.y1b7_c00000{bottom:235.722000px;}
.y10d_c00000{bottom:235.729500px;}
.ycaa_c00000{bottom:235.744500px;}
.y141d_c00000{bottom:235.779000px;}
.y8ae_c00000{bottom:236.121000px;}
.y7b1_c00000{bottom:236.262000px;}
.y10ee_c00000{bottom:236.502000px;}
.y993_c00000{bottom:236.565000px;}
.y101e_c00000{bottom:236.575500px;}
.ye2e_c00000{bottom:236.674500px;}
.y1555_c00000{bottom:236.691000px;}
.y153f_c00000{bottom:236.716500px;}
.y41e_c00000{bottom:236.782500px;}
.y1471_c00000{bottom:236.815500px;}
.y130_c00000{bottom:236.835000px;}
.y20c_c00000{bottom:236.904000px;}
.ye72_c00000{bottom:237.024000px;}
.y737_c00000{bottom:237.090000px;}
.y184_c00000{bottom:237.184500px;}
.yf78_c00000{bottom:237.343500px;}
.yd2b_c00000{bottom:237.570000px;}
.y428_c00000{bottom:237.588000px;}
.ya1f_c00000{bottom:237.714000px;}
.y16f6_c00000{bottom:237.723000px;}
.y14b5_c00000{bottom:237.729000px;}
.y9b3_c00000{bottom:237.841500px;}
.y3d8_c00000{bottom:237.928500px;}
.y938_c00000{bottom:238.170000px;}
.ye40_c00000{bottom:238.177500px;}
.ya8f_c00000{bottom:238.261500px;}
.y1cb_c00000{bottom:238.278000px;}
.y16c3_c00000{bottom:238.294500px;}
.y801_c00000{bottom:238.506000px;}
.y1a4_c00000{bottom:238.578000px;}
.y1801_c00000{bottom:238.654500px;}
.y1888_c00000{bottom:238.792500px;}
.y863_c00000{bottom:238.809000px;}
.y128e_c00000{bottom:238.825500px;}
.y1386_c00000{bottom:238.992000px;}
.y600_c00000{bottom:238.999500px;}
.y170a_c00000{bottom:239.076000px;}
.y403_c00000{bottom:239.197500px;}
.ya0c_c00000{bottom:239.226000px;}
.y903_c00000{bottom:239.242500px;}
.y4fa_c00000{bottom:239.323500px;}
.yf35_c00000{bottom:239.398500px;}
.y104b_c00000{bottom:239.488500px;}
.y111a_c00000{bottom:239.508000px;}
.ya63_c00000{bottom:239.655000px;}
.yd4a_c00000{bottom:240.007500px;}
.y435_c00000{bottom:240.079500px;}
.ydeb_c00000{bottom:240.109500px;}
.y1302_c00000{bottom:240.186000px;}
.yb9f_c00000{bottom:240.211500px;}
.y6e_c00000{bottom:240.552000px;}
.y6c3_c00000{bottom:240.577500px;}
.ya78_c00000{bottom:240.643500px;}
.y1586_c00000{bottom:240.694500px;}
.y18e6_c00000{bottom:240.942000px;}
.y1265_c00000{bottom:240.952500px;}
.ya33_c00000{bottom:241.032000px;}
.y150c_c00000{bottom:241.053000px;}
.y1145_c00000{bottom:241.186500px;}
.y13f4_c00000{bottom:241.249500px;}
.y13a7_c00000{bottom:241.323000px;}
.ybca_c00000{bottom:241.467000px;}
.y17a6_c00000{bottom:241.816500px;}
.y77c_c00000{bottom:241.830000px;}
.y1783_c00000{bottom:241.849500px;}
.y770_c00000{bottom:241.965000px;}
.y1255_c00000{bottom:241.972500px;}
.y622_c00000{bottom:242.088000px;}
.yf3f_c00000{bottom:242.115000px;}
.yf89_c00000{bottom:242.205000px;}
.y785_c00000{bottom:242.295000px;}
.y2bf_c00000{bottom:242.328000px;}
.ye4a_c00000{bottom:242.446500px;}
.y1630_c00000{bottom:242.503500px;}
.y130a_c00000{bottom:242.544000px;}
.y946_c00000{bottom:242.545500px;}
.y848_c00000{bottom:242.661000px;}
.y1370_c00000{bottom:242.679000px;}
.y17f5_c00000{bottom:242.713500px;}
.yb82_c00000{bottom:242.767500px;}
.yb61_c00000{bottom:242.884500px;}
.y1596_c00000{bottom:242.992500px;}
.y1230_c00000{bottom:243.277500px;}
.y14f7_c00000{bottom:243.325500px;}
.y3d7_c00000{bottom:243.351000px;}
.y1878_c00000{bottom:243.450000px;}
.yd0f_c00000{bottom:243.459000px;}
.y756_c00000{bottom:243.465000px;}
.y9ef_c00000{bottom:243.517500px;}
.y5a8_c00000{bottom:243.565500px;}
.y9f3_c00000{bottom:243.582000px;}
.y937_c00000{bottom:243.592500px;}
.ydf7_c00000{bottom:243.667500px;}
.y1f3_c00000{bottom:243.700500px;}
.y6d0_c00000{bottom:243.717000px;}
.y1430_c00000{bottom:243.930000px;}
.ycd_c00000{bottom:243.955500px;}
.yd1c_c00000{bottom:244.047000px;}
.y1523_c00000{bottom:244.138500px;}
.y6f5_c00000{bottom:244.155000px;}
.y105b_c00000{bottom:244.380000px;}
.y89c_c00000{bottom:244.396500px;}
.y24_c00000{bottom:244.467900px;}
.yd84_c00000{bottom:244.488000px;}
.y1866_c00000{bottom:244.545000px;}
.y796_c00000{bottom:244.554000px;}
.yeee_c00000{bottom:244.728000px;}
.y1009_c00000{bottom:244.729500px;}
.yf34_c00000{bottom:244.821000px;}
.y35a_c00000{bottom:244.915500px;}
.y67b_c00000{bottom:244.923000px;}
.y6a4_c00000{bottom:245.052000px;}
.ya62_c00000{bottom:245.079000px;}
.y3af_c00000{bottom:245.134500px;}
.y13b9_c00000{bottom:245.284500px;}
.yf5c_c00000{bottom:245.322000px;}
.y164f_c00000{bottom:245.409000px;}
.y12f6_c00000{bottom:245.532000px;}
.y226_c00000{bottom:245.599500px;}
.y972_c00000{bottom:245.649000px;}
.y161c_c00000{bottom:245.691000px;}
.y569_c00000{bottom:245.707500px;}
.y1891_c00000{bottom:245.709000px;}
.y4d3_c00000{bottom:245.823000px;}
.y16cd_c00000{bottom:245.998500px;}
.ya77_c00000{bottom:246.066000px;}
.y8cd_c00000{bottom:246.289500px;}
.ya32_c00000{bottom:246.456000px;}
.yc53_c00000{bottom:246.787500px;}
.y1469_c00000{bottom:246.928500px;}
.y10c0_c00000{bottom:247.011000px;}
.y12da_c00000{bottom:247.044000px;}
.y1104_c00000{bottom:247.134000px;}
.y158d_c00000{bottom:247.135500px;}
.y1401_c00000{bottom:247.179000px;}
.y102c_c00000{bottom:247.236000px;}
.yb55_c00000{bottom:247.252500px;}
.y169e_c00000{bottom:247.318500px;}
.y11fe_c00000{bottom:247.542000px;}
.y17b7_c00000{bottom:247.617000px;}
.y784_c00000{bottom:247.719000px;}
.y945_c00000{bottom:247.968000px;}
.y108f_c00000{bottom:248.040000px;}
.y17c1_c00000{bottom:248.067000px;}
.y847_c00000{bottom:248.083500px;}
.y1515_c00000{bottom:248.175000px;}
.y1135_c00000{bottom:248.226000px;}
.yb60_c00000{bottom:248.308500px;}
.yafc_c00000{bottom:248.406000px;}
.ydaf_c00000{bottom:248.515500px;}
.yd61_c00000{bottom:248.563500px;}
.y28a_c00000{bottom:248.803500px;}
.y1609_c00000{bottom:249.337500px;}
.y107f_c00000{bottom:249.345000px;}
.yefc_c00000{bottom:249.427500px;}
.yc49_c00000{bottom:249.435000px;}
.yd1b_c00000{bottom:249.471000px;}
.y2f9_c00000{bottom:249.535500px;}
.y71e_c00000{bottom:249.552000px;}
.y6f4_c00000{bottom:249.579000px;}
.y1742_c00000{bottom:249.669000px;}
.y1548_c00000{bottom:249.687000px;}
.y100e_c00000{bottom:249.775500px;}
.y105a_c00000{bottom:249.802500px;}
.y11f4_c00000{bottom:249.814500px;}
.y89b_c00000{bottom:249.819000px;}
.y1b6_c00000{bottom:249.834000px;}
.y1858_c00000{bottom:250.290000px;}
.y11a9_c00000{bottom:250.338000px;}
.y7b0_c00000{bottom:250.374000px;}
.y129a_c00000{bottom:250.522500px;}
.y13b8_c00000{bottom:250.707000px;}
.y1947_c00000{bottom:250.728000px;}
.yc91_c00000{bottom:250.753500px;}
.y557_c00000{bottom:250.863000px;}
.yc41_c00000{bottom:250.942500px;}
.y1350_c00000{bottom:251.071500px;}
.y971_c00000{bottom:251.073000px;}
.yb40_c00000{bottom:251.170500px;}
.yb46_c00000{bottom:251.181000px;}
.y1e9_c00000{bottom:251.287500px;}
.y173c_c00000{bottom:251.326500px;}
.y86c_c00000{bottom:251.421000px;}
.yad1_c00000{bottom:251.424000px;}
.y1709_c00000{bottom:251.586000px;}
.ya1e_c00000{bottom:251.826000px;}
.y1676_c00000{bottom:251.842500px;}
.y4ed_c00000{bottom:251.859000px;}
.yda4_c00000{bottom:251.889000px;}
.y7c8_c00000{bottom:252.018000px;}
.y14cf_c00000{bottom:252.061500px;}
.yc71_c00000{bottom:252.285000px;}
.y546_c00000{bottom:252.288000px;}
.ybfc_c00000{bottom:252.322500px;}
.y1824_c00000{bottom:252.367500px;}
.y1874_c00000{bottom:252.397500px;}
.y4a0_c00000{bottom:252.430500px;}
.y10bf_c00000{bottom:252.435000px;}
.yba9_c00000{bottom:252.516000px;}
.ya18_c00000{bottom:252.523500px;}
.y252_c00000{bottom:252.540000px;}
.ya83_c00000{bottom:252.675000px;}
.y1a3_c00000{bottom:252.690000px;}
.ybdd_c00000{bottom:252.714000px;}
.y175f_c00000{bottom:252.727500px;}
.y148b_c00000{bottom:252.895500px;}
.y148_c00000{bottom:252.913500px;}
.y17b6_c00000{bottom:253.041000px;}
.y47_c00000{bottom:253.162500px;}
.y1585_c00000{bottom:253.204500px;}
.y16ed_c00000{bottom:253.221000px;}
.ya4a_c00000{bottom:253.267500px;}
.y91_c00000{bottom:253.288500px;}
.y7a5_c00000{bottom:253.354500px;}
.y15ab_c00000{bottom:253.470000px;}
.yadf_c00000{bottom:253.678500px;}
.y70d_c00000{bottom:253.794000px;}
.y1912_c00000{bottom:253.885500px;}
.y4e0_c00000{bottom:254.250000px;}
.y5dd_c00000{bottom:254.251500px;}
.yc22_c00000{bottom:254.392500px;}
.y101d_c00000{bottom:254.508000px;}
.ye2d_c00000{bottom:254.607000px;}
.yf3e_c00000{bottom:254.625000px;}
.y153e_c00000{bottom:254.649000px;}
.y26d_c00000{bottom:254.767500px;}
.y23b_c00000{bottom:254.787000px;}
.y63e_c00000{bottom:254.836500px;}
.y378_c00000{bottom:254.928000px;}
.ye49_c00000{bottom:254.956500px;}
.y116d_c00000{bottom:255.006000px;}
.y183_c00000{bottom:255.117000px;}
.y16bf_c00000{bottom:255.246000px;}
.y1188_c00000{bottom:255.487500px;}
.yd2a_c00000{bottom:255.502500px;}
.yfa7_c00000{bottom:255.858000px;}
.yaa2_c00000{bottom:255.861000px;}
.y1299_c00000{bottom:255.945000px;}
.yd0e_c00000{bottom:255.969000px;}
.yce8_c00000{bottom:255.979500px;}
.ye3f_c00000{bottom:256.110000px;}
.y18dc_c00000{bottom:256.126500px;}
.ydf6_c00000{bottom:256.177500px;}
.y29a_c00000{bottom:256.210500px;}
.y556_c00000{bottom:256.287000px;}
.y1168_c00000{bottom:256.438500px;}
.y47b_c00000{bottom:256.500000px;}
.y10b1_c00000{bottom:256.509000px;}
.y8da_c00000{bottom:256.516500px;}
.y913_c00000{bottom:256.518000px;}
.y4b5_c00000{bottom:256.899000px;}
.y1385_c00000{bottom:256.924500px;}
.y5ff_c00000{bottom:256.932000px;}
.y411_c00000{bottom:257.016000px;}
.y334_c00000{bottom:257.133000px;}
.yd35_c00000{bottom:257.157000px;}
.ya0b_c00000{bottom:257.158500px;}
.y1451_c00000{bottom:257.272500px;}
.y3d6_c00000{bottom:257.463000px;}
.y142f_c00000{bottom:258.042000px;}
.y70c_c00000{bottom:258.327000px;}
.y165_c00000{bottom:258.501000px;}
.y594_c00000{bottom:258.510000px;}
.y50a_c00000{bottom:258.627000px;}
.y13ca_c00000{bottom:258.634500px;}
.yb0b_c00000{bottom:258.750000px;}
.y11c9_c00000{bottom:258.753000px;}
.y7a4_c00000{bottom:258.777000px;}
.y1264_c00000{bottom:258.885000px;}
.y15aa_c00000{bottom:258.894000px;}
.yfe3_c00000{bottom:258.906000px;}
.yf27_c00000{bottom:258.912000px;}
.y1817_c00000{bottom:258.921000px;}
.y1573_c00000{bottom:258.936000px;}
.yf1_c00000{bottom:259.335000px;}
.y802_c00000{bottom:259.738500px;}
.y65c_c00000{bottom:259.855500px;}
.ydce_c00000{bottom:259.870500px;}
.y101c_c00000{bottom:259.932000px;}
.y461_c00000{bottom:260.004000px;}
.ye2c_c00000{bottom:260.031000px;}
.yf3d_c00000{bottom:260.047500px;}
.yf88_c00000{bottom:260.137500px;}
.y41d_c00000{bottom:260.139000px;}
.ya31_c00000{bottom:260.170500px;}
.y959_c00000{bottom:260.245500px;}
.y20b_c00000{bottom:260.260500px;}
.y16e6_c00000{bottom:260.379000px;}
.y162f_c00000{bottom:260.436000px;}
.y5c0_c00000{bottom:260.518500px;}
.y458_c00000{bottom:260.760000px;}
.yd29_c00000{bottom:260.926500px;}
.y1847_c00000{bottom:261.093000px;}
.yb2c_c00000{bottom:261.136500px;}
.y13ac_c00000{bottom:261.141000px;}
.y18d4_c00000{bottom:261.246000px;}
.y7b9_c00000{bottom:261.258000px;}
.yd07_c00000{bottom:261.349500px;}
.y52b_c00000{bottom:261.373500px;}
.y127b_c00000{bottom:261.399000px;}
.yec6_c00000{bottom:261.441000px;}
.y68f_c00000{bottom:261.474000px;}
.y312_c00000{bottom:261.481500px;}
.yd5_c00000{bottom:261.514500px;}
.yab1_c00000{bottom:261.534000px;}
.ya8e_c00000{bottom:261.616500px;}
.y1ca_c00000{bottom:261.633000px;}
.y16c2_c00000{bottom:261.649500px;}
.y12b6_c00000{bottom:261.714000px;}
.y58d_c00000{bottom:261.784500px;}
.y783_c00000{bottom:261.831000px;}
.y800_c00000{bottom:261.862500px;}
.y818_c00000{bottom:261.972000px;}
.ycc8_c00000{bottom:262.057500px;}
.y1522_c00000{bottom:262.071000px;}
.y1887_c00000{bottom:262.147500px;}
.y1741_c00000{bottom:262.179000px;}
.y15d3_c00000{bottom:262.372500px;}
.yd83_c00000{bottom:262.420500px;}
.y1216_c00000{bottom:262.470000px;}
.y10c_c00000{bottom:262.620000px;}
.yca9_c00000{bottom:262.636500px;}
.y141c_c00000{bottom:262.669500px;}
.y359_c00000{bottom:262.848000px;}
.y12d6_c00000{bottom:262.860000px;}
.y936_c00000{bottom:263.127000px;}
.y164e_c00000{bottom:263.341500px;}
.y10ed_c00000{bottom:263.392500px;}
.y992_c00000{bottom:263.457000px;}
.ydea_c00000{bottom:263.464500px;}
.yd1a_c00000{bottom:263.583000px;}
.y161b_c00000{bottom:263.623500px;}
.y568_c00000{bottom:263.640000px;}
.y1059_c00000{bottom:263.914500px;}
.y736_c00000{bottom:263.980500px;}
.yf77_c00000{bottom:264.235500px;}
.y23_c00000{bottom:264.442680px;}
.y8ad_c00000{bottom:264.478500px;}
.y14b4_c00000{bottom:264.621000px;}
.y9b2_c00000{bottom:264.732000px;}
.y13b7_c00000{bottom:264.819000px;}
.y158c_c00000{bottom:265.068000px;}
.y102b_c00000{bottom:265.168500px;}
.ya82_c00000{bottom:265.185000px;}
.y149e_c00000{bottom:265.566000px;}
.y128d_c00000{bottom:265.716000px;}
.y162e_c00000{bottom:265.858500px;}
.y17c0_c00000{bottom:265.999500px;}
.y402_c00000{bottom:266.089500px;}
.y1514_c00000{bottom:266.107500px;}
.y4f9_c00000{bottom:266.214000px;}
.ye2b_c00000{bottom:266.269500px;}
.y1595_c00000{bottom:266.349000px;}
.y104a_c00000{bottom:266.379000px;}
.y1119_c00000{bottom:266.398500px;}
.y10be_c00000{bottom:266.547000px;}
.y289_c00000{bottom:266.736000px;}
.yd49_c00000{bottom:266.898000px;}
.y434_c00000{bottom:266.970000px;}
.y1301_c00000{bottom:267.076500px;}
.yb9e_c00000{bottom:267.102000px;}
.y782_c00000{bottom:267.253500px;}
.y6d_c00000{bottom:267.442500px;}
.y6c2_c00000{bottom:267.468000px;}
.yb5f_c00000{bottom:267.843000px;}
.y1144_c00000{bottom:267.943500px;}
.y9d7_c00000{bottom:267.994500px;}
.y13f3_c00000{bottom:268.140000px;}
.y13a6_c00000{bottom:268.213500px;}
.ybc9_c00000{bottom:268.357500px;}
.y76f_c00000{bottom:268.722000px;}
.y1254_c00000{bottom:268.863000px;}
.y2be_c00000{bottom:268.876500px;}
.y225_c00000{bottom:268.956000px;}
.y621_c00000{bottom:268.978500px;}
.y1309_c00000{bottom:269.436000px;}
.y1708_c00000{bottom:269.518500px;}
.y17f4_c00000{bottom:269.604000px;}
.yb81_c00000{bottom:269.658000px;}
.ya0a_c00000{bottom:269.668500px;}
.y3ae_c00000{bottom:269.703000px;}
.ya1d_c00000{bottom:269.758500px;}
.y1675_c00000{bottom:269.776500px;}
.y2dd_c00000{bottom:269.983500px;}
.y122f_c00000{bottom:270.168000px;}
.y8ab_c00000{bottom:270.187500px;}
.y1950_c00000{bottom:270.340500px;}
.y12f5_c00000{bottom:270.349500px;}
.y755_c00000{bottom:270.357000px;}
.y9ee_c00000{bottom:270.408000px;}
.y5a7_c00000{bottom:270.456000px;}
.y6cf_c00000{bottom:270.472500px;}
.yb54_c00000{bottom:270.607500px;}
.y1a2_c00000{bottom:270.622500px;}
.ycc_c00000{bottom:270.847500px;}
.y509_c00000{bottom:271.137000px;}
.y902_c00000{bottom:271.287000px;}
.y1865_c00000{bottom:271.437000px;}
.y795_c00000{bottom:271.444500px;}
.y1903_c00000{bottom:271.453500px;}
.yeed_c00000{bottom:271.620000px;}
.y67a_c00000{bottom:271.813500px;}
.y6a3_c00000{bottom:271.942500px;}
.y153d_c00000{bottom:272.581500px;}
.y41c_c00000{bottom:272.649000px;}
.y1778_c00000{bottom:272.769000px;}
.y20a_c00000{bottom:272.770500px;}
.y15a9_c00000{bottom:273.006000px;}
.y182_c00000{bottom:273.049500px;}
.y8cc_c00000{bottom:273.180000px;}
.y1b5_c00000{bottom:273.190500px;}
.y77b_c00000{bottom:273.255000px;}
.y1103_c00000{bottom:273.337500px;}
.y862_c00000{bottom:273.420000px;}
.ya61_c00000{bottom:273.436500px;}
.yc52_c00000{bottom:273.678000px;}
.y7af_c00000{bottom:273.729000px;}
.y1468_c00000{bottom:273.819000px;}
.yd0d_c00000{bottom:273.901500px;}
.y1400_c00000{bottom:273.936000px;}
.ydf5_c00000{bottom:274.110000px;}
.y299_c00000{bottom:274.143000px;}
.y169d_c00000{bottom:274.209000px;}
.y7ff_c00000{bottom:274.372500px;}
.ya76_c00000{bottom:274.425000px;}
.y11fd_c00000{bottom:274.434000px;}
.y1886_c00000{bottom:274.657500px;}
.y5fe_c00000{bottom:274.864500px;}
.y1134_c00000{bottom:275.118000px;}
.yafb_c00000{bottom:275.296500px;}
.ydae_c00000{bottom:275.407500px;}
.yd60_c00000{bottom:275.454000px;}
.y18e5_c00000{bottom:275.554500px;}
.y935_c00000{bottom:275.637000px;}
.y1167_c00000{bottom:275.974500px;}
.y1608_c00000{bottom:276.229500px;}
.y107e_c00000{bottom:276.235500px;}
.yefb_c00000{bottom:276.318000px;}
.y944_c00000{bottom:276.327000px;}
.y2f8_c00000{bottom:276.426000px;}
.y71d_c00000{bottom:276.442500px;}
.y1782_c00000{bottom:276.462000px;}
.y1584_c00000{bottom:276.561000px;}
.y16ec_c00000{bottom:276.577500px;}
.y100d_c00000{bottom:276.666000px;}
.y11f3_c00000{bottom:276.705000px;}
.y901_c00000{bottom:276.709500px;}
.ye67_c00000{bottom:276.970500px;}
.y1857_c00000{bottom:277.180500px;}
.y11a8_c00000{bottom:277.228500px;}
.y894_c00000{bottom:277.407000px;}
.y1946_c00000{bottom:277.618500px;}
.yc90_c00000{bottom:277.645500px;}
.y6f3_c00000{bottom:277.936500px;}
.y134f_c00000{bottom:277.962000px;}
.yb3f_c00000{bottom:278.061000px;}
.yf87_c00000{bottom:278.070000px;}
.y1e8_c00000{bottom:278.178000px;}
.y61e_c00000{bottom:278.193000px;}
.y173b_c00000{bottom:278.218500px;}
.y7a3_c00000{bottom:278.313000px;}
.yad0_c00000{bottom:278.314500px;}
.y17bf_c00000{bottom:278.509500px;}
.y1513_c00000{bottom:278.617500px;}
.yda3_c00000{bottom:278.779500px;}
.yea8_c00000{bottom:278.785500px;}
.y7c7_c00000{bottom:278.908500px;}
.y14ce_c00000{bottom:278.952000px;}
.yc70_c00000{bottom:279.175500px;}
.y545_c00000{bottom:279.180000px;}
.ybfb_c00000{bottom:279.213000px;}
.y1923_c00000{bottom:279.258000px;}
.y1823_c00000{bottom:279.259500px;}
.y1873_c00000{bottom:279.288000px;}
.y49f_c00000{bottom:279.322500px;}
.yd0c_c00000{bottom:279.325500px;}
.yba8_c00000{bottom:279.406500px;}
.ya17_c00000{bottom:279.415500px;}
.y251_c00000{bottom:279.432000px;}
.y1c9_c00000{bottom:279.565500px;}
.ybdc_c00000{bottom:279.604500px;}
.y175e_c00000{bottom:279.618000px;}
.y148a_c00000{bottom:279.786000px;}
.yd81_c00000{bottom:279.795000px;}
.y147_c00000{bottom:279.804000px;}
.y162d_c00000{bottom:279.970500px;}
.y46_c00000{bottom:280.053000px;}
.y1885_c00000{bottom:280.080000px;}
.ya49_c00000{bottom:280.159500px;}
.y90_c00000{bottom:280.179000px;}
.y1384_c00000{bottom:280.279500px;}
.yb5e_c00000{bottom:280.353000px;}
.y17a5_c00000{bottom:280.354500px;}
.y4d2_c00000{bottom:280.435500px;}
.yade_c00000{bottom:280.569000px;}
.y70b_c00000{bottom:280.684500px;}
.y358_c00000{bottom:280.782000px;}
.y3d5_c00000{bottom:280.819500px;}
.y934_c00000{bottom:281.061000px;}
.y5dc_c00000{bottom:281.142000px;}
.y164d_c00000{bottom:281.274000px;}
.yc21_c00000{bottom:281.283000px;}
.y142e_c00000{bottom:281.397000px;}
.y17b5_c00000{bottom:281.398500px;}
.y224_c00000{bottom:281.466000px;}
.y14f6_c00000{bottom:281.485500px;}
.yd19_c00000{bottom:281.515500px;}
.y161a_c00000{bottom:281.557500px;}
.y567_c00000{bottom:281.574000px;}
.y12f_c00000{bottom:281.658000px;}
.y377_c00000{bottom:281.818500px;}
.y116c_c00000{bottom:281.896500px;}
.y16be_c00000{bottom:282.136500px;}
.y1187_c00000{bottom:282.378000px;}
.yfa6_c00000{bottom:282.748500px;}
.yaa1_c00000{bottom:282.751500px;}
.yfc3_c00000{bottom:282.802500px;}
.yce7_c00000{bottom:282.870000px;}
.yf05_c00000{bottom:283.117500px;}
.y47a_c00000{bottom:283.392000px;}
.y10b0_c00000{bottom:283.399500px;}
.y8d9_c00000{bottom:283.408500px;}
.ya30_c00000{bottom:283.525500px;}
.y4b4_c00000{bottom:283.789500px;}
.y333_c00000{bottom:283.890000px;}
.y410_c00000{bottom:283.906500px;}
.y1450_c00000{bottom:284.164500px;}
.y22_c00000{bottom:284.417460px;}
.y10bd_c00000{bottom:284.479500px;}
.y288_c00000{bottom:284.668500px;}
.ya8d_c00000{bottom:284.886000px;}
.yf5b_c00000{bottom:284.994000px;}
.y164_c00000{bottom:285.393000px;}
.y593_c00000{bottom:285.400500px;}
.y1521_c00000{bottom:285.427500px;}
.y13c9_c00000{bottom:285.525000px;}
.y1740_c00000{bottom:285.535500px;}
.y555_c00000{bottom:285.642000px;}
.y11c8_c00000{bottom:285.643500px;}
.y1b4_c00000{bottom:285.699000px;}
.yd82_c00000{bottom:285.775500px;}
.yfe2_c00000{bottom:285.796500px;}
.yf26_c00000{bottom:285.802500px;}
.y1816_c00000{bottom:285.811500px;}
.y1572_c00000{bottom:285.826500px;}
.yf0_c00000{bottom:286.225500px;}
.y7ae_c00000{bottom:286.239000px;}
.y65b_c00000{bottom:286.746000px;}
.ydcd_c00000{bottom:286.762500px;}
.yd18_c00000{bottom:286.938000px;}
.y1244_c00000{bottom:287.029500px;}
.y958_c00000{bottom:287.136000px;}
.y1058_c00000{bottom:287.271000px;}
.y5bf_c00000{bottom:287.409000px;}
.y1707_c00000{bottom:287.451000px;}
.ya09_c00000{bottom:287.601000px;}
.y457_c00000{bottom:287.652000px;}
.y1674_c00000{bottom:287.709000px;}
.y1846_c00000{bottom:287.983500px;}
.yb2b_c00000{bottom:288.028500px;}
.y13ab_c00000{bottom:288.033000px;}
.y18d3_c00000{bottom:288.136500px;}
.y7b8_c00000{bottom:288.148500px;}
.y13b6_c00000{bottom:288.175500px;}
.yd06_c00000{bottom:288.241500px;}
.y52a_c00000{bottom:288.264000px;}
.ye3e_c00000{bottom:288.289500px;}
.yec5_c00000{bottom:288.331500px;}
.y68e_c00000{bottom:288.364500px;}
.y311_c00000{bottom:288.373500px;}
.y706_c00000{bottom:288.390000px;}
.yd4_c00000{bottom:288.406500px;}
.yab0_c00000{bottom:288.424500px;}
.y102a_c00000{bottom:288.523500px;}
.ya81_c00000{bottom:288.540000px;}
.y1a1_c00000{bottom:288.555000px;}
.y12b5_c00000{bottom:288.606000px;}
.y58c_c00000{bottom:288.675000px;}
.yde9_c00000{bottom:288.706500px;}
.y4df_c00000{bottom:288.862500px;}
.ycc7_c00000{bottom:288.948000px;}
.y1583_c00000{bottom:289.071000px;}
.y15d2_c00000{bottom:289.263000px;}
.y1215_c00000{bottom:289.360500px;}
.y10b_c00000{bottom:289.510500px;}
.y141b_c00000{bottom:289.561500px;}
.y12d5_c00000{bottom:289.752000px;}
.y10bc_c00000{bottom:289.902000px;}
.y10ec_c00000{bottom:290.283000px;}
.y991_c00000{bottom:290.347500px;}
.y153c_c00000{bottom:290.515500px;}
.y209_c00000{bottom:290.703000px;}
.y735_c00000{bottom:290.872500px;}
.y15a8_c00000{bottom:290.938500px;}
.y181_c00000{bottom:290.982000px;}
.yf76_c00000{bottom:291.126000px;}
.y8ac_c00000{bottom:291.370500px;}
.y14b3_c00000{bottom:291.511500px;}
.y1c8_c00000{bottom:292.075500px;}
.y7e7_c00000{bottom:292.305000px;}
.y149d_c00000{bottom:292.456500px;}
.y128c_c00000{bottom:292.606500px;}
.y108e_c00000{bottom:292.864500px;}
.y401_c00000{bottom:292.980000px;}
.ya08_c00000{bottom:293.023500px;}
.y4f8_c00000{bottom:293.104500px;}
.ya1c_c00000{bottom:293.113500px;}
.ye2a_c00000{bottom:293.160000px;}
.y1049_c00000{bottom:293.269500px;}
.y1118_c00000{bottom:293.289000px;}
.yd0b_c00000{bottom:293.437500px;}
.yd48_c00000{bottom:293.790000px;}
.y433_c00000{bottom:293.860500px;}
.y1300_c00000{bottom:293.967000px;}
.yb9d_c00000{bottom:293.992500px;}
.y6c_c00000{bottom:294.334500px;}
.y6c1_c00000{bottom:294.358500px;}
.y508_c00000{bottom:294.493500px;}
.y1800_c00000{bottom:294.591000px;}
.y1143_c00000{bottom:294.834000px;}
.y9d6_c00000{bottom:294.885000px;}
.y13f2_c00000{bottom:295.030500px;}
.y13a5_c00000{bottom:295.104000px;}
.y933_c00000{bottom:295.173000px;}
.ybc8_c00000{bottom:295.248000px;}
.y76e_c00000{bottom:295.612500px;}
.yc7f_c00000{bottom:295.753500px;}
.y2bd_c00000{bottom:295.767000px;}
.y620_c00000{bottom:295.869000px;}
.yf86_c00000{bottom:296.002500px;}
.y41b_c00000{bottom:296.004000px;}
.y171d_c00000{bottom:296.011500px;}
.ya2f_c00000{bottom:296.035500px;}
.y61d_c00000{bottom:296.125500px;}
.y136f_c00000{bottom:296.326500px;}
.y17be_c00000{bottom:296.442000px;}
.y17f3_c00000{bottom:296.494500px;}
.y3ad_c00000{bottom:296.595000px;}
.y2dc_c00000{bottom:296.874000px;}
.y4ec_c00000{bottom:297.022500px;}
.y122e_c00000{bottom:297.058500px;}
.y8aa_c00000{bottom:297.079500px;}
.y12f4_c00000{bottom:297.240000px;}
.y754_c00000{bottom:297.247500px;}
.y9ed_c00000{bottom:297.298500px;}
.y5a6_c00000{bottom:297.348000px;}
.y6ce_c00000{bottom:297.364500px;}
.ydf4_c00000{bottom:297.465000px;}
.y298_c00000{bottom:297.498000px;}
.y7fe_c00000{bottom:297.727500px;}
.yb1_c00000{bottom:297.738000px;}
.y162c_c00000{bottom:297.904500px;}
.y1520_c00000{bottom:297.937500px;}
.y5fd_c00000{bottom:298.221000px;}
.y1864_c00000{bottom:298.327500px;}
.y794_c00000{bottom:298.335000px;}
.y1902_c00000{bottom:298.344000px;}
.yeec_c00000{bottom:298.510500px;}
.y679_c00000{bottom:298.704000px;}
.y357_c00000{bottom:298.714500px;}
.y1927_c00000{bottom:298.833000px;}
.y23a_c00000{bottom:298.980000px;}
.y164c_c00000{bottom:299.208000px;}
.y1166_c00000{bottom:299.329500px;}
.y9b1_c00000{bottom:299.343000px;}
.y223_c00000{bottom:299.398500px;}
.y1619_c00000{bottom:299.490000px;}
.y566_c00000{bottom:299.506500px;}
.y8cb_c00000{bottom:300.070500px;}
.y1102_c00000{bottom:300.228000px;}
.ya60_c00000{bottom:300.328500px;}
.yc51_c00000{bottom:300.568500px;}
.y13b5_c00000{bottom:300.685500px;}
.y1467_c00000{bottom:300.709500px;}
.y13ff_c00000{bottom:300.826500px;}
.y1029_c00000{bottom:301.033500px;}
.y169c_c00000{bottom:301.099500px;}
.ya75_c00000{bottom:301.315500px;}
.y11fc_c00000{bottom:301.324500px;}
.y17bd_c00000{bottom:301.866000px;}
.y1133_c00000{bottom:302.008500px;}
.yafa_c00000{bottom:302.188500px;}
.ydad_c00000{bottom:302.298000px;}
.y287_c00000{bottom:302.602500px;}
.y1607_c00000{bottom:303.120000px;}
.y107d_c00000{bottom:303.126000px;}
.y1656_c00000{bottom:303.133500px;}
.yefa_c00000{bottom:303.208500px;}
.y943_c00000{bottom:303.217500px;}
.y2f7_c00000{bottom:303.316500px;}
.y71c_c00000{bottom:303.333000px;}
.y173f_c00000{bottom:303.468000px;}
.y1253_c00000{bottom:303.474000px;}
.y11f2_c00000{bottom:303.597000px;}
.y1b3_c00000{bottom:303.633000px;}
.ye66_c00000{bottom:303.862500px;}
.y1856_c00000{bottom:304.071000px;}
.y11a7_c00000{bottom:304.119000px;}
.y7ad_c00000{bottom:304.171500px;}
.y893_c00000{bottom:304.297500px;}
.y21_c00000{bottom:304.392240px;}
.y1945_c00000{bottom:304.509000px;}
.yc8f_c00000{bottom:304.536000px;}
.y6f2_c00000{bottom:304.828500px;}
.y134e_c00000{bottom:304.852500px;}
.yb3e_c00000{bottom:304.953000px;}
.y1e7_c00000{bottom:305.068500px;}
.y173a_c00000{bottom:305.109000px;}
.yacf_c00000{bottom:305.205000px;}
.y1706_c00000{bottom:305.383500px;}
.y142d_c00000{bottom:305.533500px;}
.y1673_c00000{bottom:305.641500px;}
.yda2_c00000{bottom:305.670000px;}
.yea7_c00000{bottom:305.676000px;}
.y7c6_c00000{bottom:305.799000px;}
.y14cd_c00000{bottom:305.842500px;}
.yc6f_c00000{bottom:306.066000px;}
.y544_c00000{bottom:306.070500px;}
.ybfa_c00000{bottom:306.103500px;}
.y13b4_c00000{bottom:306.108000px;}
.y1822_c00000{bottom:306.150000px;}
.yd80_c00000{bottom:306.193500px;}
.y49e_c00000{bottom:306.213000px;}
.yba7_c00000{bottom:306.297000px;}
.ya16_c00000{bottom:306.306000px;}
.y250_c00000{bottom:306.322500px;}
.y1a0_c00000{bottom:306.489000px;}
.ybdb_c00000{bottom:306.495000px;}
.y175d_c00000{bottom:306.510000px;}
.y1489_c00000{bottom:306.676500px;}
.y146_c00000{bottom:306.694500px;}
.y45_c00000{bottom:306.943500px;}
.y507_c00000{bottom:307.003500px;}
.ya48_c00000{bottom:307.050000px;}
.y8f_c00000{bottom:307.069500px;}
.ya07_c00000{bottom:307.135500px;}
.yc40_c00000{bottom:307.147500px;}
.y17a4_c00000{bottom:307.246500px;}
.yadd_c00000{bottom:307.459500px;}
.y3d4_c00000{bottom:307.576500px;}
.y5db_c00000{bottom:308.032500px;}
.yc20_c00000{bottom:308.173500px;}
.y17b4_c00000{bottom:308.290500px;}
.y14f5_c00000{bottom:308.377500px;}
.y153b_c00000{bottom:308.448000px;}
.y12e_c00000{bottom:308.550000px;}
.y16e5_c00000{bottom:308.635500px;}
.y376_c00000{bottom:308.709000px;}
.y116b_c00000{bottom:308.788500px;}
.y180_c00000{bottom:308.914500px;}
.y1b2_c00000{bottom:309.055500px;}
.y1186_c00000{bottom:309.268500px;}
.y7ac_c00000{bottom:309.595500px;}
.yfa5_c00000{bottom:309.639000px;}
.yaa0_c00000{bottom:309.642000px;}
.yfc2_c00000{bottom:309.693000px;}
.ydf3_c00000{bottom:309.975000px;}
.y1f2_c00000{bottom:310.008000px;}
.y7e6_c00000{bottom:310.237500px;}
.y479_c00000{bottom:310.282500px;}
.y10af_c00000{bottom:310.290000px;}
.y8d8_c00000{bottom:310.299000px;}
.y4b3_c00000{bottom:310.681500px;}
.y5fc_c00000{bottom:310.731000px;}
.y332_c00000{bottom:310.780500px;}
.y40f_c00000{bottom:310.797000px;}
.y1672_c00000{bottom:311.064000px;}
.y100c_c00000{bottom:311.278500px;}
.yd0a_c00000{bottom:311.370000px;}
.ya8c_c00000{bottom:311.776500px;}
.y1165_c00000{bottom:311.839500px;}
.yf5a_c00000{bottom:311.884500px;}
.y163_c00000{bottom:312.283500px;}
.y592_c00000{bottom:312.291000px;}
.y13c8_c00000{bottom:312.415500px;}
.y554_c00000{bottom:312.532500px;}
.y190b_c00000{bottom:312.673500px;}
.yfe1_c00000{bottom:312.688500px;}
.yf25_c00000{bottom:312.693000px;}
.y1815_c00000{bottom:312.703500px;}
.y1571_c00000{bottom:312.717000px;}
.y932_c00000{bottom:313.105500px;}
.yef_c00000{bottom:313.116000px;}
.y65a_c00000{bottom:313.638000px;}
.ydcc_c00000{bottom:313.653000px;}
.yf85_c00000{bottom:313.935000px;}
.y1057_c00000{bottom:314.026500px;}
.y208_c00000{bottom:314.058000px;}
.y15a7_c00000{bottom:314.293500px;}
.y5be_c00000{bottom:314.299500px;}
.yb80_c00000{bottom:314.481000px;}
.y456_c00000{bottom:314.542500px;}
.y1845_c00000{bottom:314.874000px;}
.yb2a_c00000{bottom:314.919000px;}
.y13aa_c00000{bottom:314.923500px;}
.y18d2_c00000{bottom:315.027000px;}
.yd05_c00000{bottom:315.132000px;}
.y529_c00000{bottom:315.154500px;}
.ye3d_c00000{bottom:315.180000px;}
.y101b_c00000{bottom:315.181500px;}
.yec4_c00000{bottom:315.222000px;}
.y68d_c00000{bottom:315.255000px;}
.y310_c00000{bottom:315.264000px;}
.y705_c00000{bottom:315.280500px;}
.yd3_c00000{bottom:315.297000px;}
.yaaf_c00000{bottom:315.315000px;}
.y1008_c00000{bottom:315.396000px;}
.y1c7_c00000{bottom:315.432000px;}
.y12b4_c00000{bottom:315.496500px;}
.y58b_c00000{bottom:315.567000px;}
.yde8_c00000{bottom:315.597000px;}
.y7e5_c00000{bottom:315.660000px;}
.y91c_c00000{bottom:315.661500px;}
.y817_c00000{bottom:315.753000px;}
.y162b_c00000{bottom:315.837000px;}
.y151f_c00000{bottom:315.870000px;}
.y15d1_c00000{bottom:316.153500px;}
.y10a_c00000{bottom:316.401000px;}
.y141a_c00000{bottom:316.452000px;}
.yd34_c00000{bottom:316.509000px;}
.y12d4_c00000{bottom:316.642500px;}
.y356_c00000{bottom:316.647000px;}
.yd09_c00000{bottom:316.792500px;}
.y164b_c00000{bottom:317.140500px;}
.y10eb_c00000{bottom:317.175000px;}
.y990_c00000{bottom:317.238000px;}
.y222_c00000{bottom:317.331000px;}
.y1618_c00000{bottom:317.422500px;}
.y565_c00000{bottom:317.439000px;}
.y734_c00000{bottom:317.763000px;}
.yf75_c00000{bottom:318.016500px;}
.y6a2_c00000{bottom:318.261000px;}
.y14b2_c00000{bottom:318.402000px;}
.y144f_c00000{bottom:318.775500px;}
.yd5f_c00000{bottom:319.029000px;}
.y149c_c00000{bottom:319.347000px;}
.y128b_c00000{bottom:319.498500px;}
.y108d_c00000{bottom:319.755000px;}
.y400_c00000{bottom:319.870500px;}
.y4f7_c00000{bottom:319.996500px;}
.ye29_c00000{bottom:320.052000px;}
.y1048_c00000{bottom:320.160000px;}
.y286_c00000{bottom:320.535000px;}
.yd47_c00000{bottom:320.680500px;}
.y15d0_c00000{bottom:320.686500px;}
.y15e9_c00000{bottom:320.709000px;}
.y432_c00000{bottom:320.751000px;}
.yb9c_c00000{bottom:320.884500px;}
.y6b_c00000{bottom:321.225000px;}
.y6c0_c00000{bottom:321.249000px;}
.y151e_c00000{bottom:321.292500px;}
.y17ff_c00000{bottom:321.481500px;}
.y1243_c00000{bottom:321.642000px;}
.y18c2_c00000{bottom:321.694500px;}
.y1142_c00000{bottom:321.724500px;}
.y9d5_c00000{bottom:321.775500px;}
.y13f1_c00000{bottom:321.921000px;}
.y13a4_c00000{bottom:321.996000px;}
.y355_c00000{bottom:322.069500px;}
.y7fd_c00000{bottom:322.134000px;}
.ybc7_c00000{bottom:322.138500px;}
.y76d_c00000{bottom:322.503000px;}
.yc7e_c00000{bottom:322.644000px;}
.y2bc_c00000{bottom:322.657500px;}
.y3f1_c00000{bottom:322.761000px;}
.y136e_c00000{bottom:323.217000px;}
.y17f2_c00000{bottom:323.385000px;}
.y3ac_c00000{bottom:323.485500px;}
.y4eb_c00000{bottom:323.914500px;}
.y122d_c00000{bottom:323.949000px;}
.y8a9_c00000{bottom:323.970000px;}
.y12f3_c00000{bottom:324.132000px;}
.y1872_c00000{bottom:324.183000px;}
.y20_c00000{bottom:324.187740px;}
.y5a5_c00000{bottom:324.238500px;}
.y6cd_c00000{bottom:324.255000px;}
.y1028_c00000{bottom:324.390000px;}
.y19f_c00000{bottom:324.421500px;}
.ycb_c00000{bottom:324.628500px;}
.ya06_c00000{bottom:325.068000px;}
.y1863_c00000{bottom:325.218000px;}
.y793_c00000{bottom:325.227000px;}
.y1901_c00000{bottom:325.234500px;}
.yeeb_c00000{bottom:325.401000px;}
.y16bd_c00000{bottom:325.671000px;}
.y1926_c00000{bottom:325.725000px;}
.y239_c00000{bottom:325.872000px;}
.y153a_c00000{bottom:326.380500px;}
.y207_c00000{bottom:326.568000px;}
.y11c7_c00000{bottom:326.670000px;}
.y15a6_c00000{bottom:326.803500px;}
.y17f_c00000{bottom:326.847000px;}
.y8ca_c00000{bottom:326.961000px;}
.y1101_c00000{bottom:327.118500px;}
.ya5f_c00000{bottom:327.219000px;}
.y13d5_c00000{bottom:327.459000px;}
.y1466_c00000{bottom:327.601500px;}
.y13fe_c00000{bottom:327.717000px;}
.ydf2_c00000{bottom:327.907500px;}
.y169b_c00000{bottom:327.991500px;}
.ya74_c00000{bottom:328.207500px;}
.ya2e_c00000{bottom:328.215000px;}
.y5fb_c00000{bottom:328.663500px;}
.y1705_c00000{bottom:328.740000px;}
.y1132_c00000{bottom:328.899000px;}
.yce6_c00000{bottom:329.188500px;}
.y861_c00000{bottom:329.709000px;}
.y1164_c00000{bottom:329.772000px;}
.y1606_c00000{bottom:330.010500px;}
.y107c_c00000{bottom:330.018000px;}
.y1655_c00000{bottom:330.024000px;}
.yef9_c00000{bottom:330.100500px;}
.y942_c00000{bottom:330.108000px;}
.y2f6_c00000{bottom:330.207000px;}
.y809_c00000{bottom:330.223500px;}
.y71b_c00000{bottom:330.225000px;}
.ycc6_c00000{bottom:330.241500px;}
.y506_c00000{bottom:330.358500px;}
.y11f1_c00000{bottom:330.487500px;}
.ya05_c00000{bottom:330.492000px;}
.ye65_c00000{bottom:330.753000px;}
.y1855_c00000{bottom:330.963000px;}
.y11a6_c00000{bottom:331.009500px;}
.y892_c00000{bottom:331.188000px;}
.y1944_c00000{bottom:331.399500px;}
.yc8e_c00000{bottom:331.426500px;}
.y6f1_c00000{bottom:331.719000px;}
.y134d_c00000{bottom:331.743000px;}
.yb3d_c00000{bottom:331.843500px;}
.yf84_c00000{bottom:331.867500px;}
.y1e6_c00000{bottom:331.959000px;}
.y61c_c00000{bottom:331.990500px;}
.y1739_c00000{bottom:331.999500px;}
.yace_c00000{bottom:332.095500px;}
.y142c_c00000{bottom:332.424000px;}
.yda1_c00000{bottom:332.562000px;}
.yea6_c00000{bottom:332.568000px;}
.y7c5_c00000{bottom:332.689500px;}
.y1781_c00000{bottom:332.703000px;}
.y14cc_c00000{bottom:332.734500px;}
.yc6e_c00000{bottom:332.956500px;}
.y543_c00000{bottom:332.961000px;}
.ybf9_c00000{bottom:332.994000px;}
.y1821_c00000{bottom:333.040500px;}
.yd7f_c00000{bottom:333.085500px;}
.y49d_c00000{bottom:333.103500px;}
.ya15_c00000{bottom:333.196500px;}
.y24f_c00000{bottom:333.213000px;}
.ybda_c00000{bottom:333.385500px;}
.y175c_c00000{bottom:333.400500px;}
.y1488_c00000{bottom:333.567000px;}
.y145_c00000{bottom:333.585000px;}
.y44_c00000{bottom:333.835500px;}
.ya47_c00000{bottom:333.940500px;}
.y8e_c00000{bottom:333.960000px;}
.yc3f_c00000{bottom:334.038000px;}
.y17a3_c00000{bottom:334.137000px;}
.yadc_c00000{bottom:334.350000px;}
.y3d3_c00000{bottom:334.467000px;}
.ye6c_c00000{bottom:334.923000px;}
.yc1f_c00000{bottom:335.064000px;}
.y164a_c00000{bottom:335.073000px;}
.y1163_c00000{bottom:335.196000px;}
.y221_c00000{bottom:335.263500px;}
.y14f4_c00000{bottom:335.268000px;}
.y1617_c00000{bottom:335.355000px;}
.y564_c00000{bottom:335.371500px;}
.y12d_c00000{bottom:335.440500px;}
.y116a_c00000{bottom:335.679000px;}
.y1185_c00000{bottom:336.159000px;}
.yfa4_c00000{bottom:336.529500px;}
.ya9f_c00000{bottom:336.532500px;}
.y4d1_c00000{bottom:336.547500px;}
.yfc1_c00000{bottom:336.583500px;}
.yaf9_c00000{bottom:336.799500px;}
.y478_c00000{bottom:337.173000px;}
.y10ae_c00000{bottom:337.182000px;}
.y8d7_c00000{bottom:337.189500px;}
.y1b1_c00000{bottom:337.414500px;}
.y1325_c00000{bottom:337.572000px;}
.y331_c00000{bottom:337.671000px;}
.y40e_c00000{bottom:337.687500px;}
.y2db_c00000{bottom:338.110500px;}
.y285_c00000{bottom:338.467500px;}
.y17dd_c00000{bottom:338.505000px;}
.ya8b_c00000{bottom:338.667000px;}
.yf59_c00000{bottom:338.775000px;}
.y1117_c00000{bottom:339.127500px;}
.y162_c00000{bottom:339.174000px;}
.y6d8_c00000{bottom:339.183000px;}
.y162a_c00000{bottom:339.192000px;}
.y13c7_c00000{bottom:339.307500px;}
.y63d_c00000{bottom:339.318000px;}
.y553_c00000{bottom:339.423000px;}
.yfe0_c00000{bottom:339.579000px;}
.yf24_c00000{bottom:339.585000px;}
.y1814_c00000{bottom:339.594000px;}
.y1570_c00000{bottom:339.609000px;}
.y12ff_c00000{bottom:339.862500px;}
.yee_c00000{bottom:340.008000px;}
.y659_c00000{bottom:340.528500px;}
.ydcb_c00000{bottom:340.543500px;}
.y1056_c00000{bottom:340.917000px;}
.y5bd_c00000{bottom:341.190000px;}
.y1704_c00000{bottom:341.250000px;}
.yb7f_c00000{bottom:341.373000px;}
.y455_c00000{bottom:341.433000px;}
.y753_c00000{bottom:341.445000px;}
.y9ec_c00000{bottom:341.632500px;}
.y1844_c00000{bottom:341.766000px;}
.yb29_c00000{bottom:341.809500px;}
.y13a9_c00000{bottom:341.814000px;}
.y18d1_c00000{bottom:341.919000px;}
.yd04_c00000{bottom:342.022500px;}
.y528_c00000{bottom:342.046500px;}
.ye3c_c00000{bottom:342.072000px;}
.yec3_c00000{bottom:342.114000px;}
.y68c_c00000{bottom:342.145500px;}
.y30f_c00000{bottom:342.154500px;}
.y704_c00000{bottom:342.171000px;}
.yb0_c00000{bottom:342.187500px;}
.yaae_c00000{bottom:342.205500px;}
.y1007_c00000{bottom:342.286500px;}
.y19e_c00000{bottom:342.354000px;}
.y12b3_c00000{bottom:342.387000px;}
.y58a_c00000{bottom:342.457500px;}
.y7e4_c00000{bottom:342.486000px;}
.yde7_c00000{bottom:342.489000px;}
.y816_c00000{bottom:342.645000px;}
.y15cf_c00000{bottom:343.045500px;}
.y678_c00000{bottom:343.188000px;}
.y109_c00000{bottom:343.293000px;}
.y1419_c00000{bottom:343.342500px;}
.y12d3_c00000{bottom:343.533000px;}
.y10ea_c00000{bottom:344.065500px;}
.y98f_c00000{bottom:344.128500px;}
.y1f_c00000{bottom:344.162520px;}
.y61b_c00000{bottom:344.500500px;}
.y733_c00000{bottom:344.653500px;}
.y15a5_c00000{bottom:344.736000px;}
.y17e_c00000{bottom:344.781000px;}
.yf74_c00000{bottom:344.907000px;}
.y4de_c00000{bottom:345.151500px;}
.y14b1_c00000{bottom:345.292500px;}
.ydf1_c00000{bottom:345.841500px;}
.yd5e_c00000{bottom:345.919500px;}
.y149b_c00000{bottom:346.237500px;}
.y5fa_c00000{bottom:346.596000px;}
.y108c_c00000{bottom:346.645500px;}
.y3ff_c00000{bottom:346.761000px;}
.y4f6_c00000{bottom:346.887000px;}
.y1047_c00000{bottom:347.052000px;}
.yd46_c00000{bottom:347.571000px;}
.y15e8_c00000{bottom:347.601000px;}
.ye07_c00000{bottom:347.641500px;}
.y431_c00000{bottom:347.643000px;}
.y375_c00000{bottom:347.673000px;}
.yb9b_c00000{bottom:347.775000px;}
.y6a_c00000{bottom:348.115500px;}
.y6bf_c00000{bottom:348.141000px;}
.y17fe_c00000{bottom:348.373500px;}
.y18c1_c00000{bottom:348.585000px;}
.y1141_c00000{bottom:348.616500px;}
.y9d4_c00000{bottom:348.667500px;}
.y13f0_c00000{bottom:348.813000px;}
.y13a3_c00000{bottom:348.886500px;}
.y7fc_c00000{bottom:349.024500px;}
.ybc6_c00000{bottom:349.030500px;}
.y1162_c00000{bottom:349.308000px;}
.y76c_c00000{bottom:349.393500px;}
.yc7d_c00000{bottom:349.536000px;}
.y2bb_c00000{bottom:349.549500px;}
.y3f0_c00000{bottom:349.651500px;}
.y1539_c00000{bottom:349.735500px;}
.yf83_c00000{bottom:349.801500px;}
.y206_c00000{bottom:349.924500px;}
.y136d_c00000{bottom:350.107500px;}
.y15a4_c00000{bottom:350.160000px;}
.y354_c00000{bottom:350.272500px;}
.y17f1_c00000{bottom:350.275500px;}
.y3ab_c00000{bottom:350.376000px;}
.y4ea_c00000{bottom:350.805000px;}
.y122c_c00000{bottom:350.841000px;}
.y8a8_c00000{bottom:350.860500px;}
.y1871_c00000{bottom:351.075000px;}
.y5a4_c00000{bottom:351.129000px;}
.y6cc_c00000{bottom:351.145500px;}
.yca_c00000{bottom:351.519000px;}
.y1629_c00000{bottom:351.702000px;}
.y1862_c00000{bottom:352.108500px;}
.y792_c00000{bottom:352.117500px;}
.yeea_c00000{bottom:352.291500px;}
.y16bc_c00000{bottom:352.561500px;}
.yba6_c00000{bottom:352.615500px;}
.y1649_c00000{bottom:353.005500px;}
.y1616_c00000{bottom:353.287500px;}
.y11c6_c00000{bottom:353.562000px;}
.y8c9_c00000{bottom:353.853000px;}
.y1100_c00000{bottom:354.009000px;}
.ya5e_c00000{bottom:354.109500px;}
.y5da_c00000{bottom:354.351000px;}
.y1465_c00000{bottom:354.492000px;}
.ye79_c00000{bottom:354.607500px;}
.y169a_c00000{bottom:354.882000px;}
.ya73_c00000{bottom:355.098000px;}
.ya2d_c00000{bottom:355.105500px;}
.ye28_c00000{bottom:355.113000px;}
.y171c_c00000{bottom:355.363500px;}
.y9b0_c00000{bottom:355.410000px;}
.y1131_c00000{bottom:355.789500px;}
.yce5_c00000{bottom:356.079000px;}
.y860_c00000{bottom:356.601000px;}
.y1376_c00000{bottom:356.857500px;}
.y1605_c00000{bottom:356.901000px;}
.y107b_c00000{bottom:356.908500px;}
.y1654_c00000{bottom:356.914500px;}
.yef8_c00000{bottom:356.991000px;}
.y4b2_c00000{bottom:356.998500px;}
.y2f5_c00000{bottom:357.099000px;}
.y505_c00000{bottom:357.115500px;}
.ycc5_c00000{bottom:357.132000px;}
.y11f0_c00000{bottom:357.378000px;}
.ye64_c00000{bottom:357.643500px;}
.y16e4_c00000{bottom:357.708000px;}
.y1854_c00000{bottom:357.853500px;}
.y11a5_c00000{bottom:357.901500px;}
.y1943_c00000{bottom:358.291500px;}
.yc8d_c00000{bottom:358.317000px;}
.y6f0_c00000{bottom:358.609500px;}
.y220_c00000{bottom:358.620000px;}
.y134c_c00000{bottom:358.633500px;}
.y563_c00000{bottom:358.728000px;}
.yb3c_c00000{bottom:358.734000px;}
.y1e5_c00000{bottom:358.849500px;}
.y832_c00000{bottom:358.851000px;}
.y1738_c00000{bottom:358.890000px;}
.yacd_c00000{bottom:358.987500px;}
.y1703_c00000{bottom:359.182500px;}
.y142b_c00000{bottom:359.314500px;}
.yda0_c00000{bottom:359.452500px;}
.yea5_c00000{bottom:359.458500px;}
.y7c4_c00000{bottom:359.581500px;}
.y1780_c00000{bottom:359.593500px;}
.yc6d_c00000{bottom:359.847000px;}
.y542_c00000{bottom:359.851500px;}
.ybf8_c00000{bottom:359.886000px;}
.y1820_c00000{bottom:359.931000px;}
.yd7e_c00000{bottom:359.976000px;}
.y49c_c00000{bottom:359.994000px;}
.ya14_c00000{bottom:360.087000px;}
.y24e_c00000{bottom:360.103500px;}
.y175b_c00000{bottom:360.291000px;}
.y1487_c00000{bottom:360.457500px;}
.y144_c00000{bottom:360.477000px;}
.y43_c00000{bottom:360.726000px;}
.ya46_c00000{bottom:360.831000px;}
.y8d_c00000{bottom:360.852000px;}
.yc3e_c00000{bottom:360.928500px;}
.y17a2_c00000{bottom:361.027500px;}
.yadb_c00000{bottom:361.242000px;}
.y3d2_c00000{bottom:361.357500px;}
.y1383_c00000{bottom:361.813500px;}
.y192d_c00000{bottom:361.815000px;}
.y284_c00000{bottom:361.824000px;}
.yc1e_c00000{bottom:361.956000px;}
.y14f3_c00000{bottom:362.158500px;}
.y1538_c00000{bottom:362.245500px;}
.y12c_c00000{bottom:362.331000px;}
.y205_c00000{bottom:362.433000px;}
.y1214_c00000{bottom:362.569500px;}
.y12f2_c00000{bottom:362.695500px;}
.y17d_c00000{bottom:362.713500px;}
.y1252_c00000{bottom:362.827500px;}
.y1184_c00000{bottom:363.049500px;}
.y4d0_c00000{bottom:363.438000px;}
.yfc0_c00000{bottom:363.474000px;}
.ydf0_c00000{bottom:363.774000px;}
.y477_c00000{bottom:364.063500px;}
.y10ad_c00000{bottom:364.072500px;}
.y8d6_c00000{bottom:364.080000px;}
.y1b0_c00000{bottom:364.305000px;}
.y1324_c00000{bottom:364.462500px;}
.y5f9_c00000{bottom:364.528500px;}
.y330_c00000{bottom:364.561500px;}
.y427_c00000{bottom:364.578000px;}
.y40d_c00000{bottom:364.579500px;}
.y941_c00000{bottom:364.720500px;}
.y2da_c00000{bottom:365.001000px;}
.y17dc_c00000{bottom:365.397000px;}
.yf58_c00000{bottom:365.667000px;}
.y161_c00000{bottom:366.064500px;}
.ya03_c00000{bottom:366.073500px;}
.y13c6_c00000{bottom:366.198000px;}
.y63c_c00000{bottom:366.210000px;}
.y552_c00000{bottom:366.313500px;}
.yfdf_c00000{bottom:366.469500px;}
.yf23_c00000{bottom:366.475500px;}
.y1813_c00000{bottom:366.484500px;}
.y156f_c00000{bottom:366.499500px;}
.y12fe_c00000{bottom:366.753000px;}
.yed_c00000{bottom:366.898500px;}
.y1e_c00000{bottom:367.200000px;}
.y1161_c00000{bottom:367.240500px;}
.y658_c00000{bottom:367.419000px;}
.y100b_c00000{bottom:367.567500px;}
.yf82_c00000{bottom:367.734000px;}
.y1055_c00000{bottom:367.809000px;}
.y1777_c00000{bottom:367.857000px;}
.y5bc_c00000{bottom:368.082000px;}
.yb7e_c00000{bottom:368.263500px;}
.y454_c00000{bottom:368.323500px;}
.y752_c00000{bottom:368.335500px;}
.y9eb_c00000{bottom:368.523000px;}
.y1843_c00000{bottom:368.656500px;}
.yb28_c00000{bottom:368.700000px;}
.y18d0_c00000{bottom:368.809500px;}
.yd03_c00000{bottom:368.913000px;}
.y527_c00000{bottom:368.937000px;}
.ye3b_c00000{bottom:368.962500px;}
.yec2_c00000{bottom:369.004500px;}
.y68b_c00000{bottom:369.037500px;}
.y30e_c00000{bottom:369.045000px;}
.y26c_c00000{bottom:369.061500px;}
.yaf_c00000{bottom:369.078000px;}
.yaad_c00000{bottom:369.097500px;}
.y1006_c00000{bottom:369.177000px;}
.y589_c00000{bottom:369.348000px;}
.y7e3_c00000{bottom:369.378000px;}
.yde6_c00000{bottom:369.379500px;}
.y815_c00000{bottom:369.535500px;}
.y15ce_c00000{bottom:369.936000px;}
.y238_c00000{bottom:370.065000px;}
.y677_c00000{bottom:370.080000px;}
.y108_c00000{bottom:370.183500px;}
.y1418_c00000{bottom:370.233000px;}
.y12d2_c00000{bottom:370.423500px;}
.y1648_c00000{bottom:370.938000px;}
.y10e9_c00000{bottom:370.956000px;}
.y98e_c00000{bottom:371.020500px;}
.y21f_c00000{bottom:371.130000px;}
.ya9e_c00000{bottom:371.145000px;}
.y1615_c00000{bottom:371.220000px;}
.y562_c00000{bottom:371.236500px;}
.y1900_c00000{bottom:371.553000px;}
.yf73_c00000{bottom:371.797500px;}
.y190a_c00000{bottom:372.025500px;}
.y4dd_c00000{bottom:372.042000px;}
.y14b0_c00000{bottom:372.184500px;}
.yd5d_c00000{bottom:372.810000px;}
.y149a_c00000{bottom:373.128000px;}
.ybd9_c00000{bottom:373.135500px;}
.y891_c00000{bottom:373.252500px;}
.ya8a_c00000{bottom:373.279500px;}
.y3fe_c00000{bottom:373.651500px;}
.y4f5_c00000{bottom:373.777500px;}
.y1046_c00000{bottom:373.942500px;}
.yd45_c00000{bottom:374.461500px;}
.y15e7_c00000{bottom:374.491500px;}
.y19d_c00000{bottom:374.533500px;}
.y374_c00000{bottom:374.565000px;}
.yb9a_c00000{bottom:374.665500px;}
.y144e_c00000{bottom:374.931000px;}
.y69_c00000{bottom:375.006000px;}
.y6be_c00000{bottom:375.031500px;}
.y1628_c00000{bottom:375.058500px;}
.y17fd_c00000{bottom:375.264000px;}
.y18c0_c00000{bottom:375.477000px;}
.y1140_c00000{bottom:375.507000px;}
.y9d3_c00000{bottom:375.558000px;}
.y13ef_c00000{bottom:375.703500px;}
.y13a2_c00000{bottom:375.777000px;}
.y31_c00000{bottom:375.898500px;}
.y7fb_c00000{bottom:375.916500px;}
.ybc5_c00000{bottom:375.921000px;}
.y76b_c00000{bottom:376.285500px;}
.yc7c_c00000{bottom:376.426500px;}
.y3ef_c00000{bottom:376.542000px;}
.y136c_c00000{bottom:376.999500px;}
.y1702_c00000{bottom:377.115000px;}
.y353_c00000{bottom:377.164500px;}
.y17f0_c00000{bottom:377.167500px;}
.y3aa_c00000{bottom:377.266500px;}
.y14cb_c00000{bottom:377.316000px;}
.y1242_c00000{bottom:377.535000px;}
.y4e9_c00000{bottom:377.695500px;}
.y122b_c00000{bottom:377.731500px;}
.y1870_c00000{bottom:377.965500px;}
.y5a3_c00000{bottom:378.019500px;}
.y6cb_c00000{bottom:378.036000px;}
.yc9_c00000{bottom:378.411000px;}
.y1861_c00000{bottom:378.999000px;}
.y791_c00000{bottom:379.008000px;}
.yee9_c00000{bottom:379.183500px;}
.y16bb_c00000{bottom:379.452000px;}
.yba5_c00000{bottom:379.506000px;}
.y1537_c00000{bottom:380.178000px;}
.y204_c00000{bottom:380.367000px;}
.y17c_c00000{bottom:380.646000px;}
.y8c8_c00000{bottom:380.743500px;}
.y10ff_c00000{bottom:380.901000px;}
.y13d4_c00000{bottom:381.241500px;}
.y13fd_c00000{bottom:381.498000px;}
.ydef_c00000{bottom:381.706500px;}
.y1699_c00000{bottom:381.772500px;}
.ya72_c00000{bottom:381.988500px;}
.ya2c_c00000{bottom:381.997500px;}
.ye27_c00000{bottom:382.005000px;}
.y9af_c00000{bottom:382.300500px;}
.y5f8_c00000{bottom:382.462500px;}
.yfa3_c00000{bottom:382.512000px;}
.y1701_c00000{bottom:382.537500px;}
.y9b7_c00000{bottom:382.569000px;}
.yce4_c00000{bottom:382.971000px;}
.y85f_c00000{bottom:383.491500px;}
.y128a_c00000{bottom:383.748000px;}
.y1604_c00000{bottom:383.793000px;}
.y107a_c00000{bottom:383.799000px;}
.y1653_c00000{bottom:383.805000px;}
.yef7_c00000{bottom:383.881500px;}
.y4b1_c00000{bottom:383.889000px;}
.yc48_c00000{bottom:383.890500px;}
.y2f4_c00000{bottom:383.989500px;}
.y504_c00000{bottom:384.006000px;}
.ycc4_c00000{bottom:384.022500px;}
.y11ef_c00000{bottom:384.268500px;}
.ye63_c00000{bottom:384.534000px;}
.y16e3_c00000{bottom:384.598500px;}
.y11a4_c00000{bottom:384.792000px;}
.y1116_c00000{bottom:384.966000px;}
.y1160_c00000{bottom:385.173000px;}
.y1942_c00000{bottom:385.182000px;}
.y6ef_c00000{bottom:385.500000px;}
.y134b_c00000{bottom:385.525500px;}
.yb3b_c00000{bottom:385.624500px;}
.yf81_c00000{bottom:385.666500px;}
.y1e4_c00000{bottom:385.741500px;}
.y1737_c00000{bottom:385.782000px;}
.yacc_c00000{bottom:385.878000px;}
.ydca_c00000{bottom:385.909500px;}
.yd9f_c00000{bottom:386.343000px;}
.yea4_c00000{bottom:386.349000px;}
.y177f_c00000{bottom:386.484000px;}
.yc6c_c00000{bottom:386.739000px;}
.y541_c00000{bottom:386.743500px;}
.ybf7_c00000{bottom:386.776500px;}
.y181f_c00000{bottom:386.821500px;}
.yd7d_c00000{bottom:386.866500px;}
.y49b_c00000{bottom:386.886000px;}
.y24d_c00000{bottom:386.994000px;}
.y1486_c00000{bottom:387.349500px;}
.y143_c00000{bottom:387.367500px;}
.y1627_c00000{bottom:387.567000px;}
.ya45_c00000{bottom:387.723000px;}
.y8c_c00000{bottom:387.742500px;}
.yc3d_c00000{bottom:387.819000px;}
.y5f7_c00000{bottom:387.885000px;}
.y17a1_c00000{bottom:387.918000px;}
.yada_c00000{bottom:388.132500px;}
.y3d1_c00000{bottom:388.248000px;}
.y283_c00000{bottom:388.579500px;}
.y12b2_c00000{bottom:388.705500px;}
.yc1d_c00000{bottom:388.846500px;}
.y1647_c00000{bottom:388.870500px;}
.y21e_c00000{bottom:389.062500px;}
.y1464_c00000{bottom:389.103000px;}
.y16e2_c00000{bottom:389.131500px;}
.y1614_c00000{bottom:389.154000px;}
.y561_c00000{bottom:389.170500px;}
.y12b_c00000{bottom:389.221500px;}
.y1213_c00000{bottom:389.460000px;}
.y12f1_c00000{bottom:389.586000px;}
.y1183_c00000{bottom:389.941500px;}
.y4cf_c00000{bottom:390.328500px;}
.yfbf_c00000{bottom:390.366000px;}
.y476_c00000{bottom:390.955500px;}
.y10ac_c00000{bottom:390.963000px;}
.y732_c00000{bottom:390.972000px;}
.y8a7_c00000{bottom:391.203000px;}
.y1323_c00000{bottom:391.353000px;}
.y32f_c00000{bottom:391.453500px;}
.y40c_c00000{bottom:391.470000px;}
.y1853_c00000{bottom:392.464500px;}
.yf57_c00000{bottom:392.557500px;}
.y160_c00000{bottom:392.956500px;}
.yd28_c00000{bottom:392.964000px;}
.y13c5_c00000{bottom:393.088500px;}
.yec8_c00000{bottom:393.204000px;}
.y551_c00000{bottom:393.205500px;}
.y18e4_c00000{bottom:393.346500px;}
.yfde_c00000{bottom:393.360000px;}
.yf22_c00000{bottom:393.366000px;}
.y1812_c00000{bottom:393.375000px;}
.y156e_c00000{bottom:393.390000px;}
.y86b_c00000{bottom:393.462000px;}
.y12fd_c00000{bottom:393.643500px;}
.yec_c00000{bottom:393.789000px;}
.y2ba_c00000{bottom:393.957000px;}
.y7c3_c00000{bottom:394.192500px;}
.y657_c00000{bottom:394.309500px;}
.y100a_c00000{bottom:394.458000px;}
.y21d_c00000{bottom:394.485000px;}
.y11c5_c00000{bottom:394.588500px;}
.y1054_c00000{bottom:394.699500px;}
.y5bb_c00000{bottom:394.972500px;}
.y142a_c00000{bottom:395.149500px;}
.yb7d_c00000{bottom:395.154000px;}
.y453_c00000{bottom:395.215500px;}
.y751_c00000{bottom:395.226000px;}
.y9ea_c00000{bottom:395.413500px;}
.yb27_c00000{bottom:395.590500px;}
.y18cf_c00000{bottom:395.700000px;}
.y15bc_c00000{bottom:395.712000px;}
.yd02_c00000{bottom:395.805000px;}
.y526_c00000{bottom:395.827500px;}
.ye3a_c00000{bottom:395.853000px;}
.yec1_c00000{bottom:395.895000px;}
.y68a_c00000{bottom:395.928000px;}
.y30d_c00000{bottom:395.937000px;}
.y26b_c00000{bottom:395.953500px;}
.yae_c00000{bottom:395.970000px;}
.y1005_c00000{bottom:396.069000px;}
.y1130_c00000{bottom:396.094500px;}
.yaf8_c00000{bottom:396.151500px;}
.y588_c00000{bottom:396.238500px;}
.y7e2_c00000{bottom:396.268500px;}
.yde5_c00000{bottom:396.270000px;}
.y15cd_c00000{bottom:396.826500px;}
.y237_c00000{bottom:396.955500px;}
.y676_c00000{bottom:396.970500px;}
.y107_c00000{bottom:397.074000px;}
.y12d1_c00000{bottom:397.315500px;}
.y98d_c00000{bottom:397.911000px;}
.y1536_c00000{bottom:398.112000px;}
.y61a_c00000{bottom:398.299500px;}
.y18ff_c00000{bottom:398.443500px;}
.y17b_c00000{bottom:398.578500px;}
.yf72_c00000{bottom:398.689500px;}
.y8d5_c00000{bottom:398.692500px;}
.y1af_c00000{bottom:398.917500px;}
.y4dc_c00000{bottom:398.934000px;}
.y14af_c00000{bottom:399.075000px;}
.ybd8_c00000{bottom:400.027500px;}
.y1d_c00000{bottom:400.140000px;}
.y890_c00000{bottom:400.143000px;}
.y14f2_c00000{bottom:400.320000px;}
.ya5d_c00000{bottom:400.428000px;}
.y1554_c00000{bottom:400.503000px;}
.y3fd_c00000{bottom:400.543500px;}
.y4f4_c00000{bottom:400.668000px;}
.y1045_c00000{bottom:400.833000px;}
.yd44_c00000{bottom:401.353500px;}
.y15e6_c00000{bottom:401.382000px;}
.y19c_c00000{bottom:401.424000px;}
.y373_c00000{bottom:401.455500px;}
.y144d_c00000{bottom:401.821500px;}
.y68_c00000{bottom:401.898000px;}
.y6bd_c00000{bottom:401.922000px;}
.y5f6_c00000{bottom:401.997000px;}
.y18bf_c00000{bottom:402.367500px;}
.y113f_c00000{bottom:402.397500px;}
.y9d2_c00000{bottom:402.448500px;}
.y17db_c00000{bottom:402.478500px;}
.y13ee_c00000{bottom:402.594000px;}
.y13a1_c00000{bottom:402.667500px;}
.y7fa_c00000{bottom:402.807000px;}
.ybc4_c00000{bottom:402.811500px;}
.y115f_c00000{bottom:403.105500px;}
.y76a_c00000{bottom:403.176000px;}
.yc7b_c00000{bottom:403.317000px;}
.y3ee_c00000{bottom:403.432500px;}
.y18a3_c00000{bottom:403.575000px;}
.yf80_c00000{bottom:403.599000px;}
.y203_c00000{bottom:403.722000px;}
.y136b_c00000{bottom:403.890000px;}
.y352_c00000{bottom:404.055000px;}
.y17ef_c00000{bottom:404.058000px;}
.y814_c00000{bottom:404.146500px;}
.y3a9_c00000{bottom:404.158500px;}
.y1241_c00000{bottom:404.425500px;}
.y186f_c00000{bottom:404.856000px;}
.y5a2_c00000{bottom:404.911500px;}
.y6ca_c00000{bottom:404.928000px;}
.ydee_c00000{bottom:405.061500px;}
.y42_c00000{bottom:405.175500px;}
.yc8_c00000{bottom:405.301500px;}
.y1626_c00000{bottom:405.501000px;}
.y1860_c00000{bottom:405.891000px;}
.y790_c00000{bottom:405.898500px;}
.yee8_c00000{bottom:406.074000px;}
.y2d9_c00000{bottom:406.239000px;}
.y16ba_c00000{bottom:406.344000px;}
.yba4_c00000{bottom:406.396500px;}
.y63b_c00000{bottom:406.543500px;}
.y175a_c00000{bottom:406.573500px;}
.y1646_c00000{bottom:406.804500px;}
.y1613_c00000{bottom:407.086500px;}
.y560_c00000{bottom:407.103000px;}
.y5f5_c00000{bottom:407.419500px;}
.y8c7_c00000{bottom:407.634000px;}
.y10fe_c00000{bottom:407.791500px;}
.y192c_c00000{bottom:408.132000px;}
.y1311_c00000{bottom:408.390000px;}
.y115e_c00000{bottom:408.529500px;}
.y1698_c00000{bottom:408.663000px;}
.ya2b_c00000{bottom:408.888000px;}
.ye26_c00000{bottom:408.895500px;}
.y9ae_c00000{bottom:409.191000px;}
.yb99_c00000{bottom:409.278000px;}
.yfa2_c00000{bottom:409.402500px;}
.yaac_c00000{bottom:409.423500px;}
.y91b_c00000{bottom:409.564500px;}
.yce3_c00000{bottom:409.861500px;}
.y1417_c00000{bottom:409.992000px;}
.y85e_c00000{bottom:410.382000px;}
.y1289_c00000{bottom:410.640000px;}
.y1603_c00000{bottom:410.683500px;}
.y1079_c00000{bottom:410.689500px;}
.yef6_c00000{bottom:410.772000px;}
.y4b0_c00000{bottom:410.781000px;}
.y389_c00000{bottom:410.880000px;}
.y503_c00000{bottom:410.896500px;}
.y1625_c00000{bottom:410.923500px;}
.y11ee_c00000{bottom:411.160500px;}
.ye62_c00000{bottom:411.424500px;}
.y16e1_c00000{bottom:411.490500px;}
.y11a3_c00000{bottom:411.682500px;}
.y1115_c00000{bottom:411.856500px;}
.y1941_c00000{bottom:412.072500px;}
.y122a_c00000{bottom:412.342500px;}
.y6ee_c00000{bottom:412.390500px;}
.y134a_c00000{bottom:412.416000px;}
.y17fc_c00000{bottom:412.507500px;}
.yb3a_c00000{bottom:412.516500px;}
.y1e3_c00000{bottom:412.632000px;}
.y1736_c00000{bottom:412.672500px;}
.yacb_c00000{bottom:412.768500px;}
.ydc9_c00000{bottom:412.800000px;}
.y1499_c00000{bottom:412.885500px;}
.yd9e_c00000{bottom:413.233500px;}
.yea3_c00000{bottom:413.239500px;}
.y177e_c00000{bottom:413.374500px;}
.y10e8_c00000{bottom:413.605500px;}
.y1842_c00000{bottom:413.614500px;}
.yc6b_c00000{bottom:413.629500px;}
.y540_c00000{bottom:413.634000px;}
.ybf6_c00000{bottom:413.667000px;}
.y1922_c00000{bottom:413.713500px;}
.yd7c_c00000{bottom:413.757000px;}
.y49a_c00000{bottom:413.776500px;}
.y24c_c00000{bottom:413.886000px;}
.y1485_c00000{bottom:414.240000px;}
.y142_c00000{bottom:414.258000px;}
.y8b_c00000{bottom:414.633000px;}
.yc3c_c00000{bottom:414.709500px;}
.y17a0_c00000{bottom:414.810000px;}
.yad9_c00000{bottom:415.023000px;}
.y3d0_c00000{bottom:415.138500px;}
.y282_c00000{bottom:415.470000px;}
.y12b1_c00000{bottom:415.596000px;}
.yc1c_c00000{bottom:415.737000px;}
.y13d3_c00000{bottom:415.852500px;}
.y1535_c00000{bottom:416.044500px;}
.y12a_c00000{bottom:416.112000px;}
.y619_c00000{bottom:416.232000px;}
.y1212_c00000{bottom:416.352000px;}
.yd5c_c00000{bottom:416.385000px;}
.y12f0_c00000{bottom:416.476500px;}
.y17a_c00000{bottom:416.511000px;}
.y1182_c00000{bottom:416.832000px;}
.y4ce_c00000{bottom:417.220500px;}
.yfbe_c00000{bottom:417.256500px;}
.y475_c00000{bottom:417.846000px;}
.y10ab_c00000{bottom:417.853500px;}
.y731_c00000{bottom:417.862500px;}
.y8a6_c00000{bottom:418.093500px;}
.y1322_c00000{bottom:418.245000px;}
.y32e_c00000{bottom:418.344000px;}
.y40b_c00000{bottom:418.360500px;}
.ycc3_c00000{bottom:418.635000px;}
.yf56_c00000{bottom:419.448000px;}
.y15f_c00000{bottom:419.847000px;}
.yd27_c00000{bottom:419.854500px;}
.y18db_c00000{bottom:419.979000px;}
.y550_c00000{bottom:420.096000px;}
.yfdd_c00000{bottom:420.252000px;}
.yf21_c00000{bottom:420.256500px;}
.y1811_c00000{bottom:420.267000px;}
.y156d_c00000{bottom:420.280500px;}
.y957_c00000{bottom:420.352500px;}
.y12fc_c00000{bottom:420.535500px;}
.yeb_c00000{bottom:420.679500px;}
.y2b9_c00000{bottom:420.849000px;}
.y656_c00000{bottom:421.200000px;}
.y11c4_c00000{bottom:421.479000px;}
.yf7f_c00000{bottom:421.531500px;}
.y1c_c00000{bottom:421.560000px;}
.y1053_c00000{bottom:421.590000px;}
.y202_c00000{bottom:421.654500px;}
.y5ba_c00000{bottom:421.863000px;}
.y14ca_c00000{bottom:421.899000px;}
.y1429_c00000{bottom:422.040000px;}
.yb7c_c00000{bottom:422.044500px;}
.y452_c00000{bottom:422.106000px;}
.y750_c00000{bottom:422.116500px;}
.yb26_c00000{bottom:422.482500px;}
.y18ce_c00000{bottom:422.590500px;}
.y15bb_c00000{bottom:422.602500px;}
.y115d_c00000{bottom:422.641500px;}
.yd01_c00000{bottom:422.695500px;}
.y525_c00000{bottom:422.718000px;}
.ye39_c00000{bottom:422.743500px;}
.yec0_c00000{bottom:422.785500px;}
.y689_c00000{bottom:422.818500px;}
.y21c_c00000{bottom:422.844000px;}
.yad_c00000{bottom:422.860500px;}
.y1004_c00000{bottom:422.959500px;}
.y112f_c00000{bottom:422.986500px;}
.y587_c00000{bottom:423.130500px;}
.y7e1_c00000{bottom:423.159000px;}
.yde4_c00000{bottom:423.160500px;}
.y15cc_c00000{bottom:423.717000px;}
.y236_c00000{bottom:423.846000px;}
.y106_c00000{bottom:423.964500px;}
.y940_c00000{bottom:424.072500px;}
.y1645_c00000{bottom:424.737000px;}
.y98c_c00000{bottom:424.801500px;}
.y1612_c00000{bottom:425.019000px;}
.y18fe_c00000{bottom:425.334000px;}
.yf71_c00000{bottom:425.580000px;}
.y2f3_c00000{bottom:425.824500px;}
.ybd7_c00000{bottom:426.918000px;}
.y14f1_c00000{bottom:427.210500px;}
.ya5c_c00000{bottom:427.318500px;}
.y3fc_c00000{bottom:427.434000px;}
.y4f3_c00000{bottom:427.560000px;}
.y13c4_c00000{bottom:427.701000px;}
.y1044_c00000{bottom:427.723500px;}
.yd43_c00000{bottom:428.244000px;}
.y15e5_c00000{bottom:428.272500px;}
.ya71_c00000{bottom:428.307000px;}
.y19b_c00000{bottom:428.314500px;}
.y372_c00000{bottom:428.346000px;}
.y144c_c00000{bottom:428.713500px;}
.y67_c00000{bottom:428.788500px;}
.y96c_c00000{bottom:428.812500px;}
.y18be_c00000{bottom:429.258000px;}
.y113e_c00000{bottom:429.288000px;}
.y9d1_c00000{bottom:429.339000px;}
.y17da_c00000{bottom:429.369000px;}
.y13ed_c00000{bottom:429.484500px;}
.y1776_c00000{bottom:429.546000px;}
.y13a0_c00000{bottom:429.559500px;}
.y7f9_c00000{bottom:429.697500px;}
.ybc3_c00000{bottom:429.702000px;}
.y769_c00000{bottom:430.066500px;}
.yc7a_c00000{bottom:430.207500px;}
.y3ed_c00000{bottom:430.324500px;}
.y55f_c00000{bottom:430.458000px;}
.y136a_c00000{bottom:430.780500px;}
.y351_c00000{bottom:430.945500px;}
.y3a8_c00000{bottom:431.049000px;}
.y1240_c00000{bottom:431.316000px;}
.y181e_c00000{bottom:431.731500px;}
.y186e_c00000{bottom:431.746500px;}
.y5a1_c00000{bottom:431.802000px;}
.y6c9_c00000{bottom:431.818500px;}
.y41_c00000{bottom:432.066000px;}
.ya44_c00000{bottom:432.181500px;}
.yc7_c00000{bottom:432.192000px;}
.y78f_c00000{bottom:432.790500px;}
.yee7_c00000{bottom:432.964500px;}
.y2d8_c00000{bottom:433.129500px;}
.y16b9_c00000{bottom:433.234500px;}
.y1925_c00000{bottom:433.288500px;}
.y63a_c00000{bottom:433.434000px;}
.y1759_c00000{bottom:433.464000px;}
.y179_c00000{bottom:434.443500px;}
.y8c6_c00000{bottom:434.524500px;}
.y10fd_c00000{bottom:434.682000px;}
.y1382_c00000{bottom:435.022500px;}
.y13fc_c00000{bottom:435.280500px;}
.y1697_c00000{bottom:435.555000px;}
.y5f4_c00000{bottom:435.778500px;}
.ye25_c00000{bottom:435.786000px;}
.y9ad_c00000{bottom:436.081500px;}
.yfa1_c00000{bottom:436.293000px;}
.yaab_c00000{bottom:436.315500px;}
.y91a_c00000{bottom:436.455000px;}
.y1416_c00000{bottom:436.882500px;}
.y85d_c00000{bottom:437.272500px;}
.y1288_c00000{bottom:437.530500px;}
.y1602_c00000{bottom:437.574000px;}
.y1078_c00000{bottom:437.581500px;}
.yef5_c00000{bottom:437.662500px;}
.y4af_c00000{bottom:437.671500px;}
.y388_c00000{bottom:437.770500px;}
.y502_c00000{bottom:437.787000px;}
.y11ed_c00000{bottom:438.051000px;}
.ye61_c00000{bottom:438.316500px;}
.y16e0_c00000{bottom:438.381000px;}
.y11a2_c00000{bottom:438.573000px;}
.y1114_c00000{bottom:438.747000px;}
.y1940_c00000{bottom:438.963000px;}
.y6ed_c00000{bottom:439.282500px;}
.y17fb_c00000{bottom:439.398000px;}
.y1534_c00000{bottom:439.399500px;}
.yb39_c00000{bottom:439.407000px;}
.y1e2_c00000{bottom:439.522500px;}
.y1735_c00000{bottom:439.563000px;}
.y618_c00000{bottom:439.588500px;}
.yaca_c00000{bottom:439.659000px;}
.ydc8_c00000{bottom:439.692000px;}
.y1498_c00000{bottom:439.777500px;}
.yd9d_c00000{bottom:440.124000px;}
.yea2_c00000{bottom:440.131500px;}
.y10e7_c00000{bottom:440.497500px;}
.y185f_c00000{bottom:440.502000px;}
.y1841_c00000{bottom:440.506500px;}
.yc6a_c00000{bottom:440.520000px;}
.y53f_c00000{bottom:440.524500px;}
.y115c_c00000{bottom:440.574000px;}
.y1921_c00000{bottom:440.604000px;}
.yd7b_c00000{bottom:440.647500px;}
.y499_c00000{bottom:440.667000px;}
.y11d5_c00000{bottom:440.677500px;}
.y9e9_c00000{bottom:440.752500px;}
.y30c_c00000{bottom:440.760000px;}
.y460_c00000{bottom:440.776500px;}
.y1484_c00000{bottom:441.130500px;}
.y141_c00000{bottom:441.148500px;}
.y675_c00000{bottom:441.454500px;}
.y8a_c00000{bottom:441.523500px;}
.yc3b_c00000{bottom:441.601500px;}
.y179f_c00000{bottom:441.700500px;}
.yad8_c00000{bottom:441.913500px;}
.y3cf_c00000{bottom:442.030500px;}
.y877_c00000{bottom:442.320000px;}
.y12b0_c00000{bottom:442.486500px;}
.yc1b_c00000{bottom:442.627500px;}
.y1644_c00000{bottom:442.669500px;}
.y88f_c00000{bottom:442.840500px;}
.y129_c00000{bottom:443.004000px;}
.yd5b_c00000{bottom:443.275500px;}
.y12d0_c00000{bottom:443.329500px;}
.y12ef_c00000{bottom:443.368500px;}
.y1181_c00000{bottom:443.722500px;}
.ybe0_c00000{bottom:443.940000px;}
.yfbd_c00000{bottom:444.147000px;}
.y474_c00000{bottom:444.736500px;}
.y10aa_c00000{bottom:444.745500px;}
.y730_c00000{bottom:444.753000px;}
.yf7e_c00000{bottom:444.888000px;}
.y8a5_c00000{bottom:444.984000px;}
.y1321_c00000{bottom:445.135500px;}
.y32d_c00000{bottom:445.234500px;}
.y40a_c00000{bottom:445.251000px;}
.y14ae_c00000{bottom:445.392000px;}
.y115b_c00000{bottom:445.996500px;}
.y17ee_c00000{bottom:446.179500px;}
.yf55_c00000{bottom:446.338500px;}
.y15e_c00000{bottom:446.737500px;}
.yd26_c00000{bottom:446.745000px;}
.y160a_c00000{bottom:446.746500px;}
.y18da_c00000{bottom:446.871000px;}
.y54f_c00000{bottom:446.986500px;}
.y1911_c00000{bottom:447.127500px;}
.yfdc_c00000{bottom:447.142500px;}
.yf20_c00000{bottom:447.148500px;}
.y1810_c00000{bottom:447.157500px;}
.y156c_c00000{bottom:447.172500px;}
.yc09_c00000{bottom:447.244500px;}
.yea_c00000{bottom:447.571500px;}
.y2b8_c00000{bottom:447.739500px;}
.y201_c00000{bottom:447.988500px;}
.y1b_c00000{bottom:448.029720px;}
.y655_c00000{bottom:448.092000px;}
.y6bc_c00000{bottom:448.240500px;}
.y11c3_c00000{bottom:448.369500px;}
.y1611_c00000{bottom:448.374000px;}
.y1463_c00000{bottom:448.456500px;}
.y1052_c00000{bottom:448.480500px;}
.y5b9_c00000{bottom:448.753500px;}
.y14c9_c00000{bottom:448.789500px;}
.y1428_c00000{bottom:448.932000px;}
.y451_c00000{bottom:448.996500px;}
.y74f_c00000{bottom:449.008500px;}
.yb25_c00000{bottom:449.373000px;}
.y18cd_c00000{bottom:449.482500px;}
.y15ba_c00000{bottom:449.494500px;}
.y524_c00000{bottom:449.608500px;}
.ye38_c00000{bottom:449.635500px;}
.yebf_c00000{bottom:449.677500px;}
.y688_c00000{bottom:449.709000px;}
.y21b_c00000{bottom:449.734500px;}
.yac_c00000{bottom:449.751000px;}
.y1003_c00000{bottom:449.850000px;}
.y586_c00000{bottom:450.021000px;}
.y7e0_c00000{bottom:450.049500px;}
.y15cb_c00000{bottom:450.609000px;}
.y235_c00000{bottom:450.738000px;}
.y105_c00000{bottom:450.856500px;}
.y98b_c00000{bottom:451.692000px;}
.y1533_c00000{bottom:451.909500px;}
.y1349_c00000{bottom:452.070000px;}
.y18fd_c00000{bottom:452.226000px;}
.y178_c00000{bottom:452.377500px;}
.yf70_c00000{bottom:452.470500px;}
.y18e3_c00000{bottom:452.698500px;}
.y4db_c00000{bottom:452.715000px;}
.ybd6_c00000{bottom:453.808500px;}
.y14f0_c00000{bottom:454.101000px;}
.ya5b_c00000{bottom:454.209000px;}
.yf04_c00000{bottom:454.284000px;}
.y3fb_c00000{bottom:454.324500px;}
.y4f2_c00000{bottom:454.450500px;}
.y1043_c00000{bottom:454.615500px;}
.yd42_c00000{bottom:455.134500px;}
.y15e4_c00000{bottom:455.164500px;}
.ya70_c00000{bottom:455.197500px;}
.y19a_c00000{bottom:455.205000px;}
.y66_c00000{bottom:455.679000px;}
.y15a3_c00000{bottom:455.704500px;}
.y18bd_c00000{bottom:456.148500px;}
.yce2_c00000{bottom:456.178500px;}
.y1850_c00000{bottom:456.202500px;}
.y9d0_c00000{bottom:456.231000px;}
.y17d9_c00000{bottom:456.259500px;}
.y13ec_c00000{bottom:456.376500px;}
.y1775_c00000{bottom:456.436500px;}
.y139f_c00000{bottom:456.450000px;}
.y7f8_c00000{bottom:456.588000px;}
.ybc2_c00000{bottom:456.592500px;}
.y77a_c00000{bottom:456.957000px;}
.yc79_c00000{bottom:457.098000px;}
.y3ec_c00000{bottom:457.215000px;}
.ybf5_c00000{bottom:457.695000px;}
.y350_c00000{bottom:457.836000px;}
.y3a7_c00000{bottom:457.939500px;}
.y123f_c00000{bottom:458.206500px;}
.y177d_c00000{bottom:458.454000px;}
.y181d_c00000{bottom:458.623500px;}
.y186d_c00000{bottom:458.637000px;}
.y5a0_c00000{bottom:458.692500px;}
.y24b_c00000{bottom:458.709000px;}
.y4cd_c00000{bottom:458.967000px;}
.ya43_c00000{bottom:459.073500px;}
.yc6_c00000{bottom:459.082500px;}
.y78e_c00000{bottom:459.681000px;}
.yee6_c00000{bottom:459.855000px;}
.y115a_c00000{bottom:460.108500px;}
.y16b8_c00000{bottom:460.125000px;}
.y1924_c00000{bottom:460.179000px;}
.y639_c00000{bottom:460.324500px;}
.y1758_c00000{bottom:460.356000px;}
.y1643_c00000{bottom:460.602000px;}
.y1610_c00000{bottom:460.884000px;}
.y8c5_c00000{bottom:461.415000px;}
.y10fc_c00000{bottom:461.572500px;}
.y281_c00000{bottom:461.788500px;}
.y1381_c00000{bottom:461.914500px;}
.y13fb_c00000{bottom:462.171000px;}
.y1696_c00000{bottom:462.445500px;}
.y5f3_c00000{bottom:462.669000px;}
.ye24_c00000{bottom:462.676500px;}
.y18a2_c00000{bottom:462.927000px;}
.y9ac_c00000{bottom:462.973500px;}
.yfa0_c00000{bottom:463.185000px;}
.yaaa_c00000{bottom:463.206000px;}
.y112e_c00000{bottom:463.290000px;}
.yde3_c00000{bottom:463.422000px;}
.yaf7_c00000{bottom:463.648500px;}
.y1415_c00000{bottom:463.774500px;}
.y85c_c00000{bottom:464.164500px;}
.y1287_c00000{bottom:464.421000px;}
.y1601_c00000{bottom:464.464500px;}
.y1077_c00000{bottom:464.472000px;}
.y4ae_c00000{bottom:464.562000px;}
.y501_c00000{bottom:464.679000px;}
.y11ec_c00000{bottom:464.941500px;}
.ye60_c00000{bottom:465.207000px;}
.y16df_c00000{bottom:465.271500px;}
.y1113_c00000{bottom:465.637500px;}
.y6ec_c00000{bottom:466.173000px;}
.y17fa_c00000{bottom:466.288500px;}
.yb38_c00000{bottom:466.297500px;}
.y617_c00000{bottom:466.320000px;}
.y1e1_c00000{bottom:466.413000px;}
.y12fb_c00000{bottom:466.429500px;}
.y1734_c00000{bottom:466.453500px;}
.yac9_c00000{bottom:466.551000px;}
.ydc7_c00000{bottom:466.582500px;}
.y1497_c00000{bottom:466.668000px;}
.yd9c_c00000{bottom:467.016000px;}
.yea1_c00000{bottom:467.022000px;}
.y371_c00000{bottom:467.311500px;}
.y10e6_c00000{bottom:467.388000px;}
.y1840_c00000{bottom:467.397000px;}
.y53e_c00000{bottom:467.415000px;}
.y1920_c00000{bottom:467.494500px;}
.yd7a_c00000{bottom:467.539500px;}
.y498_c00000{bottom:467.557500px;}
.yd00_c00000{bottom:467.568000px;}
.y9e8_c00000{bottom:467.643000px;}
.y26a_c00000{bottom:467.667000px;}
.y1a_c00000{bottom:467.825220px;}
.y1483_c00000{bottom:468.021000px;}
.y140_c00000{bottom:468.040500px;}
.y674_c00000{bottom:468.345000px;}
.yb7b_c00000{bottom:468.363000px;}
.y89_c00000{bottom:468.415500px;}
.yc3a_c00000{bottom:468.492000px;}
.y1229_c00000{bottom:468.556500px;}
.y179e_c00000{bottom:468.591000px;}
.yb98_c00000{bottom:468.630000px;}
.y194f_c00000{bottom:468.804000px;}
.yad7_c00000{bottom:468.805500px;}
.y3ce_c00000{bottom:468.921000px;}
.yf33_c00000{bottom:469.137000px;}
.y12af_c00000{bottom:469.377000px;}
.yc1a_c00000{bottom:469.519500px;}
.y88e_c00000{bottom:469.731000px;}
.y1532_c00000{bottom:469.842000px;}
.y128_c00000{bottom:469.894500px;}
.yd5a_c00000{bottom:470.166000px;}
.y12cf_c00000{bottom:470.220000px;}
.y177_c00000{bottom:470.310000px;}
.y1180_c00000{bottom:470.613000px;}
.yfbc_c00000{bottom:471.037500px;}
.y144b_c00000{bottom:471.580500px;}
.y473_c00000{bottom:471.627000px;}
.y10a9_c00000{bottom:471.636000px;}
.y72f_c00000{bottom:471.643500px;}
.y8a4_c00000{bottom:471.876000px;}
.y1320_c00000{bottom:472.026000px;}
.y32c_c00000{bottom:472.125000px;}
.y2f2_c00000{bottom:472.141500px;}
.yef4_c00000{bottom:472.275000px;}
.y14ad_c00000{bottom:472.284000px;}
.y17ed_c00000{bottom:473.070000px;}
.y15d_c00000{bottom:473.628000px;}
.y96b_c00000{bottom:473.637000px;}
.y18d9_c00000{bottom:473.761500px;}
.y54e_c00000{bottom:473.877000px;}
.ybdf_c00000{bottom:474.018000px;}
.yf1f_c00000{bottom:474.039000px;}
.y180f_c00000{bottom:474.048000px;}
.y156b_c00000{bottom:474.063000px;}
.y1096_c00000{bottom:474.135000px;}
.y2b7_c00000{bottom:474.630000px;}
.ycc2_c00000{bottom:474.729000px;}
.y200_c00000{bottom:474.879000px;}
.y654_c00000{bottom:474.982500px;}
.y6bb_c00000{bottom:475.131000px;}
.yc69_c00000{bottom:475.132500px;}
.y11c2_c00000{bottom:475.261500px;}
.y1051_c00000{bottom:475.371000px;}
.y16cc_c00000{bottom:475.372500px;}
.y5b8_c00000{bottom:475.645500px;}
.y14c8_c00000{bottom:475.680000px;}
.y1427_c00000{bottom:475.822500px;}
.y74e_c00000{bottom:475.899000px;}
.yb24_c00000{bottom:476.263500px;}
.y18cc_c00000{bottom:476.373000px;}
.y768_c00000{bottom:476.385000px;}
.ye37_c00000{bottom:476.526000px;}
.yebe_c00000{bottom:476.568000px;}
.y687_c00000{bottom:476.601000px;}
.y21a_c00000{bottom:476.625000px;}
.yab_c00000{bottom:476.641500px;}
.y1002_c00000{bottom:476.740500px;}
.y585_c00000{bottom:476.911500px;}
.y7df_c00000{bottom:476.941500px;}
.y2d7_c00000{bottom:477.057000px;}
.y1369_c00000{bottom:477.099000px;}
.y15ca_c00000{bottom:477.499500px;}
.y234_c00000{bottom:477.628500px;}
.y104_c00000{bottom:477.747000px;}
.y12ee_c00000{bottom:477.979500px;}
.y1159_c00000{bottom:478.042500px;}
.y1642_c00000{bottom:478.534500px;}
.y98a_c00000{bottom:478.584000px;}
.y1348_c00000{bottom:478.962000px;}
.y18fc_c00000{bottom:479.116500px;}
.yf6f_c00000{bottom:479.361000px;}
.y4da_c00000{bottom:479.605500px;}
.y193f_c00000{bottom:479.736000px;}
.ybd5_c00000{bottom:480.699000px;}
.y14ef_c00000{bottom:480.993000px;}
.ya5a_c00000{bottom:481.101000px;}
.y3fa_c00000{bottom:481.215000px;}
.y4f1_c00000{bottom:481.341000px;}
.y11a1_c00000{bottom:481.704000px;}
.yd41_c00000{bottom:482.025000px;}
.y15e3_c00000{bottom:482.055000px;}
.ya6f_c00000{bottom:482.088000px;}
.y199_c00000{bottom:482.097000px;}
.y65_c00000{bottom:482.569500px;}
.y387_c00000{bottom:482.595000px;}
.yce1_c00000{bottom:483.070500px;}
.y9cf_c00000{bottom:483.121500px;}
.y17d8_c00000{bottom:483.151500px;}
.y13eb_c00000{bottom:483.267000px;}
.y1774_c00000{bottom:483.328500px;}
.y139e_c00000{bottom:483.340500px;}
.y7f7_c00000{bottom:483.480000px;}
.ybc1_c00000{bottom:483.484500px;}
.y8ee_c00000{bottom:483.847500px;}
.y779_c00000{bottom:483.849000px;}
.yc78_c00000{bottom:483.990000px;}
.y3eb_c00000{bottom:484.105500px;}
.y160f_c00000{bottom:484.240500px;}
.ybf4_c00000{bottom:484.585500px;}
.y34f_c00000{bottom:484.728000px;}
.y3a6_c00000{bottom:484.830000px;}
.y123e_c00000{bottom:485.098500px;}
.y450_c00000{bottom:485.103000px;}
.y177c_c00000{bottom:485.344500px;}
.y181c_c00000{bottom:485.514000px;}
.y59f_c00000{bottom:485.583000px;}
.y24a_c00000{bottom:485.599500px;}
.y4cc_c00000{bottom:485.857500px;}
.ya42_c00000{bottom:485.964000px;}
.yc5_c00000{bottom:485.974500px;}
.yf54_c00000{bottom:486.010500px;}
.y921_c00000{bottom:486.571500px;}
.yee5_c00000{bottom:486.747000px;}
.y16b7_c00000{bottom:487.015500px;}
.y13c3_c00000{bottom:487.053000px;}
.y638_c00000{bottom:487.215000px;}
.y1757_c00000{bottom:487.246500px;}
.y1531_c00000{bottom:487.776000px;}
.y19_c00000{bottom:487.800000px;}
.y176_c00000{bottom:488.242500px;}
.y8c4_c00000{bottom:488.307000px;}
.y280_c00000{bottom:488.679000px;}
.yfdb_c00000{bottom:488.782500px;}
.y1380_c00000{bottom:488.805000px;}
.y931_c00000{bottom:489.061500px;}
.y1695_c00000{bottom:489.336000px;}
.y5f2_c00000{bottom:489.561000px;}
.y9ab_c00000{bottom:489.864000px;}
.yf9f_c00000{bottom:490.075500px;}
.yaa9_c00000{bottom:490.096500px;}
.yde2_c00000{bottom:490.312500px;}
.yaf6_c00000{bottom:490.540500px;}
.y1414_c00000{bottom:490.665000px;}
.y85b_c00000{bottom:491.055000px;}
.y1286_c00000{bottom:491.311500px;}
.y1600_c00000{bottom:491.356500px;}
.y1076_c00000{bottom:491.362500px;}
.y4ad_c00000{bottom:491.452500px;}
.yc47_c00000{bottom:491.454000px;}
.y500_c00000{bottom:491.569500px;}
.ye9_c00000{bottom:492.021000px;}
.ye5f_c00000{bottom:492.097500px;}
.y16de_c00000{bottom:492.162000px;}
.y6eb_c00000{bottom:493.063500px;}
.y17f9_c00000{bottom:493.180500px;}
.yb37_c00000{bottom:493.188000px;}
.y616_c00000{bottom:493.210500px;}
.y1e0_c00000{bottom:493.305000px;}
.y12fa_c00000{bottom:493.321500px;}
.y1733_c00000{bottom:493.345500px;}
.yac8_c00000{bottom:493.441500px;}
.ydc6_c00000{bottom:493.473000px;}
.y1496_c00000{bottom:493.558500px;}
.yd9b_c00000{bottom:493.906500px;}
.yea0_c00000{bottom:493.912500px;}
.y370_c00000{bottom:494.202000px;}
.y183f_c00000{bottom:494.287500px;}
.y78d_c00000{bottom:494.292000px;}
.y53d_c00000{bottom:494.307000px;}
.y191f_c00000{bottom:494.385000px;}
.yd79_c00000{bottom:494.430000px;}
.y497_c00000{bottom:494.449500px;}
.ycff_c00000{bottom:494.458500px;}
.y523_c00000{bottom:494.475000px;}
.y9e7_c00000{bottom:494.533500px;}
.y269_c00000{bottom:494.557500px;}
.y13f_c00000{bottom:494.931000px;}
.y673_c00000{bottom:495.237000px;}
.yb7a_c00000{bottom:495.253500px;}
.y88_c00000{bottom:495.306000px;}
.yc39_c00000{bottom:495.382500px;}
.y1228_c00000{bottom:495.448500px;}
.y179d_c00000{bottom:495.481500px;}
.yad6_c00000{bottom:495.696000px;}
.y3cd_c00000{bottom:495.811500px;}
.y1158_c00000{bottom:495.975000px;}
.y12ae_c00000{bottom:496.269000px;}
.y1641_c00000{bottom:496.468500px;}
.y88d_c00000{bottom:496.621500px;}
.y127_c00000{bottom:496.785000px;}
.yd59_c00000{bottom:497.056500px;}
.y12ce_c00000{bottom:497.112000px;}
.y117f_c00000{bottom:497.505000px;}
.ye23_c00000{bottom:497.739000px;}
.y1042_c00000{bottom:497.785500px;}
.yfbb_c00000{bottom:497.928000px;}
.y40_c00000{bottom:498.465000px;}
.y144a_c00000{bottom:498.471000px;}
.y472_c00000{bottom:498.519000px;}
.y10a8_c00000{bottom:498.526500px;}
.y72e_c00000{bottom:498.535500px;}
.y18bc_c00000{bottom:498.598500px;}
.y131f_c00000{bottom:498.916500px;}
.y2f1_c00000{bottom:499.033500px;}
.y14ac_c00000{bottom:499.174500px;}
.y17ec_c00000{bottom:499.962000px;}
.y15c_c00000{bottom:500.518500px;}
.y96a_c00000{bottom:500.527500px;}
.y18d8_c00000{bottom:500.652000px;}
.yb0a_c00000{bottom:500.767500px;}
.y54d_c00000{bottom:500.769000px;}
.y1391_c00000{bottom:500.910000px;}
.yf1e_c00000{bottom:500.929500px;}
.y180e_c00000{bottom:500.938500px;}
.y156a_c00000{bottom:500.953500px;}
.ye71_c00000{bottom:501.025500px;}
.y1157_c00000{bottom:501.397500px;}
.y2b6_c00000{bottom:501.520500px;}
.ycc1_c00000{bottom:501.619500px;}
.y653_c00000{bottom:501.873000px;}
.y6ba_c00000{bottom:502.021500px;}
.y11c1_c00000{bottom:502.152000px;}
.y16cb_c00000{bottom:502.263000px;}
.y5b7_c00000{bottom:502.536000px;}
.y74d_c00000{bottom:502.789500px;}
.yb23_c00000{bottom:503.154000px;}
.y18cb_c00000{bottom:503.263500px;}
.y767_c00000{bottom:503.275500px;}
.ye36_c00000{bottom:503.416500px;}
.yebd_c00000{bottom:503.458500px;}
.y686_c00000{bottom:503.491500px;}
.y219_c00000{bottom:503.515500px;}
.yc08_c00000{bottom:503.532000px;}
.yaa_c00000{bottom:503.533500px;}
.y112d_c00000{bottom:503.595000px;}
.y1001_c00000{bottom:503.632500px;}
.y584_c00000{bottom:503.802000px;}
.y7de_c00000{bottom:503.832000px;}
.y2d6_c00000{bottom:503.947500px;}
.y1368_c00000{bottom:503.989500px;}
.yc19_c00000{bottom:504.130500px;}
.y15c9_c00000{bottom:504.390000px;}
.y233_c00000{bottom:504.519000px;}
.y103_c00000{bottom:504.637500px;}
.y989_c00000{bottom:505.474500px;}
.y10fb_c00000{bottom:505.677000px;}
.y1347_c00000{bottom:505.852500px;}
.y18fb_c00000{bottom:506.007000px;}
.y11eb_c00000{bottom:506.049000px;}
.ycc0_c00000{bottom:506.152500px;}
.y175_c00000{bottom:506.175000px;}
.yf6e_c00000{bottom:506.253000px;}
.y1910_c00000{bottom:506.479500px;}
.y8a3_c00000{bottom:506.487000px;}
.yba3_c00000{bottom:506.496000px;}
.ye6b_c00000{bottom:506.497500px;}
.y193e_c00000{bottom:506.626500px;}
.ybd4_c00000{bottom:507.591000px;}
.y14ee_c00000{bottom:507.883500px;}
.ya59_c00000{bottom:507.991500px;}
.y11f9_c00000{bottom:508.066500px;}
.y3f9_c00000{bottom:508.107000px;}
.y4f0_c00000{bottom:508.231500px;}
.y11a0_c00000{bottom:508.594500px;}
.yd40_c00000{bottom:508.917000px;}
.y15e2_c00000{bottom:508.945500px;}
.ya6e_c00000{bottom:508.978500px;}
.y198_c00000{bottom:508.987500px;}
.y64_c00000{bottom:509.460000px;}
.y15a2_c00000{bottom:509.485500px;}
.yce0_c00000{bottom:509.961000px;}
.y1050_c00000{bottom:509.983500px;}
.y10e5_c00000{bottom:510.037500px;}
.y17d7_c00000{bottom:510.042000px;}
.y13ea_c00000{bottom:510.157500px;}
.y139d_c00000{bottom:510.231000px;}
.y7f6_c00000{bottom:510.370500px;}
.ybc0_c00000{bottom:510.375000px;}
.y778_c00000{bottom:510.739500px;}
.yc77_c00000{bottom:510.880500px;}
.y3ea_c00000{bottom:510.996000px;}
.y1530_c00000{bottom:511.131000px;}
.y127a_c00000{bottom:511.137000px;}
.y1112_c00000{bottom:511.476000px;}
.y18_c00000{bottom:511.560000px;}
.y34e_c00000{bottom:511.618500px;}
.y1426_c00000{bottom:511.657500px;}
.y3a5_c00000{bottom:511.722000px;}
.y123d_c00000{bottom:511.989000px;}
.y44f_c00000{bottom:511.993500px;}
.y177b_c00000{bottom:512.235000px;}
.y181b_c00000{bottom:512.404500px;}
.y59e_c00000{bottom:512.475000px;}
.y249_c00000{bottom:512.491500px;}
.y1482_c00000{bottom:512.643000px;}
.y4cb_c00000{bottom:512.748000px;}
.ya41_c00000{bottom:512.854500px;}
.yc4_c00000{bottom:512.865000px;}
.yf53_c00000{bottom:512.902500px;}
.y920_c00000{bottom:513.462000px;}
.yee4_c00000{bottom:513.637500px;}
.y16b6_c00000{bottom:513.906000px;}
.y637_c00000{bottom:514.107000px;}
.y1640_c00000{bottom:514.401000px;}
.y8c3_c00000{bottom:515.197500px;}
.y1156_c00000{bottom:515.509500px;}
.y27f_c00000{bottom:515.569500px;}
.yfda_c00000{bottom:515.674500px;}
.y5c8_c00000{bottom:515.953500px;}
.y1694_c00000{bottom:516.226500px;}
.y5f1_c00000{bottom:516.451500px;}
.y9aa_c00000{bottom:516.754500px;}
.yf9e_c00000{bottom:516.966000px;}
.yaa8_c00000{bottom:516.987000px;}
.yde1_c00000{bottom:517.204500px;}
.yaf5_c00000{bottom:517.431000px;}
.y1413_c00000{bottom:517.555500px;}
.y85a_c00000{bottom:517.945500px;}
.y9ce_c00000{bottom:518.140500px;}
.y1285_c00000{bottom:518.203500px;}
.y15ff_c00000{bottom:518.247000px;}
.y1075_c00000{bottom:518.253000px;}
.y4ac_c00000{bottom:518.344500px;}
.y32b_c00000{bottom:518.443500px;}
.y426_c00000{bottom:518.460000px;}
.y1ff_c00000{bottom:518.857500px;}
.ye8_c00000{bottom:518.911500px;}
.ye5e_c00000{bottom:518.988000px;}
.y16dd_c00000{bottom:519.052500px;}
.y6ea_c00000{bottom:519.954000px;}
.yb36_c00000{bottom:520.078500px;}
.y1960_c00000{bottom:520.080000px;}
.y1df_c00000{bottom:520.195500px;}
.y12f9_c00000{bottom:520.212000px;}
.y1732_c00000{bottom:520.236000px;}
.y14c7_c00000{bottom:520.263000px;}
.yac7_c00000{bottom:520.332000px;}
.ydc5_c00000{bottom:520.363500px;}
.y1495_c00000{bottom:520.449000px;}
.yd9a_c00000{bottom:520.797000px;}
.ye9f_c00000{bottom:520.803000px;}
.y183e_c00000{bottom:521.178000px;}
.y53c_c00000{bottom:521.197500px;}
.y191e_c00000{bottom:521.277000px;}
.yd78_c00000{bottom:521.320500px;}
.y496_c00000{bottom:521.340000px;}
.ycfe_c00000{bottom:521.350500px;}
.y522_c00000{bottom:521.365500px;}
.y9e6_c00000{bottom:521.424000px;}
.y268_c00000{bottom:521.449500px;}
.y13e_c00000{bottom:521.821500px;}
.y672_c00000{bottom:522.127500px;}
.yb79_c00000{bottom:522.145500px;}
.y87_c00000{bottom:522.196500px;}
.yc38_c00000{bottom:522.273000px;}
.y1227_c00000{bottom:522.339000px;}
.y179c_c00000{bottom:522.372000px;}
.yad5_c00000{bottom:522.586500px;}
.y3cc_c00000{bottom:522.702000px;}
.y12ad_c00000{bottom:523.159500px;}
.y192b_c00000{bottom:523.416000px;}
.y88c_c00000{bottom:523.512000px;}
.y126_c00000{bottom:523.675500px;}
.yd58_c00000{bottom:523.948500px;}
.y174_c00000{bottom:524.107500px;}
.y1041_c00000{bottom:524.676000px;}
.y1449_c00000{bottom:525.361500px;}
.y471_c00000{bottom:525.409500px;}
.y10a7_c00000{bottom:525.417000px;}
.y72d_c00000{bottom:525.426000px;}
.y18bb_c00000{bottom:525.489000px;}
.y131e_c00000{bottom:525.807000px;}
.y1773_c00000{bottom:525.918000px;}
.y2f0_c00000{bottom:525.924000px;}
.y14ab_c00000{bottom:526.065000px;}
.y17eb_c00000{bottom:526.852500px;}
.y15b_c00000{bottom:527.410500px;}
.y969_c00000{bottom:527.418000px;}
.y54c_c00000{bottom:527.659500px;}
.yf1d_c00000{bottom:527.820000px;}
.y180d_c00000{bottom:527.829000px;}
.y1569_c00000{bottom:527.844000px;}
.ycb6_c00000{bottom:527.916000px;}
.y2b5_c00000{bottom:528.412500px;}
.y652_c00000{bottom:528.763500px;}
.y6b9_c00000{bottom:528.912000px;}
.y11c0_c00000{bottom:529.042500px;}
.y16ca_c00000{bottom:529.153500px;}
.ybf3_c00000{bottom:529.312500px;}
.y5b6_c00000{bottom:529.426500px;}
.y173_c00000{bottom:529.531500px;}
.y74c_c00000{bottom:529.680000px;}
.yb22_c00000{bottom:530.046000px;}
.y18ca_c00000{bottom:530.154000px;}
.y766_c00000{bottom:530.166000px;}
.ye35_c00000{bottom:530.307000px;}
.yebc_c00000{bottom:530.349000px;}
.y685_c00000{bottom:530.382000px;}
.y218_c00000{bottom:530.407500px;}
.ya9_c00000{bottom:530.424000px;}
.y112c_c00000{bottom:530.487000px;}
.y1000_c00000{bottom:530.523000px;}
.y583_c00000{bottom:530.692500px;}
.y7dd_c00000{bottom:530.722500px;}
.y2d5_c00000{bottom:530.838000px;}
.y15c8_c00000{bottom:531.280500px;}
.yc68_c00000{bottom:531.351000px;}
.y232_c00000{bottom:531.409500px;}
.y102_c00000{bottom:531.528000px;}
.yef3_c00000{bottom:531.627000px;}
.y163f_c00000{bottom:532.333500px;}
.y988_c00000{bottom:532.365000px;}
.y10fa_c00000{bottom:532.567500px;}
.ye22_c00000{bottom:532.801500px;}
.y18fa_c00000{bottom:532.897500px;}
.y11ea_c00000{bottom:532.939500px;}
.yf6d_c00000{bottom:533.143500px;}
.y36f_c00000{bottom:533.166000px;}
.ybde_c00000{bottom:533.371500px;}
.yba2_c00000{bottom:533.388000px;}
.y1155_c00000{bottom:533.442000px;}
.y193d_c00000{bottom:533.518500px;}
.y1756_c00000{bottom:533.529000px;}
.y12ed_c00000{bottom:533.968500px;}
.y14ed_c00000{bottom:534.774000px;}
.y3f8_c00000{bottom:534.997500px;}
.y4ef_c00000{bottom:535.122000px;}
.y5d9_c00000{bottom:535.123500px;}
.y18d7_c00000{bottom:535.264500px;}
.y1671_c00000{bottom:535.380000px;}
.y119f_c00000{bottom:535.486500px;}
.yd3f_c00000{bottom:535.807500px;}
.yb97_c00000{bottom:535.822500px;}
.y15e1_c00000{bottom:535.836000px;}
.ya6d_c00000{bottom:535.870500px;}
.y197_c00000{bottom:535.878000px;}
.y63_c00000{bottom:536.352000px;}
.ycdf_c00000{bottom:536.851500px;}
.y10e4_c00000{bottom:536.928000px;}
.y17d6_c00000{bottom:536.932500px;}
.y13e9_c00000{bottom:537.048000px;}
.y139c_c00000{bottom:537.123000px;}
.y7f5_c00000{bottom:537.261000px;}
.ybbf_c00000{bottom:537.265500px;}
.y777_c00000{bottom:537.630000px;}
.yc76_c00000{bottom:537.771000px;}
.y3e9_c00000{bottom:537.888000px;}
.y1111_c00000{bottom:538.366500px;}
.y34d_c00000{bottom:538.509000px;}
.y1425_c00000{bottom:538.548000px;}
.y3a4_c00000{bottom:538.612500px;}
.y44e_c00000{bottom:538.884000px;}
.y177a_c00000{bottom:539.127000px;}
.y117e_c00000{bottom:539.347500px;}
.y59d_c00000{bottom:539.365500px;}
.y248_c00000{bottom:539.382000px;}
.y615_c00000{bottom:539.430000px;}
.y1481_c00000{bottom:539.533500px;}
.y4ca_c00000{bottom:539.638500px;}
.ya40_c00000{bottom:539.745000px;}
.yc3_c00000{bottom:539.755500px;}
.y91f_c00000{bottom:540.352500px;}
.y1346_c00000{bottom:540.465000px;}
.yee3_c00000{bottom:540.528000px;}
.y636_c00000{bottom:540.997500px;}
.yfba_c00000{bottom:541.003500px;}
.y8c2_c00000{bottom:542.088000px;}
.yfd9_c00000{bottom:542.565000px;}
.y13fa_c00000{bottom:542.844000px;}
.ycbf_c00000{bottom:542.913000px;}
.y3f_c00000{bottom:542.914500px;}
.y1693_c00000{bottom:543.118500px;}
.y12cd_c00000{bottom:543.126000px;}
.y5f0_c00000{bottom:543.342000px;}
.y158a_c00000{bottom:543.600000px;}
.y172_c00000{bottom:543.643500px;}
.y9a9_c00000{bottom:543.645000px;}
.yde0_c00000{bottom:544.095000px;}
.yaf4_c00000{bottom:544.321500px;}
.y1412_c00000{bottom:544.446000px;}
.y859_c00000{bottom:544.836000px;}
.y9cd_c00000{bottom:545.031000px;}
.y15fe_c00000{bottom:545.137500px;}
.y1074_c00000{bottom:545.145000px;}
.y4ab_c00000{bottom:545.235000px;}
.y32a_c00000{bottom:545.334000px;}
.y386_c00000{bottom:545.350500px;}
.y1fe_c00000{bottom:545.748000px;}
.ye7_c00000{bottom:545.802000px;}
.ye5d_c00000{bottom:545.880000px;}
.y16dc_c00000{bottom:545.944500px;}
.y6e9_c00000{bottom:546.846000px;}
.yb35_c00000{bottom:546.970500px;}
.y1de_c00000{bottom:547.086000px;}
.y1731_c00000{bottom:547.126500px;}
.y14c6_c00000{bottom:547.153500px;}
.yac6_c00000{bottom:547.222500px;}
.ydc4_c00000{bottom:547.255500px;}
.ybd3_c00000{bottom:547.341000px;}
.yd99_c00000{bottom:547.687500px;}
.ye9e_c00000{bottom:547.693500px;}
.y17_c00000{bottom:547.740000px;}
.y183d_c00000{bottom:548.070000px;}
.y53b_c00000{bottom:548.088000px;}
.y123c_c00000{bottom:548.097000px;}
.y191d_c00000{bottom:548.167500px;}
.yd77_c00000{bottom:548.211000px;}
.y495_c00000{bottom:548.230500px;}
.ycfd_c00000{bottom:548.241000px;}
.y521_c00000{bottom:548.256000px;}
.y9e5_c00000{bottom:548.316000px;}
.y267_c00000{bottom:548.340000px;}
.y13d_c00000{bottom:548.712000px;}
.y86_c00000{bottom:549.087000px;}
.yc37_c00000{bottom:549.165000px;}
.y1226_c00000{bottom:549.229500px;}
.yca8_c00000{bottom:549.477000px;}
.y3cb_c00000{bottom:549.594000px;}
.y12ac_c00000{bottom:550.050000px;}
.y163e_c00000{bottom:550.266000px;}
.y1367_c00000{bottom:550.308000px;}
.y125_c00000{bottom:550.567500px;}
.yd57_c00000{bottom:550.839000px;}
.y1154_c00000{bottom:551.376000px;}
.y1040_c00000{bottom:551.566500px;}
.y470_c00000{bottom:552.300000px;}
.y10a6_c00000{bottom:552.309000px;}
.y72c_c00000{bottom:552.316500px;}
.y18ba_c00000{bottom:552.381000px;}
.yf52_c00000{bottom:552.574500px;}
.y131d_c00000{bottom:552.699000px;}
.y1772_c00000{bottom:552.808500px;}
.y2ef_c00000{bottom:552.814500px;}
.y14aa_c00000{bottom:552.955500px;}
.y17ea_c00000{bottom:553.743000px;}
.y15a_c00000{bottom:554.301000px;}
.y968_c00000{bottom:554.308500px;}
.y54b_c00000{bottom:554.550000px;}
.y143a_c00000{bottom:554.691000px;}
.yf1c_c00000{bottom:554.710500px;}
.y1568_c00000{bottom:554.736000px;}
.yb4f_c00000{bottom:554.806500px;}
.y1458_c00000{bottom:554.808000px;}
.y12f8_c00000{bottom:554.823000px;}
.y2b4_c00000{bottom:555.303000px;}
.y651_c00000{bottom:555.655500px;}
.y6b8_c00000{bottom:555.804000px;}
.y11bf_c00000{bottom:555.933000px;}
.y16c9_c00000{bottom:556.044000px;}
.ybf2_c00000{bottom:556.203000px;}
.y5b5_c00000{bottom:556.317000px;}
.y74b_c00000{bottom:556.572000px;}
.y1153_c00000{bottom:556.798500px;}
.yb21_c00000{bottom:556.936500px;}
.y765_c00000{bottom:557.056500px;}
.yad4_c00000{bottom:557.199000px;}
.yebb_c00000{bottom:557.241000px;}
.y684_c00000{bottom:557.272500px;}
.y217_c00000{bottom:557.298000px;}
.ya8_c00000{bottom:557.314500px;}
.y112b_c00000{bottom:557.377500px;}
.yfff_c00000{bottom:557.413500px;}
.y16b5_c00000{bottom:557.440500px;}
.y582_c00000{bottom:557.584500px;}
.y7dc_c00000{bottom:557.613000px;}
.y2d4_c00000{bottom:557.730000px;}
.y15c7_c00000{bottom:558.172500px;}
.yc67_c00000{bottom:558.241500px;}
.y231_c00000{bottom:558.301500px;}
.yef2_c00000{bottom:558.526500px;}
.y987_c00000{bottom:559.255500px;}
.y10f9_c00000{bottom:559.458000px;}
.ye21_c00000{bottom:559.692000px;}
.y18f9_c00000{bottom:559.789500px;}
.y11e9_c00000{bottom:559.830000px;}
.yf6c_c00000{bottom:560.034000px;}
.y36e_c00000{bottom:560.058000px;}
.y1390_c00000{bottom:560.262000px;}
.yba1_c00000{bottom:560.278500px;}
.yc18_c00000{bottom:560.419500px;}
.y12ec_c00000{bottom:560.859000px;}
.y179b_c00000{bottom:560.911500px;}
.y171_c00000{bottom:561.576000px;}
.y27e_c00000{bottom:561.888000px;}
.y5d8_c00000{bottom:562.014000px;}
.yd3e_c00000{bottom:562.698000px;}
.yb96_c00000{bottom:562.713000px;}
.y15e0_c00000{bottom:562.728000px;}
.ya6c_c00000{bottom:562.761000px;}
.y196_c00000{bottom:562.768500px;}
.yf9d_c00000{bottom:562.948500px;}
.y62_c00000{bottom:563.242500px;}
.ycde_c00000{bottom:563.742000px;}
.y10e3_c00000{bottom:563.820000px;}
.y17d5_c00000{bottom:563.823000px;}
.y13e8_c00000{bottom:563.940000px;}
.y7f4_c00000{bottom:564.151500px;}
.ybbe_c00000{bottom:564.156000px;}
.y776_c00000{bottom:564.520500px;}
.y3e8_c00000{bottom:564.778500px;}
.y1455_c00000{bottom:564.919500px;}
.y1110_c00000{bottom:565.258500px;}
.y34c_c00000{bottom:565.399500px;}
.y1424_c00000{bottom:565.438500px;}
.y3a3_c00000{bottom:565.503000px;}
.y88b_c00000{bottom:565.576500px;}
.y44d_c00000{bottom:565.774500px;}
.y1779_c00000{bottom:566.017500px;}
.y117d_c00000{bottom:566.238000px;}
.y59c_c00000{bottom:566.256000px;}
.y247_c00000{bottom:566.272500px;}
.y614_c00000{bottom:566.322000px;}
.y1480_c00000{bottom:566.424000px;}
.y4c9_c00000{bottom:566.529000px;}
.y671_c00000{bottom:566.611500px;}
.ya3f_c00000{bottom:566.637000px;}
.yc2_c00000{bottom:566.646000px;}
.y91e_c00000{bottom:567.244500px;}
.yee2_c00000{bottom:567.418500px;}
.yfb9_c00000{bottom:567.894000px;}
.y163d_c00000{bottom:568.198500px;}
.y1448_c00000{bottom:568.228500px;}
.yb78_c00000{bottom:568.462500px;}
.y8c1_c00000{bottom:568.978500px;}
.y16_c00000{bottom:569.160000px;}
.yfd8_c00000{bottom:569.455500px;}
.y180c_c00000{bottom:569.463000px;}
.y4ee_c00000{bottom:569.734500px;}
.ycbe_c00000{bottom:569.803500px;}
.y1692_c00000{bottom:570.009000px;}
.y12cc_c00000{bottom:570.016500px;}
.y5ef_c00000{bottom:570.232500px;}
.y1279_c00000{bottom:570.490500px;}
.y9a8_c00000{bottom:570.537000px;}
.y18c9_c00000{bottom:570.625500px;}
.y1152_c00000{bottom:570.910500px;}
.yddf_c00000{bottom:570.985500px;}
.yaf3_c00000{bottom:571.212000px;}
.y1411_c00000{bottom:571.338000px;}
.y858_c00000{bottom:571.726500px;}
.y139b_c00000{bottom:571.734000px;}
.y9cc_c00000{bottom:571.921500px;}
.y15fd_c00000{bottom:572.028000px;}
.y1073_c00000{bottom:572.035500px;}
.y329_c00000{bottom:572.226000px;}
.y385_c00000{bottom:572.242500px;}
.yc75_c00000{bottom:572.383500px;}
.y1fd_c00000{bottom:572.638500px;}
.y100_c00000{bottom:572.692500px;}
.ye6_c00000{bottom:572.694000px;}
.ye5c_c00000{bottom:572.770500px;}
.y14ec_c00000{bottom:572.935500px;}
.ya02_c00000{bottom:573.736500px;}
.yb34_c00000{bottom:573.861000px;}
.y1dd_c00000{bottom:573.976500px;}
.y1730_c00000{bottom:574.017000px;}
.y14c5_c00000{bottom:574.044000px;}
.yac5_c00000{bottom:574.113000px;}
.ydc3_c00000{bottom:574.146000px;}
.ybd2_c00000{bottom:574.231500px;}
.y193c_c00000{bottom:574.290000px;}
.yd98_c00000{bottom:574.579500px;}
.ye9d_c00000{bottom:574.585500px;}
.y183c_c00000{bottom:574.960500px;}
.y53a_c00000{bottom:574.978500px;}
.y123b_c00000{bottom:574.987500px;}
.y191c_c00000{bottom:575.058000px;}
.yd76_c00000{bottom:575.103000px;}
.y494_c00000{bottom:575.121000px;}
.ycfc_c00000{bottom:575.131500px;}
.y520_c00000{bottom:575.146500px;}
.y9e4_c00000{bottom:575.206500px;}
.y266_c00000{bottom:575.230500px;}
.y13c_c00000{bottom:575.604000px;}
.y85_c00000{bottom:575.977500px;}
.yc36_c00000{bottom:576.055500px;}
.y1225_c00000{bottom:576.120000px;}
.yca7_c00000{bottom:576.367500px;}
.y3ca_c00000{bottom:576.484500px;}
.y1366_c00000{bottom:577.198500px;}
.y124_c00000{bottom:577.458000px;}
.yd56_c00000{bottom:577.729500px;}
.y103f_c00000{bottom:578.458500px;}
.y119e_c00000{bottom:578.616000px;}
.y10a5_c00000{bottom:579.199500px;}
.y72b_c00000{bottom:579.207000px;}
.y18b9_c00000{bottom:579.271500px;}
.yf51_c00000{bottom:579.465000px;}
.y170_c00000{bottom:579.508500px;}
.y131c_c00000{bottom:579.589500px;}
.y1771_c00000{bottom:579.699000px;}
.y2ee_c00000{bottom:579.705000px;}
.yc46_c00000{bottom:579.847500px;}
.y17e9_c00000{bottom:580.633500px;}
.y3c9_c00000{bottom:581.017500px;}
.ya58_c00000{bottom:581.200500px;}
.y635_c00000{bottom:581.331000px;}
.y54a_c00000{bottom:581.440500px;}
.yf1b_c00000{bottom:581.602500px;}
.y1567_c00000{bottom:581.626500px;}
.yeac_c00000{bottom:581.698500px;}
.y1494_c00000{bottom:581.952000px;}
.y2b3_c00000{bottom:582.193500px;}
.y6b7_c00000{bottom:582.694500px;}
.y11be_c00000{bottom:582.823500px;}
.y16c8_c00000{bottom:582.934500px;}
.ybf1_c00000{bottom:583.093500px;}
.y5b4_c00000{bottom:583.207500px;}
.y74a_c00000{bottom:583.462500px;}
.yb20_c00000{bottom:583.827000px;}
.y764_c00000{bottom:583.948500px;}
.yc9e_c00000{bottom:584.089500px;}
.yeba_c00000{bottom:584.131500px;}
.y683_c00000{bottom:584.164500px;}
.y216_c00000{bottom:584.188500px;}
.ya7_c00000{bottom:584.205000px;}
.y112a_c00000{bottom:584.268000px;}
.yffe_c00000{bottom:584.304000px;}
.y16b4_c00000{bottom:584.332500px;}
.y581_c00000{bottom:584.475000px;}
.y2d3_c00000{bottom:584.620500px;}
.y15c6_c00000{bottom:585.063000px;}
.yc66_c00000{bottom:585.132000px;}
.y230_c00000{bottom:585.192000px;}
.y163c_c00000{bottom:586.131000px;}
.y986_c00000{bottom:586.146000px;}
.y10f8_c00000{bottom:586.348500px;}
.ye20_c00000{bottom:586.582500px;}
.y18f8_c00000{bottom:586.680000px;}
.y11e8_c00000{bottom:586.720500px;}
.y46f_c00000{bottom:586.912500px;}
.yf6b_c00000{bottom:586.924500px;}
.y36d_c00000{bottom:586.948500px;}
.yc17_c00000{bottom:587.310000px;}
.y3e_c00000{bottom:587.364000px;}
.y12eb_c00000{bottom:587.749500px;}
.y179a_c00000{bottom:587.802000px;}
.y16db_c00000{bottom:588.105000px;}
.y27d_c00000{bottom:588.778500px;}
.y1151_c00000{bottom:588.843000px;}
.y137f_c00000{bottom:588.904500px;}
.yd3d_c00000{bottom:589.588500px;}
.yb95_c00000{bottom:589.603500px;}
.ya6b_c00000{bottom:589.651500px;}
.y195_c00000{bottom:589.660500px;}
.yf9c_c00000{bottom:589.839000px;}
.y61_c00000{bottom:590.133000px;}
.ycdd_c00000{bottom:590.634000px;}
.y10e2_c00000{bottom:590.710500px;}
.y17d4_c00000{bottom:590.713500px;}
.y13e7_c00000{bottom:590.830500px;}
.y7f3_c00000{bottom:591.042000px;}
.ybbd_c00000{bottom:591.048000px;}
.y8ed_c00000{bottom:591.411000px;}
.y4aa_c00000{bottom:591.553500px;}
.y3e7_c00000{bottom:591.669000px;}
.ye34_c00000{bottom:591.810000px;}
.y110f_c00000{bottom:592.149000px;}
.y34b_c00000{bottom:592.291500px;}
.y1423_c00000{bottom:592.330500px;}
.y88a_c00000{bottom:592.467000px;}
.y44c_c00000{bottom:592.666500px;}
.ycd1_c00000{bottom:592.956000px;}
.y117c_c00000{bottom:593.130000px;}
.y59b_c00000{bottom:593.146500px;}
.y246_c00000{bottom:593.163000px;}
.y613_c00000{bottom:593.212500px;}
.y147f_c00000{bottom:593.316000px;}
.y4c8_c00000{bottom:593.421000px;}
.y670_c00000{bottom:593.502000px;}
.ya3e_c00000{bottom:593.527500px;}
.yc1_c00000{bottom:593.536500px;}
.yee1_c00000{bottom:594.310500px;}
.y18d6_c00000{bottom:594.616500px;}
.yfb8_c00000{bottom:594.784500px;}
.y1447_c00000{bottom:595.120500px;}
.yb77_c00000{bottom:595.353000px;}
.y1506_c00000{bottom:595.365000px;}
.y15_c00000{bottom:595.630440px;}
.y8c0_c00000{bottom:595.870500px;}
.y273_c00000{bottom:596.053500px;}
.yfd7_c00000{bottom:596.346000px;}
.y180b_c00000{bottom:596.353500px;}
.y12ab_c00000{bottom:596.368500px;}
.y1345_c00000{bottom:596.494500px;}
.y13f9_c00000{bottom:596.625000px;}
.ycbd_c00000{bottom:596.694000px;}
.y1691_c00000{bottom:596.899500px;}
.y12cb_c00000{bottom:596.908500px;}
.y5ee_c00000{bottom:597.123000px;}
.y157b_c00000{bottom:597.381000px;}
.y9a7_c00000{bottom:597.427500px;}
.y16f_c00000{bottom:597.441000px;}
.y18c8_c00000{bottom:597.516000px;}
.y7db_c00000{bottom:597.799500px;}
.ydde_c00000{bottom:597.876000px;}
.yaf2_c00000{bottom:598.104000px;}
.y1410_c00000{bottom:598.228500px;}
.y857_c00000{bottom:598.618500px;}
.y9cb_c00000{bottom:598.813500px;}
.y15fc_c00000{bottom:598.918500px;}
.y1072_c00000{bottom:598.926000px;}
.y328_c00000{bottom:599.116500px;}
.y384_c00000{bottom:599.133000px;}
.ye5_c00000{bottom:599.584500px;}
.ye5b_c00000{bottom:599.661000px;}
.y14eb_c00000{bottom:599.826000px;}
.y15df_c00000{bottom:600.357000px;}
.y159_c00000{bottom:600.619500px;}
.yd25_c00000{bottom:600.627000px;}
.yb33_c00000{bottom:600.751500px;}
.y1dc_c00000{bottom:600.868500px;}
.y172f_c00000{bottom:600.909000px;}
.y14c4_c00000{bottom:600.934500px;}
.yac4_c00000{bottom:601.005000px;}
.y650_c00000{bottom:601.026000px;}
.ydc2_c00000{bottom:601.036500px;}
.ybd1_c00000{bottom:601.122000px;}
.y193b_c00000{bottom:601.182000px;}
.yd97_c00000{bottom:601.470000px;}
.y183b_c00000{bottom:601.851000px;}
.y91d_c00000{bottom:601.855500px;}
.y539_c00000{bottom:601.869000px;}
.y123a_c00000{bottom:601.879500px;}
.y191b_c00000{bottom:601.948500px;}
.yd75_c00000{bottom:601.993500px;}
.y493_c00000{bottom:602.013000px;}
.ycfb_c00000{bottom:602.022000px;}
.y51f_c00000{bottom:602.038500px;}
.y9e3_c00000{bottom:602.097000px;}
.y265_c00000{bottom:602.121000px;}
.y13b_c00000{bottom:602.494500px;}
.y84_c00000{bottom:602.869500px;}
.yc35_c00000{bottom:602.946000px;}
.y1224_c00000{bottom:603.012000px;}
.yca6_c00000{bottom:603.259500px;}
.y3c8_c00000{bottom:603.375000px;}
.y163b_c00000{bottom:604.065000px;}
.y1365_c00000{bottom:604.089000px;}
.y123_c00000{bottom:604.348500px;}
.yd55_c00000{bottom:604.620000px;}
.y11fb_c00000{bottom:604.845000px;}
.y103e_c00000{bottom:605.349000px;}
.y119d_c00000{bottom:605.508000px;}
.y3a2_c00000{bottom:605.952000px;}
.y10a4_c00000{bottom:606.090000px;}
.y72a_c00000{bottom:606.099000px;}
.yf50_c00000{bottom:606.355500px;}
.y131b_c00000{bottom:606.480000px;}
.y1770_c00000{bottom:606.589500px;}
.y2ed_c00000{bottom:606.597000px;}
.y14a9_c00000{bottom:606.738000px;}
.y17e8_c00000{bottom:607.525500px;}
.ya57_c00000{bottom:608.091000px;}
.y634_c00000{bottom:608.221500px;}
.y5d7_c00000{bottom:608.331000px;}
.yf1a_c00000{bottom:608.493000px;}
.y1566_c00000{bottom:608.517000px;}
.y1248_c00000{bottom:608.589000px;}
.y2b2_c00000{bottom:609.084000px;}
.y6b6_c00000{bottom:609.585000px;}
.y16c7_c00000{bottom:609.826500px;}
.y5b3_c00000{bottom:610.099500px;}
.y749_c00000{bottom:610.353000px;}
.yb1f_c00000{bottom:610.717500px;}
.y763_c00000{bottom:610.839000px;}
.yc9d_c00000{bottom:610.980000px;}
.yeb9_c00000{bottom:611.022000px;}
.y682_c00000{bottom:611.055000px;}
.y215_c00000{bottom:611.079000px;}
.ya6_c00000{bottom:611.095500px;}
.y1129_c00000{bottom:611.158500px;}
.yffd_c00000{bottom:611.196000px;}
.y16b3_c00000{bottom:611.223000px;}
.y580_c00000{bottom:611.365500px;}
.y2d2_c00000{bottom:611.511000px;}
.y15c5_c00000{bottom:611.953500px;}
.yc65_c00000{bottom:612.024000px;}
.y1150_c00000{bottom:612.199500px;}
.y985_c00000{bottom:613.038000px;}
.y10f7_c00000{bottom:613.240500px;}
.ye1f_c00000{bottom:613.473000px;}
.y18f7_c00000{bottom:613.570500px;}
.y11e7_c00000{bottom:613.612500px;}
.ye9c_c00000{bottom:613.645500px;}
.yf6a_c00000{bottom:613.816500px;}
.y36c_c00000{bottom:613.839000px;}
.yc16_c00000{bottom:614.202000px;}
.y12ea_c00000{bottom:614.641500px;}
.y1799_c00000{bottom:614.692500px;}
.y16da_c00000{bottom:614.995500px;}
.y14ff_c00000{bottom:615.180000px;}
.y16e_c00000{bottom:615.373500px;}
.y14_c00000{bottom:615.605220px;}
.y27c_c00000{bottom:615.670500px;}
.y137e_c00000{bottom:615.795000px;}
.y549_c00000{bottom:616.053000px;}
.yb94_c00000{bottom:616.495500px;}
.y194_c00000{bottom:616.551000px;}
.y1fc_c00000{bottom:616.617000px;}
.yf9b_c00000{bottom:616.729500px;}
.y60_c00000{bottom:617.023500px;}
.ycdc_c00000{bottom:617.524500px;}
.y10e1_c00000{bottom:617.601000px;}
.y13e6_c00000{bottom:617.721000px;}
.y7f2_c00000{bottom:617.934000px;}
.ybbc_c00000{bottom:617.938500px;}
.y8ec_c00000{bottom:618.303000px;}
.y4a9_c00000{bottom:618.444000px;}
.y3e6_c00000{bottom:618.559500px;}
.y1304_c00000{bottom:618.700500px;}
.y110e_c00000{bottom:619.039500px;}
.y34a_c00000{bottom:619.182000px;}
.y1422_c00000{bottom:619.221000px;}
.y889_c00000{bottom:619.359000px;}
.y44b_c00000{bottom:619.557000px;}
.y117b_c00000{bottom:620.020500px;}
.y104f_c00000{bottom:620.053500px;}
.y245_c00000{bottom:620.055000px;}
.y612_c00000{bottom:620.103000px;}
.y147e_c00000{bottom:620.206500px;}
.y66f_c00000{bottom:620.394000px;}
.ya3d_c00000{bottom:620.418000px;}
.yc0_c00000{bottom:620.428500px;}
.y18b8_c00000{bottom:620.841000px;}
.yfb7_c00000{bottom:621.676500px;}
.y1446_c00000{bottom:622.011000px;}
.yb76_c00000{bottom:622.245000px;}
.y8bf_c00000{bottom:622.761000px;}
.yfd6_c00000{bottom:623.236500px;}
.y180a_c00000{bottom:623.244000px;}
.y12aa_c00000{bottom:623.259000px;}
.y1344_c00000{bottom:623.386500px;}
.y13f8_c00000{bottom:623.517000px;}
.ycbc_c00000{bottom:623.584500px;}
.y1690_c00000{bottom:623.790000px;}
.y12ca_c00000{bottom:623.799000px;}
.y11bd_c00000{bottom:623.851500px;}
.y5ed_c00000{bottom:624.015000px;}
.ya6a_c00000{bottom:624.264000px;}
.ya2a_c00000{bottom:624.271500px;}
.y9a6_c00000{bottom:624.318000px;}
.y18c7_c00000{bottom:624.406500px;}
.yfeb_c00000{bottom:624.588000px;}
.y7da_c00000{bottom:624.691500px;}
.yddd_c00000{bottom:624.768000px;}
.y140f_c00000{bottom:625.119000px;}
.y856_c00000{bottom:625.509000px;}
.y9ca_c00000{bottom:625.704000px;}
.y15fb_c00000{bottom:625.810500px;}
.y1071_c00000{bottom:625.816500px;}
.y327_c00000{bottom:626.007000px;}
.y383_c00000{bottom:626.023500px;}
.ye4_c00000{bottom:626.475000px;}
.ye5a_c00000{bottom:626.551500px;}
.y14ea_c00000{bottom:626.716500px;}
.yd3c_c00000{bottom:627.234000px;}
.y15de_c00000{bottom:627.247500px;}
.y163a_c00000{bottom:627.420000px;}
.y158_c00000{bottom:627.510000px;}
.yd24_c00000{bottom:627.517500px;}
.yb32_c00000{bottom:627.642000px;}
.y1db_c00000{bottom:627.759000px;}
.y17d3_c00000{bottom:627.796500px;}
.y172e_c00000{bottom:627.799500px;}
.ybf0_c00000{bottom:627.820500px;}
.y14c3_c00000{bottom:627.826500px;}
.y139a_c00000{bottom:627.891000px;}
.yac3_c00000{bottom:627.895500px;}
.y64f_c00000{bottom:627.916500px;}
.ydc1_c00000{bottom:627.927000px;}
.ybd0_c00000{bottom:628.012500px;}
.y193a_c00000{bottom:628.072500px;}
.yd96_c00000{bottom:628.360500px;}
.y183a_c00000{bottom:628.741500px;}
.y538_c00000{bottom:628.761000px;}
.y1239_c00000{bottom:628.770000px;}
.yd74_c00000{bottom:628.884000px;}
.y492_c00000{bottom:628.903500px;}
.ycfa_c00000{bottom:628.914000px;}
.yee0_c00000{bottom:628.921500px;}
.y264_c00000{bottom:629.013000px;}
.y13a_c00000{bottom:629.385000px;}
.y83_c00000{bottom:629.760000px;}
.yc34_c00000{bottom:629.836500px;}
.yca5_c00000{bottom:630.150000px;}
.y3c7_c00000{bottom:630.265500px;}
.y1364_c00000{bottom:630.979500px;}
.y122_c00000{bottom:631.239000px;}
.yd54_c00000{bottom:631.512000px;}
.yc74_c00000{bottom:631.735500px;}
.y3d_c00000{bottom:631.815000px;}
.y103d_c00000{bottom:632.239500px;}
.y190f_c00000{bottom:632.292000px;}
.y119c_c00000{bottom:632.398500px;}
.y3a1_c00000{bottom:632.842500px;}
.y10a3_c00000{bottom:632.980500px;}
.y729_c00000{bottom:632.989500px;}
.yf4f_c00000{bottom:633.246000px;}
.y16d_c00000{bottom:633.307500px;}
.y2ec_c00000{bottom:633.487500px;}
.y14a8_c00000{bottom:633.628500px;}
.y17e7_c00000{bottom:634.416000px;}
.ya56_c00000{bottom:634.981500px;}
.y4c7_c00000{bottom:635.167500px;}
.y5d6_c00000{bottom:635.223000px;}
.y1565_c00000{bottom:635.407500px;}
.y900_c00000{bottom:635.479500px;}
.y13_c00000{bottom:635.580000px;}
.y2b1_c00000{bottom:635.976000px;}
.y6b5_c00000{bottom:636.475500px;}
.y16c6_c00000{bottom:636.717000px;}
.y748_c00000{bottom:637.243500px;}
.yb1e_c00000{bottom:637.609500px;}
.y762_c00000{bottom:637.729500px;}
.yc9c_c00000{bottom:637.870500px;}
.yeb8_c00000{bottom:637.912500px;}
.y681_c00000{bottom:637.945500px;}
.y30b_c00000{bottom:637.971000px;}
.ya5_c00000{bottom:637.987500px;}
.y1128_c00000{bottom:638.050500px;}
.yffc_c00000{bottom:638.086500px;}
.y16b2_c00000{bottom:638.113500px;}
.y2d1_c00000{bottom:638.401500px;}
.y2d_c00000{bottom:638.667000px;}
.y15c4_c00000{bottom:638.844000px;}
.yc64_c00000{bottom:638.914500px;}
.yc45_c00000{bottom:639.199500px;}
.y984_c00000{bottom:639.928500px;}
.y10f6_c00000{bottom:640.131000px;}
.y18f6_c00000{bottom:640.461000px;}
.y11e6_c00000{bottom:640.503000px;}
.ye9b_c00000{bottom:640.537500px;}
.yf69_c00000{bottom:640.707000px;}
.yc15_c00000{bottom:641.092500px;}
.y12e9_c00000{bottom:641.532000px;}
.y16d9_c00000{bottom:641.886000px;}
.y27b_c00000{bottom:642.561000px;}
.y137d_c00000{bottom:642.685500px;}
.y633_c00000{bottom:642.834000px;}
.yf19_c00000{bottom:643.105500px;}
.yb93_c00000{bottom:643.386000px;}
.y193_c00000{bottom:643.441500px;}
.y1fb_c00000{bottom:643.507500px;}
.yf9a_c00000{bottom:643.621500px;}
.y5f_c00000{bottom:643.915500px;}
.yff_c00000{bottom:644.034000px;}
.ycdb_c00000{bottom:644.415000px;}
.yaf1_c00000{bottom:644.421000px;}
.y13e5_c00000{bottom:644.611500px;}
.y5b2_c00000{bottom:644.710500px;}
.y7f1_c00000{bottom:644.824500px;}
.ybbb_c00000{bottom:644.829000px;}
.y8eb_c00000{bottom:645.193500px;}
.y4a8_c00000{bottom:645.334500px;}
.y3e5_c00000{bottom:645.450000px;}
.y41a_c00000{bottom:645.451500px;}
.y110d_c00000{bottom:645.930000px;}
.y349_c00000{bottom:646.072500px;}
.y1421_c00000{bottom:646.111500px;}
.y888_c00000{bottom:646.249500px;}
.y44a_c00000{bottom:646.447500px;}
.y191a_c00000{bottom:646.858500px;}
.y11d4_c00000{bottom:646.896000px;}
.y51e_c00000{bottom:646.903500px;}
.y117a_c00000{bottom:646.911000px;}
.y244_c00000{bottom:646.945500px;}
.y611_c00000{bottom:646.993500px;}
.y66e_c00000{bottom:647.284500px;}
.ybf_c00000{bottom:647.319000px;}
.y1223_c00000{bottom:647.389500px;}
.y9e2_c00000{bottom:647.434500px;}
.y18b7_c00000{bottom:647.731500px;}
.ye1e_c00000{bottom:648.535500px;}
.yfb6_c00000{bottom:648.567000px;}
.ycd0_c00000{bottom:648.591000px;}
.y1445_c00000{bottom:648.901500px;}
.yb75_c00000{bottom:649.135500px;}
.y176f_c00000{bottom:649.179000px;}
.y8be_c00000{bottom:649.651500px;}
.yfd5_c00000{bottom:650.128500px;}
.y1809_c00000{bottom:650.136000px;}
.y1343_c00000{bottom:650.277000px;}
.y13f7_c00000{bottom:650.407500px;}
.y168f_c00000{bottom:650.682000px;}
.y12c9_c00000{bottom:650.689500px;}
.y11bc_c00000{bottom:650.742000px;}
.y5ec_c00000{bottom:650.905500px;}
.y1505_c00000{bottom:651.001500px;}
.y1ae_c00000{bottom:651.162000px;}
.y9a5_c00000{bottom:651.208500px;}
.y16c_c00000{bottom:651.240000px;}
.y18c6_c00000{bottom:651.298500px;}
.y7d9_c00000{bottom:651.582000px;}
.y57f_c00000{bottom:651.634500px;}
.yddc_c00000{bottom:651.658500px;}
.y272_c00000{bottom:651.690000px;}
.y140e_c00000{bottom:652.009500px;}
.y855_c00000{bottom:652.399500px;}
.y9c9_c00000{bottom:652.594500px;}
.y15fa_c00000{bottom:652.701000px;}
.y36b_c00000{bottom:652.804500px;}
.y382_c00000{bottom:652.914000px;}
.y1798_c00000{bottom:653.230500px;}
.ye3_c00000{bottom:653.365500px;}
.y14e9_c00000{bottom:653.607000px;}
.yd3b_c00000{bottom:654.124500px;}
.y15dd_c00000{bottom:654.139500px;}
.y157_c00000{bottom:654.400500px;}
.y46e_c00000{bottom:654.409500px;}
.yb31_c00000{bottom:654.534000px;}
.y1da_c00000{bottom:654.649500px;}
.y17d2_c00000{bottom:654.687000px;}
.y172d_c00000{bottom:654.690000px;}
.ybef_c00000{bottom:654.711000px;}
.y14c2_c00000{bottom:654.717000px;}
.y1399_c00000{bottom:654.781500px;}
.yac2_c00000{bottom:654.786000px;}
.y64e_c00000{bottom:654.808500px;}
.ydc0_c00000{bottom:654.817500px;}
.y1939_c00000{bottom:654.963000px;}
.yd95_c00000{bottom:655.251000px;}
.y1839_c00000{bottom:655.633500px;}
.y1238_c00000{bottom:655.660500px;}
.yd73_c00000{bottom:655.774500px;}
.y491_c00000{bottom:655.794000px;}
.ycf9_c00000{bottom:655.804500px;}
.y263_c00000{bottom:655.903500px;}
.y139_c00000{bottom:656.275500px;}
.y82_c00000{bottom:656.650500px;}
.y16b_c00000{bottom:656.662500px;}
.y194e_c00000{bottom:657.040500px;}
.y3c6_c00000{bottom:657.157500px;}
.y1363_c00000{bottom:657.871500px;}
.y121_c00000{bottom:658.131000px;}
.yd53_c00000{bottom:658.402500px;}
.y3c_c00000{bottom:658.705500px;}
.y103c_c00000{bottom:659.130000px;}
.y119b_c00000{bottom:659.289000px;}
.y3a0_c00000{bottom:659.734500px;}
.y10a2_c00000{bottom:659.872500px;}
.y728_c00000{bottom:659.880000px;}
.y12_c00000{bottom:659.890980px;}
.yf4e_c00000{bottom:660.138000px;}
.y10e0_c00000{bottom:660.250500px;}
.y6a1_c00000{bottom:660.378000px;}
.y14a7_c00000{bottom:660.519000px;}
.y17e6_c00000{bottom:661.306500px;}
.ya55_c00000{bottom:661.872000px;}
.y4c6_c00000{bottom:662.058000px;}
.y5d5_c00000{bottom:662.113500px;}
.y1564_c00000{bottom:662.298000px;}
.y83c_c00000{bottom:662.370000px;}
.ybcf_c00000{bottom:662.625000px;}
.y2b0_c00000{bottom:662.866500px;}
.y6b4_c00000{bottom:663.367500px;}
.y747_c00000{bottom:664.135500px;}
.yc33_c00000{bottom:664.449000px;}
.yb1d_c00000{bottom:664.500000px;}
.y761_c00000{bottom:664.620000px;}
.y1439_c00000{bottom:664.761000px;}
.yca4_c00000{bottom:664.762500px;}
.yeb7_c00000{bottom:664.803000px;}
.y147d_c00000{bottom:664.827000px;}
.y680_c00000{bottom:664.836000px;}
.y30a_c00000{bottom:664.861500px;}
.ya4_c00000{bottom:664.878000px;}
.yffb_c00000{bottom:664.977000px;}
.y2d0_c00000{bottom:665.293500px;}
.y15c3_c00000{bottom:665.734500px;}
.y537_c00000{bottom:666.810000px;}
.y983_c00000{bottom:666.819000px;}
.y10f5_c00000{bottom:667.021500px;}
.y118_c00000{bottom:667.138500px;}
.y18f5_c00000{bottom:667.351500px;}
.ye9a_c00000{bottom:667.428000px;}
.yf68_c00000{bottom:667.597500px;}
.yc14_c00000{bottom:667.983000px;}
.y12e8_c00000{bottom:668.422500px;}
.y16d8_c00000{bottom:668.778000px;}
.y27a_c00000{bottom:669.451500px;}
.y12a9_c00000{bottom:669.577500px;}
.yb92_c00000{bottom:670.276500px;}
.y192_c00000{bottom:670.332000px;}
.y1fa_c00000{bottom:670.398000px;}
.y5e_c00000{bottom:670.806000px;}
.y326_c00000{bottom:670.830000px;}
.yfe_c00000{bottom:670.924500px;}
.ycda_c00000{bottom:671.305500px;}
.yaf0_c00000{bottom:671.311500px;}
.y16c5_c00000{bottom:671.329500px;}
.y13e4_c00000{bottom:671.503500px;}
.y7f0_c00000{bottom:671.715000px;}
.ybba_c00000{bottom:671.719500px;}
.y8ea_c00000{bottom:672.084000px;}
.y4a7_c00000{bottom:672.225000px;}
.y3e4_c00000{bottom:672.342000px;}
.yc9b_c00000{bottom:672.483000px;}
.y110c_c00000{bottom:672.822000px;}
.y348_c00000{bottom:672.963000px;}
.y887_c00000{bottom:673.140000px;}
.y449_c00000{bottom:673.338000px;}
.y1919_c00000{bottom:673.749000px;}
.y11d3_c00000{bottom:673.786500px;}
.y51d_c00000{bottom:673.794000px;}
.y243_c00000{bottom:673.836000px;}
.y610_c00000{bottom:673.885500px;}
.y66d_c00000{bottom:674.175000px;}
.ybe_c00000{bottom:674.209500px;}
.y1222_c00000{bottom:674.281500px;}
.y9e1_c00000{bottom:674.326500px;}
.y18b6_c00000{bottom:674.622000px;}
.ye1d_c00000{bottom:675.426000px;}
.yfb5_c00000{bottom:675.457500px;}
.y1444_c00000{bottom:675.792000px;}
.yb74_c00000{bottom:676.026000px;}
.y176e_c00000{bottom:676.069500px;}
.y8bd_c00000{bottom:676.542000px;}
.yfd4_c00000{bottom:677.019000px;}
.y1808_c00000{bottom:677.026500px;}
.y1342_c00000{bottom:677.167500px;}
.y17b3_c00000{bottom:677.298000px;}
.y168e_c00000{bottom:677.572500px;}
.y12c8_c00000{bottom:677.580000px;}
.y11bb_c00000{bottom:677.632500px;}
.y5eb_c00000{bottom:677.796000px;}
.y430_c00000{bottom:678.054000px;}
.y9a4_c00000{bottom:678.099000px;}
.y18c5_c00000{bottom:678.189000px;}
.y1127_c00000{bottom:678.354000px;}
.y7d8_c00000{bottom:678.472500px;}
.y57e_c00000{bottom:678.525000px;}
.yddb_c00000{bottom:678.549000px;}
.y140d_c00000{bottom:678.901500px;}
.y854_c00000{bottom:679.290000px;}
.y1070_c00000{bottom:679.432500px;}
.y9c8_c00000{bottom:679.485000px;}
.y15f9_c00000{bottom:679.591500px;}
.y36a_c00000{bottom:679.695000px;}
.y846_c00000{bottom:679.804500px;}
.y2eb_c00000{bottom:679.806000px;}
.y1797_c00000{bottom:680.121000px;}
.ye2_c00000{bottom:680.257500px;}
.y14e8_c00000{bottom:680.499000px;}
.yd3a_c00000{bottom:681.015000px;}
.y15dc_c00000{bottom:681.030000px;}
.y46d_c00000{bottom:681.300000px;}
.y1d9_c00000{bottom:681.540000px;}
.y17d1_c00000{bottom:681.577500px;}
.y172c_c00000{bottom:681.580500px;}
.ybee_c00000{bottom:681.601500px;}
.y14c1_c00000{bottom:681.607500px;}
.y11e5_c00000{bottom:681.610500px;}
.y16b1_c00000{bottom:681.648000px;}
.y1398_c00000{bottom:681.672000px;}
.yac1_c00000{bottom:681.676500px;}
.y64d_c00000{bottom:681.699000px;}
.ydbf_c00000{bottom:681.709500px;}
.y1938_c00000{bottom:681.853500px;}
.y1420_c00000{bottom:681.946500px;}
.yd94_c00000{bottom:682.143000px;}
.y1838_c00000{bottom:682.524000px;}
.y1237_c00000{bottom:682.551000px;}
.yd72_c00000{bottom:682.666500px;}
.y490_c00000{bottom:682.684500px;}
.ycf8_c00000{bottom:682.695000px;}
.y262_c00000{bottom:682.794000px;}
.y138_c00000{bottom:683.166000px;}
.yc63_c00000{bottom:683.424000px;}
.y81_c00000{bottom:683.541000px;}
.y194d_c00000{bottom:683.931000px;}
.y3c5_c00000{bottom:684.048000px;}
.y14fe_c00000{bottom:684.591000px;}
.y1362_c00000{bottom:684.762000px;}
.y13f6_c00000{bottom:685.018500px;}
.y120_c00000{bottom:685.021500px;}
.yedf_c00000{bottom:685.111500px;}
.yd52_c00000{bottom:685.293000px;}
.y3b_c00000{bottom:685.596000px;}
.y103b_c00000{bottom:686.020500px;}
.y119a_c00000{bottom:686.179500px;}
.y10a1_c00000{bottom:686.763000px;}
.y727_c00000{bottom:686.770500px;}
.yf4d_c00000{bottom:687.028500px;}
.y10df_c00000{bottom:687.141000px;}
.y6a0_c00000{bottom:687.268500px;}
.y1755_c00000{bottom:687.375000px;}
.y14a6_c00000{bottom:687.411000px;}
.y17e5_c00000{bottom:688.197000px;}
.y1179_c00000{bottom:688.755000px;}
.ya54_c00000{bottom:688.764000px;}
.y4c5_c00000{bottom:688.948500px;}
.y5d4_c00000{bottom:689.004000px;}
.yb30_c00000{bottom:689.145000px;}
.y1563_c00000{bottom:689.190000px;}
.yf99_c00000{bottom:689.602500px;}
.y2af_c00000{bottom:689.757000px;}
.y6b3_c00000{bottom:690.258000px;}
.y746_c00000{bottom:691.026000px;}
.yb1c_c00000{bottom:691.390500px;}
.y760_c00000{bottom:691.512000px;}
.y101a_c00000{bottom:691.653000px;}
.yeb6_c00000{bottom:691.695000px;}
.y147c_c00000{bottom:691.719000px;}
.y67f_c00000{bottom:691.728000px;}
.y309_c00000{bottom:691.752000px;}
.ya3_c00000{bottom:691.768500px;}
.yffa_c00000{bottom:691.867500px;}
.y2cf_c00000{bottom:692.184000px;}
.y536_c00000{bottom:693.702000px;}
.y982_c00000{bottom:693.709500px;}
.y10f4_c00000{bottom:693.912000px;}
.yf18_c00000{bottom:693.978000px;}
.y18f4_c00000{bottom:694.243500px;}
.ye99_c00000{bottom:694.318500px;}
.yf67_c00000{bottom:694.488000px;}
.yc13_c00000{bottom:694.873500px;}
.y12e7_c00000{bottom:695.313000px;}
.y156_c00000{bottom:696.235500px;}
.y16f5_c00000{bottom:696.301500px;}
.y12a8_c00000{bottom:696.468000px;}
.yb91_c00000{bottom:697.167000px;}
.y191_c00000{bottom:697.224000px;}
.y1f9_c00000{bottom:697.288500px;}
.y39f_c00000{bottom:697.303500px;}
.y5d_c00000{bottom:697.696500px;}
.yfd_c00000{bottom:697.815000px;}
.ycd9_c00000{bottom:698.197500px;}
.yaef_c00000{bottom:698.203500px;}
.y13e3_c00000{bottom:698.394000px;}
.y7ef_c00000{bottom:698.605500px;}
.ybb9_c00000{bottom:698.611500px;}
.y4a6_c00000{bottom:699.115500px;}
.y3e3_c00000{bottom:699.232500px;}
.y110b_c00000{bottom:699.712500px;}
.y347_c00000{bottom:699.855000px;}
.y886_c00000{bottom:700.030500px;}
.y448_c00000{bottom:700.230000px;}
.y15c2_c00000{bottom:700.347000px;}
.y131a_c00000{bottom:700.444500px;}
.y1918_c00000{bottom:700.641000px;}
.y11d2_c00000{bottom:700.677000px;}
.y51c_c00000{bottom:700.684500px;}
.y242_c00000{bottom:700.726500px;}
.y60f_c00000{bottom:700.776000px;}
.y66c_c00000{bottom:701.065500px;}
.ybd_c00000{bottom:701.100000px;}
.y1221_c00000{bottom:701.172000px;}
.y9e0_c00000{bottom:701.217000px;}
.y18b5_c00000{bottom:701.514000px;}
.y632_c00000{bottom:702.186000px;}
.ye1c_c00000{bottom:702.316500px;}
.yfb4_c00000{bottom:702.348000px;}
.y1443_c00000{bottom:702.682500px;}
.yb73_c00000{bottom:702.916500px;}
.y176d_c00000{bottom:702.961500px;}
.y8bc_c00000{bottom:703.434000px;}
.y11_c00000{bottom:703.800000px;}
.yfd3_c00000{bottom:703.909500px;}
.y1341_c00000{bottom:704.058000px;}
.y279_c00000{bottom:704.064000px;}
.y17b2_c00000{bottom:704.188500px;}
.yccf_c00000{bottom:704.227500px;}
.y168d_c00000{bottom:704.463000px;}
.y12c7_c00000{bottom:704.472000px;}
.y11ba_c00000{bottom:704.523000px;}
.y5ea_c00000{bottom:704.686500px;}
.y9a3_c00000{bottom:704.991000px;}
.y18c4_c00000{bottom:705.079500px;}
.y1126_c00000{bottom:705.246000px;}
.y7d7_c00000{bottom:705.363000px;}
.y57d_c00000{bottom:705.417000px;}
.y140c_c00000{bottom:705.792000px;}
.y853_c00000{bottom:706.182000px;}
.y106f_c00000{bottom:706.323000px;}
.y9c7_c00000{bottom:706.377000px;}
.y15f8_c00000{bottom:706.482000px;}
.y369_c00000{bottom:706.585500px;}
.y1504_c00000{bottom:706.638000px;}
.y381_c00000{bottom:706.696500px;}
.y1796_c00000{bottom:707.013000px;}
.ye1_c00000{bottom:707.148000px;}
.y271_c00000{bottom:707.326500px;}
.y14e7_c00000{bottom:707.389500px;}
.y15db_c00000{bottom:707.920500px;}
.y2c_c00000{bottom:708.078000px;}
.y46c_c00000{bottom:708.190500px;}
.y1d8_c00000{bottom:708.432000px;}
.y17d0_c00000{bottom:708.468000px;}
.y172b_c00000{bottom:708.471000px;}
.ybed_c00000{bottom:708.493500px;}
.y14c0_c00000{bottom:708.498000px;}
.y11e4_c00000{bottom:708.501000px;}
.y16b0_c00000{bottom:708.538500px;}
.y1397_c00000{bottom:708.564000px;}
.yac0_c00000{bottom:708.568500px;}
.y64c_c00000{bottom:708.589500px;}
.ydbe_c00000{bottom:708.600000px;}
.y1937_c00000{bottom:708.745500px;}
.y141f_c00000{bottom:708.837000px;}
.yd93_c00000{bottom:709.033500px;}
.y1837_c00000{bottom:709.414500px;}
.y1236_c00000{bottom:709.441500px;}
.yd71_c00000{bottom:709.557000px;}
.y48f_c00000{bottom:709.575000px;}
.ycf7_c00000{bottom:709.585500px;}
.y261_c00000{bottom:709.684500px;}
.y137_c00000{bottom:710.058000px;}
.yc62_c00000{bottom:710.314500px;}
.y80_c00000{bottom:710.433000px;}
.y194c_c00000{bottom:710.823000px;}
.y3c4_c00000{bottom:710.938500px;}
.y11f_c00000{bottom:711.912000px;}
.yede_c00000{bottom:712.003500px;}
.yd51_c00000{bottom:712.183500px;}
.y3a_c00000{bottom:712.486500px;}
.y10a0_c00000{bottom:713.653500px;}
.y813_c00000{bottom:713.661000px;}
.yf4c_c00000{bottom:713.919000px;}
.y10de_c00000{bottom:714.033000px;}
.y69f_c00000{bottom:714.160500px;}
.y1754_c00000{bottom:714.265500px;}
.y14a5_c00000{bottom:714.301500px;}
.y17e4_c00000{bottom:715.089000px;}
.y1178_c00000{bottom:715.645500px;}
.ya53_c00000{bottom:715.654500px;}
.y4c4_c00000{bottom:715.839000px;}
.y5d3_c00000{bottom:715.894500px;}
.y1562_c00000{bottom:716.080500px;}
.yc98_c00000{bottom:716.152500px;}
.yf98_c00000{bottom:716.494500px;}
.y2ae_c00000{bottom:716.647500px;}
.y6b2_c00000{bottom:717.148500px;}
.y745_c00000{bottom:717.916500px;}
.yb1b_c00000{bottom:718.281000px;}
.y75f_c00000{bottom:718.402500px;}
.y1019_c00000{bottom:718.543500px;}
.yeb5_c00000{bottom:718.585500px;}
.y147b_c00000{bottom:718.609500px;}
.y308_c00000{bottom:718.642500px;}
.ya2_c00000{bottom:718.659000px;}
.yff9_c00000{bottom:718.759500px;}
.ydda_c00000{bottom:718.810500px;}
.y2ce_c00000{bottom:719.074500px;}
.y535_c00000{bottom:720.592500px;}
.yc32_c00000{bottom:720.654000px;}
.y10f3_c00000{bottom:720.804000px;}
.yf17_c00000{bottom:720.868500px;}
.y18f3_c00000{bottom:721.134000px;}
.yf66_c00000{bottom:721.380000px;}
.y726_c00000{bottom:721.383000px;}
.yc12_c00000{bottom:721.765500px;}
.y12e6_c00000{bottom:722.205000px;}
.y155_c00000{bottom:723.126000px;}
.y12a7_c00000{bottom:723.358500px;}
.y126e_c00000{bottom:723.616500px;}
.yb90_c00000{bottom:724.059000px;}
.y190_c00000{bottom:724.114500px;}
.y1f8_c00000{bottom:724.180500px;}
.y39e_c00000{bottom:724.194000px;}
.y5c_c00000{bottom:724.587000px;}
.yfc_c00000{bottom:724.707000px;}
.ycd8_c00000{bottom:725.088000px;}
.y7ee_c00000{bottom:725.497500px;}
.ybb8_c00000{bottom:725.502000px;}
.y2ea_c00000{bottom:726.123000px;}
.y67e_c00000{bottom:726.339000px;}
.y110a_c00000{bottom:726.603000px;}
.y346_c00000{bottom:726.745500px;}
.y885_c00000{bottom:726.921000px;}
.y447_c00000{bottom:727.120500px;}
.y11d1_c00000{bottom:727.567500px;}
.y51b_c00000{bottom:727.576500px;}
.y241_c00000{bottom:727.617000px;}
.y60e_c00000{bottom:727.666500px;}
.y66b_c00000{bottom:727.957500px;}
.ybc_c00000{bottom:727.992000px;}
.y1220_c00000{bottom:728.062500px;}
.y9df_c00000{bottom:728.107500px;}
.y103a_c00000{bottom:729.192000px;}
.ye1b_c00000{bottom:729.208500px;}
.yfb3_c00000{bottom:729.240000px;}
.y1199_c00000{bottom:729.310500px;}
.y1442_c00000{bottom:729.574500px;}
.yb72_c00000{bottom:729.808500px;}
.y176c_c00000{bottom:729.852000px;}
.y8bb_c00000{bottom:730.324500px;}
.yfd2_c00000{bottom:730.800000px;}
.y1340_c00000{bottom:730.950000px;}
.y1361_c00000{bottom:731.080500px;}
.y168c_c00000{bottom:731.353500px;}
.y12c6_c00000{bottom:731.362500px;}
.y11b9_c00000{bottom:731.415000px;}
.y5e9_c00000{bottom:731.578500px;}
.yc9a_c00000{bottom:731.835000px;}
.y9a2_c00000{bottom:731.881500px;}
.y18c3_c00000{bottom:731.970000px;}
.y1125_c00000{bottom:732.136500px;}
.y7d6_c00000{bottom:732.255000px;}
.y140b_c00000{bottom:732.682500px;}
.yaee_c00000{bottom:732.814500px;}
.y852_c00000{bottom:733.072500px;}
.y981_c00000{bottom:733.075500px;}
.y106e_c00000{bottom:733.213500px;}
.y9c6_c00000{bottom:733.267500px;}
.y14fd_c00000{bottom:733.290000px;}
.y15f7_c00000{bottom:733.374000px;}
.ye98_c00000{bottom:733.380000px;}
.y368_c00000{bottom:733.476000px;}
.y325_c00000{bottom:733.587000px;}
.y4a5_c00000{bottom:733.728000px;}
.y1795_c00000{bottom:733.903500px;}
.y14e6_c00000{bottom:734.280000px;}
.y15da_c00000{bottom:734.811000px;}
.y46b_c00000{bottom:735.081000px;}
.y1d7_c00000{bottom:735.322500px;}
.y172a_c00000{bottom:735.363000px;}
.ybec_c00000{bottom:735.384000px;}
.y14bf_c00000{bottom:735.390000px;}
.y11e3_c00000{bottom:735.391500px;}
.y16af_c00000{bottom:735.430500px;}
.y1396_c00000{bottom:735.454500px;}
.yabf_c00000{bottom:735.459000px;}
.y64b_c00000{bottom:735.480000px;}
.ydbd_c00000{bottom:735.490500px;}
.yd92_c00000{bottom:735.924000px;}
.y1235_c00000{bottom:736.333500px;}
.yd70_c00000{bottom:736.447500px;}
.y48e_c00000{bottom:736.467000px;}
.ycf6_c00000{bottom:736.477500px;}
.y260_c00000{bottom:736.576500px;}
.y136_c00000{bottom:736.948500px;}
.yc61_c00000{bottom:737.205000px;}
.y7f_c00000{bottom:737.323500px;}
.y3c3_c00000{bottom:737.829000px;}
.y11e_c00000{bottom:738.802500px;}
.yedd_c00000{bottom:738.894000px;}
.yd50_c00000{bottom:739.074000px;}
.y39_c00000{bottom:739.378500px;}
.y109f_c00000{bottom:740.544000px;}
.y812_c00000{bottom:740.553000px;}
.yf4b_c00000{bottom:740.809500px;}
.y10dd_c00000{bottom:740.923500px;}
.y13e2_c00000{bottom:741.003000px;}
.y69e_c00000{bottom:741.051000px;}
.y1753_c00000{bottom:741.157500px;}
.y14a4_c00000{bottom:741.192000px;}
.y17e3_c00000{bottom:741.979500px;}
.y1177_c00000{bottom:742.536000px;}
.ya52_c00000{bottom:742.545000px;}
.y4c3_c00000{bottom:742.731000px;}
.y5d2_c00000{bottom:742.786500px;}
.y7a2_c00000{bottom:743.043000px;}
.y18b4_c00000{bottom:743.083500px;}
.y10_c00000{bottom:743.235660px;}
.y1936_c00000{bottom:743.356500px;}
.yf97_c00000{bottom:743.385000px;}
.y141e_c00000{bottom:743.449500px;}
.y2ad_c00000{bottom:743.539500px;}
.y6b1_c00000{bottom:744.039000px;}
.yb1a_c00000{bottom:745.173000px;}
.y75e_c00000{bottom:745.293000px;}
.y1438_c00000{bottom:745.434000px;}
.yeb4_c00000{bottom:745.476000px;}
.y147a_c00000{bottom:745.500000px;}
.y307_c00000{bottom:745.534500px;}
.ya1_c00000{bottom:745.551000px;}
.yff8_c00000{bottom:745.650000px;}
.y57c_c00000{bottom:745.684500px;}
.ydd9_c00000{bottom:745.701000px;}
.y14a3_c00000{bottom:745.725000px;}
.yc31_c00000{bottom:747.544500px;}
.yf16_c00000{bottom:747.759000px;}
.y18f2_c00000{bottom:748.024500px;}
.yf65_c00000{bottom:748.270500px;}
.yb2f_c00000{bottom:748.498500px;}
.yc11_c00000{bottom:748.656000px;}
.y12e5_c00000{bottom:749.095500px;}
.y12a6_c00000{bottom:750.249000px;}
.yb8f_c00000{bottom:750.949500px;}
.y18f_c00000{bottom:751.005000px;}
.y1f7_c00000{bottom:751.071000px;}
.y5b_c00000{bottom:751.479000px;}
.ye0_c00000{bottom:751.597500px;}
.y7ed_c00000{bottom:752.388000px;}
.ybb7_c00000{bottom:752.392500px;}
.y117_c00000{bottom:752.662500px;}
.y2e9_c00000{bottom:753.013500px;}
.y1018_c00000{bottom:753.156000px;}
.y1109_c00000{bottom:753.493500px;}
.y345_c00000{bottom:753.636000px;}
.y2cd_c00000{bottom:753.687000px;}
.y884_c00000{bottom:753.813000px;}
.y446_c00000{bottom:754.011000px;}
.y1836_c00000{bottom:754.374000px;}
.y11d0_c00000{bottom:754.459500px;}
.y51a_c00000{bottom:754.467000px;}
.y45f_c00000{bottom:754.509000px;}
.y60d_c00000{bottom:754.557000px;}
.y66a_c00000{bottom:754.848000px;}
.ybb_c00000{bottom:754.882500px;}
.y121f_c00000{bottom:754.953000px;}
.y9de_c00000{bottom:754.998000px;}
.y1039_c00000{bottom:756.082500px;}
.ye1a_c00000{bottom:756.099000px;}
.yfb2_c00000{bottom:756.130500px;}
.y1198_c00000{bottom:756.201000px;}
.y1441_c00000{bottom:756.465000px;}
.yb71_c00000{bottom:756.699000px;}
.y176b_c00000{bottom:756.742500px;}
.y2b_c00000{bottom:756.777000px;}
.y8ba_c00000{bottom:757.215000px;}
.yfd1_c00000{bottom:757.692000px;}
.y1561_c00000{bottom:757.707000px;}
.y133f_c00000{bottom:757.840500px;}
.y1360_c00000{bottom:757.971000px;}
.y168b_c00000{bottom:758.244000px;}
.y12c5_c00000{bottom:758.253000px;}
.y11b8_c00000{bottom:758.305500px;}
.y5e8_c00000{bottom:758.469000px;}
.y534_c00000{bottom:758.643000px;}
.y9a1_c00000{bottom:758.772000px;}
.y1124_c00000{bottom:759.027000px;}
.y7d5_c00000{bottom:759.145500px;}
.ycd7_c00000{bottom:759.699000px;}
.y980_c00000{bottom:759.966000px;}
.y106d_c00000{bottom:760.104000px;}
.y9c5_c00000{bottom:760.158000px;}
.y15f6_c00000{bottom:760.264500px;}
.ye97_c00000{bottom:760.270500px;}
.y367_c00000{bottom:760.368000px;}
.y324_c00000{bottom:760.477500px;}
.y1794_c00000{bottom:760.794000px;}
.y14e5_c00000{bottom:761.170500px;}
.y39d_c00000{bottom:761.763000px;}
.y108b_c00000{bottom:761.971500px;}
.y46a_c00000{bottom:761.973000px;}
.y1d6_c00000{bottom:762.213000px;}
.y1729_c00000{bottom:762.253500px;}
.ybeb_c00000{bottom:762.274500px;}
.y14be_c00000{bottom:762.280500px;}
.y11e2_c00000{bottom:762.282000px;}
.y16ae_c00000{bottom:762.321000px;}
.y1395_c00000{bottom:762.345000px;}
.yabe_c00000{bottom:762.349500px;}
.y64a_c00000{bottom:762.372000px;}
.ydbc_c00000{bottom:762.381000px;}
.yd91_c00000{bottom:762.814500px;}
.y744_c00000{bottom:762.982500px;}
.yf_c00000{bottom:763.210440px;}
.y1234_c00000{bottom:763.224000px;}
.yd6f_c00000{bottom:763.338000px;}
.y48d_c00000{bottom:763.357500px;}
.ycf5_c00000{bottom:763.368000px;}
.y25f_c00000{bottom:763.467000px;}
.yc60_c00000{bottom:764.095500px;}
.y7e_c00000{bottom:764.214000px;}
.y16d7_c00000{bottom:764.719500px;}
.y3c2_c00000{bottom:764.721000px;}
.y10f2_c00000{bottom:764.907000px;}
.y154_c00000{bottom:764.961000px;}
.y11d_c00000{bottom:765.694500px;}
.yd4f_c00000{bottom:765.966000px;}
.y38_c00000{bottom:766.269000px;}
.y166a_c00000{bottom:767.434500px;}
.y811_c00000{bottom:767.443500px;}
.y851_c00000{bottom:767.683500px;}
.yf4a_c00000{bottom:767.701500px;}
.y10dc_c00000{bottom:767.814000px;}
.y13e1_c00000{bottom:767.895000px;}
.y69d_c00000{bottom:767.941500px;}
.yfb_c00000{bottom:769.156500px;}
.ya51_c00000{bottom:769.435500px;}
.y631_c00000{bottom:769.450500px;}
.y5d1_c00000{bottom:769.677000px;}
.yb5d_c00000{bottom:769.933500px;}
.yf96_c00000{bottom:770.275500px;}
.y2ac_c00000{bottom:770.430000px;}
.y6b0_c00000{bottom:770.931000px;}
.yb19_c00000{bottom:772.063500px;}
.y75d_c00000{bottom:772.183500px;}
.y1437_c00000{bottom:772.324500px;}
.y195f_c00000{bottom:772.326000px;}
.yeb3_c00000{bottom:772.366500px;}
.y1479_c00000{bottom:772.390500px;}
.y306_c00000{bottom:772.425000px;}
.ya0_c00000{bottom:772.441500px;}
.yff7_c00000{bottom:772.540500px;}
.y57b_c00000{bottom:772.576500px;}
.ydd8_c00000{bottom:772.591500px;}
.yc30_c00000{bottom:774.435000px;}
.y109e_c00000{bottom:775.156500px;}
.yf64_c00000{bottom:775.161000px;}
.y14a2_c00000{bottom:775.804500px;}
.y12e4_c00000{bottom:775.986000px;}
.y12a5_c00000{bottom:777.141000px;}
.y67d_c00000{bottom:777.397500px;}
.yb8e_c00000{bottom:777.840000px;}
.y18e_c00000{bottom:777.895500px;}
.y1f6_c00000{bottom:777.961500px;}
.y5a_c00000{bottom:778.369500px;}
.ydf_c00000{bottom:778.488000px;}
.y7ec_c00000{bottom:779.278500px;}
.ybb6_c00000{bottom:779.283000px;}
.y2e8_c00000{bottom:779.905500px;}
.y1108_c00000{bottom:780.385500px;}
.y344_c00000{bottom:780.526500px;}
.y883_c00000{bottom:780.703500px;}
.y445_c00000{bottom:780.901500px;}
.y1835_c00000{bottom:781.264500px;}
.y11cf_c00000{bottom:781.350000px;}
.y519_c00000{bottom:781.357500px;}
.y45e_c00000{bottom:781.399500px;}
.y60c_c00000{bottom:781.447500px;}
.y669_c00000{bottom:781.738500px;}
.yba_c00000{bottom:781.773000px;}
.y121e_c00000{bottom:781.845000px;}
.y9dd_c00000{bottom:781.890000px;}
.yedc_c00000{bottom:782.446500px;}
.y18f1_c00000{bottom:782.637000px;}
.y1038_c00000{bottom:782.973000px;}
.ye19_c00000{bottom:782.989500px;}
.yfb1_c00000{bottom:783.021000px;}
.y1197_c00000{bottom:783.093000px;}
.ye_c00000{bottom:783.185220px;}
.y1440_c00000{bottom:783.355500px;}
.yb70_c00000{bottom:783.589500px;}
.y176a_c00000{bottom:783.633000px;}
.y17e2_c00000{bottom:784.101000px;}
.y8b9_c00000{bottom:784.105500px;}
.y1176_c00000{bottom:784.380000px;}
.y4c2_c00000{bottom:784.476000px;}
.yfd0_c00000{bottom:784.582500px;}
.y1560_c00000{bottom:784.597500px;}
.y18b3_c00000{bottom:784.653000px;}
.y133e_c00000{bottom:784.731000px;}
.y135f_c00000{bottom:784.861500px;}
.y168a_c00000{bottom:785.136000px;}
.y12c4_c00000{bottom:785.143500px;}
.y11b7_c00000{bottom:785.196000px;}
.y5e7_c00000{bottom:785.359500px;}
.y533_c00000{bottom:785.533500px;}
.ya9a_c00000{bottom:785.617500px;}
.y9a0_c00000{bottom:785.662500px;}
.y1123_c00000{bottom:785.917500px;}
.y7d4_c00000{bottom:786.036000px;}
.y97f_c00000{bottom:786.858000px;}
.y106c_c00000{bottom:786.996000px;}
.y9c4_c00000{bottom:787.048500px;}
.y15f5_c00000{bottom:787.155000px;}
.ye96_c00000{bottom:787.162500px;}
.y366_c00000{bottom:787.258500px;}
.y591_c00000{bottom:787.368000px;}
.y10bb_c00000{bottom:787.369500px;}
.y1752_c00000{bottom:787.440000px;}
.y1793_c00000{bottom:787.684500px;}
.y14e4_c00000{bottom:788.062500px;}
.y39c_c00000{bottom:788.653500px;}
.y108a_c00000{bottom:788.863500px;}
.y1d5_c00000{bottom:789.103500px;}
.y1728_c00000{bottom:789.144000px;}
.ybea_c00000{bottom:789.165000px;}
.y11e1_c00000{bottom:789.172500px;}
.y16ad_c00000{bottom:789.211500px;}
.y1394_c00000{bottom:789.235500px;}
.yabd_c00000{bottom:789.240000px;}
.y649_c00000{bottom:789.262500px;}
.ydbb_c00000{bottom:789.273000px;}
.yf15_c00000{bottom:789.289500px;}
.yd90_c00000{bottom:789.706500px;}
.ycce_c00000{bottom:789.751500px;}
.y743_c00000{bottom:789.873000px;}
.yd6e_c00000{bottom:790.230000px;}
.y48c_c00000{bottom:790.248000px;}
.y25e_c00000{bottom:790.357500px;}
.y7d_c00000{bottom:791.104500px;}
.y3c1_c00000{bottom:791.611500px;}
.y153_c00000{bottom:791.851500px;}
.y1503_c00000{bottom:792.162000px;}
.y11c_c00000{bottom:792.585000px;}
.y270_c00000{bottom:792.850500px;}
.y4a4_c00000{bottom:793.080000px;}
.y1669_c00000{bottom:794.326500px;}
.y810_c00000{bottom:794.334000px;}
.yf49_c00000{bottom:794.592000px;}
.y10db_c00000{bottom:794.704500px;}
.y13e0_c00000{bottom:794.785500px;}
.y1319_c00000{bottom:794.832000px;}
.yc10_c00000{bottom:794.973000px;}
.yfa_c00000{bottom:796.047000px;}
.ya50_c00000{bottom:796.327500px;}
.y630_c00000{bottom:796.342500px;}
.y5d0_c00000{bottom:796.567500px;}
.y929_c00000{bottom:796.825500px;}
.y14bd_c00000{bottom:796.891500px;}
.yf95_c00000{bottom:797.166000px;}
.y2ab_c00000{bottom:797.320500px;}
.y6af_c00000{bottom:797.821500px;}
.y75c_c00000{bottom:799.075500px;}
.y1436_c00000{bottom:799.216500px;}
.yeb2_c00000{bottom:799.258500px;}
.y305_c00000{bottom:799.315500px;}
.y9f_c00000{bottom:799.332000px;}
.yff6_c00000{bottom:799.431000px;}
.y57a_c00000{bottom:799.467000px;}
.ydd7_c00000{bottom:799.482000px;}
.yc2f_c00000{bottom:801.327000px;}
.yf63_c00000{bottom:802.051500px;}
.yd_c00000{bottom:803.160000px;}
.yb8d_c00000{bottom:804.730500px;}
.ye06_c00000{bottom:804.786000px;}
.y1211_c00000{bottom:804.787500px;}
.y1f5_c00000{bottom:804.852000px;}
.y59_c00000{bottom:805.260000px;}
.yde_c00000{bottom:805.378500px;}
.yb18_c00000{bottom:806.674500px;}
.y2e7_c00000{bottom:806.796000px;}
.y1478_c00000{bottom:807.003000px;}
.y1107_c00000{bottom:807.276000px;}
.y343_c00000{bottom:807.417000px;}
.y882_c00000{bottom:807.594000px;}
.y444_c00000{bottom:807.792000px;}
.y1834_c00000{bottom:808.155000px;}
.ycf4_c00000{bottom:808.240500px;}
.y518_c00000{bottom:808.248000px;}
.y45d_c00000{bottom:808.290000px;}
.y60b_c00000{bottom:808.339500px;}
.yc5f_c00000{bottom:808.605000px;}
.y668_c00000{bottom:808.629000px;}
.yb9_c00000{bottom:808.663500px;}
.y9dc_c00000{bottom:808.780500px;}
.y10f1_c00000{bottom:809.010000px;}
.yedb_c00000{bottom:809.337000px;}
.yd4e_c00000{bottom:809.539500px;}
.y1037_c00000{bottom:809.863500px;}
.ye18_c00000{bottom:809.880000px;}
.yfb0_c00000{bottom:809.911500px;}
.y1196_c00000{bottom:809.983500px;}
.y143f_c00000{bottom:810.246000px;}
.yb6f_c00000{bottom:810.480000px;}
.y1769_c00000{bottom:810.525000px;}
.y37_c00000{bottom:810.718500px;}
.y17e1_c00000{bottom:810.991500px;}
.y1175_c00000{bottom:811.270500px;}
.y4c1_c00000{bottom:811.368000px;}
.yfcf_c00000{bottom:811.473000px;}
.y155f_c00000{bottom:811.488000px;}
.y18b2_c00000{bottom:811.543500px;}
.y133d_c00000{bottom:811.621500px;}
.y12a4_c00000{bottom:811.752000px;}
.y1689_c00000{bottom:812.026500px;}
.y12c3_c00000{bottom:812.034000px;}
.y11b6_c00000{bottom:812.086500px;}
.y5e6_c00000{bottom:812.250000px;}
.y532_c00000{bottom:812.424000px;}
.y18d_c00000{bottom:812.508000px;}
.y99f_c00000{bottom:812.554500px;}
.y1122_c00000{bottom:812.809500px;}
.y7d3_c00000{bottom:812.926500px;}
.y2cc_c00000{bottom:813.039000px;}
.y97e_c00000{bottom:813.748500px;}
.y106b_c00000{bottom:813.886500px;}
.ybb5_c00000{bottom:813.895500px;}
.y9c3_c00000{bottom:813.939000px;}
.y15f4_c00000{bottom:814.045500px;}
.ye95_c00000{bottom:814.053000px;}
.y365_c00000{bottom:814.149000px;}
.y5c7_c00000{bottom:814.260000px;}
.y1751_c00000{bottom:814.330500px;}
.y12e3_c00000{bottom:814.549500px;}
.y1792_c00000{bottom:814.576500px;}
.y14e3_c00000{bottom:814.953000px;}
.y39b_c00000{bottom:815.544000px;}
.y1089_c00000{bottom:815.754000px;}
.y1d4_c00000{bottom:815.994000px;}
.y831_c00000{bottom:815.995500px;}
.y1727_c00000{bottom:816.034500px;}
.ybe9_c00000{bottom:816.057000px;}
.y16ac_c00000{bottom:816.102000px;}
.yabc_c00000{bottom:816.132000px;}
.y648_c00000{bottom:816.153000px;}
.ydba_c00000{bottom:816.163500px;}
.yf14_c00000{bottom:816.180000px;}
.y7eb_c00000{bottom:816.196500px;}
.yd8f_c00000{bottom:816.597000px;}
.y742_c00000{bottom:816.763500px;}
.yd6d_c00000{bottom:817.120500px;}
.y48b_c00000{bottom:817.138500px;}
.y25d_c00000{bottom:817.248000px;}
.y7c_c00000{bottom:817.996500px;}
.y3c0_c00000{bottom:818.502000px;}
.y8b8_c00000{bottom:818.718000px;}
.y1668_c00000{bottom:821.217000px;}
.y80f_c00000{bottom:821.224500px;}
.y10da_c00000{bottom:821.596500px;}
.y13df_c00000{bottom:821.676000px;}
.y1318_c00000{bottom:821.724000px;}
.yc0f_c00000{bottom:821.865000px;}
.ya4f_c00000{bottom:823.218000px;}
.y62f_c00000{bottom:823.233000px;}
.y5cf_c00000{bottom:823.458000px;}
.y135_c00000{bottom:823.615500px;}
.y125e_c00000{bottom:823.716000px;}
.y1393_c00000{bottom:823.848000px;}
.y6ae_c00000{bottom:824.712000px;}
.y8e9_c00000{bottom:825.966000px;}
.y1435_c00000{bottom:826.107000px;}
.yeb1_c00000{bottom:826.149000px;}
.y9e_c00000{bottom:826.222500px;}
.yff5_c00000{bottom:826.321500px;}
.y579_c00000{bottom:826.357500px;}
.yc2e_c00000{bottom:828.217500px;}
.yf48_c00000{bottom:829.203000px;}
.y11e0_c00000{bottom:830.280000px;}
.y135e_c00000{bottom:831.180000px;}
.ye05_c00000{bottom:831.678000px;}
.y58_c00000{bottom:832.150500px;}
.yc_c00000{bottom:832.680000px;}
.y152_c00000{bottom:833.686500px;}
.y342_c00000{bottom:834.309000px;}
.y881_c00000{bottom:834.484500px;}
.ycd6_c00000{bottom:834.951000px;}
.y1833_c00000{bottom:835.045500px;}
.ycf3_c00000{bottom:835.131000px;}
.y517_c00000{bottom:835.140000px;}
.y14a1_c00000{bottom:835.156500px;}
.y45c_c00000{bottom:835.180500px;}
.y60a_c00000{bottom:835.230000px;}
.yc5e_c00000{bottom:835.495500px;}
.y667_c00000{bottom:835.521000px;}
.yb8_c00000{bottom:835.555500px;}
.y10f0_c00000{bottom:835.900500px;}
.yeda_c00000{bottom:836.229000px;}
.yd4d_c00000{bottom:836.430000px;}
.yf62_c00000{bottom:836.664000px;}
.y1036_c00000{bottom:836.755500px;}
.ye17_c00000{bottom:836.772000px;}
.yfaf_c00000{bottom:836.803500px;}
.y1195_c00000{bottom:836.874000px;}
.yb6e_c00000{bottom:837.372000px;}
.y1768_c00000{bottom:837.415500px;}
.y17e0_c00000{bottom:837.883500px;}
.y1174_c00000{bottom:838.161000px;}
.y1251_c00000{bottom:838.219500px;}
.y4c0_c00000{bottom:838.258500px;}
.yfce_c00000{bottom:838.363500px;}
.y155e_c00000{bottom:838.378500px;}
.y18b1_c00000{bottom:838.435500px;}
.y133c_c00000{bottom:838.512000px;}
.y1688_c00000{bottom:838.917000px;}
.y12c2_c00000{bottom:838.926000px;}
.y11b5_c00000{bottom:838.978500px;}
.y5e5_c00000{bottom:839.142000px;}
.y531_c00000{bottom:839.314500px;}
.y1169_c00000{bottom:839.398500px;}
.y99e_c00000{bottom:839.445000px;}
.y1f4_c00000{bottom:839.464500px;}
.y1121_c00000{bottom:839.700000px;}
.ydd6_c00000{bottom:839.743500px;}
.y7d2_c00000{bottom:839.818500px;}
.y2cb_c00000{bottom:839.938500px;}
.y97d_c00000{bottom:840.639000px;}
.y106a_c00000{bottom:840.777000px;}
.y9c2_c00000{bottom:840.831000px;}
.y15f3_c00000{bottom:840.937500px;}
.ye94_c00000{bottom:840.943500px;}
.y69c_c00000{bottom:841.150500px;}
.y1750_c00000{bottom:841.221000px;}
.y12e2_c00000{bottom:841.441500px;}
.y1791_c00000{bottom:841.467000px;}
.y150b_c00000{bottom:842.181000px;}
.y39a_c00000{bottom:842.436000px;}
.y1088_c00000{bottom:842.644500px;}
.y2aa_c00000{bottom:842.809500px;}
.y830_c00000{bottom:842.886000px;}
.y1726_c00000{bottom:842.926500px;}
.ybe8_c00000{bottom:842.947500px;}
.y16ab_c00000{bottom:842.994000px;}
.yabb_c00000{bottom:843.022500px;}
.yf13_c00000{bottom:843.070500px;}
.y7ea_c00000{bottom:843.087000px;}
.yb8c_c00000{bottom:843.190500px;}
.yd8e_c00000{bottom:843.487500px;}
.y443_c00000{bottom:843.898500px;}
.yd6c_c00000{bottom:844.011000px;}
.y48a_c00000{bottom:844.030500px;}
.y25c_c00000{bottom:844.138500px;}
.y278_c00000{bottom:844.246500px;}
.y3bf_c00000{bottom:845.392500px;}
.ye93_c00000{bottom:845.476500px;}
.y304_c00000{bottom:845.634000px;}
.y17b1_c00000{bottom:846.364500px;}
.y1667_c00000{bottom:848.107500px;}
.y912_c00000{bottom:848.116500px;}
.y10d9_c00000{bottom:848.487000px;}
.y13de_c00000{bottom:848.566500px;}
.ydd_c00000{bottom:849.829500px;}
.ya4e_c00000{bottom:850.108500px;}
.y62e_c00000{bottom:850.123500px;}
.y5ce_c00000{bottom:850.350000px;}
.y1d3_c00000{bottom:850.606500px;}
.y6ad_c00000{bottom:851.602500px;}
.y8e8_c00000{bottom:852.856500px;}
.y1434_c00000{bottom:852.997500px;}
.yeb0_c00000{bottom:853.039500px;}
.y9d_c00000{bottom:853.114500px;}
.y1935_c00000{bottom:853.212000px;}
.yff4_c00000{bottom:853.213500px;}
.y578_c00000{bottom:853.248000px;}
.y36_c00000{bottom:855.168000px;}
.y80e_c00000{bottom:855.837000px;}
.yc0e_c00000{bottom:856.476000px;}
.y11df_c00000{bottom:857.170500px;}
.y135d_c00000{bottom:858.070500px;}
.ye04_c00000{bottom:858.568500px;}
.y57_c00000{bottom:859.042500px;}
.y32_c00000{bottom:859.702500px;}
.y151_c00000{bottom:860.577000px;}
.y195e_c00000{bottom:860.719500px;}
.yf94_c00000{bottom:860.913000px;}
.y341_c00000{bottom:861.199500px;}
.y647_c00000{bottom:861.525000px;}
.ydb9_c00000{bottom:861.529500px;}
.y741_c00000{bottom:861.829500px;}
.ycd5_c00000{bottom:861.841500px;}
.ycf2_c00000{bottom:862.023000px;}
.y516_c00000{bottom:862.030500px;}
.y45b_c00000{bottom:862.072500px;}
.y609_c00000{bottom:862.120500px;}
.yc5d_c00000{bottom:862.386000px;}
.y666_c00000{bottom:862.411500px;}
.y7b_c00000{bottom:862.446000px;}
.y10ef_c00000{bottom:862.792500px;}
.yb17_c00000{bottom:862.875000px;}
.yed9_c00000{bottom:863.119500px;}
.yd4c_c00000{bottom:863.322000px;}
.ye16_c00000{bottom:863.662500px;}
.yfae_c00000{bottom:863.694000px;}
.y1194_c00000{bottom:863.764500px;}
.yb6d_c00000{bottom:864.262500px;}
.y1767_c00000{bottom:864.306000px;}
.y17df_c00000{bottom:864.774000px;}
.y4bf_c00000{bottom:865.149000px;}
.yfcd_c00000{bottom:865.255500px;}
.y155d_c00000{bottom:865.269000px;}
.y18b0_c00000{bottom:865.326000px;}
.y133b_c00000{bottom:865.404000px;}
.y1687_c00000{bottom:865.807500px;}
.y12c1_c00000{bottom:865.816500px;}
.y11b4_c00000{bottom:865.869000px;}
.y5e4_c00000{bottom:866.032500px;}
.y530_c00000{bottom:866.206500px;}
.y99d_c00000{bottom:866.335500px;}
.y1477_c00000{bottom:866.355000px;}
.y1120_c00000{bottom:866.590500px;}
.ydd5_c00000{bottom:866.634000px;}
.y1069_c00000{bottom:867.667500px;}
.y9c1_c00000{bottom:867.721500px;}
.y15f2_c00000{bottom:867.828000px;}
.ye92_c00000{bottom:867.834000px;}
.y69b_c00000{bottom:868.041000px;}
.y174f_c00000{bottom:868.111500px;}
.y12e1_c00000{bottom:868.332000px;}
.y1790_c00000{bottom:868.357500px;}
.y150a_c00000{bottom:869.071500px;}
.y399_c00000{bottom:869.326500px;}
.y1087_c00000{bottom:869.535000px;}
.y2a9_c00000{bottom:869.700000px;}
.y82f_c00000{bottom:869.776500px;}
.y1725_c00000{bottom:869.817000px;}
.ybb4_c00000{bottom:869.826000px;}
.ybe7_c00000{bottom:869.838000px;}
.y16aa_c00000{bottom:869.884500px;}
.yaba_c00000{bottom:869.913000px;}
.yf12_c00000{bottom:869.962500px;}
.y7e9_c00000{bottom:869.977500px;}
.yb8b_c00000{bottom:870.081000px;}
.yd8d_c00000{bottom:870.378000px;}
.y442_c00000{bottom:870.789000px;}
.yd6b_c00000{bottom:870.901500px;}
.y489_c00000{bottom:870.921000px;}
.y277_c00000{bottom:871.137000px;}
.y3be_c00000{bottom:872.283000px;}
.yc2d_c00000{bottom:872.370000px;}
.y303_c00000{bottom:872.524500px;}
.y1666_c00000{bottom:874.998000px;}
.y911_c00000{bottom:875.007000px;}
.y10d8_c00000{bottom:875.377500px;}
.y13dd_c00000{bottom:875.457000px;}
.y880_c00000{bottom:876.549000px;}
.ydc_c00000{bottom:876.720000px;}
.y15a0_c00000{bottom:877.497000px;}
.y6ac_c00000{bottom:878.493000px;}
.y11b_c00000{bottom:879.252000px;}
.y8e7_c00000{bottom:879.747000px;}
.y1433_c00000{bottom:879.888000px;}
.y9c_c00000{bottom:880.005000px;}
.y577_c00000{bottom:880.140000px;}
.y11de_c00000{bottom:884.062500px;}
.y5cd_c00000{bottom:884.961000px;}
.ye03_c00000{bottom:885.459000px;}
.y150_c00000{bottom:887.469000px;}
.yeaf_c00000{bottom:887.652000px;}
.yf61_c00000{bottom:887.722500px;}
.yf93_c00000{bottom:887.805000px;}
.yff3_c00000{bottom:887.824500px;}
.y340_c00000{bottom:888.090000px;}
.y646_c00000{bottom:888.415500px;}
.ydb8_c00000{bottom:888.420000px;}
.y740_c00000{bottom:888.720000px;}
.ycd4_c00000{bottom:888.732000px;}
.ycf1_c00000{bottom:888.913500px;}
.y515_c00000{bottom:888.921000px;}
.y25b_c00000{bottom:888.963000px;}
.yc5c_c00000{bottom:889.278000px;}
.y665_c00000{bottom:889.302000px;}
.y7a_c00000{bottom:889.336500px;}
.yb16_c00000{bottom:889.765500px;}
.yed8_c00000{bottom:890.010000px;}
.yfad_c00000{bottom:890.584500px;}
.y1193_c00000{bottom:890.655000px;}
.yb6c_c00000{bottom:891.153000px;}
.y1766_c00000{bottom:891.196500px;}
.y17de_c00000{bottom:891.664500px;}
.yb_c00000{bottom:891.739800px;}
.y62d_c00000{bottom:891.955500px;}
.y4be_c00000{bottom:892.039500px;}
.yfcc_c00000{bottom:892.146000px;}
.y155c_c00000{bottom:892.161000px;}
.y18af_c00000{bottom:892.216500px;}
.y133a_c00000{bottom:892.294500px;}
.y1686_c00000{bottom:892.699500px;}
.y12c0_c00000{bottom:892.707000px;}
.y11b3_c00000{bottom:892.759500px;}
.y1210_c00000{bottom:893.181000px;}
.y99c_c00000{bottom:893.226000px;}
.y111f_c00000{bottom:893.481000px;}
.ydd4_c00000{bottom:893.526000px;}
.y1068_c00000{bottom:894.559500px;}
.y9c0_c00000{bottom:894.612000px;}
.y15f1_c00000{bottom:894.718500px;}
.ye91_c00000{bottom:894.724500px;}
.y69a_c00000{bottom:894.931500px;}
.y174e_c00000{bottom:895.003500px;}
.y12e0_c00000{bottom:895.222500px;}
.y178f_c00000{bottom:895.248000px;}
.y116_c00000{bottom:895.936500px;}
.y1509_c00000{bottom:895.962000px;}
.y398_c00000{bottom:896.217000px;}
.y1086_c00000{bottom:896.427000px;}
.y2a8_c00000{bottom:896.590500px;}
.y82e_c00000{bottom:896.667000px;}
.y1724_c00000{bottom:896.707500px;}
.ybb3_c00000{bottom:896.716500px;}
.y16a9_c00000{bottom:896.775000px;}
.yab9_c00000{bottom:896.803500px;}
.yf11_c00000{bottom:896.853000px;}
.yb8a_c00000{bottom:896.971500px;}
.yd8c_c00000{bottom:897.268500px;}
.y441_c00000{bottom:897.681000px;}
.y488_c00000{bottom:897.811500px;}
.y276_c00000{bottom:898.027500px;}
.ye15_c00000{bottom:898.725000px;}
.y3bd_c00000{bottom:899.175000px;}
.yc2c_c00000{bottom:899.262000px;}
.y302_c00000{bottom:899.415000px;}
.y35_c00000{bottom:899.617500px;}
.y5e3_c00000{bottom:900.643500px;}
.y1665_c00000{bottom:901.890000px;}
.y910_c00000{bottom:901.897500px;}
.y10d7_c00000{bottom:902.268000px;}
.y13dc_c00000{bottom:902.349000px;}
.y87f_c00000{bottom:903.439500px;}
.y56_c00000{bottom:903.492000px;}
.y14fc_c00000{bottom:903.547500px;}
.y132f_c00000{bottom:904.389000px;}
.ybe6_c00000{bottom:904.450500px;}
.y8e6_c00000{bottom:906.637500px;}
.y9b_c00000{bottom:906.895500px;}
.y576_c00000{bottom:907.030500px;}
.y135c_c00000{bottom:911.851500px;}
.ye02_c00000{bottom:912.349500px;}
.y2e6_c00000{bottom:914.359500px;}
.y1432_c00000{bottom:914.500500px;}
.yf92_c00000{bottom:914.695500px;}
.y33f_c00000{bottom:914.980500px;}
.y645_c00000{bottom:915.306000px;}
.ydb7_c00000{bottom:915.310500px;}
.ycd3_c00000{bottom:915.624000px;}
.yd6a_c00000{bottom:915.789000px;}
.y514_c00000{bottom:915.811500px;}
.yc0d_c00000{bottom:915.829500px;}
.y25a_c00000{bottom:915.853500px;}
.yc5b_c00000{bottom:916.168500px;}
.y664_c00000{bottom:916.192500px;}
.y79_c00000{bottom:916.227000px;}
.yb15_c00000{bottom:916.656000px;}
.y2ca_c00000{bottom:916.750500px;}
.yed7_c00000{bottom:916.900500px;}
.yfac_c00000{bottom:917.475000px;}
.y1192_c00000{bottom:917.547000px;}
.yb6b_c00000{bottom:918.043500px;}
.y1765_c00000{bottom:918.088500px;}
.y62c_c00000{bottom:918.846000px;}
.yfcb_c00000{bottom:919.036500px;}
.y155b_c00000{bottom:919.051500px;}
.y18ae_c00000{bottom:919.107000px;}
.y1685_c00000{bottom:919.590000px;}
.y12bf_c00000{bottom:919.597500px;}
.y11b2_c00000{bottom:919.650000px;}
.y195d_c00000{bottom:920.071500px;}
.y99b_c00000{bottom:920.118000px;}
.y111e_c00000{bottom:920.373000px;}
.ydd3_c00000{bottom:920.416500px;}
.y9bf_c00000{bottom:921.502500px;}
.y15f0_c00000{bottom:921.609000px;}
.ye90_c00000{bottom:921.616500px;}
.y10ba_c00000{bottom:921.823500px;}
.y174d_c00000{bottom:921.894000px;}
.y12df_c00000{bottom:922.113000px;}
.y178e_c00000{bottom:922.138500px;}
.y1508_c00000{bottom:922.852500px;}
.y397_c00000{bottom:923.107500px;}
.y1085_c00000{bottom:923.317500px;}
.y82d_c00000{bottom:923.557500px;}
.y1723_c00000{bottom:923.598000px;}
.ybb2_c00000{bottom:923.607000px;}
.y16a8_c00000{bottom:923.665500px;}
.yab8_c00000{bottom:923.695500px;}
.yf10_c00000{bottom:923.743500px;}
.yb89_c00000{bottom:923.862000px;}
.y440_c00000{bottom:924.571500px;}
.y275_c00000{bottom:924.918000px;}
.y11dd_c00000{bottom:925.168500px;}
.ye14_c00000{bottom:925.615500px;}
.y3bc_c00000{bottom:926.065500px;}
.yc2b_c00000{bottom:926.152500px;}
.y301_c00000{bottom:926.305500px;}
.y2a_c00000{bottom:927.034500px;}
.y1664_c00000{bottom:928.780500px;}
.y90f_c00000{bottom:928.788000px;}
.y10d6_c00000{bottom:929.160000px;}
.y87e_c00000{bottom:930.331500px;}
.y55_c00000{bottom:930.382500px;}
.y13c2_c00000{bottom:931.279500px;}
.yf7d_c00000{bottom:933.321000px;}
.y1375_c00000{bottom:933.529500px;}
.y9a_c00000{bottom:933.786000px;}
.y575_c00000{bottom:933.921000px;}
.y135b_c00000{bottom:938.743500px;}
.y2e5_c00000{bottom:941.250000px;}
.yf91_c00000{bottom:941.586000px;}
.y33e_c00000{bottom:941.872500px;}
.y2a7_c00000{bottom:942.079500px;}
.y644_c00000{bottom:942.196500px;}
.ydb6_c00000{bottom:942.202500px;}
.ycd2_c00000{bottom:942.514500px;}
.yd69_c00000{bottom:942.681000px;}
.y487_c00000{bottom:942.690000px;}
.y513_c00000{bottom:942.702000px;}
.y259_c00000{bottom:942.744000px;}
.yc5a_c00000{bottom:943.059000px;}
.y663_c00000{bottom:943.083000px;}
.y78_c00000{bottom:943.119000px;}
.yb14_c00000{bottom:943.548000px;}
.y2c9_c00000{bottom:943.641000px;}
.yed6_c00000{bottom:943.792500px;}
.yf60_c00000{bottom:943.908000px;}
.yff2_c00000{bottom:944.016000px;}
.yfab_c00000{bottom:944.365500px;}
.yb6a_c00000{bottom:944.934000px;}
.y13db_c00000{bottom:944.958000px;}
.y1764_c00000{bottom:944.979000px;}
.y62b_c00000{bottom:945.736500px;}
.yfca_c00000{bottom:945.927000px;}
.y18ad_c00000{bottom:945.999000px;}
.y1684_c00000{bottom:946.480500px;}
.y12be_c00000{bottom:946.489500px;}
.y11b1_c00000{bottom:946.542000px;}
.ye01_c00000{bottom:946.962000px;}
.yeae_c00000{bottom:947.004000px;}
.y99a_c00000{bottom:947.008500px;}
.y1934_c00000{bottom:947.176500px;}
.y111d_c00000{bottom:947.263500px;}
.ydd2_c00000{bottom:947.307000px;}
.ya_c00000{bottom:947.520000px;}
.y9be_c00000{bottom:948.394500px;}
.y15ef_c00000{bottom:948.501000px;}
.ye8f_c00000{bottom:948.507000px;}
.y1317_c00000{bottom:948.714000px;}
.y12de_c00000{bottom:949.003500px;}
.y178d_c00000{bottom:949.030500px;}
.y1507_c00000{bottom:949.744500px;}
.y396_c00000{bottom:949.999500px;}
.y1084_c00000{bottom:950.208000px;}
.y82c_c00000{bottom:950.449500px;}
.y1722_c00000{bottom:950.490000px;}
.ybb1_c00000{bottom:950.499000px;}
.y16a7_c00000{bottom:950.557500px;}
.yab7_c00000{bottom:950.586000px;}
.yf0f_c00000{bottom:950.634000px;}
.y43f_c00000{bottom:951.462000px;}
.y274_c00000{bottom:951.810000px;}
.y11dc_c00000{bottom:952.059000px;}
.ye13_c00000{bottom:952.506000px;}
.y3bb_c00000{bottom:952.956000px;}
.yc2a_c00000{bottom:953.043000px;}
.y300_c00000{bottom:953.197500px;}
.y1663_c00000{bottom:955.671000px;}
.y90e_c00000{bottom:955.680000px;}
.y10d5_c00000{bottom:956.050500px;}
.y54_c00000{bottom:957.273000px;}
.y8b7_c00000{bottom:958.170000px;}
.yb88_c00000{bottom:958.474500px;}
.y970_c00000{bottom:960.676500px;}
.y99_c00000{bottom:960.678000px;}
.y115_c00000{bottom:962.334000px;}
.yf7c_c00000{bottom:963.400500px;}
.y11a_c00000{bottom:964.776000px;}
.y52f_c00000{bottom:965.211000px;}
.y135a_c00000{bottom:965.634000px;}
.y2e4_c00000{bottom:968.140500px;}
.y174c_c00000{bottom:968.176500px;}
.y33d_c00000{bottom:968.763000px;}
.y2a6_c00000{bottom:968.970000px;}
.y643_c00000{bottom:969.087000px;}
.yd68_c00000{bottom:969.571500px;}
.y486_c00000{bottom:969.580500px;}
.y258_c00000{bottom:969.636000px;}
.yc59_c00000{bottom:969.949500px;}
.y662_c00000{bottom:969.975000px;}
.y77_c00000{bottom:970.009500px;}
.yb13_c00000{bottom:970.438500px;}
.y2c8_c00000{bottom:970.531500px;}
.yed5_c00000{bottom:970.683000px;}
.yf5f_c00000{bottom:970.798500px;}
.yff1_c00000{bottom:970.906500px;}
.yfaa_c00000{bottom:971.257500px;}
.yb69_c00000{bottom:971.826000px;}
.y1763_c00000{bottom:971.869500px;}
.y87d_c00000{bottom:972.394500px;}
.y62a_c00000{bottom:972.627000px;}
.yfc9_c00000{bottom:972.819000px;}
.y1683_c00000{bottom:973.371000px;}
.y12bd_c00000{bottom:973.380000px;}
.y1431_c00000{bottom:973.852500px;}
.y999_c00000{bottom:973.899000px;}
.y111c_c00000{bottom:974.154000px;}
.y574_c00000{bottom:974.190000px;}
.ydd1_c00000{bottom:974.197500px;}
.y9bd_c00000{bottom:975.285000px;}
.y15ee_c00000{bottom:975.391500px;}
.ye8e_c00000{bottom:975.397500px;}
.y178c_c00000{bottom:975.921000px;}
.y395_c00000{bottom:976.890000px;}
.y82b_c00000{bottom:977.340000px;}
.y1721_c00000{bottom:977.380500px;}
.y16a6_c00000{bottom:977.448000px;}
.yf0e_c00000{bottom:977.526000px;}
.y43e_c00000{bottom:978.352500px;}
.y11db_c00000{bottom:978.951000px;}
.ye12_c00000{bottom:979.396500px;}
.y3ba_c00000{bottom:979.846500px;}
.y1662_c00000{bottom:982.561500px;}
.y90d_c00000{bottom:982.570500px;}
.y53_c00000{bottom:984.163500px;}
.y839_c00000{bottom:985.060500px;}
.yab6_c00000{bottom:985.197000px;}
.y98_c00000{bottom:987.568500px;}
.y34_c00000{bottom:988.263000px;}
.y1359_c00000{bottom:992.524500px;}
.y419_c00000{bottom:995.032500px;}
.y174b_c00000{bottom:995.067000px;}
.y33c_c00000{bottom:995.653500px;}
.yd67_c00000{bottom:996.462000px;}
.y703_c00000{bottom:996.526500px;}
.y661_c00000{bottom:996.865500px;}
.y76_c00000{bottom:996.900000px;}
.yc29_c00000{bottom:997.197000px;}
.y33_c00000{bottom:997.248000px;}
.yb12_c00000{bottom:997.329000px;}
.y2c7_c00000{bottom:997.422000px;}
.yff0_c00000{bottom:997.797000px;}
.y10d4_c00000{bottom:998.700000px;}
.yb68_c00000{bottom:998.716500px;}
.y87c_c00000{bottom:999.286500px;}
.y2ff_c00000{bottom:999.514500px;}
.y629_c00000{bottom:999.519000px;}
.yfc8_c00000{bottom:999.709500px;}
.y12bc_c00000{bottom:1000.270500px;}
.y9_c00000{bottom:1000.440000px;}
.y998_c00000{bottom:1000.789500px;}
.y111b_c00000{bottom:1001.044500px;}
.y573_c00000{bottom:1001.080500px;}
.ydd0_c00000{bottom:1001.088000px;}
.y15ed_c00000{bottom:1002.282000px;}
.y394_c00000{bottom:1003.780500px;}
.y82a_c00000{bottom:1004.230500px;}
.y1720_c00000{bottom:1004.271000px;}
.yf0d_c00000{bottom:1004.416500px;}
.y11da_c00000{bottom:1005.841500px;}
.ye11_c00000{bottom:1006.288500px;}
.y3b9_c00000{bottom:1006.738500px;}
.y1682_c00000{bottom:1007.983500px;}
.y90c_c00000{bottom:1009.461000px;}
.y52_c00000{bottom:1011.055500px;}
.y950_c00000{bottom:1011.951000px;}
.y16a5_c00000{bottom:1012.059000px;}
.y97_c00000{bottom:1014.459000px;}
.y1661_c00000{bottom:1017.174000px;}
.y89a_c00000{bottom:1018.992000px;}
.y418_c00000{bottom:1021.923000px;}
.y174a_c00000{bottom:1021.957500px;}
.y33b_c00000{bottom:1022.544000px;}
.yd66_c00000{bottom:1023.352500px;}
.y702_c00000{bottom:1023.417000px;}
.y660_c00000{bottom:1023.756000px;}
.yb7_c00000{bottom:1023.790500px;}
.yb11_c00000{bottom:1024.219500px;}
.y10d3_c00000{bottom:1025.590500px;}
.y87b_c00000{bottom:1026.177000px;}
.y628_c00000{bottom:1026.409500px;}
.y1358_c00000{bottom:1027.137000px;}
.y997_c00000{bottom:1027.681500px;}
.y114_c00000{bottom:1028.733000px;}
.y11d9_c00000{bottom:1032.732000px;}
.yb67_c00000{bottom:1033.329000px;}
.y3b8_c00000{bottom:1033.629000px;}
.y12bb_c00000{bottom:1034.883000px;}
.y8_c00000{bottom:1037.160000px;}
.y51_c00000{bottom:1037.946000px;}
.y829_c00000{bottom:1038.843000px;}
.y171f_c00000{bottom:1038.883500px;}
.yf0c_c00000{bottom:1039.027500px;}
.y75_c00000{bottom:1041.349500px;}
.y90b_c00000{bottom:1044.073500px;}
.y71a_c00000{bottom:1045.882500px;}
.yc0c_c00000{bottom:1048.813500px;}
.y701_c00000{bottom:1050.307500px;}
.y87a_c00000{bottom:1053.067500px;}
.y14fb_c00000{bottom:1054.332000px;}
.y7_c00000{bottom:1057.860000px;}
.y11d8_c00000{bottom:1059.622500px;}
.y3b7_c00000{bottom:1060.519500px;}
.y50_c00000{bottom:1064.836500px;}
.y1681_c00000{bottom:1067.335500px;}
.y74_c00000{bottom:1068.240000px;}
.y159f_c00000{bottom:1072.773000px;}
.y29_c00000{bottom:1077.819000px;}
.y6_c00000{bottom:1078.560000px;}
.y4f_c00000{bottom:1091.727000px;}
.yb66_c00000{bottom:1092.681000px;}
.y11d7_c00000{bottom:1094.235000px;}
.y73_c00000{bottom:1095.132000px;}
.y5_c00000{bottom:1099.260000px;}
.y642_c00000{bottom:1099.665000px;}
.y28_c00000{bottom:1118.619000px;}
.y4_c00000{bottom:1119.960000px;}
.y3_c00000{bottom:1140.660000px;}
.y4e_c00000{bottom:1162.084500px;}
.y4d_c00000{bottom:1166.617500px;}
.h16_c00000{height:28.286544px;}
.h21_c00000{height:38.245500px;}
.h19_c00000{height:38.251500px;}
.h17_c00000{height:44.833500px;}
.h6_c00000{height:45.111797px;}
.h1a_c00000{height:49.976544px;}
.h1d_c00000{height:49.982544px;}
.he_c00000{height:53.797500px;}
.h2_c00000{height:55.669219px;}
.h18_c00000{height:58.354320px;}
.h15_c00000{height:58.360320px;}
.h20_c00000{height:59.773500px;}
.h22_c00000{height:59.779500px;}
.h1b_c00000{height:59.941500px;}
.h1c_c00000{height:59.947500px;}
.h8_c00000{height:63.591328px;}
.hf_c00000{height:64.557000px;}
.h3_c00000{height:70.664062px;}
.h12_c00000{height:71.131500px;}
.h1e_c00000{height:71.727000px;}
.h1f_c00000{height:71.733000px;}
.h13_c00000{height:71.929500px;}
.hc_c00000{height:73.026030px;}
.h9_c00000{height:81.527344px;}
.h11_c00000{height:85.359000px;}
.h23_c00000{height:86.313000px;}
.h24_c00000{height:86.319000px;}
.h4_c00000{height:90.767109px;}
.hd_c00000{height:92.983500px;}
.h7_c00000{height:99.463359px;}
.h10_c00000{height:111.541500px;}
.h5_c00000{height:126.639141px;}
.h14_c00000{height:147.481500px;}
.h1_c00000{height:1263.000000px;}
.h0_c00000{height:1263.060000px;}
.hb_c00000{height:1263.750000px;}
.ha_c00000{height:1264.110000px;}
.w0_c00000{width:892.440000px;}
.w1_c00000{width:892.500000px;}
.w2_c00000{width:893.869500px;}
.w3_c00000{width:894.000000px;}
.x0_c00000{left:0.000000px;}
.x19_c00000{left:124.891500px;}
.x1e_c00000{left:126.336000px;}
.x2_c00000{left:127.620000px;}
.x7b_c00000{left:129.750000px;}
.xd2_c00000{left:133.459500px;}
.x78_c00000{left:135.861000px;}
.x11b_c00000{left:137.728500px;}
.x1_c00000{left:139.140000px;}
.x4e_c00000{left:141.798000px;}
.x59_c00000{left:145.639500px;}
.x3a_c00000{left:147.754500px;}
.x6b_c00000{left:149.020500px;}
.x8e_c00000{left:150.970500px;}
.x1b_c00000{left:153.897000px;}
.xc9_c00000{left:155.371500px;}
.x11c_c00000{left:158.616000px;}
.x38_c00000{left:159.838500px;}
.x8a_c00000{left:161.421000px;}
.x76_c00000{left:162.760500px;}
.x49_c00000{left:164.628000px;}
.xae_c00000{left:165.666000px;}
.x12_c00000{left:167.796000px;}
.x10a_c00000{left:168.945000px;}
.x2e_c00000{left:170.049000px;}
.x3b_c00000{left:171.456000px;}
.x118_c00000{left:173.013000px;}
.x57_c00000{left:174.471000px;}
.xd3_c00000{left:175.783500px;}
.x82_c00000{left:176.874000px;}
.x116_c00000{left:178.399500px;}
.xe0_c00000{left:180.169500px;}
.xa4_c00000{left:181.233000px;}
.x7e_c00000{left:183.309000px;}
.x122_c00000{left:184.776000px;}
.x5c_c00000{left:185.898000px;}
.xf8_c00000{left:187.065000px;}
.x7_c00000{left:189.360000px;}
.x55_c00000{left:190.780500px;}
.xc0_c00000{left:192.025500px;}
.x1c_c00000{left:194.283000px;}
.xb7_c00000{left:195.553500px;}
.x84_c00000{left:196.591500px;}
.x60_c00000{left:197.794500px;}
.xe5_c00000{left:199.083000px;}
.x93_c00000{left:200.344500px;}
.xc5_c00000{left:202.341000px;}
.x4_c00000{left:204.120000px;}
.xbc_c00000{left:206.241000px;}
.x128_c00000{left:207.589500px;}
.x4c_c00000{left:208.630500px;}
.x5_c00000{left:209.700000px;}
.x45_c00000{left:210.954000px;}
.xab_c00000{left:212.020500px;}
.x34_c00000{left:213.885000px;}
.xb4_c00000{left:216.057000px;}
.x10b_c00000{left:217.555500px;}
.x71_c00000{left:219.007500px;}
.x17_c00000{left:220.770000px;}
.x75_c00000{left:223.872000px;}
.x9b_c00000{left:225.913500px;}
.xf2_c00000{left:227.046000px;}
.x4a_c00000{left:230.289000px;}
.x4f_c00000{left:231.444000px;}
.x33_c00000{left:233.262000px;}
.xc7_c00000{left:234.555000px;}
.xc2_c00000{left:236.505000px;}
.x26_c00000{left:238.518000px;}
.x130_c00000{left:239.922000px;}
.xb3_c00000{left:240.930000px;}
.x12c_c00000{left:243.252000px;}
.x6f_c00000{left:244.600500px;}
.x2f_c00000{left:247.089000px;}
.x30_c00000{left:249.393000px;}
.x22_c00000{left:250.471500px;}
.x2a_c00000{left:252.319500px;}
.x15_c00000{left:253.836000px;}
.x92_c00000{left:255.936000px;}
.xd_c00000{left:259.380000px;}
.x21_c00000{left:262.074000px;}
.xd4_c00000{left:263.364000px;}
.x10_c00000{left:266.143500px;}
.xf_c00000{left:267.720000px;}
.x64_c00000{left:269.184000px;}
.x4b_c00000{left:270.657000px;}
.x31_c00000{left:272.437500px;}
.x100_c00000{left:273.724500px;}
.x14_c00000{left:274.855500px;}
.xac_c00000{left:276.360000px;}
.x2c_c00000{left:277.428000px;}
.x63_c00000{left:279.718500px;}
.x2b_c00000{left:282.559500px;}
.x98_c00000{left:284.346000px;}
.xbb_c00000{left:285.472500px;}
.x8_c00000{left:286.730640px;}
.xc4_c00000{left:288.283500px;}
.x6a_c00000{left:289.371000px;}
.x2d_c00000{left:290.592000px;}
.x42_c00000{left:292.537500px;}
.x86_c00000{left:293.794500px;}
.x24_c00000{left:294.988500px;}
.x9a_c00000{left:297.361500px;}
.x134_c00000{left:298.636500px;}
.xce_c00000{left:300.369000px;}
.x25_c00000{left:303.520500px;}
.xa1_c00000{left:304.953000px;}
.xe4_c00000{left:306.297000px;}
.x28_c00000{left:307.669500px;}
.x8c_c00000{left:309.724500px;}
.xf0_c00000{left:310.873500px;}
.xc_c00000{left:313.200000px;}
.xd0_c00000{left:315.288000px;}
.x6_c00000{left:316.440000px;}
.xa_c00000{left:318.060000px;}
.x39_c00000{left:319.617000px;}
.x1a_c00000{left:322.278000px;}
.x4d_c00000{left:323.928000px;}
.x8f_c00000{left:325.800000px;}
.x5f_c00000{left:327.220500px;}
.x3f_c00000{left:328.416000px;}
.x95_c00000{left:330.580500px;}
.x107_c00000{left:332.155500px;}
.xf5_c00000{left:333.474000px;}
.x51_c00000{left:335.518500px;}
.x3c_c00000{left:337.113000px;}
.x11_c00000{left:338.760000px;}
.xde_c00000{left:340.063500px;}
.x102_c00000{left:341.124000px;}
.xb6_c00000{left:342.279000px;}
.x32_c00000{left:344.520000px;}
.x20_c00000{left:346.039500px;}
.xda_c00000{left:348.457500px;}
.xdc_c00000{left:350.812500px;}
.x52_c00000{left:353.455500px;}
.xc8_c00000{left:355.273500px;}
.xa0_c00000{left:356.664000px;}
.x79_c00000{left:358.284000px;}
.x16_c00000{left:359.872500px;}
.xc6_c00000{left:361.201500px;}
.x23_c00000{left:362.518500px;}
.xa9_c00000{left:364.563000px;}
.x10f_c00000{left:366.043500px;}
.x62_c00000{left:367.233000px;}
.x101_c00000{left:368.922000px;}
.x115_c00000{left:370.212000px;}
.xd5_c00000{left:371.620500px;}
.x58_c00000{left:373.714500px;}
.x53_c00000{left:375.591000px;}
.x12e_c00000{left:378.606000px;}
.x80_c00000{left:380.155500px;}
.x35_c00000{left:382.084500px;}
.x29_c00000{left:384.588000px;}
.x7f_c00000{left:385.666500px;}
.x69_c00000{left:388.132500px;}
.x43_c00000{left:390.940500px;}
.x6d_c00000{left:392.154000px;}
.xb_c00000{left:394.920000px;}
.x90_c00000{left:397.153500px;}
.xff_c00000{left:398.442000px;}
.x6e_c00000{left:400.377000px;}
.x10c_c00000{left:402.418500px;}
.x85_c00000{left:404.916000px;}
.x131_c00000{left:406.638000px;}
.x1f_c00000{left:408.781500px;}
.x12f_c00000{left:410.367000px;}
.x13_c00000{left:412.798500px;}
.xbf_c00000{left:414.946500px;}
.x133_c00000{left:416.215500px;}
.x11f_c00000{left:418.176000px;}
.x9_c00000{left:420.120000px;}
.xe_c00000{left:423.534240px;}
.x91_c00000{left:425.952000px;}
.x5b_c00000{left:428.050500px;}
.xaa_c00000{left:429.424500px;}
.x72_c00000{left:430.497000px;}
.x112_c00000{left:431.725500px;}
.x89_c00000{left:433.396500px;}
.xad_c00000{left:435.301500px;}
.x56_c00000{left:438.156000px;}
.x54_c00000{left:439.914000px;}
.xe2_c00000{left:441.336000px;}
.x37_c00000{left:442.545000px;}
.x1d_c00000{left:444.225000px;}
.x3_c00000{left:446.220000px;}
.x5d_c00000{left:448.263000px;}
.x109_c00000{left:449.386500px;}
.x99_c00000{left:451.324500px;}
.xb9_c00000{left:452.428500px;}
.x68_c00000{left:453.840000px;}
.xd1_c00000{left:457.318500px;}
.x124_c00000{left:458.754000px;}
.x74_c00000{left:460.059000px;}
.xfa_c00000{left:463.467000px;}
.x117_c00000{left:466.323000px;}
.xd7_c00000{left:467.736000px;}
.x11a_c00000{left:469.689000px;}
.xb1_c00000{left:471.429000px;}
.x12b_c00000{left:472.930500px;}
.xfe_c00000{left:474.933000px;}
.x111_c00000{left:480.454500px;}
.x125_c00000{left:484.081500px;}
.xe6_c00000{left:485.839500px;}
.xbe_c00000{left:488.530500px;}
.x70_c00000{left:489.582000px;}
.xb2_c00000{left:491.197500px;}
.x7a_c00000{left:492.861000px;}
.xa7_c00000{left:494.949000px;}
.xa8_c00000{left:496.593000px;}
.x119_c00000{left:498.291000px;}
.x96_c00000{left:501.309000px;}
.xdf_c00000{left:502.686000px;}
.x10d_c00000{left:504.214500px;}
.xa2_c00000{left:505.479000px;}
.x126_c00000{left:509.119500px;}
.xfd_c00000{left:510.661500px;}
.x65_c00000{left:513.945000px;}
.xdb_c00000{left:515.203500px;}
.x81_c00000{left:517.135500px;}
.xba_c00000{left:518.476500px;}
.xe3_c00000{left:519.982500px;}
.x123_c00000{left:521.548500px;}
.x121_c00000{left:522.939000px;}
.xfb_c00000{left:525.295500px;}
.xcb_c00000{left:526.341000px;}
.x94_c00000{left:527.800500px;}
.x27_c00000{left:529.062000px;}
.x67_c00000{left:531.274500px;}
.x110_c00000{left:532.774500px;}
.x41_c00000{left:535.492500px;}
.xb5_c00000{left:539.124000px;}
.x5a_c00000{left:542.373000px;}
.xf4_c00000{left:544.863000px;}
.x108_c00000{left:547.123500px;}
.x5e_c00000{left:550.183500px;}
.x120_c00000{left:551.652000px;}
.x36_c00000{left:554.388000px;}
.x7c_c00000{left:556.869000px;}
.xcd_c00000{left:562.461000px;}
.x104_c00000{left:563.979000px;}
.x47_c00000{left:565.999500px;}
.xa3_c00000{left:568.179000px;}
.xfc_c00000{left:570.477000px;}
.x113_c00000{left:572.776500px;}
.x50_c00000{left:574.396500px;}
.xcc_c00000{left:576.174000px;}
.xd6_c00000{left:578.109000px;}
.xca_c00000{left:579.609000px;}
.x12d_c00000{left:581.673000px;}
.x9f_c00000{left:582.952500px;}
.xe1_c00000{left:584.524500px;}
.x6c_c00000{left:588.688500px;}
.x87_c00000{left:589.848000px;}
.x106_c00000{left:592.636500px;}
.x40_c00000{left:594.345000px;}
.xdd_c00000{left:598.302000px;}
.x66_c00000{left:600.120000px;}
.xb8_c00000{left:601.375500px;}
.x7d_c00000{left:604.476000px;}
.xe9_c00000{left:606.394500px;}
.xf7_c00000{left:608.527500px;}
.xd8_c00000{left:610.024500px;}
.xa5_c00000{left:611.382000px;}
.x129_c00000{left:612.781500px;}
.x48_c00000{left:614.760000px;}
.x73_c00000{left:615.981000px;}
.x11e_c00000{left:617.812500px;}
.xea_c00000{left:618.838500px;}
.x44_c00000{left:621.232500px;}
.xc1_c00000{left:626.923500px;}
.xf1_c00000{left:628.257000px;}
.xeb_c00000{left:630.462000px;}
.x114_c00000{left:631.530000px;}
.xa6_c00000{left:634.197000px;}
.x83_c00000{left:635.512500px;}
.x9e_c00000{left:643.782000px;}
.xf6_c00000{left:645.054000px;}
.xed_c00000{left:646.101000px;}
.x8b_c00000{left:648.477000px;}
.x9c_c00000{left:649.885500px;}
.x18_c00000{left:654.106500px;}
.x97_c00000{left:656.112000px;}
.xd9_c00000{left:660.426000px;}
.xf9_c00000{left:663.234000px;}
.x3e_c00000{left:664.813500px;}
.x8d_c00000{left:666.142500px;}
.xf3_c00000{left:668.598000px;}
.xcf_c00000{left:671.812500px;}
.x12a_c00000{left:673.771500px;}
.xaf_c00000{left:676.932000px;}
.x105_c00000{left:678.195000px;}
.xc3_c00000{left:679.596000px;}
.x103_c00000{left:681.997500px;}
.x127_c00000{left:684.159000px;}
.x10e_c00000{left:685.318500px;}
.xbd_c00000{left:692.773500px;}
.xb0_c00000{left:694.012500px;}
.xef_c00000{left:696.181500px;}
.xe8_c00000{left:697.738500px;}
.xec_c00000{left:709.026000px;}
.x132_c00000{left:712.198500px;}
.x88_c00000{left:713.995500px;}
.x61_c00000{left:717.592500px;}
.x46_c00000{left:722.308500px;}
.xe7_c00000{left:726.460500px;}
.x11d_c00000{left:728.536500px;}
.x77_c00000{left:740.574000px;}
.x9d_c00000{left:743.392500px;}
.x3d_c00000{left:746.800500px;}
.xee_c00000{left:749.706000px;}
@media print{
.v6_c00000{vertical-align:-19.280000pt;}
.v9_c00000{vertical-align:-5.850667pt;}
.v0_c00000{vertical-align:0.000000pt;}
.va_c00000{vertical-align:5.312000pt;}
.v8_c00000{vertical-align:6.373333pt;}
.v1_c00000{vertical-align:10.240000pt;}
.v7_c00000{vertical-align:13.429333pt;}
.v3_c00000{vertical-align:15.408000pt;}
.v2_c00000{vertical-align:18.490667pt;}
.v5_c00000{vertical-align:23.141333pt;}
.v4_c00000{vertical-align:31.946667pt;}
.ls4_c00000{letter-spacing:-0.706560pt;}
.ls6_c00000{letter-spacing:-0.588800pt;}
.lsd_c00000{letter-spacing:-0.427520pt;}
.ls8_c00000{letter-spacing:-0.412160pt;}
.lsb_c00000{letter-spacing:-0.299520pt;}
.ls7_c00000{letter-spacing:-0.294400pt;}
.lsf_c00000{letter-spacing:-0.192000pt;}
.ls2_c00000{letter-spacing:-0.176640pt;}
.ls11_c00000{letter-spacing:-0.170240pt;}
.lse_c00000{letter-spacing:-0.149760pt;}
.ls5_c00000{letter-spacing:-0.117760pt;}
.lsc_c00000{letter-spacing:-0.106880pt;}
.ls13_c00000{letter-spacing:-0.074880pt;}
.ls3_c00000{letter-spacing:0.000000pt;}
.ls9c_c00000{letter-spacing:0.001280pt;}
.ls49_c00000{letter-spacing:0.002560pt;}
.lsa1_c00000{letter-spacing:0.002667pt;}
.ls105_c00000{letter-spacing:0.033547pt;}
.lsa_c00000{letter-spacing:0.117120pt;}
.ls10_c00000{letter-spacing:0.170240pt;}
.ls12_c00000{letter-spacing:0.224640pt;}
.ls1_c00000{letter-spacing:0.234240pt;}
.ls9_c00000{letter-spacing:0.298240pt;}
.ls1a_c00000{letter-spacing:2.666293pt;}
.ls18_c00000{letter-spacing:2.670901pt;}
.ls17_c00000{letter-spacing:2.671627pt;}
.ls1d_c00000{letter-spacing:2.676235pt;}
.ls21_c00000{letter-spacing:4.774384pt;}
.ls32_c00000{letter-spacing:6.616384pt;}
.ls79_c00000{letter-spacing:6.624240pt;}
.ls4e_c00000{letter-spacing:6.628192pt;}
.lsf8_c00000{letter-spacing:6.629573pt;}
.lsf6_c00000{letter-spacing:6.633525pt;}
.lsb7_c00000{letter-spacing:6.636763pt;}
.ls50_c00000{letter-spacing:6.638667pt;}
.lsee_c00000{letter-spacing:6.646571pt;}
.lsd9_c00000{letter-spacing:7.376667pt;}
.ls30_c00000{letter-spacing:7.382000pt;}
.ls15_c00000{letter-spacing:7.797493pt;}
.ls20_c00000{letter-spacing:9.310901pt;}
.ls104_c00000{letter-spacing:13.528192pt;}
.ls103_c00000{letter-spacing:13.650859pt;}
.ls53_c00000{letter-spacing:14.257280pt;}
.ls107_c00000{letter-spacing:14.326747pt;}
.ls106_c00000{letter-spacing:14.342613pt;}
.ls11b_c00000{letter-spacing:14.565600pt;}
.ls11a_c00000{letter-spacing:14.587947pt;}
.ls46_c00000{letter-spacing:14.972080pt;}
.ls114_c00000{letter-spacing:15.017568pt;}
.ls11d_c00000{letter-spacing:15.057280pt;}
.ls1f_c00000{letter-spacing:15.382859pt;}
.lsf3_c00000{letter-spacing:15.389733pt;}
.lsa3_c00000{letter-spacing:15.542747pt;}
.ls9e_c00000{letter-spacing:15.838901pt;}
.ls2c_c00000{letter-spacing:15.930933pt;}
.ls1c_c00000{letter-spacing:15.990859pt;}
.ls25_c00000{letter-spacing:16.029733pt;}
.ls101_c00000{letter-spacing:16.049413pt;}
.ls100_c00000{letter-spacing:16.054747pt;}
.lsa0_c00000{letter-spacing:16.100235pt;}
.lsa6_c00000{letter-spacing:16.238901pt;}
.ls38_c00000{letter-spacing:16.409568pt;}
.lsd1_c00000{letter-spacing:16.420235pt;}
.lsfa_c00000{letter-spacing:16.537568pt;}
.ls78_c00000{letter-spacing:16.548960pt;}
.ls86_c00000{letter-spacing:16.652080pt;}
.ls84_c00000{letter-spacing:16.667947pt;}
.lse6_c00000{letter-spacing:16.689413pt;}
.lse5_c00000{letter-spacing:16.699947pt;}
.ls92_c00000{letter-spacing:16.777568pt;}
.ls7e_c00000{letter-spacing:16.865413pt;}
.lsed_c00000{letter-spacing:16.894901pt;}
.ls10b_c00000{letter-spacing:16.921568pt;}
.ls54_c00000{letter-spacing:16.986933pt;}
.lsf2_c00000{letter-spacing:16.988080pt;}
.lsb6_c00000{letter-spacing:17.188235pt;}
.ls3c_c00000{letter-spacing:17.216064pt;}
.ls45_c00000{letter-spacing:17.332235pt;}
.ls87_c00000{letter-spacing:17.462613pt;}
.ls10c_c00000{letter-spacing:17.497568pt;}
.ls10e_c00000{letter-spacing:17.515947pt;}
.ls5c_c00000{letter-spacing:17.588016pt;}
.lsd6_c00000{letter-spacing:17.697525pt;}
.lsa4_c00000{letter-spacing:17.698859pt;}
.lsd5_c00000{letter-spacing:17.702859pt;}
.ls31_c00000{letter-spacing:17.710901pt;}
.lsad_c00000{letter-spacing:17.740192pt;}
.ls7f_c00000{letter-spacing:17.812235pt;}
.ls82_c00000{letter-spacing:18.090293pt;}
.ls24_c00000{letter-spacing:18.172080pt;}
.lsf0_c00000{letter-spacing:18.278784pt;}
.ls8c_c00000{letter-spacing:18.308235pt;}
.ls116_c00000{letter-spacing:18.357600pt;}
.ls118_c00000{letter-spacing:18.438747pt;}
.ls71_c00000{letter-spacing:18.457568pt;}
.ls4c_c00000{letter-spacing:18.491947pt;}
.lsfb_c00000{letter-spacing:18.541333pt;}
.ls102_c00000{letter-spacing:18.557525pt;}
.ls60_c00000{letter-spacing:18.646107pt;}
.lsc1_c00000{letter-spacing:18.715947pt;}
.ls111_c00000{letter-spacing:18.719627pt;}
.lsab_c00000{letter-spacing:18.775413pt;}
.ls29_c00000{letter-spacing:18.788235pt;}
.ls63_c00000{letter-spacing:18.844080pt;}
.lsf4_c00000{letter-spacing:18.852235pt;}
.lsd0_c00000{letter-spacing:18.877525pt;}
.lscf_c00000{letter-spacing:18.881525pt;}
.ls73_c00000{letter-spacing:18.892080pt;}
.lsb8_c00000{letter-spacing:18.916416pt;}
.lsaa_c00000{letter-spacing:18.918859pt;}
.lse3_c00000{letter-spacing:19.075824pt;}
.ls19_c00000{letter-spacing:19.076960pt;}
.ls8f_c00000{letter-spacing:19.097568pt;}
.ls5e_c00000{letter-spacing:19.289568pt;}
.lsdb_c00000{letter-spacing:19.340747pt;}
.ls108_c00000{letter-spacing:19.394640pt;}
.ls34_c00000{letter-spacing:19.438901pt;}
.ls6c_c00000{letter-spacing:19.510747pt;}
.lsdd_c00000{letter-spacing:19.511893pt;}
.ls70_c00000{letter-spacing:19.533525pt;}
.ls77_c00000{letter-spacing:19.583627pt;}
.ls109_c00000{letter-spacing:19.585413pt;}
.ls72_c00000{letter-spacing:19.590747pt;}
.lsce_c00000{letter-spacing:19.638859pt;}
.ls117_c00000{letter-spacing:19.697280pt;}
.ls56_c00000{letter-spacing:19.766592pt;}
.ls1e_c00000{letter-spacing:19.801568pt;}
.ls51_c00000{letter-spacing:19.950901pt;}
.lsfd_c00000{letter-spacing:19.964080pt;}
.ls8e_c00000{letter-spacing:19.974747pt;}
.ls8d_c00000{letter-spacing:19.985280pt;}
.ls44_c00000{letter-spacing:19.995947pt;}
.lsc5_c00000{letter-spacing:20.063627pt;}
.ls8b_c00000{letter-spacing:20.086747pt;}
.lse8_c00000{letter-spacing:20.138544pt;}
.ls2f_c00000{letter-spacing:20.180235pt;}
.ls6f_c00000{letter-spacing:20.193413pt;}
.ls23_c00000{letter-spacing:20.382901pt;}
.ls27_c00000{letter-spacing:20.388235pt;}
.ls61_c00000{letter-spacing:20.448773pt;}
.ls1b_c00000{letter-spacing:20.473568pt;}
.lse7_c00000{letter-spacing:20.599413pt;}
.ls5d_c00000{letter-spacing:20.612235pt;}
.ls97_c00000{letter-spacing:20.625413pt;}
.ls64_c00000{letter-spacing:20.636080pt;}
.ls96_c00000{letter-spacing:20.641280pt;}
.ls2b_c00000{letter-spacing:20.784267pt;}
.ls52_c00000{letter-spacing:20.786080pt;}
.ls62_c00000{letter-spacing:20.795440pt;}
.ls6a_c00000{letter-spacing:20.796080pt;}
.lse0_c00000{letter-spacing:20.801413pt;}
.lsbc_c00000{letter-spacing:20.806613pt;}
.lsbb_c00000{letter-spacing:20.811947pt;}
.ls2d_c00000{letter-spacing:20.885600pt;}
.ls4f_c00000{letter-spacing:20.905568pt;}
.lse4_c00000{letter-spacing:20.916235pt;}
.ls43_c00000{letter-spacing:21.142747pt;}
.ls3d_c00000{letter-spacing:21.148128pt;}
.ls9a_c00000{letter-spacing:21.150901pt;}
.ls9f_c00000{letter-spacing:21.156235pt;}
.lse2_c00000{letter-spacing:21.168267pt;}
.lse1_c00000{letter-spacing:21.190613pt;}
.ls10f_c00000{letter-spacing:21.254747pt;}
.ls119_c00000{letter-spacing:21.332235pt;}
.lsb4_c00000{letter-spacing:21.439051pt;}
.ls115_c00000{letter-spacing:21.462613pt;}
.lsa5_c00000{letter-spacing:21.556235pt;}
.ls2e_c00000{letter-spacing:21.614901pt;}
.lsd2_c00000{letter-spacing:21.679488pt;}
.lsde_c00000{letter-spacing:21.681280pt;}
.lsa2_c00000{letter-spacing:21.796235pt;}
.ls74_c00000{letter-spacing:21.812960pt;}
.lsa8_c00000{letter-spacing:21.838901pt;}
.ls9d_c00000{letter-spacing:21.844235pt;}
.ls95_c00000{letter-spacing:21.860235pt;}
.ls3a_c00000{letter-spacing:21.996080pt;}
.lsc4_c00000{letter-spacing:22.143627pt;}
.ls67_c00000{letter-spacing:22.198747pt;}
.ls80_c00000{letter-spacing:22.230747pt;}
.ls113_c00000{letter-spacing:22.286901pt;}
.ls4d_c00000{letter-spacing:22.298293pt;}
.ls7c_c00000{letter-spacing:22.319627pt;}
.ls10a_c00000{letter-spacing:22.377568pt;}
.ls91_c00000{letter-spacing:22.394293pt;}
.ls2a_c00000{letter-spacing:22.430901pt;}
.lsf7_c00000{letter-spacing:22.457568pt;}
.lsfe_c00000{letter-spacing:22.513413pt;}
.lsb2_c00000{letter-spacing:22.546080pt;}
.lsdc_c00000{letter-spacing:22.640267pt;}
.ls7b_c00000{letter-spacing:22.670901pt;}
.lsf1_c00000{letter-spacing:22.754080pt;}
.ls28_c00000{letter-spacing:22.798901pt;}
.ls47_c00000{letter-spacing:22.889568pt;}
.ls11c_c00000{letter-spacing:22.901616pt;}
.ls41_c00000{letter-spacing:22.946080pt;}
.lsea_c00000{letter-spacing:22.990901pt;}
.ls8a_c00000{letter-spacing:23.028384pt;}
.ls68_c00000{letter-spacing:23.046747pt;}
.ls57_c00000{letter-spacing:23.076235pt;}
.ls4b_c00000{letter-spacing:23.476960pt;}
.ls35_c00000{letter-spacing:23.482293pt;}
.lse9_c00000{letter-spacing:23.577568pt;}
.lsf9_c00000{letter-spacing:23.694901pt;}
.lsba_c00000{letter-spacing:23.707947pt;}
.lsd7_c00000{letter-spacing:23.776267pt;}
.ls6e_c00000{letter-spacing:23.782747pt;}
.ls55_c00000{letter-spacing:23.783413pt;}
.ls6d_c00000{letter-spacing:23.798613pt;}
.lsa9_c00000{letter-spacing:23.803947pt;}
.lsef_c00000{letter-spacing:23.854901pt;}
.ls90_c00000{letter-spacing:23.940235pt;}
.lsec_c00000{letter-spacing:24.063627pt;}
.ls110_c00000{letter-spacing:24.133600pt;}
.ls75_c00000{letter-spacing:24.462901pt;}
.lsd8_c00000{letter-spacing:24.502613pt;}
.ls83_c00000{letter-spacing:24.524080pt;}
.lsac_c00000{letter-spacing:24.673280pt;}
.ls88_c00000{letter-spacing:24.699947pt;}
.ls89_c00000{letter-spacing:24.705280pt;}
.ls81_c00000{letter-spacing:24.732080pt;}
.lsbf_c00000{letter-spacing:24.732747pt;}
.ls26_c00000{letter-spacing:24.788235pt;}
.lsc9_c00000{letter-spacing:24.929280pt;}
.lsc2_c00000{letter-spacing:24.932235pt;}
.lsf5_c00000{letter-spacing:24.980235pt;}
.ls9b_c00000{letter-spacing:25.038901pt;}
.ls94_c00000{letter-spacing:25.049568pt;}
.lsc8_c00000{letter-spacing:25.116747pt;}
.ls22_c00000{letter-spacing:25.236960pt;}
.lsd4_c00000{letter-spacing:25.318859pt;}
.lsd3_c00000{letter-spacing:25.324192pt;}
.lsdf_c00000{letter-spacing:25.409413pt;}
.ls37_c00000{letter-spacing:25.430747pt;}
.lsbe_c00000{letter-spacing:25.601280pt;}
.ls93_c00000{letter-spacing:25.649413pt;}
.ls48_c00000{letter-spacing:25.674293pt;}
.lsc0_c00000{letter-spacing:25.678901pt;}
.lsda_c00000{letter-spacing:25.749600pt;}
.lsc7_c00000{letter-spacing:25.764235pt;}
.lseb_c00000{letter-spacing:26.058293pt;}
.ls112_c00000{letter-spacing:26.431627pt;}
.ls99_c00000{letter-spacing:26.449413pt;}
.ls98_c00000{letter-spacing:26.459947pt;}
.ls58_c00000{letter-spacing:26.546080pt;}
.lsb9_c00000{letter-spacing:26.551413pt;}
.lscc_c00000{letter-spacing:26.666933pt;}
.ls6b_c00000{letter-spacing:26.753413pt;}
.ls10d_c00000{letter-spacing:27.028235pt;}
.ls33_c00000{letter-spacing:27.108235pt;}
.lsb0_c00000{letter-spacing:27.206747pt;}
.lsae_c00000{letter-spacing:27.222613pt;}
.lsaf_c00000{letter-spacing:27.227947pt;}
.ls3f_c00000{letter-spacing:27.231627pt;}
.ls39_c00000{letter-spacing:27.260747pt;}
.lsa7_c00000{letter-spacing:27.753568pt;}
.ls36_c00000{letter-spacing:27.835947pt;}
.ls5a_c00000{letter-spacing:27.915947pt;}
.ls85_c00000{letter-spacing:27.926613pt;}
.lsb3_c00000{letter-spacing:27.954080pt;}
.ls7a_c00000{letter-spacing:27.958747pt;}
.ls5f_c00000{letter-spacing:27.974107pt;}
.lscb_c00000{letter-spacing:28.028080pt;}
.lsca_c00000{letter-spacing:28.038613pt;}
.ls7d_c00000{letter-spacing:28.180960pt;}
.lsbd_c00000{letter-spacing:28.271627pt;}
.ls76_c00000{letter-spacing:28.430901pt;}
.ls69_c00000{letter-spacing:28.518747pt;}
.ls66_c00000{letter-spacing:28.774747pt;}
.ls65_c00000{letter-spacing:28.790613pt;}
.lscd_c00000{letter-spacing:29.030747pt;}
.lsb5_c00000{letter-spacing:29.671413pt;}
.ls40_c00000{letter-spacing:29.727627pt;}
.ls59_c00000{letter-spacing:30.021600pt;}
.ls4a_c00000{letter-spacing:30.031627pt;}
.ls3b_c00000{letter-spacing:30.407413pt;}
.lsb1_c00000{letter-spacing:30.508747pt;}
.lsc3_c00000{letter-spacing:30.751627pt;}
.ls3e_c00000{letter-spacing:30.860747pt;}
.lsfc_c00000{letter-spacing:31.607413pt;}
.ls14_c00000{letter-spacing:31.880000pt;}
.ls5b_c00000{letter-spacing:32.054747pt;}
.lsff_c00000{letter-spacing:33.334613pt;}
.ls42_c00000{letter-spacing:33.820747pt;}
.lsc6_c00000{letter-spacing:33.834293pt;}
.ls0_c00000{letter-spacing:59.205120pt;}
.ls16_c00000{letter-spacing:97.599467pt;}
.ws6_c00000{word-spacing:-40.858880pt;}
.ws8_c00000{word-spacing:-32.325120pt;}
.ws7_c00000{word-spacing:-32.090880pt;}
.ws2c_c00000{word-spacing:-31.943760pt;}
.wsa_c00000{word-spacing:-28.857600pt;}
.ws532_c00000{word-spacing:-22.954752pt;}
.ws26_c00000{word-spacing:-22.252240pt;}
.ws458_c00000{word-spacing:-21.732624pt;}
.ws28f_c00000{word-spacing:-21.201264pt;}
.wsb_c00000{word-spacing:-20.367360pt;}
.ws9_c00000{word-spacing:-20.217600pt;}
.ws496_c00000{word-spacing:-20.191680pt;}
.ws2f7_c00000{word-spacing:-19.819728pt;}
.ws4e0_c00000{word-spacing:-19.447776pt;}
.ws488_c00000{word-spacing:-19.128960pt;}
.ws3fd_c00000{word-spacing:-18.969552pt;}
.ws4b7_c00000{word-spacing:-18.331920pt;}
.ws31d_c00000{word-spacing:-17.641152pt;}
.ws28_c00000{word-spacing:-17.342720pt;}
.ws285_c00000{word-spacing:-17.269200pt;}
.ws3a_c00000{word-spacing:-16.513840pt;}
.ws2_c00000{word-spacing:-16.133120pt;}
.ws0_c00000{word-spacing:-16.074240pt;}
.ws4_c00000{word-spacing:-15.956480pt;}
.ws5_c00000{word-spacing:-15.838720pt;}
.ws3_c00000{word-spacing:-15.662080pt;}
.ws1_c00000{word-spacing:-15.544320pt;}
.ws32_c00000{word-spacing:-14.792320pt;}
.ws39_c00000{word-spacing:-14.027200pt;}
.ws31_c00000{word-spacing:-11.030480pt;}
.ws2a_c00000{word-spacing:-10.201600pt;}
.ws29_c00000{word-spacing:-9.755280pt;}
.ws34_c00000{word-spacing:-8.416320pt;}
.ws3c_c00000{word-spacing:-1.466480pt;}
.ws16_c00000{word-spacing:-0.524160pt;}
.ws11_c00000{word-spacing:-0.427520pt;}
.ws14_c00000{word-spacing:-0.425600pt;}
.wsd_c00000{word-spacing:-0.235520pt;}
.wsf_c00000{word-spacing:-0.234240pt;}
.ws17_c00000{word-spacing:-0.224640pt;}
.wse_c00000{word-spacing:-0.149120pt;}
.ws3f_c00000{word-spacing:-0.132197pt;}
.ws10_c00000{word-spacing:-0.117120pt;}
.ws15_c00000{word-spacing:-0.085120pt;}
.wsd3_c00000{word-spacing:-0.076512pt;}
.ws27_c00000{word-spacing:-0.063760pt;}
.ws98_c00000{word-spacing:-0.053136pt;}
.ws102_c00000{word-spacing:-0.042507pt;}
.wsfd_c00000{word-spacing:-0.037195pt;}
.wsc_c00000{word-spacing:0.000000pt;}
.ws18_c00000{word-spacing:0.074880pt;}
.ws13_c00000{word-spacing:0.096000pt;}
.ws12_c00000{word-spacing:0.106880pt;}
.ws35_c00000{word-spacing:0.892640pt;}
.ws4e5_c00000{word-spacing:7.448608pt;}
.ws1d1_c00000{word-spacing:8.076672pt;}
.ws174_c00000{word-spacing:8.767440pt;}
.ws3cf_c00000{word-spacing:9.256747pt;}
.ws267_c00000{word-spacing:10.329120pt;}
.ws4da_c00000{word-spacing:11.892960pt;}
.ws233_c00000{word-spacing:11.902464pt;}
.ws4b2_c00000{word-spacing:11.955600pt;}
.ws472_c00000{word-spacing:12.008736pt;}
.ws4f2_c00000{word-spacing:12.015248pt;}
.ws3c3_c00000{word-spacing:12.061872pt;}
.ws3a3_c00000{word-spacing:12.115008pt;}
.ws50b_c00000{word-spacing:12.168144pt;}
.ws2ad_c00000{word-spacing:12.221280pt;}
.ws35c_c00000{word-spacing:12.274416pt;}
.ws173_c00000{word-spacing:12.327552pt;}
.ws4ad_c00000{word-spacing:12.479819pt;}
.ws2f1_c00000{word-spacing:12.486960pt;}
.ws1e8_c00000{word-spacing:12.540096pt;}
.ws4ac_c00000{word-spacing:12.593232pt;}
.ws1d2_c00000{word-spacing:12.646368pt;}
.ws1d3_c00000{word-spacing:12.659248pt;}
.ws1c4_c00000{word-spacing:12.699504pt;}
.ws1a6_c00000{word-spacing:12.752640pt;}
.ws4bd_c00000{word-spacing:12.805776pt;}
.ws35d_c00000{word-spacing:12.858912pt;}
.ws277_c00000{word-spacing:12.912048pt;}
.ws289_c00000{word-spacing:12.965184pt;}
.ws1c7_c00000{word-spacing:13.018320pt;}
.ws1c9_c00000{word-spacing:13.071456pt;}
.ws163_c00000{word-spacing:13.124592pt;}
.ws3c2_c00000{word-spacing:13.177728pt;}
.ws20e_c00000{word-spacing:13.230864pt;}
.ws3b2_c00000{word-spacing:13.284000pt;}
.ws2d2_c00000{word-spacing:13.321067pt;}
.ws254_c00000{word-spacing:13.337136pt;}
.ws216_c00000{word-spacing:13.368219pt;}
.ws215_c00000{word-spacing:13.390272pt;}
.ws2de_c00000{word-spacing:13.443408pt;}
.ws386_c00000{word-spacing:13.496544pt;}
.ws2c7_c00000{word-spacing:13.549680pt;}
.ws4de_c00000{word-spacing:13.602816pt;}
.wsa8_c00000{word-spacing:13.655952pt;}
.ws234_c00000{word-spacing:13.709088pt;}
.ws231_c00000{word-spacing:13.743504pt;}
.ws232_c00000{word-spacing:13.762224pt;}
.ws415_c00000{word-spacing:13.771733pt;}
.ws71_c00000{word-spacing:13.772160pt;}
.wscc_c00000{word-spacing:13.815360pt;}
.ws25b_c00000{word-spacing:13.835920pt;}
.ws2ae_c00000{word-spacing:13.868496pt;}
.ws307_c00000{word-spacing:13.869339pt;}
.ws19e_c00000{word-spacing:13.899680pt;}
.ws9c_c00000{word-spacing:13.902613pt;}
.ws9b_c00000{word-spacing:13.921632pt;}
.ws123_c00000{word-spacing:13.963440pt;}
.ws28c_c00000{word-spacing:13.974768pt;}
.ws3e1_c00000{word-spacing:13.979920pt;}
.ws49_c00000{word-spacing:14.027200pt;}
.ws2bb_c00000{word-spacing:14.027904pt;}
.ws1c3_c00000{word-spacing:14.081040pt;}
.ws268_c00000{word-spacing:14.090960pt;}
.ws160_c00000{word-spacing:14.134176pt;}
.ws226_c00000{word-spacing:14.154720pt;}
.ws17a_c00000{word-spacing:14.187312pt;}
.ws3cc_c00000{word-spacing:14.203493pt;}
.ws6f_c00000{word-spacing:14.218480pt;}
.ws4b3_c00000{word-spacing:14.222272pt;}
.ws1e7_c00000{word-spacing:14.240448pt;}
.ws11e_c00000{word-spacing:14.282240pt;}
.ws310_c00000{word-spacing:14.288613pt;}
.ws113_c00000{word-spacing:14.293584pt;}
.ws2c2_c00000{word-spacing:14.346000pt;}
.ws1d4_c00000{word-spacing:14.346720pt;}
.ws508_c00000{word-spacing:14.361381pt;}
.ws350_c00000{word-spacing:14.399856pt;}
.ws4f4_c00000{word-spacing:14.408080pt;}
.ws286_c00000{word-spacing:14.409760pt;}
.ws1a5_c00000{word-spacing:14.452992pt;}
.ws291_c00000{word-spacing:14.473520pt;}
.ws2e9_c00000{word-spacing:14.506128pt;}
.ws11f_c00000{word-spacing:14.537280pt;}
.ws276_c00000{word-spacing:14.559264pt;}
.ws13e_c00000{word-spacing:14.601040pt;}
.ws203_c00000{word-spacing:14.612400pt;}
.ws47a_c00000{word-spacing:14.635973pt;}
.ws13a_c00000{word-spacing:14.664800pt;}
.ws212_c00000{word-spacing:14.665536pt;}
.ws3c7_c00000{word-spacing:14.697173pt;}
.ws1c8_c00000{word-spacing:14.718672pt;}
.ws19d_c00000{word-spacing:14.728560pt;}
.ws1a9_c00000{word-spacing:14.771808pt;}
.ws1be_c00000{word-spacing:14.792320pt;}
.ws162_c00000{word-spacing:14.824944pt;}
.ws1da_c00000{word-spacing:14.856080pt;}
.ws1ca_c00000{word-spacing:14.878080pt;}
.ws72_c00000{word-spacing:14.919840pt;}
.ws12f_c00000{word-spacing:14.931216pt;}
.ws165_c00000{word-spacing:14.983600pt;}
.wse0_c00000{word-spacing:14.984352pt;}
.ws217_c00000{word-spacing:15.037488pt;}
.ws111_c00000{word-spacing:15.047360pt;}
.ws1a4_c00000{word-spacing:15.090624pt;}
.ws2a5_c00000{word-spacing:15.111120pt;}
.ws264_c00000{word-spacing:15.143760pt;}
.ws526_c00000{word-spacing:15.172213pt;}
.ws2d_c00000{word-spacing:15.174880pt;}
.ws17e_c00000{word-spacing:15.196896pt;}
.ws52e_c00000{word-spacing:15.214507pt;}
.ws1fb_c00000{word-spacing:15.236459pt;}
.ws1e2_c00000{word-spacing:15.238640pt;}
.wsa9_c00000{word-spacing:15.250032pt;}
.ws1bd_c00000{word-spacing:15.302400pt;}
.wsa7_c00000{word-spacing:15.303168pt;}
.ws419_c00000{word-spacing:15.341237pt;}
.ws202_c00000{word-spacing:15.356304pt;}
.ws1fa_c00000{word-spacing:15.366160pt;}
.wscd_c00000{word-spacing:15.409440pt;}
.ws23d_c00000{word-spacing:15.429920pt;}
.ws99_c00000{word-spacing:15.462576pt;}
.ws269_c00000{word-spacing:15.493680pt;}
.ws16e_c00000{word-spacing:15.515712pt;}
.ws24f_c00000{word-spacing:15.557440pt;}
.wsbf_c00000{word-spacing:15.561531pt;}
.ws96_c00000{word-spacing:15.568848pt;}
.ws39a_c00000{word-spacing:15.569264pt;}
.wsa0_c00000{word-spacing:15.585269pt;}
.ws84_c00000{word-spacing:15.621200pt;}
.ws9f_c00000{word-spacing:15.621984pt;}
.ws2cc_c00000{word-spacing:15.675120pt;}
.ws13f_c00000{word-spacing:15.684960pt;}
.ws15f_c00000{word-spacing:15.728256pt;}
.ws34d_c00000{word-spacing:15.731013pt;}
.ws178_c00000{word-spacing:15.748720pt;}
.wsbe_c00000{word-spacing:15.781392pt;}
.ws2ef_c00000{word-spacing:15.797333pt;}
.ws190_c00000{word-spacing:15.812480pt;}
.ws14b_c00000{word-spacing:15.834528pt;}
.ws1cf_c00000{word-spacing:15.876240pt;}
.wsb8_c00000{word-spacing:15.887664pt;}
.wsdb_c00000{word-spacing:15.940000pt;}
.wsb7_c00000{word-spacing:15.940800pt;}
.ws4fd_c00000{word-spacing:15.965653pt;}
.ws14a_c00000{word-spacing:15.993936pt;}
.ws127_c00000{word-spacing:16.003760pt;}
.ws116_c00000{word-spacing:16.047072pt;}
.ws198_c00000{word-spacing:16.067520pt;}
.wsb3_c00000{word-spacing:16.100208pt;}
.ws4c3_c00000{word-spacing:16.123264pt;}
.wseb_c00000{word-spacing:16.131280pt;}
.ws204_c00000{word-spacing:16.153344pt;}
.ws132_c00000{word-spacing:16.195040pt;}
.ws213_c00000{word-spacing:16.206480pt;}
.ws243_c00000{word-spacing:16.225157pt;}
.ws120_c00000{word-spacing:16.258800pt;}
.ws148_c00000{word-spacing:16.259616pt;}
.ws147_c00000{word-spacing:16.281733pt;}
.ws214_c00000{word-spacing:16.312752pt;}
.ws8f_c00000{word-spacing:16.322560pt;}
.wsbb_c00000{word-spacing:16.361531pt;}
.wsba_c00000{word-spacing:16.365888pt;}
.wsf3_c00000{word-spacing:16.386320pt;}
.wse2_c00000{word-spacing:16.419024pt;}
.ws3df_c00000{word-spacing:16.440677pt;}
.ws5c_c00000{word-spacing:16.450080pt;}
.wsa3_c00000{word-spacing:16.472160pt;}
.ws416_c00000{word-spacing:16.479200pt;}
.wse9_c00000{word-spacing:16.513840pt;}
.wsdf_c00000{word-spacing:16.525296pt;}
.ws323_c00000{word-spacing:16.575243pt;}
.ws18b_c00000{word-spacing:16.577600pt;}
.ws62_c00000{word-spacing:16.578432pt;}
.ws3da_c00000{word-spacing:16.628080pt;}
.ws265_c00000{word-spacing:16.631568pt;}
.ws38f_c00000{word-spacing:16.639973pt;}
.ws250_c00000{word-spacing:16.641360pt;}
.ws4bb_c00000{word-spacing:16.661973pt;}
.ws228_c00000{word-spacing:16.684704pt;}
.ws1ea_c00000{word-spacing:16.705120pt;}
.ws1ba_c00000{word-spacing:16.737840pt;}
.ws121_c00000{word-spacing:16.768880pt;}
.wse1_c00000{word-spacing:16.790976pt;}
.ws110_c00000{word-spacing:16.832640pt;}
.ws2ce_c00000{word-spacing:16.835040pt;}
.ws4df_c00000{word-spacing:16.835515pt;}
.ws244_c00000{word-spacing:16.844112pt;}
.ws225_c00000{word-spacing:16.879413pt;}
.ws129_c00000{word-spacing:16.896400pt;}
.ws1fc_c00000{word-spacing:16.897248pt;}
.ws4c1_c00000{word-spacing:16.909013pt;}
.ws9a_c00000{word-spacing:16.950384pt;}
.ws11d_c00000{word-spacing:16.960160pt;}
.ws36a_c00000{word-spacing:16.976560pt;}
.ws16f_c00000{word-spacing:17.003520pt;}
.ws55_c00000{word-spacing:17.023920pt;}
.ws95_c00000{word-spacing:17.056656pt;}
.wsc4_c00000{word-spacing:17.080005pt;}
.ws1bf_c00000{word-spacing:17.087680pt;}
.ws67_c00000{word-spacing:17.109792pt;}
.ws2fa_c00000{word-spacing:17.135200pt;}
.ws29f_c00000{word-spacing:17.146080pt;}
.ws1b4_c00000{word-spacing:17.151440pt;}
.ws4f3_c00000{word-spacing:17.162080pt;}
.ws15e_c00000{word-spacing:17.162928pt;}
.ws177_c00000{word-spacing:17.215200pt;}
.wsbd_c00000{word-spacing:17.216064pt;}
.ws47d_c00000{word-spacing:17.261200pt;}
.ws2fb_c00000{word-spacing:17.269200pt;}
.wsdc_c00000{word-spacing:17.278960pt;}
.ws432_c00000{word-spacing:17.290507pt;}
.wsaa_c00000{word-spacing:17.322336pt;}
.ws1f9_c00000{word-spacing:17.342720pt;}
.ws442_c00000{word-spacing:17.354080pt;}
.wsb9_c00000{word-spacing:17.375472pt;}
.ws37e_c00000{word-spacing:17.384213pt;}
.ws471_c00000{word-spacing:17.400693pt;}
.ws89_c00000{word-spacing:17.406480pt;}
.ws3e7_c00000{word-spacing:17.425307pt;}
.wsca_c00000{word-spacing:17.428608pt;}
.ws4f9_c00000{word-spacing:17.449147pt;}
.ws23f_c00000{word-spacing:17.470240pt;}
.ws115_c00000{word-spacing:17.481744pt;}
.ws8e_c00000{word-spacing:17.534000pt;}
.wsa5_c00000{word-spacing:17.534880pt;}
.ws2c6_c00000{word-spacing:17.538853pt;}
.wse6_c00000{word-spacing:17.588016pt;}
.ws3ac_c00000{word-spacing:17.591627pt;}
.ws109_c00000{word-spacing:17.597760pt;}
.ws4ba_c00000{word-spacing:17.606640pt;}
.ws4e2_c00000{word-spacing:17.611200pt;}
.ws4e6_c00000{word-spacing:17.621648pt;}
.ws3bc_c00000{word-spacing:17.623248pt;}
.ws3bf_c00000{word-spacing:17.626000pt;}
.ws1e9_c00000{word-spacing:17.626011pt;}
.ws447_c00000{word-spacing:17.626085pt;}
.ws377_c00000{word-spacing:17.626656pt;}
.ws2da_c00000{word-spacing:17.628048pt;}
.ws2cd_c00000{word-spacing:17.629381pt;}
.ws2e0_c00000{word-spacing:17.629648pt;}
.ws3a1_c00000{word-spacing:17.629915pt;}
.ws4ea_c00000{word-spacing:17.631248pt;}
.ws304_c00000{word-spacing:17.631723pt;}
.ws3ee_c00000{word-spacing:17.632256pt;}
.ws1d0_c00000{word-spacing:17.632341pt;}
.ws426_c00000{word-spacing:17.633019pt;}
.ws2db_c00000{word-spacing:17.633915pt;}
.ws35b_c00000{word-spacing:17.634885pt;}
.ws498_c00000{word-spacing:17.635056pt;}
.ws3a7_c00000{word-spacing:17.635248pt;}
.ws388_c00000{word-spacing:17.636485pt;}
.ws2b5_c00000{word-spacing:17.637189pt;}
.ws2d6_c00000{word-spacing:17.638160pt;}
.ws303_c00000{word-spacing:17.640123pt;}
.ws1c1_c00000{word-spacing:17.641008pt;}
.ws6a_c00000{word-spacing:17.641152pt;}
.ws1ee_c00000{word-spacing:17.642123pt;}
.ws37b_c00000{word-spacing:17.642923pt;}
.ws384_c00000{word-spacing:17.644123pt;}
.ws429_c00000{word-spacing:17.644389pt;}
.ws404_c00000{word-spacing:17.645131pt;}
.ws27a_c00000{word-spacing:17.646960pt;}
.ws30a_c00000{word-spacing:17.647056pt;}
.ws4a6_c00000{word-spacing:17.651627pt;}
.ws383_c00000{word-spacing:17.651701pt;}
.ws51c_c00000{word-spacing:17.652597pt;}
.ws4bc_c00000{word-spacing:17.653397pt;}
.ws475_c00000{word-spacing:17.657568pt;}
.ws33e_c00000{word-spacing:17.661035pt;}
.ws1f7_c00000{word-spacing:17.661339pt;}
.wscf_c00000{word-spacing:17.661520pt;}
.ws2e8_c00000{word-spacing:17.662101pt;}
.ws15c_c00000{word-spacing:17.664272pt;}
.ws1fe_c00000{word-spacing:17.666309pt;}
.ws2d0_c00000{word-spacing:17.666672pt;}
.ws3b8_c00000{word-spacing:17.668395pt;}
.ws326_c00000{word-spacing:17.668576pt;}
.ws4a3_c00000{word-spacing:17.671147pt;}
.ws25c_c00000{word-spacing:17.674613pt;}
.ws4dd_c00000{word-spacing:17.683451pt;}
.wsfb_c00000{word-spacing:17.694288pt;}
.ws40f_c00000{word-spacing:17.711093pt;}
.ws8d_c00000{word-spacing:17.725280pt;}
.ws3c8_c00000{word-spacing:17.737760pt;}
.ws29b_c00000{word-spacing:17.743760pt;}
.ws97_c00000{word-spacing:17.747424pt;}
.ws14f_c00000{word-spacing:17.789040pt;}
.wsbc_c00000{word-spacing:17.800560pt;}
.ws351_c00000{word-spacing:17.823413pt;}
.wsc1_c00000{word-spacing:17.852800pt;}
.wsc0_c00000{word-spacing:17.853696pt;}
.ws506_c00000{word-spacing:17.864880pt;}
.ws534_c00000{word-spacing:17.893360pt;}
.wsa4_c00000{word-spacing:17.906832pt;}
.ws128_c00000{word-spacing:17.916560pt;}
.ws3c4_c00000{word-spacing:17.924581pt;}
.ws207_c00000{word-spacing:17.949200pt;}
.ws65_c00000{word-spacing:17.959968pt;}
.ws266_c00000{word-spacing:17.978213pt;}
.ws361_c00000{word-spacing:17.979067pt;}
.ws272_c00000{word-spacing:17.980320pt;}
.ws2c9_c00000{word-spacing:18.013104pt;}
.ws1d7_c00000{word-spacing:18.044080pt;}
.wsac_c00000{word-spacing:18.066240pt;}
.ws4dc_c00000{word-spacing:18.096933pt;}
.ws101_c00000{word-spacing:18.107840pt;}
.ws20d_c00000{word-spacing:18.119376pt;}
.ws493_c00000{word-spacing:18.124080pt;}
.ws52a_c00000{word-spacing:18.134133pt;}
.ws1a3_c00000{word-spacing:18.171600pt;}
.ws172_c00000{word-spacing:18.172512pt;}
.ws263_c00000{word-spacing:18.225648pt;}
.ws7b_c00000{word-spacing:18.235360pt;}
.ws1fd_c00000{word-spacing:18.278784pt;}
.ws359_c00000{word-spacing:18.293867pt;}
.ws119_c00000{word-spacing:18.298347pt;}
.ws11a_c00000{word-spacing:18.299120pt;}
.ws306_c00000{word-spacing:18.313899pt;}
.ws1b1_c00000{word-spacing:18.331920pt;}
.ws58_c00000{word-spacing:18.362880pt;}
.ws44a_c00000{word-spacing:18.373525pt;}
.ws9e_c00000{word-spacing:18.385056pt;}
.ws305_c00000{word-spacing:18.389008pt;}
.ws531_c00000{word-spacing:18.399600pt;}
.ws227_c00000{word-spacing:18.426640pt;}
.ws68_c00000{word-spacing:18.438192pt;}
.ws5d_c00000{word-spacing:18.490400pt;}
.ws66_c00000{word-spacing:18.491328pt;}
.wsae_c00000{word-spacing:18.544464pt;}
.ws122_c00000{word-spacing:18.554160pt;}
.wsfa_c00000{word-spacing:18.597600pt;}
.ws105_c00000{word-spacing:18.617920pt;}
.ws22e_c00000{word-spacing:18.618080pt;}
.wsab_c00000{word-spacing:18.650736pt;}
.ws78_c00000{word-spacing:18.681680pt;}
.ws517_c00000{word-spacing:18.695600pt;}
.wscb_c00000{word-spacing:18.703872pt;}
.ws518_c00000{word-spacing:18.707653pt;}
.ws17c_c00000{word-spacing:18.708341pt;}
.ws36b_c00000{word-spacing:18.709573pt;}
.ws4b8_c00000{word-spacing:18.734133pt;}
.ws140_c00000{word-spacing:18.745440pt;}
.ws3ec_c00000{word-spacing:18.751413pt;}
.ws20b_c00000{word-spacing:18.757008pt;}
.ws3e5_c00000{word-spacing:18.779435pt;}
.ws3dc_c00000{word-spacing:18.782480pt;}
.ws1f8_c00000{word-spacing:18.809200pt;}
.ws1b2_c00000{word-spacing:18.810144pt;}
.ws522_c00000{word-spacing:18.820053pt;}
.wsa6_c00000{word-spacing:18.863280pt;}
.ws43b_c00000{word-spacing:18.866400pt;}
.ws10e_c00000{word-spacing:18.872960pt;}
.wse5_c00000{word-spacing:18.916416pt;}
.wsd9_c00000{word-spacing:18.936720pt;}
.ws39c_c00000{word-spacing:18.965893pt;}
.ws69_c00000{word-spacing:18.969552pt;}
.ws57_c00000{word-spacing:19.000480pt;}
.wsc9_c00000{word-spacing:19.022688pt;}
.wsc7_c00000{word-spacing:19.034101pt;}
.ws487_c00000{word-spacing:19.034160pt;}
.ws462_c00000{word-spacing:19.058267pt;}
.wsea_c00000{word-spacing:19.064240pt;}
.ws2a7_c00000{word-spacing:19.075824pt;}
.ws41e_c00000{word-spacing:19.081867pt;}
.ws4a0_c00000{word-spacing:19.094864pt;}
.ws3b1_c00000{word-spacing:19.126053pt;}
.ws43_c00000{word-spacing:19.128000pt;}
.wse8_c00000{word-spacing:19.128960pt;}
.ws520_c00000{word-spacing:19.131067pt;}
.wsee_c00000{word-spacing:19.151413pt;}
.wse7_c00000{word-spacing:19.167243pt;}
.ws30f_c00000{word-spacing:19.175600pt;}
.ws91_c00000{word-spacing:19.182096pt;}
.ws6e_c00000{word-spacing:19.191760pt;}
.ws90_c00000{word-spacing:19.235232pt;}
.ws4ab_c00000{word-spacing:19.253339pt;}
.ws85_c00000{word-spacing:19.255520pt;}
.ws348_c00000{word-spacing:19.288368pt;}
.ws157_c00000{word-spacing:19.319280pt;}
.wsb4_c00000{word-spacing:19.326320pt;}
.ws40a_c00000{word-spacing:19.334640pt;}
.wsb6_c00000{word-spacing:19.341504pt;}
.ws43e_c00000{word-spacing:19.347653pt;}
.ws166_c00000{word-spacing:19.383040pt;}
.ws1e6_c00000{word-spacing:19.394640pt;}
.ws37d_c00000{word-spacing:19.433760pt;}
.ws3fe_c00000{word-spacing:19.444747pt;}
.ws81_c00000{word-spacing:19.446800pt;}
.wsf5_c00000{word-spacing:19.447776pt;}
.ws428_c00000{word-spacing:19.457067pt;}
.ws35f_c00000{word-spacing:19.465200pt;}
.ws51f_c00000{word-spacing:19.487413pt;}
.ws249_c00000{word-spacing:19.500912pt;}
.ws53_c00000{word-spacing:19.510560pt;}
.ws3be_c00000{word-spacing:19.530923pt;}
.ws20a_c00000{word-spacing:19.554048pt;}
.ws155_c00000{word-spacing:19.574320pt;}
.ws9d_c00000{word-spacing:19.607184pt;}
.ws316_c00000{word-spacing:19.633787pt;}
.ws40b_c00000{word-spacing:19.636747pt;}
.ws74_c00000{word-spacing:19.638080pt;}
.ws1b0_c00000{word-spacing:19.660320pt;}
.ws4e4_c00000{word-spacing:19.661339pt;}
.ws18c_c00000{word-spacing:19.701840pt;}
.ws4c4_c00000{word-spacing:19.710219pt;}
.ws181_c00000{word-spacing:19.713456pt;}
.ws2d3_c00000{word-spacing:19.759040pt;}
.ws2e1_c00000{word-spacing:19.764581pt;}
.ws19c_c00000{word-spacing:19.765600pt;}
.wsaf_c00000{word-spacing:19.766592pt;}
.ws32f_c00000{word-spacing:19.791200pt;}
.ws2c1_c00000{word-spacing:19.819728pt;}
.ws83_c00000{word-spacing:19.829360pt;}
.ws4fe_c00000{word-spacing:19.864053pt;}
.ws346_c00000{word-spacing:19.872864pt;}
.ws142_c00000{word-spacing:19.893120pt;}
.ws43c_c00000{word-spacing:19.898080pt;}
.ws4db_c00000{word-spacing:19.910907pt;}
.ws17d_c00000{word-spacing:19.926000pt;}
.ws3f6_c00000{word-spacing:19.945493pt;}
.wsd1_c00000{word-spacing:19.956880pt;}
.ws1bb_c00000{word-spacing:19.979136pt;}
.ws409_c00000{word-spacing:20.019493pt;}
.ws478_c00000{word-spacing:20.020533pt;}
.ws79_c00000{word-spacing:20.020640pt;}
.ws12e_c00000{word-spacing:20.032272pt;}
.ws3bd_c00000{word-spacing:20.046240pt;}
.wsff_c00000{word-spacing:20.084400pt;}
.ws176_c00000{word-spacing:20.085408pt;}
.ws4aa_c00000{word-spacing:20.111413pt;}
.ws33b_c00000{word-spacing:20.128800pt;}
.ws2a3_c00000{word-spacing:20.138544pt;}
.ws158_c00000{word-spacing:20.148160pt;}
.ws46d_c00000{word-spacing:20.178027pt;}
.wsc8_c00000{word-spacing:20.191680pt;}
.ws32a_c00000{word-spacing:20.196613pt;}
.ws42_c00000{word-spacing:20.211920pt;}
.ws319_c00000{word-spacing:20.228427pt;}
.ws94_c00000{word-spacing:20.244816pt;}
.ws368_c00000{word-spacing:20.246640pt;}
.ws41_c00000{word-spacing:20.275680pt;}
.ws3b7_c00000{word-spacing:20.297909pt;}
.ws1dd_c00000{word-spacing:20.297952pt;}
.ws430_c00000{word-spacing:20.310907pt;}
.ws151_c00000{word-spacing:20.339440pt;}
.wsb1_c00000{word-spacing:20.351088pt;}
.ws4b_c00000{word-spacing:20.403200pt;}
.ws92_c00000{word-spacing:20.404224pt;}
.ws25a_c00000{word-spacing:20.412011pt;}
.ws394_c00000{word-spacing:20.417627pt;}
.ws2ee_c00000{word-spacing:20.457360pt;}
.ws13b_c00000{word-spacing:20.466960pt;}
.ws2ca_c00000{word-spacing:20.468613pt;}
.wsb5_c00000{word-spacing:20.510496pt;}
.wsd8_c00000{word-spacing:20.530720pt;}
.ws4f7_c00000{word-spacing:20.534907pt;}
.ws25d_c00000{word-spacing:20.536235pt;}
.ws395_c00000{word-spacing:20.538693pt;}
.ws14e_c00000{word-spacing:20.548747pt;}
.ws2df_c00000{word-spacing:20.563632pt;}
.ws44_c00000{word-spacing:20.594480pt;}
.ws2d1_c00000{word-spacing:20.609067pt;}
.wsf6_c00000{word-spacing:20.616768pt;}
.ws4d4_c00000{word-spacing:20.618080pt;}
.ws37_c00000{word-spacing:20.658240pt;}
.ws457_c00000{word-spacing:20.661707pt;}
.ws182_c00000{word-spacing:20.669904pt;}
.ws464_c00000{word-spacing:20.698880pt;}
.ws4fb_c00000{word-spacing:20.701867pt;}
.ws433_c00000{word-spacing:20.702053pt;}
.ws444_c00000{word-spacing:20.703360pt;}
.ws2f4_c00000{word-spacing:20.706507pt;}
.ws30e_c00000{word-spacing:20.706747pt;}
.ws273_c00000{word-spacing:20.706987pt;}
.ws274_c00000{word-spacing:20.710267pt;}
.ws497_c00000{word-spacing:20.711547pt;}
.ws452_c00000{word-spacing:20.712880pt;}
.ws3a2_c00000{word-spacing:20.721707pt;}
.ws1c_c00000{word-spacing:20.722000pt;}
.wse3_c00000{word-spacing:20.723040pt;}
.ws336_c00000{word-spacing:20.724853pt;}
.ws455_c00000{word-spacing:20.725707pt;}
.ws3b4_c00000{word-spacing:20.732053pt;}
.ws39b_c00000{word-spacing:20.735813pt;}
.ws24d_c00000{word-spacing:20.736581pt;}
.ws313_c00000{word-spacing:20.739227pt;}
.ws3ab_c00000{word-spacing:20.742213pt;}
.ws308_c00000{word-spacing:20.742427pt;}
.ws4c7_c00000{word-spacing:20.743707pt;}
.ws421_c00000{word-spacing:20.750293pt;}
.ws1ff_c00000{word-spacing:20.754853pt;}
.ws4c6_c00000{word-spacing:20.757840pt;}
.ws335_c00000{word-spacing:20.757867pt;}
.ws19f_c00000{word-spacing:20.758693pt;}
.ws2e7_c00000{word-spacing:20.759147pt;}
.ws51d_c00000{word-spacing:20.761867pt;}
.ws4d0_c00000{word-spacing:20.762480pt;}
.ws63_c00000{word-spacing:20.776176pt;}
.ws2b_c00000{word-spacing:20.785760pt;}
.ws399_c00000{word-spacing:20.815200pt;}
.ws1aa_c00000{word-spacing:20.829312pt;}
.ws1ab_c00000{word-spacing:20.841376pt;}
.ws154_c00000{word-spacing:20.849520pt;}
.ws3c0_c00000{word-spacing:20.878960pt;}
.ws26f_c00000{word-spacing:20.882448pt;}
.ws52f_c00000{word-spacing:20.890080pt;}
.ws103_c00000{word-spacing:20.913280pt;}
.ws175_c00000{word-spacing:20.935584pt;}
.ws465_c00000{word-spacing:20.956747pt;}
.ws466_c00000{word-spacing:20.974320pt;}
.wsdd_c00000{word-spacing:20.977040pt;}
.ws131_c00000{word-spacing:20.988720pt;}
.ws342_c00000{word-spacing:20.991040pt;}
.ws3f0_c00000{word-spacing:21.002080pt;}
.wsec_c00000{word-spacing:21.040800pt;}
.ws279_c00000{word-spacing:21.041856pt;}
.ws1ad_c00000{word-spacing:21.094992pt;}
.ws1cd_c00000{word-spacing:21.098080pt;}
.ws1e5_c00000{word-spacing:21.104560pt;}
.ws445_c00000{word-spacing:21.145040pt;}
.ws1a8_c00000{word-spacing:21.148128pt;}
.ws5b_c00000{word-spacing:21.168320pt;}
.ws39f_c00000{word-spacing:21.177803pt;}
.ws271_c00000{word-spacing:21.201264pt;}
.ws6b_c00000{word-spacing:21.232080pt;}
.ws2c3_c00000{word-spacing:21.254400pt;}
.ws3f1_c00000{word-spacing:21.291307pt;}
.ws42d_c00000{word-spacing:21.295413pt;}
.ws104_c00000{word-spacing:21.295840pt;}
.ws477_c00000{word-spacing:21.296277pt;}
.wsfc_c00000{word-spacing:21.307536pt;}
.ws406_c00000{word-spacing:21.311813pt;}
.ws2a2_c00000{word-spacing:21.338080pt;}
.ws10a_c00000{word-spacing:21.359600pt;}
.ws1de_c00000{word-spacing:21.360672pt;}
.ws48d_c00000{word-spacing:21.378693pt;}
.ws470_c00000{word-spacing:21.385600pt;}
.ws390_c00000{word-spacing:21.398933pt;}
.ws453_c00000{word-spacing:21.402080pt;}
.wsb2_c00000{word-spacing:21.413808pt;}
.ws82_c00000{word-spacing:21.423360pt;}
.ws491_c00000{word-spacing:21.428192pt;}
.ws26d_c00000{word-spacing:21.434667pt;}
.ws141_c00000{word-spacing:21.439413pt;}
.ws411_c00000{word-spacing:21.448587pt;}
.ws329_c00000{word-spacing:21.450000pt;}
.wsb0_c00000{word-spacing:21.466944pt;}
.ws3e6_c00000{word-spacing:21.468240pt;}
.ws139_c00000{word-spacing:21.487120pt;}
.ws137_c00000{word-spacing:21.496987pt;}
.ws138_c00000{word-spacing:21.502320pt;}
.ws325_c00000{word-spacing:21.503040pt;}
.ws374_c00000{word-spacing:21.503413pt;}
.ws450_c00000{word-spacing:21.514480pt;}
.ws161_c00000{word-spacing:21.520080pt;}
.ws4c_c00000{word-spacing:21.550880pt;}
.ws205_c00000{word-spacing:21.573216pt;}
.ws4fc_c00000{word-spacing:21.609253pt;}
.ws5f_c00000{word-spacing:21.614640pt;}
.ws17b_c00000{word-spacing:21.626352pt;}
.ws4f6_c00000{word-spacing:21.659200pt;}
.ws159_c00000{word-spacing:21.678400pt;}
.wsc2_c00000{word-spacing:21.679488pt;}
.ws375_c00000{word-spacing:21.688496pt;}
.ws3d7_c00000{word-spacing:21.730437pt;}
.ws1df_c00000{word-spacing:21.732624pt;}
.ws13c_c00000{word-spacing:21.742160pt;}
.ws4be_c00000{word-spacing:21.759413pt;}
.ws35a_c00000{word-spacing:21.759573pt;}
.ws49a_c00000{word-spacing:21.764256pt;}
.ws4f1_c00000{word-spacing:21.770933pt;}
.ws366_c00000{word-spacing:21.780267pt;}
.wse4_c00000{word-spacing:21.785760pt;}
.ws70_c00000{word-spacing:21.805920pt;}
.ws425_c00000{word-spacing:21.817120pt;}
.ws283_c00000{word-spacing:21.823413pt;}
.ws64_c00000{word-spacing:21.838896pt;}
.ws56_c00000{word-spacing:21.869680pt;}
.ws1ac_c00000{word-spacing:21.892032pt;}
.ws48c_c00000{word-spacing:21.897867pt;}
.ws245_c00000{word-spacing:21.922907pt;}
.ws1ed_c00000{word-spacing:21.933440pt;}
.ws2a6_c00000{word-spacing:21.945168pt;}
.ws423_c00000{word-spacing:21.951413pt;}
.ws2ea_c00000{word-spacing:21.961867pt;}
.ws2bc_c00000{word-spacing:21.967413pt;}
.ws2ab_c00000{word-spacing:21.983413pt;}
.ws4f8_c00000{word-spacing:21.983600pt;}
.ws11b_c00000{word-spacing:21.997200pt;}
.ws130_c00000{word-spacing:21.998304pt;}
.ws4d8_c00000{word-spacing:22.004747pt;}
.ws156_c00000{word-spacing:22.015413pt;}
.ws15b_c00000{word-spacing:22.051440pt;}
.ws322_c00000{word-spacing:22.055307pt;}
.wsd4_c00000{word-spacing:22.060960pt;}
.ws3d4_c00000{word-spacing:22.073600pt;}
.ws45f_c00000{word-spacing:22.093173pt;}
.ws1b3_c00000{word-spacing:22.104576pt;}
.ws4cb_c00000{word-spacing:22.124027pt;}
.ws8c_c00000{word-spacing:22.124720pt;}
.ws302_c00000{word-spacing:22.138907pt;}
.ws1a7_c00000{word-spacing:22.157712pt;}
.ws179_c00000{word-spacing:22.188480pt;}
.ws376_c00000{word-spacing:22.210848pt;}
.ws414_c00000{word-spacing:22.220320pt;}
.ws4e1_c00000{word-spacing:22.234080pt;}
.ws2f0_c00000{word-spacing:22.244533pt;}
.ws11c_c00000{word-spacing:22.252240pt;}
.ws2c8_c00000{word-spacing:22.263984pt;}
.ws208_c00000{word-spacing:22.267333pt;}
.ws338_c00000{word-spacing:22.286533pt;}
.ws4d6_c00000{word-spacing:22.304053pt;}
.ws211_c00000{word-spacing:22.306560pt;}
.ws1c0_c00000{word-spacing:22.316000pt;}
.ws22d_c00000{word-spacing:22.317120pt;}
.ws469_c00000{word-spacing:22.332389pt;}
.ws22b_c00000{word-spacing:22.334325pt;}
.ws14c_c00000{word-spacing:22.338891pt;}
.ws4ae_c00000{word-spacing:22.370256pt;}
.ws50_c00000{word-spacing:22.379760pt;}
.ws3c5_c00000{word-spacing:22.420048pt;}
.ws33f_c00000{word-spacing:22.423392pt;}
.ws5e_c00000{word-spacing:22.443520pt;}
.ws391_c00000{word-spacing:22.463413pt;}
.wsfe_c00000{word-spacing:22.476528pt;}
.ws4cf_c00000{word-spacing:22.484747pt;}
.ws49f_c00000{word-spacing:22.496139pt;}
.ws3b_c00000{word-spacing:22.507280pt;}
.ws3b5_c00000{word-spacing:22.509307pt;}
.ws2f8_c00000{word-spacing:22.511200pt;}
.ws341_c00000{word-spacing:22.520240pt;}
.ws61_c00000{word-spacing:22.529664pt;}
.ws460_c00000{word-spacing:22.543040pt;}
.ws126_c00000{word-spacing:22.571040pt;}
.ws3d2_c00000{word-spacing:22.580160pt;}
.ws206_c00000{word-spacing:22.582800pt;}
.ws27d_c00000{word-spacing:22.586960pt;}
.ws3d1_c00000{word-spacing:22.598480pt;}
.ws373_c00000{word-spacing:22.613813pt;}
.ws143_c00000{word-spacing:22.623413pt;}
.ws1e0_c00000{word-spacing:22.634800pt;}
.ws278_c00000{word-spacing:22.635936pt;}
.ws26e_c00000{word-spacing:22.655307pt;}
.ws168_c00000{word-spacing:22.660747pt;}
.ws167_c00000{word-spacing:22.666080pt;}
.wsc3_c00000{word-spacing:22.689072pt;}
.wsd5_c00000{word-spacing:22.698560pt;}
.ws331_c00000{word-spacing:22.706693pt;}
.ws48a_c00000{word-spacing:22.742208pt;}
.ws1db_c00000{word-spacing:22.757435pt;}
.ws29a_c00000{word-spacing:22.762080pt;}
.ws1bc_c00000{word-spacing:22.762320pt;}
.ws46e_c00000{word-spacing:22.772747pt;}
.ws3d0_c00000{word-spacing:22.794133pt;}
.ws93_c00000{word-spacing:22.795344pt;}
.ws527_c00000{word-spacing:22.821867pt;}
.ws10b_c00000{word-spacing:22.826080pt;}
.ws340_c00000{word-spacing:22.833483pt;}
.ws2e_c00000{word-spacing:22.847333pt;}
.ws229_c00000{word-spacing:22.848480pt;}
.ws86_c00000{word-spacing:22.889840pt;}
.ws434_c00000{word-spacing:22.898267pt;}
.ws22a_c00000{word-spacing:22.901616pt;}
.ws2e6_c00000{word-spacing:22.911200pt;}
.ws420_c00000{word-spacing:22.920027pt;}
.ws134_c00000{word-spacing:22.953600pt;}
.ws299_c00000{word-spacing:22.954752pt;}
.ws2d4_c00000{word-spacing:22.964533pt;}
.ws47f_c00000{word-spacing:22.971627pt;}
.ws2f_c00000{word-spacing:22.974027pt;}
.ws149_c00000{word-spacing:23.007888pt;}
.ws5a_c00000{word-spacing:23.017360pt;}
.ws2eb_c00000{word-spacing:23.017867pt;}
.ws25e_c00000{word-spacing:23.061024pt;}
.ws186_c00000{word-spacing:23.081120pt;}
.ws513_c00000{word-spacing:23.091600pt;}
.ws29c_c00000{word-spacing:23.114160pt;}
.ws19b_c00000{word-spacing:23.144880pt;}
.ws379_c00000{word-spacing:23.167296pt;}
.ws49c_c00000{word-spacing:23.181413pt;}
.ws1d8_c00000{word-spacing:23.208640pt;}
.ws492_c00000{word-spacing:23.215733pt;}
.ws22c_c00000{word-spacing:23.220432pt;}
.ws106_c00000{word-spacing:23.225893pt;}
.ws400_c00000{word-spacing:23.232240pt;}
.ws440_c00000{word-spacing:23.258480pt;}
.ws108_c00000{word-spacing:23.272400pt;}
.wsad_c00000{word-spacing:23.273568pt;}
.ws402_c00000{word-spacing:23.301147pt;}
.ws48e_c00000{word-spacing:23.319600pt;}
.ws3c6_c00000{word-spacing:23.326704pt;}
.ws3f3_c00000{word-spacing:23.327413pt;}
.ws47c_c00000{word-spacing:23.330693pt;}
.ws1b8_c00000{word-spacing:23.336160pt;}
.ws357_c00000{word-spacing:23.345093pt;}
.ws538_c00000{word-spacing:23.375413pt;}
.ws114_c00000{word-spacing:23.379840pt;}
.ws87_c00000{word-spacing:23.399920pt;}
.ws2dd_c00000{word-spacing:23.417867pt;}
.ws2d5_c00000{word-spacing:23.432976pt;}
.ws164_c00000{word-spacing:23.444747pt;}
.ws275_c00000{word-spacing:23.450080pt;}
.ws2ed_c00000{word-spacing:23.455040pt;}
.ws525_c00000{word-spacing:23.462907pt;}
.ws52_c00000{word-spacing:23.463680pt;}
.ws2e2_c00000{word-spacing:23.486112pt;}
.ws240_c00000{word-spacing:23.490827pt;}
.ws378_c00000{word-spacing:23.503413pt;}
.ws50e_c00000{word-spacing:23.524747pt;}
.ws48_c00000{word-spacing:23.527440pt;}
.ws481_c00000{word-spacing:23.532693pt;}
.ws317_c00000{word-spacing:23.535600pt;}
.ws1c6_c00000{word-spacing:23.539248pt;}
.ws27c_c00000{word-spacing:23.551360pt;}
.ws1b7_c00000{word-spacing:23.591200pt;}
.ws446_c00000{word-spacing:23.592384pt;}
.ws514_c00000{word-spacing:23.612720pt;}
.ws270_c00000{word-spacing:23.645520pt;}
.wsda_c00000{word-spacing:23.654960pt;}
.ws144_c00000{word-spacing:23.685733pt;}
.ws45c_c00000{word-spacing:23.686373pt;}
.ws146_c00000{word-spacing:23.698656pt;}
.ws184_c00000{word-spacing:23.718720pt;}
.ws49d_c00000{word-spacing:23.726213pt;}
.ws33a_c00000{word-spacing:23.728773pt;}
.ws300_c00000{word-spacing:23.732533pt;}
.ws505_c00000{word-spacing:23.732693pt;}
.ws29d_c00000{word-spacing:23.751792pt;}
.ws52b_c00000{word-spacing:23.761147pt;}
.ws344_c00000{word-spacing:23.762587pt;}
.ws201_c00000{word-spacing:23.763147pt;}
.ws3dd_c00000{word-spacing:23.770027pt;}
.ws30_c00000{word-spacing:23.782480pt;}
.ws2b9_c00000{word-spacing:23.790507pt;}
.ws3b0_c00000{word-spacing:23.793749pt;}
.ws2b8_c00000{word-spacing:23.804928pt;}
.ws23_c00000{word-spacing:23.846240pt;}
.ws4a2_c00000{word-spacing:23.851067pt;}
.ws1dc_c00000{word-spacing:23.858064pt;}
.ws88_c00000{word-spacing:23.910000pt;}
.ws3e8_c00000{word-spacing:23.911200pt;}
.ws397_c00000{word-spacing:23.918693pt;}
.ws4eb_c00000{word-spacing:23.959680pt;}
.ws12d_c00000{word-spacing:23.964336pt;}
.wsf4_c00000{word-spacing:23.973760pt;}
.ws511_c00000{word-spacing:24.017472pt;}
.ws3ff_c00000{word-spacing:24.031413pt;}
.ws188_c00000{word-spacing:24.037520pt;}
.ws28b_c00000{word-spacing:24.070608pt;}
.ws3c1_c00000{word-spacing:24.080368pt;}
.ws30d_c00000{word-spacing:24.095387pt;}
.ws7f_c00000{word-spacing:24.101280pt;}
.ws363_c00000{word-spacing:24.101520pt;}
.ws367_c00000{word-spacing:24.106267pt;}
.ws2c4_c00000{word-spacing:24.116933pt;}
.ws2cf_c00000{word-spacing:24.123744pt;}
.ws495_c00000{word-spacing:24.138400pt;}
.ws21b_c00000{word-spacing:24.165040pt;}
.ws3b6_c00000{word-spacing:24.176880pt;}
.ws15d_c00000{word-spacing:24.178891pt;}
.ws152_c00000{word-spacing:24.228800pt;}
.ws2f3_c00000{word-spacing:24.230016pt;}
.ws284_c00000{word-spacing:24.234427pt;}
.wsa1_c00000{word-spacing:24.283152pt;}
.ws135_c00000{word-spacing:24.292560pt;}
.ws222_c00000{word-spacing:24.336288pt;}
.ws529_c00000{word-spacing:24.346640pt;}
.ws7a_c00000{word-spacing:24.356320pt;}
.ws512_c00000{word-spacing:24.356747pt;}
.ws50f_c00000{word-spacing:24.372747pt;}
.ws449_c00000{word-spacing:24.383413pt;}
.ws1c5_c00000{word-spacing:24.389424pt;}
.ws3d9_c00000{word-spacing:24.399520pt;}
.ws4e3_c00000{word-spacing:24.401147pt;}
.ws427_c00000{word-spacing:24.409600pt;}
.ws3bb_c00000{word-spacing:24.413221pt;}
.ws1e3_c00000{word-spacing:24.420080pt;}
.ws23c_c00000{word-spacing:24.442560pt;}
.ws23b_c00000{word-spacing:24.459765pt;}
.ws2aa_c00000{word-spacing:24.463413pt;}
.ws59_c00000{word-spacing:24.483840pt;}
.ws355_c00000{word-spacing:24.490080pt;}
.ws145_c00000{word-spacing:24.495696pt;}
.ws3a6_c00000{word-spacing:24.527733pt;}
.ws4d3_c00000{word-spacing:24.528027pt;}
.ws44f_c00000{word-spacing:24.531659pt;}
.ws107_c00000{word-spacing:24.547600pt;}
.ws2e5_c00000{word-spacing:24.548832pt;}
.ws3a5_c00000{word-spacing:24.586267pt;}
.ws28a_c00000{word-spacing:24.601968pt;}
.ws3ea_c00000{word-spacing:24.602080pt;}
.ws10c_c00000{word-spacing:24.611360pt;}
.ws439_c00000{word-spacing:24.622693pt;}
.ws193_c00000{word-spacing:24.624693pt;}
.ws503_c00000{word-spacing:24.646053pt;}
.ws533_c00000{word-spacing:24.651387pt;}
.ws482_c00000{word-spacing:24.653147pt;}
.ws504_c00000{word-spacing:24.654907pt;}
.ws288_c00000{word-spacing:24.655104pt;}
.ws339_c00000{word-spacing:24.672704pt;}
.ws1d9_c00000{word-spacing:24.675120pt;}
.ws301_c00000{word-spacing:24.676533pt;}
.ws2b3_c00000{word-spacing:24.678933pt;}
.ws18e_c00000{word-spacing:24.679600pt;}
.ws24b_c00000{word-spacing:24.680267pt;}
.ws4cd_c00000{word-spacing:24.689573pt;}
.ws369_c00000{word-spacing:24.690693pt;}
.ws12c_c00000{word-spacing:24.708240pt;}
.ws287_c00000{word-spacing:24.735413pt;}
.ws51_c00000{word-spacing:24.738880pt;}
.ws330_c00000{word-spacing:24.742933pt;}
.ws3e0_c00000{word-spacing:24.761376pt;}
.ws2f2_c00000{word-spacing:24.771067pt;}
.ws8a_c00000{word-spacing:24.802640pt;}
.ws50d_c00000{word-spacing:24.814512pt;}
.ws25f_c00000{word-spacing:24.820747pt;}
.ws4b9_c00000{word-spacing:24.832907pt;}
.ws38_c00000{word-spacing:24.864907pt;}
.ws73_c00000{word-spacing:24.866400pt;}
.ws24c_c00000{word-spacing:24.867648pt;}
.ws4d1_c00000{word-spacing:24.892011pt;}
.ws32e_c00000{word-spacing:24.910533pt;}
.ws387_c00000{word-spacing:24.920784pt;}
.ws1f2_c00000{word-spacing:24.930160pt;}
.ws354_c00000{word-spacing:24.959413pt;}
.ws2a8_c00000{word-spacing:24.960160pt;}
.ws3af_c00000{word-spacing:24.973920pt;}
.ws410_c00000{word-spacing:24.986320pt;}
.ws1cb_c00000{word-spacing:24.993920pt;}
.ws31a_c00000{word-spacing:25.010053pt;}
.ws3ae_c00000{word-spacing:25.027056pt;}
.ws485_c00000{word-spacing:25.031387pt;}
.ws4d5_c00000{word-spacing:25.034080pt;}
.ws236_c00000{word-spacing:25.057680pt;}
.wsa2_c00000{word-spacing:25.080192pt;}
.ws38e_c00000{word-spacing:25.097947pt;}
.ws403_c00000{word-spacing:25.104133pt;}
.ws223_c00000{word-spacing:25.121440pt;}
.ws38c_c00000{word-spacing:25.133328pt;}
.ws3eb_c00000{word-spacing:25.156747pt;}
.ws3a0_c00000{word-spacing:25.183200pt;}
.ws54_c00000{word-spacing:25.185200pt;}
.ws17f_c00000{word-spacing:25.186464pt;}
.ws4ca_c00000{word-spacing:25.194880pt;}
.ws35e_c00000{word-spacing:25.203387pt;}
.ws2e3_c00000{word-spacing:25.225867pt;}
.ws501_c00000{word-spacing:25.231947pt;}
.ws4fa_c00000{word-spacing:25.233360pt;}
.ws1c2_c00000{word-spacing:25.239600pt;}
.ws3f4_c00000{word-spacing:25.247413pt;}
.wsed_c00000{word-spacing:25.248960pt;}
.ws4e9_c00000{word-spacing:25.252773pt;}
.ws298_c00000{word-spacing:25.292736pt;}
.ws461_c00000{word-spacing:25.295413pt;}
.ws230_c00000{word-spacing:25.312720pt;}
.ws438_c00000{word-spacing:25.335013pt;}
.ws436_c00000{word-spacing:25.345872pt;}
.ws22f_c00000{word-spacing:25.376480pt;}
.ws20c_c00000{word-spacing:25.399008pt;}
.ws1ec_c00000{word-spacing:25.440240pt;}
.ws171_c00000{word-spacing:25.452144pt;}
.ws451_c00000{word-spacing:25.476747pt;}
.ws32d_c00000{word-spacing:25.482933pt;}
.ws194_c00000{word-spacing:25.484693pt;}
.ws195_c00000{word-spacing:25.486027pt;}
.ws3e4_c00000{word-spacing:25.487413pt;}
.ws337_c00000{word-spacing:25.488027pt;}
.ws4d2_c00000{word-spacing:25.493413pt;}
.ws196_c00000{word-spacing:25.495920pt;}
.ws401_c00000{word-spacing:25.503920pt;}
.ws100_c00000{word-spacing:25.504000pt;}
.ws3aa_c00000{word-spacing:25.505280pt;}
.ws502_c00000{word-spacing:25.505387pt;}
.ws18f_c00000{word-spacing:25.508720pt;}
.ws40c_c00000{word-spacing:25.514080pt;}
.ws483_c00000{word-spacing:25.515147pt;}
.ws191_c00000{word-spacing:25.518907pt;}
.ws18d_c00000{word-spacing:25.543600pt;}
.ws2c5_c00000{word-spacing:25.548267pt;}
.ws523_c00000{word-spacing:25.556747pt;}
.ws1ae_c00000{word-spacing:25.558416pt;}
.ws150_c00000{word-spacing:25.567760pt;}
.ws41c_c00000{word-spacing:25.601360pt;}
.ws2cb_c00000{word-spacing:25.611552pt;}
.ws4b1_c00000{word-spacing:25.626640pt;}
.ws2ff_c00000{word-spacing:25.630160pt;}
.ws7e_c00000{word-spacing:25.631520pt;}
.ws42e_c00000{word-spacing:25.661573pt;}
.ws467_c00000{word-spacing:25.663733pt;}
.ws2b4_c00000{word-spacing:25.664688pt;}
.ws454_c00000{word-spacing:25.679227pt;}
.ws2a9_c00000{word-spacing:25.690080pt;}
.ws218_c00000{word-spacing:25.695280pt;}
.ws345_c00000{word-spacing:25.707435pt;}
.ws2f6_c00000{word-spacing:25.717824pt;}
.ws343_c00000{word-spacing:25.719648pt;}
.ws42f_c00000{word-spacing:25.735520pt;}
.ws199_c00000{word-spacing:25.759040pt;}
.ws364_c00000{word-spacing:25.760933pt;}
.ws242_c00000{word-spacing:25.770960pt;}
.ws44b_c00000{word-spacing:25.800693pt;}
.ws418_c00000{word-spacing:25.815627pt;}
.ws252_c00000{word-spacing:25.818677pt;}
.ws4a_c00000{word-spacing:25.822800pt;}
.ws27f_c00000{word-spacing:25.823600pt;}
.ws251_c00000{word-spacing:25.824096pt;}
.ws49b_c00000{word-spacing:25.842043pt;}
.ws180_c00000{word-spacing:25.877232pt;}
.ws153_c00000{word-spacing:25.886560pt;}
.ws484_c00000{word-spacing:25.887200pt;}
.ws32b_c00000{word-spacing:25.890480pt;}
.ws38d_c00000{word-spacing:25.919387pt;}
.ws32c_c00000{word-spacing:25.923360pt;}
.ws385_c00000{word-spacing:25.930368pt;}
.ws43f_c00000{word-spacing:25.932933pt;}
.ws3d6_c00000{word-spacing:25.935413pt;}
.ws4b6_c00000{word-spacing:25.938960pt;}
.ws353_c00000{word-spacing:25.940747pt;}
.ws1b9_c00000{word-spacing:25.950320pt;}
.ws381_c00000{word-spacing:25.961360pt;}
.ws43d_c00000{word-spacing:25.966907pt;}
.wsc6_c00000{word-spacing:25.983504pt;}
.ws1f5_c00000{word-spacing:26.014080pt;}
.ws290_c00000{word-spacing:26.020907pt;}
.ws50c_c00000{word-spacing:26.021573pt;}
.ws2d8_c00000{word-spacing:26.036640pt;}
.ws4e8_c00000{word-spacing:26.038352pt;}
.ws16c_c00000{word-spacing:26.077840pt;}
.ws437_c00000{word-spacing:26.089776pt;}
.ws46a_c00000{word-spacing:26.119360pt;}
.ws424_c00000{word-spacing:26.140715pt;}
.wsce_c00000{word-spacing:26.141600pt;}
.ws170_c00000{word-spacing:26.142912pt;}
.ws34a_c00000{word-spacing:26.196048pt;}
.ws7d_c00000{word-spacing:26.205360pt;}
.ws3cd_c00000{word-spacing:26.208133pt;}
.ws43a_c00000{word-spacing:26.229573pt;}
.ws328_c00000{word-spacing:26.246027pt;}
.ws1af_c00000{word-spacing:26.249184pt;}
.ws136_c00000{word-spacing:26.252027pt;}
.ws412_c00000{word-spacing:26.262240pt;}
.ws47_c00000{word-spacing:26.269120pt;}
.ws297_c00000{word-spacing:26.302320pt;}
.ws486_c00000{word-spacing:26.329867pt;}
.ws13d_c00000{word-spacing:26.332880pt;}
.ws3ce_c00000{word-spacing:26.343573pt;}
.ws463_c00000{word-spacing:26.351413pt;}
.ws2e4_c00000{word-spacing:26.355456pt;}
.ws4c5_c00000{word-spacing:26.388747pt;}
.wsd0_c00000{word-spacing:26.396640pt;}
.ws3b3_c00000{word-spacing:26.401360pt;}
.ws3f7_c00000{word-spacing:26.420747pt;}
.ws41d_c00000{word-spacing:26.422720pt;}
.ws41b_c00000{word-spacing:26.436907pt;}
.ws1a2_c00000{word-spacing:26.460400pt;}
.ws253_c00000{word-spacing:26.461728pt;}
.ws239_c00000{word-spacing:26.514864pt;}
.ws10f_c00000{word-spacing:26.524160pt;}
.ws408_c00000{word-spacing:26.545600pt;}
.ws510_c00000{word-spacing:26.559413pt;}
.ws2f5_c00000{word-spacing:26.568000pt;}
.ws183_c00000{word-spacing:26.587920pt;}
.wsc5_c00000{word-spacing:26.621136pt;}
.ws6c_c00000{word-spacing:26.651680pt;}
.ws2d9_c00000{word-spacing:26.674272pt;}
.ws1f_c00000{word-spacing:26.702688pt;}
.ws46_c00000{word-spacing:26.715440pt;}
.ws2b0_c00000{word-spacing:26.727408pt;}
.ws459_c00000{word-spacing:26.730080pt;}
.ws499_c00000{word-spacing:26.767413pt;}
.ws77_c00000{word-spacing:26.779200pt;}
.ws2bf_c00000{word-spacing:26.780544pt;}
.ws516_c00000{word-spacing:26.783413pt;}
.ws393_c00000{word-spacing:26.835360pt;}
.wsf1_c00000{word-spacing:26.842960pt;}
.ws4cc_c00000{word-spacing:26.852267pt;}
.ws473_c00000{word-spacing:26.886816pt;}
.ws1b5_c00000{word-spacing:26.906720pt;}
.ws37a_c00000{word-spacing:26.907920pt;}
.ws321_c00000{word-spacing:26.914267pt;}
.ws530_c00000{word-spacing:26.937173pt;}
.ws8b_c00000{word-spacing:26.970480pt;}
.ws40e_c00000{word-spacing:26.989387pt;}
.ws4a5_c00000{word-spacing:26.991120pt;}
.ws4a4_c00000{word-spacing:27.016987pt;}
.ws407_c00000{word-spacing:27.022907pt;}
.ws16b_c00000{word-spacing:27.034240pt;}
.ws347_c00000{word-spacing:27.046224pt;}
.ws324_c00000{word-spacing:27.058693pt;}
.ws15a_c00000{word-spacing:27.098000pt;}
.ws23a_c00000{word-spacing:27.099360pt;}
.wsf2_c00000{word-spacing:27.161760pt;}
.ws292_c00000{word-spacing:27.205632pt;}
.ws280_c00000{word-spacing:27.225520pt;}
.ws33c_c00000{word-spacing:27.240907pt;}
.ws3f8_c00000{word-spacing:27.258768pt;}
.ws309_c00000{word-spacing:27.270267pt;}
.ws1a1_c00000{word-spacing:27.289280pt;}
.ws500_c00000{word-spacing:27.309573pt;}
.ws2c0_c00000{word-spacing:27.311904pt;}
.ws219_c00000{word-spacing:27.353040pt;}
.ws192_c00000{word-spacing:27.360240pt;}
.ws47b_c00000{word-spacing:27.392267pt;}
.ws333_c00000{word-spacing:27.392933pt;}
.ws21c_c00000{word-spacing:27.416800pt;}
.ws36e_c00000{word-spacing:27.428747pt;}
.ws189_c00000{word-spacing:27.480560pt;}
.ws4b5_c00000{word-spacing:27.493920pt;}
.ws19_c00000{word-spacing:27.544000pt;}
.ws14d_c00000{word-spacing:27.544320pt;}
.ws519_c00000{word-spacing:27.565008pt;}
.ws3db_c00000{word-spacing:27.567307pt;}
.ws18a_c00000{word-spacing:27.571840pt;}
.ws2af_c00000{word-spacing:27.577173pt;}
.ws38a_c00000{word-spacing:27.577584pt;}
.ws1cc_c00000{word-spacing:27.608080pt;}
.ws1a_c00000{word-spacing:27.635813pt;}
.ws45d_c00000{word-spacing:27.647813pt;}
.ws4ff_c00000{word-spacing:27.666640pt;}
.ws1eb_c00000{word-spacing:27.671840pt;}
.ws3f2_c00000{word-spacing:27.732747pt;}
.ws255_c00000{word-spacing:27.735600pt;}
.ws3ef_c00000{word-spacing:27.736992pt;}
.ws489_c00000{word-spacing:27.780533pt;}
.ws34b_c00000{word-spacing:27.791413pt;}
.ws16d_c00000{word-spacing:27.799360pt;}
.ws47e_c00000{word-spacing:27.838720pt;}
.ws48b_c00000{word-spacing:27.843264pt;}
.wsde_c00000{word-spacing:27.863120pt;}
.ws45b_c00000{word-spacing:27.903387pt;}
.ws1b6_c00000{word-spacing:27.926880pt;}
.ws3f5_c00000{word-spacing:27.963360pt;}
.ws1ef_c00000{word-spacing:27.990640pt;}
.ws4e7_c00000{word-spacing:28.031360pt;}
.ws1f3_c00000{word-spacing:28.054400pt;}
.ws51a_c00000{word-spacing:28.108944pt;}
.wsd6_c00000{word-spacing:28.118160pt;}
.ws36d_c00000{word-spacing:28.129813pt;}
.ws327_c00000{word-spacing:28.171147pt;}
.ws4d_c00000{word-spacing:28.181920pt;}
.ws26b_c00000{word-spacing:28.202480pt;}
.ws4b4_c00000{word-spacing:28.218480pt;}
.ws125_c00000{word-spacing:28.245680pt;}
.ws413_c00000{word-spacing:28.293387pt;}
.ws200_c00000{word-spacing:28.309440pt;}
.ws31c_c00000{word-spacing:28.321488pt;}
.ws1d5_c00000{word-spacing:28.373200pt;}
.ws235_c00000{word-spacing:28.436960pt;}
.ws21d_c00000{word-spacing:28.460987pt;}
.ws4c8_c00000{word-spacing:28.480896pt;}
.ws4bf_c00000{word-spacing:28.490027pt;}
.ws220_c00000{word-spacing:28.496453pt;}
.ws75_c00000{word-spacing:28.500720pt;}
.ws4b0_c00000{word-spacing:28.507573pt;}
.ws197_c00000{word-spacing:28.523360pt;}
.ws31b_c00000{word-spacing:28.529253pt;}
.ws536_c00000{word-spacing:28.533307pt;}
.ws12b_c00000{word-spacing:28.534032pt;}
.ws358_c00000{word-spacing:28.538640pt;}
.ws1d_c00000{word-spacing:28.538976pt;}
.ws36_c00000{word-spacing:28.545787pt;}
.ws29e_c00000{word-spacing:28.549867pt;}
.ws241_c00000{word-spacing:28.564480pt;}
.ws41a_c00000{word-spacing:28.584960pt;}
.ws4a8_c00000{word-spacing:28.590320pt;}
.ws237_c00000{word-spacing:28.610587pt;}
.ws1e_c00000{word-spacing:28.615488pt;}
.ws2b1_c00000{word-spacing:28.616560pt;}
.ws2b2_c00000{word-spacing:28.620667pt;}
.ws76_c00000{word-spacing:28.628240pt;}
.ws435_c00000{word-spacing:28.639813pt;}
.ws3ad_c00000{word-spacing:28.659440pt;}
.ws256_c00000{word-spacing:28.692000pt;}
.ws3e3_c00000{word-spacing:28.692747pt;}
.ws3a8_c00000{word-spacing:28.752560pt;}
.ws24e_c00000{word-spacing:28.755760pt;}
.ws246_c00000{word-spacing:28.762480pt;}
.wsf0_c00000{word-spacing:28.768512pt;}
.ws27e_c00000{word-spacing:28.805813pt;}
.ws23e_c00000{word-spacing:28.819520pt;}
.ws490_c00000{word-spacing:28.825867pt;}
.wsd2_c00000{word-spacing:28.845024pt;}
.ws51e_c00000{word-spacing:28.852560pt;}
.ws44d_c00000{word-spacing:28.852848pt;}
.ws19a_c00000{word-spacing:28.883280pt;}
.ws4d7_c00000{word-spacing:28.905984pt;}
.ws509_c00000{word-spacing:28.921536pt;}
.ws221_c00000{word-spacing:28.932747pt;}
.ws185_c00000{word-spacing:28.947040pt;}
.ws44c_c00000{word-spacing:28.956240pt;}
.ws12a_c00000{word-spacing:28.959120pt;}
.ws295_c00000{word-spacing:29.010800pt;}
.ws2ec_c00000{word-spacing:29.012373pt;}
.ws372_c00000{word-spacing:29.068933pt;}
.ws4f5_c00000{word-spacing:29.071413pt;}
.ws224_c00000{word-spacing:29.074560pt;}
.ws4ef_c00000{word-spacing:29.078267pt;}
.wsf7_c00000{word-spacing:29.118528pt;}
.ws1f6_c00000{word-spacing:29.138320pt;}
.wsf9_c00000{word-spacing:29.171664pt;}
.ws26c_c00000{word-spacing:29.202080pt;}
.ws380_c00000{word-spacing:29.231387pt;}
.ws209_c00000{word-spacing:29.265840pt;}
.ws44e_c00000{word-spacing:29.277936pt;}
.ws1e1_c00000{word-spacing:29.306080pt;}
.ws417_c00000{word-spacing:29.321600pt;}
.ws10d_c00000{word-spacing:29.329600pt;}
.ws21e_c00000{word-spacing:29.393360pt;}
.ws441_c00000{word-spacing:29.393893pt;}
.ws40d_c00000{word-spacing:29.423413pt;}
.ws39d_c00000{word-spacing:29.437344pt;}
.ws118_c00000{word-spacing:29.457120pt;}
.ws1ce_c00000{word-spacing:29.520880pt;}
.wsf8_c00000{word-spacing:29.543616pt;}
.ws4ee_c00000{word-spacing:29.560347pt;}
.ws474_c00000{word-spacing:29.562080pt;}
.ws247_c00000{word-spacing:29.584640pt;}
.ws4ec_c00000{word-spacing:29.594907pt;}
.ws4ed_c00000{word-spacing:29.600907pt;}
.ws468_c00000{word-spacing:29.615147pt;}
.ws448_c00000{word-spacing:29.624427pt;}
.ws3d3_c00000{word-spacing:29.642693pt;}
.ws4f_c00000{word-spacing:29.648400pt;}
.ws187_c00000{word-spacing:29.712160pt;}
.ws311_c00000{word-spacing:29.763307pt;}
.ws16a_c00000{word-spacing:29.770080pt;}
.ws1d6_c00000{word-spacing:29.775920pt;}
.ws2a1_c00000{word-spacing:29.780747pt;}
.ws3ba_c00000{word-spacing:29.807413pt;}
.ws39e_c00000{word-spacing:29.809296pt;}
.ws45_c00000{word-spacing:29.839680pt;}
.ws4f0_c00000{word-spacing:29.898240pt;}
.ws6d_c00000{word-spacing:29.903440pt;}
.ws494_c00000{word-spacing:29.919200pt;}
.ws133_c00000{word-spacing:29.967200pt;}
.ws318_c00000{word-spacing:30.020373pt;}
.ws124_c00000{word-spacing:30.030960pt;}
.ws33d_c00000{word-spacing:30.039600pt;}
.ws362_c00000{word-spacing:30.074976pt;}
.ws24a_c00000{word-spacing:30.094720pt;}
.ws50a_c00000{word-spacing:30.112267pt;}
.ws315_c00000{word-spacing:30.133253pt;}
.ws21a_c00000{word-spacing:30.158480pt;}
.ws258_c00000{word-spacing:30.178267pt;}
.wsd7_c00000{word-spacing:30.222240pt;}
.ws117_c00000{word-spacing:30.286000pt;}
.ws262_c00000{word-spacing:30.349760pt;}
.ws480_c00000{word-spacing:30.357360pt;}
.ws80_c00000{word-spacing:30.413520pt;}
.ws2fe_c00000{word-spacing:30.437573pt;}
.ws1f1_c00000{word-spacing:30.477280pt;}
.ws2b6_c00000{word-spacing:30.541040pt;}
.ws4d9_c00000{word-spacing:30.572576pt;}
.ws28e_c00000{word-spacing:30.604800pt;}
.ws2ba_c00000{word-spacing:30.668560pt;}
.ws1e4_c00000{word-spacing:30.732320pt;}
.ws524_c00000{word-spacing:30.772747pt;}
.ws479_c00000{word-spacing:30.791147pt;}
.ws28d_c00000{word-spacing:30.796080pt;}
.ws515_c00000{word-spacing:30.849573pt;}
.ws112_c00000{word-spacing:30.859840pt;}
.ws382_c00000{word-spacing:30.890080pt;}
.ws507_c00000{word-spacing:30.903360pt;}
.ws7c_c00000{word-spacing:30.923600pt;}
.ws60_c00000{word-spacing:30.987360pt;}
.ws36c_c00000{word-spacing:31.028747pt;}
.ws2b7_c00000{word-spacing:31.051120pt;}
.ws2a0_c00000{word-spacing:31.114880pt;}
.ws2fc_c00000{word-spacing:31.150507pt;}
.ws1f0_c00000{word-spacing:31.178640pt;}
.ws42a_c00000{word-spacing:31.190832pt;}
.ws21f_c00000{word-spacing:31.199413pt;}
.ws3c9_c00000{word-spacing:31.242080pt;}
.ws20f_c00000{word-spacing:31.242400pt;}
.ws4a7_c00000{word-spacing:31.290080pt;}
.ws4a9_c00000{word-spacing:31.295413pt;}
.ws2a4_c00000{word-spacing:31.306160pt;}
.ws443_c00000{word-spacing:31.364747pt;}
.ws210_c00000{word-spacing:31.369920pt;}
.ws3d5_c00000{word-spacing:31.391413pt;}
.ws51b_c00000{word-spacing:31.403376pt;}
.ws281_c00000{word-spacing:31.433680pt;}
.ws42b_c00000{word-spacing:31.456512pt;}
.ws282_c00000{word-spacing:31.497440pt;}
.ws46c_c00000{word-spacing:31.561200pt;}
.ws296_c00000{word-spacing:31.624960pt;}
.ws396_c00000{word-spacing:31.688720pt;}
.ws261_c00000{word-spacing:31.752480pt;}
.ws405_c00000{word-spacing:31.754027pt;}
.ws24_c00000{word-spacing:31.816240pt;}
.ws3e9_c00000{word-spacing:31.866923pt;}
.ws294_c00000{word-spacing:31.880000pt;}
.ws2ac_c00000{word-spacing:31.943760pt;}
.ws360_c00000{word-spacing:31.968240pt;}
.ws3de_c00000{word-spacing:31.982016pt;}
.ws257_c00000{word-spacing:31.992240pt;}
.ws3ed_c00000{word-spacing:32.007520pt;}
.ws41f_c00000{word-spacing:32.073867pt;}
.ws320_c00000{word-spacing:32.091920pt;}
.ws528_c00000{word-spacing:32.122453pt;}
.ws332_c00000{word-spacing:32.135040pt;}
.ws45e_c00000{word-spacing:32.198800pt;}
.ws398_c00000{word-spacing:32.262560pt;}
.ws4c2_c00000{word-spacing:32.324747pt;}
.ws259_c00000{word-spacing:32.326320pt;}
.ws46b_c00000{word-spacing:32.335413pt;}
.ws293_c00000{word-spacing:32.390080pt;}
.ws3e2_c00000{word-spacing:32.419920pt;}
.ws3fa_c00000{word-spacing:32.432027pt;}
.ws33_c00000{word-spacing:32.517600pt;}
.ws4ce_c00000{word-spacing:32.527664pt;}
.ws248_c00000{word-spacing:32.581360pt;}
.ws352_c00000{word-spacing:32.686907pt;}
.ws3fb_c00000{word-spacing:32.708880pt;}
.ws4a1_c00000{word-spacing:32.729893pt;}
.ws31f_c00000{word-spacing:32.753387pt;}
.ws169_c00000{word-spacing:32.772640pt;}
.ws4af_c00000{word-spacing:32.805307pt;}
.ws2be_c00000{word-spacing:32.836400pt;}
.ws4c9_c00000{word-spacing:32.900160pt;}
.ws46f_c00000{word-spacing:32.927413pt;}
.ws521_c00000{word-spacing:32.928933pt;}
.ws3a9_c00000{word-spacing:32.934693pt;}
.ws3ca_c00000{word-spacing:32.948747pt;}
.ws2d7_c00000{word-spacing:32.963920pt;}
.ws26a_c00000{word-spacing:32.988907pt;}
.ws27b_c00000{word-spacing:33.027680pt;}
.ws3b9_c00000{word-spacing:33.119413pt;}
.ws371_c00000{word-spacing:33.155200pt;}
.ws3f9_c00000{word-spacing:33.218960pt;}
.ws431_c00000{word-spacing:33.246240pt;}
.ws2f9_c00000{word-spacing:33.282720pt;}
.ws2bd_c00000{word-spacing:33.346480pt;}
.ws34e_c00000{word-spacing:33.359232pt;}
.ws1f4_c00000{word-spacing:33.410240pt;}
.ws34f_c00000{word-spacing:33.435744pt;}
.ws4e_c00000{word-spacing:33.474000pt;}
.ws356_c00000{word-spacing:33.537760pt;}
.ws49e_c00000{word-spacing:33.544507pt;}
.ws392_c00000{word-spacing:33.568693pt;}
.ws42c_c00000{word-spacing:33.601520pt;}
.ws2dc_c00000{word-spacing:33.663040pt;}
.ws389_c00000{word-spacing:33.696027pt;}
.ws30c_c00000{word-spacing:33.792800pt;}
.ws3d8_c00000{word-spacing:33.794496pt;}
.ws349_c00000{word-spacing:33.920320pt;}
.ws31e_c00000{word-spacing:33.934693pt;}
.ws334_c00000{word-spacing:33.951600pt;}
.ws38b_c00000{word-spacing:33.984080pt;}
.ws312_c00000{word-spacing:34.175360pt;}
.ws30b_c00000{word-spacing:34.239120pt;}
.ws3a4_c00000{word-spacing:34.397573pt;}
.ws476_c00000{word-spacing:34.485264pt;}
.ws314_c00000{word-spacing:34.512480pt;}
.ws238_c00000{word-spacing:35.007573pt;}
.ws45a_c00000{word-spacing:35.404240pt;}
.ws3fc_c00000{word-spacing:35.444747pt;}
.ws34c_c00000{word-spacing:36.024400pt;}
.ws456_c00000{word-spacing:36.038267pt;}
.ws2fd_c00000{word-spacing:36.716976pt;}
.ws3cb_c00000{word-spacing:36.876384pt;}
.ws365_c00000{word-spacing:36.876693pt;}
.ws25_c00000{word-spacing:37.745920pt;}
.ws36f_c00000{word-spacing:37.925573pt;}
.ws370_c00000{word-spacing:38.064720pt;}
.ws535_c00000{word-spacing:38.841291pt;}
.ws4c0_c00000{word-spacing:40.037307pt;}
.ws52d_c00000{word-spacing:40.489632pt;}
.ws1b_c00000{word-spacing:41.215797pt;}
.ws52c_c00000{word-spacing:41.446080pt;}
.ws422_c00000{word-spacing:44.550501pt;}
.ws1a0_c00000{word-spacing:46.930053pt;}
.ws40_c00000{word-spacing:49.309605pt;}
.ws20_c00000{word-spacing:49.441803pt;}
.ws537_c00000{word-spacing:70.033248pt;}
.ws260_c00000{word-spacing:70.454800pt;}
.ws37c_c00000{word-spacing:70.456800pt;}
.wsef_c00000{word-spacing:84.545760pt;}
.ws21_c00000{word-spacing:85.999488pt;}
.ws48f_c00000{word-spacing:94.504288pt;}
.ws37f_c00000{word-spacing:94.522091pt;}
.ws3e_c00000{word-spacing:815.082336pt;}
.ws3d_c00000{word-spacing:1273.389216pt;}
.ws22_c00000{word-spacing:1403.689152pt;}
._90_c00000{margin-left:-78.296960pt;}
._7c_c00000{margin-left:-74.691493pt;}
._94_c00000{margin-left:-73.688811pt;}
._72_c00000{margin-left:-64.931616pt;}
._34_c00000{margin-left:-62.542080pt;}
._4_c00000{margin-left:-61.166741pt;}
._76_c00000{margin-left:-58.491776pt;}
._84_c00000{margin-left:-57.489093pt;}
._31_c00000{margin-left:-56.172560pt;}
._6_c00000{margin-left:-42.999744pt;}
._53_c00000{margin-left:-40.112880pt;}
._30_c00000{margin-left:-38.780400pt;}
._54_c00000{margin-left:-37.044560pt;}
._10_c00000{margin-left:-36.024400pt;}
._88_c00000{margin-left:-34.890587pt;}
._8_c00000{margin-left:-33.512256pt;}
._25_c00000{margin-left:-32.184480pt;}
._14_c00000{margin-left:-31.242400pt;}
._33_c00000{margin-left:-29.759824pt;}
._3c_c00000{margin-left:-28.855253pt;}
._1f_c00000{margin-left:-27.926880pt;}
._79_c00000{margin-left:-26.993088pt;}
._78_c00000{margin-left:-25.828069pt;}
._15_c00000{margin-left:-24.190544pt;}
._9a_c00000{margin-left:-22.765099pt;}
._7a_c00000{margin-left:-21.661520pt;}
._7d_c00000{margin-left:-20.029525pt;}
._8c_c00000{margin-left:-18.109765pt;}
._89_c00000{margin-left:-17.029099pt;}
._52_c00000{margin-left:-16.067520pt;}
._32_c00000{margin-left:-13.893200pt;}
._77_c00000{margin-left:-12.294352pt;}
._2c_c00000{margin-left:-10.754640pt;}
._7_c00000{margin-left:-9.548725pt;}
._1e_c00000{margin-left:-8.181760pt;}
._5_c00000{margin-left:-7.115616pt;}
._d_c00000{margin-left:-5.993440pt;}
._3f_c00000{margin-left:-5.100800pt;}
._9_c00000{margin-left:-3.902112pt;}
._3_c00000{margin-left:-2.387147pt;}
._2_c00000{margin-left:-0.894720pt;}
._0_c00000{width:0.942080pt;}
._1_c00000{width:2.060800pt;}
._80_c00000{width:2.983387pt;}
._e_c00000{width:3.889360pt;}
._50_c00000{width:5.143147pt;}
._61_c00000{width:6.446389pt;}
._40_c00000{width:8.025920pt;}
._4e_c00000{width:9.426560pt;}
._a_c00000{width:10.876032pt;}
._99_c00000{width:12.058187pt;}
._86_c00000{width:13.369995pt;}
._5e_c00000{width:14.283307pt;}
._2b_c00000{width:15.450720pt;}
._44_c00000{width:16.513840pt;}
._1b_c00000{width:17.994640pt;}
._5c_c00000{width:19.489760pt;}
._13_c00000{width:20.785760pt;}
._27_c00000{width:21.727840pt;}
._39_c00000{width:22.705040pt;}
._4a_c00000{width:23.911067pt;}
._4d_c00000{width:25.370000pt;}
._4c_c00000{width:26.260251pt;}
._2d_c00000{width:27.522160pt;}
._4b_c00000{width:29.222160pt;}
._65_c00000{width:30.129952pt;}
._42_c00000{width:31.293653pt;}
._35_c00000{width:32.494320pt;}
._1a_c00000{width:33.580107pt;}
._46_c00000{width:35.302240pt;}
._41_c00000{width:36.706427pt;}
._b_c00000{width:37.809680pt;}
._2f_c00000{width:38.745600pt;}
._68_c00000{width:39.681280pt;}
._3a_c00000{width:40.615120pt;}
._16_c00000{width:42.400400pt;}
._28_c00000{width:44.086187pt;}
._3e_c00000{width:45.269600pt;}
._12_c00000{width:46.417280pt;}
._29_c00000{width:48.339707pt;}
._51_c00000{width:49.435547pt;}
._3d_c00000{width:51.384933pt;}
._49_c00000{width:53.105291pt;}
._19_c00000{width:54.004720pt;}
._1c_c00000{width:55.726240pt;}
._26_c00000{width:56.873920pt;}
._18_c00000{width:58.737280pt;}
._36_c00000{width:59.934400pt;}
._5f_c00000{width:61.005147pt;}
._38_c00000{width:61.910960pt;}
._3b_c00000{width:63.186160pt;}
._6c_c00000{width:64.363947pt;}
._47_c00000{width:65.283451pt;}
._81_c00000{width:70.518560pt;}
._7f_c00000{width:84.622272pt;}
._22_c00000{width:86.387072pt;}
._17_c00000{width:90.029120pt;}
._98_c00000{width:171.232469pt;}
._67_c00000{width:177.775029pt;}
._24_c00000{width:346.584107pt;}
._85_c00000{width:370.918267pt;}
._70_c00000{width:384.771120pt;}
._6e_c00000{width:420.094160pt;}
._6b_c00000{width:465.950352pt;}
._6d_c00000{width:504.752187pt;}
._2a_c00000{width:527.267013pt;}
._87_c00000{width:551.346133pt;}
._20_c00000{width:577.701173pt;}
._93_c00000{width:587.226133pt;}
._59_c00000{width:594.342533pt;}
._83_c00000{width:601.097573pt;}
._6a_c00000{width:654.289845pt;}
._8b_c00000{width:685.176747pt;}
._37_c00000{width:692.504907pt;}
._8a_c00000{width:716.392747pt;}
._8d_c00000{width:728.420267pt;}
._45_c00000{width:736.328507pt;}
._75_c00000{width:763.130688pt;}
._8e_c00000{width:829.266800pt;}
._48_c00000{width:836.064400pt;}
._5b_c00000{width:837.084560pt;}
._56_c00000{width:864.799861pt;}
._f_c00000{width:868.985040pt;}
._73_c00000{width:887.449312pt;}
._7b_c00000{width:888.638320pt;}
._95_c00000{width:957.962507pt;}
._5a_c00000{width:965.270187pt;}
._62_c00000{width:1037.033419pt;}
._6f_c00000{width:1089.558907pt;}
._97_c00000{width:1097.632640pt;}
._66_c00000{width:1104.494000pt;}
._92_c00000{width:1116.681627pt;}
._91_c00000{width:1120.678027pt;}
._58_c00000{width:1123.670507pt;}
._57_c00000{width:1127.794427pt;}
._96_c00000{width:1185.861227pt;}
._63_c00000{width:1192.850107pt;}
._8f_c00000{width:1252.151760pt;}
._55_c00000{width:1259.394613pt;}
._64_c00000{width:1266.061840pt;}
._74_c00000{width:1268.415936pt;}
._69_c00000{width:1313.683013pt;}
._82_c00000{width:1460.464400pt;}
._11_c00000{width:1472.282160pt;}
._7e_c00000{width:1491.680400pt;}
._21_c00000{width:1585.037867pt;}
._60_c00000{width:1611.047787pt;}
._71_c00000{width:1613.314453pt;}
._5d_c00000{width:1631.735787pt;}
._43_c00000{width:1650.151787pt;}
._4f_c00000{width:1652.418453pt;}
._2e_c00000{width:1670.839787pt;}
._23_c00000{width:1673.087904pt;}
._c_c00000{width:1707.747840pt;}
._1d_c00000{width:1805.902507pt;}
.fsf_c00000{font-size:37.194667pt;}
.fse_c00000{font-size:42.506667pt;}
.fs4_c00000{font-size:53.120000pt;}
.fs10_c00000{font-size:53.136000pt;}
.fs0_c00000{font-size:58.880000pt;}
.fsb_c00000{font-size:63.760000pt;}
.fs1_c00000{font-size:64.000000pt;}
.fs6_c00000{font-size:74.880000pt;}
.fsc_c00000{font-size:76.512000pt;}
.fs8_c00000{font-size:85.120000pt;}
.fs9_c00000{font-size:91.813333pt;}
.fs7_c00000{font-size:96.000000pt;}
.fs2_c00000{font-size:106.880000pt;}
.fsa_c00000{font-size:110.202667pt;}
.fs5_c00000{font-size:117.120000pt;}
.fsd_c00000{font-size:132.197333pt;}
.fs3_c00000{font-size:149.120000pt;}
.y0_c00000{bottom:0.000000pt;}
.y2_c00000{bottom:51.200000pt;}
.y119_c00000{bottom:54.713333pt;}
.y1_c00000{bottom:73.120000pt;}
.y4c_c00000{bottom:75.590667pt;}
.y214_c00000{bottom:83.060000pt;}
.ya9d_c00000{bottom:83.073333pt;}
.ye8d_c00000{bottom:83.084000pt;}
.y113d_c00000{bottom:83.088000pt;}
.y1852_c00000{bottom:83.114667pt;}
.y1577_c00000{bottom:83.130667pt;}
.y16eb_c00000{bottom:83.165333pt;}
.y960_c00000{bottom:83.196000pt;}
.y189b_c00000{bottom:83.217333pt;}
.yc85_c00000{bottom:83.225333pt;}
.y18c_c00000{bottom:83.308000pt;}
.yae8_c00000{bottom:83.881333pt;}
.y393_c00000{bottom:84.000000pt;}
.y192a_c00000{bottom:84.192000pt;}
.y1278_c00000{bottom:84.213333pt;}
.y13da_c00000{bottom:84.309333pt;}
.y845_c00000{bottom:84.324000pt;}
.y4e8_c00000{bottom:84.405333pt;}
.y1890_c00000{bottom:84.737333pt;}
.y608_c00000{bottom:84.922667pt;}
.ya3c_c00000{bottom:85.305333pt;}
.y17cb_c00000{bottom:85.313333pt;}
.y42f_c00000{bottom:85.534667pt;}
.y6ab_c00000{bottom:85.616000pt;}
.ycf0_c00000{bottom:85.942667pt;}
.ye10_c00000{bottom:86.309333pt;}
.y10b9_c00000{bottom:86.413333pt;}
.y1298_c00000{bottom:86.582667pt;}
.y160e_c00000{bottom:86.752000pt;}
.y1877_c00000{bottom:86.766667pt;}
.ye86_c00000{bottom:86.848000pt;}
.y1065_c00000{bottom:86.856000pt;}
.y8a2_c00000{bottom:86.870667pt;}
.y14e2_c00000{bottom:86.885333pt;}
.y118d_c00000{bottom:86.958667pt;}
.y195c_c00000{bottom:86.996000pt;}
.y159e_c00000{bottom:87.048000pt;}
.y956_c00000{bottom:87.077333pt;}
.yf7_c00000{bottom:87.102667pt;}
.y10d2_c00000{bottom:87.158667pt;}
.y1339_c00000{bottom:87.230667pt;}
.y1476_c00000{bottom:87.386667pt;}
.y1335_c00000{bottom:87.424000pt;}
.y16a4_c00000{bottom:87.645333pt;}
.y7a1_c00000{bottom:87.792000pt;}
.ydb5_c00000{bottom:87.824000pt;}
.y152f_c00000{bottom:87.844000pt;}
.y2c0_c00000{bottom:87.880000pt;}
.y15c1_c00000{bottom:87.884000pt;}
.y3f7_c00000{bottom:87.890667pt;}
.ydac_c00000{bottom:87.892000pt;}
.y5b1_c00000{bottom:87.901333pt;}
.ybe5_c00000{bottom:87.912000pt;}
.y121d_c00000{bottom:87.949333pt;}
.y97c_c00000{bottom:87.985333pt;}
.y719_c00000{bottom:88.000000pt;}
.y1f1_c00000{bottom:88.001333pt;}
.yaed_c00000{bottom:88.016000pt;}
.y152c_c00000{bottom:88.065333pt;}
.ye59_c00000{bottom:88.096000pt;}
.y5c6_c00000{bottom:88.153333pt;}
.y1658_c00000{bottom:88.192000pt;}
.y10cb_c00000{bottom:88.206667pt;}
.y1191_c00000{bottom:88.244000pt;}
.y876_c00000{bottom:88.294667pt;}
.y13d2_c00000{bottom:88.302667pt;}
.y138f_c00000{bottom:88.310667pt;}
.ycbb_c00000{bottom:88.324000pt;}
.y823_c00000{bottom:88.405333pt;}
.y392_c00000{bottom:88.820000pt;}
.yb05_c00000{bottom:88.848000pt;}
.y171e_c00000{bottom:88.937333pt;}
.y7d1_c00000{bottom:88.958667pt;}
.y1929_c00000{bottom:89.012000pt;}
.y1277_c00000{bottom:89.034667pt;}
.ydb_c00000{bottom:89.040000pt;}
.y2fe_c00000{bottom:89.130667pt;}
.y94f_c00000{bottom:89.160000pt;}
.y43b_c00000{bottom:89.173333pt;}
.y7c2_c00000{bottom:89.209333pt;}
.y699_c00000{bottom:89.386667pt;}
.y572_c00000{bottom:89.461333pt;}
.y967_c00000{bottom:89.477333pt;}
.y1807_c00000{bottom:89.534667pt;}
.y641_c00000{bottom:89.549333pt;}
.y1832_c00000{bottom:89.616000pt;}
.y930_c00000{bottom:89.733333pt;}
.y143e_c00000{bottom:89.741333pt;}
.y1250_c00000{bottom:89.814667pt;}
.y15d9_c00000{bottom:89.921333pt;}
.y1310_c00000{bottom:89.940000pt;}
.y121c_c00000{bottom:90.008000pt;}
.y112_c00000{bottom:90.022667pt;}
.y1512_c00000{bottom:90.038667pt;}
.y700_c00000{bottom:90.052000pt;}
.ya3b_c00000{bottom:90.125333pt;}
.y13b3_c00000{bottom:90.545333pt;}
.y18f0_c00000{bottom:90.554667pt;}
.y18ac_c00000{bottom:90.730667pt;}
.y1035_c00000{bottom:90.818667pt;}
.y319_c00000{bottom:90.848000pt;}
.y8e5_c00000{bottom:90.862667pt;}
.y1624_c00000{bottom:90.870667pt;}
.y9f8_c00000{bottom:90.877333pt;}
.y5ad_c00000{bottom:90.944000pt;}
.yc99_c00000{bottom:91.158667pt;}
.y1457_c00000{bottom:91.313333pt;}
.y485_c00000{bottom:91.520000pt;}
.y73f_c00000{bottom:91.630667pt;}
.y1c0_c00000{bottom:91.704000pt;}
.y195b_c00000{bottom:91.816000pt;}
.ya01_c00000{bottom:91.934667pt;}
.ya29_c00000{bottom:92.050667pt;}
.yf32_c00000{bottom:92.080000pt;}
.y1281_c00000{bottom:92.198667pt;}
.yf0b_c00000{bottom:92.257333pt;}
.y15b9_c00000{bottom:92.272000pt;}
.y1067_c00000{bottom:92.286667pt;}
.yb07_c00000{bottom:92.301333pt;}
.y5e2_c00000{bottom:92.382667pt;}
.y14f_c00000{bottom:92.604000pt;}
.y1357_c00000{bottom:93.004000pt;}
.yc8c_c00000{bottom:93.012000pt;}
.y1700_c00000{bottom:93.026667pt;}
.y1095_c00000{bottom:93.108000pt;}
.y186c_c00000{bottom:93.142667pt;}
.ycba_c00000{bottom:93.145333pt;}
.y1296_c00000{bottom:93.173333pt;}
.y4ff_c00000{bottom:93.217333pt;}
.y17ad_c00000{bottom:93.321333pt;}
.y1884_c00000{bottom:93.337333pt;}
.y157a_c00000{bottom:93.530667pt;}
.y5cc_c00000{bottom:93.630667pt;}
.y114f_c00000{bottom:93.713333pt;}
.y1582_c00000{bottom:93.978667pt;}
.y22f_c00000{bottom:94.185333pt;}
.y1ad_c00000{bottom:94.242667pt;}
.y120f_c00000{bottom:94.258667pt;}
.y571_c00000{bottom:94.281333pt;}
.y178b_c00000{bottom:94.354667pt;}
.y640_c00000{bottom:94.369333pt;}
.yb6_c00000{bottom:94.414667pt;}
.y92f_c00000{bottom:94.554667pt;}
.y1263_c00000{bottom:94.650667pt;}
.y1712_c00000{bottom:94.685333pt;}
.y8ff_c00000{bottom:94.729333pt;}
.y130f_c00000{bottom:94.761333pt;}
.y16fd_c00000{bottom:94.906667pt;}
.yc97_c00000{bottom:94.936000pt;}
.y145c_c00000{bottom:95.040000pt;}
.ya99_c00000{bottom:95.214667pt;}
.y808_c00000{bottom:95.218667pt;}
.yb5c_c00000{bottom:95.653333pt;}
.y1670_c00000{bottom:95.674667pt;}
.y9f7_c00000{bottom:95.698667pt;}
.y137c_c00000{bottom:95.837333pt;}
.y1027_c00000{bottom:95.858667pt;}
.y125d_c00000{bottom:95.969333pt;}
.y1209_c00000{bottom:95.977333pt;}
.yb53_c00000{bottom:95.978667pt;}
.ybce_c00000{bottom:95.993333pt;}
.yf03_c00000{bottom:96.058667pt;}
.yc50_c00000{bottom:96.065333pt;}
.y1660_c00000{bottom:96.206667pt;}
.ya13_c00000{bottom:96.242667pt;}
.y908_c00000{bottom:96.257333pt;}
.y167e_c00000{bottom:96.338667pt;}
.y409_c00000{bottom:96.352000pt;}
.y469_c00000{bottom:96.597333pt;}
.y1909_c00000{bottom:96.650667pt;}
.ya28_c00000{bottom:96.870667pt;}
.y187d_c00000{bottom:96.885333pt;}
.y17b0_c00000{bottom:96.900000pt;}
.y43d_c00000{bottom:97.002667pt;}
.y14d9_c00000{bottom:97.012000pt;}
.y3e1_c00000{bottom:97.061333pt;}
.y5e1_c00000{bottom:97.204000pt;}
.yd2_c00000{bottom:97.334667pt;}
.yfef_c00000{bottom:97.401333pt;}
.y512_c00000{bottom:97.549333pt;}
.yed4_c00000{bottom:97.593333pt;}
.ye78_c00000{bottom:97.681333pt;}
.ye00_c00000{bottom:97.696000pt;}
.y841_c00000{bottom:97.710667pt;}
.y1098_c00000{bottom:97.726667pt;}
.y18a1_c00000{bottom:97.777333pt;}
.y838_c00000{bottom:98.249333pt;}
.y5cb_c00000{bottom:98.450667pt;}
.y1316_c00000{bottom:98.532000pt;}
.y12a3_c00000{bottom:98.560000pt;}
.ye48_c00000{bottom:98.708000pt;}
.y1308_c00000{bottom:98.737333pt;}
.ye33_c00000{bottom:98.796000pt;}
.y9bc_c00000{bottom:98.810667pt;}
.y297_c00000{bottom:98.825333pt;}
.y1547_c00000{bottom:98.833333pt;}
.yd65_c00000{bottom:98.840000pt;}
.y425_c00000{bottom:98.892000pt;}
.y1575_c00000{bottom:98.893333pt;}
.yd17_c00000{bottom:98.934667pt;}
.y11fa_c00000{bottom:98.936000pt;}
.y213_c00000{bottom:99.000000pt;}
.y3f6_c00000{bottom:99.010667pt;}
.ydab_c00000{bottom:99.012000pt;}
.ya9c_c00000{bottom:99.014667pt;}
.y5b0_c00000{bottom:99.021333pt;}
.y1717_c00000{bottom:99.024000pt;}
.ye8c_c00000{bottom:99.025333pt;}
.y113c_c00000{bottom:99.029333pt;}
.ybe4_c00000{bottom:99.032000pt;}
.y16ea_c00000{bottom:99.106667pt;}
.y83b_c00000{bottom:99.121333pt;}
.yaec_c00000{bottom:99.136000pt;}
.y2a1_c00000{bottom:99.149333pt;}
.yc84_c00000{bottom:99.165333pt;}
.y2c6_c00000{bottom:99.178667pt;}
.y18b_c00000{bottom:99.248000pt;}
.y1917_c00000{bottom:99.298667pt;}
.y1190_c00000{bottom:99.364000pt;}
.y138e_c00000{bottom:99.430667pt;}
.y1015_c00000{bottom:99.468000pt;}
.y8d4_c00000{bottom:99.498667pt;}
.y109d_c00000{bottom:99.550667pt;}
.y17cf_c00000{bottom:99.661333pt;}
.yae7_c00000{bottom:99.821333pt;}
.y6e8_c00000{bottom:99.940000pt;}
.y184c_c00000{bottom:100.070667pt;}
.y1955_c00000{bottom:100.132000pt;}
.ycb1_c00000{bottom:100.174667pt;}
.yf2b_c00000{bottom:100.220000pt;}
.y6d7_c00000{bottom:100.234667pt;}
.y1c6_c00000{bottom:100.249333pt;}
.y4d9_c00000{bottom:100.424000pt;}
.y140a_c00000{bottom:100.464000pt;}
.y15ec_c00000{bottom:100.522667pt;}
.y966_c00000{bottom:100.597333pt;}
.y1203_c00000{bottom:100.642667pt;}
.y188f_c00000{bottom:100.678667pt;}
.y607_c00000{bottom:100.862667pt;}
.y182d_c00000{bottom:100.989333pt;}
.y86a_c00000{bottom:101.136000pt;}
.y6ff_c00000{bottom:101.172000pt;}
.ycb5_c00000{bottom:101.204000pt;}
.yf3c_c00000{bottom:101.217333pt;}
.y17ca_c00000{bottom:101.253333pt;}
.y132e_c00000{bottom:101.261333pt;}
.y391_c00000{bottom:101.364000pt;}
.y42e_c00000{bottom:101.474667pt;}
.y1928_c00000{bottom:101.556000pt;}
.y1276_c00000{bottom:101.578667pt;}
.y18ef_c00000{bottom:101.674667pt;}
.ycef_c00000{bottom:101.882667pt;}
.yf47_c00000{bottom:102.206667pt;}
.yfee_c00000{bottom:102.221333pt;}
.ye0f_c00000{bottom:102.249333pt;}
.y1883_c00000{bottom:102.317333pt;}
.y919_c00000{bottom:102.360000pt;}
.y80d_c00000{bottom:102.428000pt;}
.y1964_c00000{bottom:102.524000pt;}
.y1097_c00000{bottom:102.546667pt;}
.ya3a_c00000{bottom:102.669333pt;}
.y850_c00000{bottom:102.692000pt;}
.y1876_c00000{bottom:102.708000pt;}
.y151d_c00000{bottom:102.773333pt;}
.ye85_c00000{bottom:102.788000pt;}
.y8a1_c00000{bottom:102.810667pt;}
.y14e1_c00000{bottom:102.825333pt;}
.y118c_c00000{bottom:102.898667pt;}
.y159d_c00000{bottom:102.988000pt;}
.y12dd_c00000{bottom:103.017333pt;}
.ya00_c00000{bottom:103.054667pt;}
.yc58_c00000{bottom:103.113333pt;}
.y18e1_c00000{bottom:103.128000pt;}
.y1338_c00000{bottom:103.170667pt;}
.ybb0_c00000{bottom:103.312000pt;}
.y1502_c00000{bottom:103.428000pt;}
.y1307_c00000{bottom:103.557333pt;}
.y16a3_c00000{bottom:103.585333pt;}
.y9bb_c00000{bottom:103.630667pt;}
.y155a_c00000{bottom:103.632000pt;}
.y828_c00000{bottom:103.646667pt;}
.yd64_c00000{bottom:103.661333pt;}
.yf90_c00000{bottom:103.710667pt;}
.y7a0_c00000{bottom:103.732000pt;}
.yb45_c00000{bottom:103.748000pt;}
.y627_c00000{bottom:103.757333pt;}
.ydb4_c00000{bottom:103.764000pt;}
.y166e_c00000{bottom:103.777333pt;}
.y8f6_c00000{bottom:103.806667pt;}
.y2a5_c00000{bottom:103.820000pt;}
.y15c0_c00000{bottom:103.824000pt;}
.ya9b_c00000{bottom:103.834667pt;}
.y1716_c00000{bottom:103.845333pt;}
.y113b_c00000{bottom:103.849333pt;}
.yead_c00000{bottom:103.850667pt;}
.y1851_c00000{bottom:103.874667pt;}
.y1576_c00000{bottom:103.890667pt;}
.y97b_c00000{bottom:103.925333pt;}
.y718_c00000{bottom:103.940000pt;}
.y1f0_c00000{bottom:103.941333pt;}
.y95f_c00000{bottom:103.956000pt;}
.y1637_c00000{bottom:103.977333pt;}
.y189a_c00000{bottom:103.978667pt;}
.yc83_c00000{bottom:103.985333pt;}
.y152b_c00000{bottom:104.006667pt;}
.yb4e_c00000{bottom:104.021333pt;}
.ye58_c00000{bottom:104.036000pt;}
.y1356_c00000{bottom:104.124000pt;}
.y725_c00000{bottom:104.132000pt;}
.y10ca_c00000{bottom:104.146667pt;}
.y1094_c00000{bottom:104.228000pt;}
.y875_c00000{bottom:104.234667pt;}
.y323_c00000{bottom:104.293333pt;}
.y171b_c00000{bottom:104.330667pt;}
.y822_c00000{bottom:104.345333pt;}
.y195a_c00000{bottom:104.360000pt;}
.y17ac_c00000{bottom:104.441333pt;}
.y18ec_c00000{bottom:104.456000pt;}
.y1579_c00000{bottom:104.650667pt;}
.y710_c00000{bottom:104.760000pt;}
.yb04_c00000{bottom:104.788000pt;}
.y928_c00000{bottom:104.802667pt;}
.y1490_c00000{bottom:104.892000pt;}
.y257_c00000{bottom:104.965333pt;}
.y1d2_c00000{bottom:105.041333pt;}
.yfea_c00000{bottom:105.070667pt;}
.y844_c00000{bottom:105.085333pt;}
.y1581_c00000{bottom:105.098667pt;}
.y43a_c00000{bottom:105.113333pt;}
.y7c1_c00000{bottom:105.150667pt;}
.y4e7_c00000{bottom:105.166667pt;}
.y4a3_c00000{bottom:105.245333pt;}
.y22e_c00000{bottom:105.305333pt;}
.y698_c00000{bottom:105.326667pt;}
.ya89_c00000{bottom:105.349333pt;}
.y120e_c00000{bottom:105.378667pt;}
.y1749_c00000{bottom:105.526667pt;}
.y154f_c00000{bottom:105.541333pt;}
.yf8_c00000{bottom:105.629333pt;}
.y96_c00000{bottom:105.630667pt;}
.y16d3_c00000{bottom:105.658667pt;}
.yc88_c00000{bottom:105.673333pt;}
.yd8b_c00000{bottom:105.740000pt;}
.y124f_c00000{bottom:105.754667pt;}
.y1332_c00000{bottom:105.769333pt;}
.y869_c00000{bottom:105.956000pt;}
.y6fe_c00000{bottom:105.993333pt;}
.y42d_c00000{bottom:106.296000pt;}
.y807_c00000{bottom:106.338667pt;}
.y6aa_c00000{bottom:106.376000pt;}
.y13b2_c00000{bottom:106.485333pt;}
.y10c8_c00000{bottom:106.560000pt;}
.y8b6_c00000{bottom:106.574667pt;}
.ye70_c00000{bottom:106.590667pt;}
.y18ab_c00000{bottom:106.670667pt;}
.ycee_c00000{bottom:106.702667pt;}
.y1034_c00000{bottom:106.758667pt;}
.yb5b_c00000{bottom:106.773333pt;}
.y318_c00000{bottom:106.788000pt;}
.y8e4_c00000{bottom:106.802667pt;}
.y1623_c00000{bottom:106.810667pt;}
.y570_c00000{bottom:106.825333pt;}
.y5ac_c00000{bottom:106.884000pt;}
.y1806_c00000{bottom:106.898667pt;}
.yccd_c00000{bottom:106.945333pt;}
.y240_c00000{bottom:106.962667pt;}
.yb52_c00000{bottom:107.098667pt;}
.ybcd_c00000{bottom:107.113333pt;}
.y10b8_c00000{bottom:107.173333pt;}
.y59a_c00000{bottom:107.245333pt;}
.y130e_c00000{bottom:107.305333pt;}
.y165f_c00000{bottom:107.326667pt;}
.y484_c00000{bottom:107.460000pt;}
.y160d_c00000{bottom:107.513333pt;}
.y1875_c00000{bottom:107.528000pt;}
.y73e_c00000{bottom:107.570667pt;}
.ye84_c00000{bottom:107.609333pt;}
.y1064_c00000{bottom:107.616000pt;}
.y8a0_c00000{bottom:107.630667pt;}
.y1bf_c00000{bottom:107.644000pt;}
.y14e0_c00000{bottom:107.645333pt;}
.y1908_c00000{bottom:107.770667pt;}
.y955_c00000{bottom:107.837333pt;}
.y9ff_c00000{bottom:107.874667pt;}
.y185e_c00000{bottom:107.901333pt;}
.y10d1_c00000{bottom:107.918667pt;}
.y1337_c00000{bottom:107.992000pt;}
.y1594_c00000{bottom:108.094667pt;}
.y14d8_c00000{bottom:108.132000pt;}
.y14bc_c00000{bottom:108.138667pt;}
.y1475_c00000{bottom:108.148000pt;}
.y1334_c00000{bottom:108.184000pt;}
.yf0a_c00000{bottom:108.197333pt;}
.y18e2_c00000{bottom:108.228000pt;}
.y1933_c00000{bottom:108.308000pt;}
.y14e_c00000{bottom:108.544000pt;}
.y79f_c00000{bottom:108.552000pt;}
.y152e_c00000{bottom:108.605333pt;}
.y97a_c00000{bottom:108.745333pt;}
.y1553_c00000{bottom:108.937333pt;}
.yc8b_c00000{bottom:108.952000pt;}
.y10c9_c00000{bottom:108.966667pt;}
.y13d1_c00000{bottom:109.062667pt;}
.y322_c00000{bottom:109.113333pt;}
.y1959_c00000{bottom:109.181333pt;}
.y4bd_c00000{bottom:109.238667pt;}
.ya27_c00000{bottom:109.414667pt;}
.y114e_c00000{bottom:109.653333pt;}
.y12a2_c00000{bottom:109.680000pt;}
.y7d0_c00000{bottom:109.720000pt;}
.y5e0_c00000{bottom:109.748000pt;}
.y1470_c00000{bottom:109.762667pt;}
.y13c1_c00000{bottom:109.845333pt;}
.y7c0_c00000{bottom:109.970667pt;}
.y1ac_c00000{bottom:110.182667pt;}
.y1958_c00000{bottom:110.198667pt;}
.y16a_c00000{bottom:110.264000pt;}
.y178a_c00000{bottom:110.294667pt;}
.y1831_c00000{bottom:110.376000pt;}
.y17aa_c00000{bottom:110.390667pt;}
.y1172_c00000{bottom:110.418667pt;}
.y1297_c00000{bottom:110.485333pt;}
.y11ce_c00000{bottom:110.488000pt;}
.yc87_c00000{bottom:110.494667pt;}
.y143d_c00000{bottom:110.502667pt;}
.ycb9_c00000{bottom:110.509333pt;}
.y1262_c00000{bottom:110.590667pt;}
.yb10_c00000{bottom:110.605333pt;}
.y8d3_c00000{bottom:110.618667pt;}
.yfe8_c00000{bottom:110.624000pt;}
.y1711_c00000{bottom:110.625333pt;}
.y8fe_c00000{bottom:110.670667pt;}
.y17ce_c00000{bottom:110.781333pt;}
.y1511_c00000{bottom:110.798667pt;}
.y145b_c00000{bottom:110.980000pt;}
.y5ca_c00000{bottom:110.994667pt;}
.yf6_c00000{bottom:111.005333pt;}
.ya98_c00000{bottom:111.154667pt;}
.yaa7_c00000{bottom:111.178667pt;}
.y13b1_c00000{bottom:111.306667pt;}
.y8b5_c00000{bottom:111.394667pt;}
.y55e_c00000{bottom:111.408000pt;}
.y1033_c00000{bottom:111.578667pt;}
.y317_c00000{bottom:111.609333pt;}
.y8e3_c00000{bottom:111.624000pt;}
.y137b_c00000{bottom:111.777333pt;}
.y1026_c00000{bottom:111.798667pt;}
.y125c_c00000{bottom:111.909333pt;}
.y1208_c00000{bottom:111.917333pt;}
.y92e_c00000{bottom:111.918667pt;}
.y5c5_c00000{bottom:112.056000pt;}
.y599_c00000{bottom:112.066667pt;}
.y1456_c00000{bottom:112.073333pt;}
.y109c_c00000{bottom:112.094667pt;}
.y182c_c00000{bottom:112.109333pt;}
.y167d_c00000{bottom:112.278667pt;}
.y483_c00000{bottom:112.280000pt;}
.y408_c00000{bottom:112.293333pt;}
.yb87_c00000{bottom:112.322667pt;}
.ycb4_c00000{bottom:112.324000pt;}
.y73d_c00000{bottom:112.390667pt;}
.y468_c00000{bottom:112.537333pt;}
.yd33_c00000{bottom:112.684000pt;}
.yf31_c00000{bottom:112.840000pt;}
.y2fd_c00000{bottom:112.913333pt;}
.yda_c00000{bottom:112.942667pt;}
.y1280_c00000{bottom:112.960000pt;}
.y3e0_c00000{bottom:113.002667pt;}
.y15b8_c00000{bottom:113.033333pt;}
.y1066_c00000{bottom:113.048000pt;}
.yb06_c00000{bottom:113.062667pt;}
.yf46_c00000{bottom:113.326667pt;}
.y1589_c00000{bottom:113.489333pt;}
.y6c8_c00000{bottom:113.518667pt;}
.ydff_c00000{bottom:113.636000pt;}
.y1963_c00000{bottom:113.644000pt;}
.y15d8_c00000{bottom:113.705333pt;}
.y18a0_c00000{bottom:113.718667pt;}
.y121b_c00000{bottom:113.792000pt;}
.y4b_c00000{bottom:113.813333pt;}
.y186b_c00000{bottom:113.904000pt;}
.y111_c00000{bottom:113.925333pt;}
.y1295_c00000{bottom:113.933333pt;}
.y4bc_c00000{bottom:114.058667pt;}
.y291_c00000{bottom:114.397333pt;}
.y1315_c00000{bottom:114.472000pt;}
.y114d_c00000{bottom:114.474667pt;}
.y12a1_c00000{bottom:114.501333pt;}
.y146f_c00000{bottom:114.582667pt;}
.y93f_c00000{bottom:114.640000pt;}
.y417_c00000{bottom:114.716000pt;}
.ya1b_c00000{bottom:114.736000pt;}
.y16c4_c00000{bottom:114.750667pt;}
.yd39_c00000{bottom:114.765333pt;}
.y1546_c00000{bottom:114.773333pt;}
.y424_c00000{bottom:114.832000pt;}
.y134_c00000{bottom:114.908000pt;}
.y2a4_c00000{bottom:114.940000pt;}
.y15bf_c00000{bottom:114.944000pt;}
.y5af_c00000{bottom:114.961333pt;}
.y1392_c00000{bottom:114.972000pt;}
.y1ab_c00000{bottom:115.004000pt;}
.y95e_c00000{bottom:115.076000pt;}
.y2c5_c00000{bottom:115.118667pt;}
.y18a_c00000{bottom:115.188000pt;}
.y138d_c00000{bottom:115.370667pt;}
.ya80_c00000{bottom:115.414667pt;}
.y8fd_c00000{bottom:115.490667pt;}
.y16fc_c00000{bottom:115.668000pt;}
.yc96_c00000{bottom:115.697333pt;}
.yae6_c00000{bottom:115.762667pt;}
.y145a_c00000{bottom:115.800000pt;}
.y5c9_c00000{bottom:115.816000pt;}
.y6e7_c00000{bottom:115.880000pt;}
.ya97_c00000{bottom:115.976000pt;}
.y2e3_c00000{bottom:116.010667pt;}
.y126d_c00000{bottom:116.042667pt;}
.y1954_c00000{bottom:116.072000pt;}
.y1306_c00000{bottom:116.101333pt;}
.ycb0_c00000{bottom:116.116000pt;}
.y1d1_c00000{bottom:116.160000pt;}
.y9ba_c00000{bottom:116.176000pt;}
.y827_c00000{bottom:116.190667pt;}
.y843_c00000{bottom:116.205333pt;}
.y364_c00000{bottom:116.364000pt;}
.y1715_c00000{bottom:116.389333pt;}
.y113a_c00000{bottom:116.393333pt;}
.y1409_c00000{bottom:116.404000pt;}
.yc82_c00000{bottom:116.529333pt;}
.y137a_c00000{bottom:116.597333pt;}
.y188e_c00000{bottom:116.618667pt;}
.y1025_c00000{bottom:116.620000pt;}
.y125b_c00000{bottom:116.730667pt;}
.y1207_c00000{bottom:116.737333pt;}
.yf02_c00000{bottom:116.818667pt;}
.yc4f_c00000{bottom:116.826667pt;}
.ya12_c00000{bottom:117.004000pt;}
.y907_c00000{bottom:117.018667pt;}
.y94e_c00000{bottom:117.105333pt;}
.y4fe_c00000{bottom:117.120000pt;}
.yf3b_c00000{bottom:117.157333pt;}
.y17c9_c00000{bottom:117.193333pt;}
.y1493_c00000{bottom:117.225333pt;}
.y390_c00000{bottom:117.304000pt;}
.y6de_c00000{bottom:117.318667pt;}
.y1275_c00000{bottom:117.518667pt;}
.y18ee_c00000{bottom:117.614667pt;}
.y4d8_c00000{bottom:117.789333pt;}
.y72_c00000{bottom:118.212000pt;}
.y1882_c00000{bottom:118.257333pt;}
.y10b7_c00000{bottom:118.293333pt;}
.y78c_c00000{bottom:118.308000pt;}
.y511_c00000{bottom:118.309333pt;}
.yb5_c00000{bottom:118.318667pt;}
.y16f4_c00000{bottom:118.324000pt;}
.ya04_c00000{bottom:118.338667pt;}
.yed3_c00000{bottom:118.353333pt;}
.ye77_c00000{bottom:118.442667pt;}
.y840_c00000{bottom:118.472000pt;}
.y868_c00000{bottom:118.500000pt;}
.y6fd_c00000{bottom:118.537333pt;}
.y84f_c00000{bottom:118.633333pt;}
.y1462_c00000{bottom:118.648000pt;}
.y151c_c00000{bottom:118.713333pt;}
.y1063_c00000{bottom:118.736000pt;}
.y42c_c00000{bottom:118.840000pt;}
.y16d6_c00000{bottom:118.928000pt;}
.y954_c00000{bottom:118.957333pt;}
.y837_c00000{bottom:119.010667pt;}
.y10d0_c00000{bottom:119.038667pt;}
.y18e0_c00000{bottom:119.068000pt;}
.yced_c00000{bottom:119.248000pt;}
.y1333_c00000{bottom:119.304000pt;}
.ye47_c00000{bottom:119.468000pt;}
.ye32_c00000{bottom:119.557333pt;}
.y1559_c00000{bottom:119.572000pt;}
.y63f_c00000{bottom:119.577333pt;}
.y296_c00000{bottom:119.586667pt;}
.yf8f_c00000{bottom:119.652000pt;}
.yd16_c00000{bottom:119.696000pt;}
.y626_c00000{bottom:119.697333pt;}
.y166d_c00000{bottom:119.717333pt;}
.y152d_c00000{bottom:119.725333pt;}
.y8f5_c00000{bottom:119.746667pt;}
.y212_c00000{bottom:119.760000pt;}
.y3b6_c00000{bottom:119.761333pt;}
.y3f5_c00000{bottom:119.770667pt;}
.ydaa_c00000{bottom:119.773333pt;}
.y5ae_c00000{bottom:119.782667pt;}
.ye8b_c00000{bottom:119.785333pt;}
.ybe3_c00000{bottom:119.793333pt;}
.yd23_c00000{bottom:119.865333pt;}
.y16e9_c00000{bottom:119.866667pt;}
.y717_c00000{bottom:119.880000pt;}
.y1ef_c00000{bottom:119.881333pt;}
.yaeb_c00000{bottom:119.896000pt;}
.y2a0_c00000{bottom:119.909333pt;}
.y1899_c00000{bottom:119.918667pt;}
.yed0_c00000{bottom:119.961333pt;}
.y1552_c00000{bottom:120.057333pt;}
.y1355_c00000{bottom:120.064000pt;}
.y724_c00000{bottom:120.072000pt;}
.y90a_c00000{bottom:120.086667pt;}
.y118f_c00000{bottom:120.125333pt;}
.ye83_c00000{bottom:120.153333pt;}
.y874_c00000{bottom:120.174667pt;}
.y13d0_c00000{bottom:120.182667pt;}
.y14df_c00000{bottom:120.189333pt;}
.y1014_c00000{bottom:120.228000pt;}
.ya7f_c00000{bottom:120.236000pt;}
.y171a_c00000{bottom:120.270667pt;}
.y821_c00000{bottom:120.285333pt;}
.y17ab_c00000{bottom:120.381333pt;}
.y18eb_c00000{bottom:120.397333pt;}
.y9fe_c00000{bottom:120.418667pt;}
.y6e6_c00000{bottom:120.701333pt;}
.yb03_c00000{bottom:120.729333pt;}
.y927_c00000{bottom:120.744000pt;}
.y187c_c00000{bottom:120.788000pt;}
.y17af_c00000{bottom:120.802667pt;}
.y184b_c00000{bottom:120.832000pt;}
.y7cf_c00000{bottom:120.840000pt;}
.y43c_c00000{bottom:120.905333pt;}
.y13c0_c00000{bottom:120.965333pt;}
.yf2a_c00000{bottom:120.981333pt;}
.y6d6_c00000{bottom:120.996000pt;}
.y1c5_c00000{bottom:121.010667pt;}
.y158b_c00000{bottom:121.053333pt;}
.y79e_c00000{bottom:121.096000pt;}
.y4e6_c00000{bottom:121.106667pt;}
.y9db_c00000{bottom:121.185333pt;}
.y1714_c00000{bottom:121.209333pt;}
.y1408_c00000{bottom:121.224000pt;}
.yd1_c00000{bottom:121.237333pt;}
.y113_c00000{bottom:121.238667pt;}
.y22d_c00000{bottom:121.245333pt;}
.y697_c00000{bottom:121.268000pt;}
.y979_c00000{bottom:121.289333pt;}
.y120d_c00000{bottom:121.318667pt;}
.y965_c00000{bottom:121.357333pt;}
.y1789_c00000{bottom:121.414667pt;}
.y1748_c00000{bottom:121.466667pt;}
.y1657_c00000{bottom:121.496000pt;}
.y606_c00000{bottom:121.622667pt;}
.ycb8_c00000{bottom:121.629333pt;}
.y321_c00000{bottom:121.657333pt;}
.yd8a_c00000{bottom:121.681333pt;}
.y124e_c00000{bottom:121.696000pt;}
.y1261_c00000{bottom:121.710667pt;}
.y1510_c00000{bottom:121.918667pt;}
.y94d_c00000{bottom:121.925333pt;}
.y132d_c00000{bottom:122.021333pt;}
.y38f_c00000{bottom:122.125333pt;}
.y6dd_c00000{bottom:122.140000pt;}
.y806_c00000{bottom:122.278667pt;}
.y6a9_c00000{bottom:122.317333pt;}
.y1274_c00000{bottom:122.338667pt;}
.y18ed_c00000{bottom:122.434667pt;}
.y10c7_c00000{bottom:122.500000pt;}
.y7bf_c00000{bottom:122.514667pt;}
.ye6f_c00000{bottom:122.530667pt;}
.y781_c00000{bottom:122.553333pt;}
.y4d7_c00000{bottom:122.609333pt;}
.y18aa_c00000{bottom:122.610667pt;}
.yb5a_c00000{bottom:122.713333pt;}
.y1017_c00000{bottom:122.744000pt;}
.y1622_c00000{bottom:122.750667pt;}
.y56f_c00000{bottom:122.765333pt;}
.ye0e_c00000{bottom:123.010667pt;}
.yc86_c00000{bottom:123.038667pt;}
.y918_c00000{bottom:123.121333pt;}
.y1916_c00000{bottom:123.201333pt;}
.ya39_c00000{bottom:123.430667pt;}
.yb86_c00000{bottom:123.442667pt;}
.y84e_c00000{bottom:123.453333pt;}
.yc07_c00000{bottom:123.572000pt;}
.y1be_c00000{bottom:123.585333pt;}
.y118b_c00000{bottom:123.660000pt;}
.y159c_c00000{bottom:123.748000pt;}
.y12dc_c00000{bottom:123.778667pt;}
.y185d_c00000{bottom:123.842667pt;}
.yc57_c00000{bottom:123.874667pt;}
.y18df_c00000{bottom:123.889333pt;}
.y8b4_c00000{bottom:123.938667pt;}
.yf30_c00000{bottom:123.960000pt;}
.y1593_c00000{bottom:124.034667pt;}
.y14d7_c00000{bottom:124.072000pt;}
.ybaf_c00000{bottom:124.073333pt;}
.y14bb_c00000{bottom:124.078667pt;}
.yf09_c00000{bottom:124.138667pt;}
.y1680_c00000{bottom:124.153333pt;}
.y8e2_c00000{bottom:124.168000pt;}
.y30_c00000{bottom:124.305333pt;}
.yc28_c00000{bottom:124.332000pt;}
.y16a2_c00000{bottom:124.346667pt;}
.y1202_c00000{bottom:124.425333pt;}
.y14d_c00000{bottom:124.484000pt;}
.ydb3_c00000{bottom:124.525333pt;}
.y8f4_c00000{bottom:124.568000pt;}
.y716_c00000{bottom:124.700000pt;}
.y1636_c00000{bottom:124.737333pt;}
.y152a_c00000{bottom:124.766667pt;}
.yb4d_c00000{bottom:124.781333pt;}
.ye57_c00000{bottom:124.796000pt;}
.y482_c00000{bottom:124.824000pt;}
.y1551_c00000{bottom:124.877333pt;}
.y96f_c00000{bottom:124.892000pt;}
.y909_c00000{bottom:124.906667pt;}
.y1093_c00000{bottom:124.988000pt;}
.y873_c00000{bottom:124.996000pt;}
.y186a_c00000{bottom:125.024000pt;}
.y1294_c00000{bottom:125.053333pt;}
.yecb_c00000{bottom:125.106667pt;}
.y18ea_c00000{bottom:125.217333pt;}
.y9fd_c00000{bottom:125.238667pt;}
.ya26_c00000{bottom:125.354667pt;}
.y1578_c00000{bottom:125.410667pt;}
.y290_c00000{bottom:125.517333pt;}
.y926_c00000{bottom:125.564000pt;}
.y1314_c00000{bottom:125.592000pt;}
.y416_c00000{bottom:125.836000pt;}
.y1580_c00000{bottom:125.858667pt;}
.y439_c00000{bottom:125.873333pt;}
.y1083_c00000{bottom:126.028000pt;}
.y22c_c00000{bottom:126.065333pt;}
.ya88_c00000{bottom:126.109333pt;}
.y120c_c00000{bottom:126.140000pt;}
.y80c_c00000{bottom:126.212000pt;}
.y154e_c00000{bottom:126.301333pt;}
.y1830_c00000{bottom:126.317333pt;}
.y9b6_c00000{bottom:126.324000pt;}
.y1173_c00000{bottom:126.332000pt;}
.y16d2_c00000{bottom:126.420000pt;}
.y11f8_c00000{bottom:126.445333pt;}
.ycb7_c00000{bottom:126.449333pt;}
.y1331_c00000{bottom:126.530667pt;}
.y4bb_c00000{bottom:126.602667pt;}
.y17cd_c00000{bottom:126.721333pt;}
.y16fb_c00000{bottom:126.788000pt;}
.yfc7_c00000{bottom:126.882667pt;}
.ye7d_c00000{bottom:126.920000pt;}
.y114c_c00000{bottom:127.018667pt;}
.y12a0_c00000{bottom:127.045333pt;}
.y805_c00000{bottom:127.098667pt;}
.y146e_c00000{bottom:127.126667pt;}
.y126c_c00000{bottom:127.162667pt;}
.y194b_c00000{bottom:127.257333pt;}
.y7be_c00000{bottom:127.334667pt;}
.y996_c00000{bottom:127.482667pt;}
.yb59_c00000{bottom:127.534667pt;}
.y1aa_c00000{bottom:127.548000pt;}
.y16ff_c00000{bottom:127.549333pt;}
.y1016_c00000{bottom:127.564000pt;}
.y5ab_c00000{bottom:127.645333pt;}
.yb44_c00000{bottom:127.650667pt;}
.y1805_c00000{bottom:127.660000pt;}
.y8df_c00000{bottom:127.688000pt;}
.yb09_c00000{bottom:127.754667pt;}
.y92d_c00000{bottom:127.858667pt;}
.ybcc_c00000{bottom:127.873333pt;}
.yf01_c00000{bottom:127.938667pt;}
.yc4e_c00000{bottom:127.946667pt;}
.y8fc_c00000{bottom:128.034667pt;}
.y130d_c00000{bottom:128.065333pt;}
.y165e_c00000{bottom:128.088000pt;}
.ya11_c00000{bottom:128.122667pt;}
.y906_c00000{bottom:128.137333pt;}
.ya96_c00000{bottom:128.166667pt;}
.y167c_c00000{bottom:128.218667pt;}
.y15b2_c00000{bottom:128.241333pt;}
.ycb3_c00000{bottom:128.264000pt;}
.y1492_c00000{bottom:128.344000pt;}
.y467_c00000{bottom:128.477333pt;}
.y1907_c00000{bottom:128.530667pt;}
.yd32_c00000{bottom:128.624000pt;}
.y185c_c00000{bottom:128.662667pt;}
.yc00_c00000{bottom:128.674667pt;}
.y1828_c00000{bottom:128.714667pt;}
.y256_c00000{bottom:128.868000pt;}
.y14d6_c00000{bottom:128.892000pt;}
.y14ba_c00000{bottom:128.900000pt;}
.y3df_c00000{bottom:128.942667pt;}
.y1032_c00000{bottom:128.944000pt;}
.y12d9_c00000{bottom:128.961333pt;}
.y15b7_c00000{bottom:128.973333pt;}
.y1932_c00000{bottom:129.069333pt;}
.y1379_c00000{bottom:129.141333pt;}
.y1024_c00000{bottom:129.164000pt;}
.y148f_c00000{bottom:129.184000pt;}
.yf45_c00000{bottom:129.266667pt;}
.y125a_c00000{bottom:129.274667pt;}
.y1206_c00000{bottom:129.281333pt;}
.y510_c00000{bottom:129.429333pt;}
.y16f3_c00000{bottom:129.444000pt;}
.yed2_c00000{bottom:129.473333pt;}
.y95_c00000{bottom:129.533333pt;}
.ye50_c00000{bottom:129.562667pt;}
.ydfe_c00000{bottom:129.576000pt;}
.y83f_c00000{bottom:129.592000pt;}
.y481_c00000{bottom:129.645333pt;}
.y189f_c00000{bottom:129.658667pt;}
.y73c_c00000{bottom:129.756000pt;}
.y836_c00000{bottom:130.130667pt;}
.y11b0_c00000{bottom:130.280000pt;}
.y5df_c00000{bottom:130.508000pt;}
.y775_c00000{bottom:130.558667pt;}
.y93e_c00000{bottom:130.580000pt;}
.ye46_c00000{bottom:130.588000pt;}
.y415_c00000{bottom:130.656000pt;}
.ye31_c00000{bottom:130.676000pt;}
.y1558_c00000{bottom:130.692000pt;}
.y295_c00000{bottom:130.706667pt;}
.y1545_c00000{bottom:130.713333pt;}
.y423_c00000{bottom:130.772000pt;}
.yd15_c00000{bottom:130.816000pt;}
.yccc_c00000{bottom:130.848000pt;}
.y23f_c00000{bottom:130.865333pt;}
.y211_c00000{bottom:130.880000pt;}
.y15be_c00000{bottom:130.885333pt;}
.y3f4_c00000{bottom:130.890667pt;}
.yda9_c00000{bottom:130.893333pt;}
.ybe2_c00000{bottom:130.913333pt;}
.y16e8_c00000{bottom:130.986667pt;}
.y1ee_c00000{bottom:131.001333pt;}
.yaea_c00000{bottom:131.016000pt;}
.y29f_c00000{bottom:131.029333pt;}
.y189_c00000{bottom:131.129333pt;}
.y184f_c00000{bottom:131.149333pt;}
.y1171_c00000{bottom:131.180000pt;}
.y138c_c00000{bottom:131.310667pt;}
.y1013_c00000{bottom:131.348000pt;}
.y8d2_c00000{bottom:131.378667pt;}
.y1710_c00000{bottom:131.386667pt;}
.y17cc_c00000{bottom:131.541333pt;}
.yae5_c00000{bottom:131.702667pt;}
.ye7c_c00000{bottom:131.741333pt;}
.y190e_c00000{bottom:131.820000pt;}
.ya69_c00000{bottom:131.901333pt;}
.y1474_c00000{bottom:131.930667pt;}
.yaa6_c00000{bottom:131.938667pt;}
.y126b_c00000{bottom:131.982667pt;}
.ycaf_c00000{bottom:132.056000pt;}
.yf29_c00000{bottom:132.101333pt;}
.y1c4_c00000{bottom:132.130667pt;}
.y55d_c00000{bottom:132.169333pt;}
.y363_c00000{bottom:132.304000pt;}
.y380_c00000{bottom:132.305333pt;}
.y1139_c00000{bottom:132.333333pt;}
.yc81_c00000{bottom:132.469333pt;}
.y964_c00000{bottom:132.477333pt;}
.y188d_c00000{bottom:132.558667pt;}
.y605_c00000{bottom:132.742667pt;}
.ya7e_c00000{bottom:132.780000pt;}
.y1336_c00000{bottom:132.846667pt;}
.y182b_c00000{bottom:132.869333pt;}
.ya95_c00000{bottom:132.986667pt;}
.y407_c00000{bottom:133.053333pt;}
.ycb2_c00000{bottom:133.084000pt;}
.yf3a_c00000{bottom:133.097333pt;}
.y17c8_c00000{bottom:133.133333pt;}
.y132c_c00000{bottom:133.141333pt;}
.y1459_c00000{bottom:133.165333pt;}
.y6e5_c00000{bottom:133.245333pt;}
.y466_c00000{bottom:133.297333pt;}
.y6a8_c00000{bottom:133.437333pt;}
.yd31_c00000{bottom:133.444000pt;}
.y780_c00000{bottom:133.673333pt;}
.yab5_c00000{bottom:133.729333pt;}
.y1407_c00000{bottom:133.769333pt;}
.yf44_c00000{bottom:134.088000pt;}
.y1259_c00000{bottom:134.094667pt;}
.ye0d_c00000{bottom:134.130667pt;}
.y169_c00000{bottom:134.166667pt;}
.y598_c00000{bottom:134.174667pt;}
.y1881_c00000{bottom:134.198667pt;}
.y10b6_c00000{bottom:134.233333pt;}
.y6c7_c00000{bottom:134.280000pt;}
.y143c_c00000{bottom:134.285333pt;}
.ye76_c00000{bottom:134.382667pt;}
.yb0f_c00000{bottom:134.388000pt;}
.y11cd_c00000{bottom:134.390667pt;}
.ydfd_c00000{bottom:134.396000pt;}
.y1962_c00000{bottom:134.405333pt;}
.y867_c00000{bottom:134.440000pt;}
.y94c_c00000{bottom:134.469333pt;}
.y6fc_c00000{bottom:134.477333pt;}
.yfe7_c00000{bottom:134.526667pt;}
.ya38_c00000{bottom:134.549333pt;}
.y1461_c00000{bottom:134.588000pt;}
.y151b_c00000{bottom:134.654667pt;}
.y38e_c00000{bottom:134.669333pt;}
.y6dc_c00000{bottom:134.684000pt;}
.yc06_c00000{bottom:134.690667pt;}
.y159b_c00000{bottom:134.868000pt;}
.y1273_c00000{bottom:134.882667pt;}
.y953_c00000{bottom:134.897333pt;}
.yf5_c00000{bottom:134.908000pt;}
.yc27_c00000{bottom:135.452000pt;}
.ya1a_c00000{bottom:135.497333pt;}
.yd38_c00000{bottom:135.526667pt;}
.yf8e_c00000{bottom:135.592000pt;}
.y166c_c00000{bottom:135.657333pt;}
.y45a_c00000{bottom:135.701333pt;}
.ye8a_c00000{bottom:135.725333pt;}
.y95d_c00000{bottom:135.836000pt;}
.y1635_c00000{bottom:135.857333pt;}
.y1898_c00000{bottom:135.858667pt;}
.y2c4_c00000{bottom:135.880000pt;}
.y1529_c00000{bottom:135.886667pt;}
.yb4c_c00000{bottom:135.901333pt;}
.ye56_c00000{bottom:135.916000pt;}
.y5c4_c00000{bottom:135.960000pt;}
.y160c_c00000{bottom:135.997333pt;}
.y723_c00000{bottom:136.012000pt;}
.y118e_c00000{bottom:136.065333pt;}
.y1762_c00000{bottom:136.108000pt;}
.y89f_c00000{bottom:136.116000pt;}
.y13cf_c00000{bottom:136.122667pt;}
.y14de_c00000{bottom:136.130667pt;}
.y138b_c00000{bottom:136.132000pt;}
.yeca_c00000{bottom:136.226667pt;}
.y13b0_c00000{bottom:136.514667pt;}
.yb02_c00000{bottom:136.669333pt;}
.y127f_c00000{bottom:136.742667pt;}
.y2e2_c00000{bottom:136.772000pt;}
.y7ce_c00000{bottom:136.780000pt;}
.y316_c00000{bottom:136.816000pt;}
.y1953_c00000{bottom:136.833333pt;}
.yd9_c00000{bottom:136.845333pt;}
.yf9_c00000{bottom:136.846667pt;}
.y1305_c00000{bottom:136.862667pt;}
.y1d0_c00000{bottom:136.921333pt;}
.y6d5_c00000{bottom:136.936000pt;}
.y13d9_c00000{bottom:136.950667pt;}
.y842_c00000{bottom:136.965333pt;}
.y157f_c00000{bottom:136.978667pt;}
.y79d_c00000{bottom:137.037333pt;}
.y4e5_c00000{bottom:137.046667pt;}
.y8f3_c00000{bottom:137.112000pt;}
.y362_c00000{bottom:137.125333pt;}
.y696_c00000{bottom:137.208000pt;}
.ya87_c00000{bottom:137.229333pt;}
.y715_c00000{bottom:137.244000pt;}
.y963_c00000{bottom:137.297333pt;}
.y1788_c00000{bottom:137.354667pt;}
.y1747_c00000{bottom:137.406667pt;}
.y154d_c00000{bottom:137.421333pt;}
.y182f_c00000{bottom:137.436000pt;}
.y872_c00000{bottom:137.540000pt;}
.y320_c00000{bottom:137.597333pt;}
.ya7d_c00000{bottom:137.600000pt;}
.y15d7_c00000{bottom:137.608000pt;}
.yd89_c00000{bottom:137.621333pt;}
.y1330_c00000{bottom:137.650667pt;}
.y121a_c00000{bottom:137.694667pt;}
.y4a_c00000{bottom:137.716000pt;}
.y9fc_c00000{bottom:137.782667pt;}
.y110_c00000{bottom:137.828000pt;}
.y17c7_c00000{bottom:137.954667pt;}
.y879_c00000{bottom:138.065333pt;}
.y925_c00000{bottom:138.108000pt;}
.y10c6_c00000{bottom:138.440000pt;}
.ye6e_c00000{bottom:138.470667pt;}
.y899_c00000{bottom:138.549333pt;}
.y18a9_c00000{bottom:138.550667pt;}
.y1713_c00000{bottom:138.574667pt;}
.y22b_c00000{bottom:138.609333pt;}
.y120b_c00000{bottom:138.684000pt;}
.y1621_c00000{bottom:138.690667pt;}
.y56e_c00000{bottom:138.705333pt;}
.y133_c00000{bottom:138.810667pt;}
.y92c_c00000{bottom:138.978667pt;}
.y917_c00000{bottom:139.061333pt;}
.y78b_c00000{bottom:139.069333pt;}
.y866_c00000{bottom:139.261333pt;}
.y6fb_c00000{bottom:139.297333pt;}
.yc95_c00000{bottom:139.480000pt;}
.y1062_c00000{bottom:139.497333pt;}
.y6db_c00000{bottom:139.504000pt;}
.y42b_c00000{bottom:139.600000pt;}
.y16d5_c00000{bottom:139.689333pt;}
.y1272_c00000{bottom:139.704000pt;}
.y952_c00000{bottom:139.718667pt;}
.y10cf_c00000{bottom:139.800000pt;}
.y7bd_c00000{bottom:139.878667pt;}
.yf2f_c00000{bottom:139.900000pt;}
.yf7b_c00000{bottom:139.973333pt;}
.y1592_c00000{bottom:139.974667pt;}
.y7b7_c00000{bottom:140.004000pt;}
.ycec_c00000{bottom:140.008000pt;}
.ybae_c00000{bottom:140.013333pt;}
.y1031_c00000{bottom:140.064000pt;}
.yb58_c00000{bottom:140.078667pt;}
.y15b6_c00000{bottom:140.093333pt;}
.y8e1_c00000{bottom:140.108000pt;}
.y17bc_c00000{bottom:140.402667pt;}
.y14c_c00000{bottom:140.424000pt;}
.yd22_c00000{bottom:140.625333pt;}
.y27_c00000{bottom:140.636000pt;}
.yecf_c00000{bottom:140.721333pt;}
.y84d_c00000{bottom:140.817333pt;}
.y1354_c00000{bottom:140.825333pt;}
.y722_c00000{bottom:140.832000pt;}
.y73b_c00000{bottom:140.876000pt;}
.ye82_c00000{bottom:140.913333pt;}
.y89e_c00000{bottom:140.936000pt;}
.y13ce_c00000{bottom:140.944000pt;}
.y14dd_c00000{bottom:140.950667pt;}
.y1293_c00000{bottom:140.993333pt;}
.y4fd_c00000{bottom:141.022667pt;}
.y1719_c00000{bottom:141.030667pt;}
.y820_c00000{bottom:141.046667pt;}
.y12db_c00000{bottom:141.142667pt;}
.y104e_c00000{bottom:141.169333pt;}
.ya25_c00000{bottom:141.294667pt;}
.y14d5_c00000{bottom:141.436000pt;}
.y14b9_c00000{bottom:141.444000pt;}
.y28f_c00000{bottom:141.457333pt;}
.yb01_c00000{bottom:141.489333pt;}
.y1313_c00000{bottom:141.532000pt;}
.y7cd_c00000{bottom:141.600000pt;}
.yc94_c00000{bottom:141.618667pt;}
.y13bf_c00000{bottom:141.725333pt;}
.ye6a_c00000{bottom:141.768000pt;}
.y438_c00000{bottom:141.814667pt;}
.y79c_c00000{bottom:141.857333pt;}
.y695_c00000{bottom:142.028000pt;}
.y978_c00000{bottom:142.050667pt;}
.y71_c00000{bottom:142.114667pt;}
.y1787_c00000{bottom:142.176000pt;}
.y480_c00000{bottom:142.189333pt;}
.yb4_c00000{bottom:142.221333pt;}
.y96e_c00000{bottom:142.257333pt;}
.y31f_c00000{bottom:142.418667pt;}
.y124d_c00000{bottom:142.456000pt;}
.y1260_c00000{bottom:142.470667pt;}
.y8d1_c00000{bottom:142.498667pt;}
.y170f_c00000{bottom:142.506667pt;}
.y4ba_c00000{bottom:142.542667pt;}
.y18e9_c00000{bottom:142.581333pt;}
.y150f_c00000{bottom:142.680000pt;}
.y1454_c00000{bottom:142.777333pt;}
.y924_c00000{bottom:142.928000pt;}
.y114b_c00000{bottom:142.958667pt;}
.y129f_c00000{bottom:142.985333pt;}
.y17a9_c00000{bottom:143.240000pt;}
.y15eb_c00000{bottom:143.252000pt;}
.y1786_c00000{bottom:143.268000pt;}
.y55c_c00000{bottom:143.288000pt;}
.yeab_c00000{bottom:143.356000pt;}
.y625_c00000{bottom:143.480000pt;}
.y16fe_c00000{bottom:143.489333pt;}
.y120a_c00000{bottom:143.504000pt;}
.y1804_c00000{bottom:143.600000pt;}
.yb51_c00000{bottom:143.798667pt;}
.yca3_c00000{bottom:143.872000pt;}
.yf00_c00000{bottom:143.878667pt;}
.yc4d_c00000{bottom:143.886667pt;}
.y109b_c00000{bottom:143.974667pt;}
.y182a_c00000{bottom:143.989333pt;}
.y130c_c00000{bottom:144.006667pt;}
.y165d_c00000{bottom:144.028000pt;}
.y17f8_c00000{bottom:144.036000pt;}
.ya10_c00000{bottom:144.064000pt;}
.y7ab_c00000{bottom:144.078667pt;}
.y167b_c00000{bottom:144.160000pt;}
.y406_c00000{bottom:144.173333pt;}
.y15b1_c00000{bottom:144.181333pt;}
.yb85_c00000{bottom:144.204000pt;}
.ye7b_c00000{bottom:144.285333pt;}
.y184a_c00000{bottom:144.313333pt;}
.y1bd_c00000{bottom:144.345333pt;}
.yc44_c00000{bottom:144.486667pt;}
.y1233_c00000{bottom:144.537333pt;}
.y14fa_c00000{bottom:144.580000pt;}
.y1501_c00000{bottom:144.598667pt;}
.y52e_c00000{bottom:144.645333pt;}
.y187b_c00000{bottom:144.690667pt;}
.y8b3_c00000{bottom:144.700000pt;}
.y17ae_c00000{bottom:144.705333pt;}
.yf2e_c00000{bottom:144.721333pt;}
.y9f2_c00000{bottom:144.750667pt;}
.y9f6_c00000{bottom:144.809333pt;}
.yfec_c00000{bottom:144.928000pt;}
.y1931_c00000{bottom:145.009333pt;}
.yd0_c00000{bottom:145.141333pt;}
.y1205_c00000{bottom:145.222667pt;}
.y1880_c00000{bottom:145.318667pt;}
.y50f_c00000{bottom:145.369333pt;}
.y6c6_c00000{bottom:145.398667pt;}
.ye4f_c00000{bottom:145.502667pt;}
.y83e_c00000{bottom:145.532000pt;}
.y1869_c00000{bottom:145.784000pt;}
.y1292_c00000{bottom:145.814667pt;}
.yef1_c00000{bottom:145.828000pt;}
.y465_c00000{bottom:145.842667pt;}
.yd30_c00000{bottom:145.988000pt;}
.y1284_c00000{bottom:146.138667pt;}
.y11af_c00000{bottom:146.220000pt;}
.y14d4_c00000{bottom:146.257333pt;}
.y14b8_c00000{bottom:146.264000pt;}
.y1312_c00000{bottom:146.353333pt;}
.y774_c00000{bottom:146.498667pt;}
.ye45_c00000{bottom:146.528000pt;}
.ydfc_c00000{bottom:146.586667pt;}
.ya19_c00000{bottom:146.617333pt;}
.yf43_c00000{bottom:146.632000pt;}
.y1258_c00000{bottom:146.638667pt;}
.yfed_c00000{bottom:146.646667pt;}
.y1544_c00000{bottom:146.653333pt;}
.y422_c00000{bottom:146.713333pt;}
.yd14_c00000{bottom:146.756000pt;}
.y4d6_c00000{bottom:146.801333pt;}
.y210_c00000{bottom:146.820000pt;}
.y3b5_c00000{bottom:146.821333pt;}
.yda8_c00000{bottom:146.833333pt;}
.ye89_c00000{bottom:146.845333pt;}
.ye75_c00000{bottom:146.926667pt;}
.y1ed_c00000{bottom:146.941333pt;}
.y29e_c00000{bottom:146.969333pt;}
.y1897_c00000{bottom:146.978667pt;}
.y2c3_c00000{bottom:147.000000pt;}
.y188_c00000{bottom:147.069333pt;}
.y184e_c00000{bottom:147.089333pt;}
.y1915_c00000{bottom:147.104000pt;}
.y1012_c00000{bottom:147.288000pt;}
.y4b9_c00000{bottom:147.364000pt;}
.y16fa_c00000{bottom:147.548000pt;}
.yae4_c00000{bottom:147.642667pt;}
.yc56_c00000{bottom:147.657333pt;}
.y190d_c00000{bottom:147.761333pt;}
.y33a_c00000{bottom:147.790667pt;}
.ya68_c00000{bottom:147.841333pt;}
.y146d_c00000{bottom:147.888000pt;}
.y2e1_c00000{bottom:147.892000pt;}
.y1952_c00000{bottom:147.953333pt;}
.y1cf_c00000{bottom:148.041333pt;}
.y6d4_c00000{bottom:148.056000pt;}
.y826_c00000{bottom:148.070667pt;}
.y16a1_c00000{bottom:148.129333pt;}
.y4e4_c00000{bottom:148.166667pt;}
.y37f_c00000{bottom:148.245333pt;}
.y1a9_c00000{bottom:148.308000pt;}
.y1201_c00000{bottom:148.329333pt;}
.y8de_c00000{bottom:148.448000pt;}
.y188c_c00000{bottom:148.498667pt;}
.y138a_c00000{bottom:148.676000pt;}
.y604_c00000{bottom:148.682667pt;}
.yeff_c00000{bottom:148.700000pt;}
.yc4c_c00000{bottom:148.706667pt;}
.y1092_c00000{bottom:148.772000pt;}
.y8fb_c00000{bottom:148.796000pt;}
.y1829_c00000{bottom:148.810667pt;}
.y15b0_c00000{bottom:149.001333pt;}
.y18de_c00000{bottom:149.096000pt;}
.y1491_c00000{bottom:149.105333pt;}
.y878_c00000{bottom:149.185333pt;}
.ydb2_c00000{bottom:149.194667pt;}
.y126a_c00000{bottom:149.348000pt;}
.y13d8_c00000{bottom:149.494667pt;}
.y77f_c00000{bottom:149.613333pt;}
.y361_c00000{bottom:149.669333pt;}
.y3de_c00000{bottom:149.702667pt;}
.y962_c00000{bottom:149.841333pt;}
.y1378_c00000{bottom:149.902667pt;}
.y1023_c00000{bottom:149.924000pt;}
.y1082_c00000{bottom:149.930667pt;}
.y1204_c00000{bottom:150.042667pt;}
.ye0c_c00000{bottom:150.070667pt;}
.y2fc_c00000{bottom:150.100000pt;}
.y80b_c00000{bottom:150.114667pt;}
.ya7c_c00000{bottom:150.144000pt;}
.y10b5_c00000{bottom:150.173333pt;}
.y916_c00000{bottom:150.181333pt;}
.y78a_c00000{bottom:150.188000pt;}
.y16f2_c00000{bottom:150.205333pt;}
.y9b5_c00000{bottom:150.226667pt;}
.yed1_c00000{bottom:150.234667pt;}
.ye4e_c00000{bottom:150.322667pt;}
.y11f7_c00000{bottom:150.349333pt;}
.y83d_c00000{bottom:150.352000pt;}
.y94b_c00000{bottom:150.410667pt;}
.y189e_c00000{bottom:150.418667pt;}
.y17c6_c00000{bottom:150.498667pt;}
.y1460_c00000{bottom:150.528000pt;}
.y151a_c00000{bottom:150.594667pt;}
.y38d_c00000{bottom:150.609333pt;}
.yc05_c00000{bottom:150.632000pt;}
.y185b_c00000{bottom:150.770667pt;}
.yfc6_c00000{bottom:150.786667pt;}
.y159a_c00000{bottom:150.808000pt;}
.y835_c00000{bottom:150.890667pt;}
.y10ce_c00000{bottom:150.918667pt;}
.ybad_c00000{bottom:151.133333pt;}
.y194a_c00000{bottom:151.160000pt;}
.y93d_c00000{bottom:151.341333pt;}
.y995_c00000{bottom:151.385333pt;}
.yc26_c00000{bottom:151.392000pt;}
.y5aa_c00000{bottom:151.428000pt;}
.ye30_c00000{bottom:151.437333pt;}
.y294_c00000{bottom:151.466667pt;}
.yf8d_c00000{bottom:151.532000pt;}
.yb43_c00000{bottom:151.553333pt;}
.yd13_c00000{bottom:151.576000pt;}
.y3b4_c00000{bottom:151.641333pt;}
.y15bd_c00000{bottom:151.645333pt;}
.y3f3_c00000{bottom:151.652000pt;}
.yda7_c00000{bottom:151.653333pt;}
.yb08_c00000{bottom:151.657333pt;}
.ybe1_c00000{bottom:151.673333pt;}
.yd21_c00000{bottom:151.745333pt;}
.yae9_c00000{bottom:151.777333pt;}
.y29d_c00000{bottom:151.790667pt;}
.y1634_c00000{bottom:151.797333pt;}
.y1528_c00000{bottom:151.826667pt;}
.y6fa_c00000{bottom:151.841333pt;}
.ye55_c00000{bottom:151.856000pt;}
.y184d_c00000{bottom:151.909333pt;}
.y84c_c00000{bottom:151.937333pt;}
.yc8a_c00000{bottom:151.952000pt;}
.ye81_c00000{bottom:152.033333pt;}
.y1011_c00000{bottom:152.109333pt;}
.yec9_c00000{bottom:152.166667pt;}
.y1271_c00000{bottom:152.248000pt;}
.y804_c00000{bottom:152.306667pt;}
.y1906_c00000{bottom:152.314667pt;}
.ybff_c00000{bottom:152.577333pt;}
.y190c_c00000{bottom:152.581333pt;}
.y1827_c00000{bottom:152.618667pt;}
.ya67_c00000{bottom:152.662667pt;}
.y2e0_c00000{bottom:152.712000pt;}
.y255_c00000{bottom:152.772000pt;}
.ycae_c00000{bottom:152.816000pt;}
.y12d8_c00000{bottom:152.864000pt;}
.y1c3_c00000{bottom:152.890667pt;}
.y4e3_c00000{bottom:152.986667pt;}
.y8f2_c00000{bottom:153.052000pt;}
.ya4d_c00000{bottom:153.065333pt;}
.y148e_c00000{bottom:153.086667pt;}
.y1138_c00000{bottom:153.094667pt;}
.y977_c00000{bottom:153.169333pt;}
.y714_c00000{bottom:153.185333pt;}
.yc80_c00000{bottom:153.230667pt;}
.yece_c00000{bottom:153.266667pt;}
.y1746_c00000{bottom:153.346667pt;}
.y154c_c00000{bottom:153.361333pt;}
.y721_c00000{bottom:153.377333pt;}
.y94_c00000{bottom:153.436000pt;}
.y871_c00000{bottom:153.480000pt;}
.yd88_c00000{bottom:153.561333pt;}
.y124c_c00000{bottom:153.576000pt;}
.yf39_c00000{bottom:153.857333pt;}
.y132b_c00000{bottom:153.902667pt;}
.y6e4_c00000{bottom:154.005333pt;}
.yb00_c00000{bottom:154.033333pt;}
.y7cc_c00000{bottom:154.144000pt;}
.y6a7_c00000{bottom:154.197333pt;}
.y5de_c00000{bottom:154.292000pt;}
.y10c5_c00000{bottom:154.380000pt;}
.ye6d_c00000{bottom:154.412000pt;}
.y360_c00000{bottom:154.489333pt;}
.y1406_c00000{bottom:154.529333pt;}
.y694_c00000{bottom:154.572000pt;}
.y31e_c00000{bottom:154.609333pt;}
.y1957_c00000{bottom:154.624000pt;}
.y1620_c00000{bottom:154.630667pt;}
.yccb_c00000{bottom:154.750667pt;}
.y23e_c00000{bottom:154.769333pt;}
.ye0b_c00000{bottom:154.890667pt;}
.y92b_c00000{bottom:154.918667pt;}
.y1170_c00000{bottom:154.962667pt;}
.y10b4_c00000{bottom:154.994667pt;}
.y915_c00000{bottom:155.001333pt;}
.y165c_c00000{bottom:155.148000pt;}
.ya37_c00000{bottom:155.310667pt;}
.y17c5_c00000{bottom:155.318667pt;}
.y145f_c00000{bottom:155.348000pt;}
.y118a_c00000{bottom:155.390667pt;}
.y38c_c00000{bottom:155.429333pt;}
.y1061_c00000{bottom:155.437333pt;}
.yc04_c00000{bottom:155.452000pt;}
.y1bc_c00000{bottom:155.465333pt;}
.yaa5_c00000{bottom:155.722667pt;}
.y1473_c00000{bottom:155.834667pt;}
.yab4_c00000{bottom:155.914667pt;}
.y1591_c00000{bottom:155.916000pt;}
.y7b6_c00000{bottom:155.945333pt;}
.yceb_c00000{bottom:155.948000pt;}
.yf08_c00000{bottom:156.018667pt;}
.y15b5_c00000{bottom:156.033333pt;}
.y1930_c00000{bottom:156.129333pt;}
.yc25_c00000{bottom:156.212000pt;}
.y17bb_c00000{bottom:156.344000pt;}
.y14b_c00000{bottom:156.364000pt;}
.y166b_c00000{bottom:156.418667pt;}
.yb4b_c00000{bottom:156.662667pt;}
.ye54_c00000{bottom:156.677333pt;}
.y414_c00000{bottom:156.749333pt;}
.y1353_c00000{bottom:156.765333pt;}
.yc89_c00000{bottom:156.773333pt;}
.y73a_c00000{bottom:156.816000pt;}
.y6da_c00000{bottom:156.869333pt;}
.yc0b_c00000{bottom:156.876000pt;}
.y81f_c00000{bottom:156.986667pt;}
.y8b2_c00000{bottom:157.244000pt;}
.y1283_c00000{bottom:157.258667pt;}
.y11ae_c00000{bottom:157.340000pt;}
.y28e_c00000{bottom:157.397333pt;}
.y1803_c00000{bottom:157.468000pt;}
.y13be_c00000{bottom:157.665333pt;}
.y157e_c00000{bottom:157.740000pt;}
.y976_c00000{bottom:157.990667pt;}
.y713_c00000{bottom:158.005333pt;}
.y168_c00000{bottom:158.070667pt;}
.y597_c00000{bottom:158.077333pt;}
.y47f_c00000{bottom:158.129333pt;}
.y143b_c00000{bottom:158.188000pt;}
.y182e_c00000{bottom:158.197333pt;}
.yb0e_c00000{bottom:158.292000pt;}
.y11cc_c00000{bottom:158.293333pt;}
.y16d1_c00000{bottom:158.300000pt;}
.y13cd_c00000{bottom:158.308000pt;}
.y14dc_c00000{bottom:158.314667pt;}
.y1291_c00000{bottom:158.358667pt;}
.y125f_c00000{bottom:158.410667pt;}
.yfe6_c00000{bottom:158.430667pt;}
.y8d0_c00000{bottom:158.438667pt;}
.y181a_c00000{bottom:158.442667pt;}
.y170e_c00000{bottom:158.446667pt;}
.y9fb_c00000{bottom:158.544000pt;}
.y16f9_c00000{bottom:158.668000pt;}
.y14d3_c00000{bottom:158.801333pt;}
.yf4_c00000{bottom:158.810667pt;}
.y79b_c00000{bottom:158.869333pt;}
.y114a_c00000{bottom:158.898667pt;}
.y339_c00000{bottom:158.910667pt;}
.y146c_c00000{bottom:159.008000pt;}
.y10c4_c00000{bottom:159.201333pt;}
.y173e_c00000{bottom:159.253333pt;}
.y65f_c00000{bottom:159.273333pt;}
.y9da_c00000{bottom:159.282667pt;}
.y18a8_c00000{bottom:159.312000pt;}
.y22a_c00000{bottom:159.370667pt;}
.y1a8_c00000{bottom:159.428000pt;}
.y1956_c00000{bottom:159.444000pt;}
.y56d_c00000{bottom:159.466667pt;}
.y1247_c00000{bottom:159.525333pt;}
.y8dd_c00000{bottom:159.568000pt;}
.y1137_c00000{bottom:159.572000pt;}
.y95c_c00000{bottom:159.620000pt;}
.yb50_c00000{bottom:159.740000pt;}
.y5c3_c00000{bottom:159.862667pt;}
.y4b8_c00000{bottom:159.908000pt;}
.y8fa_c00000{bottom:159.914667pt;}
.ya0f_c00000{bottom:160.004000pt;}
.y7aa_c00000{bottom:160.018667pt;}
.y167a_c00000{bottom:160.100000pt;}
.y1374_c00000{bottom:160.225333pt;}
.y923_c00000{bottom:160.293333pt;}
.y13af_c00000{bottom:160.417333pt;}
.y1269_c00000{bottom:160.468000pt;}
.y14d1_c00000{bottom:160.522667pt;}
.y4a2_c00000{bottom:160.588000pt;}
.y7bc_c00000{bottom:160.640000pt;}
.y127e_c00000{bottom:160.645333pt;}
.y315_c00000{bottom:160.720000pt;}
.yd8_c00000{bottom:160.749333pt;}
.y3dd_c00000{bottom:160.822667pt;}
.y1030_c00000{bottom:160.824000pt;}
.yb57_c00000{bottom:160.838667pt;}
.y75b_c00000{bottom:160.853333pt;}
.y8e0_c00000{bottom:160.868000pt;}
.y590_c00000{bottom:160.988000pt;}
.y1022_c00000{bottom:161.044000pt;}
.y187f_c00000{bottom:161.258667pt;}
.y50e_c00000{bottom:161.309333pt;}
.y16f1_c00000{bottom:161.324000pt;}
.y898_c00000{bottom:161.388000pt;}
.ya94_c00000{bottom:161.470667pt;}
.y15d6_c00000{bottom:161.510667pt;}
.y15af_c00000{bottom:161.546667pt;}
.yad3_c00000{bottom:161.549333pt;}
.y1219_c00000{bottom:161.597333pt;}
.y49_c00000{bottom:161.618667pt;}
.y739_c00000{bottom:161.636000pt;}
.y10f_c00000{bottom:161.730667pt;}
.y464_c00000{bottom:161.782667pt;}
.yd2f_c00000{bottom:161.928000pt;}
.ya24_c00000{bottom:162.056000pt;}
.y1282_c00000{bottom:162.078667pt;}
.y773_c00000{bottom:162.438667pt;}
.ydfb_c00000{bottom:162.528000pt;}
.y70a_c00000{bottom:162.557333pt;}
.yf42_c00000{bottom:162.572000pt;}
.y293_c00000{bottom:162.586667pt;}
.y1543_c00000{bottom:162.594667pt;}
.y421_c00000{bottom:162.653333pt;}
.y132_c00000{bottom:162.713333pt;}
.y20f_c00000{bottom:162.761333pt;}
.ye88_c00000{bottom:162.785333pt;}
.ye4d_c00000{bottom:162.866667pt;}
.y83a_c00000{bottom:162.881333pt;}
.y1896_c00000{bottom:162.918667pt;}
.y2c2_c00000{bottom:162.940000pt;}
.y47e_c00000{bottom:162.949333pt;}
.y187_c00000{bottom:163.009333pt;}
.yf7a_c00000{bottom:163.166667pt;}
.y1290_c00000{bottom:163.178667pt;}
.y42a_c00000{bottom:163.384000pt;}
.yae3_c00000{bottom:163.582667pt;}
.y14d2_c00000{bottom:163.621333pt;}
.y14b7_c00000{bottom:163.629333pt;}
.y1149_c00000{bottom:163.718667pt;}
.y129e_c00000{bottom:163.745333pt;}
.yd12_c00000{bottom:163.766667pt;}
.y3b3_c00000{bottom:163.832000pt;}
.ycad_c00000{bottom:163.936000pt;}
.y29c_c00000{bottom:163.981333pt;}
.y6d3_c00000{bottom:163.996000pt;}
.y1c2_c00000{bottom:164.010667pt;}
.y55b_c00000{bottom:164.049333pt;}
.y37e_c00000{bottom:164.185333pt;}
.y188b_c00000{bottom:164.438667pt;}
.y865_c00000{bottom:164.468000pt;}
.y603_c00000{bottom:164.624000pt;}
.yca2_c00000{bottom:164.632000pt;}
.y8f9_c00000{bottom:164.736000pt;}
.y1718_c00000{bottom:164.814667pt;}
.y4fc_c00000{bottom:164.925333pt;}
.y951_c00000{bottom:164.926667pt;}
.y405_c00000{bottom:164.934667pt;}
.yf38_c00000{bottom:164.977333pt;}
.y132a_c00000{bottom:165.021333pt;}
.ye7a_c00000{bottom:165.045333pt;}
.y104d_c00000{bottom:165.072000pt;}
.y6e3_c00000{bottom:165.125333pt;}
.ya66_c00000{bottom:165.206667pt;}
.y13d7_c00000{bottom:165.434667pt;}
.y26_c00000{bottom:165.440000pt;}
.y2f_c00000{bottom:165.476000pt;}
.yc93_c00000{bottom:165.521333pt;}
.y437_c00000{bottom:165.597333pt;}
.yded_c00000{bottom:165.609333pt;}
.y1405_c00000{bottom:165.649333pt;}
.ye69_c00000{bottom:165.670667pt;}
.y70_c00000{bottom:166.018667pt;}
.y96d_c00000{bottom:166.040000pt;}
.y187e_c00000{bottom:166.078667pt;}
.ya7b_c00000{bottom:166.084000pt;}
.y1588_c00000{bottom:166.130667pt;}
.y6c5_c00000{bottom:166.160000pt;}
.y94a_c00000{bottom:166.350667pt;}
.y189d_c00000{bottom:166.358667pt;}
.y18e8_c00000{bottom:166.365333pt;}
.ya36_c00000{bottom:166.430667pt;}
.y150e_c00000{bottom:166.462667pt;}
.y1519_c00000{bottom:166.534667pt;}
.y1060_c00000{bottom:166.557333pt;}
.yb65_c00000{bottom:166.653333pt;}
.y1453_c00000{bottom:166.680000pt;}
.yd2e_c00000{bottom:166.749333pt;}
.y35f_c00000{bottom:167.033333pt;}
.y17a8_c00000{bottom:167.142667pt;}
.y15ea_c00000{bottom:167.154667pt;}
.y1785_c00000{bottom:167.172000pt;}
.yeaa_c00000{bottom:167.258667pt;}
.y93c_c00000{bottom:167.281333pt;}
.ye44_c00000{bottom:167.289333pt;}
.ydfa_c00000{bottom:167.348000pt;}
.y166f_c00000{bottom:167.382667pt;}
.y624_c00000{bottom:167.384000pt;}
.y1257_c00000{bottom:167.400000pt;}
.y292_c00000{bottom:167.406667pt;}
.ye0a_c00000{bottom:167.434667pt;}
.yf8c_c00000{bottom:167.472000pt;}
.y2a3_c00000{bottom:167.581333pt;}
.y3f2_c00000{bottom:167.592000pt;}
.ye87_c00000{bottom:167.606667pt;}
.y1ec_c00000{bottom:167.702667pt;}
.y1633_c00000{bottom:167.737333pt;}
.y1895_c00000{bottom:167.738667pt;}
.y2c1_c00000{bottom:167.760000pt;}
.y6f9_c00000{bottom:167.781333pt;}
.y130b_c00000{bottom:167.789333pt;}
.y17c4_c00000{bottom:167.862667pt;}
.y145e_c00000{bottom:167.892000pt;}
.y17f7_c00000{bottom:167.938667pt;}
.ye80_c00000{bottom:167.973333pt;}
.yb84_c00000{bottom:167.986667pt;}
.yc0a_c00000{bottom:167.996000pt;}
.y81e_c00000{bottom:168.106667pt;}
.y1849_c00000{bottom:168.216000pt;}
.yc43_c00000{bottom:168.390667pt;}
.y1232_c00000{bottom:168.440000pt;}
.y14f9_c00000{bottom:168.482667pt;}
.y1500_c00000{bottom:168.502667pt;}
.y52d_c00000{bottom:168.548000pt;}
.y187a_c00000{bottom:168.593333pt;}
.y9f1_c00000{bottom:168.653333pt;}
.y9f5_c00000{bottom:168.712000pt;}
.y1951_c00000{bottom:168.713333pt;}
.y1ce_c00000{bottom:168.801333pt;}
.y9b9_c00000{bottom:168.816000pt;}
.y825_c00000{bottom:168.830667pt;}
.yfe9_c00000{bottom:168.832000pt;}
.y157d_c00000{bottom:168.860000pt;}
.y8f1_c00000{bottom:168.992000pt;}
.y37d_c00000{bottom:169.005333pt;}
.ycf_c00000{bottom:169.044000pt;}
.yb4a_c00000{bottom:169.206667pt;}
.ye53_c00000{bottom:169.221333pt;}
.y1745_c00000{bottom:169.288000pt;}
.y1550_c00000{bottom:169.302667pt;}
.y14db_c00000{bottom:169.434667pt;}
.y1389_c00000{bottom:169.436000pt;}
.y1868_c00000{bottom:169.568000pt;}
.yf2d_c00000{bottom:169.574667pt;}
.y9fa_c00000{bottom:169.664000pt;}
.yef0_c00000{bottom:169.730667pt;}
.y1329_c00000{bottom:169.842667pt;}
.y6e2_c00000{bottom:169.945333pt;}
.yaff_c00000{bottom:169.973333pt;}
.y79a_c00000{bottom:169.988000pt;}
.y7cb_c00000{bottom:170.084000pt;}
.y6a6_c00000{bottom:170.137333pt;}
.y13d6_c00000{bottom:170.256000pt;}
.y1652_c00000{bottom:170.321333pt;}
.y77e_c00000{bottom:170.373333pt;}
.yf5e_c00000{bottom:170.429333pt;}
.y18a7_c00000{bottom:170.432000pt;}
.y229_c00000{bottom:170.490667pt;}
.y693_c00000{bottom:170.512000pt;}
.y975_c00000{bottom:170.534667pt;}
.y712_c00000{bottom:170.549333pt;}
.y161f_c00000{bottom:170.572000pt;}
.y56c_c00000{bottom:170.586667pt;}
.y961_c00000{bottom:170.602667pt;}
.y4d5_c00000{bottom:170.704000pt;}
.y12ba_c00000{bottom:170.726667pt;}
.y16d0_c00000{bottom:170.844000pt;}
.y789_c00000{bottom:170.949333pt;}
.y1914_c00000{bottom:171.006667pt;}
.y1518_c00000{bottom:171.354667pt;}
.y1bb_c00000{bottom:171.405333pt;}
.y922_c00000{bottom:171.413333pt;}
.yc55_c00000{bottom:171.560000pt;}
.y1599_c00000{bottom:171.569333pt;}
.y10cd_c00000{bottom:171.680000pt;}
.y10c3_c00000{bottom:171.745333pt;}
.y1590_c00000{bottom:171.856000pt;}
.y7b5_c00000{bottom:171.885333pt;}
.ybac_c00000{bottom:171.893333pt;}
.y102f_c00000{bottom:171.944000pt;}
.yf07_c00000{bottom:171.958667pt;}
.y15b4_c00000{bottom:171.973333pt;}
.y16a0_c00000{bottom:172.033333pt;}
.y192f_c00000{bottom:172.069333pt;}
.y1200_c00000{bottom:172.232000pt;}
.y17ba_c00000{bottom:172.284000pt;}
.yd20_c00000{bottom:172.506667pt;}
.y1527_c00000{bottom:172.588000pt;}
.y1091_c00000{bottom:172.674667pt;}
.y84b_c00000{bottom:172.698667pt;}
.y145d_c00000{bottom:172.713333pt;}
.yc03_c00000{bottom:172.816000pt;}
.y81d_c00000{bottom:172.926667pt;}
.y18dd_c00000{bottom:173.000000pt;}
.y1270_c00000{bottom:173.008000pt;}
.ydb1_c00000{bottom:173.097333pt;}
.yd63_c00000{bottom:173.140000pt;}
.ya23_c00000{bottom:173.176000pt;}
.y28d_c00000{bottom:173.338667pt;}
.y13bd_c00000{bottom:173.605333pt;}
.y1377_c00000{bottom:173.685333pt;}
.y8f0_c00000{bottom:173.813333pt;}
.y1081_c00000{bottom:173.834667pt;}
.yefe_c00000{bottom:173.906667pt;}
.yc4b_c00000{bottom:173.914667pt;}
.y2fb_c00000{bottom:174.002667pt;}
.y80a_c00000{bottom:174.017333pt;}
.yb49_c00000{bottom:174.026667pt;}
.y154b_c00000{bottom:174.122667pt;}
.y720_c00000{bottom:174.137333pt;}
.y1010_c00000{bottom:174.217333pt;}
.y870_c00000{bottom:174.241333pt;}
.y11f6_c00000{bottom:174.252000pt;}
.y14da_c00000{bottom:174.256000pt;}
.yd87_c00000{bottom:174.321333pt;}
.y124b_c00000{bottom:174.337333pt;}
.y8cf_c00000{bottom:174.380000pt;}
.y9f9_c00000{bottom:174.484000pt;}
.y185a_c00000{bottom:174.673333pt;}
.yfc5_c00000{bottom:174.689333pt;}
.y11ab_c00000{bottom:174.716000pt;}
.yafe_c00000{bottom:174.794667pt;}
.y799_c00000{bottom:174.809333pt;}
.y338_c00000{bottom:174.850667pt;}
.y129d_c00000{bottom:174.865333pt;}
.y7ca_c00000{bottom:174.905333pt;}
.y146b_c00000{bottom:174.948000pt;}
.y1949_c00000{bottom:175.062667pt;}
.y55a_c00000{bottom:175.169333pt;}
.y5a9_c00000{bottom:175.332000pt;}
.ya86_c00000{bottom:175.354667pt;}
.y1a7_c00000{bottom:175.368000pt;}
.y31d_c00000{bottom:175.369333pt;}
.yb42_c00000{bottom:175.457333pt;}
.y12b9_c00000{bottom:175.546667pt;}
.y834_c00000{bottom:175.560000pt;}
.y92a_c00000{bottom:175.680000pt;}
.yca1_c00000{bottom:175.752000pt;}
.y109a_c00000{bottom:175.856000pt;}
.y165b_c00000{bottom:175.908000pt;}
.ya0e_c00000{bottom:175.944000pt;}
.y7a9_c00000{bottom:175.958667pt;}
.y1679_c00000{bottom:176.040000pt;}
.yda6_c00000{bottom:176.094667pt;}
.y803_c00000{bottom:176.209333pt;}
.y1905_c00000{bottom:176.217333pt;}
.y1ba_c00000{bottom:176.225333pt;}
.y1148_c00000{bottom:176.262667pt;}
.y1268_c00000{bottom:176.408000pt;}
.yc73_c00000{bottom:176.446667pt;}
.ybfe_c00000{bottom:176.480000pt;}
.y1826_c00000{bottom:176.521333pt;}
.y254_c00000{bottom:176.674667pt;}
.y7b4_c00000{bottom:176.705333pt;}
.y3dc_c00000{bottom:176.762667pt;}
.yb56_c00000{bottom:176.778667pt;}
.y75a_c00000{bottom:176.794667pt;}
.y14a0_c00000{bottom:176.814667pt;}
.y1761_c00000{bottom:176.841333pt;}
.y192e_c00000{bottom:176.890667pt;}
.y148d_c00000{bottom:176.989333pt;}
.y2df_c00000{bottom:177.036000pt;}
.y14a_c00000{bottom:177.125333pt;}
.y11d6_c00000{bottom:177.237333pt;}
.y50d_c00000{bottom:177.250667pt;}
.y8f8_c00000{bottom:177.280000pt;}
.ya4c_c00000{bottom:177.321333pt;}
.y93_c00000{bottom:177.338667pt;}
.ya93_c00000{bottom:177.412000pt;}
.y189c_c00000{bottom:177.478667pt;}
.y15ae_c00000{bottom:177.486667pt;}
.y1373_c00000{bottom:177.589333pt;}
.y70f_c00000{bottom:177.789333pt;}
.y8b1_c00000{bottom:178.004000pt;}
.y11ad_c00000{bottom:178.100000pt;}
.y4e2_c00000{bottom:178.194667pt;}
.yc24_c00000{bottom:178.320000pt;}
.y772_c00000{bottom:178.378667pt;}
.y93b_c00000{bottom:178.401333pt;}
.ye43_c00000{bottom:178.409333pt;}
.ye2f_c00000{bottom:178.497333pt;}
.y1557_c00000{bottom:178.512000pt;}
.yd37_c00000{bottom:178.526667pt;}
.y1542_c00000{bottom:178.534667pt;}
.y420_c00000{bottom:178.593333pt;}
.y26f_c00000{bottom:178.654667pt;}
.y23d_c00000{bottom:178.672000pt;}
.y20e_c00000{bottom:178.701333pt;}
.ye74_c00000{bottom:178.806667pt;}
.ye4c_c00000{bottom:178.808000pt;}
.y1eb_c00000{bottom:178.822667pt;}
.y116f_c00000{bottom:178.866667pt;}
.y186_c00000{bottom:178.949333pt;}
.y16c1_c00000{bottom:179.078667pt;}
.y170d_c00000{bottom:179.206667pt;}
.yd2d_c00000{bottom:179.293333pt;}
.y16f8_c00000{bottom:179.429333pt;}
.yae2_c00000{bottom:179.522667pt;}
.yfa9_c00000{bottom:179.622667pt;}
.yaa4_c00000{bottom:179.625333pt;}
.y337_c00000{bottom:179.670667pt;}
.ycea_c00000{bottom:179.732000pt;}
.y1472_c00000{bottom:179.737333pt;}
.y3b2_c00000{bottom:179.772000pt;}
.ycac_c00000{bottom:179.876000pt;}
.ydf9_c00000{bottom:179.892000pt;}
.y1cd_c00000{bottom:179.921333pt;}
.y9b8_c00000{bottom:179.936000pt;}
.y824_c00000{bottom:179.950667pt;}
.y3e2_c00000{bottom:180.125333pt;}
.y10b3_c00000{bottom:180.202667pt;}
.y914_c00000{bottom:180.209333pt;}
.y1894_c00000{bottom:180.282667pt;}
.y47d_c00000{bottom:180.314667pt;}
.y8dc_c00000{bottom:180.329333pt;}
.y188a_c00000{bottom:180.378667pt;}
.y1352_c00000{bottom:180.549333pt;}
.y1388_c00000{bottom:180.556000pt;}
.y602_c00000{bottom:180.564000pt;}
.y38b_c00000{bottom:180.637333pt;}
.y413_c00000{bottom:180.652000pt;}
.y4b7_c00000{bottom:180.668000pt;}
.y1099_c00000{bottom:180.676000pt;}
.y7a8_c00000{bottom:180.778667pt;}
.yf37_c00000{bottom:180.917333pt;}
.y1147_c00000{bottom:181.084000pt;}
.ya65_c00000{bottom:181.146667pt;}
.y37c_c00000{bottom:181.196000pt;}
.y1267_c00000{bottom:181.228000pt;}
.y1802_c00000{bottom:181.370667pt;}
.y1106_c00000{bottom:181.549333pt;}
.y3db_c00000{bottom:181.584000pt;}
.yb3_c00000{bottom:181.732000pt;}
.y1021_c00000{bottom:181.805333pt;}
.y167_c00000{bottom:181.973333pt;}
.y596_c00000{bottom:181.980000pt;}
.ya7a_c00000{bottom:182.025333pt;}
.y788_c00000{bottom:182.069333pt;}
.y1587_c00000{bottom:182.070667pt;}
.y16f0_c00000{bottom:182.085333pt;}
.y13cc_c00000{bottom:182.090667pt;}
.y1961_c00000{bottom:182.092000pt;}
.y6d9_c00000{bottom:182.100000pt;}
.yb0d_c00000{bottom:182.194667pt;}
.y11cb_c00000{bottom:182.196000pt;}
.ya92_c00000{bottom:182.232000pt;}
.y949_c00000{bottom:182.290667pt;}
.yfe5_c00000{bottom:182.333333pt;}
.y1819_c00000{bottom:182.346667pt;}
.ya35_c00000{bottom:182.370667pt;}
.y1328_c00000{bottom:182.386667pt;}
.y1372_c00000{bottom:182.410667pt;}
.y6e1_c00000{bottom:182.489333pt;}
.y105f_c00000{bottom:182.497333pt;}
.y463_c00000{bottom:182.542667pt;}
.yb64_c00000{bottom:182.593333pt;}
.y101_c00000{bottom:182.713333pt;}
.yf3_c00000{bottom:182.714667pt;}
.y35e_c00000{bottom:182.973333pt;}
.yab3_c00000{bottom:182.974667pt;}
.ybab_c00000{bottom:183.013333pt;}
.y65e_c00000{bottom:183.177333pt;}
.y9d9_c00000{bottom:183.186667pt;}
.y93a_c00000{bottom:183.221333pt;}
.y709_c00000{bottom:183.317333pt;}
.yf41_c00000{bottom:183.332000pt;}
.yd36_c00000{bottom:183.346667pt;}
.ye09_c00000{bottom:183.376000pt;}
.yf8b_c00000{bottom:183.412000pt;}
.y1246_c00000{bottom:183.428000pt;}
.y1136_c00000{bottom:183.474667pt;}
.y7e8_c00000{bottom:183.521333pt;}
.y95b_c00000{bottom:183.522667pt;}
.yd1f_c00000{bottom:183.626667pt;}
.y16e7_c00000{bottom:183.628000pt;}
.y12d7_c00000{bottom:183.629333pt;}
.y15a1_c00000{bottom:183.642667pt;}
.y1632_c00000{bottom:183.677333pt;}
.y1526_c00000{bottom:183.708000pt;}
.y6f8_c00000{bottom:183.722667pt;}
.y5c2_c00000{bottom:183.765333pt;}
.y84a_c00000{bottom:183.818667pt;}
.y1517_c00000{bottom:183.898667pt;}
.ye7f_c00000{bottom:183.914667pt;}
.yc02_c00000{bottom:183.936000pt;}
.y16d4_c00000{bottom:184.113333pt;}
.y13ae_c00000{bottom:184.320000pt;}
.yae1_c00000{bottom:184.344000pt;}
.y7bb_c00000{bottom:184.422667pt;}
.y14d0_c00000{bottom:184.425333pt;}
.y4a1_c00000{bottom:184.492000pt;}
.yd11_c00000{bottom:184.528000pt;}
.y127d_c00000{bottom:184.549333pt;}
.y3b1_c00000{bottom:184.593333pt;}
.y314_c00000{bottom:184.622667pt;}
.yd7_c00000{bottom:184.652000pt;}
.ycab_c00000{bottom:184.697333pt;}
.y13bc_c00000{bottom:184.725333pt;}
.y29b_c00000{bottom:184.742667pt;}
.y6d2_c00000{bottom:184.757333pt;}
.y1c1_c00000{bottom:184.772000pt;}
.y157c_c00000{bottom:184.800000pt;}
.y58f_c00000{bottom:184.892000pt;}
.y2a2_c00000{bottom:184.945333pt;}
.yb2e_c00000{bottom:184.946667pt;}
.y1893_c00000{bottom:185.104000pt;}
.yecd_c00000{bottom:185.146667pt;}
.ye52_c00000{bottom:185.161333pt;}
.y1744_c00000{bottom:185.228000pt;}
.y154a_c00000{bottom:185.242667pt;}
.y897_c00000{bottom:185.290667pt;}
.y86f_c00000{bottom:185.360000pt;}
.y15d5_c00000{bottom:185.413333pt;}
.yd86_c00000{bottom:185.441333pt;}
.yad2_c00000{bottom:185.452000pt;}
.y124a_c00000{bottom:185.456000pt;}
.y81c_c00000{bottom:185.470667pt;}
.y1218_c00000{bottom:185.501333pt;}
.y10e_c00000{bottom:185.633333pt;}
.y37b_c00000{bottom:186.017333pt;}
.y1651_c00000{bottom:186.261333pt;}
.ycca_c00000{bottom:186.370667pt;}
.y18a6_c00000{bottom:186.372000pt;}
.y994_c00000{bottom:186.377333pt;}
.y1404_c00000{bottom:186.409333pt;}
.y1639_c00000{bottom:186.474667pt;}
.y31c_c00000{bottom:186.489333pt;}
.y161e_c00000{bottom:186.512000pt;}
.y56b_c00000{bottom:186.526667pt;}
.yb48_c00000{bottom:186.570667pt;}
.y131_c00000{bottom:186.617333pt;}
.y16cf_c00000{bottom:186.785333pt;}
.y738_c00000{bottom:186.844000pt;}
.y787_c00000{bottom:186.889333pt;}
.y165a_c00000{bottom:187.028000pt;}
.yf79_c00000{bottom:187.069333pt;}
.y948_c00000{bottom:187.110667pt;}
.y429_c00000{bottom:187.286667pt;}
.y105e_c00000{bottom:187.317333pt;}
.y798_c00000{bottom:187.353333pt;}
.y14b6_c00000{bottom:187.412000pt;}
.yb63_c00000{bottom:187.413333pt;}
.y9b4_c00000{bottom:187.510667pt;}
.y10c2_c00000{bottom:187.685333pt;}
.y35d_c00000{bottom:187.794667pt;}
.ya85_c00000{bottom:187.898667pt;}
.y759_c00000{bottom:187.913333pt;}
.ye08_c00000{bottom:188.196000pt;}
.y17b9_c00000{bottom:188.224000pt;}
.y864_c00000{bottom:188.372000pt;}
.y128f_c00000{bottom:188.386667pt;}
.yd1e_c00000{bottom:188.446667pt;}
.y6f7_c00000{bottom:188.542667pt;}
.y17c3_c00000{bottom:188.624000pt;}
.y404_c00000{bottom:188.717333pt;}
.yc01_c00000{bottom:188.757333pt;}
.y1b9_c00000{bottom:188.770667pt;}
.y4fb_c00000{bottom:188.829333pt;}
.y1598_c00000{bottom:188.933333pt;}
.y126f_c00000{bottom:188.948000pt;}
.y104c_c00000{bottom:188.974667pt;}
.ya22_c00000{bottom:189.116000pt;}
.y8b0_c00000{bottom:189.124000pt;}
.y7b3_c00000{bottom:189.249333pt;}
.y28c_c00000{bottom:189.278667pt;}
.y896_c00000{bottom:189.320000pt;}
.y2e_c00000{bottom:189.380000pt;}
.yc92_c00000{bottom:189.424000pt;}
.yd4b_c00000{bottom:189.437333pt;}
.y436_c00000{bottom:189.500000pt;}
.y13bb_c00000{bottom:189.546667pt;}
.y1303_c00000{bottom:189.596000pt;}
.yba0_c00000{bottom:189.618667pt;}
.y6f_c00000{bottom:189.921333pt;}
.y6c4_c00000{bottom:189.942667pt;}
.ye51_c00000{bottom:189.981333pt;}
.y89d_c00000{bottom:190.181333pt;}
.y18e7_c00000{bottom:190.268000pt;}
.y81b_c00000{bottom:190.292000pt;}
.y170c_c00000{bottom:190.326667pt;}
.y150d_c00000{bottom:190.365333pt;}
.y13f5_c00000{bottom:190.541333pt;}
.y16f7_c00000{bottom:190.548000pt;}
.y13a8_c00000{bottom:190.606667pt;}
.y25_c00000{bottom:190.720000pt;}
.ybcb_c00000{bottom:190.733333pt;}
.y17a7_c00000{bottom:191.045333pt;}
.y77d_c00000{bottom:191.057333pt;}
.y1784_c00000{bottom:191.074667pt;}
.y8ef_c00000{bottom:191.177333pt;}
.y1256_c00000{bottom:191.182667pt;}
.y228_c00000{bottom:191.250667pt;}
.y692_c00000{bottom:191.273333pt;}
.y623_c00000{bottom:191.286667pt;}
.y974_c00000{bottom:191.294667pt;}
.y1a6_c00000{bottom:191.308000pt;}
.y711_c00000{bottom:191.310667pt;}
.yca0_c00000{bottom:191.692000pt;}
.y17f6_c00000{bottom:191.841333pt;}
.y336_c00000{bottom:191.862667pt;}
.ya0d_c00000{bottom:191.884000pt;}
.yb83_c00000{bottom:191.890667pt;}
.y905_c00000{bottom:191.898667pt;}
.y1678_c00000{bottom:191.980000pt;}
.y1848_c00000{bottom:192.118667pt;}
.y797_c00000{bottom:192.173333pt;}
.yc42_c00000{bottom:192.293333pt;}
.y1231_c00000{bottom:192.342667pt;}
.y14f8_c00000{bottom:192.385333pt;}
.y1879_c00000{bottom:192.497333pt;}
.y757_c00000{bottom:192.510667pt;}
.y9f0_c00000{bottom:192.556000pt;}
.y9f4_c00000{bottom:192.614667pt;}
.y158f_c00000{bottom:192.616000pt;}
.y102e_c00000{bottom:192.705333pt;}
.y15b3_c00000{bottom:192.734667pt;}
.y12b8_c00000{bottom:192.912000pt;}
.y1020_c00000{bottom:192.925333pt;}
.yce_c00000{bottom:192.946667pt;}
.y50c_c00000{bottom:193.190667pt;}
.y16ef_c00000{bottom:193.205333pt;}
.y7a7_c00000{bottom:193.322667pt;}
.y1266_c00000{bottom:193.418667pt;}
.y15ad_c00000{bottom:193.426667pt;}
.y1867_c00000{bottom:193.470667pt;}
.yf2c_c00000{bottom:193.478667pt;}
.y1146_c00000{bottom:193.628000pt;}
.yeef_c00000{bottom:193.633333pt;}
.y67c_c00000{bottom:193.805333pt;}
.y6a5_c00000{bottom:193.921333pt;}
.ya21_c00000{bottom:193.936000pt;}
.y11ac_c00000{bottom:194.040000pt;}
.y3da_c00000{bottom:194.128000pt;}
.yf5d_c00000{bottom:194.161333pt;}
.ye42_c00000{bottom:194.349333pt;}
.ya91_c00000{bottom:194.422667pt;}
.y708_c00000{bottom:194.437333pt;}
.yf40_c00000{bottom:194.452000pt;}
.y1541_c00000{bottom:194.474667pt;}
.y41f_c00000{bottom:194.533333pt;}
.y4d4_c00000{bottom:194.606667pt;}
.y61f_c00000{bottom:194.641333pt;}
.ye4b_c00000{bottom:194.748000pt;}
.y185_c00000{bottom:194.889333pt;}
.y1913_c00000{bottom:194.909333pt;}
.y8ce_c00000{bottom:195.140000pt;}
.y170b_c00000{bottom:195.148000pt;}
.y10cc_c00000{bottom:195.462667pt;}
.yc54_c00000{bottom:195.464000pt;}
.y129c_c00000{bottom:195.626667pt;}
.yd10_c00000{bottom:195.648000pt;}
.y146a_c00000{bottom:195.708000pt;}
.y939_c00000{bottom:195.765333pt;}
.ydf8_c00000{bottom:195.832000pt;}
.y1cc_c00000{bottom:195.861333pt;}
.y6d1_c00000{bottom:195.876000pt;}
.y559_c00000{bottom:195.929333pt;}
.y169f_c00000{bottom:195.936000pt;}
.y548_c00000{bottom:196.065333pt;}
.y11ff_c00000{bottom:196.134667pt;}
.y1889_c00000{bottom:196.320000pt;}
.ye68_c00000{bottom:196.437333pt;}
.y1387_c00000{bottom:196.496000pt;}
.y601_c00000{bottom:196.504000pt;}
.yc9f_c00000{bottom:196.513333pt;}
.y1090_c00000{bottom:196.577333pt;}
.yf36_c00000{bottom:196.858667pt;}
.yae0_c00000{bottom:196.888000pt;}
.yafd_c00000{bottom:196.902667pt;}
.ydb0_c00000{bottom:197.000000pt;}
.yd62_c00000{bottom:197.042667pt;}
.y3b0_c00000{bottom:197.137333pt;}
.y12f7_c00000{bottom:197.489333pt;}
.y1403_c00000{bottom:197.529333pt;}
.y1892_c00000{bottom:197.648000pt;}
.y1080_c00000{bottom:197.737333pt;}
.y101f_c00000{bottom:197.745333pt;}
.yefd_c00000{bottom:197.810667pt;}
.yc4a_c00000{bottom:197.817333pt;}
.y1540_c00000{bottom:197.832000pt;}
.y2fa_c00000{bottom:197.906667pt;}
.y71f_c00000{bottom:197.921333pt;}
.yea9_c00000{bottom:198.025333pt;}
.y8f7_c00000{bottom:198.040000pt;}
.y100f_c00000{bottom:198.120000pt;}
.y11f5_c00000{bottom:198.154667pt;}
.y37a_c00000{bottom:198.208000pt;}
.y1327_c00000{bottom:198.326667pt;}
.y6e0_c00000{bottom:198.430667pt;}
.y1859_c00000{bottom:198.577333pt;}
.yfc4_c00000{bottom:198.592000pt;}
.y11aa_c00000{bottom:198.618667pt;}
.y1105_c00000{bottom:198.914667pt;}
.y3d9_c00000{bottom:198.948000pt;}
.y1948_c00000{bottom:198.965333pt;}
.y771_c00000{bottom:199.140000pt;}
.ye41_c00000{bottom:199.169333pt;}
.ya90_c00000{bottom:199.242667pt;}
.y707_c00000{bottom:199.258667pt;}
.y1351_c00000{bottom:199.270667pt;}
.y1556_c00000{bottom:199.273333pt;}
.yf8a_c00000{bottom:199.352000pt;}
.yb41_c00000{bottom:199.360000pt;}
.y786_c00000{bottom:199.433333pt;}
.y20d_c00000{bottom:199.461333pt;}
.y833_c00000{bottom:199.462667pt;}
.y173d_c00000{bottom:199.498667pt;}
.ye73_c00000{bottom:199.568000pt;}
.y1ea_c00000{bottom:199.582667pt;}
.y1631_c00000{bottom:199.618667pt;}
.y1525_c00000{bottom:199.648000pt;}
.y947_c00000{bottom:199.654667pt;}
.y17c2_c00000{bottom:199.744000pt;}
.y1371_c00000{bottom:199.774667pt;}
.y1516_c00000{bottom:199.840000pt;}
.y105d_c00000{bottom:199.861333pt;}
.yb62_c00000{bottom:199.957333pt;}
.yda5_c00000{bottom:199.998667pt;}
.yd2c_c00000{bottom:200.053333pt;}
.y7c9_c00000{bottom:200.112000pt;}
.y1904_c00000{bottom:200.120000pt;}
.y35c_c00000{bottom:200.338667pt;}
.yc72_c00000{bottom:200.349333pt;}
.ybfd_c00000{bottom:200.382667pt;}
.y1825_c00000{bottom:200.424000pt;}
.y253_c00000{bottom:200.577333pt;}
.y149f_c00000{bottom:200.718667pt;}
.y1760_c00000{bottom:200.744000pt;}
.y547_c00000{bottom:200.886667pt;}
.y148c_c00000{bottom:200.892000pt;}
.y149_c00000{bottom:200.908000pt;}
.y2de_c00000{bottom:200.938667pt;}
.yd1d_c00000{bottom:200.990667pt;}
.yecc_c00000{bottom:201.086667pt;}
.y48_c00000{bottom:201.130667pt;}
.y1743_c00000{bottom:201.168000pt;}
.y1549_c00000{bottom:201.182667pt;}
.ya4b_c00000{bottom:201.224000pt;}
.y92_c00000{bottom:201.241333pt;}
.y86e_c00000{bottom:201.301333pt;}
.yd85_c00000{bottom:201.381333pt;}
.y70e_c00000{bottom:201.692000pt;}
.ya64_c00000{bottom:201.908000pt;}
.y13ba_c00000{bottom:202.090667pt;}
.y4e1_c00000{bottom:202.097333pt;}
.y1650_c00000{bottom:202.201333pt;}
.yc23_c00000{bottom:202.222667pt;}
.ydec_c00000{bottom:202.310667pt;}
.y18a5_c00000{bottom:202.312000pt;}
.y1402_c00000{bottom:202.350667pt;}
.y227_c00000{bottom:202.370667pt;}
.y691_c00000{bottom:202.393333pt;}
.y973_c00000{bottom:202.414667pt;}
.y31b_c00000{bottom:202.429333pt;}
.y161d_c00000{bottom:202.452000pt;}
.y56a_c00000{bottom:202.466667pt;}
.y26e_c00000{bottom:202.557333pt;}
.y23c_c00000{bottom:202.574667pt;}
.y116e_c00000{bottom:202.769333pt;}
.ya79_c00000{bottom:202.785333pt;}
.y81a_c00000{bottom:202.836000pt;}
.y16c0_c00000{bottom:202.981333pt;}
.y379_c00000{bottom:203.028000pt;}
.ya34_c00000{bottom:203.130667pt;}
.y1326_c00000{bottom:203.146667pt;}
.y1189_c00000{bottom:203.196000pt;}
.y6df_c00000{bottom:203.250667pt;}
.yfa8_c00000{bottom:203.525333pt;}
.yaa3_c00000{bottom:203.528000pt;}
.y10c1_c00000{bottom:203.625333pt;}
.yce9_c00000{bottom:203.634667pt;}
.y158e_c00000{bottom:203.736000pt;}
.ybaa_c00000{bottom:203.774667pt;}
.y102d_c00000{bottom:203.824000pt;}
.yf06_c00000{bottom:203.840000pt;}
.y167f_c00000{bottom:203.854667pt;}
.y47c_c00000{bottom:204.097333pt;}
.y10b2_c00000{bottom:204.105333pt;}
.y8db_c00000{bottom:204.112000pt;}
.y4b6_c00000{bottom:204.452000pt;}
.y1524_c00000{bottom:204.468000pt;}
.y38a_c00000{bottom:204.540000pt;}
.y412_c00000{bottom:204.554667pt;}
.y849_c00000{bottom:204.578667pt;}
.ye7e_c00000{bottom:204.674667pt;}
.y105c_c00000{bottom:204.682667pt;}
.y1b8_c00000{bottom:204.710667pt;}
.y1452_c00000{bottom:204.784000pt;}
.y1597_c00000{bottom:204.874667pt;}
.y8af_c00000{bottom:205.064000pt;}
.y35b_c00000{bottom:205.158667pt;}
.y7b2_c00000{bottom:205.189333pt;}
.y28b_c00000{bottom:205.218667pt;}
.yb2_c00000{bottom:205.634667pt;}
.y166_c00000{bottom:205.876000pt;}
.y595_c00000{bottom:205.884000pt;}
.y6f6_c00000{bottom:205.906667pt;}
.y13cb_c00000{bottom:205.994667pt;}
.y160b_c00000{bottom:206.002667pt;}
.yb0c_c00000{bottom:206.097333pt;}
.y11ca_c00000{bottom:206.100000pt;}
.y86d_c00000{bottom:206.121333pt;}
.y1249_c00000{bottom:206.217333pt;}
.yfe4_c00000{bottom:206.236000pt;}
.yf28_c00000{bottom:206.241333pt;}
.y1818_c00000{bottom:206.249333pt;}
.y1574_c00000{bottom:206.262667pt;}
.ya20_c00000{bottom:206.480000pt;}
.yf2_c00000{bottom:206.617333pt;}
.y129b_c00000{bottom:206.745333pt;}
.y558_c00000{bottom:207.049333pt;}
.y65d_c00000{bottom:207.080000pt;}
.y9d8_c00000{bottom:207.089333pt;}
.ydcf_c00000{bottom:207.093333pt;}
.y18a4_c00000{bottom:207.132000pt;}
.y462_c00000{bottom:207.212000pt;}
.y690_c00000{bottom:207.213333pt;}
.y1638_c00000{bottom:207.236000pt;}
.y1a5_c00000{bottom:207.249333pt;}
.y31a_c00000{bottom:207.250667pt;}
.y1245_c00000{bottom:207.330667pt;}
.yb47_c00000{bottom:207.332000pt;}
.y95a_c00000{bottom:207.425333pt;}
.y16ce_c00000{bottom:207.545333pt;}
.y819_c00000{bottom:207.656000pt;}
.y5c1_c00000{bottom:207.668000pt;}
.y1659_c00000{bottom:207.789333pt;}
.y335_c00000{bottom:207.802667pt;}
.y904_c00000{bottom:207.838667pt;}
.y459_c00000{bottom:207.884000pt;}
.y1677_c00000{bottom:207.920000pt;}
.yb2d_c00000{bottom:208.218667pt;}
.y13ad_c00000{bottom:208.222667pt;}
.y18d5_c00000{bottom:208.316000pt;}
.y7ba_c00000{bottom:208.326667pt;}
.yd08_c00000{bottom:208.408000pt;}
.y52c_c00000{bottom:208.429333pt;}
.y127c_c00000{bottom:208.452000pt;}
.yec7_c00000{bottom:208.489333pt;}
.y313_c00000{bottom:208.525333pt;}
.yd6_c00000{bottom:208.554667pt;}
.yab2_c00000{bottom:208.572000pt;}
.ya84_c00000{bottom:208.660000pt;}
.y758_c00000{bottom:208.674667pt;}
.y58e_c00000{bottom:208.794667pt;}
.y12b7_c00000{bottom:208.852000pt;}
.y17b8_c00000{bottom:208.984000pt;}
.ycc9_c00000{bottom:209.037333pt;}
.y50b_c00000{bottom:209.130667pt;}
.y16ee_c00000{bottom:209.145333pt;}
.y895_c00000{bottom:209.193333pt;}
.y7a6_c00000{bottom:209.264000pt;}
.y15d4_c00000{bottom:209.317333pt;}
.y15ac_c00000{bottom:209.366667pt;}
.y1217_c00000{bottom:209.404000pt;}
.y1b7_c00000{bottom:209.530667pt;}
.y10d_c00000{bottom:209.537333pt;}
.ycaa_c00000{bottom:209.550667pt;}
.y141d_c00000{bottom:209.581333pt;}
.y8ae_c00000{bottom:209.885333pt;}
.y7b1_c00000{bottom:210.010667pt;}
.y10ee_c00000{bottom:210.224000pt;}
.y993_c00000{bottom:210.280000pt;}
.y101e_c00000{bottom:210.289333pt;}
.ye2e_c00000{bottom:210.377333pt;}
.y1555_c00000{bottom:210.392000pt;}
.y153f_c00000{bottom:210.414667pt;}
.y41e_c00000{bottom:210.473333pt;}
.y1471_c00000{bottom:210.502667pt;}
.y130_c00000{bottom:210.520000pt;}
.y20c_c00000{bottom:210.581333pt;}
.ye72_c00000{bottom:210.688000pt;}
.y737_c00000{bottom:210.746667pt;}
.y184_c00000{bottom:210.830667pt;}
.yf78_c00000{bottom:210.972000pt;}
.yd2b_c00000{bottom:211.173333pt;}
.y428_c00000{bottom:211.189333pt;}
.ya1f_c00000{bottom:211.301333pt;}
.y16f6_c00000{bottom:211.309333pt;}
.y14b5_c00000{bottom:211.314667pt;}
.y9b3_c00000{bottom:211.414667pt;}
.y3d8_c00000{bottom:211.492000pt;}
.y938_c00000{bottom:211.706667pt;}
.ye40_c00000{bottom:211.713333pt;}
.ya8f_c00000{bottom:211.788000pt;}
.y1cb_c00000{bottom:211.802667pt;}
.y16c3_c00000{bottom:211.817333pt;}
.y801_c00000{bottom:212.005333pt;}
.y1a4_c00000{bottom:212.069333pt;}
.y1801_c00000{bottom:212.137333pt;}
.y1888_c00000{bottom:212.260000pt;}
.y863_c00000{bottom:212.274667pt;}
.y128e_c00000{bottom:212.289333pt;}
.y1386_c00000{bottom:212.437333pt;}
.y600_c00000{bottom:212.444000pt;}
.y170a_c00000{bottom:212.512000pt;}
.y403_c00000{bottom:212.620000pt;}
.ya0c_c00000{bottom:212.645333pt;}
.y903_c00000{bottom:212.660000pt;}
.y4fa_c00000{bottom:212.732000pt;}
.yf35_c00000{bottom:212.798667pt;}
.y104b_c00000{bottom:212.878667pt;}
.y111a_c00000{bottom:212.896000pt;}
.ya63_c00000{bottom:213.026667pt;}
.yd4a_c00000{bottom:213.340000pt;}
.y435_c00000{bottom:213.404000pt;}
.ydeb_c00000{bottom:213.430667pt;}
.y1302_c00000{bottom:213.498667pt;}
.yb9f_c00000{bottom:213.521333pt;}
.y6e_c00000{bottom:213.824000pt;}
.y6c3_c00000{bottom:213.846667pt;}
.ya78_c00000{bottom:213.905333pt;}
.y1586_c00000{bottom:213.950667pt;}
.y18e6_c00000{bottom:214.170667pt;}
.y1265_c00000{bottom:214.180000pt;}
.ya33_c00000{bottom:214.250667pt;}
.y150c_c00000{bottom:214.269333pt;}
.y1145_c00000{bottom:214.388000pt;}
.y13f4_c00000{bottom:214.444000pt;}
.y13a7_c00000{bottom:214.509333pt;}
.ybca_c00000{bottom:214.637333pt;}
.y17a6_c00000{bottom:214.948000pt;}
.y77c_c00000{bottom:214.960000pt;}
.y1783_c00000{bottom:214.977333pt;}
.y770_c00000{bottom:215.080000pt;}
.y1255_c00000{bottom:215.086667pt;}
.y622_c00000{bottom:215.189333pt;}
.yf3f_c00000{bottom:215.213333pt;}
.yf89_c00000{bottom:215.293333pt;}
.y785_c00000{bottom:215.373333pt;}
.y2bf_c00000{bottom:215.402667pt;}
.ye4a_c00000{bottom:215.508000pt;}
.y1630_c00000{bottom:215.558667pt;}
.y130a_c00000{bottom:215.594667pt;}
.y946_c00000{bottom:215.596000pt;}
.y848_c00000{bottom:215.698667pt;}
.y1370_c00000{bottom:215.714667pt;}
.y17f5_c00000{bottom:215.745333pt;}
.yb82_c00000{bottom:215.793333pt;}
.yb61_c00000{bottom:215.897333pt;}
.y1596_c00000{bottom:215.993333pt;}
.y1230_c00000{bottom:216.246667pt;}
.y14f7_c00000{bottom:216.289333pt;}
.y3d7_c00000{bottom:216.312000pt;}
.y1878_c00000{bottom:216.400000pt;}
.yd0f_c00000{bottom:216.408000pt;}
.y756_c00000{bottom:216.413333pt;}
.y9ef_c00000{bottom:216.460000pt;}
.y5a8_c00000{bottom:216.502667pt;}
.y9f3_c00000{bottom:216.517333pt;}
.y937_c00000{bottom:216.526667pt;}
.ydf7_c00000{bottom:216.593333pt;}
.y1f3_c00000{bottom:216.622667pt;}
.y6d0_c00000{bottom:216.637333pt;}
.y1430_c00000{bottom:216.826667pt;}
.ycd_c00000{bottom:216.849333pt;}
.yd1c_c00000{bottom:216.930667pt;}
.y1523_c00000{bottom:217.012000pt;}
.y6f5_c00000{bottom:217.026667pt;}
.y105b_c00000{bottom:217.226667pt;}
.y89c_c00000{bottom:217.241333pt;}
.y24_c00000{bottom:217.304800pt;}
.yd84_c00000{bottom:217.322667pt;}
.y1866_c00000{bottom:217.373333pt;}
.y796_c00000{bottom:217.381333pt;}
.yeee_c00000{bottom:217.536000pt;}
.y1009_c00000{bottom:217.537333pt;}
.yf34_c00000{bottom:217.618667pt;}
.y35a_c00000{bottom:217.702667pt;}
.y67b_c00000{bottom:217.709333pt;}
.y6a4_c00000{bottom:217.824000pt;}
.ya62_c00000{bottom:217.848000pt;}
.y3af_c00000{bottom:217.897333pt;}
.y13b9_c00000{bottom:218.030667pt;}
.yf5c_c00000{bottom:218.064000pt;}
.y164f_c00000{bottom:218.141333pt;}
.y12f6_c00000{bottom:218.250667pt;}
.y226_c00000{bottom:218.310667pt;}
.y972_c00000{bottom:218.354667pt;}
.y161c_c00000{bottom:218.392000pt;}
.y569_c00000{bottom:218.406667pt;}
.y1891_c00000{bottom:218.408000pt;}
.y4d3_c00000{bottom:218.509333pt;}
.y16cd_c00000{bottom:218.665333pt;}
.ya77_c00000{bottom:218.725333pt;}
.y8cd_c00000{bottom:218.924000pt;}
.ya32_c00000{bottom:219.072000pt;}
.yc53_c00000{bottom:219.366667pt;}
.y1469_c00000{bottom:219.492000pt;}
.y10c0_c00000{bottom:219.565333pt;}
.y12da_c00000{bottom:219.594667pt;}
.y1104_c00000{bottom:219.674667pt;}
.y158d_c00000{bottom:219.676000pt;}
.y1401_c00000{bottom:219.714667pt;}
.y102c_c00000{bottom:219.765333pt;}
.yb55_c00000{bottom:219.780000pt;}
.y169e_c00000{bottom:219.838667pt;}
.y11fe_c00000{bottom:220.037333pt;}
.y17b7_c00000{bottom:220.104000pt;}
.y784_c00000{bottom:220.194667pt;}
.y945_c00000{bottom:220.416000pt;}
.y108f_c00000{bottom:220.480000pt;}
.y17c1_c00000{bottom:220.504000pt;}
.y847_c00000{bottom:220.518667pt;}
.y1515_c00000{bottom:220.600000pt;}
.y1135_c00000{bottom:220.645333pt;}
.yb60_c00000{bottom:220.718667pt;}
.yafc_c00000{bottom:220.805333pt;}
.ydaf_c00000{bottom:220.902667pt;}
.yd61_c00000{bottom:220.945333pt;}
.y28a_c00000{bottom:221.158667pt;}
.y1609_c00000{bottom:221.633333pt;}
.y107f_c00000{bottom:221.640000pt;}
.yefc_c00000{bottom:221.713333pt;}
.yc49_c00000{bottom:221.720000pt;}
.yd1b_c00000{bottom:221.752000pt;}
.y2f9_c00000{bottom:221.809333pt;}
.y71e_c00000{bottom:221.824000pt;}
.y6f4_c00000{bottom:221.848000pt;}
.y1742_c00000{bottom:221.928000pt;}
.y1548_c00000{bottom:221.944000pt;}
.y100e_c00000{bottom:222.022667pt;}
.y105a_c00000{bottom:222.046667pt;}
.y11f4_c00000{bottom:222.057333pt;}
.y89b_c00000{bottom:222.061333pt;}
.y1b6_c00000{bottom:222.074667pt;}
.y1858_c00000{bottom:222.480000pt;}
.y11a9_c00000{bottom:222.522667pt;}
.y7b0_c00000{bottom:222.554667pt;}
.y129a_c00000{bottom:222.686667pt;}
.y13b8_c00000{bottom:222.850667pt;}
.y1947_c00000{bottom:222.869333pt;}
.yc91_c00000{bottom:222.892000pt;}
.y557_c00000{bottom:222.989333pt;}
.yc41_c00000{bottom:223.060000pt;}
.y1350_c00000{bottom:223.174667pt;}
.y971_c00000{bottom:223.176000pt;}
.yb40_c00000{bottom:223.262667pt;}
.yb46_c00000{bottom:223.272000pt;}
.y1e9_c00000{bottom:223.366667pt;}
.y173c_c00000{bottom:223.401333pt;}
.y86c_c00000{bottom:223.485333pt;}
.yad1_c00000{bottom:223.488000pt;}
.y1709_c00000{bottom:223.632000pt;}
.ya1e_c00000{bottom:223.845333pt;}
.y1676_c00000{bottom:223.860000pt;}
.y4ed_c00000{bottom:223.874667pt;}
.yda4_c00000{bottom:223.901333pt;}
.y7c8_c00000{bottom:224.016000pt;}
.y14cf_c00000{bottom:224.054667pt;}
.yc71_c00000{bottom:224.253333pt;}
.y546_c00000{bottom:224.256000pt;}
.ybfc_c00000{bottom:224.286667pt;}
.y1824_c00000{bottom:224.326667pt;}
.y1874_c00000{bottom:224.353333pt;}
.y4a0_c00000{bottom:224.382667pt;}
.y10bf_c00000{bottom:224.386667pt;}
.yba9_c00000{bottom:224.458667pt;}
.ya18_c00000{bottom:224.465333pt;}
.y252_c00000{bottom:224.480000pt;}
.ya83_c00000{bottom:224.600000pt;}
.y1a3_c00000{bottom:224.613333pt;}
.ybdd_c00000{bottom:224.634667pt;}
.y175f_c00000{bottom:224.646667pt;}
.y148b_c00000{bottom:224.796000pt;}
.y148_c00000{bottom:224.812000pt;}
.y17b6_c00000{bottom:224.925333pt;}
.y47_c00000{bottom:225.033333pt;}
.y1585_c00000{bottom:225.070667pt;}
.y16ed_c00000{bottom:225.085333pt;}
.ya4a_c00000{bottom:225.126667pt;}
.y91_c00000{bottom:225.145333pt;}
.y7a5_c00000{bottom:225.204000pt;}
.y15ab_c00000{bottom:225.306667pt;}
.yadf_c00000{bottom:225.492000pt;}
.y70d_c00000{bottom:225.594667pt;}
.y1912_c00000{bottom:225.676000pt;}
.y4e0_c00000{bottom:226.000000pt;}
.y5dd_c00000{bottom:226.001333pt;}
.yc22_c00000{bottom:226.126667pt;}
.y101d_c00000{bottom:226.229333pt;}
.ye2d_c00000{bottom:226.317333pt;}
.yf3e_c00000{bottom:226.333333pt;}
.y153e_c00000{bottom:226.354667pt;}
.y26d_c00000{bottom:226.460000pt;}
.y23b_c00000{bottom:226.477333pt;}
.y63e_c00000{bottom:226.521333pt;}
.y378_c00000{bottom:226.602667pt;}
.ye49_c00000{bottom:226.628000pt;}
.y116d_c00000{bottom:226.672000pt;}
.y183_c00000{bottom:226.770667pt;}
.y16bf_c00000{bottom:226.885333pt;}
.y1188_c00000{bottom:227.100000pt;}
.yd2a_c00000{bottom:227.113333pt;}
.yfa7_c00000{bottom:227.429333pt;}
.yaa2_c00000{bottom:227.432000pt;}
.y1299_c00000{bottom:227.506667pt;}
.yd0e_c00000{bottom:227.528000pt;}
.yce8_c00000{bottom:227.537333pt;}
.ye3f_c00000{bottom:227.653333pt;}
.y18dc_c00000{bottom:227.668000pt;}
.ydf6_c00000{bottom:227.713333pt;}
.y29a_c00000{bottom:227.742667pt;}
.y556_c00000{bottom:227.810667pt;}
.y1168_c00000{bottom:227.945333pt;}
.y47b_c00000{bottom:228.000000pt;}
.y10b1_c00000{bottom:228.008000pt;}
.y8da_c00000{bottom:228.014667pt;}
.y913_c00000{bottom:228.016000pt;}
.y4b5_c00000{bottom:228.354667pt;}
.y1385_c00000{bottom:228.377333pt;}
.y5ff_c00000{bottom:228.384000pt;}
.y411_c00000{bottom:228.458667pt;}
.y334_c00000{bottom:228.562667pt;}
.yd35_c00000{bottom:228.584000pt;}
.ya0b_c00000{bottom:228.585333pt;}
.y1451_c00000{bottom:228.686667pt;}
.y3d6_c00000{bottom:228.856000pt;}
.y142f_c00000{bottom:229.370667pt;}
.y70c_c00000{bottom:229.624000pt;}
.y165_c00000{bottom:229.778667pt;}
.y594_c00000{bottom:229.786667pt;}
.y50a_c00000{bottom:229.890667pt;}
.y13ca_c00000{bottom:229.897333pt;}
.yb0b_c00000{bottom:230.000000pt;}
.y11c9_c00000{bottom:230.002667pt;}
.y7a4_c00000{bottom:230.024000pt;}
.y1264_c00000{bottom:230.120000pt;}
.y15aa_c00000{bottom:230.128000pt;}
.yfe3_c00000{bottom:230.138667pt;}
.yf27_c00000{bottom:230.144000pt;}
.y1817_c00000{bottom:230.152000pt;}
.y1573_c00000{bottom:230.165333pt;}
.yf1_c00000{bottom:230.520000pt;}
.y802_c00000{bottom:230.878667pt;}
.y65c_c00000{bottom:230.982667pt;}
.ydce_c00000{bottom:230.996000pt;}
.y101c_c00000{bottom:231.050667pt;}
.y461_c00000{bottom:231.114667pt;}
.ye2c_c00000{bottom:231.138667pt;}
.yf3d_c00000{bottom:231.153333pt;}
.yf88_c00000{bottom:231.233333pt;}
.y41d_c00000{bottom:231.234667pt;}
.ya31_c00000{bottom:231.262667pt;}
.y959_c00000{bottom:231.329333pt;}
.y20b_c00000{bottom:231.342667pt;}
.y16e6_c00000{bottom:231.448000pt;}
.y162f_c00000{bottom:231.498667pt;}
.y5c0_c00000{bottom:231.572000pt;}
.y458_c00000{bottom:231.786667pt;}
.yd29_c00000{bottom:231.934667pt;}
.y1847_c00000{bottom:232.082667pt;}
.yb2c_c00000{bottom:232.121333pt;}
.y13ac_c00000{bottom:232.125333pt;}
.y18d4_c00000{bottom:232.218667pt;}
.y7b9_c00000{bottom:232.229333pt;}
.yd07_c00000{bottom:232.310667pt;}
.y52b_c00000{bottom:232.332000pt;}
.y127b_c00000{bottom:232.354667pt;}
.yec6_c00000{bottom:232.392000pt;}
.y68f_c00000{bottom:232.421333pt;}
.y312_c00000{bottom:232.428000pt;}
.yd5_c00000{bottom:232.457333pt;}
.yab1_c00000{bottom:232.474667pt;}
.ya8e_c00000{bottom:232.548000pt;}
.y1ca_c00000{bottom:232.562667pt;}
.y16c2_c00000{bottom:232.577333pt;}
.y12b6_c00000{bottom:232.634667pt;}
.y58d_c00000{bottom:232.697333pt;}
.y783_c00000{bottom:232.738667pt;}
.y800_c00000{bottom:232.766667pt;}
.y818_c00000{bottom:232.864000pt;}
.ycc8_c00000{bottom:232.940000pt;}
.y1522_c00000{bottom:232.952000pt;}
.y1887_c00000{bottom:233.020000pt;}
.y1741_c00000{bottom:233.048000pt;}
.y15d3_c00000{bottom:233.220000pt;}
.yd83_c00000{bottom:233.262667pt;}
.y1216_c00000{bottom:233.306667pt;}
.y10c_c00000{bottom:233.440000pt;}
.yca9_c00000{bottom:233.454667pt;}
.y141c_c00000{bottom:233.484000pt;}
.y359_c00000{bottom:233.642667pt;}
.y12d6_c00000{bottom:233.653333pt;}
.y936_c00000{bottom:233.890667pt;}
.y164e_c00000{bottom:234.081333pt;}
.y10ed_c00000{bottom:234.126667pt;}
.y992_c00000{bottom:234.184000pt;}
.ydea_c00000{bottom:234.190667pt;}
.yd1a_c00000{bottom:234.296000pt;}
.y161b_c00000{bottom:234.332000pt;}
.y568_c00000{bottom:234.346667pt;}
.y1059_c00000{bottom:234.590667pt;}
.y736_c00000{bottom:234.649333pt;}
.yf77_c00000{bottom:234.876000pt;}
.y23_c00000{bottom:235.060160pt;}
.y8ad_c00000{bottom:235.092000pt;}
.y14b4_c00000{bottom:235.218667pt;}
.y9b2_c00000{bottom:235.317333pt;}
.y13b7_c00000{bottom:235.394667pt;}
.y158c_c00000{bottom:235.616000pt;}
.y102b_c00000{bottom:235.705333pt;}
.ya82_c00000{bottom:235.720000pt;}
.y149e_c00000{bottom:236.058667pt;}
.y128d_c00000{bottom:236.192000pt;}
.y162e_c00000{bottom:236.318667pt;}
.y17c0_c00000{bottom:236.444000pt;}
.y402_c00000{bottom:236.524000pt;}
.y1514_c00000{bottom:236.540000pt;}
.y4f9_c00000{bottom:236.634667pt;}
.ye2b_c00000{bottom:236.684000pt;}
.y1595_c00000{bottom:236.754667pt;}
.y104a_c00000{bottom:236.781333pt;}
.y1119_c00000{bottom:236.798667pt;}
.y10be_c00000{bottom:236.930667pt;}
.y289_c00000{bottom:237.098667pt;}
.yd49_c00000{bottom:237.242667pt;}
.y434_c00000{bottom:237.306667pt;}
.y1301_c00000{bottom:237.401333pt;}
.yb9e_c00000{bottom:237.424000pt;}
.y782_c00000{bottom:237.558667pt;}
.y6d_c00000{bottom:237.726667pt;}
.y6c2_c00000{bottom:237.749333pt;}
.yb5f_c00000{bottom:238.082667pt;}
.y1144_c00000{bottom:238.172000pt;}
.y9d7_c00000{bottom:238.217333pt;}
.y13f3_c00000{bottom:238.346667pt;}
.y13a6_c00000{bottom:238.412000pt;}
.ybc9_c00000{bottom:238.540000pt;}
.y76f_c00000{bottom:238.864000pt;}
.y1254_c00000{bottom:238.989333pt;}
.y2be_c00000{bottom:239.001333pt;}
.y225_c00000{bottom:239.072000pt;}
.y621_c00000{bottom:239.092000pt;}
.y1309_c00000{bottom:239.498667pt;}
.y1708_c00000{bottom:239.572000pt;}
.y17f4_c00000{bottom:239.648000pt;}
.yb81_c00000{bottom:239.696000pt;}
.ya0a_c00000{bottom:239.705333pt;}
.y3ae_c00000{bottom:239.736000pt;}
.ya1d_c00000{bottom:239.785333pt;}
.y1675_c00000{bottom:239.801333pt;}
.y2dd_c00000{bottom:239.985333pt;}
.y122f_c00000{bottom:240.149333pt;}
.y8ab_c00000{bottom:240.166667pt;}
.y1950_c00000{bottom:240.302667pt;}
.y12f5_c00000{bottom:240.310667pt;}
.y755_c00000{bottom:240.317333pt;}
.y9ee_c00000{bottom:240.362667pt;}
.y5a7_c00000{bottom:240.405333pt;}
.y6cf_c00000{bottom:240.420000pt;}
.yb54_c00000{bottom:240.540000pt;}
.y1a2_c00000{bottom:240.553333pt;}
.ycc_c00000{bottom:240.753333pt;}
.y509_c00000{bottom:241.010667pt;}
.y902_c00000{bottom:241.144000pt;}
.y1865_c00000{bottom:241.277333pt;}
.y795_c00000{bottom:241.284000pt;}
.y1903_c00000{bottom:241.292000pt;}
.yeed_c00000{bottom:241.440000pt;}
.y67a_c00000{bottom:241.612000pt;}
.y6a3_c00000{bottom:241.726667pt;}
.y153d_c00000{bottom:242.294667pt;}
.y41c_c00000{bottom:242.354667pt;}
.y1778_c00000{bottom:242.461333pt;}
.y20a_c00000{bottom:242.462667pt;}
.y15a9_c00000{bottom:242.672000pt;}
.y182_c00000{bottom:242.710667pt;}
.y8cc_c00000{bottom:242.826667pt;}
.y1b5_c00000{bottom:242.836000pt;}
.y77b_c00000{bottom:242.893333pt;}
.y1103_c00000{bottom:242.966667pt;}
.y862_c00000{bottom:243.040000pt;}
.ya61_c00000{bottom:243.054667pt;}
.yc52_c00000{bottom:243.269333pt;}
.y7af_c00000{bottom:243.314667pt;}
.y1468_c00000{bottom:243.394667pt;}
.yd0d_c00000{bottom:243.468000pt;}
.y1400_c00000{bottom:243.498667pt;}
.ydf5_c00000{bottom:243.653333pt;}
.y299_c00000{bottom:243.682667pt;}
.y169d_c00000{bottom:243.741333pt;}
.y7ff_c00000{bottom:243.886667pt;}
.ya76_c00000{bottom:243.933333pt;}
.y11fd_c00000{bottom:243.941333pt;}
.y1886_c00000{bottom:244.140000pt;}
.y5fe_c00000{bottom:244.324000pt;}
.y1134_c00000{bottom:244.549333pt;}
.yafb_c00000{bottom:244.708000pt;}
.ydae_c00000{bottom:244.806667pt;}
.yd60_c00000{bottom:244.848000pt;}
.y18e5_c00000{bottom:244.937333pt;}
.y935_c00000{bottom:245.010667pt;}
.y1167_c00000{bottom:245.310667pt;}
.y1608_c00000{bottom:245.537333pt;}
.y107e_c00000{bottom:245.542667pt;}
.yefb_c00000{bottom:245.616000pt;}
.y944_c00000{bottom:245.624000pt;}
.y2f8_c00000{bottom:245.712000pt;}
.y71d_c00000{bottom:245.726667pt;}
.y1782_c00000{bottom:245.744000pt;}
.y1584_c00000{bottom:245.832000pt;}
.y16ec_c00000{bottom:245.846667pt;}
.y100d_c00000{bottom:245.925333pt;}
.y11f3_c00000{bottom:245.960000pt;}
.y901_c00000{bottom:245.964000pt;}
.ye67_c00000{bottom:246.196000pt;}
.y1857_c00000{bottom:246.382667pt;}
.y11a8_c00000{bottom:246.425333pt;}
.y894_c00000{bottom:246.584000pt;}
.y1946_c00000{bottom:246.772000pt;}
.yc90_c00000{bottom:246.796000pt;}
.y6f3_c00000{bottom:247.054667pt;}
.y134f_c00000{bottom:247.077333pt;}
.yb3f_c00000{bottom:247.165333pt;}
.yf87_c00000{bottom:247.173333pt;}
.y1e8_c00000{bottom:247.269333pt;}
.y61e_c00000{bottom:247.282667pt;}
.y173b_c00000{bottom:247.305333pt;}
.y7a3_c00000{bottom:247.389333pt;}
.yad0_c00000{bottom:247.390667pt;}
.y17bf_c00000{bottom:247.564000pt;}
.y1513_c00000{bottom:247.660000pt;}
.yda3_c00000{bottom:247.804000pt;}
.yea8_c00000{bottom:247.809333pt;}
.y7c7_c00000{bottom:247.918667pt;}
.y14ce_c00000{bottom:247.957333pt;}
.yc70_c00000{bottom:248.156000pt;}
.y545_c00000{bottom:248.160000pt;}
.ybfb_c00000{bottom:248.189333pt;}
.y1923_c00000{bottom:248.229333pt;}
.y1823_c00000{bottom:248.230667pt;}
.y1873_c00000{bottom:248.256000pt;}
.y49f_c00000{bottom:248.286667pt;}
.yd0c_c00000{bottom:248.289333pt;}
.yba8_c00000{bottom:248.361333pt;}
.ya17_c00000{bottom:248.369333pt;}
.y251_c00000{bottom:248.384000pt;}
.y1c9_c00000{bottom:248.502667pt;}
.ybdc_c00000{bottom:248.537333pt;}
.y175e_c00000{bottom:248.549333pt;}
.y148a_c00000{bottom:248.698667pt;}
.yd81_c00000{bottom:248.706667pt;}
.y147_c00000{bottom:248.714667pt;}
.y162d_c00000{bottom:248.862667pt;}
.y46_c00000{bottom:248.936000pt;}
.y1885_c00000{bottom:248.960000pt;}
.ya49_c00000{bottom:249.030667pt;}
.y90_c00000{bottom:249.048000pt;}
.y1384_c00000{bottom:249.137333pt;}
.yb5e_c00000{bottom:249.202667pt;}
.y17a5_c00000{bottom:249.204000pt;}
.y4d2_c00000{bottom:249.276000pt;}
.yade_c00000{bottom:249.394667pt;}
.y70b_c00000{bottom:249.497333pt;}
.y358_c00000{bottom:249.584000pt;}
.y3d5_c00000{bottom:249.617333pt;}
.y934_c00000{bottom:249.832000pt;}
.y5dc_c00000{bottom:249.904000pt;}
.y164d_c00000{bottom:250.021333pt;}
.yc21_c00000{bottom:250.029333pt;}
.y142e_c00000{bottom:250.130667pt;}
.y17b5_c00000{bottom:250.132000pt;}
.y224_c00000{bottom:250.192000pt;}
.y14f6_c00000{bottom:250.209333pt;}
.yd19_c00000{bottom:250.236000pt;}
.y161a_c00000{bottom:250.273333pt;}
.y567_c00000{bottom:250.288000pt;}
.y12f_c00000{bottom:250.362667pt;}
.y377_c00000{bottom:250.505333pt;}
.y116c_c00000{bottom:250.574667pt;}
.y16be_c00000{bottom:250.788000pt;}
.y1187_c00000{bottom:251.002667pt;}
.yfa6_c00000{bottom:251.332000pt;}
.yaa1_c00000{bottom:251.334667pt;}
.yfc3_c00000{bottom:251.380000pt;}
.yce7_c00000{bottom:251.440000pt;}
.yf05_c00000{bottom:251.660000pt;}
.y47a_c00000{bottom:251.904000pt;}
.y10b0_c00000{bottom:251.910667pt;}
.y8d9_c00000{bottom:251.918667pt;}
.ya30_c00000{bottom:252.022667pt;}
.y4b4_c00000{bottom:252.257333pt;}
.y333_c00000{bottom:252.346667pt;}
.y410_c00000{bottom:252.361333pt;}
.y1450_c00000{bottom:252.590667pt;}
.y22_c00000{bottom:252.815520pt;}
.y10bd_c00000{bottom:252.870667pt;}
.y288_c00000{bottom:253.038667pt;}
.ya8d_c00000{bottom:253.232000pt;}
.yf5b_c00000{bottom:253.328000pt;}
.y164_c00000{bottom:253.682667pt;}
.y593_c00000{bottom:253.689333pt;}
.y1521_c00000{bottom:253.713333pt;}
.y13c9_c00000{bottom:253.800000pt;}
.y1740_c00000{bottom:253.809333pt;}
.y555_c00000{bottom:253.904000pt;}
.y11c8_c00000{bottom:253.905333pt;}
.y1b4_c00000{bottom:253.954667pt;}
.yd82_c00000{bottom:254.022667pt;}
.yfe2_c00000{bottom:254.041333pt;}
.yf26_c00000{bottom:254.046667pt;}
.y1816_c00000{bottom:254.054667pt;}
.y1572_c00000{bottom:254.068000pt;}
.yf0_c00000{bottom:254.422667pt;}
.y7ae_c00000{bottom:254.434667pt;}
.y65b_c00000{bottom:254.885333pt;}
.ydcd_c00000{bottom:254.900000pt;}
.yd18_c00000{bottom:255.056000pt;}
.y1244_c00000{bottom:255.137333pt;}
.y958_c00000{bottom:255.232000pt;}
.y1058_c00000{bottom:255.352000pt;}
.y5bf_c00000{bottom:255.474667pt;}
.y1707_c00000{bottom:255.512000pt;}
.ya09_c00000{bottom:255.645333pt;}
.y457_c00000{bottom:255.690667pt;}
.y1674_c00000{bottom:255.741333pt;}
.y1846_c00000{bottom:255.985333pt;}
.yb2b_c00000{bottom:256.025333pt;}
.y13ab_c00000{bottom:256.029333pt;}
.y18d3_c00000{bottom:256.121333pt;}
.y7b8_c00000{bottom:256.132000pt;}
.y13b6_c00000{bottom:256.156000pt;}
.yd06_c00000{bottom:256.214667pt;}
.y52a_c00000{bottom:256.234667pt;}
.ye3e_c00000{bottom:256.257333pt;}
.yec5_c00000{bottom:256.294667pt;}
.y68e_c00000{bottom:256.324000pt;}
.y311_c00000{bottom:256.332000pt;}
.y706_c00000{bottom:256.346667pt;}
.yd4_c00000{bottom:256.361333pt;}
.yab0_c00000{bottom:256.377333pt;}
.y102a_c00000{bottom:256.465333pt;}
.ya81_c00000{bottom:256.480000pt;}
.y1a1_c00000{bottom:256.493333pt;}
.y12b5_c00000{bottom:256.538667pt;}
.y58c_c00000{bottom:256.600000pt;}
.yde9_c00000{bottom:256.628000pt;}
.y4df_c00000{bottom:256.766667pt;}
.ycc7_c00000{bottom:256.842667pt;}
.y1583_c00000{bottom:256.952000pt;}
.y15d2_c00000{bottom:257.122667pt;}
.y1215_c00000{bottom:257.209333pt;}
.y10b_c00000{bottom:257.342667pt;}
.y141b_c00000{bottom:257.388000pt;}
.y12d5_c00000{bottom:257.557333pt;}
.y10bc_c00000{bottom:257.690667pt;}
.y10ec_c00000{bottom:258.029333pt;}
.y991_c00000{bottom:258.086667pt;}
.y153c_c00000{bottom:258.236000pt;}
.y209_c00000{bottom:258.402667pt;}
.y735_c00000{bottom:258.553333pt;}
.y15a8_c00000{bottom:258.612000pt;}
.y181_c00000{bottom:258.650667pt;}
.yf76_c00000{bottom:258.778667pt;}
.y8ac_c00000{bottom:258.996000pt;}
.y14b3_c00000{bottom:259.121333pt;}
.y1c8_c00000{bottom:259.622667pt;}
.y7e7_c00000{bottom:259.826667pt;}
.y149d_c00000{bottom:259.961333pt;}
.y128c_c00000{bottom:260.094667pt;}
.y108e_c00000{bottom:260.324000pt;}
.y401_c00000{bottom:260.426667pt;}
.ya08_c00000{bottom:260.465333pt;}
.y4f8_c00000{bottom:260.537333pt;}
.ya1c_c00000{bottom:260.545333pt;}
.ye2a_c00000{bottom:260.586667pt;}
.y1049_c00000{bottom:260.684000pt;}
.y1118_c00000{bottom:260.701333pt;}
.yd0b_c00000{bottom:260.833333pt;}
.yd48_c00000{bottom:261.146667pt;}
.y433_c00000{bottom:261.209333pt;}
.y1300_c00000{bottom:261.304000pt;}
.yb9d_c00000{bottom:261.326667pt;}
.y6c_c00000{bottom:261.630667pt;}
.y6c1_c00000{bottom:261.652000pt;}
.y508_c00000{bottom:261.772000pt;}
.y1800_c00000{bottom:261.858667pt;}
.y1143_c00000{bottom:262.074667pt;}
.y9d6_c00000{bottom:262.120000pt;}
.y13f2_c00000{bottom:262.249333pt;}
.y13a5_c00000{bottom:262.314667pt;}
.y933_c00000{bottom:262.376000pt;}
.ybc8_c00000{bottom:262.442667pt;}
.y76e_c00000{bottom:262.766667pt;}
.yc7f_c00000{bottom:262.892000pt;}
.y2bd_c00000{bottom:262.904000pt;}
.y620_c00000{bottom:262.994667pt;}
.yf86_c00000{bottom:263.113333pt;}
.y41b_c00000{bottom:263.114667pt;}
.y171d_c00000{bottom:263.121333pt;}
.ya2f_c00000{bottom:263.142667pt;}
.y61d_c00000{bottom:263.222667pt;}
.y136f_c00000{bottom:263.401333pt;}
.y17be_c00000{bottom:263.504000pt;}
.y17f3_c00000{bottom:263.550667pt;}
.y3ad_c00000{bottom:263.640000pt;}
.y2dc_c00000{bottom:263.888000pt;}
.y4ec_c00000{bottom:264.020000pt;}
.y122e_c00000{bottom:264.052000pt;}
.y8aa_c00000{bottom:264.070667pt;}
.y12f4_c00000{bottom:264.213333pt;}
.y754_c00000{bottom:264.220000pt;}
.y9ed_c00000{bottom:264.265333pt;}
.y5a6_c00000{bottom:264.309333pt;}
.y6ce_c00000{bottom:264.324000pt;}
.ydf4_c00000{bottom:264.413333pt;}
.y298_c00000{bottom:264.442667pt;}
.y7fe_c00000{bottom:264.646667pt;}
.yb1_c00000{bottom:264.656000pt;}
.y162c_c00000{bottom:264.804000pt;}
.y1520_c00000{bottom:264.833333pt;}
.y5fd_c00000{bottom:265.085333pt;}
.y1864_c00000{bottom:265.180000pt;}
.y794_c00000{bottom:265.186667pt;}
.y1902_c00000{bottom:265.194667pt;}
.yeec_c00000{bottom:265.342667pt;}
.y679_c00000{bottom:265.514667pt;}
.y357_c00000{bottom:265.524000pt;}
.y1927_c00000{bottom:265.629333pt;}
.y23a_c00000{bottom:265.760000pt;}
.y164c_c00000{bottom:265.962667pt;}
.y1166_c00000{bottom:266.070667pt;}
.y9b1_c00000{bottom:266.082667pt;}
.y223_c00000{bottom:266.132000pt;}
.y1619_c00000{bottom:266.213333pt;}
.y566_c00000{bottom:266.228000pt;}
.y8cb_c00000{bottom:266.729333pt;}
.y1102_c00000{bottom:266.869333pt;}
.ya60_c00000{bottom:266.958667pt;}
.yc51_c00000{bottom:267.172000pt;}
.y13b5_c00000{bottom:267.276000pt;}
.y1467_c00000{bottom:267.297333pt;}
.y13ff_c00000{bottom:267.401333pt;}
.y1029_c00000{bottom:267.585333pt;}
.y169c_c00000{bottom:267.644000pt;}
.ya75_c00000{bottom:267.836000pt;}
.y11fc_c00000{bottom:267.844000pt;}
.y17bd_c00000{bottom:268.325333pt;}
.y1133_c00000{bottom:268.452000pt;}
.yafa_c00000{bottom:268.612000pt;}
.ydad_c00000{bottom:268.709333pt;}
.y287_c00000{bottom:268.980000pt;}
.y1607_c00000{bottom:269.440000pt;}
.y107d_c00000{bottom:269.445333pt;}
.y1656_c00000{bottom:269.452000pt;}
.yefa_c00000{bottom:269.518667pt;}
.y943_c00000{bottom:269.526667pt;}
.y2f7_c00000{bottom:269.614667pt;}
.y71c_c00000{bottom:269.629333pt;}
.y173f_c00000{bottom:269.749333pt;}
.y1253_c00000{bottom:269.754667pt;}
.y11f2_c00000{bottom:269.864000pt;}
.y1b3_c00000{bottom:269.896000pt;}
.ye66_c00000{bottom:270.100000pt;}
.y1856_c00000{bottom:270.285333pt;}
.y11a7_c00000{bottom:270.328000pt;}
.y7ad_c00000{bottom:270.374667pt;}
.y893_c00000{bottom:270.486667pt;}
.y21_c00000{bottom:270.570880pt;}
.y1945_c00000{bottom:270.674667pt;}
.yc8f_c00000{bottom:270.698667pt;}
.y6f2_c00000{bottom:270.958667pt;}
.y134e_c00000{bottom:270.980000pt;}
.yb3e_c00000{bottom:271.069333pt;}
.y1e7_c00000{bottom:271.172000pt;}
.y173a_c00000{bottom:271.208000pt;}
.yacf_c00000{bottom:271.293333pt;}
.y1706_c00000{bottom:271.452000pt;}
.y142d_c00000{bottom:271.585333pt;}
.y1673_c00000{bottom:271.681333pt;}
.yda2_c00000{bottom:271.706667pt;}
.yea7_c00000{bottom:271.712000pt;}
.y7c6_c00000{bottom:271.821333pt;}
.y14cd_c00000{bottom:271.860000pt;}
.yc6f_c00000{bottom:272.058667pt;}
.y544_c00000{bottom:272.062667pt;}
.ybfa_c00000{bottom:272.092000pt;}
.y13b4_c00000{bottom:272.096000pt;}
.y1822_c00000{bottom:272.133333pt;}
.yd80_c00000{bottom:272.172000pt;}
.y49e_c00000{bottom:272.189333pt;}
.yba7_c00000{bottom:272.264000pt;}
.ya16_c00000{bottom:272.272000pt;}
.y250_c00000{bottom:272.286667pt;}
.y1a0_c00000{bottom:272.434667pt;}
.ybdb_c00000{bottom:272.440000pt;}
.y175d_c00000{bottom:272.453333pt;}
.y1489_c00000{bottom:272.601333pt;}
.y146_c00000{bottom:272.617333pt;}
.y45_c00000{bottom:272.838667pt;}
.y507_c00000{bottom:272.892000pt;}
.ya48_c00000{bottom:272.933333pt;}
.y8f_c00000{bottom:272.950667pt;}
.ya07_c00000{bottom:273.009333pt;}
.yc40_c00000{bottom:273.020000pt;}
.y17a4_c00000{bottom:273.108000pt;}
.yadd_c00000{bottom:273.297333pt;}
.y3d4_c00000{bottom:273.401333pt;}
.y5db_c00000{bottom:273.806667pt;}
.yc20_c00000{bottom:273.932000pt;}
.y17b4_c00000{bottom:274.036000pt;}
.y14f5_c00000{bottom:274.113333pt;}
.y153b_c00000{bottom:274.176000pt;}
.y12e_c00000{bottom:274.266667pt;}
.y16e5_c00000{bottom:274.342667pt;}
.y376_c00000{bottom:274.408000pt;}
.y116b_c00000{bottom:274.478667pt;}
.y180_c00000{bottom:274.590667pt;}
.y1b2_c00000{bottom:274.716000pt;}
.y1186_c00000{bottom:274.905333pt;}
.y7ac_c00000{bottom:275.196000pt;}
.yfa5_c00000{bottom:275.234667pt;}
.yaa0_c00000{bottom:275.237333pt;}
.yfc2_c00000{bottom:275.282667pt;}
.ydf3_c00000{bottom:275.533333pt;}
.y1f2_c00000{bottom:275.562667pt;}
.y7e6_c00000{bottom:275.766667pt;}
.y479_c00000{bottom:275.806667pt;}
.y10af_c00000{bottom:275.813333pt;}
.y8d8_c00000{bottom:275.821333pt;}
.y4b3_c00000{bottom:276.161333pt;}
.y5fc_c00000{bottom:276.205333pt;}
.y332_c00000{bottom:276.249333pt;}
.y40f_c00000{bottom:276.264000pt;}
.y1672_c00000{bottom:276.501333pt;}
.y100c_c00000{bottom:276.692000pt;}
.yd0a_c00000{bottom:276.773333pt;}
.ya8c_c00000{bottom:277.134667pt;}
.y1165_c00000{bottom:277.190667pt;}
.yf5a_c00000{bottom:277.230667pt;}
.y163_c00000{bottom:277.585333pt;}
.y592_c00000{bottom:277.592000pt;}
.y13c8_c00000{bottom:277.702667pt;}
.y554_c00000{bottom:277.806667pt;}
.y190b_c00000{bottom:277.932000pt;}
.yfe1_c00000{bottom:277.945333pt;}
.yf25_c00000{bottom:277.949333pt;}
.y1815_c00000{bottom:277.958667pt;}
.y1571_c00000{bottom:277.970667pt;}
.y932_c00000{bottom:278.316000pt;}
.yef_c00000{bottom:278.325333pt;}
.y65a_c00000{bottom:278.789333pt;}
.ydcc_c00000{bottom:278.802667pt;}
.yf85_c00000{bottom:279.053333pt;}
.y1057_c00000{bottom:279.134667pt;}
.y208_c00000{bottom:279.162667pt;}
.y15a7_c00000{bottom:279.372000pt;}
.y5be_c00000{bottom:279.377333pt;}
.yb80_c00000{bottom:279.538667pt;}
.y456_c00000{bottom:279.593333pt;}
.y1845_c00000{bottom:279.888000pt;}
.yb2a_c00000{bottom:279.928000pt;}
.y13aa_c00000{bottom:279.932000pt;}
.y18d2_c00000{bottom:280.024000pt;}
.yd05_c00000{bottom:280.117333pt;}
.y529_c00000{bottom:280.137333pt;}
.ye3d_c00000{bottom:280.160000pt;}
.y101b_c00000{bottom:280.161333pt;}
.yec4_c00000{bottom:280.197333pt;}
.y68d_c00000{bottom:280.226667pt;}
.y310_c00000{bottom:280.234667pt;}
.y705_c00000{bottom:280.249333pt;}
.yd3_c00000{bottom:280.264000pt;}
.yaaf_c00000{bottom:280.280000pt;}
.y1008_c00000{bottom:280.352000pt;}
.y1c7_c00000{bottom:280.384000pt;}
.y12b4_c00000{bottom:280.441333pt;}
.y58b_c00000{bottom:280.504000pt;}
.yde8_c00000{bottom:280.530667pt;}
.y7e5_c00000{bottom:280.586667pt;}
.y91c_c00000{bottom:280.588000pt;}
.y817_c00000{bottom:280.669333pt;}
.y162b_c00000{bottom:280.744000pt;}
.y151f_c00000{bottom:280.773333pt;}
.y15d1_c00000{bottom:281.025333pt;}
.y10a_c00000{bottom:281.245333pt;}
.y141a_c00000{bottom:281.290667pt;}
.yd34_c00000{bottom:281.341333pt;}
.y12d4_c00000{bottom:281.460000pt;}
.y356_c00000{bottom:281.464000pt;}
.yd09_c00000{bottom:281.593333pt;}
.y164b_c00000{bottom:281.902667pt;}
.y10eb_c00000{bottom:281.933333pt;}
.y990_c00000{bottom:281.989333pt;}
.y222_c00000{bottom:282.072000pt;}
.y1618_c00000{bottom:282.153333pt;}
.y565_c00000{bottom:282.168000pt;}
.y734_c00000{bottom:282.456000pt;}
.yf75_c00000{bottom:282.681333pt;}
.y6a2_c00000{bottom:282.898667pt;}
.y14b2_c00000{bottom:283.024000pt;}
.y144f_c00000{bottom:283.356000pt;}
.yd5f_c00000{bottom:283.581333pt;}
.y149c_c00000{bottom:283.864000pt;}
.y128b_c00000{bottom:283.998667pt;}
.y108d_c00000{bottom:284.226667pt;}
.y400_c00000{bottom:284.329333pt;}
.y4f7_c00000{bottom:284.441333pt;}
.ye29_c00000{bottom:284.490667pt;}
.y1048_c00000{bottom:284.586667pt;}
.y286_c00000{bottom:284.920000pt;}
.yd47_c00000{bottom:285.049333pt;}
.y15d0_c00000{bottom:285.054667pt;}
.y15e9_c00000{bottom:285.074667pt;}
.y432_c00000{bottom:285.112000pt;}
.yb9c_c00000{bottom:285.230667pt;}
.y6b_c00000{bottom:285.533333pt;}
.y6c0_c00000{bottom:285.554667pt;}
.y151e_c00000{bottom:285.593333pt;}
.y17ff_c00000{bottom:285.761333pt;}
.y1243_c00000{bottom:285.904000pt;}
.y18c2_c00000{bottom:285.950667pt;}
.y1142_c00000{bottom:285.977333pt;}
.y9d5_c00000{bottom:286.022667pt;}
.y13f1_c00000{bottom:286.152000pt;}
.y13a4_c00000{bottom:286.218667pt;}
.y355_c00000{bottom:286.284000pt;}
.y7fd_c00000{bottom:286.341333pt;}
.ybc7_c00000{bottom:286.345333pt;}
.y76d_c00000{bottom:286.669333pt;}
.yc7e_c00000{bottom:286.794667pt;}
.y2bc_c00000{bottom:286.806667pt;}
.y3f1_c00000{bottom:286.898667pt;}
.y136e_c00000{bottom:287.304000pt;}
.y17f2_c00000{bottom:287.453333pt;}
.y3ac_c00000{bottom:287.542667pt;}
.y4eb_c00000{bottom:287.924000pt;}
.y122d_c00000{bottom:287.954667pt;}
.y8a9_c00000{bottom:287.973333pt;}
.y12f3_c00000{bottom:288.117333pt;}
.y1872_c00000{bottom:288.162667pt;}
.y20_c00000{bottom:288.166880pt;}
.y5a5_c00000{bottom:288.212000pt;}
.y6cd_c00000{bottom:288.226667pt;}
.y1028_c00000{bottom:288.346667pt;}
.y19f_c00000{bottom:288.374667pt;}
.ycb_c00000{bottom:288.558667pt;}
.ya06_c00000{bottom:288.949333pt;}
.y1863_c00000{bottom:289.082667pt;}
.y793_c00000{bottom:289.090667pt;}
.y1901_c00000{bottom:289.097333pt;}
.yeeb_c00000{bottom:289.245333pt;}
.y16bd_c00000{bottom:289.485333pt;}
.y1926_c00000{bottom:289.533333pt;}
.y239_c00000{bottom:289.664000pt;}
.y153a_c00000{bottom:290.116000pt;}
.y207_c00000{bottom:290.282667pt;}
.y11c7_c00000{bottom:290.373333pt;}
.y15a6_c00000{bottom:290.492000pt;}
.y17f_c00000{bottom:290.530667pt;}
.y8ca_c00000{bottom:290.632000pt;}
.y1101_c00000{bottom:290.772000pt;}
.ya5f_c00000{bottom:290.861333pt;}
.y13d5_c00000{bottom:291.074667pt;}
.y1466_c00000{bottom:291.201333pt;}
.y13fe_c00000{bottom:291.304000pt;}
.ydf2_c00000{bottom:291.473333pt;}
.y169b_c00000{bottom:291.548000pt;}
.ya74_c00000{bottom:291.740000pt;}
.ya2e_c00000{bottom:291.746667pt;}
.y5fb_c00000{bottom:292.145333pt;}
.y1705_c00000{bottom:292.213333pt;}
.y1132_c00000{bottom:292.354667pt;}
.yce6_c00000{bottom:292.612000pt;}
.y861_c00000{bottom:293.074667pt;}
.y1164_c00000{bottom:293.130667pt;}
.y1606_c00000{bottom:293.342667pt;}
.y107c_c00000{bottom:293.349333pt;}
.y1655_c00000{bottom:293.354667pt;}
.yef9_c00000{bottom:293.422667pt;}
.y942_c00000{bottom:293.429333pt;}
.y2f6_c00000{bottom:293.517333pt;}
.y809_c00000{bottom:293.532000pt;}
.y71b_c00000{bottom:293.533333pt;}
.ycc6_c00000{bottom:293.548000pt;}
.y506_c00000{bottom:293.652000pt;}
.y11f1_c00000{bottom:293.766667pt;}
.ya05_c00000{bottom:293.770667pt;}
.ye65_c00000{bottom:294.002667pt;}
.y1855_c00000{bottom:294.189333pt;}
.y11a6_c00000{bottom:294.230667pt;}
.y892_c00000{bottom:294.389333pt;}
.y1944_c00000{bottom:294.577333pt;}
.yc8e_c00000{bottom:294.601333pt;}
.y6f1_c00000{bottom:294.861333pt;}
.y134d_c00000{bottom:294.882667pt;}
.yb3d_c00000{bottom:294.972000pt;}
.yf84_c00000{bottom:294.993333pt;}
.y1e6_c00000{bottom:295.074667pt;}
.y61c_c00000{bottom:295.102667pt;}
.y1739_c00000{bottom:295.110667pt;}
.yace_c00000{bottom:295.196000pt;}
.y142c_c00000{bottom:295.488000pt;}
.yda1_c00000{bottom:295.610667pt;}
.yea6_c00000{bottom:295.616000pt;}
.y7c5_c00000{bottom:295.724000pt;}
.y1781_c00000{bottom:295.736000pt;}
.y14cc_c00000{bottom:295.764000pt;}
.yc6e_c00000{bottom:295.961333pt;}
.y543_c00000{bottom:295.965333pt;}
.ybf9_c00000{bottom:295.994667pt;}
.y1821_c00000{bottom:296.036000pt;}
.yd7f_c00000{bottom:296.076000pt;}
.y49d_c00000{bottom:296.092000pt;}
.ya15_c00000{bottom:296.174667pt;}
.y24f_c00000{bottom:296.189333pt;}
.ybda_c00000{bottom:296.342667pt;}
.y175c_c00000{bottom:296.356000pt;}
.y1488_c00000{bottom:296.504000pt;}
.y145_c00000{bottom:296.520000pt;}
.y44_c00000{bottom:296.742667pt;}
.ya47_c00000{bottom:296.836000pt;}
.y8e_c00000{bottom:296.853333pt;}
.yc3f_c00000{bottom:296.922667pt;}
.y17a3_c00000{bottom:297.010667pt;}
.yadc_c00000{bottom:297.200000pt;}
.y3d3_c00000{bottom:297.304000pt;}
.ye6c_c00000{bottom:297.709333pt;}
.yc1f_c00000{bottom:297.834667pt;}
.y164a_c00000{bottom:297.842667pt;}
.y1163_c00000{bottom:297.952000pt;}
.y221_c00000{bottom:298.012000pt;}
.y14f4_c00000{bottom:298.016000pt;}
.y1617_c00000{bottom:298.093333pt;}
.y564_c00000{bottom:298.108000pt;}
.y12d_c00000{bottom:298.169333pt;}
.y116a_c00000{bottom:298.381333pt;}
.y1185_c00000{bottom:298.808000pt;}
.yfa4_c00000{bottom:299.137333pt;}
.ya9f_c00000{bottom:299.140000pt;}
.y4d1_c00000{bottom:299.153333pt;}
.yfc1_c00000{bottom:299.185333pt;}
.yaf9_c00000{bottom:299.377333pt;}
.y478_c00000{bottom:299.709333pt;}
.y10ae_c00000{bottom:299.717333pt;}
.y8d7_c00000{bottom:299.724000pt;}
.y1b1_c00000{bottom:299.924000pt;}
.y1325_c00000{bottom:300.064000pt;}
.y331_c00000{bottom:300.152000pt;}
.y40e_c00000{bottom:300.166667pt;}
.y2db_c00000{bottom:300.542667pt;}
.y285_c00000{bottom:300.860000pt;}
.y17dd_c00000{bottom:300.893333pt;}
.ya8b_c00000{bottom:301.037333pt;}
.yf59_c00000{bottom:301.133333pt;}
.y1117_c00000{bottom:301.446667pt;}
.y162_c00000{bottom:301.488000pt;}
.y6d8_c00000{bottom:301.496000pt;}
.y162a_c00000{bottom:301.504000pt;}
.y13c7_c00000{bottom:301.606667pt;}
.y63d_c00000{bottom:301.616000pt;}
.y553_c00000{bottom:301.709333pt;}
.yfe0_c00000{bottom:301.848000pt;}
.yf24_c00000{bottom:301.853333pt;}
.y1814_c00000{bottom:301.861333pt;}
.y1570_c00000{bottom:301.874667pt;}
.y12ff_c00000{bottom:302.100000pt;}
.yee_c00000{bottom:302.229333pt;}
.y659_c00000{bottom:302.692000pt;}
.ydcb_c00000{bottom:302.705333pt;}
.y1056_c00000{bottom:303.037333pt;}
.y5bd_c00000{bottom:303.280000pt;}
.y1704_c00000{bottom:303.333333pt;}
.yb7f_c00000{bottom:303.442667pt;}
.y455_c00000{bottom:303.496000pt;}
.y753_c00000{bottom:303.506667pt;}
.y9ec_c00000{bottom:303.673333pt;}
.y1844_c00000{bottom:303.792000pt;}
.yb29_c00000{bottom:303.830667pt;}
.y13a9_c00000{bottom:303.834667pt;}
.y18d1_c00000{bottom:303.928000pt;}
.yd04_c00000{bottom:304.020000pt;}
.y528_c00000{bottom:304.041333pt;}
.ye3c_c00000{bottom:304.064000pt;}
.yec3_c00000{bottom:304.101333pt;}
.y68c_c00000{bottom:304.129333pt;}
.y30f_c00000{bottom:304.137333pt;}
.y704_c00000{bottom:304.152000pt;}
.yb0_c00000{bottom:304.166667pt;}
.yaae_c00000{bottom:304.182667pt;}
.y1007_c00000{bottom:304.254667pt;}
.y19e_c00000{bottom:304.314667pt;}
.y12b3_c00000{bottom:304.344000pt;}
.y58a_c00000{bottom:304.406667pt;}
.y7e4_c00000{bottom:304.432000pt;}
.yde7_c00000{bottom:304.434667pt;}
.y816_c00000{bottom:304.573333pt;}
.y15cf_c00000{bottom:304.929333pt;}
.y678_c00000{bottom:305.056000pt;}
.y109_c00000{bottom:305.149333pt;}
.y1419_c00000{bottom:305.193333pt;}
.y12d3_c00000{bottom:305.362667pt;}
.y10ea_c00000{bottom:305.836000pt;}
.y98f_c00000{bottom:305.892000pt;}
.y1f_c00000{bottom:305.922240pt;}
.y61b_c00000{bottom:306.222667pt;}
.y733_c00000{bottom:306.358667pt;}
.y15a5_c00000{bottom:306.432000pt;}
.y17e_c00000{bottom:306.472000pt;}
.yf74_c00000{bottom:306.584000pt;}
.y4de_c00000{bottom:306.801333pt;}
.y14b1_c00000{bottom:306.926667pt;}
.ydf1_c00000{bottom:307.414667pt;}
.yd5e_c00000{bottom:307.484000pt;}
.y149b_c00000{bottom:307.766667pt;}
.y5fa_c00000{bottom:308.085333pt;}
.y108c_c00000{bottom:308.129333pt;}
.y3ff_c00000{bottom:308.232000pt;}
.y4f6_c00000{bottom:308.344000pt;}
.y1047_c00000{bottom:308.490667pt;}
.yd46_c00000{bottom:308.952000pt;}
.y15e8_c00000{bottom:308.978667pt;}
.ye07_c00000{bottom:309.014667pt;}
.y431_c00000{bottom:309.016000pt;}
.y375_c00000{bottom:309.042667pt;}
.yb9b_c00000{bottom:309.133333pt;}
.y6a_c00000{bottom:309.436000pt;}
.y6bf_c00000{bottom:309.458667pt;}
.y17fe_c00000{bottom:309.665333pt;}
.y18c1_c00000{bottom:309.853333pt;}
.y1141_c00000{bottom:309.881333pt;}
.y9d4_c00000{bottom:309.926667pt;}
.y13f0_c00000{bottom:310.056000pt;}
.y13a3_c00000{bottom:310.121333pt;}
.y7fc_c00000{bottom:310.244000pt;}
.ybc6_c00000{bottom:310.249333pt;}
.y1162_c00000{bottom:310.496000pt;}
.y76c_c00000{bottom:310.572000pt;}
.yc7d_c00000{bottom:310.698667pt;}
.y2bb_c00000{bottom:310.710667pt;}
.y3f0_c00000{bottom:310.801333pt;}
.y1539_c00000{bottom:310.876000pt;}
.yf83_c00000{bottom:310.934667pt;}
.y206_c00000{bottom:311.044000pt;}
.y136d_c00000{bottom:311.206667pt;}
.y15a4_c00000{bottom:311.253333pt;}
.y354_c00000{bottom:311.353333pt;}
.y17f1_c00000{bottom:311.356000pt;}
.y3ab_c00000{bottom:311.445333pt;}
.y4ea_c00000{bottom:311.826667pt;}
.y122c_c00000{bottom:311.858667pt;}
.y8a8_c00000{bottom:311.876000pt;}
.y1871_c00000{bottom:312.066667pt;}
.y5a4_c00000{bottom:312.114667pt;}
.y6cc_c00000{bottom:312.129333pt;}
.yca_c00000{bottom:312.461333pt;}
.y1629_c00000{bottom:312.624000pt;}
.y1862_c00000{bottom:312.985333pt;}
.y792_c00000{bottom:312.993333pt;}
.yeea_c00000{bottom:313.148000pt;}
.y16bc_c00000{bottom:313.388000pt;}
.yba6_c00000{bottom:313.436000pt;}
.y1649_c00000{bottom:313.782667pt;}
.y1616_c00000{bottom:314.033333pt;}
.y11c6_c00000{bottom:314.277333pt;}
.y8c9_c00000{bottom:314.536000pt;}
.y1100_c00000{bottom:314.674667pt;}
.ya5e_c00000{bottom:314.764000pt;}
.y5da_c00000{bottom:314.978667pt;}
.y1465_c00000{bottom:315.104000pt;}
.ye79_c00000{bottom:315.206667pt;}
.y169a_c00000{bottom:315.450667pt;}
.ya73_c00000{bottom:315.642667pt;}
.ya2d_c00000{bottom:315.649333pt;}
.ye28_c00000{bottom:315.656000pt;}
.y171c_c00000{bottom:315.878667pt;}
.y9b0_c00000{bottom:315.920000pt;}
.y1131_c00000{bottom:316.257333pt;}
.yce5_c00000{bottom:316.514667pt;}
.y860_c00000{bottom:316.978667pt;}
.y1376_c00000{bottom:317.206667pt;}
.y1605_c00000{bottom:317.245333pt;}
.y107b_c00000{bottom:317.252000pt;}
.y1654_c00000{bottom:317.257333pt;}
.yef8_c00000{bottom:317.325333pt;}
.y4b2_c00000{bottom:317.332000pt;}
.y2f5_c00000{bottom:317.421333pt;}
.y505_c00000{bottom:317.436000pt;}
.ycc5_c00000{bottom:317.450667pt;}
.y11f0_c00000{bottom:317.669333pt;}
.ye64_c00000{bottom:317.905333pt;}
.y16e4_c00000{bottom:317.962667pt;}
.y1854_c00000{bottom:318.092000pt;}
.y11a5_c00000{bottom:318.134667pt;}
.y1943_c00000{bottom:318.481333pt;}
.yc8d_c00000{bottom:318.504000pt;}
.y6f0_c00000{bottom:318.764000pt;}
.y220_c00000{bottom:318.773333pt;}
.y134c_c00000{bottom:318.785333pt;}
.y563_c00000{bottom:318.869333pt;}
.yb3c_c00000{bottom:318.874667pt;}
.y1e5_c00000{bottom:318.977333pt;}
.y832_c00000{bottom:318.978667pt;}
.y1738_c00000{bottom:319.013333pt;}
.yacd_c00000{bottom:319.100000pt;}
.y1703_c00000{bottom:319.273333pt;}
.y142b_c00000{bottom:319.390667pt;}
.yda0_c00000{bottom:319.513333pt;}
.yea5_c00000{bottom:319.518667pt;}
.y7c4_c00000{bottom:319.628000pt;}
.y1780_c00000{bottom:319.638667pt;}
.yc6d_c00000{bottom:319.864000pt;}
.y542_c00000{bottom:319.868000pt;}
.ybf8_c00000{bottom:319.898667pt;}
.y1820_c00000{bottom:319.938667pt;}
.yd7e_c00000{bottom:319.978667pt;}
.y49c_c00000{bottom:319.994667pt;}
.ya14_c00000{bottom:320.077333pt;}
.y24e_c00000{bottom:320.092000pt;}
.y175b_c00000{bottom:320.258667pt;}
.y1487_c00000{bottom:320.406667pt;}
.y144_c00000{bottom:320.424000pt;}
.y43_c00000{bottom:320.645333pt;}
.ya46_c00000{bottom:320.738667pt;}
.y8d_c00000{bottom:320.757333pt;}
.yc3e_c00000{bottom:320.825333pt;}
.y17a2_c00000{bottom:320.913333pt;}
.yadb_c00000{bottom:321.104000pt;}
.y3d2_c00000{bottom:321.206667pt;}
.y1383_c00000{bottom:321.612000pt;}
.y192d_c00000{bottom:321.613333pt;}
.y284_c00000{bottom:321.621333pt;}
.yc1e_c00000{bottom:321.738667pt;}
.y14f3_c00000{bottom:321.918667pt;}
.y1538_c00000{bottom:321.996000pt;}
.y12c_c00000{bottom:322.072000pt;}
.y205_c00000{bottom:322.162667pt;}
.y1214_c00000{bottom:322.284000pt;}
.y12f2_c00000{bottom:322.396000pt;}
.y17d_c00000{bottom:322.412000pt;}
.y1252_c00000{bottom:322.513333pt;}
.y1184_c00000{bottom:322.710667pt;}
.y4d0_c00000{bottom:323.056000pt;}
.yfc0_c00000{bottom:323.088000pt;}
.ydf0_c00000{bottom:323.354667pt;}
.y477_c00000{bottom:323.612000pt;}
.y10ad_c00000{bottom:323.620000pt;}
.y8d6_c00000{bottom:323.626667pt;}
.y1b0_c00000{bottom:323.826667pt;}
.y1324_c00000{bottom:323.966667pt;}
.y5f9_c00000{bottom:324.025333pt;}
.y330_c00000{bottom:324.054667pt;}
.y427_c00000{bottom:324.069333pt;}
.y40d_c00000{bottom:324.070667pt;}
.y941_c00000{bottom:324.196000pt;}
.y2da_c00000{bottom:324.445333pt;}
.y17dc_c00000{bottom:324.797333pt;}
.yf58_c00000{bottom:325.037333pt;}
.y161_c00000{bottom:325.390667pt;}
.ya03_c00000{bottom:325.398667pt;}
.y13c6_c00000{bottom:325.509333pt;}
.y63c_c00000{bottom:325.520000pt;}
.y552_c00000{bottom:325.612000pt;}
.yfdf_c00000{bottom:325.750667pt;}
.yf23_c00000{bottom:325.756000pt;}
.y1813_c00000{bottom:325.764000pt;}
.y156f_c00000{bottom:325.777333pt;}
.y12fe_c00000{bottom:326.002667pt;}
.yed_c00000{bottom:326.132000pt;}
.y1e_c00000{bottom:326.400000pt;}
.y1161_c00000{bottom:326.436000pt;}
.y658_c00000{bottom:326.594667pt;}
.y100b_c00000{bottom:326.726667pt;}
.yf82_c00000{bottom:326.874667pt;}
.y1055_c00000{bottom:326.941333pt;}
.y1777_c00000{bottom:326.984000pt;}
.y5bc_c00000{bottom:327.184000pt;}
.yb7e_c00000{bottom:327.345333pt;}
.y454_c00000{bottom:327.398667pt;}
.y752_c00000{bottom:327.409333pt;}
.y9eb_c00000{bottom:327.576000pt;}
.y1843_c00000{bottom:327.694667pt;}
.yb28_c00000{bottom:327.733333pt;}
.y18d0_c00000{bottom:327.830667pt;}
.yd03_c00000{bottom:327.922667pt;}
.y527_c00000{bottom:327.944000pt;}
.ye3b_c00000{bottom:327.966667pt;}
.yec2_c00000{bottom:328.004000pt;}
.y68b_c00000{bottom:328.033333pt;}
.y30e_c00000{bottom:328.040000pt;}
.y26c_c00000{bottom:328.054667pt;}
.yaf_c00000{bottom:328.069333pt;}
.yaad_c00000{bottom:328.086667pt;}
.y1006_c00000{bottom:328.157333pt;}
.y589_c00000{bottom:328.309333pt;}
.y7e3_c00000{bottom:328.336000pt;}
.yde6_c00000{bottom:328.337333pt;}
.y815_c00000{bottom:328.476000pt;}
.y15ce_c00000{bottom:328.832000pt;}
.y238_c00000{bottom:328.946667pt;}
.y677_c00000{bottom:328.960000pt;}
.y108_c00000{bottom:329.052000pt;}
.y1418_c00000{bottom:329.096000pt;}
.y12d2_c00000{bottom:329.265333pt;}
.y1648_c00000{bottom:329.722667pt;}
.y10e9_c00000{bottom:329.738667pt;}
.y98e_c00000{bottom:329.796000pt;}
.y21f_c00000{bottom:329.893333pt;}
.ya9e_c00000{bottom:329.906667pt;}
.y1615_c00000{bottom:329.973333pt;}
.y562_c00000{bottom:329.988000pt;}
.y1900_c00000{bottom:330.269333pt;}
.yf73_c00000{bottom:330.486667pt;}
.y190a_c00000{bottom:330.689333pt;}
.y4dd_c00000{bottom:330.704000pt;}
.y14b0_c00000{bottom:330.830667pt;}
.yd5d_c00000{bottom:331.386667pt;}
.y149a_c00000{bottom:331.669333pt;}
.ybd9_c00000{bottom:331.676000pt;}
.y891_c00000{bottom:331.780000pt;}
.ya8a_c00000{bottom:331.804000pt;}
.y3fe_c00000{bottom:332.134667pt;}
.y4f5_c00000{bottom:332.246667pt;}
.y1046_c00000{bottom:332.393333pt;}
.yd45_c00000{bottom:332.854667pt;}
.y15e7_c00000{bottom:332.881333pt;}
.y19d_c00000{bottom:332.918667pt;}
.y374_c00000{bottom:332.946667pt;}
.yb9a_c00000{bottom:333.036000pt;}
.y144e_c00000{bottom:333.272000pt;}
.y69_c00000{bottom:333.338667pt;}
.y6be_c00000{bottom:333.361333pt;}
.y1628_c00000{bottom:333.385333pt;}
.y17fd_c00000{bottom:333.568000pt;}
.y18c0_c00000{bottom:333.757333pt;}
.y1140_c00000{bottom:333.784000pt;}
.y9d3_c00000{bottom:333.829333pt;}
.y13ef_c00000{bottom:333.958667pt;}
.y13a2_c00000{bottom:334.024000pt;}
.y31_c00000{bottom:334.132000pt;}
.y7fb_c00000{bottom:334.148000pt;}
.ybc5_c00000{bottom:334.152000pt;}
.y76b_c00000{bottom:334.476000pt;}
.yc7c_c00000{bottom:334.601333pt;}
.y3ef_c00000{bottom:334.704000pt;}
.y136c_c00000{bottom:335.110667pt;}
.y1702_c00000{bottom:335.213333pt;}
.y353_c00000{bottom:335.257333pt;}
.y17f0_c00000{bottom:335.260000pt;}
.y3aa_c00000{bottom:335.348000pt;}
.y14cb_c00000{bottom:335.392000pt;}
.y1242_c00000{bottom:335.586667pt;}
.y4e9_c00000{bottom:335.729333pt;}
.y122b_c00000{bottom:335.761333pt;}
.y1870_c00000{bottom:335.969333pt;}
.y5a3_c00000{bottom:336.017333pt;}
.y6cb_c00000{bottom:336.032000pt;}
.yc9_c00000{bottom:336.365333pt;}
.y1861_c00000{bottom:336.888000pt;}
.y791_c00000{bottom:336.896000pt;}
.yee9_c00000{bottom:337.052000pt;}
.y16bb_c00000{bottom:337.290667pt;}
.yba5_c00000{bottom:337.338667pt;}
.y1537_c00000{bottom:337.936000pt;}
.y204_c00000{bottom:338.104000pt;}
.y17c_c00000{bottom:338.352000pt;}
.y8c8_c00000{bottom:338.438667pt;}
.y10ff_c00000{bottom:338.578667pt;}
.y13d4_c00000{bottom:338.881333pt;}
.y13fd_c00000{bottom:339.109333pt;}
.ydef_c00000{bottom:339.294667pt;}
.y1699_c00000{bottom:339.353333pt;}
.ya72_c00000{bottom:339.545333pt;}
.ya2c_c00000{bottom:339.553333pt;}
.ye27_c00000{bottom:339.560000pt;}
.y9af_c00000{bottom:339.822667pt;}
.y5f8_c00000{bottom:339.966667pt;}
.yfa3_c00000{bottom:340.010667pt;}
.y1701_c00000{bottom:340.033333pt;}
.y9b7_c00000{bottom:340.061333pt;}
.yce4_c00000{bottom:340.418667pt;}
.y85f_c00000{bottom:340.881333pt;}
.y128a_c00000{bottom:341.109333pt;}
.y1604_c00000{bottom:341.149333pt;}
.y107a_c00000{bottom:341.154667pt;}
.y1653_c00000{bottom:341.160000pt;}
.yef7_c00000{bottom:341.228000pt;}
.y4b1_c00000{bottom:341.234667pt;}
.yc48_c00000{bottom:341.236000pt;}
.y2f4_c00000{bottom:341.324000pt;}
.y504_c00000{bottom:341.338667pt;}
.ycc4_c00000{bottom:341.353333pt;}
.y11ef_c00000{bottom:341.572000pt;}
.ye63_c00000{bottom:341.808000pt;}
.y16e3_c00000{bottom:341.865333pt;}
.y11a4_c00000{bottom:342.037333pt;}
.y1116_c00000{bottom:342.192000pt;}
.y1160_c00000{bottom:342.376000pt;}
.y1942_c00000{bottom:342.384000pt;}
.y6ef_c00000{bottom:342.666667pt;}
.y134b_c00000{bottom:342.689333pt;}
.yb3b_c00000{bottom:342.777333pt;}
.yf81_c00000{bottom:342.814667pt;}
.y1e4_c00000{bottom:342.881333pt;}
.y1737_c00000{bottom:342.917333pt;}
.yacc_c00000{bottom:343.002667pt;}
.ydca_c00000{bottom:343.030667pt;}
.yd9f_c00000{bottom:343.416000pt;}
.yea4_c00000{bottom:343.421333pt;}
.y177f_c00000{bottom:343.541333pt;}
.yc6c_c00000{bottom:343.768000pt;}
.y541_c00000{bottom:343.772000pt;}
.ybf7_c00000{bottom:343.801333pt;}
.y181f_c00000{bottom:343.841333pt;}
.yd7d_c00000{bottom:343.881333pt;}
.y49b_c00000{bottom:343.898667pt;}
.y24d_c00000{bottom:343.994667pt;}
.y1486_c00000{bottom:344.310667pt;}
.y143_c00000{bottom:344.326667pt;}
.y1627_c00000{bottom:344.504000pt;}
.ya45_c00000{bottom:344.642667pt;}
.y8c_c00000{bottom:344.660000pt;}
.yc3d_c00000{bottom:344.728000pt;}
.y5f7_c00000{bottom:344.786667pt;}
.y17a1_c00000{bottom:344.816000pt;}
.yada_c00000{bottom:345.006667pt;}
.y3d1_c00000{bottom:345.109333pt;}
.y283_c00000{bottom:345.404000pt;}
.y12b2_c00000{bottom:345.516000pt;}
.yc1d_c00000{bottom:345.641333pt;}
.y1647_c00000{bottom:345.662667pt;}
.y21e_c00000{bottom:345.833333pt;}
.y1464_c00000{bottom:345.869333pt;}
.y16e2_c00000{bottom:345.894667pt;}
.y1614_c00000{bottom:345.914667pt;}
.y561_c00000{bottom:345.929333pt;}
.y12b_c00000{bottom:345.974667pt;}
.y1213_c00000{bottom:346.186667pt;}
.y12f1_c00000{bottom:346.298667pt;}
.y1183_c00000{bottom:346.614667pt;}
.y4cf_c00000{bottom:346.958667pt;}
.yfbf_c00000{bottom:346.992000pt;}
.y476_c00000{bottom:347.516000pt;}
.y10ac_c00000{bottom:347.522667pt;}
.y732_c00000{bottom:347.530667pt;}
.y8a7_c00000{bottom:347.736000pt;}
.y1323_c00000{bottom:347.869333pt;}
.y32f_c00000{bottom:347.958667pt;}
.y40c_c00000{bottom:347.973333pt;}
.y1853_c00000{bottom:348.857333pt;}
.yf57_c00000{bottom:348.940000pt;}
.y160_c00000{bottom:349.294667pt;}
.yd28_c00000{bottom:349.301333pt;}
.y13c5_c00000{bottom:349.412000pt;}
.yec8_c00000{bottom:349.514667pt;}
.y551_c00000{bottom:349.516000pt;}
.y18e4_c00000{bottom:349.641333pt;}
.yfde_c00000{bottom:349.653333pt;}
.yf22_c00000{bottom:349.658667pt;}
.y1812_c00000{bottom:349.666667pt;}
.y156e_c00000{bottom:349.680000pt;}
.y86b_c00000{bottom:349.744000pt;}
.y12fd_c00000{bottom:349.905333pt;}
.yec_c00000{bottom:350.034667pt;}
.y2ba_c00000{bottom:350.184000pt;}
.y7c3_c00000{bottom:350.393333pt;}
.y657_c00000{bottom:350.497333pt;}
.y100a_c00000{bottom:350.629333pt;}
.y21d_c00000{bottom:350.653333pt;}
.y11c5_c00000{bottom:350.745333pt;}
.y1054_c00000{bottom:350.844000pt;}
.y5bb_c00000{bottom:351.086667pt;}
.y142a_c00000{bottom:351.244000pt;}
.yb7d_c00000{bottom:351.248000pt;}
.y453_c00000{bottom:351.302667pt;}
.y751_c00000{bottom:351.312000pt;}
.y9ea_c00000{bottom:351.478667pt;}
.yb27_c00000{bottom:351.636000pt;}
.y18cf_c00000{bottom:351.733333pt;}
.y15bc_c00000{bottom:351.744000pt;}
.yd02_c00000{bottom:351.826667pt;}
.y526_c00000{bottom:351.846667pt;}
.ye3a_c00000{bottom:351.869333pt;}
.yec1_c00000{bottom:351.906667pt;}
.y68a_c00000{bottom:351.936000pt;}
.y30d_c00000{bottom:351.944000pt;}
.y26b_c00000{bottom:351.958667pt;}
.yae_c00000{bottom:351.973333pt;}
.y1005_c00000{bottom:352.061333pt;}
.y1130_c00000{bottom:352.084000pt;}
.yaf8_c00000{bottom:352.134667pt;}
.y588_c00000{bottom:352.212000pt;}
.y7e2_c00000{bottom:352.238667pt;}
.yde5_c00000{bottom:352.240000pt;}
.y15cd_c00000{bottom:352.734667pt;}
.y237_c00000{bottom:352.849333pt;}
.y676_c00000{bottom:352.862667pt;}
.y107_c00000{bottom:352.954667pt;}
.y12d1_c00000{bottom:353.169333pt;}
.y98d_c00000{bottom:353.698667pt;}
.y1536_c00000{bottom:353.877333pt;}
.y61a_c00000{bottom:354.044000pt;}
.y18ff_c00000{bottom:354.172000pt;}
.y17b_c00000{bottom:354.292000pt;}
.yf72_c00000{bottom:354.390667pt;}
.y8d5_c00000{bottom:354.393333pt;}
.y1af_c00000{bottom:354.593333pt;}
.y4dc_c00000{bottom:354.608000pt;}
.y14af_c00000{bottom:354.733333pt;}
.ybd8_c00000{bottom:355.580000pt;}
.y1d_c00000{bottom:355.680000pt;}
.y890_c00000{bottom:355.682667pt;}
.y14f2_c00000{bottom:355.840000pt;}
.ya5d_c00000{bottom:355.936000pt;}
.y1554_c00000{bottom:356.002667pt;}
.y3fd_c00000{bottom:356.038667pt;}
.y4f4_c00000{bottom:356.149333pt;}
.y1045_c00000{bottom:356.296000pt;}
.yd44_c00000{bottom:356.758667pt;}
.y15e6_c00000{bottom:356.784000pt;}
.y19c_c00000{bottom:356.821333pt;}
.y373_c00000{bottom:356.849333pt;}
.y144d_c00000{bottom:357.174667pt;}
.y68_c00000{bottom:357.242667pt;}
.y6bd_c00000{bottom:357.264000pt;}
.y5f6_c00000{bottom:357.330667pt;}
.y18bf_c00000{bottom:357.660000pt;}
.y113f_c00000{bottom:357.686667pt;}
.y9d2_c00000{bottom:357.732000pt;}
.y17db_c00000{bottom:357.758667pt;}
.y13ee_c00000{bottom:357.861333pt;}
.y13a1_c00000{bottom:357.926667pt;}
.y7fa_c00000{bottom:358.050667pt;}
.ybc4_c00000{bottom:358.054667pt;}
.y115f_c00000{bottom:358.316000pt;}
.y76a_c00000{bottom:358.378667pt;}
.yc7b_c00000{bottom:358.504000pt;}
.y3ee_c00000{bottom:358.606667pt;}
.y18a3_c00000{bottom:358.733333pt;}
.yf80_c00000{bottom:358.754667pt;}
.y203_c00000{bottom:358.864000pt;}
.y136b_c00000{bottom:359.013333pt;}
.y352_c00000{bottom:359.160000pt;}
.y17ef_c00000{bottom:359.162667pt;}
.y814_c00000{bottom:359.241333pt;}
.y3a9_c00000{bottom:359.252000pt;}
.y1241_c00000{bottom:359.489333pt;}
.y186f_c00000{bottom:359.872000pt;}
.y5a2_c00000{bottom:359.921333pt;}
.y6ca_c00000{bottom:359.936000pt;}
.ydee_c00000{bottom:360.054667pt;}
.y42_c00000{bottom:360.156000pt;}
.yc8_c00000{bottom:360.268000pt;}
.y1626_c00000{bottom:360.445333pt;}
.y1860_c00000{bottom:360.792000pt;}
.y790_c00000{bottom:360.798667pt;}
.yee8_c00000{bottom:360.954667pt;}
.y2d9_c00000{bottom:361.101333pt;}
.y16ba_c00000{bottom:361.194667pt;}
.yba4_c00000{bottom:361.241333pt;}
.y63b_c00000{bottom:361.372000pt;}
.y175a_c00000{bottom:361.398667pt;}
.y1646_c00000{bottom:361.604000pt;}
.y1613_c00000{bottom:361.854667pt;}
.y560_c00000{bottom:361.869333pt;}
.y5f5_c00000{bottom:362.150667pt;}
.y8c7_c00000{bottom:362.341333pt;}
.y10fe_c00000{bottom:362.481333pt;}
.y192c_c00000{bottom:362.784000pt;}
.y1311_c00000{bottom:363.013333pt;}
.y115e_c00000{bottom:363.137333pt;}
.y1698_c00000{bottom:363.256000pt;}
.ya2b_c00000{bottom:363.456000pt;}
.ye26_c00000{bottom:363.462667pt;}
.y9ae_c00000{bottom:363.725333pt;}
.yb99_c00000{bottom:363.802667pt;}
.yfa2_c00000{bottom:363.913333pt;}
.yaac_c00000{bottom:363.932000pt;}
.y91b_c00000{bottom:364.057333pt;}
.yce3_c00000{bottom:364.321333pt;}
.y1417_c00000{bottom:364.437333pt;}
.y85e_c00000{bottom:364.784000pt;}
.y1289_c00000{bottom:365.013333pt;}
.y1603_c00000{bottom:365.052000pt;}
.y1079_c00000{bottom:365.057333pt;}
.yef6_c00000{bottom:365.130667pt;}
.y4b0_c00000{bottom:365.138667pt;}
.y389_c00000{bottom:365.226667pt;}
.y503_c00000{bottom:365.241333pt;}
.y1625_c00000{bottom:365.265333pt;}
.y11ee_c00000{bottom:365.476000pt;}
.ye62_c00000{bottom:365.710667pt;}
.y16e1_c00000{bottom:365.769333pt;}
.y11a3_c00000{bottom:365.940000pt;}
.y1115_c00000{bottom:366.094667pt;}
.y1941_c00000{bottom:366.286667pt;}
.y122a_c00000{bottom:366.526667pt;}
.y6ee_c00000{bottom:366.569333pt;}
.y134a_c00000{bottom:366.592000pt;}
.y17fc_c00000{bottom:366.673333pt;}
.yb3a_c00000{bottom:366.681333pt;}
.y1e3_c00000{bottom:366.784000pt;}
.y1736_c00000{bottom:366.820000pt;}
.yacb_c00000{bottom:366.905333pt;}
.ydc9_c00000{bottom:366.933333pt;}
.y1499_c00000{bottom:367.009333pt;}
.yd9e_c00000{bottom:367.318667pt;}
.yea3_c00000{bottom:367.324000pt;}
.y177e_c00000{bottom:367.444000pt;}
.y10e8_c00000{bottom:367.649333pt;}
.y1842_c00000{bottom:367.657333pt;}
.yc6b_c00000{bottom:367.670667pt;}
.y540_c00000{bottom:367.674667pt;}
.ybf6_c00000{bottom:367.704000pt;}
.y1922_c00000{bottom:367.745333pt;}
.yd7c_c00000{bottom:367.784000pt;}
.y49a_c00000{bottom:367.801333pt;}
.y24c_c00000{bottom:367.898667pt;}
.y1485_c00000{bottom:368.213333pt;}
.y142_c00000{bottom:368.229333pt;}
.y8b_c00000{bottom:368.562667pt;}
.yc3c_c00000{bottom:368.630667pt;}
.y17a0_c00000{bottom:368.720000pt;}
.yad9_c00000{bottom:368.909333pt;}
.y3d0_c00000{bottom:369.012000pt;}
.y282_c00000{bottom:369.306667pt;}
.y12b1_c00000{bottom:369.418667pt;}
.yc1c_c00000{bottom:369.544000pt;}
.y13d3_c00000{bottom:369.646667pt;}
.y1535_c00000{bottom:369.817333pt;}
.y12a_c00000{bottom:369.877333pt;}
.y619_c00000{bottom:369.984000pt;}
.y1212_c00000{bottom:370.090667pt;}
.yd5c_c00000{bottom:370.120000pt;}
.y12f0_c00000{bottom:370.201333pt;}
.y17a_c00000{bottom:370.232000pt;}
.y1182_c00000{bottom:370.517333pt;}
.y4ce_c00000{bottom:370.862667pt;}
.yfbe_c00000{bottom:370.894667pt;}
.y475_c00000{bottom:371.418667pt;}
.y10ab_c00000{bottom:371.425333pt;}
.y731_c00000{bottom:371.433333pt;}
.y8a6_c00000{bottom:371.638667pt;}
.y1322_c00000{bottom:371.773333pt;}
.y32e_c00000{bottom:371.861333pt;}
.y40b_c00000{bottom:371.876000pt;}
.ycc3_c00000{bottom:372.120000pt;}
.yf56_c00000{bottom:372.842667pt;}
.y15f_c00000{bottom:373.197333pt;}
.yd27_c00000{bottom:373.204000pt;}
.y18db_c00000{bottom:373.314667pt;}
.y550_c00000{bottom:373.418667pt;}
.yfdd_c00000{bottom:373.557333pt;}
.yf21_c00000{bottom:373.561333pt;}
.y1811_c00000{bottom:373.570667pt;}
.y156d_c00000{bottom:373.582667pt;}
.y957_c00000{bottom:373.646667pt;}
.y12fc_c00000{bottom:373.809333pt;}
.yeb_c00000{bottom:373.937333pt;}
.y2b9_c00000{bottom:374.088000pt;}
.y656_c00000{bottom:374.400000pt;}
.y11c4_c00000{bottom:374.648000pt;}
.yf7f_c00000{bottom:374.694667pt;}
.y1c_c00000{bottom:374.720000pt;}
.y1053_c00000{bottom:374.746667pt;}
.y202_c00000{bottom:374.804000pt;}
.y5ba_c00000{bottom:374.989333pt;}
.y14ca_c00000{bottom:375.021333pt;}
.y1429_c00000{bottom:375.146667pt;}
.yb7c_c00000{bottom:375.150667pt;}
.y452_c00000{bottom:375.205333pt;}
.y750_c00000{bottom:375.214667pt;}
.yb26_c00000{bottom:375.540000pt;}
.y18ce_c00000{bottom:375.636000pt;}
.y15bb_c00000{bottom:375.646667pt;}
.y115d_c00000{bottom:375.681333pt;}
.yd01_c00000{bottom:375.729333pt;}
.y525_c00000{bottom:375.749333pt;}
.ye39_c00000{bottom:375.772000pt;}
.yec0_c00000{bottom:375.809333pt;}
.y689_c00000{bottom:375.838667pt;}
.y21c_c00000{bottom:375.861333pt;}
.yad_c00000{bottom:375.876000pt;}
.y1004_c00000{bottom:375.964000pt;}
.y112f_c00000{bottom:375.988000pt;}
.y587_c00000{bottom:376.116000pt;}
.y7e1_c00000{bottom:376.141333pt;}
.yde4_c00000{bottom:376.142667pt;}
.y15cc_c00000{bottom:376.637333pt;}
.y236_c00000{bottom:376.752000pt;}
.y106_c00000{bottom:376.857333pt;}
.y940_c00000{bottom:376.953333pt;}
.y1645_c00000{bottom:377.544000pt;}
.y98c_c00000{bottom:377.601333pt;}
.y1612_c00000{bottom:377.794667pt;}
.y18fe_c00000{bottom:378.074667pt;}
.yf71_c00000{bottom:378.293333pt;}
.y2f3_c00000{bottom:378.510667pt;}
.ybd7_c00000{bottom:379.482667pt;}
.y14f1_c00000{bottom:379.742667pt;}
.ya5c_c00000{bottom:379.838667pt;}
.y3fc_c00000{bottom:379.941333pt;}
.y4f3_c00000{bottom:380.053333pt;}
.y13c4_c00000{bottom:380.178667pt;}
.y1044_c00000{bottom:380.198667pt;}
.yd43_c00000{bottom:380.661333pt;}
.y15e5_c00000{bottom:380.686667pt;}
.ya71_c00000{bottom:380.717333pt;}
.y19b_c00000{bottom:380.724000pt;}
.y372_c00000{bottom:380.752000pt;}
.y144c_c00000{bottom:381.078667pt;}
.y67_c00000{bottom:381.145333pt;}
.y96c_c00000{bottom:381.166667pt;}
.y18be_c00000{bottom:381.562667pt;}
.y113e_c00000{bottom:381.589333pt;}
.y9d1_c00000{bottom:381.634667pt;}
.y17da_c00000{bottom:381.661333pt;}
.y13ed_c00000{bottom:381.764000pt;}
.y1776_c00000{bottom:381.818667pt;}
.y13a0_c00000{bottom:381.830667pt;}
.y7f9_c00000{bottom:381.953333pt;}
.ybc3_c00000{bottom:381.957333pt;}
.y769_c00000{bottom:382.281333pt;}
.yc7a_c00000{bottom:382.406667pt;}
.y3ed_c00000{bottom:382.510667pt;}
.y55f_c00000{bottom:382.629333pt;}
.y136a_c00000{bottom:382.916000pt;}
.y351_c00000{bottom:383.062667pt;}
.y3a8_c00000{bottom:383.154667pt;}
.y1240_c00000{bottom:383.392000pt;}
.y181e_c00000{bottom:383.761333pt;}
.y186e_c00000{bottom:383.774667pt;}
.y5a1_c00000{bottom:383.824000pt;}
.y6c9_c00000{bottom:383.838667pt;}
.y41_c00000{bottom:384.058667pt;}
.ya44_c00000{bottom:384.161333pt;}
.yc7_c00000{bottom:384.170667pt;}
.y78f_c00000{bottom:384.702667pt;}
.yee7_c00000{bottom:384.857333pt;}
.y2d8_c00000{bottom:385.004000pt;}
.y16b9_c00000{bottom:385.097333pt;}
.y1925_c00000{bottom:385.145333pt;}
.y63a_c00000{bottom:385.274667pt;}
.y1759_c00000{bottom:385.301333pt;}
.y179_c00000{bottom:386.172000pt;}
.y8c6_c00000{bottom:386.244000pt;}
.y10fd_c00000{bottom:386.384000pt;}
.y1382_c00000{bottom:386.686667pt;}
.y13fc_c00000{bottom:386.916000pt;}
.y1697_c00000{bottom:387.160000pt;}
.y5f4_c00000{bottom:387.358667pt;}
.ye25_c00000{bottom:387.365333pt;}
.y9ad_c00000{bottom:387.628000pt;}
.yfa1_c00000{bottom:387.816000pt;}
.yaab_c00000{bottom:387.836000pt;}
.y91a_c00000{bottom:387.960000pt;}
.y1416_c00000{bottom:388.340000pt;}
.y85d_c00000{bottom:388.686667pt;}
.y1288_c00000{bottom:388.916000pt;}
.y1602_c00000{bottom:388.954667pt;}
.y1078_c00000{bottom:388.961333pt;}
.yef5_c00000{bottom:389.033333pt;}
.y4af_c00000{bottom:389.041333pt;}
.y388_c00000{bottom:389.129333pt;}
.y502_c00000{bottom:389.144000pt;}
.y11ed_c00000{bottom:389.378667pt;}
.ye61_c00000{bottom:389.614667pt;}
.y16e0_c00000{bottom:389.672000pt;}
.y11a2_c00000{bottom:389.842667pt;}
.y1114_c00000{bottom:389.997333pt;}
.y1940_c00000{bottom:390.189333pt;}
.y6ed_c00000{bottom:390.473333pt;}
.y17fb_c00000{bottom:390.576000pt;}
.y1534_c00000{bottom:390.577333pt;}
.yb39_c00000{bottom:390.584000pt;}
.y1e2_c00000{bottom:390.686667pt;}
.y1735_c00000{bottom:390.722667pt;}
.y618_c00000{bottom:390.745333pt;}
.yaca_c00000{bottom:390.808000pt;}
.ydc8_c00000{bottom:390.837333pt;}
.y1498_c00000{bottom:390.913333pt;}
.yd9d_c00000{bottom:391.221333pt;}
.yea2_c00000{bottom:391.228000pt;}
.y10e7_c00000{bottom:391.553333pt;}
.y185f_c00000{bottom:391.557333pt;}
.y1841_c00000{bottom:391.561333pt;}
.yc6a_c00000{bottom:391.573333pt;}
.y53f_c00000{bottom:391.577333pt;}
.y115c_c00000{bottom:391.621333pt;}
.y1921_c00000{bottom:391.648000pt;}
.yd7b_c00000{bottom:391.686667pt;}
.y499_c00000{bottom:391.704000pt;}
.y11d5_c00000{bottom:391.713333pt;}
.y9e9_c00000{bottom:391.780000pt;}
.y30c_c00000{bottom:391.786667pt;}
.y460_c00000{bottom:391.801333pt;}
.y1484_c00000{bottom:392.116000pt;}
.y141_c00000{bottom:392.132000pt;}
.y675_c00000{bottom:392.404000pt;}
.y8a_c00000{bottom:392.465333pt;}
.yc3b_c00000{bottom:392.534667pt;}
.y179f_c00000{bottom:392.622667pt;}
.yad8_c00000{bottom:392.812000pt;}
.y3cf_c00000{bottom:392.916000pt;}
.y877_c00000{bottom:393.173333pt;}
.y12b0_c00000{bottom:393.321333pt;}
.yc1b_c00000{bottom:393.446667pt;}
.y1644_c00000{bottom:393.484000pt;}
.y88f_c00000{bottom:393.636000pt;}
.y129_c00000{bottom:393.781333pt;}
.yd5b_c00000{bottom:394.022667pt;}
.y12d0_c00000{bottom:394.070667pt;}
.y12ef_c00000{bottom:394.105333pt;}
.y1181_c00000{bottom:394.420000pt;}
.ybe0_c00000{bottom:394.613333pt;}
.yfbd_c00000{bottom:394.797333pt;}
.y474_c00000{bottom:395.321333pt;}
.y10aa_c00000{bottom:395.329333pt;}
.y730_c00000{bottom:395.336000pt;}
.yf7e_c00000{bottom:395.456000pt;}
.y8a5_c00000{bottom:395.541333pt;}
.y1321_c00000{bottom:395.676000pt;}
.y32d_c00000{bottom:395.764000pt;}
.y40a_c00000{bottom:395.778667pt;}
.y14ae_c00000{bottom:395.904000pt;}
.y115b_c00000{bottom:396.441333pt;}
.y17ee_c00000{bottom:396.604000pt;}
.yf55_c00000{bottom:396.745333pt;}
.y15e_c00000{bottom:397.100000pt;}
.yd26_c00000{bottom:397.106667pt;}
.y160a_c00000{bottom:397.108000pt;}
.y18da_c00000{bottom:397.218667pt;}
.y54f_c00000{bottom:397.321333pt;}
.y1911_c00000{bottom:397.446667pt;}
.yfdc_c00000{bottom:397.460000pt;}
.yf20_c00000{bottom:397.465333pt;}
.y1810_c00000{bottom:397.473333pt;}
.y156c_c00000{bottom:397.486667pt;}
.yc09_c00000{bottom:397.550667pt;}
.yea_c00000{bottom:397.841333pt;}
.y2b8_c00000{bottom:397.990667pt;}
.y201_c00000{bottom:398.212000pt;}
.y1b_c00000{bottom:398.248640pt;}
.y655_c00000{bottom:398.304000pt;}
.y6bc_c00000{bottom:398.436000pt;}
.y11c3_c00000{bottom:398.550667pt;}
.y1611_c00000{bottom:398.554667pt;}
.y1463_c00000{bottom:398.628000pt;}
.y1052_c00000{bottom:398.649333pt;}
.y5b9_c00000{bottom:398.892000pt;}
.y14c9_c00000{bottom:398.924000pt;}
.y1428_c00000{bottom:399.050667pt;}
.y451_c00000{bottom:399.108000pt;}
.y74f_c00000{bottom:399.118667pt;}
.yb25_c00000{bottom:399.442667pt;}
.y18cd_c00000{bottom:399.540000pt;}
.y15ba_c00000{bottom:399.550667pt;}
.y524_c00000{bottom:399.652000pt;}
.ye38_c00000{bottom:399.676000pt;}
.yebf_c00000{bottom:399.713333pt;}
.y688_c00000{bottom:399.741333pt;}
.y21b_c00000{bottom:399.764000pt;}
.yac_c00000{bottom:399.778667pt;}
.y1003_c00000{bottom:399.866667pt;}
.y586_c00000{bottom:400.018667pt;}
.y7e0_c00000{bottom:400.044000pt;}
.y15cb_c00000{bottom:400.541333pt;}
.y235_c00000{bottom:400.656000pt;}
.y105_c00000{bottom:400.761333pt;}
.y98b_c00000{bottom:401.504000pt;}
.y1533_c00000{bottom:401.697333pt;}
.y1349_c00000{bottom:401.840000pt;}
.y18fd_c00000{bottom:401.978667pt;}
.y178_c00000{bottom:402.113333pt;}
.yf70_c00000{bottom:402.196000pt;}
.y18e3_c00000{bottom:402.398667pt;}
.y4db_c00000{bottom:402.413333pt;}
.ybd6_c00000{bottom:403.385333pt;}
.y14f0_c00000{bottom:403.645333pt;}
.ya5b_c00000{bottom:403.741333pt;}
.yf04_c00000{bottom:403.808000pt;}
.y3fb_c00000{bottom:403.844000pt;}
.y4f2_c00000{bottom:403.956000pt;}
.y1043_c00000{bottom:404.102667pt;}
.yd42_c00000{bottom:404.564000pt;}
.y15e4_c00000{bottom:404.590667pt;}
.ya70_c00000{bottom:404.620000pt;}
.y19a_c00000{bottom:404.626667pt;}
.y66_c00000{bottom:405.048000pt;}
.y15a3_c00000{bottom:405.070667pt;}
.y18bd_c00000{bottom:405.465333pt;}
.yce2_c00000{bottom:405.492000pt;}
.y1850_c00000{bottom:405.513333pt;}
.y9d0_c00000{bottom:405.538667pt;}
.y17d9_c00000{bottom:405.564000pt;}
.y13ec_c00000{bottom:405.668000pt;}
.y1775_c00000{bottom:405.721333pt;}
.y139f_c00000{bottom:405.733333pt;}
.y7f8_c00000{bottom:405.856000pt;}
.ybc2_c00000{bottom:405.860000pt;}
.y77a_c00000{bottom:406.184000pt;}
.yc79_c00000{bottom:406.309333pt;}
.y3ec_c00000{bottom:406.413333pt;}
.ybf5_c00000{bottom:406.840000pt;}
.y350_c00000{bottom:406.965333pt;}
.y3a7_c00000{bottom:407.057333pt;}
.y123f_c00000{bottom:407.294667pt;}
.y177d_c00000{bottom:407.514667pt;}
.y181d_c00000{bottom:407.665333pt;}
.y186d_c00000{bottom:407.677333pt;}
.y5a0_c00000{bottom:407.726667pt;}
.y24b_c00000{bottom:407.741333pt;}
.y4cd_c00000{bottom:407.970667pt;}
.ya43_c00000{bottom:408.065333pt;}
.yc6_c00000{bottom:408.073333pt;}
.y78e_c00000{bottom:408.605333pt;}
.yee6_c00000{bottom:408.760000pt;}
.y115a_c00000{bottom:408.985333pt;}
.y16b8_c00000{bottom:409.000000pt;}
.y1924_c00000{bottom:409.048000pt;}
.y639_c00000{bottom:409.177333pt;}
.y1758_c00000{bottom:409.205333pt;}
.y1643_c00000{bottom:409.424000pt;}
.y1610_c00000{bottom:409.674667pt;}
.y8c5_c00000{bottom:410.146667pt;}
.y10fc_c00000{bottom:410.286667pt;}
.y281_c00000{bottom:410.478667pt;}
.y1381_c00000{bottom:410.590667pt;}
.y13fb_c00000{bottom:410.818667pt;}
.y1696_c00000{bottom:411.062667pt;}
.y5f3_c00000{bottom:411.261333pt;}
.ye24_c00000{bottom:411.268000pt;}
.y18a2_c00000{bottom:411.490667pt;}
.y9ac_c00000{bottom:411.532000pt;}
.yfa0_c00000{bottom:411.720000pt;}
.yaaa_c00000{bottom:411.738667pt;}
.y112e_c00000{bottom:411.813333pt;}
.yde3_c00000{bottom:411.930667pt;}
.yaf7_c00000{bottom:412.132000pt;}
.y1415_c00000{bottom:412.244000pt;}
.y85c_c00000{bottom:412.590667pt;}
.y1287_c00000{bottom:412.818667pt;}
.y1601_c00000{bottom:412.857333pt;}
.y1077_c00000{bottom:412.864000pt;}
.y4ae_c00000{bottom:412.944000pt;}
.y501_c00000{bottom:413.048000pt;}
.y11ec_c00000{bottom:413.281333pt;}
.ye60_c00000{bottom:413.517333pt;}
.y16df_c00000{bottom:413.574667pt;}
.y1113_c00000{bottom:413.900000pt;}
.y6ec_c00000{bottom:414.376000pt;}
.y17fa_c00000{bottom:414.478667pt;}
.yb38_c00000{bottom:414.486667pt;}
.y617_c00000{bottom:414.506667pt;}
.y1e1_c00000{bottom:414.589333pt;}
.y12fb_c00000{bottom:414.604000pt;}
.y1734_c00000{bottom:414.625333pt;}
.yac9_c00000{bottom:414.712000pt;}
.ydc7_c00000{bottom:414.740000pt;}
.y1497_c00000{bottom:414.816000pt;}
.yd9c_c00000{bottom:415.125333pt;}
.yea1_c00000{bottom:415.130667pt;}
.y371_c00000{bottom:415.388000pt;}
.y10e6_c00000{bottom:415.456000pt;}
.y1840_c00000{bottom:415.464000pt;}
.y53e_c00000{bottom:415.480000pt;}
.y1920_c00000{bottom:415.550667pt;}
.yd7a_c00000{bottom:415.590667pt;}
.y498_c00000{bottom:415.606667pt;}
.yd00_c00000{bottom:415.616000pt;}
.y9e8_c00000{bottom:415.682667pt;}
.y26a_c00000{bottom:415.704000pt;}
.y1a_c00000{bottom:415.844640pt;}
.y1483_c00000{bottom:416.018667pt;}
.y140_c00000{bottom:416.036000pt;}
.y674_c00000{bottom:416.306667pt;}
.yb7b_c00000{bottom:416.322667pt;}
.y89_c00000{bottom:416.369333pt;}
.yc3a_c00000{bottom:416.437333pt;}
.y1229_c00000{bottom:416.494667pt;}
.y179e_c00000{bottom:416.525333pt;}
.yb98_c00000{bottom:416.560000pt;}
.y194f_c00000{bottom:416.714667pt;}
.yad7_c00000{bottom:416.716000pt;}
.y3ce_c00000{bottom:416.818667pt;}
.yf33_c00000{bottom:417.010667pt;}
.y12af_c00000{bottom:417.224000pt;}
.yc1a_c00000{bottom:417.350667pt;}
.y88e_c00000{bottom:417.538667pt;}
.y1532_c00000{bottom:417.637333pt;}
.y128_c00000{bottom:417.684000pt;}
.yd5a_c00000{bottom:417.925333pt;}
.y12cf_c00000{bottom:417.973333pt;}
.y177_c00000{bottom:418.053333pt;}
.y1180_c00000{bottom:418.322667pt;}
.yfbc_c00000{bottom:418.700000pt;}
.y144b_c00000{bottom:419.182667pt;}
.y473_c00000{bottom:419.224000pt;}
.y10a9_c00000{bottom:419.232000pt;}
.y72f_c00000{bottom:419.238667pt;}
.y8a4_c00000{bottom:419.445333pt;}
.y1320_c00000{bottom:419.578667pt;}
.y32c_c00000{bottom:419.666667pt;}
.y2f2_c00000{bottom:419.681333pt;}
.yef4_c00000{bottom:419.800000pt;}
.y14ad_c00000{bottom:419.808000pt;}
.y17ed_c00000{bottom:420.506667pt;}
.y15d_c00000{bottom:421.002667pt;}
.y96b_c00000{bottom:421.010667pt;}
.y18d9_c00000{bottom:421.121333pt;}
.y54e_c00000{bottom:421.224000pt;}
.ybdf_c00000{bottom:421.349333pt;}
.yf1f_c00000{bottom:421.368000pt;}
.y180f_c00000{bottom:421.376000pt;}
.y156b_c00000{bottom:421.389333pt;}
.y1096_c00000{bottom:421.453333pt;}
.y2b7_c00000{bottom:421.893333pt;}
.ycc2_c00000{bottom:421.981333pt;}
.y200_c00000{bottom:422.114667pt;}
.y654_c00000{bottom:422.206667pt;}
.y6bb_c00000{bottom:422.338667pt;}
.yc69_c00000{bottom:422.340000pt;}
.y11c2_c00000{bottom:422.454667pt;}
.y1051_c00000{bottom:422.552000pt;}
.y16cc_c00000{bottom:422.553333pt;}
.y5b8_c00000{bottom:422.796000pt;}
.y14c8_c00000{bottom:422.826667pt;}
.y1427_c00000{bottom:422.953333pt;}
.y74e_c00000{bottom:423.021333pt;}
.yb24_c00000{bottom:423.345333pt;}
.y18cc_c00000{bottom:423.442667pt;}
.y768_c00000{bottom:423.453333pt;}
.ye37_c00000{bottom:423.578667pt;}
.yebe_c00000{bottom:423.616000pt;}
.y687_c00000{bottom:423.645333pt;}
.y21a_c00000{bottom:423.666667pt;}
.yab_c00000{bottom:423.681333pt;}
.y1002_c00000{bottom:423.769333pt;}
.y585_c00000{bottom:423.921333pt;}
.y7df_c00000{bottom:423.948000pt;}
.y2d7_c00000{bottom:424.050667pt;}
.y1369_c00000{bottom:424.088000pt;}
.y15ca_c00000{bottom:424.444000pt;}
.y234_c00000{bottom:424.558667pt;}
.y104_c00000{bottom:424.664000pt;}
.y12ee_c00000{bottom:424.870667pt;}
.y1159_c00000{bottom:424.926667pt;}
.y1642_c00000{bottom:425.364000pt;}
.y98a_c00000{bottom:425.408000pt;}
.y1348_c00000{bottom:425.744000pt;}
.y18fc_c00000{bottom:425.881333pt;}
.yf6f_c00000{bottom:426.098667pt;}
.y4da_c00000{bottom:426.316000pt;}
.y193f_c00000{bottom:426.432000pt;}
.ybd5_c00000{bottom:427.288000pt;}
.y14ef_c00000{bottom:427.549333pt;}
.ya5a_c00000{bottom:427.645333pt;}
.y3fa_c00000{bottom:427.746667pt;}
.y4f1_c00000{bottom:427.858667pt;}
.y11a1_c00000{bottom:428.181333pt;}
.yd41_c00000{bottom:428.466667pt;}
.y15e3_c00000{bottom:428.493333pt;}
.ya6f_c00000{bottom:428.522667pt;}
.y199_c00000{bottom:428.530667pt;}
.y65_c00000{bottom:428.950667pt;}
.y387_c00000{bottom:428.973333pt;}
.yce1_c00000{bottom:429.396000pt;}
.y9cf_c00000{bottom:429.441333pt;}
.y17d8_c00000{bottom:429.468000pt;}
.y13eb_c00000{bottom:429.570667pt;}
.y1774_c00000{bottom:429.625333pt;}
.y139e_c00000{bottom:429.636000pt;}
.y7f7_c00000{bottom:429.760000pt;}
.ybc1_c00000{bottom:429.764000pt;}
.y8ee_c00000{bottom:430.086667pt;}
.y779_c00000{bottom:430.088000pt;}
.yc78_c00000{bottom:430.213333pt;}
.y3eb_c00000{bottom:430.316000pt;}
.y160f_c00000{bottom:430.436000pt;}
.ybf4_c00000{bottom:430.742667pt;}
.y34f_c00000{bottom:430.869333pt;}
.y3a6_c00000{bottom:430.960000pt;}
.y123e_c00000{bottom:431.198667pt;}
.y450_c00000{bottom:431.202667pt;}
.y177c_c00000{bottom:431.417333pt;}
.y181c_c00000{bottom:431.568000pt;}
.y59f_c00000{bottom:431.629333pt;}
.y24a_c00000{bottom:431.644000pt;}
.y4cc_c00000{bottom:431.873333pt;}
.ya42_c00000{bottom:431.968000pt;}
.yc5_c00000{bottom:431.977333pt;}
.yf54_c00000{bottom:432.009333pt;}
.y921_c00000{bottom:432.508000pt;}
.yee5_c00000{bottom:432.664000pt;}
.y16b7_c00000{bottom:432.902667pt;}
.y13c3_c00000{bottom:432.936000pt;}
.y638_c00000{bottom:433.080000pt;}
.y1757_c00000{bottom:433.108000pt;}
.y1531_c00000{bottom:433.578667pt;}
.y19_c00000{bottom:433.600000pt;}
.y176_c00000{bottom:433.993333pt;}
.y8c4_c00000{bottom:434.050667pt;}
.y280_c00000{bottom:434.381333pt;}
.yfdb_c00000{bottom:434.473333pt;}
.y1380_c00000{bottom:434.493333pt;}
.y931_c00000{bottom:434.721333pt;}
.y1695_c00000{bottom:434.965333pt;}
.y5f2_c00000{bottom:435.165333pt;}
.y9ab_c00000{bottom:435.434667pt;}
.yf9f_c00000{bottom:435.622667pt;}
.yaa9_c00000{bottom:435.641333pt;}
.yde2_c00000{bottom:435.833333pt;}
.yaf6_c00000{bottom:436.036000pt;}
.y1414_c00000{bottom:436.146667pt;}
.y85b_c00000{bottom:436.493333pt;}
.y1286_c00000{bottom:436.721333pt;}
.y1600_c00000{bottom:436.761333pt;}
.y1076_c00000{bottom:436.766667pt;}
.y4ad_c00000{bottom:436.846667pt;}
.yc47_c00000{bottom:436.848000pt;}
.y500_c00000{bottom:436.950667pt;}
.ye9_c00000{bottom:437.352000pt;}
.ye5f_c00000{bottom:437.420000pt;}
.y16de_c00000{bottom:437.477333pt;}
.y6eb_c00000{bottom:438.278667pt;}
.y17f9_c00000{bottom:438.382667pt;}
.yb37_c00000{bottom:438.389333pt;}
.y616_c00000{bottom:438.409333pt;}
.y1e0_c00000{bottom:438.493333pt;}
.y12fa_c00000{bottom:438.508000pt;}
.y1733_c00000{bottom:438.529333pt;}
.yac8_c00000{bottom:438.614667pt;}
.ydc6_c00000{bottom:438.642667pt;}
.y1496_c00000{bottom:438.718667pt;}
.yd9b_c00000{bottom:439.028000pt;}
.yea0_c00000{bottom:439.033333pt;}
.y370_c00000{bottom:439.290667pt;}
.y183f_c00000{bottom:439.366667pt;}
.y78d_c00000{bottom:439.370667pt;}
.y53d_c00000{bottom:439.384000pt;}
.y191f_c00000{bottom:439.453333pt;}
.yd79_c00000{bottom:439.493333pt;}
.y497_c00000{bottom:439.510667pt;}
.ycff_c00000{bottom:439.518667pt;}
.y523_c00000{bottom:439.533333pt;}
.y9e7_c00000{bottom:439.585333pt;}
.y269_c00000{bottom:439.606667pt;}
.y13f_c00000{bottom:439.938667pt;}
.y673_c00000{bottom:440.210667pt;}
.yb7a_c00000{bottom:440.225333pt;}
.y88_c00000{bottom:440.272000pt;}
.yc39_c00000{bottom:440.340000pt;}
.y1228_c00000{bottom:440.398667pt;}
.y179d_c00000{bottom:440.428000pt;}
.yad6_c00000{bottom:440.618667pt;}
.y3cd_c00000{bottom:440.721333pt;}
.y1158_c00000{bottom:440.866667pt;}
.y12ae_c00000{bottom:441.128000pt;}
.y1641_c00000{bottom:441.305333pt;}
.y88d_c00000{bottom:441.441333pt;}
.y127_c00000{bottom:441.586667pt;}
.yd59_c00000{bottom:441.828000pt;}
.y12ce_c00000{bottom:441.877333pt;}
.y117f_c00000{bottom:442.226667pt;}
.ye23_c00000{bottom:442.434667pt;}
.y1042_c00000{bottom:442.476000pt;}
.yfbb_c00000{bottom:442.602667pt;}
.y40_c00000{bottom:443.080000pt;}
.y144a_c00000{bottom:443.085333pt;}
.y472_c00000{bottom:443.128000pt;}
.y10a8_c00000{bottom:443.134667pt;}
.y72e_c00000{bottom:443.142667pt;}
.y18bc_c00000{bottom:443.198667pt;}
.y131f_c00000{bottom:443.481333pt;}
.y2f1_c00000{bottom:443.585333pt;}
.y14ac_c00000{bottom:443.710667pt;}
.y17ec_c00000{bottom:444.410667pt;}
.y15c_c00000{bottom:444.905333pt;}
.y96a_c00000{bottom:444.913333pt;}
.y18d8_c00000{bottom:445.024000pt;}
.yb0a_c00000{bottom:445.126667pt;}
.y54d_c00000{bottom:445.128000pt;}
.y1391_c00000{bottom:445.253333pt;}
.yf1e_c00000{bottom:445.270667pt;}
.y180e_c00000{bottom:445.278667pt;}
.y156a_c00000{bottom:445.292000pt;}
.ye71_c00000{bottom:445.356000pt;}
.y1157_c00000{bottom:445.686667pt;}
.y2b6_c00000{bottom:445.796000pt;}
.ycc1_c00000{bottom:445.884000pt;}
.y653_c00000{bottom:446.109333pt;}
.y6ba_c00000{bottom:446.241333pt;}
.y11c1_c00000{bottom:446.357333pt;}
.y16cb_c00000{bottom:446.456000pt;}
.y5b7_c00000{bottom:446.698667pt;}
.y74d_c00000{bottom:446.924000pt;}
.yb23_c00000{bottom:447.248000pt;}
.y18cb_c00000{bottom:447.345333pt;}
.y767_c00000{bottom:447.356000pt;}
.ye36_c00000{bottom:447.481333pt;}
.yebd_c00000{bottom:447.518667pt;}
.y686_c00000{bottom:447.548000pt;}
.y219_c00000{bottom:447.569333pt;}
.yc08_c00000{bottom:447.584000pt;}
.yaa_c00000{bottom:447.585333pt;}
.y112d_c00000{bottom:447.640000pt;}
.y1001_c00000{bottom:447.673333pt;}
.y584_c00000{bottom:447.824000pt;}
.y7de_c00000{bottom:447.850667pt;}
.y2d6_c00000{bottom:447.953333pt;}
.y1368_c00000{bottom:447.990667pt;}
.yc19_c00000{bottom:448.116000pt;}
.y15c9_c00000{bottom:448.346667pt;}
.y233_c00000{bottom:448.461333pt;}
.y103_c00000{bottom:448.566667pt;}
.y989_c00000{bottom:449.310667pt;}
.y10fb_c00000{bottom:449.490667pt;}
.y1347_c00000{bottom:449.646667pt;}
.y18fb_c00000{bottom:449.784000pt;}
.y11eb_c00000{bottom:449.821333pt;}
.ycc0_c00000{bottom:449.913333pt;}
.y175_c00000{bottom:449.933333pt;}
.yf6e_c00000{bottom:450.002667pt;}
.y1910_c00000{bottom:450.204000pt;}
.y8a3_c00000{bottom:450.210667pt;}
.yba3_c00000{bottom:450.218667pt;}
.ye6b_c00000{bottom:450.220000pt;}
.y193e_c00000{bottom:450.334667pt;}
.ybd4_c00000{bottom:451.192000pt;}
.y14ee_c00000{bottom:451.452000pt;}
.ya59_c00000{bottom:451.548000pt;}
.y11f9_c00000{bottom:451.614667pt;}
.y3f9_c00000{bottom:451.650667pt;}
.y4f0_c00000{bottom:451.761333pt;}
.y11a0_c00000{bottom:452.084000pt;}
.yd40_c00000{bottom:452.370667pt;}
.y15e2_c00000{bottom:452.396000pt;}
.ya6e_c00000{bottom:452.425333pt;}
.y198_c00000{bottom:452.433333pt;}
.y64_c00000{bottom:452.853333pt;}
.y15a2_c00000{bottom:452.876000pt;}
.yce0_c00000{bottom:453.298667pt;}
.y1050_c00000{bottom:453.318667pt;}
.y10e5_c00000{bottom:453.366667pt;}
.y17d7_c00000{bottom:453.370667pt;}
.y13ea_c00000{bottom:453.473333pt;}
.y139d_c00000{bottom:453.538667pt;}
.y7f6_c00000{bottom:453.662667pt;}
.ybc0_c00000{bottom:453.666667pt;}
.y778_c00000{bottom:453.990667pt;}
.yc77_c00000{bottom:454.116000pt;}
.y3ea_c00000{bottom:454.218667pt;}
.y1530_c00000{bottom:454.338667pt;}
.y127a_c00000{bottom:454.344000pt;}
.y1112_c00000{bottom:454.645333pt;}
.y18_c00000{bottom:454.720000pt;}
.y34e_c00000{bottom:454.772000pt;}
.y1426_c00000{bottom:454.806667pt;}
.y3a5_c00000{bottom:454.864000pt;}
.y123d_c00000{bottom:455.101333pt;}
.y44f_c00000{bottom:455.105333pt;}
.y177b_c00000{bottom:455.320000pt;}
.y181b_c00000{bottom:455.470667pt;}
.y59e_c00000{bottom:455.533333pt;}
.y249_c00000{bottom:455.548000pt;}
.y1482_c00000{bottom:455.682667pt;}
.y4cb_c00000{bottom:455.776000pt;}
.ya41_c00000{bottom:455.870667pt;}
.yc4_c00000{bottom:455.880000pt;}
.yf53_c00000{bottom:455.913333pt;}
.y920_c00000{bottom:456.410667pt;}
.yee4_c00000{bottom:456.566667pt;}
.y16b6_c00000{bottom:456.805333pt;}
.y637_c00000{bottom:456.984000pt;}
.y1640_c00000{bottom:457.245333pt;}
.y8c3_c00000{bottom:457.953333pt;}
.y1156_c00000{bottom:458.230667pt;}
.y27f_c00000{bottom:458.284000pt;}
.yfda_c00000{bottom:458.377333pt;}
.y5c8_c00000{bottom:458.625333pt;}
.y1694_c00000{bottom:458.868000pt;}
.y5f1_c00000{bottom:459.068000pt;}
.y9aa_c00000{bottom:459.337333pt;}
.yf9e_c00000{bottom:459.525333pt;}
.yaa8_c00000{bottom:459.544000pt;}
.yde1_c00000{bottom:459.737333pt;}
.yaf5_c00000{bottom:459.938667pt;}
.y1413_c00000{bottom:460.049333pt;}
.y85a_c00000{bottom:460.396000pt;}
.y9ce_c00000{bottom:460.569333pt;}
.y1285_c00000{bottom:460.625333pt;}
.y15ff_c00000{bottom:460.664000pt;}
.y1075_c00000{bottom:460.669333pt;}
.y4ac_c00000{bottom:460.750667pt;}
.y32b_c00000{bottom:460.838667pt;}
.y426_c00000{bottom:460.853333pt;}
.y1ff_c00000{bottom:461.206667pt;}
.ye8_c00000{bottom:461.254667pt;}
.ye5e_c00000{bottom:461.322667pt;}
.y16dd_c00000{bottom:461.380000pt;}
.y6ea_c00000{bottom:462.181333pt;}
.yb36_c00000{bottom:462.292000pt;}
.y1960_c00000{bottom:462.293333pt;}
.y1df_c00000{bottom:462.396000pt;}
.y12f9_c00000{bottom:462.410667pt;}
.y1732_c00000{bottom:462.432000pt;}
.y14c7_c00000{bottom:462.456000pt;}
.yac7_c00000{bottom:462.517333pt;}
.ydc5_c00000{bottom:462.545333pt;}
.y1495_c00000{bottom:462.621333pt;}
.yd9a_c00000{bottom:462.930667pt;}
.ye9f_c00000{bottom:462.936000pt;}
.y183e_c00000{bottom:463.269333pt;}
.y53c_c00000{bottom:463.286667pt;}
.y191e_c00000{bottom:463.357333pt;}
.yd78_c00000{bottom:463.396000pt;}
.y496_c00000{bottom:463.413333pt;}
.ycfe_c00000{bottom:463.422667pt;}
.y522_c00000{bottom:463.436000pt;}
.y9e6_c00000{bottom:463.488000pt;}
.y268_c00000{bottom:463.510667pt;}
.y13e_c00000{bottom:463.841333pt;}
.y672_c00000{bottom:464.113333pt;}
.yb79_c00000{bottom:464.129333pt;}
.y87_c00000{bottom:464.174667pt;}
.yc38_c00000{bottom:464.242667pt;}
.y1227_c00000{bottom:464.301333pt;}
.y179c_c00000{bottom:464.330667pt;}
.yad5_c00000{bottom:464.521333pt;}
.y3cc_c00000{bottom:464.624000pt;}
.y12ad_c00000{bottom:465.030667pt;}
.y192b_c00000{bottom:465.258667pt;}
.y88c_c00000{bottom:465.344000pt;}
.y126_c00000{bottom:465.489333pt;}
.yd58_c00000{bottom:465.732000pt;}
.y174_c00000{bottom:465.873333pt;}
.y1041_c00000{bottom:466.378667pt;}
.y1449_c00000{bottom:466.988000pt;}
.y471_c00000{bottom:467.030667pt;}
.y10a7_c00000{bottom:467.037333pt;}
.y72d_c00000{bottom:467.045333pt;}
.y18bb_c00000{bottom:467.101333pt;}
.y131e_c00000{bottom:467.384000pt;}
.y1773_c00000{bottom:467.482667pt;}
.y2f0_c00000{bottom:467.488000pt;}
.y14ab_c00000{bottom:467.613333pt;}
.y17eb_c00000{bottom:468.313333pt;}
.y15b_c00000{bottom:468.809333pt;}
.y969_c00000{bottom:468.816000pt;}
.y54c_c00000{bottom:469.030667pt;}
.yf1d_c00000{bottom:469.173333pt;}
.y180d_c00000{bottom:469.181333pt;}
.y1569_c00000{bottom:469.194667pt;}
.ycb6_c00000{bottom:469.258667pt;}
.y2b5_c00000{bottom:469.700000pt;}
.y652_c00000{bottom:470.012000pt;}
.y6b9_c00000{bottom:470.144000pt;}
.y11c0_c00000{bottom:470.260000pt;}
.y16ca_c00000{bottom:470.358667pt;}
.ybf3_c00000{bottom:470.500000pt;}
.y5b6_c00000{bottom:470.601333pt;}
.y173_c00000{bottom:470.694667pt;}
.y74c_c00000{bottom:470.826667pt;}
.yb22_c00000{bottom:471.152000pt;}
.y18ca_c00000{bottom:471.248000pt;}
.y766_c00000{bottom:471.258667pt;}
.ye35_c00000{bottom:471.384000pt;}
.yebc_c00000{bottom:471.421333pt;}
.y685_c00000{bottom:471.450667pt;}
.y218_c00000{bottom:471.473333pt;}
.ya9_c00000{bottom:471.488000pt;}
.y112c_c00000{bottom:471.544000pt;}
.y1000_c00000{bottom:471.576000pt;}
.y583_c00000{bottom:471.726667pt;}
.y7dd_c00000{bottom:471.753333pt;}
.y2d5_c00000{bottom:471.856000pt;}
.y15c8_c00000{bottom:472.249333pt;}
.yc68_c00000{bottom:472.312000pt;}
.y232_c00000{bottom:472.364000pt;}
.y102_c00000{bottom:472.469333pt;}
.yef3_c00000{bottom:472.557333pt;}
.y163f_c00000{bottom:473.185333pt;}
.y988_c00000{bottom:473.213333pt;}
.y10fa_c00000{bottom:473.393333pt;}
.ye22_c00000{bottom:473.601333pt;}
.y18fa_c00000{bottom:473.686667pt;}
.y11ea_c00000{bottom:473.724000pt;}
.yf6d_c00000{bottom:473.905333pt;}
.y36f_c00000{bottom:473.925333pt;}
.ybde_c00000{bottom:474.108000pt;}
.yba2_c00000{bottom:474.122667pt;}
.y1155_c00000{bottom:474.170667pt;}
.y193d_c00000{bottom:474.238667pt;}
.y1756_c00000{bottom:474.248000pt;}
.y12ed_c00000{bottom:474.638667pt;}
.y14ed_c00000{bottom:475.354667pt;}
.y3f8_c00000{bottom:475.553333pt;}
.y4ef_c00000{bottom:475.664000pt;}
.y5d9_c00000{bottom:475.665333pt;}
.y18d7_c00000{bottom:475.790667pt;}
.y1671_c00000{bottom:475.893333pt;}
.y119f_c00000{bottom:475.988000pt;}
.yd3f_c00000{bottom:476.273333pt;}
.yb97_c00000{bottom:476.286667pt;}
.y15e1_c00000{bottom:476.298667pt;}
.ya6d_c00000{bottom:476.329333pt;}
.y197_c00000{bottom:476.336000pt;}
.y63_c00000{bottom:476.757333pt;}
.ycdf_c00000{bottom:477.201333pt;}
.y10e4_c00000{bottom:477.269333pt;}
.y17d6_c00000{bottom:477.273333pt;}
.y13e9_c00000{bottom:477.376000pt;}
.y139c_c00000{bottom:477.442667pt;}
.y7f5_c00000{bottom:477.565333pt;}
.ybbf_c00000{bottom:477.569333pt;}
.y777_c00000{bottom:477.893333pt;}
.yc76_c00000{bottom:478.018667pt;}
.y3e9_c00000{bottom:478.122667pt;}
.y1111_c00000{bottom:478.548000pt;}
.y34d_c00000{bottom:478.674667pt;}
.y1425_c00000{bottom:478.709333pt;}
.y3a4_c00000{bottom:478.766667pt;}
.y44e_c00000{bottom:479.008000pt;}
.y177a_c00000{bottom:479.224000pt;}
.y117e_c00000{bottom:479.420000pt;}
.y59d_c00000{bottom:479.436000pt;}
.y248_c00000{bottom:479.450667pt;}
.y615_c00000{bottom:479.493333pt;}
.y1481_c00000{bottom:479.585333pt;}
.y4ca_c00000{bottom:479.678667pt;}
.ya40_c00000{bottom:479.773333pt;}
.yc3_c00000{bottom:479.782667pt;}
.y91f_c00000{bottom:480.313333pt;}
.y1346_c00000{bottom:480.413333pt;}
.yee3_c00000{bottom:480.469333pt;}
.y636_c00000{bottom:480.886667pt;}
.yfba_c00000{bottom:480.892000pt;}
.y8c2_c00000{bottom:481.856000pt;}
.yfd9_c00000{bottom:482.280000pt;}
.y13fa_c00000{bottom:482.528000pt;}
.ycbf_c00000{bottom:482.589333pt;}
.y3f_c00000{bottom:482.590667pt;}
.y1693_c00000{bottom:482.772000pt;}
.y12cd_c00000{bottom:482.778667pt;}
.y5f0_c00000{bottom:482.970667pt;}
.y158a_c00000{bottom:483.200000pt;}
.y172_c00000{bottom:483.238667pt;}
.y9a9_c00000{bottom:483.240000pt;}
.yde0_c00000{bottom:483.640000pt;}
.yaf4_c00000{bottom:483.841333pt;}
.y1412_c00000{bottom:483.952000pt;}
.y859_c00000{bottom:484.298667pt;}
.y9cd_c00000{bottom:484.472000pt;}
.y15fe_c00000{bottom:484.566667pt;}
.y1074_c00000{bottom:484.573333pt;}
.y4ab_c00000{bottom:484.653333pt;}
.y32a_c00000{bottom:484.741333pt;}
.y386_c00000{bottom:484.756000pt;}
.y1fe_c00000{bottom:485.109333pt;}
.ye7_c00000{bottom:485.157333pt;}
.ye5d_c00000{bottom:485.226667pt;}
.y16dc_c00000{bottom:485.284000pt;}
.y6e9_c00000{bottom:486.085333pt;}
.yb35_c00000{bottom:486.196000pt;}
.y1de_c00000{bottom:486.298667pt;}
.y1731_c00000{bottom:486.334667pt;}
.y14c6_c00000{bottom:486.358667pt;}
.yac6_c00000{bottom:486.420000pt;}
.ydc4_c00000{bottom:486.449333pt;}
.ybd3_c00000{bottom:486.525333pt;}
.yd99_c00000{bottom:486.833333pt;}
.ye9e_c00000{bottom:486.838667pt;}
.y17_c00000{bottom:486.880000pt;}
.y183d_c00000{bottom:487.173333pt;}
.y53b_c00000{bottom:487.189333pt;}
.y123c_c00000{bottom:487.197333pt;}
.y191d_c00000{bottom:487.260000pt;}
.yd77_c00000{bottom:487.298667pt;}
.y495_c00000{bottom:487.316000pt;}
.ycfd_c00000{bottom:487.325333pt;}
.y521_c00000{bottom:487.338667pt;}
.y9e5_c00000{bottom:487.392000pt;}
.y267_c00000{bottom:487.413333pt;}
.y13d_c00000{bottom:487.744000pt;}
.y86_c00000{bottom:488.077333pt;}
.yc37_c00000{bottom:488.146667pt;}
.y1226_c00000{bottom:488.204000pt;}
.yca8_c00000{bottom:488.424000pt;}
.y3cb_c00000{bottom:488.528000pt;}
.y12ac_c00000{bottom:488.933333pt;}
.y163e_c00000{bottom:489.125333pt;}
.y1367_c00000{bottom:489.162667pt;}
.y125_c00000{bottom:489.393333pt;}
.yd57_c00000{bottom:489.634667pt;}
.y1154_c00000{bottom:490.112000pt;}
.y1040_c00000{bottom:490.281333pt;}
.y470_c00000{bottom:490.933333pt;}
.y10a6_c00000{bottom:490.941333pt;}
.y72c_c00000{bottom:490.948000pt;}
.y18ba_c00000{bottom:491.005333pt;}
.yf52_c00000{bottom:491.177333pt;}
.y131d_c00000{bottom:491.288000pt;}
.y1772_c00000{bottom:491.385333pt;}
.y2ef_c00000{bottom:491.390667pt;}
.y14aa_c00000{bottom:491.516000pt;}
.y17ea_c00000{bottom:492.216000pt;}
.y15a_c00000{bottom:492.712000pt;}
.y968_c00000{bottom:492.718667pt;}
.y54b_c00000{bottom:492.933333pt;}
.y143a_c00000{bottom:493.058667pt;}
.yf1c_c00000{bottom:493.076000pt;}
.y1568_c00000{bottom:493.098667pt;}
.yb4f_c00000{bottom:493.161333pt;}
.y1458_c00000{bottom:493.162667pt;}
.y12f8_c00000{bottom:493.176000pt;}
.y2b4_c00000{bottom:493.602667pt;}
.y651_c00000{bottom:493.916000pt;}
.y6b8_c00000{bottom:494.048000pt;}
.y11bf_c00000{bottom:494.162667pt;}
.y16c9_c00000{bottom:494.261333pt;}
.ybf2_c00000{bottom:494.402667pt;}
.y5b5_c00000{bottom:494.504000pt;}
.y74b_c00000{bottom:494.730667pt;}
.y1153_c00000{bottom:494.932000pt;}
.yb21_c00000{bottom:495.054667pt;}
.y765_c00000{bottom:495.161333pt;}
.yad4_c00000{bottom:495.288000pt;}
.yebb_c00000{bottom:495.325333pt;}
.y684_c00000{bottom:495.353333pt;}
.y217_c00000{bottom:495.376000pt;}
.ya8_c00000{bottom:495.390667pt;}
.y112b_c00000{bottom:495.446667pt;}
.yfff_c00000{bottom:495.478667pt;}
.y16b5_c00000{bottom:495.502667pt;}
.y582_c00000{bottom:495.630667pt;}
.y7dc_c00000{bottom:495.656000pt;}
.y2d4_c00000{bottom:495.760000pt;}
.y15c7_c00000{bottom:496.153333pt;}
.yc67_c00000{bottom:496.214667pt;}
.y231_c00000{bottom:496.268000pt;}
.yef2_c00000{bottom:496.468000pt;}
.y987_c00000{bottom:497.116000pt;}
.y10f9_c00000{bottom:497.296000pt;}
.ye21_c00000{bottom:497.504000pt;}
.y18f9_c00000{bottom:497.590667pt;}
.y11e9_c00000{bottom:497.626667pt;}
.yf6c_c00000{bottom:497.808000pt;}
.y36e_c00000{bottom:497.829333pt;}
.y1390_c00000{bottom:498.010667pt;}
.yba1_c00000{bottom:498.025333pt;}
.yc18_c00000{bottom:498.150667pt;}
.y12ec_c00000{bottom:498.541333pt;}
.y179b_c00000{bottom:498.588000pt;}
.y171_c00000{bottom:499.178667pt;}
.y27e_c00000{bottom:499.456000pt;}
.y5d8_c00000{bottom:499.568000pt;}
.yd3e_c00000{bottom:500.176000pt;}
.yb96_c00000{bottom:500.189333pt;}
.y15e0_c00000{bottom:500.202667pt;}
.ya6c_c00000{bottom:500.232000pt;}
.y196_c00000{bottom:500.238667pt;}
.yf9d_c00000{bottom:500.398667pt;}
.y62_c00000{bottom:500.660000pt;}
.ycde_c00000{bottom:501.104000pt;}
.y10e3_c00000{bottom:501.173333pt;}
.y17d5_c00000{bottom:501.176000pt;}
.y13e8_c00000{bottom:501.280000pt;}
.y7f4_c00000{bottom:501.468000pt;}
.ybbe_c00000{bottom:501.472000pt;}
.y776_c00000{bottom:501.796000pt;}
.y3e8_c00000{bottom:502.025333pt;}
.y1455_c00000{bottom:502.150667pt;}
.y1110_c00000{bottom:502.452000pt;}
.y34c_c00000{bottom:502.577333pt;}
.y1424_c00000{bottom:502.612000pt;}
.y3a3_c00000{bottom:502.669333pt;}
.y88b_c00000{bottom:502.734667pt;}
.y44d_c00000{bottom:502.910667pt;}
.y1779_c00000{bottom:503.126667pt;}
.y117d_c00000{bottom:503.322667pt;}
.y59c_c00000{bottom:503.338667pt;}
.y247_c00000{bottom:503.353333pt;}
.y614_c00000{bottom:503.397333pt;}
.y1480_c00000{bottom:503.488000pt;}
.y4c9_c00000{bottom:503.581333pt;}
.y671_c00000{bottom:503.654667pt;}
.ya3f_c00000{bottom:503.677333pt;}
.yc2_c00000{bottom:503.685333pt;}
.y91e_c00000{bottom:504.217333pt;}
.yee2_c00000{bottom:504.372000pt;}
.yfb9_c00000{bottom:504.794667pt;}
.y163d_c00000{bottom:505.065333pt;}
.y1448_c00000{bottom:505.092000pt;}
.yb78_c00000{bottom:505.300000pt;}
.y8c1_c00000{bottom:505.758667pt;}
.y16_c00000{bottom:505.920000pt;}
.yfd8_c00000{bottom:506.182667pt;}
.y180c_c00000{bottom:506.189333pt;}
.y4ee_c00000{bottom:506.430667pt;}
.ycbe_c00000{bottom:506.492000pt;}
.y1692_c00000{bottom:506.674667pt;}
.y12cc_c00000{bottom:506.681333pt;}
.y5ef_c00000{bottom:506.873333pt;}
.y1279_c00000{bottom:507.102667pt;}
.y9a8_c00000{bottom:507.144000pt;}
.y18c9_c00000{bottom:507.222667pt;}
.y1152_c00000{bottom:507.476000pt;}
.yddf_c00000{bottom:507.542667pt;}
.yaf3_c00000{bottom:507.744000pt;}
.y1411_c00000{bottom:507.856000pt;}
.y858_c00000{bottom:508.201333pt;}
.y139b_c00000{bottom:508.208000pt;}
.y9cc_c00000{bottom:508.374667pt;}
.y15fd_c00000{bottom:508.469333pt;}
.y1073_c00000{bottom:508.476000pt;}
.y329_c00000{bottom:508.645333pt;}
.y385_c00000{bottom:508.660000pt;}
.yc75_c00000{bottom:508.785333pt;}
.y1fd_c00000{bottom:509.012000pt;}
.y100_c00000{bottom:509.060000pt;}
.ye6_c00000{bottom:509.061333pt;}
.ye5c_c00000{bottom:509.129333pt;}
.y14ec_c00000{bottom:509.276000pt;}
.ya02_c00000{bottom:509.988000pt;}
.yb34_c00000{bottom:510.098667pt;}
.y1dd_c00000{bottom:510.201333pt;}
.y1730_c00000{bottom:510.237333pt;}
.y14c5_c00000{bottom:510.261333pt;}
.yac5_c00000{bottom:510.322667pt;}
.ydc3_c00000{bottom:510.352000pt;}
.ybd2_c00000{bottom:510.428000pt;}
.y193c_c00000{bottom:510.480000pt;}
.yd98_c00000{bottom:510.737333pt;}
.ye9d_c00000{bottom:510.742667pt;}
.y183c_c00000{bottom:511.076000pt;}
.y53a_c00000{bottom:511.092000pt;}
.y123b_c00000{bottom:511.100000pt;}
.y191c_c00000{bottom:511.162667pt;}
.yd76_c00000{bottom:511.202667pt;}
.y494_c00000{bottom:511.218667pt;}
.ycfc_c00000{bottom:511.228000pt;}
.y520_c00000{bottom:511.241333pt;}
.y9e4_c00000{bottom:511.294667pt;}
.y266_c00000{bottom:511.316000pt;}
.y13c_c00000{bottom:511.648000pt;}
.y85_c00000{bottom:511.980000pt;}
.yc36_c00000{bottom:512.049333pt;}
.y1225_c00000{bottom:512.106667pt;}
.yca7_c00000{bottom:512.326667pt;}
.y3ca_c00000{bottom:512.430667pt;}
.y1366_c00000{bottom:513.065333pt;}
.y124_c00000{bottom:513.296000pt;}
.yd56_c00000{bottom:513.537333pt;}
.y103f_c00000{bottom:514.185333pt;}
.y119e_c00000{bottom:514.325333pt;}
.y10a5_c00000{bottom:514.844000pt;}
.y72b_c00000{bottom:514.850667pt;}
.y18b9_c00000{bottom:514.908000pt;}
.yf51_c00000{bottom:515.080000pt;}
.y170_c00000{bottom:515.118667pt;}
.y131c_c00000{bottom:515.190667pt;}
.y1771_c00000{bottom:515.288000pt;}
.y2ee_c00000{bottom:515.293333pt;}
.yc46_c00000{bottom:515.420000pt;}
.y17e9_c00000{bottom:516.118667pt;}
.y3c9_c00000{bottom:516.460000pt;}
.ya58_c00000{bottom:516.622667pt;}
.y635_c00000{bottom:516.738667pt;}
.y54a_c00000{bottom:516.836000pt;}
.yf1b_c00000{bottom:516.980000pt;}
.y1567_c00000{bottom:517.001333pt;}
.yeac_c00000{bottom:517.065333pt;}
.y1494_c00000{bottom:517.290667pt;}
.y2b3_c00000{bottom:517.505333pt;}
.y6b7_c00000{bottom:517.950667pt;}
.y11be_c00000{bottom:518.065333pt;}
.y16c8_c00000{bottom:518.164000pt;}
.ybf1_c00000{bottom:518.305333pt;}
.y5b4_c00000{bottom:518.406667pt;}
.y74a_c00000{bottom:518.633333pt;}
.yb20_c00000{bottom:518.957333pt;}
.y764_c00000{bottom:519.065333pt;}
.yc9e_c00000{bottom:519.190667pt;}
.yeba_c00000{bottom:519.228000pt;}
.y683_c00000{bottom:519.257333pt;}
.y216_c00000{bottom:519.278667pt;}
.ya7_c00000{bottom:519.293333pt;}
.y112a_c00000{bottom:519.349333pt;}
.yffe_c00000{bottom:519.381333pt;}
.y16b4_c00000{bottom:519.406667pt;}
.y581_c00000{bottom:519.533333pt;}
.y2d3_c00000{bottom:519.662667pt;}
.y15c6_c00000{bottom:520.056000pt;}
.yc66_c00000{bottom:520.117333pt;}
.y230_c00000{bottom:520.170667pt;}
.y163c_c00000{bottom:521.005333pt;}
.y986_c00000{bottom:521.018667pt;}
.y10f8_c00000{bottom:521.198667pt;}
.ye20_c00000{bottom:521.406667pt;}
.y18f8_c00000{bottom:521.493333pt;}
.y11e8_c00000{bottom:521.529333pt;}
.y46f_c00000{bottom:521.700000pt;}
.yf6b_c00000{bottom:521.710667pt;}
.y36d_c00000{bottom:521.732000pt;}
.yc17_c00000{bottom:522.053333pt;}
.y3e_c00000{bottom:522.101333pt;}
.y12eb_c00000{bottom:522.444000pt;}
.y179a_c00000{bottom:522.490667pt;}
.y16db_c00000{bottom:522.760000pt;}
.y27d_c00000{bottom:523.358667pt;}
.y1151_c00000{bottom:523.416000pt;}
.y137f_c00000{bottom:523.470667pt;}
.yd3d_c00000{bottom:524.078667pt;}
.yb95_c00000{bottom:524.092000pt;}
.ya6b_c00000{bottom:524.134667pt;}
.y195_c00000{bottom:524.142667pt;}
.yf9c_c00000{bottom:524.301333pt;}
.y61_c00000{bottom:524.562667pt;}
.ycdd_c00000{bottom:525.008000pt;}
.y10e2_c00000{bottom:525.076000pt;}
.y17d4_c00000{bottom:525.078667pt;}
.y13e7_c00000{bottom:525.182667pt;}
.y7f3_c00000{bottom:525.370667pt;}
.ybbd_c00000{bottom:525.376000pt;}
.y8ed_c00000{bottom:525.698667pt;}
.y4aa_c00000{bottom:525.825333pt;}
.y3e7_c00000{bottom:525.928000pt;}
.ye34_c00000{bottom:526.053333pt;}
.y110f_c00000{bottom:526.354667pt;}
.y34b_c00000{bottom:526.481333pt;}
.y1423_c00000{bottom:526.516000pt;}
.y88a_c00000{bottom:526.637333pt;}
.y44c_c00000{bottom:526.814667pt;}
.ycd1_c00000{bottom:527.072000pt;}
.y117c_c00000{bottom:527.226667pt;}
.y59b_c00000{bottom:527.241333pt;}
.y246_c00000{bottom:527.256000pt;}
.y613_c00000{bottom:527.300000pt;}
.y147f_c00000{bottom:527.392000pt;}
.y4c8_c00000{bottom:527.485333pt;}
.y670_c00000{bottom:527.557333pt;}
.ya3e_c00000{bottom:527.580000pt;}
.yc1_c00000{bottom:527.588000pt;}
.yee1_c00000{bottom:528.276000pt;}
.y18d6_c00000{bottom:528.548000pt;}
.yfb8_c00000{bottom:528.697333pt;}
.y1447_c00000{bottom:528.996000pt;}
.yb77_c00000{bottom:529.202667pt;}
.y1506_c00000{bottom:529.213333pt;}
.y15_c00000{bottom:529.449280pt;}
.y8c0_c00000{bottom:529.662667pt;}
.y273_c00000{bottom:529.825333pt;}
.yfd7_c00000{bottom:530.085333pt;}
.y180b_c00000{bottom:530.092000pt;}
.y12ab_c00000{bottom:530.105333pt;}
.y1345_c00000{bottom:530.217333pt;}
.y13f9_c00000{bottom:530.333333pt;}
.ycbd_c00000{bottom:530.394667pt;}
.y1691_c00000{bottom:530.577333pt;}
.y12cb_c00000{bottom:530.585333pt;}
.y5ee_c00000{bottom:530.776000pt;}
.y157b_c00000{bottom:531.005333pt;}
.y9a7_c00000{bottom:531.046667pt;}
.y16f_c00000{bottom:531.058667pt;}
.y18c8_c00000{bottom:531.125333pt;}
.y7db_c00000{bottom:531.377333pt;}
.ydde_c00000{bottom:531.445333pt;}
.yaf2_c00000{bottom:531.648000pt;}
.y1410_c00000{bottom:531.758667pt;}
.y857_c00000{bottom:532.105333pt;}
.y9cb_c00000{bottom:532.278667pt;}
.y15fc_c00000{bottom:532.372000pt;}
.y1072_c00000{bottom:532.378667pt;}
.y328_c00000{bottom:532.548000pt;}
.y384_c00000{bottom:532.562667pt;}
.ye5_c00000{bottom:532.964000pt;}
.ye5b_c00000{bottom:533.032000pt;}
.y14eb_c00000{bottom:533.178667pt;}
.y15df_c00000{bottom:533.650667pt;}
.y159_c00000{bottom:533.884000pt;}
.yd25_c00000{bottom:533.890667pt;}
.yb33_c00000{bottom:534.001333pt;}
.y1dc_c00000{bottom:534.105333pt;}
.y172f_c00000{bottom:534.141333pt;}
.y14c4_c00000{bottom:534.164000pt;}
.yac4_c00000{bottom:534.226667pt;}
.y650_c00000{bottom:534.245333pt;}
.ydc2_c00000{bottom:534.254667pt;}
.ybd1_c00000{bottom:534.330667pt;}
.y193b_c00000{bottom:534.384000pt;}
.yd97_c00000{bottom:534.640000pt;}
.y183b_c00000{bottom:534.978667pt;}
.y91d_c00000{bottom:534.982667pt;}
.y539_c00000{bottom:534.994667pt;}
.y123a_c00000{bottom:535.004000pt;}
.y191b_c00000{bottom:535.065333pt;}
.yd75_c00000{bottom:535.105333pt;}
.y493_c00000{bottom:535.122667pt;}
.ycfb_c00000{bottom:535.130667pt;}
.y51f_c00000{bottom:535.145333pt;}
.y9e3_c00000{bottom:535.197333pt;}
.y265_c00000{bottom:535.218667pt;}
.y13b_c00000{bottom:535.550667pt;}
.y84_c00000{bottom:535.884000pt;}
.yc35_c00000{bottom:535.952000pt;}
.y1224_c00000{bottom:536.010667pt;}
.yca6_c00000{bottom:536.230667pt;}
.y3c8_c00000{bottom:536.333333pt;}
.y163b_c00000{bottom:536.946667pt;}
.y1365_c00000{bottom:536.968000pt;}
.y123_c00000{bottom:537.198667pt;}
.yd55_c00000{bottom:537.440000pt;}
.y11fb_c00000{bottom:537.640000pt;}
.y103e_c00000{bottom:538.088000pt;}
.y119d_c00000{bottom:538.229333pt;}
.y3a2_c00000{bottom:538.624000pt;}
.y10a4_c00000{bottom:538.746667pt;}
.y72a_c00000{bottom:538.754667pt;}
.yf50_c00000{bottom:538.982667pt;}
.y131b_c00000{bottom:539.093333pt;}
.y1770_c00000{bottom:539.190667pt;}
.y2ed_c00000{bottom:539.197333pt;}
.y14a9_c00000{bottom:539.322667pt;}
.y17e8_c00000{bottom:540.022667pt;}
.ya57_c00000{bottom:540.525333pt;}
.y634_c00000{bottom:540.641333pt;}
.y5d7_c00000{bottom:540.738667pt;}
.yf1a_c00000{bottom:540.882667pt;}
.y1566_c00000{bottom:540.904000pt;}
.y1248_c00000{bottom:540.968000pt;}
.y2b2_c00000{bottom:541.408000pt;}
.y6b6_c00000{bottom:541.853333pt;}
.y16c7_c00000{bottom:542.068000pt;}
.y5b3_c00000{bottom:542.310667pt;}
.y749_c00000{bottom:542.536000pt;}
.yb1f_c00000{bottom:542.860000pt;}
.y763_c00000{bottom:542.968000pt;}
.yc9d_c00000{bottom:543.093333pt;}
.yeb9_c00000{bottom:543.130667pt;}
.y682_c00000{bottom:543.160000pt;}
.y215_c00000{bottom:543.181333pt;}
.ya6_c00000{bottom:543.196000pt;}
.y1129_c00000{bottom:543.252000pt;}
.yffd_c00000{bottom:543.285333pt;}
.y16b3_c00000{bottom:543.309333pt;}
.y580_c00000{bottom:543.436000pt;}
.y2d2_c00000{bottom:543.565333pt;}
.y15c5_c00000{bottom:543.958667pt;}
.yc65_c00000{bottom:544.021333pt;}
.y1150_c00000{bottom:544.177333pt;}
.y985_c00000{bottom:544.922667pt;}
.y10f7_c00000{bottom:545.102667pt;}
.ye1f_c00000{bottom:545.309333pt;}
.y18f7_c00000{bottom:545.396000pt;}
.y11e7_c00000{bottom:545.433333pt;}
.ye9c_c00000{bottom:545.462667pt;}
.yf6a_c00000{bottom:545.614667pt;}
.y36c_c00000{bottom:545.634667pt;}
.yc16_c00000{bottom:545.957333pt;}
.y12ea_c00000{bottom:546.348000pt;}
.y1799_c00000{bottom:546.393333pt;}
.y16da_c00000{bottom:546.662667pt;}
.y14ff_c00000{bottom:546.826667pt;}
.y16e_c00000{bottom:546.998667pt;}
.y14_c00000{bottom:547.204640pt;}
.y27c_c00000{bottom:547.262667pt;}
.y137e_c00000{bottom:547.373333pt;}
.y549_c00000{bottom:547.602667pt;}
.yb94_c00000{bottom:547.996000pt;}
.y194_c00000{bottom:548.045333pt;}
.y1fc_c00000{bottom:548.104000pt;}
.yf9b_c00000{bottom:548.204000pt;}
.y60_c00000{bottom:548.465333pt;}
.ycdc_c00000{bottom:548.910667pt;}
.y10e1_c00000{bottom:548.978667pt;}
.y13e6_c00000{bottom:549.085333pt;}
.y7f2_c00000{bottom:549.274667pt;}
.ybbc_c00000{bottom:549.278667pt;}
.y8ec_c00000{bottom:549.602667pt;}
.y4a9_c00000{bottom:549.728000pt;}
.y3e6_c00000{bottom:549.830667pt;}
.y1304_c00000{bottom:549.956000pt;}
.y110e_c00000{bottom:550.257333pt;}
.y34a_c00000{bottom:550.384000pt;}
.y1422_c00000{bottom:550.418667pt;}
.y889_c00000{bottom:550.541333pt;}
.y44b_c00000{bottom:550.717333pt;}
.y117b_c00000{bottom:551.129333pt;}
.y104f_c00000{bottom:551.158667pt;}
.y245_c00000{bottom:551.160000pt;}
.y612_c00000{bottom:551.202667pt;}
.y147e_c00000{bottom:551.294667pt;}
.y66f_c00000{bottom:551.461333pt;}
.ya3d_c00000{bottom:551.482667pt;}
.yc0_c00000{bottom:551.492000pt;}
.y18b8_c00000{bottom:551.858667pt;}
.yfb7_c00000{bottom:552.601333pt;}
.y1446_c00000{bottom:552.898667pt;}
.yb76_c00000{bottom:553.106667pt;}
.y8bf_c00000{bottom:553.565333pt;}
.yfd6_c00000{bottom:553.988000pt;}
.y180a_c00000{bottom:553.994667pt;}
.y12aa_c00000{bottom:554.008000pt;}
.y1344_c00000{bottom:554.121333pt;}
.y13f8_c00000{bottom:554.237333pt;}
.ycbc_c00000{bottom:554.297333pt;}
.y1690_c00000{bottom:554.480000pt;}
.y12ca_c00000{bottom:554.488000pt;}
.y11bd_c00000{bottom:554.534667pt;}
.y5ed_c00000{bottom:554.680000pt;}
.ya6a_c00000{bottom:554.901333pt;}
.ya2a_c00000{bottom:554.908000pt;}
.y9a6_c00000{bottom:554.949333pt;}
.y18c7_c00000{bottom:555.028000pt;}
.yfeb_c00000{bottom:555.189333pt;}
.y7da_c00000{bottom:555.281333pt;}
.yddd_c00000{bottom:555.349333pt;}
.y140f_c00000{bottom:555.661333pt;}
.y856_c00000{bottom:556.008000pt;}
.y9ca_c00000{bottom:556.181333pt;}
.y15fb_c00000{bottom:556.276000pt;}
.y1071_c00000{bottom:556.281333pt;}
.y327_c00000{bottom:556.450667pt;}
.y383_c00000{bottom:556.465333pt;}
.ye4_c00000{bottom:556.866667pt;}
.ye5a_c00000{bottom:556.934667pt;}
.y14ea_c00000{bottom:557.081333pt;}
.yd3c_c00000{bottom:557.541333pt;}
.y15de_c00000{bottom:557.553333pt;}
.y163a_c00000{bottom:557.706667pt;}
.y158_c00000{bottom:557.786667pt;}
.yd24_c00000{bottom:557.793333pt;}
.yb32_c00000{bottom:557.904000pt;}
.y1db_c00000{bottom:558.008000pt;}
.y17d3_c00000{bottom:558.041333pt;}
.y172e_c00000{bottom:558.044000pt;}
.ybf0_c00000{bottom:558.062667pt;}
.y14c3_c00000{bottom:558.068000pt;}
.y139a_c00000{bottom:558.125333pt;}
.yac3_c00000{bottom:558.129333pt;}
.y64f_c00000{bottom:558.148000pt;}
.ydc1_c00000{bottom:558.157333pt;}
.ybd0_c00000{bottom:558.233333pt;}
.y193a_c00000{bottom:558.286667pt;}
.yd96_c00000{bottom:558.542667pt;}
.y183a_c00000{bottom:558.881333pt;}
.y538_c00000{bottom:558.898667pt;}
.y1239_c00000{bottom:558.906667pt;}
.yd74_c00000{bottom:559.008000pt;}
.y492_c00000{bottom:559.025333pt;}
.ycfa_c00000{bottom:559.034667pt;}
.yee0_c00000{bottom:559.041333pt;}
.y264_c00000{bottom:559.122667pt;}
.y13a_c00000{bottom:559.453333pt;}
.y83_c00000{bottom:559.786667pt;}
.yc34_c00000{bottom:559.854667pt;}
.yca5_c00000{bottom:560.133333pt;}
.y3c7_c00000{bottom:560.236000pt;}
.y1364_c00000{bottom:560.870667pt;}
.y122_c00000{bottom:561.101333pt;}
.yd54_c00000{bottom:561.344000pt;}
.yc74_c00000{bottom:561.542667pt;}
.y3d_c00000{bottom:561.613333pt;}
.y103d_c00000{bottom:561.990667pt;}
.y190f_c00000{bottom:562.037333pt;}
.y119c_c00000{bottom:562.132000pt;}
.y3a1_c00000{bottom:562.526667pt;}
.y10a3_c00000{bottom:562.649333pt;}
.y729_c00000{bottom:562.657333pt;}
.yf4f_c00000{bottom:562.885333pt;}
.y16d_c00000{bottom:562.940000pt;}
.y2ec_c00000{bottom:563.100000pt;}
.y14a8_c00000{bottom:563.225333pt;}
.y17e7_c00000{bottom:563.925333pt;}
.ya56_c00000{bottom:564.428000pt;}
.y4c7_c00000{bottom:564.593333pt;}
.y5d6_c00000{bottom:564.642667pt;}
.y1565_c00000{bottom:564.806667pt;}
.y900_c00000{bottom:564.870667pt;}
.y13_c00000{bottom:564.960000pt;}
.y2b1_c00000{bottom:565.312000pt;}
.y6b5_c00000{bottom:565.756000pt;}
.y16c6_c00000{bottom:565.970667pt;}
.y748_c00000{bottom:566.438667pt;}
.yb1e_c00000{bottom:566.764000pt;}
.y762_c00000{bottom:566.870667pt;}
.yc9c_c00000{bottom:566.996000pt;}
.yeb8_c00000{bottom:567.033333pt;}
.y681_c00000{bottom:567.062667pt;}
.y30b_c00000{bottom:567.085333pt;}
.ya5_c00000{bottom:567.100000pt;}
.y1128_c00000{bottom:567.156000pt;}
.yffc_c00000{bottom:567.188000pt;}
.y16b2_c00000{bottom:567.212000pt;}
.y2d1_c00000{bottom:567.468000pt;}
.y2d_c00000{bottom:567.704000pt;}
.y15c4_c00000{bottom:567.861333pt;}
.yc64_c00000{bottom:567.924000pt;}
.yc45_c00000{bottom:568.177333pt;}
.y984_c00000{bottom:568.825333pt;}
.y10f6_c00000{bottom:569.005333pt;}
.y18f6_c00000{bottom:569.298667pt;}
.y11e6_c00000{bottom:569.336000pt;}
.ye9b_c00000{bottom:569.366667pt;}
.yf69_c00000{bottom:569.517333pt;}
.yc15_c00000{bottom:569.860000pt;}
.y12e9_c00000{bottom:570.250667pt;}
.y16d9_c00000{bottom:570.565333pt;}
.y27b_c00000{bottom:571.165333pt;}
.y137d_c00000{bottom:571.276000pt;}
.y633_c00000{bottom:571.408000pt;}
.yf19_c00000{bottom:571.649333pt;}
.yb93_c00000{bottom:571.898667pt;}
.y193_c00000{bottom:571.948000pt;}
.y1fb_c00000{bottom:572.006667pt;}
.yf9a_c00000{bottom:572.108000pt;}
.y5f_c00000{bottom:572.369333pt;}
.yff_c00000{bottom:572.474667pt;}
.ycdb_c00000{bottom:572.813333pt;}
.yaf1_c00000{bottom:572.818667pt;}
.y13e5_c00000{bottom:572.988000pt;}
.y5b2_c00000{bottom:573.076000pt;}
.y7f1_c00000{bottom:573.177333pt;}
.ybbb_c00000{bottom:573.181333pt;}
.y8eb_c00000{bottom:573.505333pt;}
.y4a8_c00000{bottom:573.630667pt;}
.y3e5_c00000{bottom:573.733333pt;}
.y41a_c00000{bottom:573.734667pt;}
.y110d_c00000{bottom:574.160000pt;}
.y349_c00000{bottom:574.286667pt;}
.y1421_c00000{bottom:574.321333pt;}
.y888_c00000{bottom:574.444000pt;}
.y44a_c00000{bottom:574.620000pt;}
.y191a_c00000{bottom:574.985333pt;}
.y11d4_c00000{bottom:575.018667pt;}
.y51e_c00000{bottom:575.025333pt;}
.y117a_c00000{bottom:575.032000pt;}
.y244_c00000{bottom:575.062667pt;}
.y611_c00000{bottom:575.105333pt;}
.y66e_c00000{bottom:575.364000pt;}
.ybf_c00000{bottom:575.394667pt;}
.y1223_c00000{bottom:575.457333pt;}
.y9e2_c00000{bottom:575.497333pt;}
.y18b7_c00000{bottom:575.761333pt;}
.ye1e_c00000{bottom:576.476000pt;}
.yfb6_c00000{bottom:576.504000pt;}
.ycd0_c00000{bottom:576.525333pt;}
.y1445_c00000{bottom:576.801333pt;}
.yb75_c00000{bottom:577.009333pt;}
.y176f_c00000{bottom:577.048000pt;}
.y8be_c00000{bottom:577.468000pt;}
.yfd5_c00000{bottom:577.892000pt;}
.y1809_c00000{bottom:577.898667pt;}
.y1343_c00000{bottom:578.024000pt;}
.y13f7_c00000{bottom:578.140000pt;}
.y168f_c00000{bottom:578.384000pt;}
.y12c9_c00000{bottom:578.390667pt;}
.y11bc_c00000{bottom:578.437333pt;}
.y5ec_c00000{bottom:578.582667pt;}
.y1505_c00000{bottom:578.668000pt;}
.y1ae_c00000{bottom:578.810667pt;}
.y9a5_c00000{bottom:578.852000pt;}
.y16c_c00000{bottom:578.880000pt;}
.y18c6_c00000{bottom:578.932000pt;}
.y7d9_c00000{bottom:579.184000pt;}
.y57f_c00000{bottom:579.230667pt;}
.yddc_c00000{bottom:579.252000pt;}
.y272_c00000{bottom:579.280000pt;}
.y140e_c00000{bottom:579.564000pt;}
.y855_c00000{bottom:579.910667pt;}
.y9c9_c00000{bottom:580.084000pt;}
.y15fa_c00000{bottom:580.178667pt;}
.y36b_c00000{bottom:580.270667pt;}
.y382_c00000{bottom:580.368000pt;}
.y1798_c00000{bottom:580.649333pt;}
.ye3_c00000{bottom:580.769333pt;}
.y14e9_c00000{bottom:580.984000pt;}
.yd3b_c00000{bottom:581.444000pt;}
.y15dd_c00000{bottom:581.457333pt;}
.y157_c00000{bottom:581.689333pt;}
.y46e_c00000{bottom:581.697333pt;}
.yb31_c00000{bottom:581.808000pt;}
.y1da_c00000{bottom:581.910667pt;}
.y17d2_c00000{bottom:581.944000pt;}
.y172d_c00000{bottom:581.946667pt;}
.ybef_c00000{bottom:581.965333pt;}
.y14c2_c00000{bottom:581.970667pt;}
.y1399_c00000{bottom:582.028000pt;}
.yac2_c00000{bottom:582.032000pt;}
.y64e_c00000{bottom:582.052000pt;}
.ydc0_c00000{bottom:582.060000pt;}
.y1939_c00000{bottom:582.189333pt;}
.yd95_c00000{bottom:582.445333pt;}
.y1839_c00000{bottom:582.785333pt;}
.y1238_c00000{bottom:582.809333pt;}
.yd73_c00000{bottom:582.910667pt;}
.y491_c00000{bottom:582.928000pt;}
.ycf9_c00000{bottom:582.937333pt;}
.y263_c00000{bottom:583.025333pt;}
.y139_c00000{bottom:583.356000pt;}
.y82_c00000{bottom:583.689333pt;}
.y16b_c00000{bottom:583.700000pt;}
.y194e_c00000{bottom:584.036000pt;}
.y3c6_c00000{bottom:584.140000pt;}
.y1363_c00000{bottom:584.774667pt;}
.y121_c00000{bottom:585.005333pt;}
.yd53_c00000{bottom:585.246667pt;}
.y3c_c00000{bottom:585.516000pt;}
.y103c_c00000{bottom:585.893333pt;}
.y119b_c00000{bottom:586.034667pt;}
.y3a0_c00000{bottom:586.430667pt;}
.y10a2_c00000{bottom:586.553333pt;}
.y728_c00000{bottom:586.560000pt;}
.y12_c00000{bottom:586.569760pt;}
.yf4e_c00000{bottom:586.789333pt;}
.y10e0_c00000{bottom:586.889333pt;}
.y6a1_c00000{bottom:587.002667pt;}
.y14a7_c00000{bottom:587.128000pt;}
.y17e6_c00000{bottom:587.828000pt;}
.ya55_c00000{bottom:588.330667pt;}
.y4c6_c00000{bottom:588.496000pt;}
.y5d5_c00000{bottom:588.545333pt;}
.y1564_c00000{bottom:588.709333pt;}
.y83c_c00000{bottom:588.773333pt;}
.ybcf_c00000{bottom:589.000000pt;}
.y2b0_c00000{bottom:589.214667pt;}
.y6b4_c00000{bottom:589.660000pt;}
.y747_c00000{bottom:590.342667pt;}
.yc33_c00000{bottom:590.621333pt;}
.yb1d_c00000{bottom:590.666667pt;}
.y761_c00000{bottom:590.773333pt;}
.y1439_c00000{bottom:590.898667pt;}
.yca4_c00000{bottom:590.900000pt;}
.yeb7_c00000{bottom:590.936000pt;}
.y147d_c00000{bottom:590.957333pt;}
.y680_c00000{bottom:590.965333pt;}
.y30a_c00000{bottom:590.988000pt;}
.ya4_c00000{bottom:591.002667pt;}
.yffb_c00000{bottom:591.090667pt;}
.y2d0_c00000{bottom:591.372000pt;}
.y15c3_c00000{bottom:591.764000pt;}
.y537_c00000{bottom:592.720000pt;}
.y983_c00000{bottom:592.728000pt;}
.y10f5_c00000{bottom:592.908000pt;}
.y118_c00000{bottom:593.012000pt;}
.y18f5_c00000{bottom:593.201333pt;}
.ye9a_c00000{bottom:593.269333pt;}
.yf68_c00000{bottom:593.420000pt;}
.yc14_c00000{bottom:593.762667pt;}
.y12e8_c00000{bottom:594.153333pt;}
.y16d8_c00000{bottom:594.469333pt;}
.y27a_c00000{bottom:595.068000pt;}
.y12a9_c00000{bottom:595.180000pt;}
.yb92_c00000{bottom:595.801333pt;}
.y192_c00000{bottom:595.850667pt;}
.y1fa_c00000{bottom:595.909333pt;}
.y5e_c00000{bottom:596.272000pt;}
.y326_c00000{bottom:596.293333pt;}
.yfe_c00000{bottom:596.377333pt;}
.ycda_c00000{bottom:596.716000pt;}
.yaf0_c00000{bottom:596.721333pt;}
.y16c5_c00000{bottom:596.737333pt;}
.y13e4_c00000{bottom:596.892000pt;}
.y7f0_c00000{bottom:597.080000pt;}
.ybba_c00000{bottom:597.084000pt;}
.y8ea_c00000{bottom:597.408000pt;}
.y4a7_c00000{bottom:597.533333pt;}
.y3e4_c00000{bottom:597.637333pt;}
.yc9b_c00000{bottom:597.762667pt;}
.y110c_c00000{bottom:598.064000pt;}
.y348_c00000{bottom:598.189333pt;}
.y887_c00000{bottom:598.346667pt;}
.y449_c00000{bottom:598.522667pt;}
.y1919_c00000{bottom:598.888000pt;}
.y11d3_c00000{bottom:598.921333pt;}
.y51d_c00000{bottom:598.928000pt;}
.y243_c00000{bottom:598.965333pt;}
.y610_c00000{bottom:599.009333pt;}
.y66d_c00000{bottom:599.266667pt;}
.ybe_c00000{bottom:599.297333pt;}
.y1222_c00000{bottom:599.361333pt;}
.y9e1_c00000{bottom:599.401333pt;}
.y18b6_c00000{bottom:599.664000pt;}
.ye1d_c00000{bottom:600.378667pt;}
.yfb5_c00000{bottom:600.406667pt;}
.y1444_c00000{bottom:600.704000pt;}
.yb74_c00000{bottom:600.912000pt;}
.y176e_c00000{bottom:600.950667pt;}
.y8bd_c00000{bottom:601.370667pt;}
.yfd4_c00000{bottom:601.794667pt;}
.y1808_c00000{bottom:601.801333pt;}
.y1342_c00000{bottom:601.926667pt;}
.y17b3_c00000{bottom:602.042667pt;}
.y168e_c00000{bottom:602.286667pt;}
.y12c8_c00000{bottom:602.293333pt;}
.y11bb_c00000{bottom:602.340000pt;}
.y5eb_c00000{bottom:602.485333pt;}
.y430_c00000{bottom:602.714667pt;}
.y9a4_c00000{bottom:602.754667pt;}
.y18c5_c00000{bottom:602.834667pt;}
.y1127_c00000{bottom:602.981333pt;}
.y7d8_c00000{bottom:603.086667pt;}
.y57e_c00000{bottom:603.133333pt;}
.yddb_c00000{bottom:603.154667pt;}
.y140d_c00000{bottom:603.468000pt;}
.y854_c00000{bottom:603.813333pt;}
.y1070_c00000{bottom:603.940000pt;}
.y9c8_c00000{bottom:603.986667pt;}
.y15f9_c00000{bottom:604.081333pt;}
.y36a_c00000{bottom:604.173333pt;}
.y846_c00000{bottom:604.270667pt;}
.y2eb_c00000{bottom:604.272000pt;}
.y1797_c00000{bottom:604.552000pt;}
.ye2_c00000{bottom:604.673333pt;}
.y14e8_c00000{bottom:604.888000pt;}
.yd3a_c00000{bottom:605.346667pt;}
.y15dc_c00000{bottom:605.360000pt;}
.y46d_c00000{bottom:605.600000pt;}
.y1d9_c00000{bottom:605.813333pt;}
.y17d1_c00000{bottom:605.846667pt;}
.y172c_c00000{bottom:605.849333pt;}
.ybee_c00000{bottom:605.868000pt;}
.y14c1_c00000{bottom:605.873333pt;}
.y11e5_c00000{bottom:605.876000pt;}
.y16b1_c00000{bottom:605.909333pt;}
.y1398_c00000{bottom:605.930667pt;}
.yac1_c00000{bottom:605.934667pt;}
.y64d_c00000{bottom:605.954667pt;}
.ydbf_c00000{bottom:605.964000pt;}
.y1938_c00000{bottom:606.092000pt;}
.y1420_c00000{bottom:606.174667pt;}
.yd94_c00000{bottom:606.349333pt;}
.y1838_c00000{bottom:606.688000pt;}
.y1237_c00000{bottom:606.712000pt;}
.yd72_c00000{bottom:606.814667pt;}
.y490_c00000{bottom:606.830667pt;}
.ycf8_c00000{bottom:606.840000pt;}
.y262_c00000{bottom:606.928000pt;}
.y138_c00000{bottom:607.258667pt;}
.yc63_c00000{bottom:607.488000pt;}
.y81_c00000{bottom:607.592000pt;}
.y194d_c00000{bottom:607.938667pt;}
.y3c5_c00000{bottom:608.042667pt;}
.y14fe_c00000{bottom:608.525333pt;}
.y1362_c00000{bottom:608.677333pt;}
.y13f6_c00000{bottom:608.905333pt;}
.y120_c00000{bottom:608.908000pt;}
.yedf_c00000{bottom:608.988000pt;}
.yd52_c00000{bottom:609.149333pt;}
.y3b_c00000{bottom:609.418667pt;}
.y103b_c00000{bottom:609.796000pt;}
.y119a_c00000{bottom:609.937333pt;}
.y10a1_c00000{bottom:610.456000pt;}
.y727_c00000{bottom:610.462667pt;}
.yf4d_c00000{bottom:610.692000pt;}
.y10df_c00000{bottom:610.792000pt;}
.y6a0_c00000{bottom:610.905333pt;}
.y1755_c00000{bottom:611.000000pt;}
.y14a6_c00000{bottom:611.032000pt;}
.y17e5_c00000{bottom:611.730667pt;}
.y1179_c00000{bottom:612.226667pt;}
.ya54_c00000{bottom:612.234667pt;}
.y4c5_c00000{bottom:612.398667pt;}
.y5d4_c00000{bottom:612.448000pt;}
.yb30_c00000{bottom:612.573333pt;}
.y1563_c00000{bottom:612.613333pt;}
.yf99_c00000{bottom:612.980000pt;}
.y2af_c00000{bottom:613.117333pt;}
.y6b3_c00000{bottom:613.562667pt;}
.y746_c00000{bottom:614.245333pt;}
.yb1c_c00000{bottom:614.569333pt;}
.y760_c00000{bottom:614.677333pt;}
.y101a_c00000{bottom:614.802667pt;}
.yeb6_c00000{bottom:614.840000pt;}
.y147c_c00000{bottom:614.861333pt;}
.y67f_c00000{bottom:614.869333pt;}
.y309_c00000{bottom:614.890667pt;}
.ya3_c00000{bottom:614.905333pt;}
.yffa_c00000{bottom:614.993333pt;}
.y2cf_c00000{bottom:615.274667pt;}
.y536_c00000{bottom:616.624000pt;}
.y982_c00000{bottom:616.630667pt;}
.y10f4_c00000{bottom:616.810667pt;}
.yf18_c00000{bottom:616.869333pt;}
.y18f4_c00000{bottom:617.105333pt;}
.ye99_c00000{bottom:617.172000pt;}
.yf67_c00000{bottom:617.322667pt;}
.yc13_c00000{bottom:617.665333pt;}
.y12e7_c00000{bottom:618.056000pt;}
.y156_c00000{bottom:618.876000pt;}
.y16f5_c00000{bottom:618.934667pt;}
.y12a8_c00000{bottom:619.082667pt;}
.yb91_c00000{bottom:619.704000pt;}
.y191_c00000{bottom:619.754667pt;}
.y1f9_c00000{bottom:619.812000pt;}
.y39f_c00000{bottom:619.825333pt;}
.y5d_c00000{bottom:620.174667pt;}
.yfd_c00000{bottom:620.280000pt;}
.ycd9_c00000{bottom:620.620000pt;}
.yaef_c00000{bottom:620.625333pt;}
.y13e3_c00000{bottom:620.794667pt;}
.y7ef_c00000{bottom:620.982667pt;}
.ybb9_c00000{bottom:620.988000pt;}
.y4a6_c00000{bottom:621.436000pt;}
.y3e3_c00000{bottom:621.540000pt;}
.y110b_c00000{bottom:621.966667pt;}
.y347_c00000{bottom:622.093333pt;}
.y886_c00000{bottom:622.249333pt;}
.y448_c00000{bottom:622.426667pt;}
.y15c2_c00000{bottom:622.530667pt;}
.y131a_c00000{bottom:622.617333pt;}
.y1918_c00000{bottom:622.792000pt;}
.y11d2_c00000{bottom:622.824000pt;}
.y51c_c00000{bottom:622.830667pt;}
.y242_c00000{bottom:622.868000pt;}
.y60f_c00000{bottom:622.912000pt;}
.y66c_c00000{bottom:623.169333pt;}
.ybd_c00000{bottom:623.200000pt;}
.y1221_c00000{bottom:623.264000pt;}
.y9e0_c00000{bottom:623.304000pt;}
.y18b5_c00000{bottom:623.568000pt;}
.y632_c00000{bottom:624.165333pt;}
.ye1c_c00000{bottom:624.281333pt;}
.yfb4_c00000{bottom:624.309333pt;}
.y1443_c00000{bottom:624.606667pt;}
.yb73_c00000{bottom:624.814667pt;}
.y176d_c00000{bottom:624.854667pt;}
.y8bc_c00000{bottom:625.274667pt;}
.y11_c00000{bottom:625.600000pt;}
.yfd3_c00000{bottom:625.697333pt;}
.y1341_c00000{bottom:625.829333pt;}
.y279_c00000{bottom:625.834667pt;}
.y17b2_c00000{bottom:625.945333pt;}
.yccf_c00000{bottom:625.980000pt;}
.y168d_c00000{bottom:626.189333pt;}
.y12c7_c00000{bottom:626.197333pt;}
.y11ba_c00000{bottom:626.242667pt;}
.y5ea_c00000{bottom:626.388000pt;}
.y9a3_c00000{bottom:626.658667pt;}
.y18c4_c00000{bottom:626.737333pt;}
.y1126_c00000{bottom:626.885333pt;}
.y7d7_c00000{bottom:626.989333pt;}
.y57d_c00000{bottom:627.037333pt;}
.y140c_c00000{bottom:627.370667pt;}
.y853_c00000{bottom:627.717333pt;}
.y106f_c00000{bottom:627.842667pt;}
.y9c7_c00000{bottom:627.890667pt;}
.y15f8_c00000{bottom:627.984000pt;}
.y369_c00000{bottom:628.076000pt;}
.y1504_c00000{bottom:628.122667pt;}
.y381_c00000{bottom:628.174667pt;}
.y1796_c00000{bottom:628.456000pt;}
.ye1_c00000{bottom:628.576000pt;}
.y271_c00000{bottom:628.734667pt;}
.y14e7_c00000{bottom:628.790667pt;}
.y15db_c00000{bottom:629.262667pt;}
.y2c_c00000{bottom:629.402667pt;}
.y46c_c00000{bottom:629.502667pt;}
.y1d8_c00000{bottom:629.717333pt;}
.y17d0_c00000{bottom:629.749333pt;}
.y172b_c00000{bottom:629.752000pt;}
.ybed_c00000{bottom:629.772000pt;}
.y14c0_c00000{bottom:629.776000pt;}
.y11e4_c00000{bottom:629.778667pt;}
.y16b0_c00000{bottom:629.812000pt;}
.y1397_c00000{bottom:629.834667pt;}
.yac0_c00000{bottom:629.838667pt;}
.y64c_c00000{bottom:629.857333pt;}
.ydbe_c00000{bottom:629.866667pt;}
.y1937_c00000{bottom:629.996000pt;}
.y141f_c00000{bottom:630.077333pt;}
.yd93_c00000{bottom:630.252000pt;}
.y1837_c00000{bottom:630.590667pt;}
.y1236_c00000{bottom:630.614667pt;}
.yd71_c00000{bottom:630.717333pt;}
.y48f_c00000{bottom:630.733333pt;}
.ycf7_c00000{bottom:630.742667pt;}
.y261_c00000{bottom:630.830667pt;}
.y137_c00000{bottom:631.162667pt;}
.yc62_c00000{bottom:631.390667pt;}
.y80_c00000{bottom:631.496000pt;}
.y194c_c00000{bottom:631.842667pt;}
.y3c4_c00000{bottom:631.945333pt;}
.y11f_c00000{bottom:632.810667pt;}
.yede_c00000{bottom:632.892000pt;}
.yd51_c00000{bottom:633.052000pt;}
.y3a_c00000{bottom:633.321333pt;}
.y10a0_c00000{bottom:634.358667pt;}
.y813_c00000{bottom:634.365333pt;}
.yf4c_c00000{bottom:634.594667pt;}
.y10de_c00000{bottom:634.696000pt;}
.y69f_c00000{bottom:634.809333pt;}
.y1754_c00000{bottom:634.902667pt;}
.y14a5_c00000{bottom:634.934667pt;}
.y17e4_c00000{bottom:635.634667pt;}
.y1178_c00000{bottom:636.129333pt;}
.ya53_c00000{bottom:636.137333pt;}
.y4c4_c00000{bottom:636.301333pt;}
.y5d3_c00000{bottom:636.350667pt;}
.y1562_c00000{bottom:636.516000pt;}
.yc98_c00000{bottom:636.580000pt;}
.yf98_c00000{bottom:636.884000pt;}
.y2ae_c00000{bottom:637.020000pt;}
.y6b2_c00000{bottom:637.465333pt;}
.y745_c00000{bottom:638.148000pt;}
.yb1b_c00000{bottom:638.472000pt;}
.y75f_c00000{bottom:638.580000pt;}
.y1019_c00000{bottom:638.705333pt;}
.yeb5_c00000{bottom:638.742667pt;}
.y147b_c00000{bottom:638.764000pt;}
.y308_c00000{bottom:638.793333pt;}
.ya2_c00000{bottom:638.808000pt;}
.yff9_c00000{bottom:638.897333pt;}
.ydda_c00000{bottom:638.942667pt;}
.y2ce_c00000{bottom:639.177333pt;}
.y535_c00000{bottom:640.526667pt;}
.yc32_c00000{bottom:640.581333pt;}
.y10f3_c00000{bottom:640.714667pt;}
.yf17_c00000{bottom:640.772000pt;}
.y18f3_c00000{bottom:641.008000pt;}
.yf66_c00000{bottom:641.226667pt;}
.y726_c00000{bottom:641.229333pt;}
.yc12_c00000{bottom:641.569333pt;}
.y12e6_c00000{bottom:641.960000pt;}
.y155_c00000{bottom:642.778667pt;}
.y12a7_c00000{bottom:642.985333pt;}
.y126e_c00000{bottom:643.214667pt;}
.yb90_c00000{bottom:643.608000pt;}
.y190_c00000{bottom:643.657333pt;}
.y1f8_c00000{bottom:643.716000pt;}
.y39e_c00000{bottom:643.728000pt;}
.y5c_c00000{bottom:644.077333pt;}
.yfc_c00000{bottom:644.184000pt;}
.ycd8_c00000{bottom:644.522667pt;}
.y7ee_c00000{bottom:644.886667pt;}
.ybb8_c00000{bottom:644.890667pt;}
.y2ea_c00000{bottom:645.442667pt;}
.y67e_c00000{bottom:645.634667pt;}
.y110a_c00000{bottom:645.869333pt;}
.y346_c00000{bottom:645.996000pt;}
.y885_c00000{bottom:646.152000pt;}
.y447_c00000{bottom:646.329333pt;}
.y11d1_c00000{bottom:646.726667pt;}
.y51b_c00000{bottom:646.734667pt;}
.y241_c00000{bottom:646.770667pt;}
.y60e_c00000{bottom:646.814667pt;}
.y66b_c00000{bottom:647.073333pt;}
.ybc_c00000{bottom:647.104000pt;}
.y1220_c00000{bottom:647.166667pt;}
.y9df_c00000{bottom:647.206667pt;}
.y103a_c00000{bottom:648.170667pt;}
.ye1b_c00000{bottom:648.185333pt;}
.yfb3_c00000{bottom:648.213333pt;}
.y1199_c00000{bottom:648.276000pt;}
.y1442_c00000{bottom:648.510667pt;}
.yb72_c00000{bottom:648.718667pt;}
.y176c_c00000{bottom:648.757333pt;}
.y8bb_c00000{bottom:649.177333pt;}
.yfd2_c00000{bottom:649.600000pt;}
.y1340_c00000{bottom:649.733333pt;}
.y1361_c00000{bottom:649.849333pt;}
.y168c_c00000{bottom:650.092000pt;}
.y12c6_c00000{bottom:650.100000pt;}
.y11b9_c00000{bottom:650.146667pt;}
.y5e9_c00000{bottom:650.292000pt;}
.yc9a_c00000{bottom:650.520000pt;}
.y9a2_c00000{bottom:650.561333pt;}
.y18c3_c00000{bottom:650.640000pt;}
.y1125_c00000{bottom:650.788000pt;}
.y7d6_c00000{bottom:650.893333pt;}
.y140b_c00000{bottom:651.273333pt;}
.yaee_c00000{bottom:651.390667pt;}
.y852_c00000{bottom:651.620000pt;}
.y981_c00000{bottom:651.622667pt;}
.y106e_c00000{bottom:651.745333pt;}
.y9c6_c00000{bottom:651.793333pt;}
.y14fd_c00000{bottom:651.813333pt;}
.y15f7_c00000{bottom:651.888000pt;}
.ye98_c00000{bottom:651.893333pt;}
.y368_c00000{bottom:651.978667pt;}
.y325_c00000{bottom:652.077333pt;}
.y4a5_c00000{bottom:652.202667pt;}
.y1795_c00000{bottom:652.358667pt;}
.y14e6_c00000{bottom:652.693333pt;}
.y15da_c00000{bottom:653.165333pt;}
.y46b_c00000{bottom:653.405333pt;}
.y1d7_c00000{bottom:653.620000pt;}
.y172a_c00000{bottom:653.656000pt;}
.ybec_c00000{bottom:653.674667pt;}
.y14bf_c00000{bottom:653.680000pt;}
.y11e3_c00000{bottom:653.681333pt;}
.y16af_c00000{bottom:653.716000pt;}
.y1396_c00000{bottom:653.737333pt;}
.yabf_c00000{bottom:653.741333pt;}
.y64b_c00000{bottom:653.760000pt;}
.ydbd_c00000{bottom:653.769333pt;}
.yd92_c00000{bottom:654.154667pt;}
.y1235_c00000{bottom:654.518667pt;}
.yd70_c00000{bottom:654.620000pt;}
.y48e_c00000{bottom:654.637333pt;}
.ycf6_c00000{bottom:654.646667pt;}
.y260_c00000{bottom:654.734667pt;}
.y136_c00000{bottom:655.065333pt;}
.yc61_c00000{bottom:655.293333pt;}
.y7f_c00000{bottom:655.398667pt;}
.y3c3_c00000{bottom:655.848000pt;}
.y11e_c00000{bottom:656.713333pt;}
.yedd_c00000{bottom:656.794667pt;}
.yd50_c00000{bottom:656.954667pt;}
.y39_c00000{bottom:657.225333pt;}
.y109f_c00000{bottom:658.261333pt;}
.y812_c00000{bottom:658.269333pt;}
.yf4b_c00000{bottom:658.497333pt;}
.y10dd_c00000{bottom:658.598667pt;}
.y13e2_c00000{bottom:658.669333pt;}
.y69e_c00000{bottom:658.712000pt;}
.y1753_c00000{bottom:658.806667pt;}
.y14a4_c00000{bottom:658.837333pt;}
.y17e3_c00000{bottom:659.537333pt;}
.y1177_c00000{bottom:660.032000pt;}
.ya52_c00000{bottom:660.040000pt;}
.y4c3_c00000{bottom:660.205333pt;}
.y5d2_c00000{bottom:660.254667pt;}
.y7a2_c00000{bottom:660.482667pt;}
.y18b4_c00000{bottom:660.518667pt;}
.y10_c00000{bottom:660.653920pt;}
.y1936_c00000{bottom:660.761333pt;}
.yf97_c00000{bottom:660.786667pt;}
.y141e_c00000{bottom:660.844000pt;}
.y2ad_c00000{bottom:660.924000pt;}
.y6b1_c00000{bottom:661.368000pt;}
.yb1a_c00000{bottom:662.376000pt;}
.y75e_c00000{bottom:662.482667pt;}
.y1438_c00000{bottom:662.608000pt;}
.yeb4_c00000{bottom:662.645333pt;}
.y147a_c00000{bottom:662.666667pt;}
.y307_c00000{bottom:662.697333pt;}
.ya1_c00000{bottom:662.712000pt;}
.yff8_c00000{bottom:662.800000pt;}
.y57c_c00000{bottom:662.830667pt;}
.ydd9_c00000{bottom:662.845333pt;}
.y14a3_c00000{bottom:662.866667pt;}
.yc31_c00000{bottom:664.484000pt;}
.yf16_c00000{bottom:664.674667pt;}
.y18f2_c00000{bottom:664.910667pt;}
.yf65_c00000{bottom:665.129333pt;}
.yb2f_c00000{bottom:665.332000pt;}
.yc11_c00000{bottom:665.472000pt;}
.y12e5_c00000{bottom:665.862667pt;}
.y12a6_c00000{bottom:666.888000pt;}
.yb8f_c00000{bottom:667.510667pt;}
.y18f_c00000{bottom:667.560000pt;}
.y1f7_c00000{bottom:667.618667pt;}
.y5b_c00000{bottom:667.981333pt;}
.ye0_c00000{bottom:668.086667pt;}
.y7ed_c00000{bottom:668.789333pt;}
.ybb7_c00000{bottom:668.793333pt;}
.y117_c00000{bottom:669.033333pt;}
.y2e9_c00000{bottom:669.345333pt;}
.y1018_c00000{bottom:669.472000pt;}
.y1109_c00000{bottom:669.772000pt;}
.y345_c00000{bottom:669.898667pt;}
.y2cd_c00000{bottom:669.944000pt;}
.y884_c00000{bottom:670.056000pt;}
.y446_c00000{bottom:670.232000pt;}
.y1836_c00000{bottom:670.554667pt;}
.y11d0_c00000{bottom:670.630667pt;}
.y51a_c00000{bottom:670.637333pt;}
.y45f_c00000{bottom:670.674667pt;}
.y60d_c00000{bottom:670.717333pt;}
.y66a_c00000{bottom:670.976000pt;}
.ybb_c00000{bottom:671.006667pt;}
.y121f_c00000{bottom:671.069333pt;}
.y9de_c00000{bottom:671.109333pt;}
.y1039_c00000{bottom:672.073333pt;}
.ye1a_c00000{bottom:672.088000pt;}
.yfb2_c00000{bottom:672.116000pt;}
.y1198_c00000{bottom:672.178667pt;}
.y1441_c00000{bottom:672.413333pt;}
.yb71_c00000{bottom:672.621333pt;}
.y176b_c00000{bottom:672.660000pt;}
.y2b_c00000{bottom:672.690667pt;}
.y8ba_c00000{bottom:673.080000pt;}
.yfd1_c00000{bottom:673.504000pt;}
.y1561_c00000{bottom:673.517333pt;}
.y133f_c00000{bottom:673.636000pt;}
.y1360_c00000{bottom:673.752000pt;}
.y168b_c00000{bottom:673.994667pt;}
.y12c5_c00000{bottom:674.002667pt;}
.y11b8_c00000{bottom:674.049333pt;}
.y5e8_c00000{bottom:674.194667pt;}
.y534_c00000{bottom:674.349333pt;}
.y9a1_c00000{bottom:674.464000pt;}
.y1124_c00000{bottom:674.690667pt;}
.y7d5_c00000{bottom:674.796000pt;}
.ycd7_c00000{bottom:675.288000pt;}
.y980_c00000{bottom:675.525333pt;}
.y106d_c00000{bottom:675.648000pt;}
.y9c5_c00000{bottom:675.696000pt;}
.y15f6_c00000{bottom:675.790667pt;}
.ye97_c00000{bottom:675.796000pt;}
.y367_c00000{bottom:675.882667pt;}
.y324_c00000{bottom:675.980000pt;}
.y1794_c00000{bottom:676.261333pt;}
.y14e5_c00000{bottom:676.596000pt;}
.y39d_c00000{bottom:677.122667pt;}
.y108b_c00000{bottom:677.308000pt;}
.y46a_c00000{bottom:677.309333pt;}
.y1d6_c00000{bottom:677.522667pt;}
.y1729_c00000{bottom:677.558667pt;}
.ybeb_c00000{bottom:677.577333pt;}
.y14be_c00000{bottom:677.582667pt;}
.y11e2_c00000{bottom:677.584000pt;}
.y16ae_c00000{bottom:677.618667pt;}
.y1395_c00000{bottom:677.640000pt;}
.yabe_c00000{bottom:677.644000pt;}
.y64a_c00000{bottom:677.664000pt;}
.ydbc_c00000{bottom:677.672000pt;}
.yd91_c00000{bottom:678.057333pt;}
.y744_c00000{bottom:678.206667pt;}
.yf_c00000{bottom:678.409280pt;}
.y1234_c00000{bottom:678.421333pt;}
.yd6f_c00000{bottom:678.522667pt;}
.y48d_c00000{bottom:678.540000pt;}
.ycf5_c00000{bottom:678.549333pt;}
.y25f_c00000{bottom:678.637333pt;}
.yc60_c00000{bottom:679.196000pt;}
.y7e_c00000{bottom:679.301333pt;}
.y16d7_c00000{bottom:679.750667pt;}
.y3c2_c00000{bottom:679.752000pt;}
.y10f2_c00000{bottom:679.917333pt;}
.y154_c00000{bottom:679.965333pt;}
.y11d_c00000{bottom:680.617333pt;}
.yd4f_c00000{bottom:680.858667pt;}
.y38_c00000{bottom:681.128000pt;}
.y166a_c00000{bottom:682.164000pt;}
.y811_c00000{bottom:682.172000pt;}
.y851_c00000{bottom:682.385333pt;}
.yf4a_c00000{bottom:682.401333pt;}
.y10dc_c00000{bottom:682.501333pt;}
.y13e1_c00000{bottom:682.573333pt;}
.y69d_c00000{bottom:682.614667pt;}
.yfb_c00000{bottom:683.694667pt;}
.ya51_c00000{bottom:683.942667pt;}
.y631_c00000{bottom:683.956000pt;}
.y5d1_c00000{bottom:684.157333pt;}
.yb5d_c00000{bottom:684.385333pt;}
.yf96_c00000{bottom:684.689333pt;}
.y2ac_c00000{bottom:684.826667pt;}
.y6b0_c00000{bottom:685.272000pt;}
.yb19_c00000{bottom:686.278667pt;}
.y75d_c00000{bottom:686.385333pt;}
.y1437_c00000{bottom:686.510667pt;}
.y195f_c00000{bottom:686.512000pt;}
.yeb3_c00000{bottom:686.548000pt;}
.y1479_c00000{bottom:686.569333pt;}
.y306_c00000{bottom:686.600000pt;}
.ya0_c00000{bottom:686.614667pt;}
.yff7_c00000{bottom:686.702667pt;}
.y57b_c00000{bottom:686.734667pt;}
.ydd8_c00000{bottom:686.748000pt;}
.yc30_c00000{bottom:688.386667pt;}
.y109e_c00000{bottom:689.028000pt;}
.yf64_c00000{bottom:689.032000pt;}
.y14a2_c00000{bottom:689.604000pt;}
.y12e4_c00000{bottom:689.765333pt;}
.y12a5_c00000{bottom:690.792000pt;}
.y67d_c00000{bottom:691.020000pt;}
.yb8e_c00000{bottom:691.413333pt;}
.y18e_c00000{bottom:691.462667pt;}
.y1f6_c00000{bottom:691.521333pt;}
.y5a_c00000{bottom:691.884000pt;}
.ydf_c00000{bottom:691.989333pt;}
.y7ec_c00000{bottom:692.692000pt;}
.ybb6_c00000{bottom:692.696000pt;}
.y2e8_c00000{bottom:693.249333pt;}
.y1108_c00000{bottom:693.676000pt;}
.y344_c00000{bottom:693.801333pt;}
.y883_c00000{bottom:693.958667pt;}
.y445_c00000{bottom:694.134667pt;}
.y1835_c00000{bottom:694.457333pt;}
.y11cf_c00000{bottom:694.533333pt;}
.y519_c00000{bottom:694.540000pt;}
.y45e_c00000{bottom:694.577333pt;}
.y60c_c00000{bottom:694.620000pt;}
.y669_c00000{bottom:694.878667pt;}
.yba_c00000{bottom:694.909333pt;}
.y121e_c00000{bottom:694.973333pt;}
.y9dd_c00000{bottom:695.013333pt;}
.yedc_c00000{bottom:695.508000pt;}
.y18f1_c00000{bottom:695.677333pt;}
.y1038_c00000{bottom:695.976000pt;}
.ye19_c00000{bottom:695.990667pt;}
.yfb1_c00000{bottom:696.018667pt;}
.y1197_c00000{bottom:696.082667pt;}
.ye_c00000{bottom:696.164640pt;}
.y1440_c00000{bottom:696.316000pt;}
.yb70_c00000{bottom:696.524000pt;}
.y176a_c00000{bottom:696.562667pt;}
.y17e2_c00000{bottom:696.978667pt;}
.y8b9_c00000{bottom:696.982667pt;}
.y1176_c00000{bottom:697.226667pt;}
.y4c2_c00000{bottom:697.312000pt;}
.yfd0_c00000{bottom:697.406667pt;}
.y1560_c00000{bottom:697.420000pt;}
.y18b3_c00000{bottom:697.469333pt;}
.y133e_c00000{bottom:697.538667pt;}
.y135f_c00000{bottom:697.654667pt;}
.y168a_c00000{bottom:697.898667pt;}
.y12c4_c00000{bottom:697.905333pt;}
.y11b7_c00000{bottom:697.952000pt;}
.y5e7_c00000{bottom:698.097333pt;}
.y533_c00000{bottom:698.252000pt;}
.ya9a_c00000{bottom:698.326667pt;}
.y9a0_c00000{bottom:698.366667pt;}
.y1123_c00000{bottom:698.593333pt;}
.y7d4_c00000{bottom:698.698667pt;}
.y97f_c00000{bottom:699.429333pt;}
.y106c_c00000{bottom:699.552000pt;}
.y9c4_c00000{bottom:699.598667pt;}
.y15f5_c00000{bottom:699.693333pt;}
.ye96_c00000{bottom:699.700000pt;}
.y366_c00000{bottom:699.785333pt;}
.y591_c00000{bottom:699.882667pt;}
.y10bb_c00000{bottom:699.884000pt;}
.y1752_c00000{bottom:699.946667pt;}
.y1793_c00000{bottom:700.164000pt;}
.y14e4_c00000{bottom:700.500000pt;}
.y39c_c00000{bottom:701.025333pt;}
.y108a_c00000{bottom:701.212000pt;}
.y1d5_c00000{bottom:701.425333pt;}
.y1728_c00000{bottom:701.461333pt;}
.ybea_c00000{bottom:701.480000pt;}
.y11e1_c00000{bottom:701.486667pt;}
.y16ad_c00000{bottom:701.521333pt;}
.y1394_c00000{bottom:701.542667pt;}
.yabd_c00000{bottom:701.546667pt;}
.y649_c00000{bottom:701.566667pt;}
.ydbb_c00000{bottom:701.576000pt;}
.yf15_c00000{bottom:701.590667pt;}
.yd90_c00000{bottom:701.961333pt;}
.ycce_c00000{bottom:702.001333pt;}
.y743_c00000{bottom:702.109333pt;}
.yd6e_c00000{bottom:702.426667pt;}
.y48c_c00000{bottom:702.442667pt;}
.y25e_c00000{bottom:702.540000pt;}
.y7d_c00000{bottom:703.204000pt;}
.y3c1_c00000{bottom:703.654667pt;}
.y153_c00000{bottom:703.868000pt;}
.y1503_c00000{bottom:704.144000pt;}
.y11c_c00000{bottom:704.520000pt;}
.y270_c00000{bottom:704.756000pt;}
.y4a4_c00000{bottom:704.960000pt;}
.y1669_c00000{bottom:706.068000pt;}
.y810_c00000{bottom:706.074667pt;}
.yf49_c00000{bottom:706.304000pt;}
.y10db_c00000{bottom:706.404000pt;}
.y13e0_c00000{bottom:706.476000pt;}
.y1319_c00000{bottom:706.517333pt;}
.yc10_c00000{bottom:706.642667pt;}
.yfa_c00000{bottom:707.597333pt;}
.ya50_c00000{bottom:707.846667pt;}
.y630_c00000{bottom:707.860000pt;}
.y5d0_c00000{bottom:708.060000pt;}
.y929_c00000{bottom:708.289333pt;}
.y14bd_c00000{bottom:708.348000pt;}
.yf95_c00000{bottom:708.592000pt;}
.y2ab_c00000{bottom:708.729333pt;}
.y6af_c00000{bottom:709.174667pt;}
.y75c_c00000{bottom:710.289333pt;}
.y1436_c00000{bottom:710.414667pt;}
.yeb2_c00000{bottom:710.452000pt;}
.y305_c00000{bottom:710.502667pt;}
.y9f_c00000{bottom:710.517333pt;}
.yff6_c00000{bottom:710.605333pt;}
.y57a_c00000{bottom:710.637333pt;}
.ydd7_c00000{bottom:710.650667pt;}
.yc2f_c00000{bottom:712.290667pt;}
.yf63_c00000{bottom:712.934667pt;}
.yd_c00000{bottom:713.920000pt;}
.yb8d_c00000{bottom:715.316000pt;}
.ye06_c00000{bottom:715.365333pt;}
.y1211_c00000{bottom:715.366667pt;}
.y1f5_c00000{bottom:715.424000pt;}
.y59_c00000{bottom:715.786667pt;}
.yde_c00000{bottom:715.892000pt;}
.yb18_c00000{bottom:717.044000pt;}
.y2e7_c00000{bottom:717.152000pt;}
.y1478_c00000{bottom:717.336000pt;}
.y1107_c00000{bottom:717.578667pt;}
.y343_c00000{bottom:717.704000pt;}
.y882_c00000{bottom:717.861333pt;}
.y444_c00000{bottom:718.037333pt;}
.y1834_c00000{bottom:718.360000pt;}
.ycf4_c00000{bottom:718.436000pt;}
.y518_c00000{bottom:718.442667pt;}
.y45d_c00000{bottom:718.480000pt;}
.y60b_c00000{bottom:718.524000pt;}
.yc5f_c00000{bottom:718.760000pt;}
.y668_c00000{bottom:718.781333pt;}
.yb9_c00000{bottom:718.812000pt;}
.y9dc_c00000{bottom:718.916000pt;}
.y10f1_c00000{bottom:719.120000pt;}
.yedb_c00000{bottom:719.410667pt;}
.yd4e_c00000{bottom:719.590667pt;}
.y1037_c00000{bottom:719.878667pt;}
.ye18_c00000{bottom:719.893333pt;}
.yfb0_c00000{bottom:719.921333pt;}
.y1196_c00000{bottom:719.985333pt;}
.y143f_c00000{bottom:720.218667pt;}
.yb6f_c00000{bottom:720.426667pt;}
.y1769_c00000{bottom:720.466667pt;}
.y37_c00000{bottom:720.638667pt;}
.y17e1_c00000{bottom:720.881333pt;}
.y1175_c00000{bottom:721.129333pt;}
.y4c1_c00000{bottom:721.216000pt;}
.yfcf_c00000{bottom:721.309333pt;}
.y155f_c00000{bottom:721.322667pt;}
.y18b2_c00000{bottom:721.372000pt;}
.y133d_c00000{bottom:721.441333pt;}
.y12a4_c00000{bottom:721.557333pt;}
.y1689_c00000{bottom:721.801333pt;}
.y12c3_c00000{bottom:721.808000pt;}
.y11b6_c00000{bottom:721.854667pt;}
.y5e6_c00000{bottom:722.000000pt;}
.y532_c00000{bottom:722.154667pt;}
.y18d_c00000{bottom:722.229333pt;}
.y99f_c00000{bottom:722.270667pt;}
.y1122_c00000{bottom:722.497333pt;}
.y7d3_c00000{bottom:722.601333pt;}
.y2cc_c00000{bottom:722.701333pt;}
.y97e_c00000{bottom:723.332000pt;}
.y106b_c00000{bottom:723.454667pt;}
.ybb5_c00000{bottom:723.462667pt;}
.y9c3_c00000{bottom:723.501333pt;}
.y15f4_c00000{bottom:723.596000pt;}
.ye95_c00000{bottom:723.602667pt;}
.y365_c00000{bottom:723.688000pt;}
.y5c7_c00000{bottom:723.786667pt;}
.y1751_c00000{bottom:723.849333pt;}
.y12e3_c00000{bottom:724.044000pt;}
.y1792_c00000{bottom:724.068000pt;}
.y14e3_c00000{bottom:724.402667pt;}
.y39b_c00000{bottom:724.928000pt;}
.y1089_c00000{bottom:725.114667pt;}
.y1d4_c00000{bottom:725.328000pt;}
.y831_c00000{bottom:725.329333pt;}
.y1727_c00000{bottom:725.364000pt;}
.ybe9_c00000{bottom:725.384000pt;}
.y16ac_c00000{bottom:725.424000pt;}
.yabc_c00000{bottom:725.450667pt;}
.y648_c00000{bottom:725.469333pt;}
.ydba_c00000{bottom:725.478667pt;}
.yf14_c00000{bottom:725.493333pt;}
.y7eb_c00000{bottom:725.508000pt;}
.yd8f_c00000{bottom:725.864000pt;}
.y742_c00000{bottom:726.012000pt;}
.yd6d_c00000{bottom:726.329333pt;}
.y48b_c00000{bottom:726.345333pt;}
.y25d_c00000{bottom:726.442667pt;}
.y7c_c00000{bottom:727.108000pt;}
.y3c0_c00000{bottom:727.557333pt;}
.y8b8_c00000{bottom:727.749333pt;}
.y1668_c00000{bottom:729.970667pt;}
.y80f_c00000{bottom:729.977333pt;}
.y10da_c00000{bottom:730.308000pt;}
.y13df_c00000{bottom:730.378667pt;}
.y1318_c00000{bottom:730.421333pt;}
.yc0f_c00000{bottom:730.546667pt;}
.ya4f_c00000{bottom:731.749333pt;}
.y62f_c00000{bottom:731.762667pt;}
.y5cf_c00000{bottom:731.962667pt;}
.y135_c00000{bottom:732.102667pt;}
.y125e_c00000{bottom:732.192000pt;}
.y1393_c00000{bottom:732.309333pt;}
.y6ae_c00000{bottom:733.077333pt;}
.y8e9_c00000{bottom:734.192000pt;}
.y1435_c00000{bottom:734.317333pt;}
.yeb1_c00000{bottom:734.354667pt;}
.y9e_c00000{bottom:734.420000pt;}
.yff5_c00000{bottom:734.508000pt;}
.y579_c00000{bottom:734.540000pt;}
.yc2e_c00000{bottom:736.193333pt;}
.yf48_c00000{bottom:737.069333pt;}
.y11e0_c00000{bottom:738.026667pt;}
.y135e_c00000{bottom:738.826667pt;}
.ye05_c00000{bottom:739.269333pt;}
.y58_c00000{bottom:739.689333pt;}
.yc_c00000{bottom:740.160000pt;}
.y152_c00000{bottom:741.054667pt;}
.y342_c00000{bottom:741.608000pt;}
.y881_c00000{bottom:741.764000pt;}
.ycd6_c00000{bottom:742.178667pt;}
.y1833_c00000{bottom:742.262667pt;}
.ycf3_c00000{bottom:742.338667pt;}
.y517_c00000{bottom:742.346667pt;}
.y14a1_c00000{bottom:742.361333pt;}
.y45c_c00000{bottom:742.382667pt;}
.y60a_c00000{bottom:742.426667pt;}
.yc5e_c00000{bottom:742.662667pt;}
.y667_c00000{bottom:742.685333pt;}
.yb8_c00000{bottom:742.716000pt;}
.y10f0_c00000{bottom:743.022667pt;}
.yeda_c00000{bottom:743.314667pt;}
.yd4d_c00000{bottom:743.493333pt;}
.yf62_c00000{bottom:743.701333pt;}
.y1036_c00000{bottom:743.782667pt;}
.ye17_c00000{bottom:743.797333pt;}
.yfaf_c00000{bottom:743.825333pt;}
.y1195_c00000{bottom:743.888000pt;}
.yb6e_c00000{bottom:744.330667pt;}
.y1768_c00000{bottom:744.369333pt;}
.y17e0_c00000{bottom:744.785333pt;}
.y1174_c00000{bottom:745.032000pt;}
.y1251_c00000{bottom:745.084000pt;}
.y4c0_c00000{bottom:745.118667pt;}
.yfce_c00000{bottom:745.212000pt;}
.y155e_c00000{bottom:745.225333pt;}
.y18b1_c00000{bottom:745.276000pt;}
.y133c_c00000{bottom:745.344000pt;}
.y1688_c00000{bottom:745.704000pt;}
.y12c2_c00000{bottom:745.712000pt;}
.y11b5_c00000{bottom:745.758667pt;}
.y5e5_c00000{bottom:745.904000pt;}
.y531_c00000{bottom:746.057333pt;}
.y1169_c00000{bottom:746.132000pt;}
.y99e_c00000{bottom:746.173333pt;}
.y1f4_c00000{bottom:746.190667pt;}
.y1121_c00000{bottom:746.400000pt;}
.ydd6_c00000{bottom:746.438667pt;}
.y7d2_c00000{bottom:746.505333pt;}
.y2cb_c00000{bottom:746.612000pt;}
.y97d_c00000{bottom:747.234667pt;}
.y106a_c00000{bottom:747.357333pt;}
.y9c2_c00000{bottom:747.405333pt;}
.y15f3_c00000{bottom:747.500000pt;}
.ye94_c00000{bottom:747.505333pt;}
.y69c_c00000{bottom:747.689333pt;}
.y1750_c00000{bottom:747.752000pt;}
.y12e2_c00000{bottom:747.948000pt;}
.y1791_c00000{bottom:747.970667pt;}
.y150b_c00000{bottom:748.605333pt;}
.y39a_c00000{bottom:748.832000pt;}
.y1088_c00000{bottom:749.017333pt;}
.y2aa_c00000{bottom:749.164000pt;}
.y830_c00000{bottom:749.232000pt;}
.y1726_c00000{bottom:749.268000pt;}
.ybe8_c00000{bottom:749.286667pt;}
.y16ab_c00000{bottom:749.328000pt;}
.yabb_c00000{bottom:749.353333pt;}
.yf13_c00000{bottom:749.396000pt;}
.y7ea_c00000{bottom:749.410667pt;}
.yb8c_c00000{bottom:749.502667pt;}
.yd8e_c00000{bottom:749.766667pt;}
.y443_c00000{bottom:750.132000pt;}
.yd6c_c00000{bottom:750.232000pt;}
.y48a_c00000{bottom:750.249333pt;}
.y25c_c00000{bottom:750.345333pt;}
.y278_c00000{bottom:750.441333pt;}
.y3bf_c00000{bottom:751.460000pt;}
.ye93_c00000{bottom:751.534667pt;}
.y304_c00000{bottom:751.674667pt;}
.y17b1_c00000{bottom:752.324000pt;}
.y1667_c00000{bottom:753.873333pt;}
.y912_c00000{bottom:753.881333pt;}
.y10d9_c00000{bottom:754.210667pt;}
.y13de_c00000{bottom:754.281333pt;}
.ydd_c00000{bottom:755.404000pt;}
.ya4e_c00000{bottom:755.652000pt;}
.y62e_c00000{bottom:755.665333pt;}
.y5ce_c00000{bottom:755.866667pt;}
.y1d3_c00000{bottom:756.094667pt;}
.y6ad_c00000{bottom:756.980000pt;}
.y8e8_c00000{bottom:758.094667pt;}
.y1434_c00000{bottom:758.220000pt;}
.yeb0_c00000{bottom:758.257333pt;}
.y9d_c00000{bottom:758.324000pt;}
.y1935_c00000{bottom:758.410667pt;}
.yff4_c00000{bottom:758.412000pt;}
.y578_c00000{bottom:758.442667pt;}
.y36_c00000{bottom:760.149333pt;}
.y80e_c00000{bottom:760.744000pt;}
.yc0e_c00000{bottom:761.312000pt;}
.y11df_c00000{bottom:761.929333pt;}
.y135d_c00000{bottom:762.729333pt;}
.ye04_c00000{bottom:763.172000pt;}
.y57_c00000{bottom:763.593333pt;}
.y32_c00000{bottom:764.180000pt;}
.y151_c00000{bottom:764.957333pt;}
.y195e_c00000{bottom:765.084000pt;}
.yf94_c00000{bottom:765.256000pt;}
.y341_c00000{bottom:765.510667pt;}
.y647_c00000{bottom:765.800000pt;}
.ydb9_c00000{bottom:765.804000pt;}
.y741_c00000{bottom:766.070667pt;}
.ycd5_c00000{bottom:766.081333pt;}
.ycf2_c00000{bottom:766.242667pt;}
.y516_c00000{bottom:766.249333pt;}
.y45b_c00000{bottom:766.286667pt;}
.y609_c00000{bottom:766.329333pt;}
.yc5d_c00000{bottom:766.565333pt;}
.y666_c00000{bottom:766.588000pt;}
.y7b_c00000{bottom:766.618667pt;}
.y10ef_c00000{bottom:766.926667pt;}
.yb17_c00000{bottom:767.000000pt;}
.yed9_c00000{bottom:767.217333pt;}
.yd4c_c00000{bottom:767.397333pt;}
.ye16_c00000{bottom:767.700000pt;}
.yfae_c00000{bottom:767.728000pt;}
.y1194_c00000{bottom:767.790667pt;}
.yb6d_c00000{bottom:768.233333pt;}
.y1767_c00000{bottom:768.272000pt;}
.y17df_c00000{bottom:768.688000pt;}
.y4bf_c00000{bottom:769.021333pt;}
.yfcd_c00000{bottom:769.116000pt;}
.y155d_c00000{bottom:769.128000pt;}
.y18b0_c00000{bottom:769.178667pt;}
.y133b_c00000{bottom:769.248000pt;}
.y1687_c00000{bottom:769.606667pt;}
.y12c1_c00000{bottom:769.614667pt;}
.y11b4_c00000{bottom:769.661333pt;}
.y5e4_c00000{bottom:769.806667pt;}
.y530_c00000{bottom:769.961333pt;}
.y99d_c00000{bottom:770.076000pt;}
.y1477_c00000{bottom:770.093333pt;}
.y1120_c00000{bottom:770.302667pt;}
.ydd5_c00000{bottom:770.341333pt;}
.y1069_c00000{bottom:771.260000pt;}
.y9c1_c00000{bottom:771.308000pt;}
.y15f2_c00000{bottom:771.402667pt;}
.ye92_c00000{bottom:771.408000pt;}
.y69b_c00000{bottom:771.592000pt;}
.y174f_c00000{bottom:771.654667pt;}
.y12e1_c00000{bottom:771.850667pt;}
.y1790_c00000{bottom:771.873333pt;}
.y150a_c00000{bottom:772.508000pt;}
.y399_c00000{bottom:772.734667pt;}
.y1087_c00000{bottom:772.920000pt;}
.y2a9_c00000{bottom:773.066667pt;}
.y82f_c00000{bottom:773.134667pt;}
.y1725_c00000{bottom:773.170667pt;}
.ybb4_c00000{bottom:773.178667pt;}
.ybe7_c00000{bottom:773.189333pt;}
.y16aa_c00000{bottom:773.230667pt;}
.yaba_c00000{bottom:773.256000pt;}
.yf12_c00000{bottom:773.300000pt;}
.y7e9_c00000{bottom:773.313333pt;}
.yb8b_c00000{bottom:773.405333pt;}
.yd8d_c00000{bottom:773.669333pt;}
.y442_c00000{bottom:774.034667pt;}
.yd6b_c00000{bottom:774.134667pt;}
.y489_c00000{bottom:774.152000pt;}
.y277_c00000{bottom:774.344000pt;}
.y3be_c00000{bottom:775.362667pt;}
.yc2d_c00000{bottom:775.440000pt;}
.y303_c00000{bottom:775.577333pt;}
.y1666_c00000{bottom:777.776000pt;}
.y911_c00000{bottom:777.784000pt;}
.y10d8_c00000{bottom:778.113333pt;}
.y13dd_c00000{bottom:778.184000pt;}
.y880_c00000{bottom:779.154667pt;}
.ydc_c00000{bottom:779.306667pt;}
.y15a0_c00000{bottom:779.997333pt;}
.y6ac_c00000{bottom:780.882667pt;}
.y11b_c00000{bottom:781.557333pt;}
.y8e7_c00000{bottom:781.997333pt;}
.y1433_c00000{bottom:782.122667pt;}
.y9c_c00000{bottom:782.226667pt;}
.y577_c00000{bottom:782.346667pt;}
.y11de_c00000{bottom:785.833333pt;}
.y5cd_c00000{bottom:786.632000pt;}
.ye03_c00000{bottom:787.074667pt;}
.y150_c00000{bottom:788.861333pt;}
.yeaf_c00000{bottom:789.024000pt;}
.yf61_c00000{bottom:789.086667pt;}
.yf93_c00000{bottom:789.160000pt;}
.yff3_c00000{bottom:789.177333pt;}
.y340_c00000{bottom:789.413333pt;}
.y646_c00000{bottom:789.702667pt;}
.ydb8_c00000{bottom:789.706667pt;}
.y740_c00000{bottom:789.973333pt;}
.ycd4_c00000{bottom:789.984000pt;}
.ycf1_c00000{bottom:790.145333pt;}
.y515_c00000{bottom:790.152000pt;}
.y25b_c00000{bottom:790.189333pt;}
.yc5c_c00000{bottom:790.469333pt;}
.y665_c00000{bottom:790.490667pt;}
.y7a_c00000{bottom:790.521333pt;}
.yb16_c00000{bottom:790.902667pt;}
.yed8_c00000{bottom:791.120000pt;}
.yfad_c00000{bottom:791.630667pt;}
.y1193_c00000{bottom:791.693333pt;}
.yb6c_c00000{bottom:792.136000pt;}
.y1766_c00000{bottom:792.174667pt;}
.y17de_c00000{bottom:792.590667pt;}
.yb_c00000{bottom:792.657600pt;}
.y62d_c00000{bottom:792.849333pt;}
.y4be_c00000{bottom:792.924000pt;}
.yfcc_c00000{bottom:793.018667pt;}
.y155c_c00000{bottom:793.032000pt;}
.y18af_c00000{bottom:793.081333pt;}
.y133a_c00000{bottom:793.150667pt;}
.y1686_c00000{bottom:793.510667pt;}
.y12c0_c00000{bottom:793.517333pt;}
.y11b3_c00000{bottom:793.564000pt;}
.y1210_c00000{bottom:793.938667pt;}
.y99c_c00000{bottom:793.978667pt;}
.y111f_c00000{bottom:794.205333pt;}
.ydd4_c00000{bottom:794.245333pt;}
.y1068_c00000{bottom:795.164000pt;}
.y9c0_c00000{bottom:795.210667pt;}
.y15f1_c00000{bottom:795.305333pt;}
.ye91_c00000{bottom:795.310667pt;}
.y69a_c00000{bottom:795.494667pt;}
.y174e_c00000{bottom:795.558667pt;}
.y12e0_c00000{bottom:795.753333pt;}
.y178f_c00000{bottom:795.776000pt;}
.y116_c00000{bottom:796.388000pt;}
.y1509_c00000{bottom:796.410667pt;}
.y398_c00000{bottom:796.637333pt;}
.y1086_c00000{bottom:796.824000pt;}
.y2a8_c00000{bottom:796.969333pt;}
.y82e_c00000{bottom:797.037333pt;}
.y1724_c00000{bottom:797.073333pt;}
.ybb3_c00000{bottom:797.081333pt;}
.y16a9_c00000{bottom:797.133333pt;}
.yab9_c00000{bottom:797.158667pt;}
.yf11_c00000{bottom:797.202667pt;}
.yb8a_c00000{bottom:797.308000pt;}
.yd8c_c00000{bottom:797.572000pt;}
.y441_c00000{bottom:797.938667pt;}
.y488_c00000{bottom:798.054667pt;}
.y276_c00000{bottom:798.246667pt;}
.ye15_c00000{bottom:798.866667pt;}
.y3bd_c00000{bottom:799.266667pt;}
.yc2c_c00000{bottom:799.344000pt;}
.y302_c00000{bottom:799.480000pt;}
.y35_c00000{bottom:799.660000pt;}
.y5e3_c00000{bottom:800.572000pt;}
.y1665_c00000{bottom:801.680000pt;}
.y910_c00000{bottom:801.686667pt;}
.y10d7_c00000{bottom:802.016000pt;}
.y13dc_c00000{bottom:802.088000pt;}
.y87f_c00000{bottom:803.057333pt;}
.y56_c00000{bottom:803.104000pt;}
.y14fc_c00000{bottom:803.153333pt;}
.y132f_c00000{bottom:803.901333pt;}
.ybe6_c00000{bottom:803.956000pt;}
.y8e6_c00000{bottom:805.900000pt;}
.y9b_c00000{bottom:806.129333pt;}
.y576_c00000{bottom:806.249333pt;}
.y135c_c00000{bottom:810.534667pt;}
.ye02_c00000{bottom:810.977333pt;}
.y2e6_c00000{bottom:812.764000pt;}
.y1432_c00000{bottom:812.889333pt;}
.yf92_c00000{bottom:813.062667pt;}
.y33f_c00000{bottom:813.316000pt;}
.y645_c00000{bottom:813.605333pt;}
.ydb7_c00000{bottom:813.609333pt;}
.ycd3_c00000{bottom:813.888000pt;}
.yd6a_c00000{bottom:814.034667pt;}
.y514_c00000{bottom:814.054667pt;}
.yc0d_c00000{bottom:814.070667pt;}
.y25a_c00000{bottom:814.092000pt;}
.yc5b_c00000{bottom:814.372000pt;}
.y664_c00000{bottom:814.393333pt;}
.y79_c00000{bottom:814.424000pt;}
.yb15_c00000{bottom:814.805333pt;}
.y2ca_c00000{bottom:814.889333pt;}
.yed7_c00000{bottom:815.022667pt;}
.yfac_c00000{bottom:815.533333pt;}
.y1192_c00000{bottom:815.597333pt;}
.yb6b_c00000{bottom:816.038667pt;}
.y1765_c00000{bottom:816.078667pt;}
.y62c_c00000{bottom:816.752000pt;}
.yfcb_c00000{bottom:816.921333pt;}
.y155b_c00000{bottom:816.934667pt;}
.y18ae_c00000{bottom:816.984000pt;}
.y1685_c00000{bottom:817.413333pt;}
.y12bf_c00000{bottom:817.420000pt;}
.y11b2_c00000{bottom:817.466667pt;}
.y195d_c00000{bottom:817.841333pt;}
.y99b_c00000{bottom:817.882667pt;}
.y111e_c00000{bottom:818.109333pt;}
.ydd3_c00000{bottom:818.148000pt;}
.y9bf_c00000{bottom:819.113333pt;}
.y15f0_c00000{bottom:819.208000pt;}
.ye90_c00000{bottom:819.214667pt;}
.y10ba_c00000{bottom:819.398667pt;}
.y174d_c00000{bottom:819.461333pt;}
.y12df_c00000{bottom:819.656000pt;}
.y178e_c00000{bottom:819.678667pt;}
.y1508_c00000{bottom:820.313333pt;}
.y397_c00000{bottom:820.540000pt;}
.y1085_c00000{bottom:820.726667pt;}
.y82d_c00000{bottom:820.940000pt;}
.y1723_c00000{bottom:820.976000pt;}
.ybb2_c00000{bottom:820.984000pt;}
.y16a8_c00000{bottom:821.036000pt;}
.yab8_c00000{bottom:821.062667pt;}
.yf10_c00000{bottom:821.105333pt;}
.yb89_c00000{bottom:821.210667pt;}
.y440_c00000{bottom:821.841333pt;}
.y275_c00000{bottom:822.149333pt;}
.y11dd_c00000{bottom:822.372000pt;}
.ye14_c00000{bottom:822.769333pt;}
.y3bc_c00000{bottom:823.169333pt;}
.yc2b_c00000{bottom:823.246667pt;}
.y301_c00000{bottom:823.382667pt;}
.y2a_c00000{bottom:824.030667pt;}
.y1664_c00000{bottom:825.582667pt;}
.y90f_c00000{bottom:825.589333pt;}
.y10d6_c00000{bottom:825.920000pt;}
.y87e_c00000{bottom:826.961333pt;}
.y55_c00000{bottom:827.006667pt;}
.y13c2_c00000{bottom:827.804000pt;}
.yf7d_c00000{bottom:829.618667pt;}
.y1375_c00000{bottom:829.804000pt;}
.y9a_c00000{bottom:830.032000pt;}
.y575_c00000{bottom:830.152000pt;}
.y135b_c00000{bottom:834.438667pt;}
.y2e5_c00000{bottom:836.666667pt;}
.yf91_c00000{bottom:836.965333pt;}
.y33e_c00000{bottom:837.220000pt;}
.y2a7_c00000{bottom:837.404000pt;}
.y644_c00000{bottom:837.508000pt;}
.ydb6_c00000{bottom:837.513333pt;}
.ycd2_c00000{bottom:837.790667pt;}
.yd69_c00000{bottom:837.938667pt;}
.y487_c00000{bottom:837.946667pt;}
.y513_c00000{bottom:837.957333pt;}
.y259_c00000{bottom:837.994667pt;}
.yc5a_c00000{bottom:838.274667pt;}
.y663_c00000{bottom:838.296000pt;}
.y78_c00000{bottom:838.328000pt;}
.yb14_c00000{bottom:838.709333pt;}
.y2c9_c00000{bottom:838.792000pt;}
.yed6_c00000{bottom:838.926667pt;}
.yf60_c00000{bottom:839.029333pt;}
.yff2_c00000{bottom:839.125333pt;}
.yfab_c00000{bottom:839.436000pt;}
.yb6a_c00000{bottom:839.941333pt;}
.y13db_c00000{bottom:839.962667pt;}
.y1764_c00000{bottom:839.981333pt;}
.y62b_c00000{bottom:840.654667pt;}
.yfca_c00000{bottom:840.824000pt;}
.y18ad_c00000{bottom:840.888000pt;}
.y1684_c00000{bottom:841.316000pt;}
.y12be_c00000{bottom:841.324000pt;}
.y11b1_c00000{bottom:841.370667pt;}
.ye01_c00000{bottom:841.744000pt;}
.yeae_c00000{bottom:841.781333pt;}
.y99a_c00000{bottom:841.785333pt;}
.y1934_c00000{bottom:841.934667pt;}
.y111d_c00000{bottom:842.012000pt;}
.ydd2_c00000{bottom:842.050667pt;}
.ya_c00000{bottom:842.240000pt;}
.y9be_c00000{bottom:843.017333pt;}
.y15ef_c00000{bottom:843.112000pt;}
.ye8f_c00000{bottom:843.117333pt;}
.y1317_c00000{bottom:843.301333pt;}
.y12de_c00000{bottom:843.558667pt;}
.y178d_c00000{bottom:843.582667pt;}
.y1507_c00000{bottom:844.217333pt;}
.y396_c00000{bottom:844.444000pt;}
.y1084_c00000{bottom:844.629333pt;}
.y82c_c00000{bottom:844.844000pt;}
.y1722_c00000{bottom:844.880000pt;}
.ybb1_c00000{bottom:844.888000pt;}
.y16a7_c00000{bottom:844.940000pt;}
.yab7_c00000{bottom:844.965333pt;}
.yf0f_c00000{bottom:845.008000pt;}
.y43f_c00000{bottom:845.744000pt;}
.y274_c00000{bottom:846.053333pt;}
.y11dc_c00000{bottom:846.274667pt;}
.ye13_c00000{bottom:846.672000pt;}
.y3bb_c00000{bottom:847.072000pt;}
.yc2a_c00000{bottom:847.149333pt;}
.y300_c00000{bottom:847.286667pt;}
.y1663_c00000{bottom:849.485333pt;}
.y90e_c00000{bottom:849.493333pt;}
.y10d5_c00000{bottom:849.822667pt;}
.y54_c00000{bottom:850.909333pt;}
.y8b7_c00000{bottom:851.706667pt;}
.yb88_c00000{bottom:851.977333pt;}
.y970_c00000{bottom:853.934667pt;}
.y99_c00000{bottom:853.936000pt;}
.y115_c00000{bottom:855.408000pt;}
.yf7c_c00000{bottom:856.356000pt;}
.y11a_c00000{bottom:857.578667pt;}
.y52f_c00000{bottom:857.965333pt;}
.y135a_c00000{bottom:858.341333pt;}
.y2e4_c00000{bottom:860.569333pt;}
.y174c_c00000{bottom:860.601333pt;}
.y33d_c00000{bottom:861.122667pt;}
.y2a6_c00000{bottom:861.306667pt;}
.y643_c00000{bottom:861.410667pt;}
.yd68_c00000{bottom:861.841333pt;}
.y486_c00000{bottom:861.849333pt;}
.y258_c00000{bottom:861.898667pt;}
.yc59_c00000{bottom:862.177333pt;}
.y662_c00000{bottom:862.200000pt;}
.y77_c00000{bottom:862.230667pt;}
.yb13_c00000{bottom:862.612000pt;}
.y2c8_c00000{bottom:862.694667pt;}
.yed5_c00000{bottom:862.829333pt;}
.yf5f_c00000{bottom:862.932000pt;}
.yff1_c00000{bottom:863.028000pt;}
.yfaa_c00000{bottom:863.340000pt;}
.yb69_c00000{bottom:863.845333pt;}
.y1763_c00000{bottom:863.884000pt;}
.y87d_c00000{bottom:864.350667pt;}
.y62a_c00000{bottom:864.557333pt;}
.yfc9_c00000{bottom:864.728000pt;}
.y1683_c00000{bottom:865.218667pt;}
.y12bd_c00000{bottom:865.226667pt;}
.y1431_c00000{bottom:865.646667pt;}
.y999_c00000{bottom:865.688000pt;}
.y111c_c00000{bottom:865.914667pt;}
.y574_c00000{bottom:865.946667pt;}
.ydd1_c00000{bottom:865.953333pt;}
.y9bd_c00000{bottom:866.920000pt;}
.y15ee_c00000{bottom:867.014667pt;}
.ye8e_c00000{bottom:867.020000pt;}
.y178c_c00000{bottom:867.485333pt;}
.y395_c00000{bottom:868.346667pt;}
.y82b_c00000{bottom:868.746667pt;}
.y1721_c00000{bottom:868.782667pt;}
.y16a6_c00000{bottom:868.842667pt;}
.yf0e_c00000{bottom:868.912000pt;}
.y43e_c00000{bottom:869.646667pt;}
.y11db_c00000{bottom:870.178667pt;}
.ye12_c00000{bottom:870.574667pt;}
.y3ba_c00000{bottom:870.974667pt;}
.y1662_c00000{bottom:873.388000pt;}
.y90d_c00000{bottom:873.396000pt;}
.y53_c00000{bottom:874.812000pt;}
.y839_c00000{bottom:875.609333pt;}
.yab6_c00000{bottom:875.730667pt;}
.y98_c00000{bottom:877.838667pt;}
.y34_c00000{bottom:878.456000pt;}
.y1359_c00000{bottom:882.244000pt;}
.y419_c00000{bottom:884.473333pt;}
.y174b_c00000{bottom:884.504000pt;}
.y33c_c00000{bottom:885.025333pt;}
.yd67_c00000{bottom:885.744000pt;}
.y703_c00000{bottom:885.801333pt;}
.y661_c00000{bottom:886.102667pt;}
.y76_c00000{bottom:886.133333pt;}
.yc29_c00000{bottom:886.397333pt;}
.y33_c00000{bottom:886.442667pt;}
.yb12_c00000{bottom:886.514667pt;}
.y2c7_c00000{bottom:886.597333pt;}
.yff0_c00000{bottom:886.930667pt;}
.y10d4_c00000{bottom:887.733333pt;}
.yb68_c00000{bottom:887.748000pt;}
.y87c_c00000{bottom:888.254667pt;}
.y2ff_c00000{bottom:888.457333pt;}
.y629_c00000{bottom:888.461333pt;}
.yfc8_c00000{bottom:888.630667pt;}
.y12bc_c00000{bottom:889.129333pt;}
.y9_c00000{bottom:889.280000pt;}
.y998_c00000{bottom:889.590667pt;}
.y111b_c00000{bottom:889.817333pt;}
.y573_c00000{bottom:889.849333pt;}
.ydd0_c00000{bottom:889.856000pt;}
.y15ed_c00000{bottom:890.917333pt;}
.y394_c00000{bottom:892.249333pt;}
.y82a_c00000{bottom:892.649333pt;}
.y1720_c00000{bottom:892.685333pt;}
.yf0d_c00000{bottom:892.814667pt;}
.y11da_c00000{bottom:894.081333pt;}
.ye11_c00000{bottom:894.478667pt;}
.y3b9_c00000{bottom:894.878667pt;}
.y1682_c00000{bottom:895.985333pt;}
.y90c_c00000{bottom:897.298667pt;}
.y52_c00000{bottom:898.716000pt;}
.y950_c00000{bottom:899.512000pt;}
.y16a5_c00000{bottom:899.608000pt;}
.y97_c00000{bottom:901.741333pt;}
.y1661_c00000{bottom:904.154667pt;}
.y89a_c00000{bottom:905.770667pt;}
.y418_c00000{bottom:908.376000pt;}
.y174a_c00000{bottom:908.406667pt;}
.y33b_c00000{bottom:908.928000pt;}
.yd66_c00000{bottom:909.646667pt;}
.y702_c00000{bottom:909.704000pt;}
.y660_c00000{bottom:910.005333pt;}
.yb7_c00000{bottom:910.036000pt;}
.yb11_c00000{bottom:910.417333pt;}
.y10d3_c00000{bottom:911.636000pt;}
.y87b_c00000{bottom:912.157333pt;}
.y628_c00000{bottom:912.364000pt;}
.y1358_c00000{bottom:913.010667pt;}
.y997_c00000{bottom:913.494667pt;}
.y114_c00000{bottom:914.429333pt;}
.y11d9_c00000{bottom:917.984000pt;}
.yb67_c00000{bottom:918.514667pt;}
.y3b8_c00000{bottom:918.781333pt;}
.y12bb_c00000{bottom:919.896000pt;}
.y8_c00000{bottom:921.920000pt;}
.y51_c00000{bottom:922.618667pt;}
.y829_c00000{bottom:923.416000pt;}
.y171f_c00000{bottom:923.452000pt;}
.yf0c_c00000{bottom:923.580000pt;}
.y75_c00000{bottom:925.644000pt;}
.y90b_c00000{bottom:928.065333pt;}
.y71a_c00000{bottom:929.673333pt;}
.yc0c_c00000{bottom:932.278667pt;}
.y701_c00000{bottom:933.606667pt;}
.y87a_c00000{bottom:936.060000pt;}
.y14fb_c00000{bottom:937.184000pt;}
.y7_c00000{bottom:940.320000pt;}
.y11d8_c00000{bottom:941.886667pt;}
.y3b7_c00000{bottom:942.684000pt;}
.y50_c00000{bottom:946.521333pt;}
.y1681_c00000{bottom:948.742667pt;}
.y74_c00000{bottom:949.546667pt;}
.y159f_c00000{bottom:953.576000pt;}
.y29_c00000{bottom:958.061333pt;}
.y6_c00000{bottom:958.720000pt;}
.y4f_c00000{bottom:970.424000pt;}
.yb66_c00000{bottom:971.272000pt;}
.y11d7_c00000{bottom:972.653333pt;}
.y73_c00000{bottom:973.450667pt;}
.y5_c00000{bottom:977.120000pt;}
.y642_c00000{bottom:977.480000pt;}
.y28_c00000{bottom:994.328000pt;}
.y4_c00000{bottom:995.520000pt;}
.y3_c00000{bottom:1013.920000pt;}
.y4e_c00000{bottom:1032.964000pt;}
.y4d_c00000{bottom:1036.993333pt;}
.h16_c00000{height:25.143595pt;}
.h21_c00000{height:33.996000pt;}
.h19_c00000{height:34.001333pt;}
.h17_c00000{height:39.852000pt;}
.h6_c00000{height:40.099375pt;}
.h1a_c00000{height:44.423595pt;}
.h1d_c00000{height:44.428928pt;}
.he_c00000{height:47.820000pt;}
.h2_c00000{height:49.483750pt;}
.h18_c00000{height:51.870507pt;}
.h15_c00000{height:51.875840pt;}
.h20_c00000{height:53.132000pt;}
.h22_c00000{height:53.137333pt;}
.h1b_c00000{height:53.281333pt;}
.h1c_c00000{height:53.286667pt;}
.h8_c00000{height:56.525625pt;}
.hf_c00000{height:57.384000pt;}
.h3_c00000{height:62.812500pt;}
.h12_c00000{height:63.228000pt;}
.h1e_c00000{height:63.757333pt;}
.h1f_c00000{height:63.762667pt;}
.h13_c00000{height:63.937333pt;}
.hc_c00000{height:64.912027pt;}
.h9_c00000{height:72.468750pt;}
.h11_c00000{height:75.874667pt;}
.h23_c00000{height:76.722667pt;}
.h24_c00000{height:76.728000pt;}
.h4_c00000{height:80.681875pt;}
.hd_c00000{height:82.652000pt;}
.h7_c00000{height:88.411875pt;}
.h10_c00000{height:99.148000pt;}
.h5_c00000{height:112.568125pt;}
.h14_c00000{height:131.094667pt;}
.h1_c00000{height:1122.666667pt;}
.h0_c00000{height:1122.720000pt;}
.hb_c00000{height:1123.333333pt;}
.ha_c00000{height:1123.653333pt;}
.w0_c00000{width:793.280000pt;}
.w1_c00000{width:793.333333pt;}
.w2_c00000{width:794.550667pt;}
.w3_c00000{width:794.666667pt;}
.x0_c00000{left:0.000000pt;}
.x19_c00000{left:111.014667pt;}
.x1e_c00000{left:112.298667pt;}
.x2_c00000{left:113.440000pt;}
.x7b_c00000{left:115.333333pt;}
.xd2_c00000{left:118.630667pt;}
.x78_c00000{left:120.765333pt;}
.x11b_c00000{left:122.425333pt;}
.x1_c00000{left:123.680000pt;}
.x4e_c00000{left:126.042667pt;}
.x59_c00000{left:129.457333pt;}
.x3a_c00000{left:131.337333pt;}
.x6b_c00000{left:132.462667pt;}
.x8e_c00000{left:134.196000pt;}
.x1b_c00000{left:136.797333pt;}
.xc9_c00000{left:138.108000pt;}
.x11c_c00000{left:140.992000pt;}
.x38_c00000{left:142.078667pt;}
.x8a_c00000{left:143.485333pt;}
.x76_c00000{left:144.676000pt;}
.x49_c00000{left:146.336000pt;}
.xae_c00000{left:147.258667pt;}
.x12_c00000{left:149.152000pt;}
.x10a_c00000{left:150.173333pt;}
.x2e_c00000{left:151.154667pt;}
.x3b_c00000{left:152.405333pt;}
.x118_c00000{left:153.789333pt;}
.x57_c00000{left:155.085333pt;}
.xd3_c00000{left:156.252000pt;}
.x82_c00000{left:157.221333pt;}
.x116_c00000{left:158.577333pt;}
.xe0_c00000{left:160.150667pt;}
.xa4_c00000{left:161.096000pt;}
.x7e_c00000{left:162.941333pt;}
.x122_c00000{left:164.245333pt;}
.x5c_c00000{left:165.242667pt;}
.xf8_c00000{left:166.280000pt;}
.x7_c00000{left:168.320000pt;}
.x55_c00000{left:169.582667pt;}
.xc0_c00000{left:170.689333pt;}
.x1c_c00000{left:172.696000pt;}
.xb7_c00000{left:173.825333pt;}
.x84_c00000{left:174.748000pt;}
.x60_c00000{left:175.817333pt;}
.xe5_c00000{left:176.962667pt;}
.x93_c00000{left:178.084000pt;}
.xc5_c00000{left:179.858667pt;}
.x4_c00000{left:181.440000pt;}
.xbc_c00000{left:183.325333pt;}
.x128_c00000{left:184.524000pt;}
.x4c_c00000{left:185.449333pt;}
.x5_c00000{left:186.400000pt;}
.x45_c00000{left:187.514667pt;}
.xab_c00000{left:188.462667pt;}
.x34_c00000{left:190.120000pt;}
.xb4_c00000{left:192.050667pt;}
.x10b_c00000{left:193.382667pt;}
.x71_c00000{left:194.673333pt;}
.x17_c00000{left:196.240000pt;}
.x75_c00000{left:198.997333pt;}
.x9b_c00000{left:200.812000pt;}
.xf2_c00000{left:201.818667pt;}
.x4a_c00000{left:204.701333pt;}
.x4f_c00000{left:205.728000pt;}
.x33_c00000{left:207.344000pt;}
.xc7_c00000{left:208.493333pt;}
.xc2_c00000{left:210.226667pt;}
.x26_c00000{left:212.016000pt;}
.x130_c00000{left:213.264000pt;}
.xb3_c00000{left:214.160000pt;}
.x12c_c00000{left:216.224000pt;}
.x6f_c00000{left:217.422667pt;}
.x2f_c00000{left:219.634667pt;}
.x30_c00000{left:221.682667pt;}
.x22_c00000{left:222.641333pt;}
.x2a_c00000{left:224.284000pt;}
.x15_c00000{left:225.632000pt;}
.x92_c00000{left:227.498667pt;}
.xd_c00000{left:230.560000pt;}
.x21_c00000{left:232.954667pt;}
.xd4_c00000{left:234.101333pt;}
.x10_c00000{left:236.572000pt;}
.xf_c00000{left:237.973333pt;}
.x64_c00000{left:239.274667pt;}
.x4b_c00000{left:240.584000pt;}
.x31_c00000{left:242.166667pt;}
.x100_c00000{left:243.310667pt;}
.x14_c00000{left:244.316000pt;}
.xac_c00000{left:245.653333pt;}
.x2c_c00000{left:246.602667pt;}
.x63_c00000{left:248.638667pt;}
.x2b_c00000{left:251.164000pt;}
.x98_c00000{left:252.752000pt;}
.xbb_c00000{left:253.753333pt;}
.x8_c00000{left:254.871680pt;}
.xc4_c00000{left:256.252000pt;}
.x6a_c00000{left:257.218667pt;}
.x2d_c00000{left:258.304000pt;}
.x42_c00000{left:260.033333pt;}
.x86_c00000{left:261.150667pt;}
.x24_c00000{left:262.212000pt;}
.x9a_c00000{left:264.321333pt;}
.x134_c00000{left:265.454667pt;}
.xce_c00000{left:266.994667pt;}
.x25_c00000{left:269.796000pt;}
.xa1_c00000{left:271.069333pt;}
.xe4_c00000{left:272.264000pt;}
.x28_c00000{left:273.484000pt;}
.x8c_c00000{left:275.310667pt;}
.xf0_c00000{left:276.332000pt;}
.xc_c00000{left:278.400000pt;}
.xd0_c00000{left:280.256000pt;}
.x6_c00000{left:281.280000pt;}
.xa_c00000{left:282.720000pt;}
.x39_c00000{left:284.104000pt;}
.x1a_c00000{left:286.469333pt;}
.x4d_c00000{left:287.936000pt;}
.x8f_c00000{left:289.600000pt;}
.x5f_c00000{left:290.862667pt;}
.x3f_c00000{left:291.925333pt;}
.x95_c00000{left:293.849333pt;}
.x107_c00000{left:295.249333pt;}
.xf5_c00000{left:296.421333pt;}
.x51_c00000{left:298.238667pt;}
.x3c_c00000{left:299.656000pt;}
.x11_c00000{left:301.120000pt;}
.xde_c00000{left:302.278667pt;}
.x102_c00000{left:303.221333pt;}
.xb6_c00000{left:304.248000pt;}
.x32_c00000{left:306.240000pt;}
.x20_c00000{left:307.590667pt;}
.xda_c00000{left:309.740000pt;}
.xdc_c00000{left:311.833333pt;}
.x52_c00000{left:314.182667pt;}
.xc8_c00000{left:315.798667pt;}
.xa0_c00000{left:317.034667pt;}
.x79_c00000{left:318.474667pt;}
.x16_c00000{left:319.886667pt;}
.xc6_c00000{left:321.068000pt;}
.x23_c00000{left:322.238667pt;}
.xa9_c00000{left:324.056000pt;}
.x10f_c00000{left:325.372000pt;}
.x62_c00000{left:326.429333pt;}
.x101_c00000{left:327.930667pt;}
.x115_c00000{left:329.077333pt;}
.xd5_c00000{left:330.329333pt;}
.x58_c00000{left:332.190667pt;}
.x53_c00000{left:333.858667pt;}
.x12e_c00000{left:336.538667pt;}
.x80_c00000{left:337.916000pt;}
.x35_c00000{left:339.630667pt;}
.x29_c00000{left:341.856000pt;}
.x7f_c00000{left:342.814667pt;}
.x69_c00000{left:345.006667pt;}
.x43_c00000{left:347.502667pt;}
.x6d_c00000{left:348.581333pt;}
.xb_c00000{left:351.040000pt;}
.x90_c00000{left:353.025333pt;}
.xff_c00000{left:354.170667pt;}
.x6e_c00000{left:355.890667pt;}
.x10c_c00000{left:357.705333pt;}
.x85_c00000{left:359.925333pt;}
.x131_c00000{left:361.456000pt;}
.x1f_c00000{left:363.361333pt;}
.x12f_c00000{left:364.770667pt;}
.x13_c00000{left:366.932000pt;}
.xbf_c00000{left:368.841333pt;}
.x133_c00000{left:369.969333pt;}
.x11f_c00000{left:371.712000pt;}
.x9_c00000{left:373.440000pt;}
.xe_c00000{left:376.474880pt;}
.x91_c00000{left:378.624000pt;}
.x5b_c00000{left:380.489333pt;}
.xaa_c00000{left:381.710667pt;}
.x72_c00000{left:382.664000pt;}
.x112_c00000{left:383.756000pt;}
.x89_c00000{left:385.241333pt;}
.xad_c00000{left:386.934667pt;}
.x56_c00000{left:389.472000pt;}
.x54_c00000{left:391.034667pt;}
.xe2_c00000{left:392.298667pt;}
.x37_c00000{left:393.373333pt;}
.x1d_c00000{left:394.866667pt;}
.x3_c00000{left:396.640000pt;}
.x5d_c00000{left:398.456000pt;}
.x109_c00000{left:399.454667pt;}
.x99_c00000{left:401.177333pt;}
.xb9_c00000{left:402.158667pt;}
.x68_c00000{left:403.413333pt;}
.xd1_c00000{left:406.505333pt;}
.x124_c00000{left:407.781333pt;}
.x74_c00000{left:408.941333pt;}
.xfa_c00000{left:411.970667pt;}
.x117_c00000{left:414.509333pt;}
.xd7_c00000{left:415.765333pt;}
.x11a_c00000{left:417.501333pt;}
.xb1_c00000{left:419.048000pt;}
.x12b_c00000{left:420.382667pt;}
.xfe_c00000{left:422.162667pt;}
.x111_c00000{left:427.070667pt;}
.x125_c00000{left:430.294667pt;}
.xe6_c00000{left:431.857333pt;}
.xbe_c00000{left:434.249333pt;}
.x70_c00000{left:435.184000pt;}
.xb2_c00000{left:436.620000pt;}
.x7a_c00000{left:438.098667pt;}
.xa7_c00000{left:439.954667pt;}
.xa8_c00000{left:441.416000pt;}
.x119_c00000{left:442.925333pt;}
.x96_c00000{left:445.608000pt;}
.xdf_c00000{left:446.832000pt;}
.x10d_c00000{left:448.190667pt;}
.xa2_c00000{left:449.314667pt;}
.x126_c00000{left:452.550667pt;}
.xfd_c00000{left:453.921333pt;}
.x65_c00000{left:456.840000pt;}
.xdb_c00000{left:457.958667pt;}
.x81_c00000{left:459.676000pt;}
.xba_c00000{left:460.868000pt;}
.xe3_c00000{left:462.206667pt;}
.x123_c00000{left:463.598667pt;}
.x121_c00000{left:464.834667pt;}
.xfb_c00000{left:466.929333pt;}
.xcb_c00000{left:467.858667pt;}
.x94_c00000{left:469.156000pt;}
.x27_c00000{left:470.277333pt;}
.x67_c00000{left:472.244000pt;}
.x110_c00000{left:473.577333pt;}
.x41_c00000{left:475.993333pt;}
.xb5_c00000{left:479.221333pt;}
.x5a_c00000{left:482.109333pt;}
.xf4_c00000{left:484.322667pt;}
.x108_c00000{left:486.332000pt;}
.x5e_c00000{left:489.052000pt;}
.x120_c00000{left:490.357333pt;}
.x36_c00000{left:492.789333pt;}
.x7c_c00000{left:494.994667pt;}
.xcd_c00000{left:499.965333pt;}
.x104_c00000{left:501.314667pt;}
.x47_c00000{left:503.110667pt;}
.xa3_c00000{left:505.048000pt;}
.xfc_c00000{left:507.090667pt;}
.x113_c00000{left:509.134667pt;}
.x50_c00000{left:510.574667pt;}
.xcc_c00000{left:512.154667pt;}
.xd6_c00000{left:513.874667pt;}
.xca_c00000{left:515.208000pt;}
.x12d_c00000{left:517.042667pt;}
.x9f_c00000{left:518.180000pt;}
.xe1_c00000{left:519.577333pt;}
.x6c_c00000{left:523.278667pt;}
.x87_c00000{left:524.309333pt;}
.x106_c00000{left:526.788000pt;}
.x40_c00000{left:528.306667pt;}
.xdd_c00000{left:531.824000pt;}
.x66_c00000{left:533.440000pt;}
.xb8_c00000{left:534.556000pt;}
.x7d_c00000{left:537.312000pt;}
.xe9_c00000{left:539.017333pt;}
.xf7_c00000{left:540.913333pt;}
.xd8_c00000{left:542.244000pt;}
.xa5_c00000{left:543.450667pt;}
.x129_c00000{left:544.694667pt;}
.x48_c00000{left:546.453333pt;}
.x73_c00000{left:547.538667pt;}
.x11e_c00000{left:549.166667pt;}
.xea_c00000{left:550.078667pt;}
.x44_c00000{left:552.206667pt;}
.xc1_c00000{left:557.265333pt;}
.xf1_c00000{left:558.450667pt;}
.xeb_c00000{left:560.410667pt;}
.x114_c00000{left:561.360000pt;}
.xa6_c00000{left:563.730667pt;}
.x83_c00000{left:564.900000pt;}
.x9e_c00000{left:572.250667pt;}
.xf6_c00000{left:573.381333pt;}
.xed_c00000{left:574.312000pt;}
.x8b_c00000{left:576.424000pt;}
.x9c_c00000{left:577.676000pt;}
.x18_c00000{left:581.428000pt;}
.x97_c00000{left:583.210667pt;}
.xd9_c00000{left:587.045333pt;}
.xf9_c00000{left:589.541333pt;}
.x3e_c00000{left:590.945333pt;}
.x8d_c00000{left:592.126667pt;}
.xf3_c00000{left:594.309333pt;}
.xcf_c00000{left:597.166667pt;}
.x12a_c00000{left:598.908000pt;}
.xaf_c00000{left:601.717333pt;}
.x105_c00000{left:602.840000pt;}
.xc3_c00000{left:604.085333pt;}
.x103_c00000{left:606.220000pt;}
.x127_c00000{left:608.141333pt;}
.x10e_c00000{left:609.172000pt;}
.xbd_c00000{left:615.798667pt;}
.xb0_c00000{left:616.900000pt;}
.xef_c00000{left:618.828000pt;}
.xe8_c00000{left:620.212000pt;}
.xec_c00000{left:630.245333pt;}
.x132_c00000{left:633.065333pt;}
.x88_c00000{left:634.662667pt;}
.x61_c00000{left:637.860000pt;}
.x46_c00000{left:642.052000pt;}
.xe7_c00000{left:645.742667pt;}
.x11d_c00000{left:647.588000pt;}
.x77_c00000{left:658.288000pt;}
.x9d_c00000{left:660.793333pt;}
.x3d_c00000{left:663.822667pt;}
.xee_c00000{left:666.405333pt;}
}





/* 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_7820c7b07201fd46742f5d7e.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.001000;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_31a6741ae1aadf723ae02a5c.woff2')format("woff");}.ff2_c01000{font-family:ff2_c01000;line-height:1.001000;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_c01000;src:url('chunks/assets/font_66cc6db4d21439abfe32b09e.woff2')format("woff");}.ff3_c01000{font-family:ff3_c01000;line-height:1.001000;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_c01000;src:url('chunks/assets/font_88bfc91bc02b996f4150d20f.woff2')format("woff");}.ff4_c01000{font-family:ff4_c01000;line-height:0.697000;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_c01000;src:url('chunks/assets/font_10261dd1ab508a805c817f14.woff2')format("woff");}.ff5_c01000{font-family:ff5_c01000;line-height:0.696000;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_c01000;src:url('chunks/assets/font_529d7a6cfd7a51fdf33d0079.woff2')format("woff");}.ff6_c01000{font-family:ff6_c01000;line-height:1.000000;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_c01000;src:url('chunks/assets/font_8752481c1db2813d25148dce.woff2')format("woff");}.ff7_c01000{font-family:ff7_c01000;line-height:1.000000;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);}
.v3_c01000{vertical-align:-21.696000px;}
.v0_c01000{vertical-align:0.000000px;}
.v4_c01000{vertical-align:15.108000px;}
.v2_c01000{vertical-align:18.132000px;}
.v1_c01000{vertical-align:26.028000px;}
.ls0_c01000{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01000{word-spacing:-0.071730px;}
.ws21_c01000{word-spacing:-0.059778px;}
.ws12_c01000{word-spacing:-0.047820px;}
.ws20_c01000{word-spacing:-0.041844px;}
.ws26_c01000{word-spacing:0.000000px;}
.ws1e_c01000{word-spacing:18.793260px;}
.ws24_c01000{word-spacing:19.846296px;}
.ws6_c01000{word-spacing:20.227860px;}
.ws17_c01000{word-spacing:20.658240px;}
.ws25_c01000{word-spacing:21.280968px;}
.ws1f_c01000{word-spacing:21.303810px;}
.ws18_c01000{word-spacing:22.092840px;}
.wsb_c01000{word-spacing:22.308030px;}
.wsc_c01000{word-spacing:22.379760px;}
.wsd_c01000{word-spacing:22.451490px;}
.ws1c_c01000{word-spacing:22.790130px;}
.ws4_c01000{word-spacing:22.810140px;}
.ws5_c01000{word-spacing:23.312250px;}
.ws19_c01000{word-spacing:23.383980px;}
.ws14_c01000{word-spacing:23.742630px;}
.ws10_c01000{word-spacing:24.459930px;}
.ws1b_c01000{word-spacing:24.603390px;}
.ws9_c01000{word-spacing:25.033770px;}
.ws7_c01000{word-spacing:25.894530px;}
.ws22_c01000{word-spacing:25.943652px;}
.ws16_c01000{word-spacing:26.611830px;}
.ws11_c01000{word-spacing:26.755290px;}
.ws0_c01000{word-spacing:26.827020px;}
.ws23_c01000{word-spacing:26.900100px;}
.ws3_c01000{word-spacing:27.185670px;}
.ws8_c01000{word-spacing:27.400860px;}
.ws1d_c01000{word-spacing:27.472590px;}
.wsa_c01000{word-spacing:27.902970px;}
.ws2_c01000{word-spacing:28.189890px;}
.wsf_c01000{word-spacing:28.333350px;}
.ws13_c01000{word-spacing:28.405080px;}
.ws15_c01000{word-spacing:32.565420px;}
.wse_c01000{word-spacing:33.210990px;}
.ws1a_c01000{word-spacing:37.241310px;}
._0_c01000{margin-left:-40.670910px;}
._10_c01000{margin-left:-37.227870px;}
._6_c01000{margin-left:-35.649810px;}
._d_c01000{margin-left:-34.645590px;}
._8_c01000{margin-left:-33.354450px;}
._11_c01000{margin-left:-30.244602px;}
._3_c01000{margin-left:-27.329130px;}
._2_c01000{margin-left:-7.890300px;}
._9_c01000{margin-left:-5.082660px;}
._a_c01000{margin-left:-3.371310px;}
._4_c01000{margin-left:-2.008440px;}
._7_c01000{width:2.008440px;}
._5_c01000{width:3.873420px;}
._c_c01000{width:5.244690px;}
._e_c01000{width:21.160350px;}
._f_c01000{width:30.197670px;}
._b_c01000{width:32.268330px;}
._1_c01000{width:933.068610px;}
.fc0_c01000{color:rgb(0,0,0);}
.fs2_c01000{font-size:41.844000px;}
.fs1_c01000{font-size:47.820000px;}
.fs3_c01000{font-size:59.778000px;}
.fs0_c01000{font-size:71.730000px;}
.y0_c01000{bottom:0.000000px;}
.y26_c01000{bottom:98.865000px;}
.y25_c01000{bottom:111.375000px;}
.y24_c01000{bottom:129.307500px;}
.y23_c01000{bottom:134.731500px;}
.y22_c01000{bottom:162.726000px;}
.y21_c01000{bottom:189.616500px;}
.y20_c01000{bottom:216.508500px;}
.y1f_c01000{bottom:261.373500px;}
.y1e_c01000{bottom:288.264000px;}
.y1d_c01000{bottom:315.154500px;}
.y1c_c01000{bottom:360.021000px;}
.y1b_c01000{bottom:386.911500px;}
.y1a_c01000{bottom:413.802000px;}
.y19_c01000{bottom:440.692500px;}
.y18_c01000{bottom:467.583000px;}
.y17_c01000{bottom:494.475000px;}
.y16_c01000{bottom:521.365500px;}
.y15_c01000{bottom:548.256000px;}
.y14_c01000{bottom:575.146500px;}
.y13_c01000{bottom:620.013000px;}
.y12_c01000{bottom:646.903500px;}
.y11_c01000{bottom:673.794000px;}
.y10_c01000{bottom:700.684500px;}
.yf_c01000{bottom:727.576500px;}
.ye_c01000{bottom:754.467000px;}
.yd_c01000{bottom:781.357500px;}
.yc_c01000{bottom:808.248000px;}
.yb_c01000{bottom:853.114500px;}
.ya_c01000{bottom:880.005000px;}
.y9_c01000{bottom:906.895500px;}
.y8_c01000{bottom:933.786000px;}
.y7_c01000{bottom:960.678000px;}
.y6_c01000{bottom:987.568500px;}
.y5_c01000{bottom:1014.459000px;}
.y4_c01000{bottom:1041.349500px;}
.y3_c01000{bottom:1068.240000px;}
.y2_c01000{bottom:1095.132000px;}
.y1_c01000{bottom:1162.084500px;}
.h7_c01000{height:28.286544px;}
.h5_c01000{height:38.245500px;}
.h6_c01000{height:44.833500px;}
.h2_c01000{height:53.797500px;}
.h3_c01000{height:58.354320px;}
.h4_c01000{height:71.929500px;}
.h1_c01000{height:1263.750000px;}
.h0_c01000{height:1264.110000px;}
.w0_c01000{width:893.869500px;}
.w1_c01000{width:894.000000px;}
.x0_c01000{left:0.000000px;}
.x1_c01000{left:127.558500px;}
.x6_c01000{left:141.798000px;}
.x2_c01000{left:159.838500px;}
.x4_c01000{left:171.456000px;}
.x7_c01000{left:191.196000px;}
.x3_c01000{left:197.794500px;}
.x5_c01000{left:264.066000px;}
@media print{
.v3_c01000{vertical-align:-19.285333pt;}
.v0_c01000{vertical-align:0.000000pt;}
.v4_c01000{vertical-align:13.429333pt;}
.v2_c01000{vertical-align:16.117333pt;}
.v1_c01000{vertical-align:23.136000pt;}
.ls0_c01000{letter-spacing:0.000000pt;}
.ws1_c01000{word-spacing:-0.063760pt;}
.ws21_c01000{word-spacing:-0.053136pt;}
.ws12_c01000{word-spacing:-0.042507pt;}
.ws20_c01000{word-spacing:-0.037195pt;}
.ws26_c01000{word-spacing:0.000000pt;}
.ws1e_c01000{word-spacing:16.705120pt;}
.ws24_c01000{word-spacing:17.641152pt;}
.ws6_c01000{word-spacing:17.980320pt;}
.ws17_c01000{word-spacing:18.362880pt;}
.ws25_c01000{word-spacing:18.916416pt;}
.ws1f_c01000{word-spacing:18.936720pt;}
.ws18_c01000{word-spacing:19.638080pt;}
.wsb_c01000{word-spacing:19.829360pt;}
.wsc_c01000{word-spacing:19.893120pt;}
.wsd_c01000{word-spacing:19.956880pt;}
.ws1c_c01000{word-spacing:20.257893pt;}
.ws4_c01000{word-spacing:20.275680pt;}
.ws5_c01000{word-spacing:20.722000pt;}
.ws19_c01000{word-spacing:20.785760pt;}
.ws14_c01000{word-spacing:21.104560pt;}
.ws10_c01000{word-spacing:21.742160pt;}
.ws1b_c01000{word-spacing:21.869680pt;}
.ws9_c01000{word-spacing:22.252240pt;}
.ws7_c01000{word-spacing:23.017360pt;}
.ws22_c01000{word-spacing:23.061024pt;}
.ws16_c01000{word-spacing:23.654960pt;}
.ws11_c01000{word-spacing:23.782480pt;}
.ws0_c01000{word-spacing:23.846240pt;}
.ws23_c01000{word-spacing:23.911200pt;}
.ws3_c01000{word-spacing:24.165040pt;}
.ws8_c01000{word-spacing:24.356320pt;}
.ws1d_c01000{word-spacing:24.420080pt;}
.wsa_c01000{word-spacing:24.802640pt;}
.ws2_c01000{word-spacing:25.057680pt;}
.wsf_c01000{word-spacing:25.185200pt;}
.ws13_c01000{word-spacing:25.248960pt;}
.ws15_c01000{word-spacing:28.947040pt;}
.wse_c01000{word-spacing:29.520880pt;}
.ws1a_c01000{word-spacing:33.103387pt;}
._0_c01000{margin-left:-36.151920pt;}
._10_c01000{margin-left:-33.091440pt;}
._6_c01000{margin-left:-31.688720pt;}
._d_c01000{margin-left:-30.796080pt;}
._8_c01000{margin-left:-29.648400pt;}
._11_c01000{margin-left:-26.884091pt;}
._3_c01000{margin-left:-24.292560pt;}
._2_c01000{margin-left:-7.013600pt;}
._9_c01000{margin-left:-4.517920pt;}
._a_c01000{margin-left:-2.996720pt;}
._4_c01000{margin-left:-1.785280pt;}
._7_c01000{width:1.785280pt;}
._5_c01000{width:3.443040pt;}
._c_c01000{width:4.661947pt;}
._e_c01000{width:18.809200pt;}
._f_c01000{width:26.842373pt;}
._b_c01000{width:28.682960pt;}
._1_c01000{width:829.394320pt;}
.fs2_c01000{font-size:37.194667pt;}
.fs1_c01000{font-size:42.506667pt;}
.fs3_c01000{font-size:53.136000pt;}
.fs0_c01000{font-size:63.760000pt;}
.y0_c01000{bottom:0.000000pt;}
.y26_c01000{bottom:87.880000pt;}
.y25_c01000{bottom:99.000000pt;}
.y24_c01000{bottom:114.940000pt;}
.y23_c01000{bottom:119.761333pt;}
.y22_c01000{bottom:144.645333pt;}
.y21_c01000{bottom:168.548000pt;}
.y20_c01000{bottom:192.452000pt;}
.y1f_c01000{bottom:232.332000pt;}
.y1e_c01000{bottom:256.234667pt;}
.y1d_c01000{bottom:280.137333pt;}
.y1c_c01000{bottom:320.018667pt;}
.y1b_c01000{bottom:343.921333pt;}
.y1a_c01000{bottom:367.824000pt;}
.y19_c01000{bottom:391.726667pt;}
.y18_c01000{bottom:415.629333pt;}
.y17_c01000{bottom:439.533333pt;}
.y16_c01000{bottom:463.436000pt;}
.y15_c01000{bottom:487.338667pt;}
.y14_c01000{bottom:511.241333pt;}
.y13_c01000{bottom:551.122667pt;}
.y12_c01000{bottom:575.025333pt;}
.y11_c01000{bottom:598.928000pt;}
.y10_c01000{bottom:622.830667pt;}
.yf_c01000{bottom:646.734667pt;}
.ye_c01000{bottom:670.637333pt;}
.yd_c01000{bottom:694.540000pt;}
.yc_c01000{bottom:718.442667pt;}
.yb_c01000{bottom:758.324000pt;}
.ya_c01000{bottom:782.226667pt;}
.y9_c01000{bottom:806.129333pt;}
.y8_c01000{bottom:830.032000pt;}
.y7_c01000{bottom:853.936000pt;}
.y6_c01000{bottom:877.838667pt;}
.y5_c01000{bottom:901.741333pt;}
.y4_c01000{bottom:925.644000pt;}
.y3_c01000{bottom:949.546667pt;}
.y2_c01000{bottom:973.450667pt;}
.y1_c01000{bottom:1032.964000pt;}
.h7_c01000{height:25.143595pt;}
.h5_c01000{height:33.996000pt;}
.h6_c01000{height:39.852000pt;}
.h2_c01000{height:47.820000pt;}
.h3_c01000{height:51.870507pt;}
.h4_c01000{height:63.937333pt;}
.h1_c01000{height:1123.333333pt;}
.h0_c01000{height:1123.653333pt;}
.w0_c01000{width:794.550667pt;}
.w1_c01000{width:794.666667pt;}
.x0_c01000{left:0.000000pt;}
.x1_c01000{left:113.385333pt;}
.x6_c01000{left:126.042667pt;}
.x2_c01000{left:142.078667pt;}
.x4_c01000{left:152.405333pt;}
.x7_c01000{left:169.952000pt;}
.x3_c01000{left:175.817333pt;}
.x5_c01000{left:234.725333pt;}
}





/* 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_30ae2a198b3951cbdfedef9c.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:1.001000;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_cc72cceb3423f37e5f355d1b.woff2')format("woff");}.ff2_c01001{font-family:ff2_c01001;line-height:1.001000;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_c01001;src:url('chunks/assets/font_b5d9947d348f6e8aa36d4309.woff2')format("woff");}.ff3_c01001{font-family:ff3_c01001;line-height:1.001000;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_c01001;src:url('chunks/assets/font_a92746035b87de06ab3f4d7f.woff2')format("woff");}.ff4_c01001{font-family:ff4_c01001;line-height:0.697000;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_c01001;src:url('chunks/assets/font_ea1effb683074a6f66de9255.woff2')format("woff");}.ff5_c01001{font-family:ff5_c01001;line-height:0.696000;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_c01001;src:url('chunks/assets/font_00eeec724ec959149e6ffe6a.woff2')format("woff");}.ff6_c01001{font-family:ff6_c01001;line-height:1.000000;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_c01001;src:url('chunks/assets/font_c5e610fd2afa3f9fe719b4d3.woff2')format("woff");}.ff7_c01001{font-family:ff7_c01001;line-height:1.000000;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:-21.696000px;}
.v0_c01001{vertical-align:0.000000px;}
.v3_c01001{vertical-align:15.114000px;}
.v1_c01001{vertical-align:26.028000px;}
.ls0_c01001{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01001{word-spacing:-0.071730px;}
.ws23_c01001{word-spacing:-0.059778px;}
.wsb_c01001{word-spacing:-0.047820px;}
.ws21_c01001{word-spacing:-0.041844px;}
.ws30_c01001{word-spacing:0.000000px;}
.ws7_c01001{word-spacing:15.493680px;}
.ws5_c01001{word-spacing:15.565410px;}
.ws22_c01001{word-spacing:16.020504px;}
.ws15_c01001{word-spacing:16.139250px;}
.ws3_c01001{word-spacing:16.354440px;}
.ws2a_c01001{word-spacing:16.379172px;}
.ws29_c01001{word-spacing:16.438950px;}
.ws24_c01001{word-spacing:16.618284px;}
.ws6_c01001{word-spacing:17.860770px;}
.ws1d_c01001{word-spacing:18.219420px;}
.ws26_c01001{word-spacing:18.351846px;}
.ws12_c01001{word-spacing:18.649800px;}
.ws2c_c01001{word-spacing:19.427850px;}
.ws2b_c01001{word-spacing:19.487628px;}
.ws27_c01001{word-spacing:19.846296px;}
.ws1b_c01001{word-spacing:20.432070px;}
.ws1c_c01001{word-spacing:20.443050px;}
.wsd_c01001{word-spacing:20.873430px;}
.ws28_c01001{word-spacing:21.340746px;}
.ws16_c01001{word-spacing:21.590730px;}
.ws19_c01001{word-spacing:21.805920px;}
.ws4_c01001{word-spacing:22.021110px;}
.ws8_c01001{word-spacing:23.168790px;}
.wsa_c01001{word-spacing:23.312250px;}
.ws1a_c01001{word-spacing:23.383980px;}
.ws11_c01001{word-spacing:24.417360px;}
.ws14_c01001{word-spacing:25.033770px;}
.ws2_c01001{word-spacing:25.177230px;}
.ws18_c01001{word-spacing:25.535880px;}
.wsc_c01001{word-spacing:25.607610px;}
.ws13_c01001{word-spacing:25.894530px;}
.ws10_c01001{word-spacing:26.037990px;}
.ws1e_c01001{word-spacing:26.109720px;}
.wsf_c01001{word-spacing:26.755290px;}
.ws0_c01001{word-spacing:26.827020px;}
.ws2f_c01001{word-spacing:27.677214px;}
.ws2d_c01001{word-spacing:27.736992px;}
.ws2e_c01001{word-spacing:28.514106px;}
.ws25_c01001{word-spacing:29.051574px;}
.ws9_c01001{word-spacing:30.270060px;}
.wse_c01001{word-spacing:30.700440px;}
.ws1f_c01001{word-spacing:31.346010px;}
.ws17_c01001{word-spacing:32.278500px;}
.ws20_c01001{word-spacing:32.637150px;}
._0_c01001{margin-left:-40.670910px;}
._9_c01001{margin-left:-37.227870px;}
._6_c01001{margin-left:-35.219430px;}
._a_c01001{margin-left:-33.282720px;}
._10_c01001{margin-left:-30.084888px;}
._11_c01001{margin-left:-28.671102px;}
._5_c01001{margin-left:-27.329130px;}
._13_c01001{margin-left:-24.072528px;}
._4_c01001{margin-left:-7.818570px;}
._b_c01001{margin-left:-5.379750px;}
._7_c01001{margin-left:-3.849600px;}
._3_c01001{margin-left:-2.008440px;}
._2_c01001{width:2.008440px;}
._f_c01001{width:3.097860px;}
._d_c01001{width:4.232340px;}
._12_c01001{width:5.421726px;}
._8_c01001{width:20.995290px;}
._14_c01001{width:24.198348px;}
._e_c01001{width:27.902970px;}
._c_c01001{width:29.673300px;}
._1_c01001{width:933.068610px;}
.fc0_c01001{color:rgb(0,0,0);}
.fs2_c01001{font-size:41.844000px;}
.fs1_c01001{font-size:47.820000px;}
.fs3_c01001{font-size:59.778000px;}
.fs0_c01001{font-size:71.730000px;}
.y0_c01001{bottom:0.000000px;}
.y2a_c01001{bottom:93.442500px;}
.y29_c01001{bottom:111.375000px;}
.y28_c01001{bottom:129.307500px;}
.y27_c01001{bottom:147.240000px;}
.y26_c01001{bottom:152.664000px;}
.y25_c01001{bottom:172.198500px;}
.y24_c01001{bottom:184.708500px;}
.y23_c01001{bottom:202.641000px;}
.y22_c01001{bottom:220.573500px;}
.y21_c01001{bottom:225.997500px;}
.y20_c01001{bottom:253.821000px;}
.y1f_c01001{bottom:280.713000px;}
.y1e_c01001{bottom:307.603500px;}
.y1d_c01001{bottom:334.494000px;}
.y1c_c01001{bottom:361.384500px;}
.y1b_c01001{bottom:388.276500px;}
.y1a_c01001{bottom:415.167000px;}
.y19_c01001{bottom:442.057500px;}
.y18_c01001{bottom:468.948000px;}
.y17_c01001{bottom:495.840000px;}
.y16_c01001{bottom:522.730500px;}
.y15_c01001{bottom:549.621000px;}
.y14_c01001{bottom:576.511500px;}
.y13_c01001{bottom:603.402000px;}
.y12_c01001{bottom:630.294000px;}
.y11_c01001{bottom:674.476500px;}
.y10_c01001{bottom:701.367000px;}
.yf_c01001{bottom:728.259000px;}
.ye_c01001{bottom:755.149500px;}
.yd_c01001{bottom:799.332000px;}
.yc_c01001{bottom:826.222500px;}
.yb_c01001{bottom:853.114500px;}
.ya_c01001{bottom:880.005000px;}
.y9_c01001{bottom:906.895500px;}
.y8_c01001{bottom:933.786000px;}
.y7_c01001{bottom:960.678000px;}
.y6_c01001{bottom:987.568500px;}
.y5_c01001{bottom:1014.459000px;}
.y4_c01001{bottom:1041.349500px;}
.y3_c01001{bottom:1068.240000px;}
.y2_c01001{bottom:1095.132000px;}
.y1_c01001{bottom:1162.084500px;}
.h7_c01001{height:28.286544px;}
.h4_c01001{height:38.251500px;}
.h5_c01001{height:44.833500px;}
.h2_c01001{height:53.797500px;}
.h3_c01001{height:58.354320px;}
.h6_c01001{height:59.941500px;}
.h1_c01001{height:1263.750000px;}
.h0_c01001{height:1264.110000px;}
.w0_c01001{width:893.869500px;}
.w1_c01001{width:894.000000px;}
.x0_c01001{left:0.000000px;}
.x1_c01001{left:127.558500px;}
.x5_c01001{left:141.798000px;}
.x2_c01001{left:159.838500px;}
.x4_c01001{left:171.456000px;}
.x3_c01001{left:197.794500px;}
.x8_c01001{left:380.328000px;}
.x7_c01001{left:525.513000px;}
.x9_c01001{left:648.531000px;}
.x6_c01001{left:725.838000px;}
@media print{
.v2_c01001{vertical-align:-19.285333pt;}
.v0_c01001{vertical-align:0.000000pt;}
.v3_c01001{vertical-align:13.434667pt;}
.v1_c01001{vertical-align:23.136000pt;}
.ls0_c01001{letter-spacing:0.000000pt;}
.ws1_c01001{word-spacing:-0.063760pt;}
.ws23_c01001{word-spacing:-0.053136pt;}
.wsb_c01001{word-spacing:-0.042507pt;}
.ws21_c01001{word-spacing:-0.037195pt;}
.ws30_c01001{word-spacing:0.000000pt;}
.ws7_c01001{word-spacing:13.772160pt;}
.ws5_c01001{word-spacing:13.835920pt;}
.ws22_c01001{word-spacing:14.240448pt;}
.ws15_c01001{word-spacing:14.346000pt;}
.ws3_c01001{word-spacing:14.537280pt;}
.ws2a_c01001{word-spacing:14.559264pt;}
.ws29_c01001{word-spacing:14.612400pt;}
.ws24_c01001{word-spacing:14.771808pt;}
.ws6_c01001{word-spacing:15.876240pt;}
.ws1d_c01001{word-spacing:16.195040pt;}
.ws26_c01001{word-spacing:16.312752pt;}
.ws12_c01001{word-spacing:16.577600pt;}
.ws2c_c01001{word-spacing:17.269200pt;}
.ws2b_c01001{word-spacing:17.322336pt;}
.ws27_c01001{word-spacing:17.641152pt;}
.ws1b_c01001{word-spacing:18.161840pt;}
.ws1c_c01001{word-spacing:18.171600pt;}
.wsd_c01001{word-spacing:18.554160pt;}
.ws28_c01001{word-spacing:18.969552pt;}
.ws16_c01001{word-spacing:19.191760pt;}
.ws19_c01001{word-spacing:19.383040pt;}
.ws4_c01001{word-spacing:19.574320pt;}
.ws8_c01001{word-spacing:20.594480pt;}
.wsa_c01001{word-spacing:20.722000pt;}
.ws1a_c01001{word-spacing:20.785760pt;}
.ws11_c01001{word-spacing:21.704320pt;}
.ws14_c01001{word-spacing:22.252240pt;}
.ws2_c01001{word-spacing:22.379760pt;}
.ws18_c01001{word-spacing:22.698560pt;}
.wsc_c01001{word-spacing:22.762320pt;}
.ws13_c01001{word-spacing:23.017360pt;}
.ws10_c01001{word-spacing:23.144880pt;}
.ws1e_c01001{word-spacing:23.208640pt;}
.wsf_c01001{word-spacing:23.782480pt;}
.ws0_c01001{word-spacing:23.846240pt;}
.ws2f_c01001{word-spacing:24.601968pt;}
.ws2d_c01001{word-spacing:24.655104pt;}
.ws2e_c01001{word-spacing:25.345872pt;}
.ws25_c01001{word-spacing:25.823621pt;}
.ws9_c01001{word-spacing:26.906720pt;}
.wse_c01001{word-spacing:27.289280pt;}
.ws1f_c01001{word-spacing:27.863120pt;}
.ws17_c01001{word-spacing:28.692000pt;}
.ws20_c01001{word-spacing:29.010800pt;}
._0_c01001{margin-left:-36.151920pt;}
._9_c01001{margin-left:-33.091440pt;}
._6_c01001{margin-left:-31.306160pt;}
._a_c01001{margin-left:-29.584640pt;}
._10_c01001{margin-left:-26.742123pt;}
._11_c01001{margin-left:-25.485424pt;}
._5_c01001{margin-left:-24.292560pt;}
._13_c01001{margin-left:-21.397803pt;}
._4_c01001{margin-left:-6.949840pt;}
._b_c01001{margin-left:-4.782000pt;}
._7_c01001{margin-left:-3.421867pt;}
._3_c01001{margin-left:-1.785280pt;}
._2_c01001{width:1.785280pt;}
._f_c01001{width:2.753653pt;}
._d_c01001{width:3.762080pt;}
._12_c01001{width:4.819312pt;}
._8_c01001{width:18.662480pt;}
._14_c01001{width:21.509643pt;}
._e_c01001{width:24.802640pt;}
._c_c01001{width:26.376267pt;}
._1_c01001{width:829.394320pt;}
.fs2_c01001{font-size:37.194667pt;}
.fs1_c01001{font-size:42.506667pt;}
.fs3_c01001{font-size:53.136000pt;}
.fs0_c01001{font-size:63.760000pt;}
.y0_c01001{bottom:0.000000pt;}
.y2a_c01001{bottom:83.060000pt;}
.y29_c01001{bottom:99.000000pt;}
.y28_c01001{bottom:114.940000pt;}
.y27_c01001{bottom:130.880000pt;}
.y26_c01001{bottom:135.701333pt;}
.y25_c01001{bottom:153.065333pt;}
.y24_c01001{bottom:164.185333pt;}
.y23_c01001{bottom:180.125333pt;}
.y22_c01001{bottom:196.065333pt;}
.y21_c01001{bottom:200.886667pt;}
.y20_c01001{bottom:225.618667pt;}
.y1f_c01001{bottom:249.522667pt;}
.y1e_c01001{bottom:273.425333pt;}
.y1d_c01001{bottom:297.328000pt;}
.y1c_c01001{bottom:321.230667pt;}
.y1b_c01001{bottom:345.134667pt;}
.y1a_c01001{bottom:369.037333pt;}
.y19_c01001{bottom:392.940000pt;}
.y18_c01001{bottom:416.842667pt;}
.y17_c01001{bottom:440.746667pt;}
.y16_c01001{bottom:464.649333pt;}
.y15_c01001{bottom:488.552000pt;}
.y14_c01001{bottom:512.454667pt;}
.y13_c01001{bottom:536.357333pt;}
.y12_c01001{bottom:560.261333pt;}
.y11_c01001{bottom:599.534667pt;}
.y10_c01001{bottom:623.437333pt;}
.yf_c01001{bottom:647.341333pt;}
.ye_c01001{bottom:671.244000pt;}
.yd_c01001{bottom:710.517333pt;}
.yc_c01001{bottom:734.420000pt;}
.yb_c01001{bottom:758.324000pt;}
.ya_c01001{bottom:782.226667pt;}
.y9_c01001{bottom:806.129333pt;}
.y8_c01001{bottom:830.032000pt;}
.y7_c01001{bottom:853.936000pt;}
.y6_c01001{bottom:877.838667pt;}
.y5_c01001{bottom:901.741333pt;}
.y4_c01001{bottom:925.644000pt;}
.y3_c01001{bottom:949.546667pt;}
.y2_c01001{bottom:973.450667pt;}
.y1_c01001{bottom:1032.964000pt;}
.h7_c01001{height:25.143595pt;}
.h4_c01001{height:34.001333pt;}
.h5_c01001{height:39.852000pt;}
.h2_c01001{height:47.820000pt;}
.h3_c01001{height:51.870507pt;}
.h6_c01001{height:53.281333pt;}
.h1_c01001{height:1123.333333pt;}
.h0_c01001{height:1123.653333pt;}
.w0_c01001{width:794.550667pt;}
.w1_c01001{width:794.666667pt;}
.x0_c01001{left:0.000000pt;}
.x1_c01001{left:113.385333pt;}
.x5_c01001{left:126.042667pt;}
.x2_c01001{left:142.078667pt;}
.x4_c01001{left:152.405333pt;}
.x3_c01001{left:175.817333pt;}
.x8_c01001{left:338.069333pt;}
.x7_c01001{left:467.122667pt;}
.x9_c01001{left:576.472000pt;}
.x6_c01001{left:645.189333pt;}
}





/* 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_1ff14f100c82cfa4b737a313.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.001000;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_c01002;src:url('chunks/assets/font_e20599be4d066f7a49730602.woff2')format("woff");}.ff2_c01002{font-family:ff2_c01002;line-height:1.001000;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_c01002;src:url('chunks/assets/font_4f3a8f209babfce893fba674.woff2')format("woff");}.ff3_c01002{font-family:ff3_c01002;line-height:1.001000;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_c01002;src:url('chunks/assets/font_f4cfa949fb66f259e38cb032.woff2')format("woff");}.ff4_c01002{font-family:ff4_c01002;line-height:1.000000;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;}
.v1_c01002{vertical-align:18.132000px;}
.ls0_c01002{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01002{word-spacing:-0.071730px;}
.ws1f_c01002{word-spacing:0.000000px;}
.ws3_c01002{word-spacing:15.924060px;}
.ws12_c01002{word-spacing:16.282710px;}
.ws11_c01002{word-spacing:16.641360px;}
.ws16_c01002{word-spacing:17.932500px;}
.ws1d_c01002{word-spacing:19.797480px;}
.ws17_c01002{word-spacing:22.236300px;}
.ws9_c01002{word-spacing:23.312250px;}
.ws14_c01002{word-spacing:23.383980px;}
.wsd_c01002{word-spacing:23.742630px;}
.ws1b_c01002{word-spacing:24.029550px;}
.ws18_c01002{word-spacing:24.173010px;}
.ws1c_c01002{word-spacing:25.177230px;}
.wsa_c01002{word-spacing:25.248960px;}
.wsc_c01002{word-spacing:25.751070px;}
.wsb_c01002{word-spacing:26.755290px;}
.ws0_c01002{word-spacing:26.827020px;}
.wse_c01002{word-spacing:26.970480px;}
.ws1a_c01002{word-spacing:27.042210px;}
.ws13_c01002{word-spacing:27.902970px;}
.ws1e_c01002{word-spacing:28.118160px;}
.ws8_c01002{word-spacing:28.548540px;}
.ws7_c01002{word-spacing:29.983140px;}
.ws6_c01002{word-spacing:32.063310px;}
.ws4_c01002{word-spacing:32.135040px;}
.ws19_c01002{word-spacing:32.364576px;}
.ws2_c01002{word-spacing:32.924070px;}
.ws5_c01002{word-spacing:33.139260px;}
.ws10_c01002{word-spacing:34.789050px;}
.ws15_c01002{word-spacing:36.223650px;}
.wsf_c01002{word-spacing:43.589970px;}
._0_c01002{margin-left:-40.670910px;}
._7_c01002{margin-left:-37.012680px;}
._5_c01002{margin-left:-35.147700px;}
._a_c01002{margin-left:-33.067530px;}
._3_c01002{margin-left:-27.329130px;}
._2_c01002{margin-left:-7.962030px;}
._c_c01002{margin-left:-5.417460px;}
._8_c01002{margin-left:-3.763980px;}
._6_c01002{margin-left:-2.008440px;}
._4_c01002{width:1.864980px;}
._d_c01002{width:25.894530px;}
._9_c01002{width:41.915520px;}
._b_c01002{width:79.333380px;}
._e_c01002{width:95.200056px;}
._1_c01002{width:933.068610px;}
.fc0_c01002{color:rgb(0,0,0);}
.fs0_c01002{font-size:71.730000px;}
.fs1_c01002{font-size:86.076000px;}
.y0_c01002{bottom:0.000000px;}
.y21_c01002{bottom:143.607000px;}
.y20_c01002{bottom:170.497500px;}
.y1f_c01002{bottom:197.389500px;}
.y1e_c01002{bottom:224.280000px;}
.y1d_c01002{bottom:251.170500px;}
.y1c_c01002{bottom:278.061000px;}
.y1b_c01002{bottom:304.953000px;}
.y1a_c01002{bottom:339.564000px;}
.y19_c01002{bottom:398.917500px;}
.y18_c01002{bottom:466.413000px;}
.y17_c01002{bottom:493.305000px;}
.y16_c01002{bottom:520.195500px;}
.y15_c01002{bottom:547.086000px;}
.y14_c01002{bottom:573.976500px;}
.y13_c01002{bottom:600.868500px;}
.y12_c01002{bottom:627.759000px;}
.y11_c01002{bottom:654.649500px;}
.y10_c01002{bottom:681.540000px;}
.yf_c01002{bottom:708.432000px;}
.ye_c01002{bottom:735.322500px;}
.yd_c01002{bottom:762.213000px;}
.yc_c01002{bottom:796.825500px;}
.yb_c01002{bottom:853.114500px;}
.ya_c01002{bottom:880.005000px;}
.y9_c01002{bottom:906.895500px;}
.y8_c01002{bottom:933.786000px;}
.y7_c01002{bottom:960.678000px;}
.y6_c01002{bottom:987.568500px;}
.y5_c01002{bottom:1014.459000px;}
.y4_c01002{bottom:1041.349500px;}
.y3_c01002{bottom:1068.240000px;}
.y2_c01002{bottom:1095.132000px;}
.y1_c01002{bottom:1162.084500px;}
.h2_c01002{height:53.797500px;}
.h4_c01002{height:64.557000px;}
.h3_c01002{height:71.929500px;}
.h1_c01002{height:1263.750000px;}
.h0_c01002{height:1264.110000px;}
.w0_c01002{width:893.869500px;}
.w1_c01002{width:894.000000px;}
.x0_c01002{left:0.000000px;}
.x1_c01002{left:127.558500px;}
.x2_c01002{left:159.838500px;}
.x3_c01002{left:220.746000px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.v1_c01002{vertical-align:16.117333pt;}
.ls0_c01002{letter-spacing:0.000000pt;}
.ws1_c01002{word-spacing:-0.063760pt;}
.ws1f_c01002{word-spacing:0.000000pt;}
.ws3_c01002{word-spacing:14.154720pt;}
.ws12_c01002{word-spacing:14.473520pt;}
.ws11_c01002{word-spacing:14.792320pt;}
.ws16_c01002{word-spacing:15.940000pt;}
.ws1d_c01002{word-spacing:17.597760pt;}
.ws17_c01002{word-spacing:19.765600pt;}
.ws9_c01002{word-spacing:20.722000pt;}
.ws14_c01002{word-spacing:20.785760pt;}
.wsd_c01002{word-spacing:21.104560pt;}
.ws1b_c01002{word-spacing:21.359600pt;}
.ws18_c01002{word-spacing:21.487120pt;}
.ws1c_c01002{word-spacing:22.379760pt;}
.wsa_c01002{word-spacing:22.443520pt;}
.wsc_c01002{word-spacing:22.889840pt;}
.wsb_c01002{word-spacing:23.782480pt;}
.ws0_c01002{word-spacing:23.846240pt;}
.wse_c01002{word-spacing:23.973760pt;}
.ws1a_c01002{word-spacing:24.037520pt;}
.ws13_c01002{word-spacing:24.802640pt;}
.ws1e_c01002{word-spacing:24.993920pt;}
.ws8_c01002{word-spacing:25.376480pt;}
.ws7_c01002{word-spacing:26.651680pt;}
.ws6_c01002{word-spacing:28.500720pt;}
.ws4_c01002{word-spacing:28.564480pt;}
.ws19_c01002{word-spacing:28.768512pt;}
.ws2_c01002{word-spacing:29.265840pt;}
.ws5_c01002{word-spacing:29.457120pt;}
.ws10_c01002{word-spacing:30.923600pt;}
.ws15_c01002{word-spacing:32.198800pt;}
.wsf_c01002{word-spacing:38.746640pt;}
._0_c01002{margin-left:-36.151920pt;}
._7_c01002{margin-left:-32.900160pt;}
._5_c01002{margin-left:-31.242400pt;}
._a_c01002{margin-left:-29.393360pt;}
._3_c01002{margin-left:-24.292560pt;}
._2_c01002{margin-left:-7.077360pt;}
._c_c01002{margin-left:-4.815520pt;}
._8_c01002{margin-left:-3.345760pt;}
._6_c01002{margin-left:-1.785280pt;}
._4_c01002{width:1.657760pt;}
._d_c01002{width:23.017360pt;}
._9_c01002{width:37.258240pt;}
._b_c01002{width:70.518560pt;}
._e_c01002{width:84.622272pt;}
._1_c01002{width:829.394320pt;}
.fs0_c01002{font-size:63.760000pt;}
.fs1_c01002{font-size:76.512000pt;}
.y0_c01002{bottom:0.000000pt;}
.y21_c01002{bottom:127.650667pt;}
.y20_c01002{bottom:151.553333pt;}
.y1f_c01002{bottom:175.457333pt;}
.y1e_c01002{bottom:199.360000pt;}
.y1d_c01002{bottom:223.262667pt;}
.y1c_c01002{bottom:247.165333pt;}
.y1b_c01002{bottom:271.069333pt;}
.y1a_c01002{bottom:301.834667pt;}
.y19_c01002{bottom:354.593333pt;}
.y18_c01002{bottom:414.589333pt;}
.y17_c01002{bottom:438.493333pt;}
.y16_c01002{bottom:462.396000pt;}
.y15_c01002{bottom:486.298667pt;}
.y14_c01002{bottom:510.201333pt;}
.y13_c01002{bottom:534.105333pt;}
.y12_c01002{bottom:558.008000pt;}
.y11_c01002{bottom:581.910667pt;}
.y10_c01002{bottom:605.813333pt;}
.yf_c01002{bottom:629.717333pt;}
.ye_c01002{bottom:653.620000pt;}
.yd_c01002{bottom:677.522667pt;}
.yc_c01002{bottom:708.289333pt;}
.yb_c01002{bottom:758.324000pt;}
.ya_c01002{bottom:782.226667pt;}
.y9_c01002{bottom:806.129333pt;}
.y8_c01002{bottom:830.032000pt;}
.y7_c01002{bottom:853.936000pt;}
.y6_c01002{bottom:877.838667pt;}
.y5_c01002{bottom:901.741333pt;}
.y4_c01002{bottom:925.644000pt;}
.y3_c01002{bottom:949.546667pt;}
.y2_c01002{bottom:973.450667pt;}
.y1_c01002{bottom:1032.964000pt;}
.h2_c01002{height:47.820000pt;}
.h4_c01002{height:57.384000pt;}
.h3_c01002{height:63.937333pt;}
.h1_c01002{height:1123.333333pt;}
.h0_c01002{height:1123.653333pt;}
.w0_c01002{width:794.550667pt;}
.w1_c01002{width:794.666667pt;}
.x0_c01002{left:0.000000pt;}
.x1_c01002{left:113.385333pt;}
.x2_c01002{left:142.078667pt;}
.x3_c01002{left:196.218667pt;}
}





/* 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_5c4ba137524fe8d0c967d0f2.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.001000;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_d210f93727dae8aad2b887a5.woff2')format("woff");}.ff2_c01003{font-family:ff2_c01003;line-height:1.001000;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_c01003;src:url('chunks/assets/font_8049f1d948e6d3fb589b92e9.woff2')format("woff");}.ff3_c01003{font-family:ff3_c01003;line-height:1.000000;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_c01003;src:url('chunks/assets/font_75783d989128dad5997bedf9.woff2')format("woff");}.ff4_c01003{font-family:ff4_c01003;line-height:1.001000;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_c01003;src:url('chunks/assets/font_00f034ef41d4812a331ea1db.woff2')format("woff");}.ff5_c01003{font-family:ff5_c01003;line-height:0.697000;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_c01003;src:url('chunks/assets/font_b118a1bc52523a3cff69ae27.woff2')format("woff");}.ff6_c01003{font-family:ff6_c01003;line-height:0.696000;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_c01003;src:url('chunks/assets/font_3735e9a2fc56c0659d476de4.woff2')format("woff");}.ff7_c01003{font-family:ff7_c01003;line-height:1.000000;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_c01003;src:url('chunks/assets/font_59d791f4927bcb0c812ec3c7.woff2')format("woff");}.ff8_c01003{font-family:ff8_c01003;line-height:1.000000;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);}
.v3_c01003{vertical-align:-21.690000px;}
.v0_c01003{vertical-align:0.000000px;}
.v1_c01003{vertical-align:5.976000px;}
.v2_c01003{vertical-align:26.028000px;}
.ls0_c01003{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws19_c01003{word-spacing:-0.047820px;}
.ws23_c01003{word-spacing:-0.041844px;}
.ws26_c01003{word-spacing:0.000000px;}
.ws9_c01003{word-spacing:15.708870px;}
.ws10_c01003{word-spacing:16.497900px;}
.ws14_c01003{word-spacing:16.784820px;}
.ws20_c01003{word-spacing:18.291150px;}
.ws22_c01003{word-spacing:18.362880px;}
.ws1f_c01003{word-spacing:19.223640px;}
.ws3_c01003{word-spacing:19.438830px;}
.ws24_c01003{word-spacing:19.846296px;}
.wsf_c01003{word-spacing:20.873430px;}
.ws21_c01003{word-spacing:21.016890px;}
.ws11_c01003{word-spacing:21.160350px;}
.ws25_c01003{word-spacing:21.280968px;}
.ws8_c01003{word-spacing:21.303810px;}
.ws13_c01003{word-spacing:22.236300px;}
.ws1a_c01003{word-spacing:22.881870px;}
.ws5_c01003{word-spacing:23.312250px;}
.ws7_c01003{word-spacing:23.383980px;}
.ws12_c01003{word-spacing:23.527440px;}
.ws1b_c01003{word-spacing:24.603390px;}
.ws4_c01003{word-spacing:24.746850px;}
.ws18_c01003{word-spacing:25.033770px;}
.wse_c01003{word-spacing:25.177230px;}
.ws1d_c01003{word-spacing:25.751070px;}
.ws16_c01003{word-spacing:26.181450px;}
.ws15_c01003{word-spacing:26.206560px;}
.ws6_c01003{word-spacing:26.253180px;}
.ws1c_c01003{word-spacing:26.324910px;}
.ws0_c01003{word-spacing:26.827020px;}
.ws2_c01003{word-spacing:27.042210px;}
.ws17_c01003{word-spacing:27.687780px;}
.wsb_c01003{word-spacing:27.902970px;}
.wsc_c01003{word-spacing:28.620270px;}
.ws1e_c01003{word-spacing:30.054870px;}
.wsd_c01003{word-spacing:31.417740px;}
.wsa_c01003{word-spacing:34.430400px;}
._0_c01003{margin-left:-40.670910px;}
._e_c01003{margin-left:-37.084410px;}
._8_c01003{margin-left:-35.515290px;}
._b_c01003{margin-left:-34.358670px;}
._13_c01003{margin-left:-32.421960px;}
._14_c01003{margin-left:-30.613590px;}
._7_c01003{margin-left:-27.329130px;}
._6_c01003{margin-left:-7.890300px;}
._f_c01003{margin-left:-6.886080px;}
._a_c01003{margin-left:-5.810130px;}
._c_c01003{margin-left:-3.945150px;}
._5_c01003{margin-left:-2.797470px;}
._3_c01003{margin-left:-1.578060px;}
._9_c01003{width:1.936710px;}
._4_c01003{width:3.021600px;}
._12_c01003{width:5.066910px;}
._10_c01003{width:23.312250px;}
._d_c01003{width:25.320690px;}
._11_c01003{width:27.902970px;}
._2_c01003{width:79.333380px;}
._1_c01003{width:933.068610px;}
.fc0_c01003{color:rgb(0,0,0);}
.fs2_c01003{font-size:41.844000px;}
.fs1_c01003{font-size:47.820000px;}
.fs3_c01003{font-size:59.778000px;}
.fs0_c01003{font-size:71.730000px;}
.y0_c01003{bottom:0.000000px;}
.y25_c01003{bottom:107.511000px;}
.y24_c01003{bottom:134.266500px;}
.y23_c01003{bottom:161.158500px;}
.y22_c01003{bottom:188.049000px;}
.y21_c01003{bottom:214.939500px;}
.y20_c01003{bottom:241.830000px;}
.y1f_c01003{bottom:268.722000px;}
.y1e_c01003{bottom:295.612500px;}
.y1d_c01003{bottom:322.503000px;}
.y1c_c01003{bottom:368.821500px;}
.y1b_c01003{bottom:395.712000px;}
.y1a_c01003{bottom:422.602500px;}
.y19_c01003{bottom:449.494500px;}
.y18_c01003{bottom:495.811500px;}
.y17_c01003{bottom:522.702000px;}
.y16_c01003{bottom:549.594000px;}
.y15_c01003{bottom:576.484500px;}
.y14_c01003{bottom:603.375000px;}
.y13_c01003{bottom:630.265500px;}
.y12_c01003{bottom:657.157500px;}
.y11_c01003{bottom:684.048000px;}
.y10_c01003{bottom:710.938500px;}
.yf_c01003{bottom:737.829000px;}
.ye_c01003{bottom:764.721000px;}
.yd_c01003{bottom:791.611500px;}
.yc_c01003{bottom:818.502000px;}
.yb_c01003{bottom:845.392500px;}
.ya_c01003{bottom:872.283000px;}
.y9_c01003{bottom:899.175000px;}
.y8_c01003{bottom:926.065500px;}
.y7_c01003{bottom:952.956000px;}
.y6_c01003{bottom:979.846500px;}
.y5_c01003{bottom:1006.738500px;}
.y4_c01003{bottom:1033.629000px;}
.y3_c01003{bottom:1060.519500px;}
.y2_c01003{bottom:1095.132000px;}
.y1_c01003{bottom:1162.084500px;}
.h5_c01003{height:28.286544px;}
.h2_c01003{height:53.797500px;}
.h4_c01003{height:58.354320px;}
.h3_c01003{height:59.773500px;}
.h1_c01003{height:1263.750000px;}
.h0_c01003{height:1264.110000px;}
.w0_c01003{width:893.869500px;}
.w1_c01003{width:894.000000px;}
.x0_c01003{left:0.000000px;}
.x1_c01003{left:127.558500px;}
.x6_c01003{left:141.798000px;}
.x3_c01003{left:159.838500px;}
.x5_c01003{left:171.456000px;}
.x4_c01003{left:197.794500px;}
.x2_c01003{left:502.002000px;}
@media print{
.v3_c01003{vertical-align:-19.280000pt;}
.v0_c01003{vertical-align:0.000000pt;}
.v1_c01003{vertical-align:5.312000pt;}
.v2_c01003{vertical-align:23.136000pt;}
.ls0_c01003{letter-spacing:0.000000pt;}
.ws1_c01003{word-spacing:-0.063760pt;}
.ws19_c01003{word-spacing:-0.042507pt;}
.ws23_c01003{word-spacing:-0.037195pt;}
.ws26_c01003{word-spacing:0.000000pt;}
.ws9_c01003{word-spacing:13.963440pt;}
.ws10_c01003{word-spacing:14.664800pt;}
.ws14_c01003{word-spacing:14.919840pt;}
.ws20_c01003{word-spacing:16.258800pt;}
.ws22_c01003{word-spacing:16.322560pt;}
.ws1f_c01003{word-spacing:17.087680pt;}
.ws3_c01003{word-spacing:17.278960pt;}
.ws24_c01003{word-spacing:17.641152pt;}
.wsf_c01003{word-spacing:18.554160pt;}
.ws21_c01003{word-spacing:18.681680pt;}
.ws11_c01003{word-spacing:18.809200pt;}
.ws25_c01003{word-spacing:18.916416pt;}
.ws8_c01003{word-spacing:18.936720pt;}
.ws13_c01003{word-spacing:19.765600pt;}
.ws1a_c01003{word-spacing:20.339440pt;}
.ws5_c01003{word-spacing:20.722000pt;}
.ws7_c01003{word-spacing:20.785760pt;}
.ws12_c01003{word-spacing:20.913280pt;}
.ws1b_c01003{word-spacing:21.869680pt;}
.ws4_c01003{word-spacing:21.997200pt;}
.ws18_c01003{word-spacing:22.252240pt;}
.wse_c01003{word-spacing:22.379760pt;}
.ws1d_c01003{word-spacing:22.889840pt;}
.ws16_c01003{word-spacing:23.272400pt;}
.ws15_c01003{word-spacing:23.294720pt;}
.ws6_c01003{word-spacing:23.336160pt;}
.ws1c_c01003{word-spacing:23.399920pt;}
.ws0_c01003{word-spacing:23.846240pt;}
.ws2_c01003{word-spacing:24.037520pt;}
.ws17_c01003{word-spacing:24.611360pt;}
.wsb_c01003{word-spacing:24.802640pt;}
.wsc_c01003{word-spacing:25.440240pt;}
.ws1e_c01003{word-spacing:26.715440pt;}
.wsd_c01003{word-spacing:27.926880pt;}
.wsa_c01003{word-spacing:30.604800pt;}
._0_c01003{margin-left:-36.151920pt;}
._e_c01003{margin-left:-32.963920pt;}
._8_c01003{margin-left:-31.569147pt;}
._b_c01003{margin-left:-30.541040pt;}
._13_c01003{margin-left:-28.819520pt;}
._14_c01003{margin-left:-27.212080pt;}
._7_c01003{margin-left:-24.292560pt;}
._6_c01003{margin-left:-7.013600pt;}
._f_c01003{margin-left:-6.120960pt;}
._a_c01003{margin-left:-5.164560pt;}
._c_c01003{margin-left:-3.506800pt;}
._5_c01003{margin-left:-2.486640pt;}
._3_c01003{margin-left:-1.402720pt;}
._9_c01003{width:1.721520pt;}
._4_c01003{width:2.685867pt;}
._12_c01003{width:4.503920pt;}
._10_c01003{width:20.722000pt;}
._d_c01003{width:22.507280pt;}
._11_c01003{width:24.802640pt;}
._2_c01003{width:70.518560pt;}
._1_c01003{width:829.394320pt;}
.fs2_c01003{font-size:37.194667pt;}
.fs1_c01003{font-size:42.506667pt;}
.fs3_c01003{font-size:53.136000pt;}
.fs0_c01003{font-size:63.760000pt;}
.y0_c01003{bottom:0.000000pt;}
.y25_c01003{bottom:95.565333pt;}
.y24_c01003{bottom:119.348000pt;}
.y23_c01003{bottom:143.252000pt;}
.y22_c01003{bottom:167.154667pt;}
.y21_c01003{bottom:191.057333pt;}
.y20_c01003{bottom:214.960000pt;}
.y1f_c01003{bottom:238.864000pt;}
.y1e_c01003{bottom:262.766667pt;}
.y1d_c01003{bottom:286.669333pt;}
.y1c_c01003{bottom:327.841333pt;}
.y1b_c01003{bottom:351.744000pt;}
.y1a_c01003{bottom:375.646667pt;}
.y19_c01003{bottom:399.550667pt;}
.y18_c01003{bottom:440.721333pt;}
.y17_c01003{bottom:464.624000pt;}
.y16_c01003{bottom:488.528000pt;}
.y15_c01003{bottom:512.430667pt;}
.y14_c01003{bottom:536.333333pt;}
.y13_c01003{bottom:560.236000pt;}
.y12_c01003{bottom:584.140000pt;}
.y11_c01003{bottom:608.042667pt;}
.y10_c01003{bottom:631.945333pt;}
.yf_c01003{bottom:655.848000pt;}
.ye_c01003{bottom:679.752000pt;}
.yd_c01003{bottom:703.654667pt;}
.yc_c01003{bottom:727.557333pt;}
.yb_c01003{bottom:751.460000pt;}
.ya_c01003{bottom:775.362667pt;}
.y9_c01003{bottom:799.266667pt;}
.y8_c01003{bottom:823.169333pt;}
.y7_c01003{bottom:847.072000pt;}
.y6_c01003{bottom:870.974667pt;}
.y5_c01003{bottom:894.878667pt;}
.y4_c01003{bottom:918.781333pt;}
.y3_c01003{bottom:942.684000pt;}
.y2_c01003{bottom:973.450667pt;}
.y1_c01003{bottom:1032.964000pt;}
.h5_c01003{height:25.143595pt;}
.h2_c01003{height:47.820000pt;}
.h4_c01003{height:51.870507pt;}
.h3_c01003{height:53.132000pt;}
.h1_c01003{height:1123.333333pt;}
.h0_c01003{height:1123.653333pt;}
.w0_c01003{width:794.550667pt;}
.w1_c01003{width:794.666667pt;}
.x0_c01003{left:0.000000pt;}
.x1_c01003{left:113.385333pt;}
.x6_c01003{left:126.042667pt;}
.x3_c01003{left:142.078667pt;}
.x5_c01003{left:152.405333pt;}
.x4_c01003{left:175.817333pt;}
.x2_c01003{left:446.224000pt;}
}





/* 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_5c4ba137524fe8d0c967d0f2.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.001000;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_7cb10140860c952c34ad9548.woff2')format("woff");}.ff2_c01004{font-family:ff2_c01004;line-height:1.001000;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_00f034ef41d4812a331ea1db.woff2')format("woff");}.ff3_c01004{font-family:ff3_c01004;line-height:0.697000;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_c01004;src:url('chunks/assets/font_98ab2042c617c61effd8e9f4.woff2')format("woff");}.ff4_c01004{font-family:ff4_c01004;line-height:1.001000;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_c01004;src:url('chunks/assets/font_b118a1bc52523a3cff69ae27.woff2')format("woff");}.ff5_c01004{font-family:ff5_c01004;line-height:0.696000;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_c01004;src:url('chunks/assets/font_a24641919a305cb0c73c40d4.woff2')format("woff");}.ff6_c01004{font-family:ff6_c01004;line-height:1.000000;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_c01004;src:url('chunks/assets/font_805654196c802af7577553b6.woff2')format("woff");}.ff7_c01004{font-family:ff7_c01004;line-height:1.000000;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);}
.v2_c01004{vertical-align:-21.690000px;}
.v0_c01004{vertical-align:0.000000px;}
.v3_c01004{vertical-align:15.108000px;}
.v1_c01004{vertical-align:26.028000px;}
.ls0_c01004{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01004{word-spacing:-0.071730px;}
.ws22_c01004{word-spacing:-0.059778px;}
.ws7_c01004{word-spacing:-0.047820px;}
.ws21_c01004{word-spacing:-0.041844px;}
.ws2e_c01004{word-spacing:0.000000px;}
.ws2d_c01004{word-spacing:14.824944px;}
.ws2b_c01004{word-spacing:14.884722px;}
.ws5_c01004{word-spacing:15.565410px;}
.ws29_c01004{word-spacing:16.080282px;}
.ws2c_c01004{word-spacing:16.737840px;}
.ws3_c01004{word-spacing:17.286930px;}
.wsf_c01004{word-spacing:18.362880px;}
.ws2_c01004{word-spacing:19.367100px;}
.wse_c01004{word-spacing:19.725750px;}
.ws25_c01004{word-spacing:19.846296px;}
.ws9_c01004{word-spacing:20.156130px;}
.ws23_c01004{word-spacing:20.324520px;}
.ws1d_c01004{word-spacing:21.088620px;}
.ws1b_c01004{word-spacing:21.089370px;}
.ws2a_c01004{word-spacing:21.340746px;}
.ws12_c01004{word-spacing:21.590730px;}
.wsd_c01004{word-spacing:21.734190px;}
.ws24_c01004{word-spacing:21.759192px;}
.ws27_c01004{word-spacing:22.058082px;}
.ws15_c01004{word-spacing:22.092840px;}
.ws13_c01004{word-spacing:22.098900px;}
.ws10_c01004{word-spacing:22.523220px;}
.ws1c_c01004{word-spacing:22.953600px;}
.ws6_c01004{word-spacing:23.312250px;}
.ws28_c01004{word-spacing:23.313420px;}
.ws19_c01004{word-spacing:23.383980px;}
.ws20_c01004{word-spacing:23.814360px;}
.ws14_c01004{word-spacing:23.886090px;}
.ws1e_c01004{word-spacing:24.173010px;}
.ws8_c01004{word-spacing:24.316470px;}
.wsa_c01004{word-spacing:24.818580px;}
.ws1a_c01004{word-spacing:25.966260px;}
.wsb_c01004{word-spacing:26.396640px;}
.ws11_c01004{word-spacing:26.755290px;}
.ws0_c01004{word-spacing:26.827020px;}
.ws18_c01004{word-spacing:26.970480px;}
.ws26_c01004{word-spacing:27.497880px;}
.ws1f_c01004{word-spacing:27.687780px;}
.ws16_c01004{word-spacing:27.759510px;}
.wsc_c01004{word-spacing:28.118160px;}
.ws17_c01004{word-spacing:29.122380px;}
.ws4_c01004{word-spacing:35.075970px;}
._0_c01004{margin-left:-40.670910px;}
._8_c01004{margin-left:-37.156140px;}
._5_c01004{margin-left:-35.219430px;}
._9_c01004{margin-left:-33.139260px;}
._10_c01004{margin-left:-31.706154px;}
._f_c01004{margin-left:-30.322464px;}
._14_c01004{margin-left:-28.995378px;}
._7_c01004{margin-left:-27.400860px;}
._12_c01004{margin-left:-24.210378px;}
._13_c01004{margin-left:-22.763754px;}
._6_c01004{margin-left:-7.746840px;}
._a_c01004{margin-left:-5.738400px;}
._b_c01004{margin-left:-3.545040px;}
._2_c01004{margin-left:-2.080170px;}
._11_c01004{margin-left:-1.016952px;}
._4_c01004{width:1.936710px;}
._3_c01004{width:3.801690px;}
._c_c01004{width:5.414850px;}
._e_c01004{width:6.655878px;}
._d_c01004{width:27.443370px;}
._1_c01004{width:933.068610px;}
.fc0_c01004{color:rgb(0,0,0);}
.fs2_c01004{font-size:41.844000px;}
.fs1_c01004{font-size:47.820000px;}
.fs3_c01004{font-size:59.778000px;}
.fs0_c01004{font-size:71.730000px;}
.y0_c01004{bottom:0.000000px;}
.y27_c01004{bottom:179.325000px;}
.y26_c01004{bottom:191.835000px;}
.y25_c01004{bottom:215.190000px;}
.y24_c01004{bottom:227.700000px;}
.y23_c01004{bottom:245.632500px;}
.y22_c01004{bottom:263.566500px;}
.y21_c01004{bottom:286.921500px;}
.y20_c01004{bottom:299.431500px;}
.y1f_c01004{bottom:317.364000px;}
.y1e_c01004{bottom:322.786500px;}
.y1d_c01004{bottom:351.145500px;}
.y1c_c01004{bottom:378.036000px;}
.y1b_c01004{bottom:404.928000px;}
.y1a_c01004{bottom:431.818500px;}
.y19_c01004{bottom:458.709000px;}
.y18_c01004{bottom:485.599500px;}
.y17_c01004{bottom:512.491500px;}
.y16_c01004{bottom:539.382000px;}
.y15_c01004{bottom:584.205000px;}
.y14_c01004{bottom:611.095500px;}
.y13_c01004{bottom:637.987500px;}
.y12_c01004{bottom:664.878000px;}
.y11_c01004{bottom:691.768500px;}
.y10_c01004{bottom:718.659000px;}
.yf_c01004{bottom:745.551000px;}
.ye_c01004{bottom:772.441500px;}
.yd_c01004{bottom:799.332000px;}
.yc_c01004{bottom:826.222500px;}
.yb_c01004{bottom:853.114500px;}
.ya_c01004{bottom:880.005000px;}
.y9_c01004{bottom:906.895500px;}
.y8_c01004{bottom:933.786000px;}
.y7_c01004{bottom:960.678000px;}
.y6_c01004{bottom:987.568500px;}
.y5_c01004{bottom:1014.459000px;}
.y4_c01004{bottom:1041.349500px;}
.y3_c01004{bottom:1068.240000px;}
.y2_c01004{bottom:1095.132000px;}
.y1_c01004{bottom:1162.084500px;}
.h7_c01004{height:28.286544px;}
.h5_c01004{height:38.251500px;}
.h6_c01004{height:44.833500px;}
.h2_c01004{height:53.797500px;}
.h3_c01004{height:58.354320px;}
.h4_c01004{height:58.360320px;}
.h1_c01004{height:1263.750000px;}
.h0_c01004{height:1264.110000px;}
.w0_c01004{width:893.869500px;}
.w1_c01004{width:894.000000px;}
.x0_c01004{left:0.000000px;}
.x1_c01004{left:127.558500px;}
.x3_c01004{left:141.798000px;}
.x2_c01004{left:159.838500px;}
.x4_c01004{left:196.591500px;}
@media print{
.v2_c01004{vertical-align:-19.280000pt;}
.v0_c01004{vertical-align:0.000000pt;}
.v3_c01004{vertical-align:13.429333pt;}
.v1_c01004{vertical-align:23.136000pt;}
.ls0_c01004{letter-spacing:0.000000pt;}
.ws1_c01004{word-spacing:-0.063760pt;}
.ws22_c01004{word-spacing:-0.053136pt;}
.ws7_c01004{word-spacing:-0.042507pt;}
.ws21_c01004{word-spacing:-0.037195pt;}
.ws2e_c01004{word-spacing:0.000000pt;}
.ws2d_c01004{word-spacing:13.177728pt;}
.ws2b_c01004{word-spacing:13.230864pt;}
.ws5_c01004{word-spacing:13.835920pt;}
.ws29_c01004{word-spacing:14.293584pt;}
.ws2c_c01004{word-spacing:14.878080pt;}
.ws3_c01004{word-spacing:15.366160pt;}
.wsf_c01004{word-spacing:16.322560pt;}
.ws2_c01004{word-spacing:17.215200pt;}
.wse_c01004{word-spacing:17.534000pt;}
.ws25_c01004{word-spacing:17.641152pt;}
.ws9_c01004{word-spacing:17.916560pt;}
.ws23_c01004{word-spacing:18.066240pt;}
.ws1d_c01004{word-spacing:18.745440pt;}
.ws1b_c01004{word-spacing:18.746107pt;}
.ws2a_c01004{word-spacing:18.969552pt;}
.ws12_c01004{word-spacing:19.191760pt;}
.wsd_c01004{word-spacing:19.319280pt;}
.ws24_c01004{word-spacing:19.341504pt;}
.ws27_c01004{word-spacing:19.607184pt;}
.ws15_c01004{word-spacing:19.638080pt;}
.ws13_c01004{word-spacing:19.643467pt;}
.ws10_c01004{word-spacing:20.020640pt;}
.ws1c_c01004{word-spacing:20.403200pt;}
.ws6_c01004{word-spacing:20.722000pt;}
.ws28_c01004{word-spacing:20.723040pt;}
.ws19_c01004{word-spacing:20.785760pt;}
.ws20_c01004{word-spacing:21.168320pt;}
.ws14_c01004{word-spacing:21.232080pt;}
.ws1e_c01004{word-spacing:21.487120pt;}
.ws8_c01004{word-spacing:21.614640pt;}
.wsa_c01004{word-spacing:22.060960pt;}
.ws1a_c01004{word-spacing:23.081120pt;}
.wsb_c01004{word-spacing:23.463680pt;}
.ws11_c01004{word-spacing:23.782480pt;}
.ws0_c01004{word-spacing:23.846240pt;}
.ws18_c01004{word-spacing:23.973760pt;}
.ws26_c01004{word-spacing:24.442560pt;}
.ws1f_c01004{word-spacing:24.611360pt;}
.ws16_c01004{word-spacing:24.675120pt;}
.wsc_c01004{word-spacing:24.993920pt;}
.ws17_c01004{word-spacing:25.886560pt;}
.ws4_c01004{word-spacing:31.178640pt;}
._0_c01004{margin-left:-36.151920pt;}
._8_c01004{margin-left:-33.027680pt;}
._5_c01004{margin-left:-31.306160pt;}
._9_c01004{margin-left:-29.457120pt;}
._10_c01004{margin-left:-28.183248pt;}
._f_c01004{margin-left:-26.953301pt;}
._14_c01004{margin-left:-25.773669pt;}
._7_c01004{margin-left:-24.356320pt;}
._12_c01004{margin-left:-21.520336pt;}
._13_c01004{margin-left:-20.234448pt;}
._6_c01004{margin-left:-6.886080pt;}
._a_c01004{margin-left:-5.100800pt;}
._b_c01004{margin-left:-3.151147pt;}
._2_c01004{margin-left:-1.849040pt;}
._11_c01004{margin-left:-0.903957pt;}
._4_c01004{width:1.721520pt;}
._3_c01004{width:3.379280pt;}
._c_c01004{width:4.813200pt;}
._e_c01004{width:5.916336pt;}
._d_c01004{width:24.394107pt;}
._1_c01004{width:829.394320pt;}
.fs2_c01004{font-size:37.194667pt;}
.fs1_c01004{font-size:42.506667pt;}
.fs3_c01004{font-size:53.136000pt;}
.fs0_c01004{font-size:63.760000pt;}
.y0_c01004{bottom:0.000000pt;}
.y27_c01004{bottom:159.400000pt;}
.y26_c01004{bottom:170.520000pt;}
.y25_c01004{bottom:191.280000pt;}
.y24_c01004{bottom:202.400000pt;}
.y23_c01004{bottom:218.340000pt;}
.y22_c01004{bottom:234.281333pt;}
.y21_c01004{bottom:255.041333pt;}
.y20_c01004{bottom:266.161333pt;}
.y1f_c01004{bottom:282.101333pt;}
.y1e_c01004{bottom:286.921333pt;}
.y1d_c01004{bottom:312.129333pt;}
.y1c_c01004{bottom:336.032000pt;}
.y1b_c01004{bottom:359.936000pt;}
.y1a_c01004{bottom:383.838667pt;}
.y19_c01004{bottom:407.741333pt;}
.y18_c01004{bottom:431.644000pt;}
.y17_c01004{bottom:455.548000pt;}
.y16_c01004{bottom:479.450667pt;}
.y15_c01004{bottom:519.293333pt;}
.y14_c01004{bottom:543.196000pt;}
.y13_c01004{bottom:567.100000pt;}
.y12_c01004{bottom:591.002667pt;}
.y11_c01004{bottom:614.905333pt;}
.y10_c01004{bottom:638.808000pt;}
.yf_c01004{bottom:662.712000pt;}
.ye_c01004{bottom:686.614667pt;}
.yd_c01004{bottom:710.517333pt;}
.yc_c01004{bottom:734.420000pt;}
.yb_c01004{bottom:758.324000pt;}
.ya_c01004{bottom:782.226667pt;}
.y9_c01004{bottom:806.129333pt;}
.y8_c01004{bottom:830.032000pt;}
.y7_c01004{bottom:853.936000pt;}
.y6_c01004{bottom:877.838667pt;}
.y5_c01004{bottom:901.741333pt;}
.y4_c01004{bottom:925.644000pt;}
.y3_c01004{bottom:949.546667pt;}
.y2_c01004{bottom:973.450667pt;}
.y1_c01004{bottom:1032.964000pt;}
.h7_c01004{height:25.143595pt;}
.h5_c01004{height:34.001333pt;}
.h6_c01004{height:39.852000pt;}
.h2_c01004{height:47.820000pt;}
.h3_c01004{height:51.870507pt;}
.h4_c01004{height:51.875840pt;}
.h1_c01004{height:1123.333333pt;}
.h0_c01004{height:1123.653333pt;}
.w0_c01004{width:794.550667pt;}
.w1_c01004{width:794.666667pt;}
.x0_c01004{left:0.000000pt;}
.x1_c01004{left:113.385333pt;}
.x3_c01004{left:126.042667pt;}
.x2_c01004{left:142.078667pt;}
.x4_c01004{left:174.748000pt;}
}





/* 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_8b17448a197f2bcf7813f11f.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.001000;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_c01005;src:url('chunks/assets/font_5be06d70ce2162b2f698df73.woff2')format("woff");}.ff2_c01005{font-family:ff2_c01005;line-height:1.001000;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_c01005;src:url('chunks/assets/font_4f32244c52c9757a62d97600.woff2')format("woff");}.ff3_c01005{font-family:ff3_c01005;line-height:1.000000;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;}
.v1_c01005{vertical-align:5.976000px;}
.ls0_c01005{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01005{word-spacing:-0.071730px;}
.ws18_c01005{word-spacing:0.000000px;}
.ws12_c01005{word-spacing:16.426170px;}
.wse_c01005{word-spacing:21.805920px;}
.ws16_c01005{word-spacing:21.877650px;}
.ws4_c01005{word-spacing:21.949380px;}
.ws13_c01005{word-spacing:22.164570px;}
.ws15_c01005{word-spacing:22.308030px;}
.ws17_c01005{word-spacing:22.881870px;}
.ws3_c01005{word-spacing:23.025330px;}
.ws5_c01005{word-spacing:23.312250px;}
.ws11_c01005{word-spacing:23.455710px;}
.wsb_c01005{word-spacing:23.886090px;}
.wsf_c01005{word-spacing:24.316470px;}
.wsd_c01005{word-spacing:25.320690px;}
.ws8_c01005{word-spacing:25.535880px;}
.ws7_c01005{word-spacing:25.822800px;}
.wsc_c01005{word-spacing:26.611830px;}
.ws0_c01005{word-spacing:26.827020px;}
.ws2_c01005{word-spacing:26.970480px;}
.wsa_c01005{word-spacing:27.042210px;}
.ws6_c01005{word-spacing:28.978920px;}
.ws9_c01005{word-spacing:32.364576px;}
.ws10_c01005{word-spacing:32.565420px;}
.ws14_c01005{word-spacing:33.784830px;}
._0_c01005{margin-left:-40.670910px;}
._10_c01005{margin-left:-36.725760px;}
._d_c01005{margin-left:-35.506350px;}
._8_c01005{margin-left:-34.502130px;}
._e_c01005{margin-left:-33.067530px;}
._6_c01005{margin-left:-26.898750px;}
._3_c01005{margin-left:-8.392410px;}
._11_c01005{margin-left:-7.388190px;}
._f_c01005{margin-left:-6.312240px;}
._c_c01005{margin-left:-4.734180px;}
._12_c01005{margin-left:-3.729960px;}
._5_c01005{margin-left:-2.510550px;}
._4_c01005{margin-left:-1.506330px;}
._a_c01005{width:1.147680px;}
._7_c01005{width:2.151900px;}
._9_c01005{width:4.590720px;}
._2_c01005{width:79.333380px;}
._b_c01005{width:95.200056px;}
._1_c01005{width:933.068610px;}
.fc0_c01005{color:rgb(0,0,0);}
.fs0_c01005{font-size:71.730000px;}
.fs1_c01005{font-size:86.076000px;}
.y0_c01005{bottom:0.000000px;}
.y22_c01005{bottom:108.996000px;}
.y21_c01005{bottom:135.886500px;}
.y20_c01005{bottom:162.777000px;}
.y1f_c01005{bottom:189.667500px;}
.y1e_c01005{bottom:216.559500px;}
.y1d_c01005{bottom:243.450000px;}
.y1c_c01005{bottom:270.340500px;}
.y1b_c01005{bottom:297.231000px;}
.y1a_c01005{bottom:324.123000px;}
.y19_c01005{bottom:351.013500px;}
.y18_c01005{bottom:377.904000px;}
.y17_c01005{bottom:412.516500px;}
.y16_c01005{bottom:468.804000px;}
.y15_c01005{bottom:495.696000px;}
.y14_c01005{bottom:522.586500px;}
.y13_c01005{bottom:549.477000px;}
.y12_c01005{bottom:576.367500px;}
.y11_c01005{bottom:603.259500px;}
.y10_c01005{bottom:630.150000px;}
.yf_c01005{bottom:657.040500px;}
.ye_c01005{bottom:683.931000px;}
.yd_c01005{bottom:718.543500px;}
.yc_c01005{bottom:777.895500px;}
.yb_c01005{bottom:845.392500px;}
.ya_c01005{bottom:872.283000px;}
.y9_c01005{bottom:899.175000px;}
.y8_c01005{bottom:926.065500px;}
.y7_c01005{bottom:952.956000px;}
.y6_c01005{bottom:979.846500px;}
.y5_c01005{bottom:1006.738500px;}
.y4_c01005{bottom:1033.629000px;}
.y3_c01005{bottom:1060.519500px;}
.y2_c01005{bottom:1095.132000px;}
.y1_c01005{bottom:1162.084500px;}
.h2_c01005{height:53.797500px;}
.h4_c01005{height:59.773500px;}
.h3_c01005{height:64.557000px;}
.h1_c01005{height:1263.750000px;}
.h0_c01005{height:1264.110000px;}
.w0_c01005{width:893.869500px;}
.w1_c01005{width:894.000000px;}
.x0_c01005{left:0.000000px;}
.x1_c01005{left:127.558500px;}
.x2_c01005{left:159.838500px;}
.x4_c01005{left:411.213000px;}
.x5_c01005{left:513.549000px;}
.x3_c01005{left:523.660500px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.v1_c01005{vertical-align:5.312000pt;}
.ls0_c01005{letter-spacing:0.000000pt;}
.ws1_c01005{word-spacing:-0.063760pt;}
.ws18_c01005{word-spacing:0.000000pt;}
.ws12_c01005{word-spacing:14.601040pt;}
.wse_c01005{word-spacing:19.383040pt;}
.ws16_c01005{word-spacing:19.446800pt;}
.ws4_c01005{word-spacing:19.510560pt;}
.ws13_c01005{word-spacing:19.701840pt;}
.ws15_c01005{word-spacing:19.829360pt;}
.ws17_c01005{word-spacing:20.339440pt;}
.ws3_c01005{word-spacing:20.466960pt;}
.ws5_c01005{word-spacing:20.722000pt;}
.ws11_c01005{word-spacing:20.849520pt;}
.wsb_c01005{word-spacing:21.232080pt;}
.wsf_c01005{word-spacing:21.614640pt;}
.wsd_c01005{word-spacing:22.507280pt;}
.ws8_c01005{word-spacing:22.698560pt;}
.ws7_c01005{word-spacing:22.953600pt;}
.wsc_c01005{word-spacing:23.654960pt;}
.ws0_c01005{word-spacing:23.846240pt;}
.ws2_c01005{word-spacing:23.973760pt;}
.wsa_c01005{word-spacing:24.037520pt;}
.ws6_c01005{word-spacing:25.759040pt;}
.ws9_c01005{word-spacing:28.768512pt;}
.ws10_c01005{word-spacing:28.947040pt;}
.ws14_c01005{word-spacing:30.030960pt;}
._0_c01005{margin-left:-36.151920pt;}
._10_c01005{margin-left:-32.645120pt;}
._d_c01005{margin-left:-31.561200pt;}
._8_c01005{margin-left:-30.668560pt;}
._e_c01005{margin-left:-29.393360pt;}
._6_c01005{margin-left:-23.910000pt;}
._3_c01005{margin-left:-7.459920pt;}
._11_c01005{margin-left:-6.567280pt;}
._f_c01005{margin-left:-5.610880pt;}
._c_c01005{margin-left:-4.208160pt;}
._12_c01005{margin-left:-3.315520pt;}
._5_c01005{margin-left:-2.231600pt;}
._4_c01005{margin-left:-1.338960pt;}
._a_c01005{width:1.020160pt;}
._7_c01005{width:1.912800pt;}
._9_c01005{width:4.080640pt;}
._2_c01005{width:70.518560pt;}
._b_c01005{width:84.622272pt;}
._1_c01005{width:829.394320pt;}
.fs0_c01005{font-size:63.760000pt;}
.fs1_c01005{font-size:76.512000pt;}
.y0_c01005{bottom:0.000000pt;}
.y22_c01005{bottom:96.885333pt;}
.y21_c01005{bottom:120.788000pt;}
.y20_c01005{bottom:144.690667pt;}
.y1f_c01005{bottom:168.593333pt;}
.y1e_c01005{bottom:192.497333pt;}
.y1d_c01005{bottom:216.400000pt;}
.y1c_c01005{bottom:240.302667pt;}
.y1b_c01005{bottom:264.205333pt;}
.y1a_c01005{bottom:288.109333pt;}
.y19_c01005{bottom:312.012000pt;}
.y18_c01005{bottom:335.914667pt;}
.y17_c01005{bottom:366.681333pt;}
.y16_c01005{bottom:416.714667pt;}
.y15_c01005{bottom:440.618667pt;}
.y14_c01005{bottom:464.521333pt;}
.y13_c01005{bottom:488.424000pt;}
.y12_c01005{bottom:512.326667pt;}
.y11_c01005{bottom:536.230667pt;}
.y10_c01005{bottom:560.133333pt;}
.yf_c01005{bottom:584.036000pt;}
.ye_c01005{bottom:607.938667pt;}
.yd_c01005{bottom:638.705333pt;}
.yc_c01005{bottom:691.462667pt;}
.yb_c01005{bottom:751.460000pt;}
.ya_c01005{bottom:775.362667pt;}
.y9_c01005{bottom:799.266667pt;}
.y8_c01005{bottom:823.169333pt;}
.y7_c01005{bottom:847.072000pt;}
.y6_c01005{bottom:870.974667pt;}
.y5_c01005{bottom:894.878667pt;}
.y4_c01005{bottom:918.781333pt;}
.y3_c01005{bottom:942.684000pt;}
.y2_c01005{bottom:973.450667pt;}
.y1_c01005{bottom:1032.964000pt;}
.h2_c01005{height:47.820000pt;}
.h4_c01005{height:53.132000pt;}
.h3_c01005{height:57.384000pt;}
.h1_c01005{height:1123.333333pt;}
.h0_c01005{height:1123.653333pt;}
.w0_c01005{width:794.550667pt;}
.w1_c01005{width:794.666667pt;}
.x0_c01005{left:0.000000pt;}
.x1_c01005{left:113.385333pt;}
.x2_c01005{left:142.078667pt;}
.x4_c01005{left:365.522667pt;}
.x5_c01005{left:456.488000pt;}
.x3_c01005{left:465.476000pt;}
}





/* 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_4abec159a2e4f96a66508f49.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.001000;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_c01006;src:url('chunks/assets/font_6d3d8b378325438cdf4554c5.woff2')format("woff");}.ff2_c01006{font-family:ff2_c01006;line-height:1.001000;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_c01006;src:url('chunks/assets/font_4da18d311dd56b5351a1d8e7.woff2')format("woff");}.ff3_c01006{font-family:ff3_c01006;line-height:1.001000;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_c01006;src:url('chunks/assets/font_26306f6cbd4966a142f42f6e.woff2')format("woff");}.ff4_c01006{font-family:ff4_c01006;line-height:0.697000;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_c01006;src:url('chunks/assets/font_f0e653e3ed27699ded46b0cf.woff2')format("woff");}.ff5_c01006{font-family:ff5_c01006;line-height:0.696000;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_c01006;src:url('chunks/assets/font_fa7ea42db72c1df20cee0fbc.woff2')format("woff");}.ff6_c01006{font-family:ff6_c01006;line-height:1.000000;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_c01006;src:url('chunks/assets/font_bcd3ac9568a424044a0244e4.woff2')format("woff");}.ff7_c01006{font-family:ff7_c01006;line-height:1.000000;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);}
.v3_c01006{vertical-align:-21.690000px;}
.v0_c01006{vertical-align:0.000000px;}
.v4_c01006{vertical-align:15.108000px;}
.v1_c01006{vertical-align:18.132000px;}
.v2_c01006{vertical-align:26.034000px;}
.ls2_c01006{letter-spacing:0.000000px;}
.ls1_c01006{letter-spacing:30.186300px;}
.ls0_c01006{letter-spacing:30.217440px;}
.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;}
}
.ws1_c01006{word-spacing:-0.071730px;}
.ws26_c01006{word-spacing:-0.059778px;}
.ws16_c01006{word-spacing:-0.047820px;}
.ws25_c01006{word-spacing:-0.041844px;}
.ws29_c01006{word-spacing:0.000000px;}
.ws10_c01006{word-spacing:15.708870px;}
.wsd_c01006{word-spacing:17.000010px;}
.ws4_c01006{word-spacing:17.932500px;}
.ws12_c01006{word-spacing:18.793260px;}
.ws13_c01006{word-spacing:18.864990px;}
.wsf_c01006{word-spacing:18.936720px;}
.wsb_c01006{word-spacing:19.438830px;}
.ws27_c01006{word-spacing:19.846296px;}
.ws24_c01006{word-spacing:20.207310px;}
.ws22_c01006{word-spacing:20.227860px;}
.ws2_c01006{word-spacing:20.443050px;}
.ws23_c01006{word-spacing:20.678670px;}
.ws14_c01006{word-spacing:20.873430px;}
.ws28_c01006{word-spacing:21.280968px;}
.ws9_c01006{word-spacing:22.236300px;}
.ws3_c01006{word-spacing:22.451490px;}
.ws5_c01006{word-spacing:23.270310px;}
.wsa_c01006{word-spacing:23.312250px;}
.ws1a_c01006{word-spacing:24.316470px;}
.ws15_c01006{word-spacing:25.033770px;}
.ws1c_c01006{word-spacing:25.320690px;}
.ws19_c01006{word-spacing:25.392420px;}
.ws18_c01006{word-spacing:25.679340px;}
.ws0_c01006{word-spacing:26.827020px;}
.ws11_c01006{word-spacing:26.898750px;}
.ws6_c01006{word-spacing:26.970480px;}
.wsc_c01006{word-spacing:27.329130px;}
.ws21_c01006{word-spacing:27.472590px;}
.ws8_c01006{word-spacing:28.333350px;}
.ws1d_c01006{word-spacing:28.548540px;}
.ws7_c01006{word-spacing:28.692000px;}
.wse_c01006{word-spacing:30.054870px;}
.ws1f_c01006{word-spacing:30.126600px;}
.ws17_c01006{word-spacing:31.346010px;}
.ws1e_c01006{word-spacing:31.489470px;}
.ws1b_c01006{word-spacing:31.704660px;}
.ws20_c01006{word-spacing:34.572300px;}
._0_c01006{margin-left:-40.670910px;}
._8_c01006{margin-left:-37.084410px;}
._2_c01006{margin-left:-35.147700px;}
._a_c01006{margin-left:-32.421960px;}
._12_c01006{margin-left:-31.282008px;}
._5_c01006{margin-left:-27.329130px;}
._4_c01006{margin-left:-7.962030px;}
._9_c01006{margin-left:-5.768310px;}
._6_c01006{margin-left:-4.088610px;}
._3_c01006{margin-left:-2.151900px;}
._7_c01006{width:1.936710px;}
._f_c01006{width:3.011160px;}
._10_c01006{width:4.088610px;}
._e_c01006{width:5.221080px;}
._11_c01006{width:23.171700px;}
._d_c01006{width:24.338070px;}
._c_c01006{width:28.046430px;}
._b_c01006{width:36.101550px;}
._1_c01006{width:933.068610px;}
.fc0_c01006{color:rgb(0,0,0);}
.fs2_c01006{font-size:41.844000px;}
.fs1_c01006{font-size:47.820000px;}
.fs3_c01006{font-size:59.778000px;}
.fs0_c01006{font-size:71.730000px;}
.y0_c01006{bottom:0.000000px;}
.y27_c01006{bottom:101.241000px;}
.y26_c01006{bottom:106.663500px;}
.y25_c01006{bottom:136.018500px;}
.y24_c01006{bottom:162.910500px;}
.y23_c01006{bottom:189.801000px;}
.y22_c01006{bottom:216.691500px;}
.y21_c01006{bottom:243.582000px;}
.y20_c01006{bottom:270.472500px;}
.y1f_c01006{bottom:297.364500px;}
.y1e_c01006{bottom:324.255000px;}
.y1d_c01006{bottom:351.145500px;}
.y1c_c01006{bottom:378.036000px;}
.y1b_c01006{bottom:404.928000px;}
.y1a_c01006{bottom:449.751000px;}
.y19_c01006{bottom:476.641500px;}
.y18_c01006{bottom:503.533500px;}
.y17_c01006{bottom:530.424000px;}
.y16_c01006{bottom:557.314500px;}
.y15_c01006{bottom:584.205000px;}
.y14_c01006{bottom:611.095500px;}
.y13_c01006{bottom:637.987500px;}
.y12_c01006{bottom:664.878000px;}
.y11_c01006{bottom:691.768500px;}
.y10_c01006{bottom:718.659000px;}
.yf_c01006{bottom:745.551000px;}
.ye_c01006{bottom:772.441500px;}
.yd_c01006{bottom:799.332000px;}
.yc_c01006{bottom:826.222500px;}
.yb_c01006{bottom:853.114500px;}
.ya_c01006{bottom:880.005000px;}
.y9_c01006{bottom:906.895500px;}
.y8_c01006{bottom:933.786000px;}
.y7_c01006{bottom:960.678000px;}
.y6_c01006{bottom:987.568500px;}
.y5_c01006{bottom:1014.459000px;}
.y4_c01006{bottom:1041.349500px;}
.y3_c01006{bottom:1068.240000px;}
.y2_c01006{bottom:1095.132000px;}
.y1_c01006{bottom:1162.084500px;}
.h5_c01006{height:38.251500px;}
.h6_c01006{height:44.833500px;}
.h2_c01006{height:53.797500px;}
.h4_c01006{height:58.360320px;}
.h3_c01006{height:71.929500px;}
.h1_c01006{height:1263.750000px;}
.h0_c01006{height:1264.110000px;}
.w0_c01006{width:893.869500px;}
.w1_c01006{width:894.000000px;}
.x0_c01006{left:0.000000px;}
.x1_c01006{left:127.558500px;}
.x4_c01006{left:141.798000px;}
.x2_c01006{left:159.838500px;}
.x5_c01006{left:191.196000px;}
.x3_c01006{left:705.811500px;}
@media print{
.v3_c01006{vertical-align:-19.280000pt;}
.v0_c01006{vertical-align:0.000000pt;}
.v4_c01006{vertical-align:13.429333pt;}
.v1_c01006{vertical-align:16.117333pt;}
.v2_c01006{vertical-align:23.141333pt;}
.ls2_c01006{letter-spacing:0.000000pt;}
.ls1_c01006{letter-spacing:26.832267pt;}
.ls0_c01006{letter-spacing:26.859947pt;}
.ws1_c01006{word-spacing:-0.063760pt;}
.ws26_c01006{word-spacing:-0.053136pt;}
.ws16_c01006{word-spacing:-0.042507pt;}
.ws25_c01006{word-spacing:-0.037195pt;}
.ws29_c01006{word-spacing:0.000000pt;}
.ws10_c01006{word-spacing:13.963440pt;}
.wsd_c01006{word-spacing:15.111120pt;}
.ws4_c01006{word-spacing:15.940000pt;}
.ws12_c01006{word-spacing:16.705120pt;}
.ws13_c01006{word-spacing:16.768880pt;}
.wsf_c01006{word-spacing:16.832640pt;}
.wsb_c01006{word-spacing:17.278960pt;}
.ws27_c01006{word-spacing:17.641152pt;}
.ws24_c01006{word-spacing:17.962053pt;}
.ws22_c01006{word-spacing:17.980320pt;}
.ws2_c01006{word-spacing:18.171600pt;}
.ws23_c01006{word-spacing:18.381040pt;}
.ws14_c01006{word-spacing:18.554160pt;}
.ws28_c01006{word-spacing:18.916416pt;}
.ws9_c01006{word-spacing:19.765600pt;}
.ws3_c01006{word-spacing:19.956880pt;}
.ws5_c01006{word-spacing:20.684720pt;}
.wsa_c01006{word-spacing:20.722000pt;}
.ws1a_c01006{word-spacing:21.614640pt;}
.ws15_c01006{word-spacing:22.252240pt;}
.ws1c_c01006{word-spacing:22.507280pt;}
.ws19_c01006{word-spacing:22.571040pt;}
.ws18_c01006{word-spacing:22.826080pt;}
.ws0_c01006{word-spacing:23.846240pt;}
.ws11_c01006{word-spacing:23.910000pt;}
.ws6_c01006{word-spacing:23.973760pt;}
.wsc_c01006{word-spacing:24.292560pt;}
.ws21_c01006{word-spacing:24.420080pt;}
.ws8_c01006{word-spacing:25.185200pt;}
.ws1d_c01006{word-spacing:25.376480pt;}
.ws7_c01006{word-spacing:25.504000pt;}
.wse_c01006{word-spacing:26.715440pt;}
.ws1f_c01006{word-spacing:26.779200pt;}
.ws17_c01006{word-spacing:27.863120pt;}
.ws1e_c01006{word-spacing:27.990640pt;}
.ws1b_c01006{word-spacing:28.181920pt;}
.ws20_c01006{word-spacing:30.730933pt;}
._0_c01006{margin-left:-36.151920pt;}
._8_c01006{margin-left:-32.963920pt;}
._2_c01006{margin-left:-31.242400pt;}
._a_c01006{margin-left:-28.819520pt;}
._12_c01006{margin-left:-27.806229pt;}
._5_c01006{margin-left:-24.292560pt;}
._4_c01006{margin-left:-7.077360pt;}
._9_c01006{margin-left:-5.127387pt;}
._6_c01006{margin-left:-3.634320pt;}
._3_c01006{margin-left:-1.912800pt;}
._7_c01006{width:1.721520pt;}
._f_c01006{width:2.676587pt;}
._10_c01006{width:3.634320pt;}
._e_c01006{width:4.640960pt;}
._11_c01006{width:20.597067pt;}
._d_c01006{width:21.633840pt;}
._c_c01006{width:24.930160pt;}
._b_c01006{width:32.090267pt;}
._1_c01006{width:829.394320pt;}
.fs2_c01006{font-size:37.194667pt;}
.fs1_c01006{font-size:42.506667pt;}
.fs3_c01006{font-size:53.136000pt;}
.fs0_c01006{font-size:63.760000pt;}
.y0_c01006{bottom:0.000000pt;}
.y27_c01006{bottom:89.992000pt;}
.y26_c01006{bottom:94.812000pt;}
.y25_c01006{bottom:120.905333pt;}
.y24_c01006{bottom:144.809333pt;}
.y23_c01006{bottom:168.712000pt;}
.y22_c01006{bottom:192.614667pt;}
.y21_c01006{bottom:216.517333pt;}
.y20_c01006{bottom:240.420000pt;}
.y1f_c01006{bottom:264.324000pt;}
.y1e_c01006{bottom:288.226667pt;}
.y1d_c01006{bottom:312.129333pt;}
.y1c_c01006{bottom:336.032000pt;}
.y1b_c01006{bottom:359.936000pt;}
.y1a_c01006{bottom:399.778667pt;}
.y19_c01006{bottom:423.681333pt;}
.y18_c01006{bottom:447.585333pt;}
.y17_c01006{bottom:471.488000pt;}
.y16_c01006{bottom:495.390667pt;}
.y15_c01006{bottom:519.293333pt;}
.y14_c01006{bottom:543.196000pt;}
.y13_c01006{bottom:567.100000pt;}
.y12_c01006{bottom:591.002667pt;}
.y11_c01006{bottom:614.905333pt;}
.y10_c01006{bottom:638.808000pt;}
.yf_c01006{bottom:662.712000pt;}
.ye_c01006{bottom:686.614667pt;}
.yd_c01006{bottom:710.517333pt;}
.yc_c01006{bottom:734.420000pt;}
.yb_c01006{bottom:758.324000pt;}
.ya_c01006{bottom:782.226667pt;}
.y9_c01006{bottom:806.129333pt;}
.y8_c01006{bottom:830.032000pt;}
.y7_c01006{bottom:853.936000pt;}
.y6_c01006{bottom:877.838667pt;}
.y5_c01006{bottom:901.741333pt;}
.y4_c01006{bottom:925.644000pt;}
.y3_c01006{bottom:949.546667pt;}
.y2_c01006{bottom:973.450667pt;}
.y1_c01006{bottom:1032.964000pt;}
.h5_c01006{height:34.001333pt;}
.h6_c01006{height:39.852000pt;}
.h2_c01006{height:47.820000pt;}
.h4_c01006{height:51.875840pt;}
.h3_c01006{height:63.937333pt;}
.h1_c01006{height:1123.333333pt;}
.h0_c01006{height:1123.653333pt;}
.w0_c01006{width:794.550667pt;}
.w1_c01006{width:794.666667pt;}
.x0_c01006{left:0.000000pt;}
.x1_c01006{left:113.385333pt;}
.x4_c01006{left:126.042667pt;}
.x2_c01006{left:142.078667pt;}
.x5_c01006{left:169.952000pt;}
.x3_c01006{left:627.388000pt;}
}





/* 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_ac4aa6243984bcc25175dae6.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.001000;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_0ec47866be382343867698a7.woff2')format("woff");}.ff2_c01007{font-family:ff2_c01007;line-height:1.001000;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_c01007;src:url('chunks/assets/font_ef05fb5bb0917a00b290446b.woff2')format("woff");}.ff3_c01007{font-family:ff3_c01007;line-height:1.001000;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_c01007;src:url('chunks/assets/font_8b56d92311b9690998738a48.woff2')format("woff");}.ff4_c01007{font-family:ff4_c01007;line-height:0.697000;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_c01007;src:url('chunks/assets/font_3064d6b07cfff12a969eca68.woff2')format("woff");}.ff5_c01007{font-family:ff5_c01007;line-height:0.696000;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_c01007;src:url('chunks/assets/font_a25d6ce4f3585f39759adb93.woff2')format("woff");}.ff6_c01007{font-family:ff6_c01007;line-height:1.000000;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_c01007;src:url('chunks/assets/font_0def69a4aee62243720e70aa.woff2')format("woff");}.ff7_c01007{font-family:ff7_c01007;line-height:1.000000;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);}
.v3_c01007{vertical-align:-21.696000px;}
.v0_c01007{vertical-align:0.000000px;}
.v1_c01007{vertical-align:18.132000px;}
.v2_c01007{vertical-align:26.028000px;}
.ls2_c01007{letter-spacing:0.000000px;}
.ls1_c01007{letter-spacing:19.308300px;}
.ls0_c01007{letter-spacing:19.339440px;}
.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;}
}
.ws1_c01007{word-spacing:-0.071730px;}
.ws29_c01007{word-spacing:-0.059778px;}
.ws11_c01007{word-spacing:-0.047820px;}
.ws21_c01007{word-spacing:-0.041844px;}
.ws2d_c01007{word-spacing:0.000000px;}
.ws14_c01007{word-spacing:16.497900px;}
.wsa_c01007{word-spacing:17.860770px;}
.wsb_c01007{word-spacing:17.932500px;}
.ws1f_c01007{word-spacing:18.147690px;}
.ws2a_c01007{word-spacing:18.292068px;}
.ws1d_c01007{word-spacing:18.793260px;}
.ws7_c01007{word-spacing:18.936720px;}
.ws18_c01007{word-spacing:19.295370px;}
.ws23_c01007{word-spacing:19.846296px;}
.wsd_c01007{word-spacing:19.869210px;}
.ws12_c01007{word-spacing:20.371320px;}
.ws15_c01007{word-spacing:20.801700px;}
.ws3_c01007{word-spacing:20.873430px;}
.ws16_c01007{word-spacing:20.945160px;}
.ws1b_c01007{word-spacing:21.016890px;}
.ws22_c01007{word-spacing:21.280968px;}
.ws19_c01007{word-spacing:21.303810px;}
.ws2c_c01007{word-spacing:21.340746px;}
.ws27_c01007{word-spacing:21.639636px;}
.ws25_c01007{word-spacing:21.699414px;}
.ws2b_c01007{word-spacing:21.759192px;}
.wsc_c01007{word-spacing:22.594950px;}
.ws1a_c01007{word-spacing:22.881870px;}
.ws26_c01007{word-spacing:22.954752px;}
.ws6_c01007{word-spacing:23.312250px;}
.ws4_c01007{word-spacing:23.599170px;}
.wse_c01007{word-spacing:23.670900px;}
.ws28_c01007{word-spacing:24.508980px;}
.ws17_c01007{word-spacing:24.962040px;}
.ws24_c01007{word-spacing:24.987204px;}
.wsf_c01007{word-spacing:25.177230px;}
.ws1c_c01007{word-spacing:25.679340px;}
.ws1e_c01007{word-spacing:25.751070px;}
.ws2_c01007{word-spacing:26.611830px;}
.ws10_c01007{word-spacing:26.755290px;}
.ws0_c01007{word-spacing:26.827020px;}
.ws13_c01007{word-spacing:27.472590px;}
.ws5_c01007{word-spacing:28.405080px;}
.ws8_c01007{word-spacing:29.624490px;}
.ws9_c01007{word-spacing:29.911410px;}
.ws20_c01007{word-spacing:33.641370px;}
._0_c01007{margin-left:-40.670910px;}
._5_c01007{margin-left:-37.084410px;}
._3_c01007{margin-left:-35.147700px;}
._8_c01007{margin-left:-33.210990px;}
._14_c01007{margin-left:-31.806000px;}
._12_c01007{margin-left:-30.805788px;}
._13_c01007{margin-left:-29.740668px;}
._d_c01007{margin-left:-28.499010px;}
._7_c01007{margin-left:-27.329130px;}
._15_c01007{margin-left:-24.784254px;}
._11_c01007{margin-left:-23.195310px;}
._6_c01007{margin-left:-7.603380px;}
._f_c01007{margin-left:-5.881860px;}
._e_c01007{margin-left:-4.855440px;}
._b_c01007{margin-left:-3.516840px;}
._2_c01007{margin-left:-1.936710px;}
._4_c01007{width:1.649790px;}
._a_c01007{width:3.873420px;}
._10_c01007{width:24.475260px;}
._9_c01007{width:26.744490px;}
._c_c01007{width:32.438400px;}
._1_c01007{width:933.068610px;}
.fc0_c01007{color:rgb(0,0,0);}
.fs2_c01007{font-size:41.844000px;}
.fs1_c01007{font-size:47.820000px;}
.fs3_c01007{font-size:59.778000px;}
.fs0_c01007{font-size:71.730000px;}
.y0_c01007{bottom:0.000000px;}
.y29_c01007{bottom:94.848000px;}
.y28_c01007{bottom:112.780500px;}
.y27_c01007{bottom:130.714500px;}
.y26_c01007{bottom:148.647000px;}
.y25_c01007{bottom:166.579500px;}
.y24_c01007{bottom:189.934500px;}
.y23_c01007{bottom:207.868500px;}
.y22_c01007{bottom:234.624000px;}
.y21_c01007{bottom:261.514500px;}
.y20_c01007{bottom:288.406500px;}
.y1f_c01007{bottom:315.297000px;}
.y1e_c01007{bottom:342.187500px;}
.y1d_c01007{bottom:369.078000px;}
.y1c_c01007{bottom:395.970000px;}
.y1b_c01007{bottom:422.860500px;}
.y1a_c01007{bottom:449.751000px;}
.y19_c01007{bottom:476.641500px;}
.y18_c01007{bottom:503.533500px;}
.y17_c01007{bottom:530.424000px;}
.y16_c01007{bottom:557.314500px;}
.y15_c01007{bottom:584.205000px;}
.y14_c01007{bottom:611.095500px;}
.y13_c01007{bottom:637.987500px;}
.y12_c01007{bottom:664.878000px;}
.y11_c01007{bottom:691.768500px;}
.y10_c01007{bottom:718.659000px;}
.yf_c01007{bottom:745.551000px;}
.ye_c01007{bottom:772.441500px;}
.yd_c01007{bottom:799.332000px;}
.yc_c01007{bottom:826.222500px;}
.yb_c01007{bottom:853.114500px;}
.ya_c01007{bottom:880.005000px;}
.y9_c01007{bottom:906.895500px;}
.y8_c01007{bottom:933.786000px;}
.y7_c01007{bottom:960.678000px;}
.y6_c01007{bottom:987.568500px;}
.y5_c01007{bottom:1014.459000px;}
.y4_c01007{bottom:1041.349500px;}
.y3_c01007{bottom:1068.240000px;}
.y2_c01007{bottom:1095.132000px;}
.y1_c01007{bottom:1162.084500px;}
.h6_c01007{height:28.286544px;}
.h7_c01007{height:44.833500px;}
.h2_c01007{height:53.797500px;}
.h4_c01007{height:58.354320px;}
.h5_c01007{height:58.360320px;}
.h3_c01007{height:71.929500px;}
.h1_c01007{height:1263.750000px;}
.h0_c01007{height:1264.110000px;}
.w0_c01007{width:893.869500px;}
.w1_c01007{width:894.000000px;}
.x0_c01007{left:0.000000px;}
.x1_c01007{left:127.558500px;}
.x5_c01007{left:141.798000px;}
.x2_c01007{left:159.838500px;}
.x3_c01007{left:386.460000px;}
.x4_c01007{left:628.035000px;}
@media print{
.v3_c01007{vertical-align:-19.285333pt;}
.v0_c01007{vertical-align:0.000000pt;}
.v1_c01007{vertical-align:16.117333pt;}
.v2_c01007{vertical-align:23.136000pt;}
.ls2_c01007{letter-spacing:0.000000pt;}
.ls1_c01007{letter-spacing:17.162933pt;}
.ls0_c01007{letter-spacing:17.190613pt;}
.ws1_c01007{word-spacing:-0.063760pt;}
.ws29_c01007{word-spacing:-0.053136pt;}
.ws11_c01007{word-spacing:-0.042507pt;}
.ws21_c01007{word-spacing:-0.037195pt;}
.ws2d_c01007{word-spacing:0.000000pt;}
.ws14_c01007{word-spacing:14.664800pt;}
.wsa_c01007{word-spacing:15.876240pt;}
.wsb_c01007{word-spacing:15.940000pt;}
.ws1f_c01007{word-spacing:16.131280pt;}
.ws2a_c01007{word-spacing:16.259616pt;}
.ws1d_c01007{word-spacing:16.705120pt;}
.ws7_c01007{word-spacing:16.832640pt;}
.ws18_c01007{word-spacing:17.151440pt;}
.ws23_c01007{word-spacing:17.641152pt;}
.wsd_c01007{word-spacing:17.661520pt;}
.ws12_c01007{word-spacing:18.107840pt;}
.ws15_c01007{word-spacing:18.490400pt;}
.ws3_c01007{word-spacing:18.554160pt;}
.ws16_c01007{word-spacing:18.617920pt;}
.ws1b_c01007{word-spacing:18.681680pt;}
.ws22_c01007{word-spacing:18.916416pt;}
.ws19_c01007{word-spacing:18.936720pt;}
.ws2c_c01007{word-spacing:18.969552pt;}
.ws27_c01007{word-spacing:19.235232pt;}
.ws25_c01007{word-spacing:19.288368pt;}
.ws2b_c01007{word-spacing:19.341504pt;}
.wsc_c01007{word-spacing:20.084400pt;}
.ws1a_c01007{word-spacing:20.339440pt;}
.ws26_c01007{word-spacing:20.404224pt;}
.ws6_c01007{word-spacing:20.722000pt;}
.ws4_c01007{word-spacing:20.977040pt;}
.wse_c01007{word-spacing:21.040800pt;}
.ws28_c01007{word-spacing:21.785760pt;}
.ws17_c01007{word-spacing:22.188480pt;}
.ws24_c01007{word-spacing:22.210848pt;}
.wsf_c01007{word-spacing:22.379760pt;}
.ws1c_c01007{word-spacing:22.826080pt;}
.ws1e_c01007{word-spacing:22.889840pt;}
.ws2_c01007{word-spacing:23.654960pt;}
.ws10_c01007{word-spacing:23.782480pt;}
.ws0_c01007{word-spacing:23.846240pt;}
.ws13_c01007{word-spacing:24.420080pt;}
.ws5_c01007{word-spacing:25.248960pt;}
.ws8_c01007{word-spacing:26.332880pt;}
.ws9_c01007{word-spacing:26.587920pt;}
.ws20_c01007{word-spacing:29.903440pt;}
._0_c01007{margin-left:-36.151920pt;}
._5_c01007{margin-left:-32.963920pt;}
._3_c01007{margin-left:-31.242400pt;}
._8_c01007{margin-left:-29.520880pt;}
._14_c01007{margin-left:-28.272000pt;}
._12_c01007{margin-left:-27.382923pt;}
._13_c01007{margin-left:-26.436149pt;}
._d_c01007{margin-left:-25.332453pt;}
._7_c01007{margin-left:-24.292560pt;}
._15_c01007{margin-left:-22.030448pt;}
._11_c01007{margin-left:-20.618053pt;}
._6_c01007{margin-left:-6.758560pt;}
._f_c01007{margin-left:-5.228320pt;}
._e_c01007{margin-left:-4.315947pt;}
._b_c01007{margin-left:-3.126080pt;}
._2_c01007{margin-left:-1.721520pt;}
._4_c01007{width:1.466480pt;}
._a_c01007{width:3.443040pt;}
._10_c01007{width:21.755787pt;}
._9_c01007{width:23.772880pt;}
._c_c01007{width:28.834133pt;}
._1_c01007{width:829.394320pt;}
.fs2_c01007{font-size:37.194667pt;}
.fs1_c01007{font-size:42.506667pt;}
.fs3_c01007{font-size:53.136000pt;}
.fs0_c01007{font-size:63.760000pt;}
.y0_c01007{bottom:0.000000pt;}
.y29_c01007{bottom:84.309333pt;}
.y28_c01007{bottom:100.249333pt;}
.y27_c01007{bottom:116.190667pt;}
.y26_c01007{bottom:132.130667pt;}
.y25_c01007{bottom:148.070667pt;}
.y24_c01007{bottom:168.830667pt;}
.y23_c01007{bottom:184.772000pt;}
.y22_c01007{bottom:208.554667pt;}
.y21_c01007{bottom:232.457333pt;}
.y20_c01007{bottom:256.361333pt;}
.y1f_c01007{bottom:280.264000pt;}
.y1e_c01007{bottom:304.166667pt;}
.y1d_c01007{bottom:328.069333pt;}
.y1c_c01007{bottom:351.973333pt;}
.y1b_c01007{bottom:375.876000pt;}
.y1a_c01007{bottom:399.778667pt;}
.y19_c01007{bottom:423.681333pt;}
.y18_c01007{bottom:447.585333pt;}
.y17_c01007{bottom:471.488000pt;}
.y16_c01007{bottom:495.390667pt;}
.y15_c01007{bottom:519.293333pt;}
.y14_c01007{bottom:543.196000pt;}
.y13_c01007{bottom:567.100000pt;}
.y12_c01007{bottom:591.002667pt;}
.y11_c01007{bottom:614.905333pt;}
.y10_c01007{bottom:638.808000pt;}
.yf_c01007{bottom:662.712000pt;}
.ye_c01007{bottom:686.614667pt;}
.yd_c01007{bottom:710.517333pt;}
.yc_c01007{bottom:734.420000pt;}
.yb_c01007{bottom:758.324000pt;}
.ya_c01007{bottom:782.226667pt;}
.y9_c01007{bottom:806.129333pt;}
.y8_c01007{bottom:830.032000pt;}
.y7_c01007{bottom:853.936000pt;}
.y6_c01007{bottom:877.838667pt;}
.y5_c01007{bottom:901.741333pt;}
.y4_c01007{bottom:925.644000pt;}
.y3_c01007{bottom:949.546667pt;}
.y2_c01007{bottom:973.450667pt;}
.y1_c01007{bottom:1032.964000pt;}
.h6_c01007{height:25.143595pt;}
.h7_c01007{height:39.852000pt;}
.h2_c01007{height:47.820000pt;}
.h4_c01007{height:51.870507pt;}
.h5_c01007{height:51.875840pt;}
.h3_c01007{height:63.937333pt;}
.h1_c01007{height:1123.333333pt;}
.h0_c01007{height:1123.653333pt;}
.w0_c01007{width:794.550667pt;}
.w1_c01007{width:794.666667pt;}
.x0_c01007{left:0.000000pt;}
.x1_c01007{left:113.385333pt;}
.x5_c01007{left:126.042667pt;}
.x2_c01007{left:142.078667pt;}
.x3_c01007{left:343.520000pt;}
.x4_c01007{left:558.253333pt;}
}





/* 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_e3c3912e068a93a64710b9b1.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.001000;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_c01008;src:url('chunks/assets/font_28c80b3764d1d851c40434d6.woff2')format("woff");}.ff2_c01008{font-family:ff2_c01008;line-height:1.001000;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_c01008;src:url('chunks/assets/font_9b1a831588238ef2a349c767.woff2')format("woff");}.ff3_c01008{font-family:ff3_c01008;line-height:1.001000;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;}
.ls0_c01008{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01008{word-spacing:-0.071730px;}
.ws27_c01008{word-spacing:0.000000px;}
.ws4_c01008{word-spacing:17.000010px;}
.ws2_c01008{word-spacing:17.717310px;}
.ws15_c01008{word-spacing:17.860770px;}
.ws5_c01008{word-spacing:18.434610px;}
.ws17_c01008{word-spacing:19.510560px;}
.ws10_c01008{word-spacing:19.725750px;}
.ws16_c01008{word-spacing:19.940940px;}
.wsf_c01008{word-spacing:20.658240px;}
.wsd_c01008{word-spacing:20.873430px;}
.ws7_c01008{word-spacing:20.945160px;}
.ws1e_c01008{word-spacing:21.519000px;}
.ws1f_c01008{word-spacing:22.021110px;}
.ws8_c01008{word-spacing:22.451490px;}
.wsa_c01008{word-spacing:22.666680px;}
.wse_c01008{word-spacing:22.810140px;}
.ws9_c01008{word-spacing:23.097060px;}
.ws11_c01008{word-spacing:23.168790px;}
.ws3_c01008{word-spacing:23.312250px;}
.ws6_c01008{word-spacing:23.383980px;}
.ws18_c01008{word-spacing:23.957820px;}
.ws23_c01008{word-spacing:24.101280px;}
.ws12_c01008{word-spacing:24.818580px;}
.ws14_c01008{word-spacing:24.890310px;}
.ws19_c01008{word-spacing:25.033770px;}
.ws13_c01008{word-spacing:26.396640px;}
.ws0_c01008{word-spacing:26.827020px;}
.wsc_c01008{word-spacing:28.548540px;}
.wsb_c01008{word-spacing:29.050650px;}
.ws20_c01008{word-spacing:29.171520px;}
.ws1b_c01008{word-spacing:29.767950px;}
.ws1c_c01008{word-spacing:30.556980px;}
.ws1a_c01008{word-spacing:30.915630px;}
.ws26_c01008{word-spacing:31.776390px;}
.ws1d_c01008{word-spacing:31.991580px;}
.ws22_c01008{word-spacing:32.493690px;}
.ws21_c01008{word-spacing:33.210990px;}
.ws25_c01008{word-spacing:33.426180px;}
.ws24_c01008{word-spacing:34.286940px;}
._0_c01008{margin-left:-40.670910px;}
._7_c01008{margin-left:-37.084410px;}
._5_c01008{margin-left:-35.219430px;}
._a_c01008{margin-left:-27.329130px;}
._9_c01008{margin-left:-7.818570px;}
._4_c01008{margin-left:-5.810130px;}
._8_c01008{margin-left:-4.159380px;}
._d_c01008{margin-left:-3.013620px;}
._3_c01008{margin-left:-1.937670px;}
._6_c01008{width:2.008440px;}
._2_c01008{width:3.586500px;}
._c_c01008{width:10.335030px;}
._b_c01008{width:26.975640px;}
._1_c01008{width:933.068610px;}
.fc0_c01008{color:rgb(0,0,0);}
.fs0_c01008{font-size:71.730000px;}
.y0_c01008{bottom:0.000000px;}
.y27_c01008{bottom:100.170000px;}
.y26_c01008{bottom:127.060500px;}
.y25_c01008{bottom:153.951000px;}
.y24_c01008{bottom:180.843000px;}
.y23_c01008{bottom:207.733500px;}
.y22_c01008{bottom:234.624000px;}
.y21_c01008{bottom:261.514500px;}
.y20_c01008{bottom:288.406500px;}
.y1f_c01008{bottom:315.297000px;}
.y1e_c01008{bottom:342.187500px;}
.y1d_c01008{bottom:369.078000px;}
.y1c_c01008{bottom:395.970000px;}
.y1b_c01008{bottom:422.860500px;}
.y1a_c01008{bottom:449.751000px;}
.y19_c01008{bottom:476.641500px;}
.y18_c01008{bottom:503.533500px;}
.y17_c01008{bottom:530.424000px;}
.y16_c01008{bottom:557.314500px;}
.y15_c01008{bottom:584.205000px;}
.y14_c01008{bottom:611.095500px;}
.y13_c01008{bottom:637.987500px;}
.y12_c01008{bottom:664.878000px;}
.y11_c01008{bottom:691.768500px;}
.y10_c01008{bottom:718.659000px;}
.yf_c01008{bottom:745.551000px;}
.ye_c01008{bottom:772.441500px;}
.yd_c01008{bottom:799.332000px;}
.yc_c01008{bottom:826.222500px;}
.yb_c01008{bottom:853.114500px;}
.ya_c01008{bottom:880.005000px;}
.y9_c01008{bottom:906.895500px;}
.y8_c01008{bottom:933.786000px;}
.y7_c01008{bottom:960.678000px;}
.y6_c01008{bottom:987.568500px;}
.y5_c01008{bottom:1014.459000px;}
.y4_c01008{bottom:1041.349500px;}
.y3_c01008{bottom:1068.240000px;}
.y2_c01008{bottom:1095.132000px;}
.y1_c01008{bottom:1162.084500px;}
.h2_c01008{height:53.797500px;}
.h1_c01008{height:1263.750000px;}
.h0_c01008{height:1264.110000px;}
.w0_c01008{width:893.869500px;}
.w1_c01008{width:894.000000px;}
.x0_c01008{left:0.000000px;}
.x1_c01008{left:127.558500px;}
.x2_c01008{left:159.838500px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls0_c01008{letter-spacing:0.000000pt;}
.ws1_c01008{word-spacing:-0.063760pt;}
.ws27_c01008{word-spacing:0.000000pt;}
.ws4_c01008{word-spacing:15.111120pt;}
.ws2_c01008{word-spacing:15.748720pt;}
.ws15_c01008{word-spacing:15.876240pt;}
.ws5_c01008{word-spacing:16.386320pt;}
.ws17_c01008{word-spacing:17.342720pt;}
.ws10_c01008{word-spacing:17.534000pt;}
.ws16_c01008{word-spacing:17.725280pt;}
.wsf_c01008{word-spacing:18.362880pt;}
.wsd_c01008{word-spacing:18.554160pt;}
.ws7_c01008{word-spacing:18.617920pt;}
.ws1e_c01008{word-spacing:19.128000pt;}
.ws1f_c01008{word-spacing:19.574320pt;}
.ws8_c01008{word-spacing:19.956880pt;}
.wsa_c01008{word-spacing:20.148160pt;}
.wse_c01008{word-spacing:20.275680pt;}
.ws9_c01008{word-spacing:20.530720pt;}
.ws11_c01008{word-spacing:20.594480pt;}
.ws3_c01008{word-spacing:20.722000pt;}
.ws6_c01008{word-spacing:20.785760pt;}
.ws18_c01008{word-spacing:21.295840pt;}
.ws23_c01008{word-spacing:21.423360pt;}
.ws12_c01008{word-spacing:22.060960pt;}
.ws14_c01008{word-spacing:22.124720pt;}
.ws19_c01008{word-spacing:22.252240pt;}
.ws13_c01008{word-spacing:23.463680pt;}
.ws0_c01008{word-spacing:23.846240pt;}
.wsc_c01008{word-spacing:25.376480pt;}
.wsb_c01008{word-spacing:25.822800pt;}
.ws20_c01008{word-spacing:25.930240pt;}
.ws1b_c01008{word-spacing:26.460400pt;}
.ws1c_c01008{word-spacing:27.161760pt;}
.ws1a_c01008{word-spacing:27.480560pt;}
.ws26_c01008{word-spacing:28.245680pt;}
.ws1d_c01008{word-spacing:28.436960pt;}
.ws22_c01008{word-spacing:28.883280pt;}
.ws21_c01008{word-spacing:29.520880pt;}
.ws25_c01008{word-spacing:29.712160pt;}
.ws24_c01008{word-spacing:30.477280pt;}
._0_c01008{margin-left:-36.151920pt;}
._7_c01008{margin-left:-32.963920pt;}
._5_c01008{margin-left:-31.306160pt;}
._a_c01008{margin-left:-24.292560pt;}
._9_c01008{margin-left:-6.949840pt;}
._4_c01008{margin-left:-5.164560pt;}
._8_c01008{margin-left:-3.697227pt;}
._d_c01008{margin-left:-2.678773pt;}
._3_c01008{margin-left:-1.722373pt;}
._6_c01008{width:1.785280pt;}
._2_c01008{width:3.188000pt;}
._c_c01008{width:9.186693pt;}
._b_c01008{width:23.978347pt;}
._1_c01008{width:829.394320pt;}
.fs0_c01008{font-size:63.760000pt;}
.y0_c01008{bottom:0.000000pt;}
.y27_c01008{bottom:89.040000pt;}
.y26_c01008{bottom:112.942667pt;}
.y25_c01008{bottom:136.845333pt;}
.y24_c01008{bottom:160.749333pt;}
.y23_c01008{bottom:184.652000pt;}
.y22_c01008{bottom:208.554667pt;}
.y21_c01008{bottom:232.457333pt;}
.y20_c01008{bottom:256.361333pt;}
.y1f_c01008{bottom:280.264000pt;}
.y1e_c01008{bottom:304.166667pt;}
.y1d_c01008{bottom:328.069333pt;}
.y1c_c01008{bottom:351.973333pt;}
.y1b_c01008{bottom:375.876000pt;}
.y1a_c01008{bottom:399.778667pt;}
.y19_c01008{bottom:423.681333pt;}
.y18_c01008{bottom:447.585333pt;}
.y17_c01008{bottom:471.488000pt;}
.y16_c01008{bottom:495.390667pt;}
.y15_c01008{bottom:519.293333pt;}
.y14_c01008{bottom:543.196000pt;}
.y13_c01008{bottom:567.100000pt;}
.y12_c01008{bottom:591.002667pt;}
.y11_c01008{bottom:614.905333pt;}
.y10_c01008{bottom:638.808000pt;}
.yf_c01008{bottom:662.712000pt;}
.ye_c01008{bottom:686.614667pt;}
.yd_c01008{bottom:710.517333pt;}
.yc_c01008{bottom:734.420000pt;}
.yb_c01008{bottom:758.324000pt;}
.ya_c01008{bottom:782.226667pt;}
.y9_c01008{bottom:806.129333pt;}
.y8_c01008{bottom:830.032000pt;}
.y7_c01008{bottom:853.936000pt;}
.y6_c01008{bottom:877.838667pt;}
.y5_c01008{bottom:901.741333pt;}
.y4_c01008{bottom:925.644000pt;}
.y3_c01008{bottom:949.546667pt;}
.y2_c01008{bottom:973.450667pt;}
.y1_c01008{bottom:1032.964000pt;}
.h2_c01008{height:47.820000pt;}
.h1_c01008{height:1123.333333pt;}
.h0_c01008{height:1123.653333pt;}
.w0_c01008{width:794.550667pt;}
.w1_c01008{width:794.666667pt;}
.x0_c01008{left:0.000000pt;}
.x1_c01008{left:113.385333pt;}
.x2_c01008{left:142.078667pt;}
}





/* 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_8348cd0415f52b444d548a7b.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.001000;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_0540cf15f0ceddd212c5e590.woff2')format("woff");}.ff2_c01009{font-family:ff2_c01009;line-height:1.001000;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_071e25094a1fa8bc24fd1583.woff2')format("woff");}.ff3_c01009{font-family:ff3_c01009;line-height:1.001000;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_c01009;src:url('chunks/assets/font_ce3b32b4f3f47da9025363b2.woff2')format("woff");}.ff4_c01009{font-family:ff4_c01009;line-height:0.697000;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_c01009;src:url('chunks/assets/font_d9262d2d7cda627523afc999.woff2')format("woff");}.ff5_c01009{font-family:ff5_c01009;line-height:1.000000;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_c01009;src:url('chunks/assets/font_3c60a57f3d45e2758c5c384c.woff2')format("woff");}.ff6_c01009{font-family:ff6_c01009;line-height:0.696000;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_c01009;src:url('chunks/assets/font_a73f4ca452cf49e3f5d3a9fa.woff2')format("woff");}.ff7_c01009{font-family:ff7_c01009;line-height:1.000000;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_c01009;src:url('chunks/assets/font_edbcc6ea212df65ad4ce99c6.woff2')format("woff");}.ff8_c01009{font-family:ff8_c01009;line-height:1.000000;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);}
.v3_c01009{vertical-align:-21.690000px;}
.v0_c01009{vertical-align:0.000000px;}
.v2_c01009{vertical-align:5.976000px;}
.v4_c01009{vertical-align:15.114000px;}
.v1_c01009{vertical-align:26.034000px;}
.ls1_c01009{letter-spacing:0.000000px;}
.ls0_c01009{letter-spacing:29.467440px;}
.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;}
}
.ws1_c01009{word-spacing:-0.071730px;}
.wsb_c01009{word-spacing:-0.047820px;}
.ws27_c01009{word-spacing:-0.041844px;}
.ws2f_c01009{word-spacing:0.000000px;}
.ws2d_c01009{word-spacing:16.618284px;}
.ws11_c01009{word-spacing:18.291150px;}
.ws2e_c01009{word-spacing:18.351846px;}
.ws1c_c01009{word-spacing:18.506340px;}
.ws1a_c01009{word-spacing:19.367100px;}
.wsd_c01009{word-spacing:19.510560px;}
.ws2a_c01009{word-spacing:19.786518px;}
.ws2b_c01009{word-spacing:19.835196px;}
.ws28_c01009{word-spacing:19.846296px;}
.ws10_c01009{word-spacing:20.371320px;}
.ws19_c01009{word-spacing:20.514780px;}
.ws29_c01009{word-spacing:21.280968px;}
.ws2c_c01009{word-spacing:21.340746px;}
.ws7_c01009{word-spacing:21.375540px;}
.ws4_c01009{word-spacing:22.092840px;}
.ws9_c01009{word-spacing:22.523220px;}
.ws8_c01009{word-spacing:22.738410px;}
.ws5_c01009{word-spacing:23.312250px;}
.ws1b_c01009{word-spacing:23.383980px;}
.wsc_c01009{word-spacing:23.599170px;}
.ws2_c01009{word-spacing:23.670900px;}
.ws23_c01009{word-spacing:23.957820px;}
.wse_c01009{word-spacing:24.316470px;}
.ws1e_c01009{word-spacing:24.388200px;}
.ws25_c01009{word-spacing:24.962040px;}
.ws3_c01009{word-spacing:25.392420px;}
.ws13_c01009{word-spacing:25.679340px;}
.ws1f_c01009{word-spacing:26.037990px;}
.ws12_c01009{word-spacing:26.324910px;}
.ws26_c01009{word-spacing:26.611830px;}
.wsa_c01009{word-spacing:26.683560px;}
.ws6_c01009{word-spacing:26.755290px;}
.ws0_c01009{word-spacing:26.827020px;}
.ws21_c01009{word-spacing:26.970480px;}
.ws22_c01009{word-spacing:27.042210px;}
.wsf_c01009{word-spacing:28.118160px;}
.ws18_c01009{word-spacing:29.337570px;}
.ws15_c01009{word-spacing:29.416110px;}
.ws1d_c01009{word-spacing:30.328560px;}
.ws24_c01009{word-spacing:30.417270px;}
.ws16_c01009{word-spacing:30.556980px;}
.ws14_c01009{word-spacing:31.489470px;}
.ws17_c01009{word-spacing:33.713100px;}
.ws20_c01009{word-spacing:79.261650px;}
._0_c01009{margin-left:-40.670910px;}
._10_c01009{margin-left:-37.084410px;}
._5_c01009{margin-left:-35.291160px;}
._c_c01009{margin-left:-33.713100px;}
._13_c01009{margin-left:-32.350230px;}
._17_c01009{margin-left:-29.879646px;}
._b_c01009{margin-left:-28.692000px;}
._8_c01009{margin-left:-27.329130px;}
._16_c01009{margin-left:-8.861850px;}
._7_c01009{margin-left:-7.746840px;}
._a_c01009{margin-left:-6.742620px;}
._d_c01009{margin-left:-5.236290px;}
._9_c01009{margin-left:-3.729960px;}
._6_c01009{margin-left:-2.008440px;}
._4_c01009{width:1.721520px;}
._f_c01009{width:3.011160px;}
._e_c01009{width:4.880460px;}
._2_c01009{width:6.330720px;}
._3_c01009{width:7.771530px;}
._12_c01009{width:23.782410px;}
._14_c01009{width:25.105500px;}
._18_c01009{width:27.660906px;}
._11_c01009{width:30.198330px;}
._15_c01009{width:34.826610px;}
._1_c01009{width:933.068610px;}
.fc0_c01009{color:rgb(0,0,0);}
.fs2_c01009{font-size:41.844000px;}
.fs1_c01009{font-size:47.820000px;}
.fs3_c01009{font-size:59.778000px;}
.fs0_c01009{font-size:71.730000px;}
.y0_c01009{bottom:0.000000px;}
.y26_c01009{bottom:106.920000px;}
.y25_c01009{bottom:130.275000px;}
.y24_c01009{bottom:142.785000px;}
.y23_c01009{bottom:160.717500px;}
.y22_c01009{bottom:166.141500px;}
.y21_c01009{bottom:185.676000px;}
.y20_c01009{bottom:212.433000px;}
.y1f_c01009{bottom:239.323500px;}
.y1e_c01009{bottom:273.936000px;}
.y1d_c01009{bottom:330.223500px;}
.y1c_c01009{bottom:357.115500px;}
.y1b_c01009{bottom:384.006000px;}
.y1a_c01009{bottom:410.896500px;}
.y19_c01009{bottom:437.787000px;}
.y18_c01009{bottom:464.679000px;}
.y17_c01009{bottom:491.569500px;}
.y16_c01009{bottom:518.460000px;}
.y15_c01009{bottom:545.350500px;}
.y14_c01009{bottom:572.242500px;}
.y13_c01009{bottom:599.133000px;}
.y12_c01009{bottom:626.023500px;}
.y11_c01009{bottom:652.914000px;}
.y10_c01009{bottom:679.806000px;}
.yf_c01009{bottom:706.696500px;}
.ye_c01009{bottom:733.587000px;}
.yd_c01009{bottom:760.477500px;}
.yc_c01009{bottom:787.368000px;}
.yb_c01009{bottom:814.260000px;}
.ya_c01009{bottom:860.577000px;}
.y9_c01009{bottom:887.469000px;}
.y8_c01009{bottom:914.359500px;}
.y7_c01009{bottom:941.250000px;}
.y6_c01009{bottom:968.140500px;}
.y5_c01009{bottom:1014.459000px;}
.y4_c01009{bottom:1041.349500px;}
.y3_c01009{bottom:1068.240000px;}
.y2_c01009{bottom:1095.132000px;}
.y1_c01009{bottom:1162.084500px;}
.h5_c01009{height:28.286544px;}
.h6_c01009{height:38.251500px;}
.h7_c01009{height:44.833500px;}
.h2_c01009{height:53.797500px;}
.h3_c01009{height:58.360320px;}
.h4_c01009{height:59.773500px;}
.h1_c01009{height:1263.750000px;}
.h0_c01009{height:1264.110000px;}
.w0_c01009{width:893.869500px;}
.w1_c01009{width:894.000000px;}
.x0_c01009{left:0.000000px;}
.x1_c01009{left:127.558500px;}
.x7_c01009{left:141.798000px;}
.x2_c01009{left:159.838500px;}
.x4_c01009{left:171.456000px;}
.x3_c01009{left:197.794500px;}
.x5_c01009{left:239.727000px;}
.x6_c01009{left:337.401000px;}
.x8_c01009{left:346.689000px;}
@media print{
.v3_c01009{vertical-align:-19.280000pt;}
.v0_c01009{vertical-align:0.000000pt;}
.v2_c01009{vertical-align:5.312000pt;}
.v4_c01009{vertical-align:13.434667pt;}
.v1_c01009{vertical-align:23.141333pt;}
.ls1_c01009{letter-spacing:0.000000pt;}
.ls0_c01009{letter-spacing:26.193280pt;}
.ws1_c01009{word-spacing:-0.063760pt;}
.wsb_c01009{word-spacing:-0.042507pt;}
.ws27_c01009{word-spacing:-0.037195pt;}
.ws2f_c01009{word-spacing:0.000000pt;}
.ws2d_c01009{word-spacing:14.771808pt;}
.ws11_c01009{word-spacing:16.258800pt;}
.ws2e_c01009{word-spacing:16.312752pt;}
.ws1c_c01009{word-spacing:16.450080pt;}
.ws1a_c01009{word-spacing:17.215200pt;}
.wsd_c01009{word-spacing:17.342720pt;}
.ws2a_c01009{word-spacing:17.588016pt;}
.ws2b_c01009{word-spacing:17.631285pt;}
.ws28_c01009{word-spacing:17.641152pt;}
.ws10_c01009{word-spacing:18.107840pt;}
.ws19_c01009{word-spacing:18.235360pt;}
.ws29_c01009{word-spacing:18.916416pt;}
.ws2c_c01009{word-spacing:18.969552pt;}
.ws7_c01009{word-spacing:19.000480pt;}
.ws4_c01009{word-spacing:19.638080pt;}
.ws9_c01009{word-spacing:20.020640pt;}
.ws8_c01009{word-spacing:20.211920pt;}
.ws5_c01009{word-spacing:20.722000pt;}
.ws1b_c01009{word-spacing:20.785760pt;}
.wsc_c01009{word-spacing:20.977040pt;}
.ws2_c01009{word-spacing:21.040800pt;}
.ws23_c01009{word-spacing:21.295840pt;}
.wse_c01009{word-spacing:21.614640pt;}
.ws1e_c01009{word-spacing:21.678400pt;}
.ws25_c01009{word-spacing:22.188480pt;}
.ws3_c01009{word-spacing:22.571040pt;}
.ws13_c01009{word-spacing:22.826080pt;}
.ws1f_c01009{word-spacing:23.144880pt;}
.ws12_c01009{word-spacing:23.399920pt;}
.ws26_c01009{word-spacing:23.654960pt;}
.wsa_c01009{word-spacing:23.718720pt;}
.ws6_c01009{word-spacing:23.782480pt;}
.ws0_c01009{word-spacing:23.846240pt;}
.ws21_c01009{word-spacing:23.973760pt;}
.ws22_c01009{word-spacing:24.037520pt;}
.wsf_c01009{word-spacing:24.993920pt;}
.ws18_c01009{word-spacing:26.077840pt;}
.ws15_c01009{word-spacing:26.147653pt;}
.ws1d_c01009{word-spacing:26.958720pt;}
.ws24_c01009{word-spacing:27.037573pt;}
.ws16_c01009{word-spacing:27.161760pt;}
.ws14_c01009{word-spacing:27.990640pt;}
.ws17_c01009{word-spacing:29.967200pt;}
.ws20_c01009{word-spacing:70.454800pt;}
._0_c01009{margin-left:-36.151920pt;}
._10_c01009{margin-left:-32.963920pt;}
._5_c01009{margin-left:-31.369920pt;}
._c_c01009{margin-left:-29.967200pt;}
._13_c01009{margin-left:-28.755760pt;}
._17_c01009{margin-left:-26.559685pt;}
._b_c01009{margin-left:-25.504000pt;}
._8_c01009{margin-left:-24.292560pt;}
._16_c01009{margin-left:-7.877200pt;}
._7_c01009{margin-left:-6.886080pt;}
._a_c01009{margin-left:-5.993440pt;}
._d_c01009{margin-left:-4.654480pt;}
._9_c01009{margin-left:-3.315520pt;}
._6_c01009{margin-left:-1.785280pt;}
._4_c01009{width:1.530240pt;}
._f_c01009{width:2.676587pt;}
._e_c01009{width:4.338187pt;}
._2_c01009{width:5.627307pt;}
._3_c01009{width:6.908027pt;}
._12_c01009{width:21.139920pt;}
._14_c01009{width:22.316000pt;}
._18_c01009{width:24.587472pt;}
._11_c01009{width:26.842960pt;}
._15_c01009{width:30.956987pt;}
._1_c01009{width:829.394320pt;}
.fs2_c01009{font-size:37.194667pt;}
.fs1_c01009{font-size:42.506667pt;}
.fs3_c01009{font-size:53.136000pt;}
.fs0_c01009{font-size:63.760000pt;}
.y0_c01009{bottom:0.000000pt;}
.y26_c01009{bottom:95.040000pt;}
.y25_c01009{bottom:115.800000pt;}
.y24_c01009{bottom:126.920000pt;}
.y23_c01009{bottom:142.860000pt;}
.y22_c01009{bottom:147.681333pt;}
.y21_c01009{bottom:165.045333pt;}
.y20_c01009{bottom:188.829333pt;}
.y1f_c01009{bottom:212.732000pt;}
.y1e_c01009{bottom:243.498667pt;}
.y1d_c01009{bottom:293.532000pt;}
.y1c_c01009{bottom:317.436000pt;}
.y1b_c01009{bottom:341.338667pt;}
.y1a_c01009{bottom:365.241333pt;}
.y19_c01009{bottom:389.144000pt;}
.y18_c01009{bottom:413.048000pt;}
.y17_c01009{bottom:436.950667pt;}
.y16_c01009{bottom:460.853333pt;}
.y15_c01009{bottom:484.756000pt;}
.y14_c01009{bottom:508.660000pt;}
.y13_c01009{bottom:532.562667pt;}
.y12_c01009{bottom:556.465333pt;}
.y11_c01009{bottom:580.368000pt;}
.y10_c01009{bottom:604.272000pt;}
.yf_c01009{bottom:628.174667pt;}
.ye_c01009{bottom:652.077333pt;}
.yd_c01009{bottom:675.980000pt;}
.yc_c01009{bottom:699.882667pt;}
.yb_c01009{bottom:723.786667pt;}
.ya_c01009{bottom:764.957333pt;}
.y9_c01009{bottom:788.861333pt;}
.y8_c01009{bottom:812.764000pt;}
.y7_c01009{bottom:836.666667pt;}
.y6_c01009{bottom:860.569333pt;}
.y5_c01009{bottom:901.741333pt;}
.y4_c01009{bottom:925.644000pt;}
.y3_c01009{bottom:949.546667pt;}
.y2_c01009{bottom:973.450667pt;}
.y1_c01009{bottom:1032.964000pt;}
.h5_c01009{height:25.143595pt;}
.h6_c01009{height:34.001333pt;}
.h7_c01009{height:39.852000pt;}
.h2_c01009{height:47.820000pt;}
.h3_c01009{height:51.875840pt;}
.h4_c01009{height:53.132000pt;}
.h1_c01009{height:1123.333333pt;}
.h0_c01009{height:1123.653333pt;}
.w0_c01009{width:794.550667pt;}
.w1_c01009{width:794.666667pt;}
.x0_c01009{left:0.000000pt;}
.x1_c01009{left:113.385333pt;}
.x7_c01009{left:126.042667pt;}
.x2_c01009{left:142.078667pt;}
.x4_c01009{left:152.405333pt;}
.x3_c01009{left:175.817333pt;}
.x5_c01009{left:213.090667pt;}
.x6_c01009{left:299.912000pt;}
.x8_c01009{left:308.168000pt;}
}





/* 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_b6a1bd556f1fe6cabbf28667.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.001000;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_c01010;src:url('chunks/assets/font_ccafb402047172c74e3dfc1d.woff2')format("woff");}.ff2_c01010{font-family:ff2_c01010;line-height:1.001000;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_c01010;src:url('chunks/assets/font_23614901955985b6842ecb6f.woff2')format("woff");}.ff3_c01010{font-family:ff3_c01010;line-height:1.001000;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_c01010;src:url('chunks/assets/font_e2d62ca0a8139e41a9bc4b4f.woff2')format("woff");}.ff4_c01010{font-family:ff4_c01010;line-height:0.697000;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_c01010;src:url('chunks/assets/font_a0f1a96423b92a9649a6a981.woff2')format("woff");}.ff5_c01010{font-family:ff5_c01010;line-height:0.696000;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_c01010;src:url('chunks/assets/font_e400ea77324c62fdbd6c7857.woff2')format("woff");}.ff6_c01010{font-family:ff6_c01010;line-height:1.000000;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_c01010;src:url('chunks/assets/font_deb9b5bfee2134c8e3a6dacd.woff2')format("woff");}.ff7_c01010{font-family:ff7_c01010;line-height:1.000000;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);}
.v2_c01010{vertical-align:-21.696000px;}
.v0_c01010{vertical-align:0.000000px;}
.v3_c01010{vertical-align:15.108000px;}
.v1_c01010{vertical-align:26.034000px;}
.ls0_c01010{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01010{word-spacing:-0.071730px;}
.ws25_c01010{word-spacing:-0.059778px;}
.ws4_c01010{word-spacing:-0.047820px;}
.ws22_c01010{word-spacing:-0.041844px;}
.ws27_c01010{word-spacing:0.000000px;}
.wsf_c01010{word-spacing:18.135870px;}
.ws10_c01010{word-spacing:18.147690px;}
.ws24_c01010{word-spacing:19.846296px;}
.ws13_c01010{word-spacing:21.088620px;}
.ws26_c01010{word-spacing:21.280968px;}
.ws23_c01010{word-spacing:21.340746px;}
.ws21_c01010{word-spacing:21.519000px;}
.ws19_c01010{word-spacing:22.092840px;}
.ws14_c01010{word-spacing:23.312250px;}
.wsc_c01010{word-spacing:23.383980px;}
.ws8_c01010{word-spacing:23.670900px;}
.ws11_c01010{word-spacing:23.742630px;}
.ws18_c01010{word-spacing:23.814360px;}
.ws3_c01010{word-spacing:25.033770px;}
.ws17_c01010{word-spacing:25.105500px;}
.wse_c01010{word-spacing:25.464150px;}
.wsd_c01010{word-spacing:25.679340px;}
.wsa_c01010{word-spacing:26.037990px;}
.ws1e_c01010{word-spacing:26.381340px;}
.ws1b_c01010{word-spacing:26.468370px;}
.ws1a_c01010{word-spacing:26.540100px;}
.ws0_c01010{word-spacing:26.827020px;}
.ws16_c01010{word-spacing:26.970480px;}
.ws2_c01010{word-spacing:27.113940px;}
.ws7_c01010{word-spacing:27.544320px;}
.ws1c_c01010{word-spacing:27.902970px;}
.ws1d_c01010{word-spacing:28.118160px;}
.ws12_c01010{word-spacing:29.767950px;}
.wsb_c01010{word-spacing:29.839680px;}
.ws9_c01010{word-spacing:30.772170px;}
.ws20_c01010{word-spacing:31.346010px;}
.ws6_c01010{word-spacing:33.816780px;}
.ws5_c01010{word-spacing:34.286940px;}
.ws15_c01010{word-spacing:34.358670px;}
.ws1f_c01010{word-spacing:34.717320px;}
._0_c01010{margin-left:-40.670910px;}
._b_c01010{margin-left:-37.084410px;}
._3_c01010{margin-left:-35.865000px;}
._5_c01010{margin-left:-34.071750px;}
._e_c01010{margin-left:-32.995800px;}
._f_c01010{margin-left:-30.708168px;}
._9_c01010{margin-left:-27.329130px;}
._10_c01010{margin-left:-22.635402px;}
._8_c01010{margin-left:-7.818570px;}
._c_c01010{margin-left:-5.379750px;}
._2_c01010{margin-left:-3.586500px;}
._d_c01010{margin-left:-2.008440px;}
._a_c01010{width:2.008440px;}
._6_c01010{width:3.586500px;}
._7_c01010{width:4.621290px;}
._4_c01010{width:25.392420px;}
._1_c01010{width:933.068610px;}
.fc0_c01010{color:rgb(0,0,0);}
.fs2_c01010{font-size:41.844000px;}
.fs1_c01010{font-size:47.820000px;}
.fs3_c01010{font-size:59.778000px;}
.fs0_c01010{font-size:71.730000px;}
.y0_c01010{bottom:0.000000px;}
.y26_c01010{bottom:98.865000px;}
.y25_c01010{bottom:111.375000px;}
.y24_c01010{bottom:116.797500px;}
.y23_c01010{bottom:136.333500px;}
.y22_c01010{bottom:162.726000px;}
.y21_c01010{bottom:189.616500px;}
.y20_c01010{bottom:216.508500px;}
.y1f_c01010{bottom:261.373500px;}
.y1e_c01010{bottom:288.264000px;}
.y1d_c01010{bottom:315.154500px;}
.y1c_c01010{bottom:342.046500px;}
.y1b_c01010{bottom:368.937000px;}
.y1a_c01010{bottom:395.827500px;}
.y19_c01010{bottom:422.718000px;}
.y18_c01010{bottom:449.608500px;}
.y17_c01010{bottom:476.500500px;}
.y16_c01010{bottom:503.391000px;}
.y15_c01010{bottom:548.256000px;}
.y14_c01010{bottom:575.146500px;}
.y13_c01010{bottom:602.038500px;}
.y12_c01010{bottom:646.903500px;}
.y11_c01010{bottom:673.794000px;}
.y10_c01010{bottom:700.684500px;}
.yf_c01010{bottom:727.576500px;}
.ye_c01010{bottom:754.467000px;}
.yd_c01010{bottom:781.357500px;}
.yc_c01010{bottom:808.248000px;}
.yb_c01010{bottom:835.140000px;}
.ya_c01010{bottom:862.030500px;}
.y9_c01010{bottom:888.921000px;}
.y8_c01010{bottom:915.811500px;}
.y7_c01010{bottom:942.702000px;}
.y6_c01010{bottom:969.594000px;}
.y5_c01010{bottom:996.484500px;}
.y4_c01010{bottom:1023.375000px;}
.y3_c01010{bottom:1068.240000px;}
.y2_c01010{bottom:1095.132000px;}
.y1_c01010{bottom:1162.084500px;}
.h5_c01010{height:28.286544px;}
.h6_c01010{height:38.251500px;}
.h7_c01010{height:44.833500px;}
.h2_c01010{height:53.797500px;}
.h4_c01010{height:58.354320px;}
.h3_c01010{height:58.360320px;}
.h1_c01010{height:1263.750000px;}
.h0_c01010{height:1264.110000px;}
.w0_c01010{width:893.869500px;}
.w1_c01010{width:894.000000px;}
.x0_c01010{left:0.000000px;}
.x1_c01010{left:127.558500px;}
.x5_c01010{left:141.798000px;}
.x3_c01010{left:159.838500px;}
.x2_c01010{left:171.456000px;}
.x6_c01010{left:191.196000px;}
.x4_c01010{left:197.794500px;}
@media print{
.v2_c01010{vertical-align:-19.285333pt;}
.v0_c01010{vertical-align:0.000000pt;}
.v3_c01010{vertical-align:13.429333pt;}
.v1_c01010{vertical-align:23.141333pt;}
.ls0_c01010{letter-spacing:0.000000pt;}
.ws1_c01010{word-spacing:-0.063760pt;}
.ws25_c01010{word-spacing:-0.053136pt;}
.ws4_c01010{word-spacing:-0.042507pt;}
.ws22_c01010{word-spacing:-0.037195pt;}
.ws27_c01010{word-spacing:0.000000pt;}
.wsf_c01010{word-spacing:16.120773pt;}
.ws10_c01010{word-spacing:16.131280pt;}
.ws24_c01010{word-spacing:17.641152pt;}
.ws13_c01010{word-spacing:18.745440pt;}
.ws26_c01010{word-spacing:18.916416pt;}
.ws23_c01010{word-spacing:18.969552pt;}
.ws21_c01010{word-spacing:19.128000pt;}
.ws19_c01010{word-spacing:19.638080pt;}
.ws14_c01010{word-spacing:20.722000pt;}
.wsc_c01010{word-spacing:20.785760pt;}
.ws8_c01010{word-spacing:21.040800pt;}
.ws11_c01010{word-spacing:21.104560pt;}
.ws18_c01010{word-spacing:21.168320pt;}
.ws3_c01010{word-spacing:22.252240pt;}
.ws17_c01010{word-spacing:22.316000pt;}
.wse_c01010{word-spacing:22.634800pt;}
.wsd_c01010{word-spacing:22.826080pt;}
.wsa_c01010{word-spacing:23.144880pt;}
.ws1e_c01010{word-spacing:23.450080pt;}
.ws1b_c01010{word-spacing:23.527440pt;}
.ws1a_c01010{word-spacing:23.591200pt;}
.ws0_c01010{word-spacing:23.846240pt;}
.ws16_c01010{word-spacing:23.973760pt;}
.ws2_c01010{word-spacing:24.101280pt;}
.ws7_c01010{word-spacing:24.483840pt;}
.ws1c_c01010{word-spacing:24.802640pt;}
.ws1d_c01010{word-spacing:24.993920pt;}
.ws12_c01010{word-spacing:26.460400pt;}
.wsb_c01010{word-spacing:26.524160pt;}
.ws9_c01010{word-spacing:27.353040pt;}
.ws20_c01010{word-spacing:27.863120pt;}
.ws6_c01010{word-spacing:30.059360pt;}
.ws5_c01010{word-spacing:30.477280pt;}
.ws15_c01010{word-spacing:30.541040pt;}
.ws1f_c01010{word-spacing:30.859840pt;}
._0_c01010{margin-left:-36.151920pt;}
._b_c01010{margin-left:-32.963920pt;}
._3_c01010{margin-left:-31.880000pt;}
._5_c01010{margin-left:-30.286000pt;}
._e_c01010{margin-left:-29.329600pt;}
._f_c01010{margin-left:-27.296149pt;}
._9_c01010{margin-left:-24.292560pt;}
._10_c01010{margin-left:-20.120357pt;}
._8_c01010{margin-left:-6.949840pt;}
._c_c01010{margin-left:-4.782000pt;}
._2_c01010{margin-left:-3.188000pt;}
._d_c01010{margin-left:-1.785280pt;}
._a_c01010{width:1.785280pt;}
._6_c01010{width:3.188000pt;}
._7_c01010{width:4.107813pt;}
._4_c01010{width:22.571040pt;}
._1_c01010{width:829.394320pt;}
.fs2_c01010{font-size:37.194667pt;}
.fs1_c01010{font-size:42.506667pt;}
.fs3_c01010{font-size:53.136000pt;}
.fs0_c01010{font-size:63.760000pt;}
.y0_c01010{bottom:0.000000pt;}
.y26_c01010{bottom:87.880000pt;}
.y25_c01010{bottom:99.000000pt;}
.y24_c01010{bottom:103.820000pt;}
.y23_c01010{bottom:121.185333pt;}
.y22_c01010{bottom:144.645333pt;}
.y21_c01010{bottom:168.548000pt;}
.y20_c01010{bottom:192.452000pt;}
.y1f_c01010{bottom:232.332000pt;}
.y1e_c01010{bottom:256.234667pt;}
.y1d_c01010{bottom:280.137333pt;}
.y1c_c01010{bottom:304.041333pt;}
.y1b_c01010{bottom:327.944000pt;}
.y1a_c01010{bottom:351.846667pt;}
.y19_c01010{bottom:375.749333pt;}
.y18_c01010{bottom:399.652000pt;}
.y17_c01010{bottom:423.556000pt;}
.y16_c01010{bottom:447.458667pt;}
.y15_c01010{bottom:487.338667pt;}
.y14_c01010{bottom:511.241333pt;}
.y13_c01010{bottom:535.145333pt;}
.y12_c01010{bottom:575.025333pt;}
.y11_c01010{bottom:598.928000pt;}
.y10_c01010{bottom:622.830667pt;}
.yf_c01010{bottom:646.734667pt;}
.ye_c01010{bottom:670.637333pt;}
.yd_c01010{bottom:694.540000pt;}
.yc_c01010{bottom:718.442667pt;}
.yb_c01010{bottom:742.346667pt;}
.ya_c01010{bottom:766.249333pt;}
.y9_c01010{bottom:790.152000pt;}
.y8_c01010{bottom:814.054667pt;}
.y7_c01010{bottom:837.957333pt;}
.y6_c01010{bottom:861.861333pt;}
.y5_c01010{bottom:885.764000pt;}
.y4_c01010{bottom:909.666667pt;}
.y3_c01010{bottom:949.546667pt;}
.y2_c01010{bottom:973.450667pt;}
.y1_c01010{bottom:1032.964000pt;}
.h5_c01010{height:25.143595pt;}
.h6_c01010{height:34.001333pt;}
.h7_c01010{height:39.852000pt;}
.h2_c01010{height:47.820000pt;}
.h4_c01010{height:51.870507pt;}
.h3_c01010{height:51.875840pt;}
.h1_c01010{height:1123.333333pt;}
.h0_c01010{height:1123.653333pt;}
.w0_c01010{width:794.550667pt;}
.w1_c01010{width:794.666667pt;}
.x0_c01010{left:0.000000pt;}
.x1_c01010{left:113.385333pt;}
.x5_c01010{left:126.042667pt;}
.x3_c01010{left:142.078667pt;}
.x2_c01010{left:152.405333pt;}
.x6_c01010{left:169.952000pt;}
.x4_c01010{left:175.817333pt;}
}





/* 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_b6a1bd556f1fe6cabbf28667.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.001000;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_c01011;src:url('chunks/assets/font_6f035d68ef43e2be7f553ab5.woff2')format("woff");}.ff2_c01011{font-family:ff2_c01011;line-height:1.001000;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_c01011;src:url('chunks/assets/font_1aba9612d625694096c6c052.woff2')format("woff");}.ff3_c01011{font-family:ff3_c01011;line-height:1.001000;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_c01011;src:url('chunks/assets/font_e2d62ca0a8139e41a9bc4b4f.woff2')format("woff");}.ff4_c01011{font-family:ff4_c01011;line-height:0.697000;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_c01011;src:url('chunks/assets/font_0eb3ab6e6d0b7bde5eaa7790.woff2')format("woff");}.ff5_c01011{font-family:ff5_c01011;line-height:1.000000;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_c01011;src:url('chunks/assets/font_a0f1a96423b92a9649a6a981.woff2')format("woff");}.ff6_c01011{font-family:ff6_c01011;line-height:0.696000;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_c01011;src:url('chunks/assets/font_4cdc875d429f1e6f48237a63.woff2')format("woff");}.ff7_c01011{font-family:ff7_c01011;line-height:1.000000;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_c01011;src:url('chunks/assets/font_00080f49c99ee4604d5d9ab6.woff2')format("woff");}.ff8_c01011{font-family:ff8_c01011;line-height:1.000000;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);}
.v4_c01011{vertical-align:-21.690000px;}
.v0_c01011{vertical-align:0.000000px;}
.v3_c01011{vertical-align:5.982000px;}
.v5_c01011{vertical-align:15.108000px;}
.v2_c01011{vertical-align:21.756000px;}
.v1_c01011{vertical-align:26.028000px;}
.ls0_c01011{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01011{word-spacing:-0.071730px;}
.ws21_c01011{word-spacing:-0.059778px;}
.ws6_c01011{word-spacing:-0.047820px;}
.ws1d_c01011{word-spacing:-0.041844px;}
.ws25_c01011{word-spacing:0.000000px;}
.ws23_c01011{word-spacing:15.542280px;}
.ws1e_c01011{word-spacing:17.275842px;}
.ws24_c01011{word-spacing:17.395398px;}
.ws22_c01011{word-spacing:17.694288px;}
.wse_c01011{word-spacing:18.004230px;}
.wsc_c01011{word-spacing:18.864990px;}
.ws1f_c01011{word-spacing:18.949626px;}
.ws20_c01011{word-spacing:19.846296px;}
.ws5_c01011{word-spacing:22.164570px;}
.ws15_c01011{word-spacing:22.308030px;}
.ws8_c01011{word-spacing:23.312250px;}
.wsd_c01011{word-spacing:23.383980px;}
.ws7_c01011{word-spacing:23.599170px;}
.ws16_c01011{word-spacing:23.670900px;}
.ws1c_c01011{word-spacing:23.886090px;}
.ws10_c01011{word-spacing:24.818580px;}
.ws3_c01011{word-spacing:25.033770px;}
.ws11_c01011{word-spacing:25.105500px;}
.ws4_c01011{word-spacing:25.535880px;}
.ws13_c01011{word-spacing:26.253180px;}
.wsf_c01011{word-spacing:26.468370px;}
.ws0_c01011{word-spacing:26.827020px;}
.wsb_c01011{word-spacing:27.042210px;}
.ws1b_c01011{word-spacing:27.400860px;}
.ws17_c01011{word-spacing:27.902970px;}
.ws18_c01011{word-spacing:28.118160px;}
.ws14_c01011{word-spacing:28.835460px;}
.ws2_c01011{word-spacing:28.907190px;}
.ws12_c01011{word-spacing:31.088280px;}
.ws19_c01011{word-spacing:31.109100px;}
.ws1a_c01011{word-spacing:31.274280px;}
.ws9_c01011{word-spacing:32.450652px;}
.wsa_c01011{word-spacing:79.261650px;}
._0_c01011{margin-left:-40.670910px;}
._10_c01011{margin-left:-37.156140px;}
._f_c01011{margin-left:-35.219430px;}
._5_c01011{margin-left:-34.071750px;}
._1a_c01011{margin-left:-31.304118px;}
._19_c01011{margin-left:-29.889000px;}
._7_c01011{margin-left:-28.692000px;}
._14_c01011{margin-left:-27.616050px;}
._1b_c01011{margin-left:-22.453074px;}
._d_c01011{margin-left:-9.007170px;}
._6_c01011{margin-left:-7.173000px;}
._b_c01011{margin-left:-5.767092px;}
._e_c01011{margin-left:-4.734180px;}
._2_c01011{margin-left:-3.586500px;}
._4_c01011{margin-left:-1.936710px;}
._17_c01011{width:1.023900px;}
._9_c01011{width:2.080170px;}
._3_c01011{width:3.299580px;}
._8_c01011{width:4.723500px;}
._18_c01011{width:8.017368px;}
._13_c01011{width:10.759500px;}
._c_c01011{width:12.618534px;}
._15_c01011{width:26.324910px;}
._12_c01011{width:28.146852px;}
._16_c01011{width:29.194110px;}
._11_c01011{width:79.333380px;}
._a_c01011{width:95.200056px;}
._1_c01011{width:933.068610px;}
.fc0_c01011{color:rgb(0,0,0);}
.fs3_c01011{font-size:41.844000px;}
.fs1_c01011{font-size:47.820000px;}
.fs4_c01011{font-size:59.778000px;}
.fs0_c01011{font-size:71.730000px;}
.fs2_c01011{font-size:86.076000px;}
.y0_c01011{bottom:0.000000px;}
.y25_c01011{bottom:93.442500px;}
.y24_c01011{bottom:111.375000px;}
.y23_c01011{bottom:134.730000px;}
.y22_c01011{bottom:152.664000px;}
.y21_c01011{bottom:165.174000px;}
.y20_c01011{bottom:183.106500px;}
.y1f_c01011{bottom:188.529000px;}
.y1e_c01011{bottom:214.299000px;}
.y1d_c01011{bottom:241.189500px;}
.y1c_c01011{bottom:268.080000px;}
.y1b_c01011{bottom:294.970500px;}
.y1a_c01011{bottom:321.862500px;}
.y19_c01011{bottom:348.753000px;}
.y18_c01011{bottom:375.643500px;}
.y17_c01011{bottom:402.534000px;}
.y16_c01011{bottom:429.426000px;}
.y15_c01011{bottom:456.316500px;}
.y14_c01011{bottom:483.207000px;}
.y13_c01011{bottom:510.097500px;}
.y12_c01011{bottom:536.989500px;}
.y11_c01011{bottom:563.880000px;}
.y10_c01011{bottom:590.770500px;}
.yf_c01011{bottom:617.661000px;}
.ye_c01011{bottom:652.273500px;}
.yd_c01011{bottom:708.222000px;}
.yc_c01011{bottom:735.114000px;}
.yb_c01011{bottom:762.004500px;}
.ya_c01011{bottom:796.615500px;}
.y9_c01011{bottom:855.969000px;}
.y8_c01011{bottom:923.125500px;}
.y7_c01011{bottom:950.016000px;}
.y6_c01011{bottom:987.568500px;}
.y5_c01011{bottom:1014.459000px;}
.y4_c01011{bottom:1041.349500px;}
.y3_c01011{bottom:1068.240000px;}
.y2_c01011{bottom:1095.132000px;}
.y1_c01011{bottom:1162.084500px;}
.h9_c01011{height:28.286544px;}
.h7_c01011{height:38.251500px;}
.h8_c01011{height:44.833500px;}
.h2_c01011{height:53.797500px;}
.h3_c01011{height:58.354320px;}
.h6_c01011{height:59.779500px;}
.h5_c01011{height:64.557000px;}
.h4_c01011{height:86.313000px;}
.h1_c01011{height:1263.750000px;}
.h0_c01011{height:1264.110000px;}
.w0_c01011{width:893.869500px;}
.w1_c01011{width:894.000000px;}
.x0_c01011{left:0.000000px;}
.x1_c01011{left:127.558500px;}
.x8_c01011{left:135.840000px;}
.x4_c01011{left:159.838500px;}
.x2_c01011{left:171.456000px;}
.x3_c01011{left:197.794500px;}
.x6_c01011{left:287.673000px;}
.x9_c01011{left:293.745000px;}
.x5_c01011{left:320.244000px;}
.x7_c01011{left:369.285000px;}
@media print{
.v4_c01011{vertical-align:-19.280000pt;}
.v0_c01011{vertical-align:0.000000pt;}
.v3_c01011{vertical-align:5.317333pt;}
.v5_c01011{vertical-align:13.429333pt;}
.v2_c01011{vertical-align:19.338667pt;}
.v1_c01011{vertical-align:23.136000pt;}
.ls0_c01011{letter-spacing:0.000000pt;}
.ws1_c01011{word-spacing:-0.063760pt;}
.ws21_c01011{word-spacing:-0.053136pt;}
.ws6_c01011{word-spacing:-0.042507pt;}
.ws1d_c01011{word-spacing:-0.037195pt;}
.ws25_c01011{word-spacing:0.000000pt;}
.ws23_c01011{word-spacing:13.815360pt;}
.ws1e_c01011{word-spacing:15.356304pt;}
.ws24_c01011{word-spacing:15.462576pt;}
.ws22_c01011{word-spacing:15.728256pt;}
.wse_c01011{word-spacing:16.003760pt;}
.wsc_c01011{word-spacing:16.768880pt;}
.ws1f_c01011{word-spacing:16.844112pt;}
.ws20_c01011{word-spacing:17.641152pt;}
.ws5_c01011{word-spacing:19.701840pt;}
.ws15_c01011{word-spacing:19.829360pt;}
.ws8_c01011{word-spacing:20.722000pt;}
.wsd_c01011{word-spacing:20.785760pt;}
.ws7_c01011{word-spacing:20.977040pt;}
.ws16_c01011{word-spacing:21.040800pt;}
.ws1c_c01011{word-spacing:21.232080pt;}
.ws10_c01011{word-spacing:22.060960pt;}
.ws3_c01011{word-spacing:22.252240pt;}
.ws11_c01011{word-spacing:22.316000pt;}
.ws4_c01011{word-spacing:22.698560pt;}
.ws13_c01011{word-spacing:23.336160pt;}
.wsf_c01011{word-spacing:23.527440pt;}
.ws0_c01011{word-spacing:23.846240pt;}
.wsb_c01011{word-spacing:24.037520pt;}
.ws1b_c01011{word-spacing:24.356320pt;}
.ws17_c01011{word-spacing:24.802640pt;}
.ws18_c01011{word-spacing:24.993920pt;}
.ws14_c01011{word-spacing:25.631520pt;}
.ws2_c01011{word-spacing:25.695280pt;}
.ws12_c01011{word-spacing:27.634027pt;}
.ws19_c01011{word-spacing:27.652533pt;}
.ws1a_c01011{word-spacing:27.799360pt;}
.ws9_c01011{word-spacing:28.845024pt;}
.wsa_c01011{word-spacing:70.454800pt;}
._0_c01011{margin-left:-36.151920pt;}
._10_c01011{margin-left:-33.027680pt;}
._f_c01011{margin-left:-31.306160pt;}
._5_c01011{margin-left:-30.286000pt;}
._1a_c01011{margin-left:-27.825883pt;}
._19_c01011{margin-left:-26.568000pt;}
._7_c01011{margin-left:-25.504000pt;}
._14_c01011{margin-left:-24.547600pt;}
._1b_c01011{margin-left:-19.958288pt;}
._d_c01011{margin-left:-8.006373pt;}
._6_c01011{margin-left:-6.376000pt;}
._b_c01011{margin-left:-5.126304pt;}
._e_c01011{margin-left:-4.208160pt;}
._2_c01011{margin-left:-3.188000pt;}
._4_c01011{margin-left:-1.721520pt;}
._17_c01011{width:0.910133pt;}
._9_c01011{width:1.849040pt;}
._3_c01011{width:2.932960pt;}
._8_c01011{width:4.198667pt;}
._18_c01011{width:7.126549pt;}
._13_c01011{width:9.564000pt;}
._c_c01011{width:11.216475pt;}
._15_c01011{width:23.399920pt;}
._12_c01011{width:25.019424pt;}
._16_c01011{width:25.950320pt;}
._11_c01011{width:70.518560pt;}
._a_c01011{width:84.622272pt;}
._1_c01011{width:829.394320pt;}
.fs3_c01011{font-size:37.194667pt;}
.fs1_c01011{font-size:42.506667pt;}
.fs4_c01011{font-size:53.136000pt;}
.fs0_c01011{font-size:63.760000pt;}
.fs2_c01011{font-size:76.512000pt;}
.y0_c01011{bottom:0.000000pt;}
.y25_c01011{bottom:83.060000pt;}
.y24_c01011{bottom:99.000000pt;}
.y23_c01011{bottom:119.760000pt;}
.y22_c01011{bottom:135.701333pt;}
.y21_c01011{bottom:146.821333pt;}
.y20_c01011{bottom:162.761333pt;}
.y1f_c01011{bottom:167.581333pt;}
.y1e_c01011{bottom:190.488000pt;}
.y1d_c01011{bottom:214.390667pt;}
.y1c_c01011{bottom:238.293333pt;}
.y1b_c01011{bottom:262.196000pt;}
.y1a_c01011{bottom:286.100000pt;}
.y19_c01011{bottom:310.002667pt;}
.y18_c01011{bottom:333.905333pt;}
.y17_c01011{bottom:357.808000pt;}
.y16_c01011{bottom:381.712000pt;}
.y15_c01011{bottom:405.614667pt;}
.y14_c01011{bottom:429.517333pt;}
.y13_c01011{bottom:453.420000pt;}
.y12_c01011{bottom:477.324000pt;}
.y11_c01011{bottom:501.226667pt;}
.y10_c01011{bottom:525.129333pt;}
.yf_c01011{bottom:549.032000pt;}
.ye_c01011{bottom:579.798667pt;}
.yd_c01011{bottom:629.530667pt;}
.yc_c01011{bottom:653.434667pt;}
.yb_c01011{bottom:677.337333pt;}
.ya_c01011{bottom:708.102667pt;}
.y9_c01011{bottom:760.861333pt;}
.y8_c01011{bottom:820.556000pt;}
.y7_c01011{bottom:844.458667pt;}
.y6_c01011{bottom:877.838667pt;}
.y5_c01011{bottom:901.741333pt;}
.y4_c01011{bottom:925.644000pt;}
.y3_c01011{bottom:949.546667pt;}
.y2_c01011{bottom:973.450667pt;}
.y1_c01011{bottom:1032.964000pt;}
.h9_c01011{height:25.143595pt;}
.h7_c01011{height:34.001333pt;}
.h8_c01011{height:39.852000pt;}
.h2_c01011{height:47.820000pt;}
.h3_c01011{height:51.870507pt;}
.h6_c01011{height:53.137333pt;}
.h5_c01011{height:57.384000pt;}
.h4_c01011{height:76.722667pt;}
.h1_c01011{height:1123.333333pt;}
.h0_c01011{height:1123.653333pt;}
.w0_c01011{width:794.550667pt;}
.w1_c01011{width:794.666667pt;}
.x0_c01011{left:0.000000pt;}
.x1_c01011{left:113.385333pt;}
.x8_c01011{left:120.746667pt;}
.x4_c01011{left:142.078667pt;}
.x2_c01011{left:152.405333pt;}
.x3_c01011{left:175.817333pt;}
.x6_c01011{left:255.709333pt;}
.x9_c01011{left:261.106667pt;}
.x5_c01011{left:284.661333pt;}
.x7_c01011{left:328.253333pt;}
}





/* 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_04edc2ba81ef34edd7c5bf0b.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.001000;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_c9485164d85a5d346cf9e24e.woff2')format("woff");}.ff2_c01012{font-family:ff2_c01012;line-height:1.001000;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_c01012;src:url('chunks/assets/font_50bba0ca3b014fec7018dc88.woff2')format("woff");}.ff3_c01012{font-family:ff3_c01012;line-height:1.001000;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_c01012;src:url('chunks/assets/font_7eec9ce08252b037f4377903.woff2')format("woff");}.ff4_c01012{font-family:ff4_c01012;line-height:0.697000;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_c01012;src:url('chunks/assets/font_83c22b7d492f2ed452373b9a.woff2')format("woff");}.ff5_c01012{font-family:ff5_c01012;line-height:0.696000;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_c01012;src:url('chunks/assets/font_3036ba1de6345451c9ece48a.woff2')format("woff");}.ff6_c01012{font-family:ff6_c01012;line-height:1.000000;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_c01012;src:url('chunks/assets/font_53d0a657cef65ecabf67f6b6.woff2')format("woff");}.ff7_c01012{font-family:ff7_c01012;line-height:1.000000;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);}
.v2_c01012{vertical-align:-21.690000px;}
.v0_c01012{vertical-align:0.000000px;}
.v1_c01012{vertical-align:26.028000px;}
.ls1_c01012{letter-spacing:0.000000px;}
.ls0_c01012{letter-spacing:22.584300px;}
.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:-0.071730px;}
.wsf_c01012{word-spacing:-0.047820px;}
.ws22_c01012{word-spacing:-0.041844px;}
.ws27_c01012{word-spacing:0.000000px;}
.ws12_c01012{word-spacing:15.493680px;}
.ws13_c01012{word-spacing:17.860770px;}
.ws1c_c01012{word-spacing:19.080180px;}
.wsa_c01012{word-spacing:19.654020px;}
.ws23_c01012{word-spacing:19.846296px;}
.ws3_c01012{word-spacing:20.227860px;}
.ws26_c01012{word-spacing:21.280968px;}
.ws24_c01012{word-spacing:21.340746px;}
.ws6_c01012{word-spacing:21.375540px;}
.ws1f_c01012{word-spacing:21.877650px;}
.ws11_c01012{word-spacing:22.092840px;}
.wsb_c01012{word-spacing:22.164570px;}
.ws16_c01012{word-spacing:23.025330px;}
.ws25_c01012{word-spacing:23.193864px;}
.ws4_c01012{word-spacing:23.312250px;}
.ws2_c01012{word-spacing:23.670900px;}
.ws9_c01012{word-spacing:24.029550px;}
.ws19_c01012{word-spacing:24.316470px;}
.ws15_c01012{word-spacing:24.675120px;}
.wse_c01012{word-spacing:25.033770px;}
.ws10_c01012{word-spacing:26.037990px;}
.ws14_c01012{word-spacing:26.253180px;}
.ws21_c01012{word-spacing:26.468370px;}
.wsc_c01012{word-spacing:26.538510px;}
.ws18_c01012{word-spacing:26.611830px;}
.ws0_c01012{word-spacing:26.827020px;}
.ws1d_c01012{word-spacing:27.759510px;}
.ws17_c01012{word-spacing:27.902970px;}
.wsd_c01012{word-spacing:28.046430px;}
.ws1b_c01012{word-spacing:28.118160px;}
.ws5_c01012{word-spacing:28.620270px;}
.ws1e_c01012{word-spacing:28.835460px;}
.ws20_c01012{word-spacing:29.489100px;}
.ws8_c01012{word-spacing:31.632930px;}
.ws1a_c01012{word-spacing:32.063310px;}
.ws7_c01012{word-spacing:34.717320px;}
._0_c01012{margin-left:-40.670910px;}
._9_c01012{margin-left:-37.084410px;}
._6_c01012{margin-left:-35.147700px;}
._a_c01012{margin-left:-33.067530px;}
._11_c01012{margin-left:-30.054990px;}
._4_c01012{margin-left:-27.329130px;}
._3_c01012{margin-left:-7.818570px;}
._2_c01012{margin-left:-4.088610px;}
._10_c01012{margin-left:-3.084390px;}
._7_c01012{margin-left:-2.008440px;}
._5_c01012{width:1.793250px;}
._c_c01012{width:3.028740px;}
._b_c01012{width:4.440630px;}
._e_c01012{width:5.583750px;}
._8_c01012{width:22.021110px;}
._f_c01012{width:28.913850px;}
._d_c01012{width:30.037380px;}
._1_c01012{width:933.068610px;}
.fc0_c01012{color:rgb(0,0,0);}
.fs2_c01012{font-size:41.844000px;}
.fs1_c01012{font-size:47.820000px;}
.fs3_c01012{font-size:59.778000px;}
.fs0_c01012{font-size:71.730000px;}
.y0_c01012{bottom:0.000000px;}
.y28_c01012{bottom:100.288500px;}
.y27_c01012{bottom:112.797000px;}
.y26_c01012{bottom:136.153500px;}
.y25_c01012{bottom:154.086000px;}
.y24_c01012{bottom:180.843000px;}
.y23_c01012{bottom:207.733500px;}
.y22_c01012{bottom:234.624000px;}
.y21_c01012{bottom:261.514500px;}
.y20_c01012{bottom:288.406500px;}
.y1f_c01012{bottom:315.297000px;}
.y1e_c01012{bottom:342.187500px;}
.y1d_c01012{bottom:369.078000px;}
.y1c_c01012{bottom:395.970000px;}
.y1b_c01012{bottom:422.860500px;}
.y1a_c01012{bottom:449.751000px;}
.y19_c01012{bottom:476.641500px;}
.y18_c01012{bottom:503.533500px;}
.y17_c01012{bottom:530.424000px;}
.y16_c01012{bottom:557.314500px;}
.y15_c01012{bottom:584.205000px;}
.y14_c01012{bottom:611.095500px;}
.y13_c01012{bottom:637.987500px;}
.y12_c01012{bottom:664.878000px;}
.y11_c01012{bottom:691.768500px;}
.y10_c01012{bottom:718.659000px;}
.yf_c01012{bottom:745.551000px;}
.ye_c01012{bottom:772.441500px;}
.yd_c01012{bottom:799.332000px;}
.yc_c01012{bottom:826.222500px;}
.yb_c01012{bottom:853.114500px;}
.ya_c01012{bottom:880.005000px;}
.y9_c01012{bottom:906.895500px;}
.y8_c01012{bottom:933.786000px;}
.y7_c01012{bottom:960.678000px;}
.y6_c01012{bottom:987.568500px;}
.y5_c01012{bottom:1014.459000px;}
.y4_c01012{bottom:1041.349500px;}
.y3_c01012{bottom:1068.240000px;}
.y2_c01012{bottom:1095.132000px;}
.y1_c01012{bottom:1162.084500px;}
.h5_c01012{height:28.286544px;}
.h6_c01012{height:44.833500px;}
.h2_c01012{height:53.797500px;}
.h3_c01012{height:58.354320px;}
.h4_c01012{height:58.360320px;}
.h1_c01012{height:1263.750000px;}
.h0_c01012{height:1264.110000px;}
.w0_c01012{width:893.869500px;}
.w1_c01012{width:894.000000px;}
.x0_c01012{left:0.000000px;}
.x1_c01012{left:127.558500px;}
.x3_c01012{left:135.840000px;}
.x2_c01012{left:159.838500px;}
@media print{
.v2_c01012{vertical-align:-19.280000pt;}
.v0_c01012{vertical-align:0.000000pt;}
.v1_c01012{vertical-align:23.136000pt;}
.ls1_c01012{letter-spacing:0.000000pt;}
.ls0_c01012{letter-spacing:20.074933pt;}
.ws1_c01012{word-spacing:-0.063760pt;}
.wsf_c01012{word-spacing:-0.042507pt;}
.ws22_c01012{word-spacing:-0.037195pt;}
.ws27_c01012{word-spacing:0.000000pt;}
.ws12_c01012{word-spacing:13.772160pt;}
.ws13_c01012{word-spacing:15.876240pt;}
.ws1c_c01012{word-spacing:16.960160pt;}
.wsa_c01012{word-spacing:17.470240pt;}
.ws23_c01012{word-spacing:17.641152pt;}
.ws3_c01012{word-spacing:17.980320pt;}
.ws26_c01012{word-spacing:18.916416pt;}
.ws24_c01012{word-spacing:18.969552pt;}
.ws6_c01012{word-spacing:19.000480pt;}
.ws1f_c01012{word-spacing:19.446800pt;}
.ws11_c01012{word-spacing:19.638080pt;}
.wsb_c01012{word-spacing:19.701840pt;}
.ws16_c01012{word-spacing:20.466960pt;}
.ws25_c01012{word-spacing:20.616768pt;}
.ws4_c01012{word-spacing:20.722000pt;}
.ws2_c01012{word-spacing:21.040800pt;}
.ws9_c01012{word-spacing:21.359600pt;}
.ws19_c01012{word-spacing:21.614640pt;}
.ws15_c01012{word-spacing:21.933440pt;}
.wse_c01012{word-spacing:22.252240pt;}
.ws10_c01012{word-spacing:23.144880pt;}
.ws14_c01012{word-spacing:23.336160pt;}
.ws21_c01012{word-spacing:23.527440pt;}
.wsc_c01012{word-spacing:23.589787pt;}
.ws18_c01012{word-spacing:23.654960pt;}
.ws0_c01012{word-spacing:23.846240pt;}
.ws1d_c01012{word-spacing:24.675120pt;}
.ws17_c01012{word-spacing:24.802640pt;}
.wsd_c01012{word-spacing:24.930160pt;}
.ws1b_c01012{word-spacing:24.993920pt;}
.ws5_c01012{word-spacing:25.440240pt;}
.ws1e_c01012{word-spacing:25.631520pt;}
.ws20_c01012{word-spacing:26.212533pt;}
.ws8_c01012{word-spacing:28.118160pt;}
.ws1a_c01012{word-spacing:28.500720pt;}
.ws7_c01012{word-spacing:30.859840pt;}
._0_c01012{margin-left:-36.151920pt;}
._9_c01012{margin-left:-32.963920pt;}
._6_c01012{margin-left:-31.242400pt;}
._a_c01012{margin-left:-29.393360pt;}
._11_c01012{margin-left:-26.715547pt;}
._4_c01012{margin-left:-24.292560pt;}
._3_c01012{margin-left:-6.949840pt;}
._2_c01012{margin-left:-3.634320pt;}
._10_c01012{margin-left:-2.741680pt;}
._7_c01012{margin-left:-1.785280pt;}
._5_c01012{width:1.594000pt;}
._c_c01012{width:2.692213pt;}
._b_c01012{width:3.947227pt;}
._e_c01012{width:4.963333pt;}
._8_c01012{width:19.574320pt;}
._f_c01012{width:25.701200pt;}
._d_c01012{width:26.699893pt;}
._1_c01012{width:829.394320pt;}
.fs2_c01012{font-size:37.194667pt;}
.fs1_c01012{font-size:42.506667pt;}
.fs3_c01012{font-size:53.136000pt;}
.fs0_c01012{font-size:63.760000pt;}
.y0_c01012{bottom:0.000000pt;}
.y28_c01012{bottom:89.145333pt;}
.y27_c01012{bottom:100.264000pt;}
.y26_c01012{bottom:121.025333pt;}
.y25_c01012{bottom:136.965333pt;}
.y24_c01012{bottom:160.749333pt;}
.y23_c01012{bottom:184.652000pt;}
.y22_c01012{bottom:208.554667pt;}
.y21_c01012{bottom:232.457333pt;}
.y20_c01012{bottom:256.361333pt;}
.y1f_c01012{bottom:280.264000pt;}
.y1e_c01012{bottom:304.166667pt;}
.y1d_c01012{bottom:328.069333pt;}
.y1c_c01012{bottom:351.973333pt;}
.y1b_c01012{bottom:375.876000pt;}
.y1a_c01012{bottom:399.778667pt;}
.y19_c01012{bottom:423.681333pt;}
.y18_c01012{bottom:447.585333pt;}
.y17_c01012{bottom:471.488000pt;}
.y16_c01012{bottom:495.390667pt;}
.y15_c01012{bottom:519.293333pt;}
.y14_c01012{bottom:543.196000pt;}
.y13_c01012{bottom:567.100000pt;}
.y12_c01012{bottom:591.002667pt;}
.y11_c01012{bottom:614.905333pt;}
.y10_c01012{bottom:638.808000pt;}
.yf_c01012{bottom:662.712000pt;}
.ye_c01012{bottom:686.614667pt;}
.yd_c01012{bottom:710.517333pt;}
.yc_c01012{bottom:734.420000pt;}
.yb_c01012{bottom:758.324000pt;}
.ya_c01012{bottom:782.226667pt;}
.y9_c01012{bottom:806.129333pt;}
.y8_c01012{bottom:830.032000pt;}
.y7_c01012{bottom:853.936000pt;}
.y6_c01012{bottom:877.838667pt;}
.y5_c01012{bottom:901.741333pt;}
.y4_c01012{bottom:925.644000pt;}
.y3_c01012{bottom:949.546667pt;}
.y2_c01012{bottom:973.450667pt;}
.y1_c01012{bottom:1032.964000pt;}
.h5_c01012{height:25.143595pt;}
.h6_c01012{height:39.852000pt;}
.h2_c01012{height:47.820000pt;}
.h3_c01012{height:51.870507pt;}
.h4_c01012{height:51.875840pt;}
.h1_c01012{height:1123.333333pt;}
.h0_c01012{height:1123.653333pt;}
.w0_c01012{width:794.550667pt;}
.w1_c01012{width:794.666667pt;}
.x0_c01012{left:0.000000pt;}
.x1_c01012{left:113.385333pt;}
.x3_c01012{left:120.746667pt;}
.x2_c01012{left:142.078667pt;}
}





/* 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_5761ec09df77bf02ed5167d6.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.001000;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_fa8712e7c9800cc18abd70c6.woff2')format("woff");}.ff2_c01013{font-family:ff2_c01013;line-height:1.001000;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_c01013;src:url('chunks/assets/font_450abdc64ee4994f01899885.woff2')format("woff");}.ff3_c01013{font-family:ff3_c01013;line-height:1.001000;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_c01013;src:url('chunks/assets/font_909bfc15f7e48ccbd90a7654.woff2')format("woff");}.ff4_c01013{font-family:ff4_c01013;line-height:0.697000;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_c01013;src:url('chunks/assets/font_2b99849074f426968bbf8ac2.woff2')format("woff");}.ff5_c01013{font-family:ff5_c01013;line-height:0.696000;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_c01013;src:url('chunks/assets/font_2597aa46c95738fa5caab7a5.woff2')format("woff");}.ff6_c01013{font-family:ff6_c01013;line-height:1.000000;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_c01013;src:url('chunks/assets/font_13594ee2f61205af4194e146.woff2')format("woff");}.ff7_c01013{font-family:ff7_c01013;line-height:1.000000;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);}
.v2_c01013{vertical-align:-21.690000px;}
.v0_c01013{vertical-align:0.000000px;}
.v1_c01013{vertical-align:26.034000px;}
.ls0_c01013{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws18_c01013{word-spacing:-0.047820px;}
.ws23_c01013{word-spacing:-0.041844px;}
.ws26_c01013{word-spacing:0.000000px;}
.ws22_c01013{word-spacing:15.708870px;}
.ws1c_c01013{word-spacing:16.784820px;}
.ws1a_c01013{word-spacing:17.717310px;}
.wsf_c01013{word-spacing:18.649800px;}
.ws6_c01013{word-spacing:19.008450px;}
.ws4_c01013{word-spacing:19.295370px;}
.ws25_c01013{word-spacing:19.846296px;}
.ws16_c01013{word-spacing:20.084400px;}
.ws1b_c01013{word-spacing:20.156130px;}
.ws3_c01013{word-spacing:20.586510px;}
.ws24_c01013{word-spacing:21.280968px;}
.ws5_c01013{word-spacing:21.447270px;}
.ws10_c01013{word-spacing:21.662460px;}
.ws1e_c01013{word-spacing:21.805920px;}
.wse_c01013{word-spacing:21.877650px;}
.wsc_c01013{word-spacing:21.882330px;}
.ws20_c01013{word-spacing:22.666680px;}
.ws21_c01013{word-spacing:22.738410px;}
.ws2_c01013{word-spacing:23.312250px;}
.ws11_c01013{word-spacing:23.383980px;}
.wsd_c01013{word-spacing:23.670900px;}
.ws14_c01013{word-spacing:23.886090px;}
.ws17_c01013{word-spacing:24.101280px;}
.ws13_c01013{word-spacing:24.173010px;}
.ws15_c01013{word-spacing:25.033770px;}
.ws12_c01013{word-spacing:25.464150px;}
.ws1f_c01013{word-spacing:25.751070px;}
.ws7_c01013{word-spacing:26.683560px;}
.ws1d_c01013{word-spacing:26.755290px;}
.ws0_c01013{word-spacing:26.827020px;}
.ws9_c01013{word-spacing:28.118160px;}
.wsa_c01013{word-spacing:29.265840px;}
.wsb_c01013{word-spacing:30.413520px;}
.ws19_c01013{word-spacing:30.843900px;}
.ws8_c01013{word-spacing:32.065020px;}
._0_c01013{margin-left:-40.670910px;}
._a_c01013{margin-left:-37.012680px;}
._2_c01013{margin-left:-35.147700px;}
._5_c01013{margin-left:-33.784830px;}
._c_c01013{margin-left:-32.708880px;}
._8_c01013{margin-left:-28.692000px;}
._10_c01013{margin-left:-27.403560px;}
._7_c01013{margin-left:-7.170300px;}
._15_c01013{margin-left:-5.594940px;}
._b_c01013{margin-left:-3.801690px;}
._3_c01013{margin-left:-1.864980px;}
._4_c01013{width:1.864980px;}
._13_c01013{width:3.873420px;}
._9_c01013{width:5.361930px;}
._11_c01013{width:10.759500px;}
._6_c01013{width:17.215200px;}
._f_c01013{width:19.869210px;}
._14_c01013{width:21.877650px;}
._12_c01013{width:26.540100px;}
._e_c01013{width:28.097040px;}
._d_c01013{width:31.486770px;}
._1_c01013{width:933.068610px;}
.fc0_c01013{color:rgb(0,0,0);}
.fs2_c01013{font-size:41.844000px;}
.fs1_c01013{font-size:47.820000px;}
.fs3_c01013{font-size:59.778000px;}
.fs0_c01013{font-size:71.730000px;}
.y0_c01013{bottom:0.000000px;}
.y26_c01013{bottom:98.865000px;}
.y25_c01013{bottom:121.353000px;}
.y24_c01013{bottom:148.243500px;}
.y23_c01013{bottom:175.134000px;}
.y22_c01013{bottom:202.024500px;}
.y21_c01013{bottom:228.916500px;}
.y20_c01013{bottom:255.807000px;}
.y1f_c01013{bottom:282.697500px;}
.y1e_c01013{bottom:309.588000px;}
.y1d_c01013{bottom:336.480000px;}
.y1c_c01013{bottom:363.370500px;}
.y1b_c01013{bottom:390.261000px;}
.y1a_c01013{bottom:417.151500px;}
.y19_c01013{bottom:444.043500px;}
.y18_c01013{bottom:487.233000px;}
.y17_c01013{bottom:514.123500px;}
.y16_c01013{bottom:541.015500px;}
.y15_c01013{bottom:567.906000px;}
.y14_c01013{bottom:594.796500px;}
.y13_c01013{bottom:621.687000px;}
.y12_c01013{bottom:648.579000px;}
.y11_c01013{bottom:675.469500px;}
.y10_c01013{bottom:718.659000px;}
.yf_c01013{bottom:745.551000px;}
.ye_c01013{bottom:772.441500px;}
.yd_c01013{bottom:799.332000px;}
.yc_c01013{bottom:826.222500px;}
.yb_c01013{bottom:853.114500px;}
.ya_c01013{bottom:880.005000px;}
.y9_c01013{bottom:906.895500px;}
.y8_c01013{bottom:933.786000px;}
.y7_c01013{bottom:960.678000px;}
.y6_c01013{bottom:987.568500px;}
.y5_c01013{bottom:1014.459000px;}
.y4_c01013{bottom:1041.349500px;}
.y3_c01013{bottom:1068.240000px;}
.y2_c01013{bottom:1095.132000px;}
.y1_c01013{bottom:1162.084500px;}
.h4_c01013{height:28.286544px;}
.h2_c01013{height:53.797500px;}
.h3_c01013{height:58.360320px;}
.h1_c01013{height:1263.750000px;}
.h0_c01013{height:1264.110000px;}
.w0_c01013{width:893.869500px;}
.w1_c01013{width:894.000000px;}
.x0_c01013{left:0.000000px;}
.x1_c01013{left:127.558500px;}
.x5_c01013{left:135.840000px;}
.x2_c01013{left:159.838500px;}
.x4_c01013{left:171.456000px;}
.x3_c01013{left:197.794500px;}
@media print{
.v2_c01013{vertical-align:-19.280000pt;}
.v0_c01013{vertical-align:0.000000pt;}
.v1_c01013{vertical-align:23.141333pt;}
.ls0_c01013{letter-spacing:0.000000pt;}
.ws1_c01013{word-spacing:-0.063760pt;}
.ws18_c01013{word-spacing:-0.042507pt;}
.ws23_c01013{word-spacing:-0.037195pt;}
.ws26_c01013{word-spacing:0.000000pt;}
.ws22_c01013{word-spacing:13.963440pt;}
.ws1c_c01013{word-spacing:14.919840pt;}
.ws1a_c01013{word-spacing:15.748720pt;}
.wsf_c01013{word-spacing:16.577600pt;}
.ws6_c01013{word-spacing:16.896400pt;}
.ws4_c01013{word-spacing:17.151440pt;}
.ws25_c01013{word-spacing:17.641152pt;}
.ws16_c01013{word-spacing:17.852800pt;}
.ws1b_c01013{word-spacing:17.916560pt;}
.ws3_c01013{word-spacing:18.299120pt;}
.ws24_c01013{word-spacing:18.916416pt;}
.ws5_c01013{word-spacing:19.064240pt;}
.ws10_c01013{word-spacing:19.255520pt;}
.ws1e_c01013{word-spacing:19.383040pt;}
.wse_c01013{word-spacing:19.446800pt;}
.wsc_c01013{word-spacing:19.450960pt;}
.ws20_c01013{word-spacing:20.148160pt;}
.ws21_c01013{word-spacing:20.211920pt;}
.ws2_c01013{word-spacing:20.722000pt;}
.ws11_c01013{word-spacing:20.785760pt;}
.wsd_c01013{word-spacing:21.040800pt;}
.ws14_c01013{word-spacing:21.232080pt;}
.ws17_c01013{word-spacing:21.423360pt;}
.ws13_c01013{word-spacing:21.487120pt;}
.ws15_c01013{word-spacing:22.252240pt;}
.ws12_c01013{word-spacing:22.634800pt;}
.ws1f_c01013{word-spacing:22.889840pt;}
.ws7_c01013{word-spacing:23.718720pt;}
.ws1d_c01013{word-spacing:23.782480pt;}
.ws0_c01013{word-spacing:23.846240pt;}
.ws9_c01013{word-spacing:24.993920pt;}
.wsa_c01013{word-spacing:26.014080pt;}
.wsb_c01013{word-spacing:27.034240pt;}
.ws19_c01013{word-spacing:27.416800pt;}
.ws8_c01013{word-spacing:28.502240pt;}
._0_c01013{margin-left:-36.151920pt;}
._a_c01013{margin-left:-32.900160pt;}
._2_c01013{margin-left:-31.242400pt;}
._5_c01013{margin-left:-30.030960pt;}
._c_c01013{margin-left:-29.074560pt;}
._8_c01013{margin-left:-25.504000pt;}
._10_c01013{margin-left:-24.358720pt;}
._7_c01013{margin-left:-6.373600pt;}
._15_c01013{margin-left:-4.973280pt;}
._b_c01013{margin-left:-3.379280pt;}
._3_c01013{margin-left:-1.657760pt;}
._4_c01013{width:1.657760pt;}
._13_c01013{width:3.443040pt;}
._9_c01013{width:4.766160pt;}
._11_c01013{width:9.564000pt;}
._6_c01013{width:15.302400pt;}
._f_c01013{width:17.661520pt;}
._14_c01013{width:19.446800pt;}
._12_c01013{width:23.591200pt;}
._e_c01013{width:24.975147pt;}
._d_c01013{width:27.988240pt;}
._1_c01013{width:829.394320pt;}
.fs2_c01013{font-size:37.194667pt;}
.fs1_c01013{font-size:42.506667pt;}
.fs3_c01013{font-size:53.136000pt;}
.fs0_c01013{font-size:63.760000pt;}
.y0_c01013{bottom:0.000000pt;}
.y26_c01013{bottom:87.880000pt;}
.y25_c01013{bottom:107.869333pt;}
.y24_c01013{bottom:131.772000pt;}
.y23_c01013{bottom:155.674667pt;}
.y22_c01013{bottom:179.577333pt;}
.y21_c01013{bottom:203.481333pt;}
.y20_c01013{bottom:227.384000pt;}
.y1f_c01013{bottom:251.286667pt;}
.y1e_c01013{bottom:275.189333pt;}
.y1d_c01013{bottom:299.093333pt;}
.y1c_c01013{bottom:322.996000pt;}
.y1b_c01013{bottom:346.898667pt;}
.y1a_c01013{bottom:370.801333pt;}
.y19_c01013{bottom:394.705333pt;}
.y18_c01013{bottom:433.096000pt;}
.y17_c01013{bottom:456.998667pt;}
.y16_c01013{bottom:480.902667pt;}
.y15_c01013{bottom:504.805333pt;}
.y14_c01013{bottom:528.708000pt;}
.y13_c01013{bottom:552.610667pt;}
.y12_c01013{bottom:576.514667pt;}
.y11_c01013{bottom:600.417333pt;}
.y10_c01013{bottom:638.808000pt;}
.yf_c01013{bottom:662.712000pt;}
.ye_c01013{bottom:686.614667pt;}
.yd_c01013{bottom:710.517333pt;}
.yc_c01013{bottom:734.420000pt;}
.yb_c01013{bottom:758.324000pt;}
.ya_c01013{bottom:782.226667pt;}
.y9_c01013{bottom:806.129333pt;}
.y8_c01013{bottom:830.032000pt;}
.y7_c01013{bottom:853.936000pt;}
.y6_c01013{bottom:877.838667pt;}
.y5_c01013{bottom:901.741333pt;}
.y4_c01013{bottom:925.644000pt;}
.y3_c01013{bottom:949.546667pt;}
.y2_c01013{bottom:973.450667pt;}
.y1_c01013{bottom:1032.964000pt;}
.h4_c01013{height:25.143595pt;}
.h2_c01013{height:47.820000pt;}
.h3_c01013{height:51.875840pt;}
.h1_c01013{height:1123.333333pt;}
.h0_c01013{height:1123.653333pt;}
.w0_c01013{width:794.550667pt;}
.w1_c01013{width:794.666667pt;}
.x0_c01013{left:0.000000pt;}
.x1_c01013{left:113.385333pt;}
.x5_c01013{left:120.746667pt;}
.x2_c01013{left:142.078667pt;}
.x4_c01013{left:152.405333pt;}
.x3_c01013{left:175.817333pt;}
}





/* 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_01d6dbcc99ee042cea26f4c0.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.001000;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_c01014;src:url('chunks/assets/font_1ba3b9c827dc51b7e9710f83.woff2')format("woff");}.ff2_c01014{font-family:ff2_c01014;line-height:1.001000;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_c01014;src:url('chunks/assets/font_38552568a20db0114840891d.woff2')format("woff");}.ff3_c01014{font-family:ff3_c01014;line-height:1.001000;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_c01014;src:url('chunks/assets/font_7930a935b8b8443f75dd08dc.woff2')format("woff");}.ff4_c01014{font-family:ff4_c01014;line-height:0.697000;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_c01014;src:url('chunks/assets/font_c7e4abd762f480ba128c4503.woff2')format("woff");}.ff5_c01014{font-family:ff5_c01014;line-height:0.696000;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_c01014;src:url('chunks/assets/font_e082b904f4c7ae48d2643646.woff2')format("woff");}.ff6_c01014{font-family:ff6_c01014;line-height:1.000000;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_c01014;src:url('chunks/assets/font_d894528f49bd298c760946c4.woff2')format("woff");}.ff7_c01014{font-family:ff7_c01014;line-height:1.000000;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);}
.v2_c01014{vertical-align:-21.696000px;}
.v0_c01014{vertical-align:0.000000px;}
.v3_c01014{vertical-align:15.108000px;}
.v1_c01014{vertical-align:26.034000px;}
.ls6_c01014{letter-spacing:0.000000px;}
.ls5_c01014{letter-spacing:8.298750px;}
.ls3_c01014{letter-spacing:22.153440px;}
.ls4_c01014{letter-spacing:25.369440px;}
.ls1_c01014{letter-spacing:31.926300px;}
.ls0_c01014{letter-spacing:31.945590px;}
.ls2_c01014{letter-spacing:31.957440px;}
.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;}
}
.ws1_c01014{word-spacing:-0.071730px;}
.ws29_c01014{word-spacing:-0.059778px;}
.ws9_c01014{word-spacing:-0.047820px;}
.ws28_c01014{word-spacing:-0.041844px;}
.ws2d_c01014{word-spacing:0.000000px;}
.ws19_c01014{word-spacing:15.708870px;}
.ws21_c01014{word-spacing:18.291150px;}
.ws20_c01014{word-spacing:18.362880px;}
.ws22_c01014{word-spacing:19.725750px;}
.ws2b_c01014{word-spacing:19.846296px;}
.ws1b_c01014{word-spacing:19.978980px;}
.ws1c_c01014{word-spacing:20.012670px;}
.ws12_c01014{word-spacing:21.232080px;}
.ws2c_c01014{word-spacing:21.280968px;}
.ws2_c01014{word-spacing:21.303810px;}
.ws2a_c01014{word-spacing:21.340746px;}
.wsd_c01014{word-spacing:21.949380px;}
.ws1d_c01014{word-spacing:22.021110px;}
.ws25_c01014{word-spacing:22.092840px;}
.ws18_c01014{word-spacing:22.738410px;}
.wsa_c01014{word-spacing:23.168790px;}
.wsc_c01014{word-spacing:23.312250px;}
.ws26_c01014{word-spacing:23.886090px;}
.ws8_c01014{word-spacing:25.033770px;}
.ws27_c01014{word-spacing:25.320690px;}
.ws10_c01014{word-spacing:25.679340px;}
.ws5_c01014{word-spacing:26.324910px;}
.ws13_c01014{word-spacing:26.396640px;}
.ws23_c01014{word-spacing:26.611830px;}
.ws1a_c01014{word-spacing:26.755290px;}
.ws0_c01014{word-spacing:26.827020px;}
.wse_c01014{word-spacing:27.185670px;}
.ws4_c01014{word-spacing:27.257400px;}
.ws11_c01014{word-spacing:27.313020px;}
.ws6_c01014{word-spacing:27.472590px;}
.ws7_c01014{word-spacing:28.476810px;}
.ws1f_c01014{word-spacing:28.548540px;}
.wsf_c01014{word-spacing:28.620270px;}
.ws3_c01014{word-spacing:28.978920px;}
.ws1e_c01014{word-spacing:29.839680px;}
.ws16_c01014{word-spacing:32.278500px;}
.ws15_c01014{word-spacing:32.327160px;}
.ws14_c01014{word-spacing:32.852340px;}
.ws17_c01014{word-spacing:33.139260px;}
.wsb_c01014{word-spacing:33.210990px;}
.ws24_c01014{word-spacing:33.282720px;}
._0_c01014{margin-left:-40.670910px;}
._11_c01014{margin-left:-37.371330px;}
._3_c01014{margin-left:-36.223650px;}
._b_c01014{margin-left:-35.075970px;}
._10_c01014{margin-left:-33.210990px;}
._16_c01014{margin-left:-30.802080px;}
._17_c01014{margin-left:-29.709396px;}
._5_c01014{margin-left:-28.692000px;}
._c_c01014{margin-left:-27.687780px;}
._13_c01014{margin-left:-26.540100px;}
._15_c01014{margin-left:-22.253988px;}
._f_c01014{margin-left:-8.392410px;}
._4_c01014{margin-left:-7.244730px;}
._a_c01014{margin-left:-5.236290px;}
._2_c01014{margin-left:-3.514770px;}
._9_c01014{margin-left:-2.008440px;}
._7_c01014{width:1.506330px;}
._d_c01014{width:2.654010px;}
._6_c01014{width:3.658230px;}
._8_c01014{width:4.676520px;}
._14_c01014{width:25.607610px;}
._12_c01014{width:33.039180px;}
._e_c01014{width:37.323210px;}
._1_c01014{width:933.068610px;}
.fc0_c01014{color:rgb(0,0,0);}
.fs2_c01014{font-size:41.844000px;}
.fs1_c01014{font-size:47.820000px;}
.fs3_c01014{font-size:59.778000px;}
.fs0_c01014{font-size:71.730000px;}
.y0_c01014{bottom:0.000000px;}
.y28_c01014{bottom:93.442500px;}
.y27_c01014{bottom:98.865000px;}
.y26_c01014{bottom:118.401000px;}
.y25_c01014{bottom:136.333500px;}
.y24_c01014{bottom:163.551000px;}
.y23_c01014{bottom:190.443000px;}
.y22_c01014{bottom:217.333500px;}
.y21_c01014{bottom:244.224000px;}
.y20_c01014{bottom:271.114500px;}
.y1f_c01014{bottom:298.006500px;}
.y1e_c01014{bottom:324.897000px;}
.y1d_c01014{bottom:351.787500px;}
.y1c_c01014{bottom:378.678000px;}
.y1b_c01014{bottom:405.570000px;}
.y1a_c01014{bottom:432.460500px;}
.y19_c01014{bottom:459.351000px;}
.y18_c01014{bottom:486.241500px;}
.y17_c01014{bottom:513.132000px;}
.y16_c01014{bottom:540.024000px;}
.y15_c01014{bottom:566.914500px;}
.y14_c01014{bottom:593.805000px;}
.y13_c01014{bottom:620.695500px;}
.y12_c01014{bottom:647.587500px;}
.y11_c01014{bottom:674.478000px;}
.y10_c01014{bottom:701.368500px;}
.yf_c01014{bottom:728.259000px;}
.ye_c01014{bottom:755.151000px;}
.yd_c01014{bottom:782.041500px;}
.yc_c01014{bottom:808.932000px;}
.yb_c01014{bottom:835.822500px;}
.ya_c01014{bottom:862.714500px;}
.y9_c01014{bottom:889.605000px;}
.y8_c01014{bottom:933.786000px;}
.y7_c01014{bottom:960.678000px;}
.y6_c01014{bottom:987.568500px;}
.y5_c01014{bottom:1014.459000px;}
.y4_c01014{bottom:1041.349500px;}
.y3_c01014{bottom:1068.240000px;}
.y2_c01014{bottom:1095.132000px;}
.y1_c01014{bottom:1162.084500px;}
.h5_c01014{height:28.286544px;}
.h6_c01014{height:38.251500px;}
.h7_c01014{height:44.833500px;}
.h2_c01014{height:53.797500px;}
.h4_c01014{height:58.354320px;}
.h3_c01014{height:58.360320px;}
.h1_c01014{height:1263.750000px;}
.h0_c01014{height:1264.110000px;}
.w0_c01014{width:893.869500px;}
.w1_c01014{width:894.000000px;}
.x0_c01014{left:0.000000px;}
.x1_c01014{left:127.558500px;}
.x5_c01014{left:135.840000px;}
.x4_c01014{left:159.838500px;}
.x6_c01014{left:163.798500px;}
.x3_c01014{left:171.456000px;}
.x2_c01014{left:197.794500px;}
@media print{
.v2_c01014{vertical-align:-19.285333pt;}
.v0_c01014{vertical-align:0.000000pt;}
.v3_c01014{vertical-align:13.429333pt;}
.v1_c01014{vertical-align:23.141333pt;}
.ls6_c01014{letter-spacing:0.000000pt;}
.ls5_c01014{letter-spacing:7.376667pt;}
.ls3_c01014{letter-spacing:19.691947pt;}
.ls4_c01014{letter-spacing:22.550613pt;}
.ls1_c01014{letter-spacing:28.378933pt;}
.ls0_c01014{letter-spacing:28.396080pt;}
.ls2_c01014{letter-spacing:28.406613pt;}
.ws1_c01014{word-spacing:-0.063760pt;}
.ws29_c01014{word-spacing:-0.053136pt;}
.ws9_c01014{word-spacing:-0.042507pt;}
.ws28_c01014{word-spacing:-0.037195pt;}
.ws2d_c01014{word-spacing:0.000000pt;}
.ws19_c01014{word-spacing:13.963440pt;}
.ws21_c01014{word-spacing:16.258800pt;}
.ws20_c01014{word-spacing:16.322560pt;}
.ws22_c01014{word-spacing:17.534000pt;}
.ws2b_c01014{word-spacing:17.641152pt;}
.ws1b_c01014{word-spacing:17.759093pt;}
.ws1c_c01014{word-spacing:17.789040pt;}
.ws12_c01014{word-spacing:18.872960pt;}
.ws2c_c01014{word-spacing:18.916416pt;}
.ws2_c01014{word-spacing:18.936720pt;}
.ws2a_c01014{word-spacing:18.969552pt;}
.wsd_c01014{word-spacing:19.510560pt;}
.ws1d_c01014{word-spacing:19.574320pt;}
.ws25_c01014{word-spacing:19.638080pt;}
.ws18_c01014{word-spacing:20.211920pt;}
.wsa_c01014{word-spacing:20.594480pt;}
.wsc_c01014{word-spacing:20.722000pt;}
.ws26_c01014{word-spacing:21.232080pt;}
.ws8_c01014{word-spacing:22.252240pt;}
.ws27_c01014{word-spacing:22.507280pt;}
.ws10_c01014{word-spacing:22.826080pt;}
.ws5_c01014{word-spacing:23.399920pt;}
.ws13_c01014{word-spacing:23.463680pt;}
.ws23_c01014{word-spacing:23.654960pt;}
.ws1a_c01014{word-spacing:23.782480pt;}
.ws0_c01014{word-spacing:23.846240pt;}
.wse_c01014{word-spacing:24.165040pt;}
.ws4_c01014{word-spacing:24.228800pt;}
.ws11_c01014{word-spacing:24.278240pt;}
.ws6_c01014{word-spacing:24.420080pt;}
.ws7_c01014{word-spacing:25.312720pt;}
.ws1f_c01014{word-spacing:25.376480pt;}
.wsf_c01014{word-spacing:25.440240pt;}
.ws3_c01014{word-spacing:25.759040pt;}
.ws1e_c01014{word-spacing:26.524160pt;}
.ws16_c01014{word-spacing:28.692000pt;}
.ws15_c01014{word-spacing:28.735253pt;}
.ws14_c01014{word-spacing:29.202080pt;}
.ws17_c01014{word-spacing:29.457120pt;}
.wsb_c01014{word-spacing:29.520880pt;}
.ws24_c01014{word-spacing:29.584640pt;}
._0_c01014{margin-left:-36.151920pt;}
._11_c01014{margin-left:-33.218960pt;}
._3_c01014{margin-left:-32.198800pt;}
._b_c01014{margin-left:-31.178640pt;}
._10_c01014{margin-left:-29.520880pt;}
._16_c01014{margin-left:-27.379627pt;}
._17_c01014{margin-left:-26.408352pt;}
._5_c01014{margin-left:-25.504000pt;}
._c_c01014{margin-left:-24.611360pt;}
._13_c01014{margin-left:-23.591200pt;}
._15_c01014{margin-left:-19.781323pt;}
._f_c01014{margin-left:-7.459920pt;}
._4_c01014{margin-left:-6.439760pt;}
._a_c01014{margin-left:-4.654480pt;}
._2_c01014{margin-left:-3.124240pt;}
._9_c01014{margin-left:-1.785280pt;}
._7_c01014{width:1.338960pt;}
._d_c01014{width:2.359120pt;}
._6_c01014{width:3.251760pt;}
._8_c01014{width:4.156907pt;}
._14_c01014{width:22.762320pt;}
._12_c01014{width:29.368160pt;}
._e_c01014{width:33.176187pt;}
._1_c01014{width:829.394320pt;}
.fs2_c01014{font-size:37.194667pt;}
.fs1_c01014{font-size:42.506667pt;}
.fs3_c01014{font-size:53.136000pt;}
.fs0_c01014{font-size:63.760000pt;}
.y0_c01014{bottom:0.000000pt;}
.y28_c01014{bottom:83.060000pt;}
.y27_c01014{bottom:87.880000pt;}
.y26_c01014{bottom:105.245333pt;}
.y25_c01014{bottom:121.185333pt;}
.y24_c01014{bottom:145.378667pt;}
.y23_c01014{bottom:169.282667pt;}
.y22_c01014{bottom:193.185333pt;}
.y21_c01014{bottom:217.088000pt;}
.y20_c01014{bottom:240.990667pt;}
.y1f_c01014{bottom:264.894667pt;}
.y1e_c01014{bottom:288.797333pt;}
.y1d_c01014{bottom:312.700000pt;}
.y1c_c01014{bottom:336.602667pt;}
.y1b_c01014{bottom:360.506667pt;}
.y1a_c01014{bottom:384.409333pt;}
.y19_c01014{bottom:408.312000pt;}
.y18_c01014{bottom:432.214667pt;}
.y17_c01014{bottom:456.117333pt;}
.y16_c01014{bottom:480.021333pt;}
.y15_c01014{bottom:503.924000pt;}
.y14_c01014{bottom:527.826667pt;}
.y13_c01014{bottom:551.729333pt;}
.y12_c01014{bottom:575.633333pt;}
.y11_c01014{bottom:599.536000pt;}
.y10_c01014{bottom:623.438667pt;}
.yf_c01014{bottom:647.341333pt;}
.ye_c01014{bottom:671.245333pt;}
.yd_c01014{bottom:695.148000pt;}
.yc_c01014{bottom:719.050667pt;}
.yb_c01014{bottom:742.953333pt;}
.ya_c01014{bottom:766.857333pt;}
.y9_c01014{bottom:790.760000pt;}
.y8_c01014{bottom:830.032000pt;}
.y7_c01014{bottom:853.936000pt;}
.y6_c01014{bottom:877.838667pt;}
.y5_c01014{bottom:901.741333pt;}
.y4_c01014{bottom:925.644000pt;}
.y3_c01014{bottom:949.546667pt;}
.y2_c01014{bottom:973.450667pt;}
.y1_c01014{bottom:1032.964000pt;}
.h5_c01014{height:25.143595pt;}
.h6_c01014{height:34.001333pt;}
.h7_c01014{height:39.852000pt;}
.h2_c01014{height:47.820000pt;}
.h4_c01014{height:51.870507pt;}
.h3_c01014{height:51.875840pt;}
.h1_c01014{height:1123.333333pt;}
.h0_c01014{height:1123.653333pt;}
.w0_c01014{width:794.550667pt;}
.w1_c01014{width:794.666667pt;}
.x0_c01014{left:0.000000pt;}
.x1_c01014{left:113.385333pt;}
.x5_c01014{left:120.746667pt;}
.x4_c01014{left:142.078667pt;}
.x6_c01014{left:145.598667pt;}
.x3_c01014{left:152.405333pt;}
.x2_c01014{left:175.817333pt;}
}





/* 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_25b5eedcc0ebf47a877650fa.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.001000;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_c01015;src:url('chunks/assets/font_f05d98b3118ceae5fadb63c3.woff2')format("woff");}.ff2_c01015{font-family:ff2_c01015;line-height:1.001000;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_c01015;src:url('chunks/assets/font_0f69de06007fe730193c1a0b.woff2')format("woff");}.ff3_c01015{font-family:ff3_c01015;line-height:1.001000;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_c01015;src:url('chunks/assets/font_8edf4b7c1b23b8564c281315.woff2')format("woff");}.ff4_c01015{font-family:ff4_c01015;line-height:0.697000;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_c01015;src:url('chunks/assets/font_2b00526216f0efd9f8a10fe9.woff2')format("woff");}.ff5_c01015{font-family:ff5_c01015;line-height:1.000000;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_c01015;src:url('chunks/assets/font_2dc71477e9969ad5fc2620d0.woff2')format("woff");}.ff6_c01015{font-family:ff6_c01015;line-height:0.696000;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_c01015;src:url('chunks/assets/font_71fe2da30884af770769d339.woff2')format("woff");}.ff7_c01015{font-family:ff7_c01015;line-height:1.000000;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_c01015;src:url('chunks/assets/font_87130ad1e0f48b05de642eb4.woff2')format("woff");}.ff8_c01015{font-family:ff8_c01015;line-height:1.000000;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);}
.v4_c01015{vertical-align:-21.690000px;}
.v0_c01015{vertical-align:0.000000px;}
.v3_c01015{vertical-align:5.976000px;}
.v5_c01015{vertical-align:15.108000px;}
.v2_c01015{vertical-align:18.132000px;}
.v1_c01015{vertical-align:26.028000px;}
.ls0_c01015{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01015{word-spacing:-0.071730px;}
.ws27_c01015{word-spacing:-0.059778px;}
.ws9_c01015{word-spacing:-0.047820px;}
.ws26_c01015{word-spacing:-0.041844px;}
.ws2b_c01015{word-spacing:0.000000px;}
.ws1d_c01015{word-spacing:15.565410px;}
.ws1f_c01015{word-spacing:15.637140px;}
.ws16_c01015{word-spacing:16.426170px;}
.wse_c01015{word-spacing:16.641360px;}
.ws14_c01015{word-spacing:18.362880px;}
.ws2_c01015{word-spacing:18.721530px;}
.wsf_c01015{word-spacing:18.864990px;}
.ws4_c01015{word-spacing:19.223640px;}
.ws25_c01015{word-spacing:19.582290px;}
.ws2a_c01015{word-spacing:19.846296px;}
.ws1e_c01015{word-spacing:19.956030px;}
.wsd_c01015{word-spacing:20.514780px;}
.ws15_c01015{word-spacing:20.586510px;}
.ws22_c01015{word-spacing:20.658240px;}
.ws13_c01015{word-spacing:21.232080px;}
.ws10_c01015{word-spacing:21.303810px;}
.ws21_c01015{word-spacing:21.375540px;}
.ws12_c01015{word-spacing:21.745260px;}
.wsa_c01015{word-spacing:22.107810px;}
.wsc_c01015{word-spacing:22.164570px;}
.ws17_c01015{word-spacing:22.810140px;}
.ws11_c01015{word-spacing:23.168790px;}
.ws3_c01015{word-spacing:23.312250px;}
.ws1c_c01015{word-spacing:23.599170px;}
.ws7_c01015{word-spacing:23.670900px;}
.ws24_c01015{word-spacing:23.814360px;}
.ws8_c01015{word-spacing:25.033770px;}
.ws5_c01015{word-spacing:25.822800px;}
.ws0_c01015{word-spacing:26.827020px;}
.ws23_c01015{word-spacing:26.970480px;}
.ws28_c01015{word-spacing:27.019656px;}
.ws29_c01015{word-spacing:27.916326px;}
.ws1b_c01015{word-spacing:27.974520px;}
.wsb_c01015{word-spacing:28.084020px;}
.ws18_c01015{word-spacing:29.337570px;}
.ws1a_c01015{word-spacing:30.628710px;}
.ws20_c01015{word-spacing:30.700440px;}
.ws19_c01015{word-spacing:33.807780px;}
.ws6_c01015{word-spacing:34.215210px;}
._0_c01015{margin-left:-40.670910px;}
._9_c01015{margin-left:-37.156140px;}
._3_c01015{margin-left:-35.219430px;}
._4_c01015{margin-left:-33.569640px;}
._14_c01015{margin-left:-30.008556px;}
._8_c01015{margin-left:-27.329130px;}
._12_c01015{margin-left:-8.953740px;}
._7_c01015{margin-left:-7.890300px;}
._13_c01015{margin-left:-5.810130px;}
._c_c01015{margin-left:-4.623240px;}
._5_c01015{margin-left:-3.570240px;}
._2_c01015{margin-left:-2.008440px;}
._6_c01015{width:1.936710px;}
._a_c01015{width:3.873420px;}
._10_c01015{width:8.789400px;}
._b_c01015{width:10.759500px;}
._d_c01015{width:22.523220px;}
._f_c01015{width:24.459930px;}
._e_c01015{width:29.452500px;}
._11_c01015{width:79.333380px;}
._1_c01015{width:933.068610px;}
.fc0_c01015{color:rgb(0,0,0);}
.fs2_c01015{font-size:41.844000px;}
.fs1_c01015{font-size:47.820000px;}
.fs3_c01015{font-size:59.778000px;}
.fs0_c01015{font-size:71.730000px;}
.y0_c01015{bottom:0.000000px;}
.y24_c01015{bottom:146.272500px;}
.y23_c01015{bottom:164.205000px;}
.y22_c01015{bottom:169.627500px;}
.y21_c01015{bottom:194.500500px;}
.y20_c01015{bottom:221.391000px;}
.y1f_c01015{bottom:248.281500px;}
.y1e_c01015{bottom:275.172000px;}
.y1d_c01015{bottom:309.784500px;}
.y1c_c01015{bottom:366.073500px;}
.y1b_c01015{bottom:392.964000px;}
.y1a_c01015{bottom:419.854500px;}
.y19_c01015{bottom:446.746500px;}
.y18_c01015{bottom:473.637000px;}
.y17_c01015{bottom:478.170000px;}
.y16_c01015{bottom:500.527500px;}
.y15_c01015{bottom:527.418000px;}
.y14_c01015{bottom:554.308500px;}
.y13_c01015{bottom:581.200500px;}
.y12_c01015{bottom:608.091000px;}
.y11_c01015{bottom:634.981500px;}
.y10_c01015{bottom:661.872000px;}
.yf_c01015{bottom:706.696500px;}
.ye_c01015{bottom:733.587000px;}
.yd_c01015{bottom:760.477500px;}
.yc_c01015{bottom:787.368000px;}
.yb_c01015{bottom:814.260000px;}
.ya_c01015{bottom:841.150500px;}
.y9_c01015{bottom:887.469000px;}
.y8_c01015{bottom:914.359500px;}
.y7_c01015{bottom:941.250000px;}
.y6_c01015{bottom:987.568500px;}
.y5_c01015{bottom:1014.459000px;}
.y4_c01015{bottom:1041.349500px;}
.y3_c01015{bottom:1068.240000px;}
.y2_c01015{bottom:1095.132000px;}
.y1_c01015{bottom:1162.084500px;}
.h6_c01015{height:38.251500px;}
.h7_c01015{height:44.833500px;}
.h2_c01015{height:53.797500px;}
.h3_c01015{height:58.354320px;}
.h5_c01015{height:59.773500px;}
.h4_c01015{height:71.929500px;}
.h1_c01015{height:1263.750000px;}
.h0_c01015{height:1264.110000px;}
.w0_c01015{width:893.869500px;}
.w1_c01015{width:894.000000px;}
.x0_c01015{left:0.000000px;}
.x1_c01015{left:127.558500px;}
.x5_c01015{left:129.750000px;}
.x8_c01015{left:135.840000px;}
.x2_c01015{left:159.838500px;}
.x4_c01015{left:171.456000px;}
.x3_c01015{left:197.794500px;}
.x6_c01015{left:239.104500px;}
.x7_c01015{left:386.476500px;}
@media print{
.v4_c01015{vertical-align:-19.280000pt;}
.v0_c01015{vertical-align:0.000000pt;}
.v3_c01015{vertical-align:5.312000pt;}
.v5_c01015{vertical-align:13.429333pt;}
.v2_c01015{vertical-align:16.117333pt;}
.v1_c01015{vertical-align:23.136000pt;}
.ls0_c01015{letter-spacing:0.000000pt;}
.ws1_c01015{word-spacing:-0.063760pt;}
.ws27_c01015{word-spacing:-0.053136pt;}
.ws9_c01015{word-spacing:-0.042507pt;}
.ws26_c01015{word-spacing:-0.037195pt;}
.ws2b_c01015{word-spacing:0.000000pt;}
.ws1d_c01015{word-spacing:13.835920pt;}
.ws1f_c01015{word-spacing:13.899680pt;}
.ws16_c01015{word-spacing:14.601040pt;}
.wse_c01015{word-spacing:14.792320pt;}
.ws14_c01015{word-spacing:16.322560pt;}
.ws2_c01015{word-spacing:16.641360pt;}
.wsf_c01015{word-spacing:16.768880pt;}
.ws4_c01015{word-spacing:17.087680pt;}
.ws25_c01015{word-spacing:17.406480pt;}
.ws2a_c01015{word-spacing:17.641152pt;}
.ws1e_c01015{word-spacing:17.738693pt;}
.wsd_c01015{word-spacing:18.235360pt;}
.ws15_c01015{word-spacing:18.299120pt;}
.ws22_c01015{word-spacing:18.362880pt;}
.ws13_c01015{word-spacing:18.872960pt;}
.ws10_c01015{word-spacing:18.936720pt;}
.ws21_c01015{word-spacing:19.000480pt;}
.ws12_c01015{word-spacing:19.329120pt;}
.wsa_c01015{word-spacing:19.651387pt;}
.wsc_c01015{word-spacing:19.701840pt;}
.ws17_c01015{word-spacing:20.275680pt;}
.ws11_c01015{word-spacing:20.594480pt;}
.ws3_c01015{word-spacing:20.722000pt;}
.ws1c_c01015{word-spacing:20.977040pt;}
.ws7_c01015{word-spacing:21.040800pt;}
.ws24_c01015{word-spacing:21.168320pt;}
.ws8_c01015{word-spacing:22.252240pt;}
.ws5_c01015{word-spacing:22.953600pt;}
.ws0_c01015{word-spacing:23.846240pt;}
.ws23_c01015{word-spacing:23.973760pt;}
.ws28_c01015{word-spacing:24.017472pt;}
.ws29_c01015{word-spacing:24.814512pt;}
.ws1b_c01015{word-spacing:24.866240pt;}
.wsb_c01015{word-spacing:24.963573pt;}
.ws18_c01015{word-spacing:26.077840pt;}
.ws1a_c01015{word-spacing:27.225520pt;}
.ws20_c01015{word-spacing:27.289280pt;}
.ws19_c01015{word-spacing:30.051360pt;}
.ws6_c01015{word-spacing:30.413520pt;}
._0_c01015{margin-left:-36.151920pt;}
._9_c01015{margin-left:-33.027680pt;}
._3_c01015{margin-left:-31.306160pt;}
._4_c01015{margin-left:-29.839680pt;}
._14_c01015{margin-left:-26.674272pt;}
._8_c01015{margin-left:-24.292560pt;}
._12_c01015{margin-left:-7.958880pt;}
._7_c01015{margin-left:-7.013600pt;}
._13_c01015{margin-left:-5.164560pt;}
._c_c01015{margin-left:-4.109547pt;}
._5_c01015{margin-left:-3.173547pt;}
._2_c01015{margin-left:-1.785280pt;}
._6_c01015{width:1.721520pt;}
._a_c01015{width:3.443040pt;}
._10_c01015{width:7.812800pt;}
._b_c01015{width:9.564000pt;}
._d_c01015{width:20.020640pt;}
._f_c01015{width:21.742160pt;}
._e_c01015{width:26.180000pt;}
._11_c01015{width:70.518560pt;}
._1_c01015{width:829.394320pt;}
.fs2_c01015{font-size:37.194667pt;}
.fs1_c01015{font-size:42.506667pt;}
.fs3_c01015{font-size:53.136000pt;}
.fs0_c01015{font-size:63.760000pt;}
.y0_c01015{bottom:0.000000pt;}
.y24_c01015{bottom:130.020000pt;}
.y23_c01015{bottom:145.960000pt;}
.y22_c01015{bottom:150.780000pt;}
.y21_c01015{bottom:172.889333pt;}
.y20_c01015{bottom:196.792000pt;}
.y1f_c01015{bottom:220.694667pt;}
.y1e_c01015{bottom:244.597333pt;}
.y1d_c01015{bottom:275.364000pt;}
.y1c_c01015{bottom:325.398667pt;}
.y1b_c01015{bottom:349.301333pt;}
.y1a_c01015{bottom:373.204000pt;}
.y19_c01015{bottom:397.108000pt;}
.y18_c01015{bottom:421.010667pt;}
.y17_c01015{bottom:425.040000pt;}
.y16_c01015{bottom:444.913333pt;}
.y15_c01015{bottom:468.816000pt;}
.y14_c01015{bottom:492.718667pt;}
.y13_c01015{bottom:516.622667pt;}
.y12_c01015{bottom:540.525333pt;}
.y11_c01015{bottom:564.428000pt;}
.y10_c01015{bottom:588.330667pt;}
.yf_c01015{bottom:628.174667pt;}
.ye_c01015{bottom:652.077333pt;}
.yd_c01015{bottom:675.980000pt;}
.yc_c01015{bottom:699.882667pt;}
.yb_c01015{bottom:723.786667pt;}
.ya_c01015{bottom:747.689333pt;}
.y9_c01015{bottom:788.861333pt;}
.y8_c01015{bottom:812.764000pt;}
.y7_c01015{bottom:836.666667pt;}
.y6_c01015{bottom:877.838667pt;}
.y5_c01015{bottom:901.741333pt;}
.y4_c01015{bottom:925.644000pt;}
.y3_c01015{bottom:949.546667pt;}
.y2_c01015{bottom:973.450667pt;}
.y1_c01015{bottom:1032.964000pt;}
.h6_c01015{height:34.001333pt;}
.h7_c01015{height:39.852000pt;}
.h2_c01015{height:47.820000pt;}
.h3_c01015{height:51.870507pt;}
.h5_c01015{height:53.132000pt;}
.h4_c01015{height:63.937333pt;}
.h1_c01015{height:1123.333333pt;}
.h0_c01015{height:1123.653333pt;}
.w0_c01015{width:794.550667pt;}
.w1_c01015{width:794.666667pt;}
.x0_c01015{left:0.000000pt;}
.x1_c01015{left:113.385333pt;}
.x5_c01015{left:115.333333pt;}
.x8_c01015{left:120.746667pt;}
.x2_c01015{left:142.078667pt;}
.x4_c01015{left:152.405333pt;}
.x3_c01015{left:175.817333pt;}
.x6_c01015{left:212.537333pt;}
.x7_c01015{left:343.534667pt;}
}





/* 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_305698fa4b5fd1482bd8c678.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.001000;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_c01016;src:url('chunks/assets/font_2d7f3c9b3f9e3234aa3a6e87.woff2')format("woff");}.ff2_c01016{font-family:ff2_c01016;line-height:1.001000;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_c01016;src:url('chunks/assets/font_f52933aca10feeba064c8650.woff2')format("woff");}.ff3_c01016{font-family:ff3_c01016;line-height:1.001000;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_c01016;src:url('chunks/assets/font_46d0dc0353826ddfa8f32fd5.woff2')format("woff");}.ff4_c01016{font-family:ff4_c01016;line-height:0.697000;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_c01016;src:url('chunks/assets/font_edc330aaa3522b9d3979dca4.woff2')format("woff");}.ff5_c01016{font-family:ff5_c01016;line-height:1.000000;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_c01016;src:url('chunks/assets/font_d70742c8f7a36c127ee837b9.woff2')format("woff");}.ff6_c01016{font-family:ff6_c01016;line-height:0.696000;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_c01016;src:url('chunks/assets/font_fb7cf1a591bcf5cab9b26676.woff2')format("woff");}.ff7_c01016{font-family:ff7_c01016;line-height:1.000000;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_c01016;src:url('chunks/assets/font_a6e06c66237c6d8a0f95cd85.woff2')format("woff");}.ff8_c01016{font-family:ff8_c01016;line-height:1.000000;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);}
.v3_c01016{vertical-align:-21.696000px;}
.v0_c01016{vertical-align:0.000000px;}
.v2_c01016{vertical-align:5.976000px;}
.v4_c01016{vertical-align:15.108000px;}
.v1_c01016{vertical-align:26.034000px;}
.ls0_c01016{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01016{word-spacing:-0.071730px;}
.ws20_c01016{word-spacing:-0.059778px;}
.ws6_c01016{word-spacing:-0.047820px;}
.ws1f_c01016{word-spacing:-0.041844px;}
.ws2b_c01016{word-spacing:0.000000px;}
.ws9_c01016{word-spacing:16.713090px;}
.ws29_c01016{word-spacing:17.275842px;}
.wsb_c01016{word-spacing:18.004230px;}
.ws23_c01016{word-spacing:19.846296px;}
.ws27_c01016{word-spacing:19.875006px;}
.wsd_c01016{word-spacing:20.945160px;}
.ws17_c01016{word-spacing:21.088620px;}
.ws4_c01016{word-spacing:21.303810px;}
.ws28_c01016{word-spacing:21.340746px;}
.ws8_c01016{word-spacing:21.590730px;}
.ws26_c01016{word-spacing:22.775418px;}
.ws18_c01016{word-spacing:23.312250px;}
.wsc_c01016{word-spacing:23.394300px;}
.ws7_c01016{word-spacing:23.455710px;}
.ws16_c01016{word-spacing:23.527440px;}
.ws1e_c01016{word-spacing:24.531660px;}
.wsa_c01016{word-spacing:24.962040px;}
.ws5_c01016{word-spacing:25.033770px;}
.ws11_c01016{word-spacing:25.248960px;}
.ws24_c01016{word-spacing:25.465428px;}
.ws2_c01016{word-spacing:25.822800px;}
.ws13_c01016{word-spacing:26.253180px;}
.ws10_c01016{word-spacing:26.755290px;}
.ws0_c01016{word-spacing:26.827020px;}
.ws21_c01016{word-spacing:27.019656px;}
.ws1b_c01016{word-spacing:27.042210px;}
.ws3_c01016{word-spacing:27.329130px;}
.ws22_c01016{word-spacing:27.916326px;}
.ws12_c01016{word-spacing:28.046430px;}
.ws1c_c01016{word-spacing:28.261620px;}
.ws1d_c01016{word-spacing:28.620270px;}
.ws25_c01016{word-spacing:29.171664px;}
.ws15_c01016{word-spacing:30.700440px;}
.ws19_c01016{word-spacing:32.364576px;}
.ws14_c01016{word-spacing:32.708880px;}
.wse_c01016{word-spacing:34.717320px;}
.wsf_c01016{word-spacing:35.506350px;}
.ws2a_c01016{word-spacing:48.719070px;}
.ws1a_c01016{word-spacing:79.261650px;}
._0_c01016{margin-left:-40.670910px;}
._a_c01016{margin-left:-36.970140px;}
._3_c01016{margin-left:-35.893830px;}
._6_c01016{margin-left:-34.688490px;}
._c_c01016{margin-left:-32.393130px;}
._18_c01016{margin-left:-31.299864px;}
._14_c01016{margin-left:-30.008556px;}
._16_c01016{margin-left:-29.002056px;}
._8_c01016{margin-left:-27.400860px;}
._19_c01016{margin-left:-22.833186px;}
._10_c01016{margin-left:-9.007170px;}
._7_c01016{margin-left:-7.890300px;}
._13_c01016{margin-left:-5.666670px;}
._11_c01016{margin-left:-4.518990px;}
._4_c01016{margin-left:-3.514770px;}
._2_c01016{margin-left:-1.936710px;}
._9_c01016{width:1.033050px;}
._15_c01016{width:2.085438px;}
._5_c01016{width:3.586500px;}
._b_c01016{width:4.670040px;}
._17_c01016{width:6.255390px;}
._e_c01016{width:20.342490px;}
._12_c01016{width:25.637160px;}
._d_c01016{width:28.734900px;}
._f_c01016{width:95.200056px;}
._1_c01016{width:933.068610px;}
.fc0_c01016{color:rgb(0,0,0);}
.fs3_c01016{font-size:41.844000px;}
.fs1_c01016{font-size:47.820000px;}
.fs4_c01016{font-size:59.778000px;}
.fs0_c01016{font-size:71.730000px;}
.fs2_c01016{font-size:86.076000px;}
.y0_c01016{bottom:0.000000px;}
.y27_c01016{bottom:111.046500px;}
.y26_c01016{bottom:134.401500px;}
.y25_c01016{bottom:152.334000px;}
.y24_c01016{bottom:164.844000px;}
.y23_c01016{bottom:182.776500px;}
.y22_c01016{bottom:200.710500px;}
.y21_c01016{bottom:224.065500px;}
.y20_c01016{bottom:236.575500px;}
.y1f_c01016{bottom:254.508000px;}
.y1e_c01016{bottom:259.932000px;}
.y1d_c01016{bottom:288.289500px;}
.y1c_c01016{bottom:315.180000px;}
.y1b_c01016{bottom:342.072000px;}
.y1a_c01016{bottom:368.962500px;}
.y19_c01016{bottom:395.853000px;}
.y18_c01016{bottom:430.465500px;}
.y17_c01016{bottom:489.817500px;}
.y16_c01016{bottom:557.314500px;}
.y15_c01016{bottom:584.205000px;}
.y14_c01016{bottom:611.095500px;}
.y13_c01016{bottom:637.987500px;}
.y12_c01016{bottom:664.878000px;}
.y11_c01016{bottom:691.768500px;}
.y10_c01016{bottom:718.659000px;}
.yf_c01016{bottom:745.551000px;}
.ye_c01016{bottom:772.441500px;}
.yd_c01016{bottom:799.332000px;}
.yc_c01016{bottom:826.222500px;}
.yb_c01016{bottom:853.114500px;}
.ya_c01016{bottom:880.005000px;}
.y9_c01016{bottom:906.895500px;}
.y8_c01016{bottom:933.786000px;}
.y7_c01016{bottom:960.678000px;}
.y6_c01016{bottom:987.568500px;}
.y5_c01016{bottom:1014.459000px;}
.y4_c01016{bottom:1041.349500px;}
.y3_c01016{bottom:1068.240000px;}
.y2_c01016{bottom:1095.132000px;}
.y1_c01016{bottom:1162.084500px;}
.h9_c01016{height:28.286544px;}
.h7_c01016{height:38.245500px;}
.h8_c01016{height:44.833500px;}
.h2_c01016{height:53.797500px;}
.h4_c01016{height:58.354320px;}
.h3_c01016{height:58.360320px;}
.h6_c01016{height:59.773500px;}
.ha_c01016{height:59.947500px;}
.h5_c01016{height:64.557000px;}
.h1_c01016{height:1263.750000px;}
.h0_c01016{height:1264.110000px;}
.w0_c01016{width:893.869500px;}
.w1_c01016{width:894.000000px;}
.x0_c01016{left:0.000000px;}
.x1_c01016{left:127.558500px;}
.x4_c01016{left:135.840000px;}
.x2_c01016{left:159.838500px;}
.x5_c01016{left:198.771000px;}
.x3_c01016{left:287.673000px;}
.x6_c01016{left:644.871000px;}
@media print{
.v3_c01016{vertical-align:-19.285333pt;}
.v0_c01016{vertical-align:0.000000pt;}
.v2_c01016{vertical-align:5.312000pt;}
.v4_c01016{vertical-align:13.429333pt;}
.v1_c01016{vertical-align:23.141333pt;}
.ls0_c01016{letter-spacing:0.000000pt;}
.ws1_c01016{word-spacing:-0.063760pt;}
.ws20_c01016{word-spacing:-0.053136pt;}
.ws6_c01016{word-spacing:-0.042507pt;}
.ws1f_c01016{word-spacing:-0.037195pt;}
.ws2b_c01016{word-spacing:0.000000pt;}
.ws9_c01016{word-spacing:14.856080pt;}
.ws29_c01016{word-spacing:15.356304pt;}
.wsb_c01016{word-spacing:16.003760pt;}
.ws23_c01016{word-spacing:17.641152pt;}
.ws27_c01016{word-spacing:17.666672pt;}
.wsd_c01016{word-spacing:18.617920pt;}
.ws17_c01016{word-spacing:18.745440pt;}
.ws4_c01016{word-spacing:18.936720pt;}
.ws28_c01016{word-spacing:18.969552pt;}
.ws8_c01016{word-spacing:19.191760pt;}
.ws26_c01016{word-spacing:20.244816pt;}
.ws18_c01016{word-spacing:20.722000pt;}
.wsc_c01016{word-spacing:20.794933pt;}
.ws7_c01016{word-spacing:20.849520pt;}
.ws16_c01016{word-spacing:20.913280pt;}
.ws1e_c01016{word-spacing:21.805920pt;}
.wsa_c01016{word-spacing:22.188480pt;}
.ws5_c01016{word-spacing:22.252240pt;}
.ws11_c01016{word-spacing:22.443520pt;}
.ws24_c01016{word-spacing:22.635936pt;}
.ws2_c01016{word-spacing:22.953600pt;}
.ws13_c01016{word-spacing:23.336160pt;}
.ws10_c01016{word-spacing:23.782480pt;}
.ws0_c01016{word-spacing:23.846240pt;}
.ws21_c01016{word-spacing:24.017472pt;}
.ws1b_c01016{word-spacing:24.037520pt;}
.ws3_c01016{word-spacing:24.292560pt;}
.ws22_c01016{word-spacing:24.814512pt;}
.ws12_c01016{word-spacing:24.930160pt;}
.ws1c_c01016{word-spacing:25.121440pt;}
.ws1d_c01016{word-spacing:25.440240pt;}
.ws25_c01016{word-spacing:25.930368pt;}
.ws15_c01016{word-spacing:27.289280pt;}
.ws19_c01016{word-spacing:28.768512pt;}
.ws14_c01016{word-spacing:29.074560pt;}
.wse_c01016{word-spacing:30.859840pt;}
.wsf_c01016{word-spacing:31.561200pt;}
.ws2a_c01016{word-spacing:43.305840pt;}
.ws1a_c01016{word-spacing:70.454800pt;}
._0_c01016{margin-left:-36.151920pt;}
._a_c01016{margin-left:-32.862347pt;}
._3_c01016{margin-left:-31.905627pt;}
._6_c01016{margin-left:-30.834213pt;}
._c_c01016{margin-left:-28.793893pt;}
._18_c01016{margin-left:-27.822101pt;}
._14_c01016{margin-left:-26.674272pt;}
._16_c01016{margin-left:-25.779605pt;}
._8_c01016{margin-left:-24.356320pt;}
._19_c01016{margin-left:-20.296165pt;}
._10_c01016{margin-left:-8.006373pt;}
._7_c01016{margin-left:-7.013600pt;}
._13_c01016{margin-left:-5.037040pt;}
._11_c01016{margin-left:-4.016880pt;}
._4_c01016{margin-left:-3.124240pt;}
._2_c01016{margin-left:-1.721520pt;}
._9_c01016{width:0.918267pt;}
._15_c01016{width:1.853723pt;}
._5_c01016{width:3.188000pt;}
._b_c01016{width:4.151147pt;}
._17_c01016{width:5.560347pt;}
._e_c01016{width:18.082213pt;}
._12_c01016{width:22.788587pt;}
._d_c01016{width:25.542133pt;}
._f_c01016{width:84.622272pt;}
._1_c01016{width:829.394320pt;}
.fs3_c01016{font-size:37.194667pt;}
.fs1_c01016{font-size:42.506667pt;}
.fs4_c01016{font-size:53.136000pt;}
.fs0_c01016{font-size:63.760000pt;}
.fs2_c01016{font-size:76.512000pt;}
.y0_c01016{bottom:0.000000pt;}
.y27_c01016{bottom:98.708000pt;}
.y26_c01016{bottom:119.468000pt;}
.y25_c01016{bottom:135.408000pt;}
.y24_c01016{bottom:146.528000pt;}
.y23_c01016{bottom:162.468000pt;}
.y22_c01016{bottom:178.409333pt;}
.y21_c01016{bottom:199.169333pt;}
.y20_c01016{bottom:210.289333pt;}
.y1f_c01016{bottom:226.229333pt;}
.y1e_c01016{bottom:231.050667pt;}
.y1d_c01016{bottom:256.257333pt;}
.y1c_c01016{bottom:280.160000pt;}
.y1b_c01016{bottom:304.064000pt;}
.y1a_c01016{bottom:327.966667pt;}
.y19_c01016{bottom:351.869333pt;}
.y18_c01016{bottom:382.636000pt;}
.y17_c01016{bottom:435.393333pt;}
.y16_c01016{bottom:495.390667pt;}
.y15_c01016{bottom:519.293333pt;}
.y14_c01016{bottom:543.196000pt;}
.y13_c01016{bottom:567.100000pt;}
.y12_c01016{bottom:591.002667pt;}
.y11_c01016{bottom:614.905333pt;}
.y10_c01016{bottom:638.808000pt;}
.yf_c01016{bottom:662.712000pt;}
.ye_c01016{bottom:686.614667pt;}
.yd_c01016{bottom:710.517333pt;}
.yc_c01016{bottom:734.420000pt;}
.yb_c01016{bottom:758.324000pt;}
.ya_c01016{bottom:782.226667pt;}
.y9_c01016{bottom:806.129333pt;}
.y8_c01016{bottom:830.032000pt;}
.y7_c01016{bottom:853.936000pt;}
.y6_c01016{bottom:877.838667pt;}
.y5_c01016{bottom:901.741333pt;}
.y4_c01016{bottom:925.644000pt;}
.y3_c01016{bottom:949.546667pt;}
.y2_c01016{bottom:973.450667pt;}
.y1_c01016{bottom:1032.964000pt;}
.h9_c01016{height:25.143595pt;}
.h7_c01016{height:33.996000pt;}
.h8_c01016{height:39.852000pt;}
.h2_c01016{height:47.820000pt;}
.h4_c01016{height:51.870507pt;}
.h3_c01016{height:51.875840pt;}
.h6_c01016{height:53.132000pt;}
.ha_c01016{height:53.286667pt;}
.h5_c01016{height:57.384000pt;}
.h1_c01016{height:1123.333333pt;}
.h0_c01016{height:1123.653333pt;}
.w0_c01016{width:794.550667pt;}
.w1_c01016{width:794.666667pt;}
.x0_c01016{left:0.000000pt;}
.x1_c01016{left:113.385333pt;}
.x4_c01016{left:120.746667pt;}
.x2_c01016{left:142.078667pt;}
.x5_c01016{left:176.685333pt;}
.x3_c01016{left:255.709333pt;}
.x6_c01016{left:573.218667pt;}
}





/* 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_f0e4951a74b433dcd3a47518.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.001000;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_61658104766b625d439474c3.woff2')format("woff");}.ff2_c01017{font-family:ff2_c01017;line-height:1.001000;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_19c253f043bc5d9b762b172e.woff2')format("woff");}.ff3_c01017{font-family:ff3_c01017;line-height:1.000000;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_c01017;src:url('chunks/assets/font_4e71cd33c4560fcaee106172.woff2')format("woff");}.ff4_c01017{font-family:ff4_c01017;line-height:1.001000;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_c01017;src:url('chunks/assets/font_b730cc7aeb89734a7884c420.woff2')format("woff");}.ff5_c01017{font-family:ff5_c01017;line-height:0.697000;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_c01017;src:url('chunks/assets/font_607a7ac0887c5f2288b0425c.woff2')format("woff");}.ff6_c01017{font-family:ff6_c01017;line-height:0.696000;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_c01017;src:url('chunks/assets/font_9e96cafcf6918156047ae4ff.woff2')format("woff");}.ff7_c01017{font-family:ff7_c01017;line-height:1.000000;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_c01017;src:url('chunks/assets/font_4447582bbc69e866a9cf54c5.woff2')format("woff");}.ff8_c01017{font-family:ff8_c01017;line-height:1.000000;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);}
.v4_c01017{vertical-align:-21.696000px;}
.v0_c01017{vertical-align:0.000000px;}
.v1_c01017{vertical-align:5.976000px;}
.v3_c01017{vertical-align:7.176000px;}
.v5_c01017{vertical-align:15.114000px;}
.v2_c01017{vertical-align:26.034000px;}
.ls2_c01017{letter-spacing:0.000000px;}
.ls0_c01017{letter-spacing:7.456716px;}
.ls1_c01017{letter-spacing:8.298750px;}
.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:-0.071730px;}
.ws1e_c01017{word-spacing:-0.059778px;}
.ws5_c01017{word-spacing:-0.047820px;}
.ws1d_c01017{word-spacing:-0.041844px;}
.ws25_c01017{word-spacing:0.000000px;}
.ws17_c01017{word-spacing:15.708870px;}
.wsa_c01017{word-spacing:17.286930px;}
.ws20_c01017{word-spacing:19.547406px;}
.ws1f_c01017{word-spacing:19.607184px;}
.ws22_c01017{word-spacing:19.846296px;}
.wsc_c01017{word-spacing:20.156130px;}
.ws14_c01017{word-spacing:20.586510px;}
.wsb_c01017{word-spacing:20.873430px;}
.ws24_c01017{word-spacing:21.280968px;}
.ws21_c01017{word-spacing:21.340746px;}
.ws23_c01017{word-spacing:22.894974px;}
.ws9_c01017{word-spacing:23.312250px;}
.wse_c01017{word-spacing:23.342340px;}
.ws19_c01017{word-spacing:23.383980px;}
.ws18_c01017{word-spacing:23.670900px;}
.ws16_c01017{word-spacing:24.101280px;}
.ws11_c01017{word-spacing:24.603390px;}
.ws15_c01017{word-spacing:25.033770px;}
.wsd_c01017{word-spacing:25.248960px;}
.ws13_c01017{word-spacing:25.751070px;}
.wsf_c01017{word-spacing:26.755290px;}
.ws0_c01017{word-spacing:26.827020px;}
.ws3_c01017{word-spacing:26.970480px;}
.ws2_c01017{word-spacing:27.042210px;}
.ws1c_c01017{word-spacing:27.329130px;}
.ws10_c01017{word-spacing:29.481030px;}
.ws7_c01017{word-spacing:31.489470px;}
.ws8_c01017{word-spacing:31.919850px;}
.ws1b_c01017{word-spacing:32.450652px;}
.ws12_c01017{word-spacing:33.497910px;}
.ws6_c01017{word-spacing:36.295380px;}
.ws4_c01017{word-spacing:36.940950px;}
.ws1a_c01017{word-spacing:95.113980px;}
._0_c01017{margin-left:-40.670910px;}
._b_c01017{margin-left:-37.084410px;}
._9_c01017{margin-left:-35.291160px;}
._e_c01017{margin-left:-34.095240px;}
._10_c01017{margin-left:-32.533260px;}
._4_c01017{margin-left:-29.552760px;}
._d_c01017{margin-left:-27.400860px;}
._c_c01017{margin-left:-8.033760px;}
._3_c01017{margin-left:-6.312240px;}
._12_c01017{margin-left:-4.877640px;}
._5_c01017{margin-left:-3.586500px;}
._f_c01017{margin-left:-2.327520px;}
._8_c01017{margin-left:-1.020300px;}
._a_c01017{width:1.936710px;}
._7_c01017{width:3.028740px;}
._6_c01017{width:4.840830px;}
._13_c01017{width:8.303268px;}
._11_c01017{width:21.925890px;}
._2_c01017{width:79.333380px;}
._1_c01017{width:933.068610px;}
.fc0_c01017{color:rgb(0,0,0);}
.fs3_c01017{font-size:41.844000px;}
.fs1_c01017{font-size:47.820000px;}
.fs4_c01017{font-size:59.778000px;}
.fs0_c01017{font-size:71.730000px;}
.fs2_c01017{font-size:86.076000px;}
.y0_c01017{bottom:0.000000px;}
.y25_c01017{bottom:109.443000px;}
.y24_c01017{bottom:114.867000px;}
.y23_c01017{bottom:128.979000px;}
.y22_c01017{bottom:152.334000px;}
.y21_c01017{bottom:164.844000px;}
.y20_c01017{bottom:182.776500px;}
.y1f_c01017{bottom:188.200500px;}
.y1e_c01017{bottom:216.559500px;}
.y1d_c01017{bottom:243.450000px;}
.y1c_c01017{bottom:270.340500px;}
.y1b_c01017{bottom:297.231000px;}
.y1a_c01017{bottom:331.843500px;}
.y19_c01017{bottom:391.195500px;}
.y18_c01017{bottom:458.692500px;}
.y17_c01017{bottom:485.583000px;}
.y16_c01017{bottom:512.475000px;}
.y15_c01017{bottom:539.365500px;}
.y14_c01017{bottom:566.256000px;}
.y13_c01017{bottom:600.868500px;}
.y12_c01017{bottom:657.157500px;}
.y11_c01017{bottom:684.048000px;}
.y10_c01017{bottom:710.938500px;}
.yf_c01017{bottom:737.829000px;}
.ye_c01017{bottom:764.721000px;}
.yd_c01017{bottom:791.611500px;}
.yc_c01017{bottom:818.502000px;}
.yb_c01017{bottom:845.392500px;}
.ya_c01017{bottom:872.283000px;}
.y9_c01017{bottom:899.175000px;}
.y8_c01017{bottom:926.065500px;}
.y7_c01017{bottom:952.956000px;}
.y6_c01017{bottom:979.846500px;}
.y5_c01017{bottom:1006.738500px;}
.y4_c01017{bottom:1033.629000px;}
.y3_c01017{bottom:1060.519500px;}
.y2_c01017{bottom:1095.132000px;}
.y1_c01017{bottom:1162.084500px;}
.hb_c01017{height:28.286544px;}
.h8_c01017{height:38.251500px;}
.ha_c01017{height:44.833500px;}
.h2_c01017{height:53.797500px;}
.h5_c01017{height:58.354320px;}
.h4_c01017{height:58.360320px;}
.h3_c01017{height:59.773500px;}
.h9_c01017{height:59.947500px;}
.h7_c01017{height:64.557000px;}
.h6_c01017{height:71.733000px;}
.h1_c01017{height:1263.750000px;}
.h0_c01017{height:1264.110000px;}
.w0_c01017{width:893.869500px;}
.w1_c01017{width:894.000000px;}
.x0_c01017{left:0.000000px;}
.x1_c01017{left:127.558500px;}
.x5_c01017{left:135.840000px;}
.x3_c01017{left:159.838500px;}
.x9_c01017{left:163.798500px;}
.x6_c01017{left:188.497500px;}
.x7_c01017{left:200.121000px;}
.x4_c01017{left:248.400000px;}
.x8_c01017{left:277.677000px;}
.x2_c01017{left:352.812000px;}
@media print{
.v4_c01017{vertical-align:-19.285333pt;}
.v0_c01017{vertical-align:0.000000pt;}
.v1_c01017{vertical-align:5.312000pt;}
.v3_c01017{vertical-align:6.378667pt;}
.v5_c01017{vertical-align:13.434667pt;}
.v2_c01017{vertical-align:23.141333pt;}
.ls2_c01017{letter-spacing:0.000000pt;}
.ls0_c01017{letter-spacing:6.628192pt;}
.ls1_c01017{letter-spacing:7.376667pt;}
.ws1_c01017{word-spacing:-0.063760pt;}
.ws1e_c01017{word-spacing:-0.053136pt;}
.ws5_c01017{word-spacing:-0.042507pt;}
.ws1d_c01017{word-spacing:-0.037195pt;}
.ws25_c01017{word-spacing:0.000000pt;}
.ws17_c01017{word-spacing:13.963440pt;}
.wsa_c01017{word-spacing:15.366160pt;}
.ws20_c01017{word-spacing:17.375472pt;}
.ws1f_c01017{word-spacing:17.428608pt;}
.ws22_c01017{word-spacing:17.641152pt;}
.wsc_c01017{word-spacing:17.916560pt;}
.ws14_c01017{word-spacing:18.299120pt;}
.wsb_c01017{word-spacing:18.554160pt;}
.ws24_c01017{word-spacing:18.916416pt;}
.ws21_c01017{word-spacing:18.969552pt;}
.ws23_c01017{word-spacing:20.351088pt;}
.ws9_c01017{word-spacing:20.722000pt;}
.wse_c01017{word-spacing:20.748747pt;}
.ws19_c01017{word-spacing:20.785760pt;}
.ws18_c01017{word-spacing:21.040800pt;}
.ws16_c01017{word-spacing:21.423360pt;}
.ws11_c01017{word-spacing:21.869680pt;}
.ws15_c01017{word-spacing:22.252240pt;}
.wsd_c01017{word-spacing:22.443520pt;}
.ws13_c01017{word-spacing:22.889840pt;}
.wsf_c01017{word-spacing:23.782480pt;}
.ws0_c01017{word-spacing:23.846240pt;}
.ws3_c01017{word-spacing:23.973760pt;}
.ws2_c01017{word-spacing:24.037520pt;}
.ws1c_c01017{word-spacing:24.292560pt;}
.ws10_c01017{word-spacing:26.205360pt;}
.ws7_c01017{word-spacing:27.990640pt;}
.ws8_c01017{word-spacing:28.373200pt;}
.ws1b_c01017{word-spacing:28.845024pt;}
.ws12_c01017{word-spacing:29.775920pt;}
.ws6_c01017{word-spacing:32.262560pt;}
.ws4_c01017{word-spacing:32.836400pt;}
.ws1a_c01017{word-spacing:84.545760pt;}
._0_c01017{margin-left:-36.151920pt;}
._b_c01017{margin-left:-32.963920pt;}
._9_c01017{margin-left:-31.369920pt;}
._e_c01017{margin-left:-30.306880pt;}
._10_c01017{margin-left:-28.918453pt;}
._4_c01017{margin-left:-26.269120pt;}
._d_c01017{margin-left:-24.356320pt;}
._c_c01017{margin-left:-7.141120pt;}
._3_c01017{margin-left:-5.610880pt;}
._12_c01017{margin-left:-4.335680pt;}
._5_c01017{margin-left:-3.188000pt;}
._f_c01017{margin-left:-2.068907pt;}
._8_c01017{margin-left:-0.906933pt;}
._a_c01017{width:1.721520pt;}
._7_c01017{width:2.692213pt;}
._6_c01017{width:4.302960pt;}
._13_c01017{width:7.380683pt;}
._11_c01017{width:19.489680pt;}
._2_c01017{width:70.518560pt;}
._1_c01017{width:829.394320pt;}
.fs3_c01017{font-size:37.194667pt;}
.fs1_c01017{font-size:42.506667pt;}
.fs4_c01017{font-size:53.136000pt;}
.fs0_c01017{font-size:63.760000pt;}
.fs2_c01017{font-size:76.512000pt;}
.y0_c01017{bottom:0.000000pt;}
.y25_c01017{bottom:97.282667pt;}
.y24_c01017{bottom:102.104000pt;}
.y23_c01017{bottom:114.648000pt;}
.y22_c01017{bottom:135.408000pt;}
.y21_c01017{bottom:146.528000pt;}
.y20_c01017{bottom:162.468000pt;}
.y1f_c01017{bottom:167.289333pt;}
.y1e_c01017{bottom:192.497333pt;}
.y1d_c01017{bottom:216.400000pt;}
.y1c_c01017{bottom:240.302667pt;}
.y1b_c01017{bottom:264.205333pt;}
.y1a_c01017{bottom:294.972000pt;}
.y19_c01017{bottom:347.729333pt;}
.y18_c01017{bottom:407.726667pt;}
.y17_c01017{bottom:431.629333pt;}
.y16_c01017{bottom:455.533333pt;}
.y15_c01017{bottom:479.436000pt;}
.y14_c01017{bottom:503.338667pt;}
.y13_c01017{bottom:534.105333pt;}
.y12_c01017{bottom:584.140000pt;}
.y11_c01017{bottom:608.042667pt;}
.y10_c01017{bottom:631.945333pt;}
.yf_c01017{bottom:655.848000pt;}
.ye_c01017{bottom:679.752000pt;}
.yd_c01017{bottom:703.654667pt;}
.yc_c01017{bottom:727.557333pt;}
.yb_c01017{bottom:751.460000pt;}
.ya_c01017{bottom:775.362667pt;}
.y9_c01017{bottom:799.266667pt;}
.y8_c01017{bottom:823.169333pt;}
.y7_c01017{bottom:847.072000pt;}
.y6_c01017{bottom:870.974667pt;}
.y5_c01017{bottom:894.878667pt;}
.y4_c01017{bottom:918.781333pt;}
.y3_c01017{bottom:942.684000pt;}
.y2_c01017{bottom:973.450667pt;}
.y1_c01017{bottom:1032.964000pt;}
.hb_c01017{height:25.143595pt;}
.h8_c01017{height:34.001333pt;}
.ha_c01017{height:39.852000pt;}
.h2_c01017{height:47.820000pt;}
.h5_c01017{height:51.870507pt;}
.h4_c01017{height:51.875840pt;}
.h3_c01017{height:53.132000pt;}
.h9_c01017{height:53.286667pt;}
.h7_c01017{height:57.384000pt;}
.h6_c01017{height:63.762667pt;}
.h1_c01017{height:1123.333333pt;}
.h0_c01017{height:1123.653333pt;}
.w0_c01017{width:794.550667pt;}
.w1_c01017{width:794.666667pt;}
.x0_c01017{left:0.000000pt;}
.x1_c01017{left:113.385333pt;}
.x5_c01017{left:120.746667pt;}
.x3_c01017{left:142.078667pt;}
.x9_c01017{left:145.598667pt;}
.x6_c01017{left:167.553333pt;}
.x7_c01017{left:177.885333pt;}
.x4_c01017{left:220.800000pt;}
.x8_c01017{left:246.824000pt;}
.x2_c01017{left:313.610667pt;}
}





/* 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_a4ba9d659453f0ef720d44fb.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.001000;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_da61c004405e0d38077d3a24.woff2')format("woff");}.ff2_c01018{font-family:ff2_c01018;line-height:1.001000;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_c01018;src:url('chunks/assets/font_148320f6e0415cd62cbcc1f3.woff2')format("woff");}.ff3_c01018{font-family:ff3_c01018;line-height:1.001000;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_c01018;src:url('chunks/assets/font_5a151a47b973c76b7d2bb360.woff2')format("woff");}.ff4_c01018{font-family:ff4_c01018;line-height:0.697000;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_c01018;src:url('chunks/assets/font_9c1c148aca6fba4604634c9d.woff2')format("woff");}.ff5_c01018{font-family:ff5_c01018;line-height:1.000000;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_c01018;src:url('chunks/assets/font_2518439b2f884c19cbef0af9.woff2')format("woff");}.ff6_c01018{font-family:ff6_c01018;line-height:0.696000;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_c01018;src:url('chunks/assets/font_043b65c493942bc2e3fb09c9.woff2')format("woff");}.ff7_c01018{font-family:ff7_c01018;line-height:1.000000;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_c01018;src:url('chunks/assets/font_23647ffb0b73d1bf2ba73dde.woff2')format("woff");}.ff8_c01018{font-family:ff8_c01018;line-height:1.000000;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);}
.v3_c01018{vertical-align:-21.696000px;}
.v0_c01018{vertical-align:0.000000px;}
.v2_c01018{vertical-align:5.982000px;}
.v4_c01018{vertical-align:15.114000px;}
.v1_c01018{vertical-align:26.034000px;}
.ls0_c01018{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws7_c01018{word-spacing:-0.047820px;}
.ws1b_c01018{word-spacing:-0.041844px;}
.ws23_c01018{word-spacing:0.000000px;}
.ws8_c01018{word-spacing:17.789040px;}
.ws22_c01018{word-spacing:19.666962px;}
.ws20_c01018{word-spacing:19.726740px;}
.ws1f_c01018{word-spacing:19.846296px;}
.ws1d_c01018{word-spacing:19.861722px;}
.ws4_c01018{word-spacing:21.160350px;}
.ws21_c01018{word-spacing:21.161412px;}
.ws1e_c01018{word-spacing:21.340746px;}
.ws10_c01018{word-spacing:21.447270px;}
.ws3_c01018{word-spacing:21.662460px;}
.ws18_c01018{word-spacing:21.805920px;}
.wsa_c01018{word-spacing:22.164570px;}
.ws12_c01018{word-spacing:22.308030px;}
.ws2_c01018{word-spacing:23.312250px;}
.ws15_c01018{word-spacing:23.383980px;}
.wsc_c01018{word-spacing:23.455710px;}
.wse_c01018{word-spacing:24.173010px;}
.ws13_c01018{word-spacing:24.459930px;}
.ws17_c01018{word-spacing:24.962040px;}
.ws6_c01018{word-spacing:25.033770px;}
.ws11_c01018{word-spacing:25.105500px;}
.ws16_c01018{word-spacing:26.109720px;}
.ws14_c01018{word-spacing:26.683560px;}
.ws0_c01018{word-spacing:26.827020px;}
.ws9_c01018{word-spacing:27.042210px;}
.wsb_c01018{word-spacing:27.400860px;}
.ws19_c01018{word-spacing:28.763730px;}
.ws1a_c01018{word-spacing:29.050650px;}
.ws5_c01018{word-spacing:29.481030px;}
.wsd_c01018{word-spacing:29.911410px;}
.ws1c_c01018{word-spacing:31.801896px;}
.wsf_c01018{word-spacing:32.063310px;}
._0_c01018{margin-left:-40.670910px;}
._9_c01018{margin-left:-37.084410px;}
._4_c01018{margin-left:-35.147700px;}
._3_c01018{margin-left:-33.210990px;}
._11_c01018{margin-left:-29.552760px;}
._8_c01018{margin-left:-27.329130px;}
._15_c01018{margin-left:-24.988986px;}
._13_c01018{margin-left:-23.919858px;}
._7_c01018{margin-left:-7.818570px;}
._a_c01018{margin-left:-5.953590px;}
._c_c01018{margin-left:-4.160340px;}
._b_c01018{margin-left:-3.012660px;}
._6_c01018{margin-left:-1.936710px;}
._5_c01018{width:1.936710px;}
._e_c01018{width:3.028740px;}
._d_c01018{width:5.259360px;}
._14_c01018{width:8.218320px;}
._10_c01018{width:10.974690px;}
._2_c01018{width:21.519000px;}
._12_c01018{width:30.126600px;}
._f_c01018{width:79.333380px;}
._1_c01018{width:933.068610px;}
.fc0_c01018{color:rgb(0,0,0);}
.fs2_c01018{font-size:41.844000px;}
.fs1_c01018{font-size:47.820000px;}
.fs3_c01018{font-size:59.778000px;}
.fs0_c01018{font-size:71.730000px;}
.y0_c01018{bottom:0.000000px;}
.y25_c01018{bottom:93.442500px;}
.y24_c01018{bottom:116.797500px;}
.y23_c01018{bottom:129.307500px;}
.y22_c01018{bottom:147.240000px;}
.y21_c01018{bottom:152.664000px;}
.y20_c01018{bottom:180.588000px;}
.y1f_c01018{bottom:207.478500px;}
.y1e_c01018{bottom:234.370500px;}
.y1d_c01018{bottom:261.261000px;}
.y1c_c01018{bottom:288.151500px;}
.y1b_c01018{bottom:315.042000px;}
.y1a_c01018{bottom:341.934000px;}
.y19_c01018{bottom:368.824500px;}
.y18_c01018{bottom:395.715000px;}
.y17_c01018{bottom:422.605500px;}
.y16_c01018{bottom:449.496000px;}
.y15_c01018{bottom:476.388000px;}
.y14_c01018{bottom:503.278500px;}
.y13_c01018{bottom:530.169000px;}
.y12_c01018{bottom:574.752000px;}
.y11_c01018{bottom:601.642500px;}
.y10_c01018{bottom:628.533000px;}
.yf_c01018{bottom:655.423500px;}
.ye_c01018{bottom:682.315500px;}
.yd_c01018{bottom:726.897000px;}
.yc_c01018{bottom:753.787500px;}
.yb_c01018{bottom:780.679500px;}
.ya_c01018{bottom:815.290500px;}
.y9_c01018{bottom:871.512000px;}
.y8_c01018{bottom:898.404000px;}
.y7_c01018{bottom:942.985500px;}
.y6_c01018{bottom:969.876000px;}
.y5_c01018{bottom:996.768000px;}
.y4_c01018{bottom:1023.658500px;}
.y3_c01018{bottom:1068.240000px;}
.y2_c01018{bottom:1095.132000px;}
.y1_c01018{bottom:1162.084500px;}
.h8_c01018{height:28.286544px;}
.h6_c01018{height:38.251500px;}
.h7_c01018{height:44.833500px;}
.h2_c01018{height:53.797500px;}
.h5_c01018{height:58.354320px;}
.h3_c01018{height:58.360320px;}
.h4_c01018{height:59.779500px;}
.h1_c01018{height:1263.750000px;}
.h0_c01018{height:1264.110000px;}
.w0_c01018{width:893.869500px;}
.w1_c01018{width:894.000000px;}
.x0_c01018{left:0.000000px;}
.x1_c01018{left:127.558500px;}
.x6_c01018{left:135.840000px;}
.x2_c01018{left:159.838500px;}
.x4_c01018{left:171.456000px;}
.x3_c01018{left:197.794500px;}
.x7_c01018{left:327.195000px;}
.x5_c01018{left:662.131500px;}
@media print{
.v3_c01018{vertical-align:-19.285333pt;}
.v0_c01018{vertical-align:0.000000pt;}
.v2_c01018{vertical-align:5.317333pt;}
.v4_c01018{vertical-align:13.434667pt;}
.v1_c01018{vertical-align:23.141333pt;}
.ls0_c01018{letter-spacing:0.000000pt;}
.ws1_c01018{word-spacing:-0.063760pt;}
.ws7_c01018{word-spacing:-0.042507pt;}
.ws1b_c01018{word-spacing:-0.037195pt;}
.ws23_c01018{word-spacing:0.000000pt;}
.ws8_c01018{word-spacing:15.812480pt;}
.ws22_c01018{word-spacing:17.481744pt;}
.ws20_c01018{word-spacing:17.534880pt;}
.ws1f_c01018{word-spacing:17.641152pt;}
.ws1d_c01018{word-spacing:17.654864pt;}
.ws4_c01018{word-spacing:18.809200pt;}
.ws21_c01018{word-spacing:18.810144pt;}
.ws1e_c01018{word-spacing:18.969552pt;}
.ws10_c01018{word-spacing:19.064240pt;}
.ws3_c01018{word-spacing:19.255520pt;}
.ws18_c01018{word-spacing:19.383040pt;}
.wsa_c01018{word-spacing:19.701840pt;}
.ws12_c01018{word-spacing:19.829360pt;}
.ws2_c01018{word-spacing:20.722000pt;}
.ws15_c01018{word-spacing:20.785760pt;}
.wsc_c01018{word-spacing:20.849520pt;}
.wse_c01018{word-spacing:21.487120pt;}
.ws13_c01018{word-spacing:21.742160pt;}
.ws17_c01018{word-spacing:22.188480pt;}
.ws6_c01018{word-spacing:22.252240pt;}
.ws11_c01018{word-spacing:22.316000pt;}
.ws16_c01018{word-spacing:23.208640pt;}
.ws14_c01018{word-spacing:23.718720pt;}
.ws0_c01018{word-spacing:23.846240pt;}
.ws9_c01018{word-spacing:24.037520pt;}
.wsb_c01018{word-spacing:24.356320pt;}
.ws19_c01018{word-spacing:25.567760pt;}
.ws1a_c01018{word-spacing:25.822800pt;}
.ws5_c01018{word-spacing:26.205360pt;}
.wsd_c01018{word-spacing:26.587920pt;}
.ws1c_c01018{word-spacing:28.268352pt;}
.wsf_c01018{word-spacing:28.500720pt;}
._0_c01018{margin-left:-36.151920pt;}
._9_c01018{margin-left:-32.963920pt;}
._4_c01018{margin-left:-31.242400pt;}
._3_c01018{margin-left:-29.520880pt;}
._11_c01018{margin-left:-26.269120pt;}
._8_c01018{margin-left:-24.292560pt;}
._15_c01018{margin-left:-22.212432pt;}
._13_c01018{margin-left:-21.262096pt;}
._7_c01018{margin-left:-6.949840pt;}
._a_c01018{margin-left:-5.292080pt;}
._c_c01018{margin-left:-3.698080pt;}
._b_c01018{margin-left:-2.677920pt;}
._6_c01018{margin-left:-1.721520pt;}
._5_c01018{width:1.721520pt;}
._e_c01018{width:2.692213pt;}
._d_c01018{width:4.674987pt;}
._14_c01018{width:7.305173pt;}
._10_c01018{width:9.755280pt;}
._2_c01018{width:19.128000pt;}
._12_c01018{width:26.779200pt;}
._f_c01018{width:70.518560pt;}
._1_c01018{width:829.394320pt;}
.fs2_c01018{font-size:37.194667pt;}
.fs1_c01018{font-size:42.506667pt;}
.fs3_c01018{font-size:53.136000pt;}
.fs0_c01018{font-size:63.760000pt;}
.y0_c01018{bottom:0.000000pt;}
.y25_c01018{bottom:83.060000pt;}
.y24_c01018{bottom:103.820000pt;}
.y23_c01018{bottom:114.940000pt;}
.y22_c01018{bottom:130.880000pt;}
.y21_c01018{bottom:135.701333pt;}
.y20_c01018{bottom:160.522667pt;}
.y1f_c01018{bottom:184.425333pt;}
.y1e_c01018{bottom:208.329333pt;}
.y1d_c01018{bottom:232.232000pt;}
.y1c_c01018{bottom:256.134667pt;}
.y1b_c01018{bottom:280.037333pt;}
.y1a_c01018{bottom:303.941333pt;}
.y19_c01018{bottom:327.844000pt;}
.y18_c01018{bottom:351.746667pt;}
.y17_c01018{bottom:375.649333pt;}
.y16_c01018{bottom:399.552000pt;}
.y15_c01018{bottom:423.456000pt;}
.y14_c01018{bottom:447.358667pt;}
.y13_c01018{bottom:471.261333pt;}
.y12_c01018{bottom:510.890667pt;}
.y11_c01018{bottom:534.793333pt;}
.y10_c01018{bottom:558.696000pt;}
.yf_c01018{bottom:582.598667pt;}
.ye_c01018{bottom:606.502667pt;}
.yd_c01018{bottom:646.130667pt;}
.yc_c01018{bottom:670.033333pt;}
.yb_c01018{bottom:693.937333pt;}
.ya_c01018{bottom:724.702667pt;}
.y9_c01018{bottom:774.677333pt;}
.y8_c01018{bottom:798.581333pt;}
.y7_c01018{bottom:838.209333pt;}
.y6_c01018{bottom:862.112000pt;}
.y5_c01018{bottom:886.016000pt;}
.y4_c01018{bottom:909.918667pt;}
.y3_c01018{bottom:949.546667pt;}
.y2_c01018{bottom:973.450667pt;}
.y1_c01018{bottom:1032.964000pt;}
.h8_c01018{height:25.143595pt;}
.h6_c01018{height:34.001333pt;}
.h7_c01018{height:39.852000pt;}
.h2_c01018{height:47.820000pt;}
.h5_c01018{height:51.870507pt;}
.h3_c01018{height:51.875840pt;}
.h4_c01018{height:53.137333pt;}
.h1_c01018{height:1123.333333pt;}
.h0_c01018{height:1123.653333pt;}
.w0_c01018{width:794.550667pt;}
.w1_c01018{width:794.666667pt;}
.x0_c01018{left:0.000000pt;}
.x1_c01018{left:113.385333pt;}
.x6_c01018{left:120.746667pt;}
.x2_c01018{left:142.078667pt;}
.x4_c01018{left:152.405333pt;}
.x3_c01018{left:175.817333pt;}
.x7_c01018{left:290.840000pt;}
.x5_c01018{left:588.561333pt;}
}





/* 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_78afaf5bc585b745da9fd9e9.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.001000;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_e891a519d8d47927f2b560f9.woff2')format("woff");}.ff2_c01019{font-family:ff2_c01019;line-height:1.001000;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_c01019;src:url('chunks/assets/font_8c32e81e40ad74e6e1f9c8cc.woff2')format("woff");}.ff3_c01019{font-family:ff3_c01019;line-height:1.001000;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_c01019;src:url('chunks/assets/font_cecadd707cb53e8e29756be4.woff2')format("woff");}.ff4_c01019{font-family:ff4_c01019;line-height:0.697000;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_c01019;src:url('chunks/assets/font_2a6d11623e6e00aa1f1493f4.woff2')format("woff");}.ff5_c01019{font-family:ff5_c01019;line-height:0.696000;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_c01019;src:url('chunks/assets/font_f0c0d9b0e416b91378a45212.woff2')format("woff");}.ff6_c01019{font-family:ff6_c01019;line-height:1.000000;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_c01019;src:url('chunks/assets/font_58a1f8dbef8a187c5be6c7e0.woff2')format("woff");}.ff7_c01019{font-family:ff7_c01019;line-height:1.000000;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);}
.v2_c01019{vertical-align:-21.690000px;}
.v0_c01019{vertical-align:0.000000px;}
.v1_c01019{vertical-align:26.034000px;}
.ls0_c01019{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws10_c01019{word-spacing:-0.047820px;}
.ws1e_c01019{word-spacing:-0.041844px;}
.ws26_c01019{word-spacing:0.000000px;}
.ws19_c01019{word-spacing:16.856550px;}
.wsd_c01019{word-spacing:18.434610px;}
.ws1f_c01019{word-spacing:19.547406px;}
.ws24_c01019{word-spacing:19.666962px;}
.ws22_c01019{word-spacing:19.726740px;}
.ws21_c01019{word-spacing:19.846296px;}
.ws12_c01019{word-spacing:20.945160px;}
.ws20_c01019{word-spacing:21.041856px;}
.ws23_c01019{word-spacing:21.161412px;}
.ws25_c01019{word-spacing:21.280968px;}
.ws1b_c01019{word-spacing:21.447270px;}
.ws4_c01019{word-spacing:21.662460px;}
.ws17_c01019{word-spacing:22.236300px;}
.ws11_c01019{word-spacing:23.240520px;}
.ws9_c01019{word-spacing:23.312250px;}
.ws16_c01019{word-spacing:23.383980px;}
.ws7_c01019{word-spacing:24.603390px;}
.ws1c_c01019{word-spacing:24.818580px;}
.ws8_c01019{word-spacing:25.033770px;}
.ws3_c01019{word-spacing:25.105500px;}
.ws5_c01019{word-spacing:25.607610px;}
.ws15_c01019{word-spacing:25.966260px;}
.ws1a_c01019{word-spacing:26.109720px;}
.ws2_c01019{word-spacing:26.611830px;}
.ws0_c01019{word-spacing:26.827020px;}
.ws13_c01019{word-spacing:27.257400px;}
.wsb_c01019{word-spacing:27.616050px;}
.ws1d_c01019{word-spacing:27.759510px;}
.wsc_c01019{word-spacing:28.907190px;}
.wsf_c01019{word-spacing:29.337570px;}
.wsa_c01019{word-spacing:30.270060px;}
.wse_c01019{word-spacing:31.130820px;}
.ws18_c01019{word-spacing:32.780610px;}
.ws14_c01019{word-spacing:33.229770px;}
.ws6_c01019{word-spacing:35.362890px;}
._0_c01019{margin-left:-40.670910px;}
._8_c01019{margin-left:-37.084410px;}
._3_c01019{margin-left:-35.793270px;}
._b_c01019{margin-left:-34.143480px;}
._d_c01019{margin-left:-33.139260px;}
._10_c01019{margin-left:-29.692230px;}
._6_c01019{margin-left:-28.692000px;}
._c_c01019{margin-left:-27.329130px;}
._f_c01019{margin-left:-24.901068px;}
._e_c01019{margin-left:-23.658390px;}
._5_c01019{margin-left:-7.388190px;}
._4_c01019{margin-left:-5.523210px;}
._2_c01019{margin-left:-3.586500px;}
._9_c01019{margin-left:-2.008440px;}
._7_c01019{width:1.936710px;}
._a_c01019{width:3.586500px;}
._1_c01019{width:933.068610px;}
.fc0_c01019{color:rgb(0,0,0);}
.fs2_c01019{font-size:41.844000px;}
.fs1_c01019{font-size:47.820000px;}
.fs3_c01019{font-size:59.778000px;}
.fs0_c01019{font-size:71.730000px;}
.y0_c01019{bottom:0.000000px;}
.y25_c01019{bottom:98.865000px;}
.y24_c01019{bottom:111.375000px;}
.y23_c01019{bottom:134.731500px;}
.y22_c01019{bottom:147.240000px;}
.y21_c01019{bottom:170.596500px;}
.y20_c01019{bottom:197.062500px;}
.y1f_c01019{bottom:223.954500px;}
.y1e_c01019{bottom:269.113500px;}
.y1d_c01019{bottom:296.004000px;}
.y1c_c01019{bottom:341.163000px;}
.y1b_c01019{bottom:368.055000px;}
.y1a_c01019{bottom:394.945500px;}
.y19_c01019{bottom:421.836000px;}
.y18_c01019{bottom:448.726500px;}
.y17_c01019{bottom:475.618500px;}
.y16_c01019{bottom:502.509000px;}
.y15_c01019{bottom:529.399500px;}
.y14_c01019{bottom:556.290000px;}
.y13_c01019{bottom:583.180500px;}
.y12_c01019{bottom:610.072500px;}
.y11_c01019{bottom:636.963000px;}
.y10_c01019{bottom:682.122000px;}
.yf_c01019{bottom:709.012500px;}
.ye_c01019{bottom:735.904500px;}
.yd_c01019{bottom:762.795000px;}
.yc_c01019{bottom:789.685500px;}
.yb_c01019{bottom:816.576000px;}
.ya_c01019{bottom:843.468000px;}
.y9_c01019{bottom:888.627000px;}
.y8_c01019{bottom:933.786000px;}
.y7_c01019{bottom:960.678000px;}
.y6_c01019{bottom:987.568500px;}
.y5_c01019{bottom:1014.459000px;}
.y4_c01019{bottom:1041.349500px;}
.y3_c01019{bottom:1068.240000px;}
.y2_c01019{bottom:1095.132000px;}
.y1_c01019{bottom:1162.084500px;}
.h5_c01019{height:28.286544px;}
.h6_c01019{height:44.833500px;}
.h2_c01019{height:53.797500px;}
.h4_c01019{height:58.354320px;}
.h3_c01019{height:58.360320px;}
.h1_c01019{height:1263.750000px;}
.h0_c01019{height:1264.110000px;}
.w0_c01019{width:893.869500px;}
.w1_c01019{width:894.000000px;}
.x0_c01019{left:0.000000px;}
.x1_c01019{left:127.558500px;}
.x5_c01019{left:135.840000px;}
.x4_c01019{left:159.838500px;}
.x3_c01019{left:171.456000px;}
.x2_c01019{left:197.794500px;}
@media print{
.v2_c01019{vertical-align:-19.280000pt;}
.v0_c01019{vertical-align:0.000000pt;}
.v1_c01019{vertical-align:23.141333pt;}
.ls0_c01019{letter-spacing:0.000000pt;}
.ws1_c01019{word-spacing:-0.063760pt;}
.ws10_c01019{word-spacing:-0.042507pt;}
.ws1e_c01019{word-spacing:-0.037195pt;}
.ws26_c01019{word-spacing:0.000000pt;}
.ws19_c01019{word-spacing:14.983600pt;}
.wsd_c01019{word-spacing:16.386320pt;}
.ws1f_c01019{word-spacing:17.375472pt;}
.ws24_c01019{word-spacing:17.481744pt;}
.ws22_c01019{word-spacing:17.534880pt;}
.ws21_c01019{word-spacing:17.641152pt;}
.ws12_c01019{word-spacing:18.617920pt;}
.ws20_c01019{word-spacing:18.703872pt;}
.ws23_c01019{word-spacing:18.810144pt;}
.ws25_c01019{word-spacing:18.916416pt;}
.ws1b_c01019{word-spacing:19.064240pt;}
.ws4_c01019{word-spacing:19.255520pt;}
.ws17_c01019{word-spacing:19.765600pt;}
.ws11_c01019{word-spacing:20.658240pt;}
.ws9_c01019{word-spacing:20.722000pt;}
.ws16_c01019{word-spacing:20.785760pt;}
.ws7_c01019{word-spacing:21.869680pt;}
.ws1c_c01019{word-spacing:22.060960pt;}
.ws8_c01019{word-spacing:22.252240pt;}
.ws3_c01019{word-spacing:22.316000pt;}
.ws5_c01019{word-spacing:22.762320pt;}
.ws15_c01019{word-spacing:23.081120pt;}
.ws1a_c01019{word-spacing:23.208640pt;}
.ws2_c01019{word-spacing:23.654960pt;}
.ws0_c01019{word-spacing:23.846240pt;}
.ws13_c01019{word-spacing:24.228800pt;}
.wsb_c01019{word-spacing:24.547600pt;}
.ws1d_c01019{word-spacing:24.675120pt;}
.wsc_c01019{word-spacing:25.695280pt;}
.wsf_c01019{word-spacing:26.077840pt;}
.wsa_c01019{word-spacing:26.906720pt;}
.wse_c01019{word-spacing:27.671840pt;}
.ws18_c01019{word-spacing:29.138320pt;}
.ws14_c01019{word-spacing:29.537573pt;}
.ws6_c01019{word-spacing:31.433680pt;}
._0_c01019{margin-left:-36.151920pt;}
._8_c01019{margin-left:-32.963920pt;}
._3_c01019{margin-left:-31.816240pt;}
._b_c01019{margin-left:-30.349760pt;}
._d_c01019{margin-left:-29.457120pt;}
._10_c01019{margin-left:-26.393093pt;}
._6_c01019{margin-left:-25.504000pt;}
._c_c01019{margin-left:-24.292560pt;}
._f_c01019{margin-left:-22.134283pt;}
._e_c01019{margin-left:-21.029680pt;}
._5_c01019{margin-left:-6.567280pt;}
._4_c01019{margin-left:-4.909520pt;}
._2_c01019{margin-left:-3.188000pt;}
._9_c01019{margin-left:-1.785280pt;}
._7_c01019{width:1.721520pt;}
._a_c01019{width:3.188000pt;}
._1_c01019{width:829.394320pt;}
.fs2_c01019{font-size:37.194667pt;}
.fs1_c01019{font-size:42.506667pt;}
.fs3_c01019{font-size:53.136000pt;}
.fs0_c01019{font-size:63.760000pt;}
.y0_c01019{bottom:0.000000pt;}
.y25_c01019{bottom:87.880000pt;}
.y24_c01019{bottom:99.000000pt;}
.y23_c01019{bottom:119.761333pt;}
.y22_c01019{bottom:130.880000pt;}
.y21_c01019{bottom:151.641333pt;}
.y20_c01019{bottom:175.166667pt;}
.y1f_c01019{bottom:199.070667pt;}
.y1e_c01019{bottom:239.212000pt;}
.y1d_c01019{bottom:263.114667pt;}
.y1c_c01019{bottom:303.256000pt;}
.y1b_c01019{bottom:327.160000pt;}
.y1a_c01019{bottom:351.062667pt;}
.y19_c01019{bottom:374.965333pt;}
.y18_c01019{bottom:398.868000pt;}
.y17_c01019{bottom:422.772000pt;}
.y16_c01019{bottom:446.674667pt;}
.y15_c01019{bottom:470.577333pt;}
.y14_c01019{bottom:494.480000pt;}
.y13_c01019{bottom:518.382667pt;}
.y12_c01019{bottom:542.286667pt;}
.y11_c01019{bottom:566.189333pt;}
.y10_c01019{bottom:606.330667pt;}
.yf_c01019{bottom:630.233333pt;}
.ye_c01019{bottom:654.137333pt;}
.yd_c01019{bottom:678.040000pt;}
.yc_c01019{bottom:701.942667pt;}
.yb_c01019{bottom:725.845333pt;}
.ya_c01019{bottom:749.749333pt;}
.y9_c01019{bottom:789.890667pt;}
.y8_c01019{bottom:830.032000pt;}
.y7_c01019{bottom:853.936000pt;}
.y6_c01019{bottom:877.838667pt;}
.y5_c01019{bottom:901.741333pt;}
.y4_c01019{bottom:925.644000pt;}
.y3_c01019{bottom:949.546667pt;}
.y2_c01019{bottom:973.450667pt;}
.y1_c01019{bottom:1032.964000pt;}
.h5_c01019{height:25.143595pt;}
.h6_c01019{height:39.852000pt;}
.h2_c01019{height:47.820000pt;}
.h4_c01019{height:51.870507pt;}
.h3_c01019{height:51.875840pt;}
.h1_c01019{height:1123.333333pt;}
.h0_c01019{height:1123.653333pt;}
.w0_c01019{width:794.550667pt;}
.w1_c01019{width:794.666667pt;}
.x0_c01019{left:0.000000pt;}
.x1_c01019{left:113.385333pt;}
.x5_c01019{left:120.746667pt;}
.x4_c01019{left:142.078667pt;}
.x3_c01019{left:152.405333pt;}
.x2_c01019{left:175.817333pt;}
}





/* 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_c196a119b3f67f5f3264d939.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.001000;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_d89eb890e943fc9dcdf78667.woff2')format("woff");}.ff2_c01020{font-family:ff2_c01020;line-height:1.001000;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_c01020;src:url('chunks/assets/font_fe5142118f22386f44fe9d0d.woff2')format("woff");}.ff3_c01020{font-family:ff3_c01020;line-height:0.697000;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_c01020;src:url('chunks/assets/font_a3fe06476e9cb92f91079d03.woff2')format("woff");}.ff4_c01020{font-family:ff4_c01020;line-height:1.001000;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_c01020;src:url('chunks/assets/font_3a66109a07ca127f97e56382.woff2')format("woff");}.ff5_c01020{font-family:ff5_c01020;line-height:0.696000;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_c01020;src:url('chunks/assets/font_c04390cf383eda2a75c31de6.woff2')format("woff");}.ff6_c01020{font-family:ff6_c01020;line-height:1.000000;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_c01020;src:url('chunks/assets/font_3a23c151d7f40a9257b8dd33.woff2')format("woff");}.ff7_c01020{font-family:ff7_c01020;line-height:1.000000;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);}
.v2_c01020{vertical-align:-21.696000px;}
.v0_c01020{vertical-align:0.000000px;}
.v1_c01020{vertical-align:26.034000px;}
.ls0_c01020{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01020{word-spacing:-0.071730px;}
.ws4_c01020{word-spacing:-0.047820px;}
.ws24_c01020{word-spacing:-0.041844px;}
.ws29_c01020{word-spacing:0.000000px;}
.ws1b_c01020{word-spacing:16.641360px;}
.ws20_c01020{word-spacing:16.713090px;}
.wsd_c01020{word-spacing:17.430390px;}
.ws6_c01020{word-spacing:17.645580px;}
.ws21_c01020{word-spacing:19.151910px;}
.ws25_c01020{word-spacing:19.846296px;}
.ws28_c01020{word-spacing:19.906074px;}
.ws27_c01020{word-spacing:20.085408px;}
.ws1f_c01020{word-spacing:20.156130px;}
.ws26_c01020{word-spacing:21.280968px;}
.ws18_c01020{word-spacing:23.240520px;}
.ws3_c01020{word-spacing:23.312250px;}
.ws1e_c01020{word-spacing:23.383980px;}
.ws19_c01020{word-spacing:24.388200px;}
.ws17_c01020{word-spacing:24.962040px;}
.ws7_c01020{word-spacing:25.033770px;}
.ws15_c01020{word-spacing:25.464150px;}
.ws12_c01020{word-spacing:26.181450px;}
.ws14_c01020{word-spacing:26.253180px;}
.ws0_c01020{word-spacing:26.827020px;}
.ws11_c01020{word-spacing:27.902970px;}
.ws22_c01020{word-spacing:28.261620px;}
.ws2_c01020{word-spacing:28.763730px;}
.ws13_c01020{word-spacing:29.255100px;}
.ws16_c01020{word-spacing:29.265840px;}
.ws10_c01020{word-spacing:29.292150px;}
.ws23_c01020{word-spacing:29.337570px;}
.wsa_c01020{word-spacing:29.409300px;}
.ws1c_c01020{word-spacing:29.983140px;}
.ws8_c01020{word-spacing:30.054870px;}
.wsb_c01020{word-spacing:30.198330px;}
.wsc_c01020{word-spacing:30.270060px;}
.ws9_c01020{word-spacing:30.700440px;}
.ws1d_c01020{word-spacing:31.202550px;}
.ws1a_c01020{word-spacing:31.632930px;}
.wse_c01020{word-spacing:32.278500px;}
.ws5_c01020{word-spacing:32.350230px;}
.wsf_c01020{word-spacing:38.246790px;}
._0_c01020{margin-left:-40.670910px;}
._e_c01020{margin-left:-37.443060px;}
._4_c01020{margin-left:-35.147700px;}
._c_c01020{margin-left:-33.067530px;}
._11_c01020{margin-left:-30.768738px;}
._a_c01020{margin-left:-28.692000px;}
._3_c01020{margin-left:-27.400860px;}
._12_c01020{margin-left:-22.499628px;}
._2_c01020{margin-left:-7.890300px;}
._9_c01020{margin-left:-6.886080px;}
._d_c01020{margin-left:-5.881860px;}
._7_c01020{margin-left:-3.873420px;}
._5_c01020{margin-left:-2.080170px;}
._13_c01020{width:1.052076px;}
._8_c01020{width:2.151900px;}
._6_c01020{width:3.873420px;}
._b_c01020{width:5.402070px;}
._f_c01020{width:24.388200px;}
._10_c01020{width:35.204940px;}
._1_c01020{width:933.068610px;}
.fc0_c01020{color:rgb(0,0,0);}
.fs2_c01020{font-size:41.844000px;}
.fs1_c01020{font-size:47.820000px;}
.fs3_c01020{font-size:59.778000px;}
.fs0_c01020{font-size:71.730000px;}
.y0_c01020{bottom:0.000000px;}
.y28_c01020{bottom:118.204500px;}
.y27_c01020{bottom:136.137000px;}
.y26_c01020{bottom:148.647000px;}
.y25_c01020{bottom:172.002000px;}
.y24_c01020{bottom:189.934500px;}
.y23_c01020{bottom:207.868500px;}
.y22_c01020{bottom:234.624000px;}
.y21_c01020{bottom:261.514500px;}
.y20_c01020{bottom:288.406500px;}
.y1f_c01020{bottom:315.297000px;}
.y1e_c01020{bottom:342.187500px;}
.y1d_c01020{bottom:369.078000px;}
.y1c_c01020{bottom:395.970000px;}
.y1b_c01020{bottom:422.860500px;}
.y1a_c01020{bottom:449.751000px;}
.y19_c01020{bottom:476.641500px;}
.y18_c01020{bottom:503.533500px;}
.y17_c01020{bottom:530.424000px;}
.y16_c01020{bottom:557.314500px;}
.y15_c01020{bottom:584.205000px;}
.y14_c01020{bottom:611.095500px;}
.y13_c01020{bottom:637.987500px;}
.y12_c01020{bottom:664.878000px;}
.y11_c01020{bottom:691.768500px;}
.y10_c01020{bottom:718.659000px;}
.yf_c01020{bottom:745.551000px;}
.ye_c01020{bottom:772.441500px;}
.yd_c01020{bottom:799.332000px;}
.yc_c01020{bottom:826.222500px;}
.yb_c01020{bottom:853.114500px;}
.ya_c01020{bottom:880.005000px;}
.y9_c01020{bottom:906.895500px;}
.y8_c01020{bottom:933.786000px;}
.y7_c01020{bottom:960.678000px;}
.y6_c01020{bottom:987.568500px;}
.y5_c01020{bottom:1014.459000px;}
.y4_c01020{bottom:1041.349500px;}
.y3_c01020{bottom:1068.240000px;}
.y2_c01020{bottom:1095.132000px;}
.y1_c01020{bottom:1162.084500px;}
.h5_c01020{height:28.286544px;}
.h6_c01020{height:44.833500px;}
.h2_c01020{height:53.797500px;}
.h4_c01020{height:58.354320px;}
.h3_c01020{height:58.360320px;}
.h1_c01020{height:1263.750000px;}
.h0_c01020{height:1264.110000px;}
.w0_c01020{width:893.869500px;}
.w1_c01020{width:894.000000px;}
.x0_c01020{left:0.000000px;}
.x1_c01020{left:127.558500px;}
.x3_c01020{left:135.840000px;}
.x2_c01020{left:159.838500px;}
@media print{
.v2_c01020{vertical-align:-19.285333pt;}
.v0_c01020{vertical-align:0.000000pt;}
.v1_c01020{vertical-align:23.141333pt;}
.ls0_c01020{letter-spacing:0.000000pt;}
.ws1_c01020{word-spacing:-0.063760pt;}
.ws4_c01020{word-spacing:-0.042507pt;}
.ws24_c01020{word-spacing:-0.037195pt;}
.ws29_c01020{word-spacing:0.000000pt;}
.ws1b_c01020{word-spacing:14.792320pt;}
.ws20_c01020{word-spacing:14.856080pt;}
.wsd_c01020{word-spacing:15.493680pt;}
.ws6_c01020{word-spacing:15.684960pt;}
.ws21_c01020{word-spacing:17.023920pt;}
.ws25_c01020{word-spacing:17.641152pt;}
.ws28_c01020{word-spacing:17.694288pt;}
.ws27_c01020{word-spacing:17.853696pt;}
.ws1f_c01020{word-spacing:17.916560pt;}
.ws26_c01020{word-spacing:18.916416pt;}
.ws18_c01020{word-spacing:20.658240pt;}
.ws3_c01020{word-spacing:20.722000pt;}
.ws1e_c01020{word-spacing:20.785760pt;}
.ws19_c01020{word-spacing:21.678400pt;}
.ws17_c01020{word-spacing:22.188480pt;}
.ws7_c01020{word-spacing:22.252240pt;}
.ws15_c01020{word-spacing:22.634800pt;}
.ws12_c01020{word-spacing:23.272400pt;}
.ws14_c01020{word-spacing:23.336160pt;}
.ws0_c01020{word-spacing:23.846240pt;}
.ws11_c01020{word-spacing:24.802640pt;}
.ws22_c01020{word-spacing:25.121440pt;}
.ws2_c01020{word-spacing:25.567760pt;}
.ws13_c01020{word-spacing:26.004533pt;}
.ws16_c01020{word-spacing:26.014080pt;}
.ws10_c01020{word-spacing:26.037467pt;}
.ws23_c01020{word-spacing:26.077840pt;}
.wsa_c01020{word-spacing:26.141600pt;}
.ws1c_c01020{word-spacing:26.651680pt;}
.ws8_c01020{word-spacing:26.715440pt;}
.wsb_c01020{word-spacing:26.842960pt;}
.wsc_c01020{word-spacing:26.906720pt;}
.ws9_c01020{word-spacing:27.289280pt;}
.ws1d_c01020{word-spacing:27.735600pt;}
.ws1a_c01020{word-spacing:28.118160pt;}
.wse_c01020{word-spacing:28.692000pt;}
.ws5_c01020{word-spacing:28.755760pt;}
.wsf_c01020{word-spacing:33.997147pt;}
._0_c01020{margin-left:-36.151920pt;}
._e_c01020{margin-left:-33.282720pt;}
._4_c01020{margin-left:-31.242400pt;}
._c_c01020{margin-left:-29.393360pt;}
._11_c01020{margin-left:-27.349989pt;}
._a_c01020{margin-left:-25.504000pt;}
._3_c01020{margin-left:-24.356320pt;}
._12_c01020{margin-left:-19.999669pt;}
._2_c01020{margin-left:-7.013600pt;}
._9_c01020{margin-left:-6.120960pt;}
._d_c01020{margin-left:-5.228320pt;}
._7_c01020{margin-left:-3.443040pt;}
._5_c01020{margin-left:-1.849040pt;}
._13_c01020{width:0.935179pt;}
._8_c01020{width:1.912800pt;}
._6_c01020{width:3.443040pt;}
._b_c01020{width:4.801840pt;}
._f_c01020{width:21.678400pt;}
._10_c01020{width:31.293280pt;}
._1_c01020{width:829.394320pt;}
.fs2_c01020{font-size:37.194667pt;}
.fs1_c01020{font-size:42.506667pt;}
.fs3_c01020{font-size:53.136000pt;}
.fs0_c01020{font-size:63.760000pt;}
.y0_c01020{bottom:0.000000pt;}
.y28_c01020{bottom:105.070667pt;}
.y27_c01020{bottom:121.010667pt;}
.y26_c01020{bottom:132.130667pt;}
.y25_c01020{bottom:152.890667pt;}
.y24_c01020{bottom:168.830667pt;}
.y23_c01020{bottom:184.772000pt;}
.y22_c01020{bottom:208.554667pt;}
.y21_c01020{bottom:232.457333pt;}
.y20_c01020{bottom:256.361333pt;}
.y1f_c01020{bottom:280.264000pt;}
.y1e_c01020{bottom:304.166667pt;}
.y1d_c01020{bottom:328.069333pt;}
.y1c_c01020{bottom:351.973333pt;}
.y1b_c01020{bottom:375.876000pt;}
.y1a_c01020{bottom:399.778667pt;}
.y19_c01020{bottom:423.681333pt;}
.y18_c01020{bottom:447.585333pt;}
.y17_c01020{bottom:471.488000pt;}
.y16_c01020{bottom:495.390667pt;}
.y15_c01020{bottom:519.293333pt;}
.y14_c01020{bottom:543.196000pt;}
.y13_c01020{bottom:567.100000pt;}
.y12_c01020{bottom:591.002667pt;}
.y11_c01020{bottom:614.905333pt;}
.y10_c01020{bottom:638.808000pt;}
.yf_c01020{bottom:662.712000pt;}
.ye_c01020{bottom:686.614667pt;}
.yd_c01020{bottom:710.517333pt;}
.yc_c01020{bottom:734.420000pt;}
.yb_c01020{bottom:758.324000pt;}
.ya_c01020{bottom:782.226667pt;}
.y9_c01020{bottom:806.129333pt;}
.y8_c01020{bottom:830.032000pt;}
.y7_c01020{bottom:853.936000pt;}
.y6_c01020{bottom:877.838667pt;}
.y5_c01020{bottom:901.741333pt;}
.y4_c01020{bottom:925.644000pt;}
.y3_c01020{bottom:949.546667pt;}
.y2_c01020{bottom:973.450667pt;}
.y1_c01020{bottom:1032.964000pt;}
.h5_c01020{height:25.143595pt;}
.h6_c01020{height:39.852000pt;}
.h2_c01020{height:47.820000pt;}
.h4_c01020{height:51.870507pt;}
.h3_c01020{height:51.875840pt;}
.h1_c01020{height:1123.333333pt;}
.h0_c01020{height:1123.653333pt;}
.w0_c01020{width:794.550667pt;}
.w1_c01020{width:794.666667pt;}
.x0_c01020{left:0.000000pt;}
.x1_c01020{left:113.385333pt;}
.x3_c01020{left:120.746667pt;}
.x2_c01020{left:142.078667pt;}
}





/* 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_82735cb3047b6b2d34ae92f7.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.001000;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_fe5c6f73d71861ca77be5eae.woff2')format("woff");}.ff2_c01021{font-family:ff2_c01021;line-height:1.001000;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_c01021;src:url('chunks/assets/font_a0fcfbe8024544f6644b6547.woff2')format("woff");}.ff3_c01021{font-family:ff3_c01021;line-height:1.001000;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_c01021;src:url('chunks/assets/font_eabc34ef762c3385ee43dcdb.woff2')format("woff");}.ff4_c01021{font-family:ff4_c01021;line-height:1.000000;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;}
.v3_c01021{vertical-align:5.976000px;}
.v1_c01021{vertical-align:18.132000px;}
.v2_c01021{vertical-align:21.756000px;}
.ls3_c01021{letter-spacing:0.000000px;}
.ls0_c01021{letter-spacing:22.003590px;}
.ls1_c01021{letter-spacing:23.641590px;}
.ls2_c01021{letter-spacing:27.577590px;}
.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;}
}
.ws1_c01021{word-spacing:-0.071730px;}
.ws26_c01021{word-spacing:0.000000px;}
.ws14_c01021{word-spacing:16.067520px;}
.ws13_c01021{word-spacing:16.139250px;}
.ws1b_c01021{word-spacing:17.358660px;}
.ws18_c01021{word-spacing:20.299590px;}
.ws22_c01021{word-spacing:20.514780px;}
.ws4_c01021{word-spacing:21.519000px;}
.ws1a_c01021{word-spacing:21.662460px;}
.ws5_c01021{word-spacing:21.949380px;}
.ws2_c01021{word-spacing:22.308030px;}
.ws11_c01021{word-spacing:23.312250px;}
.ws1d_c01021{word-spacing:23.383980px;}
.ws7_c01021{word-spacing:23.527440px;}
.ws9_c01021{word-spacing:23.599170px;}
.ws10_c01021{word-spacing:23.742630px;}
.ws6_c01021{word-spacing:23.814360px;}
.ws1c_c01021{word-spacing:24.818580px;}
.wsf_c01021{word-spacing:25.966260px;}
.ws25_c01021{word-spacing:26.755290px;}
.ws0_c01021{word-spacing:26.827020px;}
.ws19_c01021{word-spacing:27.042210px;}
.ws15_c01021{word-spacing:27.400860px;}
.wsc_c01021{word-spacing:27.472590px;}
.wse_c01021{word-spacing:27.544320px;}
.ws8_c01021{word-spacing:27.985770px;}
.ws3_c01021{word-spacing:28.046430px;}
.ws17_c01021{word-spacing:28.763730px;}
.wsb_c01021{word-spacing:28.907190px;}
.wsa_c01021{word-spacing:28.952520px;}
.ws16_c01021{word-spacing:29.624490px;}
.ws20_c01021{word-spacing:30.556980px;}
.ws23_c01021{word-spacing:30.915630px;}
.ws24_c01021{word-spacing:31.489470px;}
.ws21_c01021{word-spacing:32.278500px;}
.ws1e_c01021{word-spacing:32.364576px;}
.ws1f_c01021{word-spacing:32.450652px;}
.wsd_c01021{word-spacing:35.181540px;}
.ws12_c01021{word-spacing:79.261650px;}
._0_c01021{margin-left:-40.670910px;}
._8_c01021{margin-left:-37.227870px;}
._3_c01021{margin-left:-35.219430px;}
._e_c01021{margin-left:-33.210990px;}
._7_c01021{margin-left:-27.329130px;}
._6_c01021{margin-left:-7.746840px;}
._f_c01021{margin-left:-5.881860px;}
._5_c01021{margin-left:-4.232070px;}
._12_c01021{margin-left:-3.101820px;}
._2_c01021{margin-left:-1.936710px;}
._a_c01021{width:1.093380px;}
._4_c01021{width:2.151900px;}
._11_c01021{width:3.945150px;}
._16_c01021{width:11.346912px;}
._13_c01021{width:17.197770px;}
._14_c01021{width:19.725750px;}
._d_c01021{width:24.951300px;}
._9_c01021{width:29.763000px;}
._c_c01021{width:31.407420px;}
._10_c01021{width:34.700550px;}
._b_c01021{width:37.074150px;}
._17_c01021{width:79.333380px;}
._15_c01021{width:95.200056px;}
._1_c01021{width:933.068610px;}
.fc0_c01021{color:rgb(0,0,0);}
.fs0_c01021{font-size:71.730000px;}
.fs1_c01021{font-size:86.076000px;}
.y0_c01021{bottom:0.000000px;}
.y21_c01021{bottom:106.488000px;}
.y20_c01021{bottom:133.378500px;}
.y1f_c01021{bottom:160.270500px;}
.y1e_c01021{bottom:194.881500px;}
.y1d_c01021{bottom:251.170500px;}
.y1c_c01021{bottom:278.061000px;}
.y1b_c01021{bottom:304.953000px;}
.y1a_c01021{bottom:331.843500px;}
.y19_c01021{bottom:366.454500px;}
.y18_c01021{bottom:425.808000px;}
.y17_c01021{bottom:493.305000px;}
.y16_c01021{bottom:520.195500px;}
.y15_c01021{bottom:547.086000px;}
.y14_c01021{bottom:573.976500px;}
.y13_c01021{bottom:600.868500px;}
.y12_c01021{bottom:627.759000px;}
.y11_c01021{bottom:654.649500px;}
.y10_c01021{bottom:681.540000px;}
.yf_c01021{bottom:708.432000px;}
.ye_c01021{bottom:735.322500px;}
.yd_c01021{bottom:762.213000px;}
.yc_c01021{bottom:789.103500px;}
.yb_c01021{bottom:823.716000px;}
.ya_c01021{bottom:880.005000px;}
.y9_c01021{bottom:906.895500px;}
.y8_c01021{bottom:933.786000px;}
.y7_c01021{bottom:960.678000px;}
.y6_c01021{bottom:987.568500px;}
.y5_c01021{bottom:1014.459000px;}
.y4_c01021{bottom:1041.349500px;}
.y3_c01021{bottom:1068.240000px;}
.y2_c01021{bottom:1095.132000px;}
.y1_c01021{bottom:1162.084500px;}
.h2_c01021{height:53.797500px;}
.h6_c01021{height:59.773500px;}
.h5_c01021{height:64.557000px;}
.h3_c01021{height:71.929500px;}
.h4_c01021{height:86.313000px;}
.h1_c01021{height:1263.750000px;}
.h0_c01021{height:1264.110000px;}
.w0_c01021{width:893.869500px;}
.w1_c01021{width:894.000000px;}
.x0_c01021{left:0.000000px;}
.x1_c01021{left:127.558500px;}
.x2_c01021{left:159.838500px;}
.x6_c01021{left:285.655500px;}
.x5_c01021{left:342.517500px;}
.x3_c01021{left:428.352000px;}
.x4_c01021{left:721.932000px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.v3_c01021{vertical-align:5.312000pt;}
.v1_c01021{vertical-align:16.117333pt;}
.v2_c01021{vertical-align:19.338667pt;}
.ls3_c01021{letter-spacing:0.000000pt;}
.ls0_c01021{letter-spacing:19.558747pt;}
.ls1_c01021{letter-spacing:21.014747pt;}
.ls2_c01021{letter-spacing:24.513413pt;}
.ws1_c01021{word-spacing:-0.063760pt;}
.ws26_c01021{word-spacing:0.000000pt;}
.ws14_c01021{word-spacing:14.282240pt;}
.ws13_c01021{word-spacing:14.346000pt;}
.ws1b_c01021{word-spacing:15.429920pt;}
.ws18_c01021{word-spacing:18.044080pt;}
.ws22_c01021{word-spacing:18.235360pt;}
.ws4_c01021{word-spacing:19.128000pt;}
.ws1a_c01021{word-spacing:19.255520pt;}
.ws5_c01021{word-spacing:19.510560pt;}
.ws2_c01021{word-spacing:19.829360pt;}
.ws11_c01021{word-spacing:20.722000pt;}
.ws1d_c01021{word-spacing:20.785760pt;}
.ws7_c01021{word-spacing:20.913280pt;}
.ws9_c01021{word-spacing:20.977040pt;}
.ws10_c01021{word-spacing:21.104560pt;}
.ws6_c01021{word-spacing:21.168320pt;}
.ws1c_c01021{word-spacing:22.060960pt;}
.wsf_c01021{word-spacing:23.081120pt;}
.ws25_c01021{word-spacing:23.782480pt;}
.ws0_c01021{word-spacing:23.846240pt;}
.ws19_c01021{word-spacing:24.037520pt;}
.ws15_c01021{word-spacing:24.356320pt;}
.wsc_c01021{word-spacing:24.420080pt;}
.wse_c01021{word-spacing:24.483840pt;}
.ws8_c01021{word-spacing:24.876240pt;}
.ws3_c01021{word-spacing:24.930160pt;}
.ws17_c01021{word-spacing:25.567760pt;}
.wsb_c01021{word-spacing:25.695280pt;}
.wsa_c01021{word-spacing:25.735573pt;}
.ws16_c01021{word-spacing:26.332880pt;}
.ws20_c01021{word-spacing:27.161760pt;}
.ws23_c01021{word-spacing:27.480560pt;}
.ws24_c01021{word-spacing:27.990640pt;}
.ws21_c01021{word-spacing:28.692000pt;}
.ws1e_c01021{word-spacing:28.768512pt;}
.ws1f_c01021{word-spacing:28.845024pt;}
.wsd_c01021{word-spacing:31.272480pt;}
.ws12_c01021{word-spacing:70.454800pt;}
._0_c01021{margin-left:-36.151920pt;}
._8_c01021{margin-left:-33.091440pt;}
._3_c01021{margin-left:-31.306160pt;}
._e_c01021{margin-left:-29.520880pt;}
._7_c01021{margin-left:-24.292560pt;}
._6_c01021{margin-left:-6.886080pt;}
._f_c01021{margin-left:-5.228320pt;}
._5_c01021{margin-left:-3.761840pt;}
._12_c01021{margin-left:-2.757173pt;}
._2_c01021{margin-left:-1.721520pt;}
._a_c01021{width:0.971893pt;}
._4_c01021{width:1.912800pt;}
._11_c01021{width:3.506800pt;}
._16_c01021{width:10.086144pt;}
._13_c01021{width:15.286907pt;}
._14_c01021{width:17.534000pt;}
._d_c01021{width:22.178933pt;}
._9_c01021{width:26.456000pt;}
._c_c01021{width:27.917707pt;}
._10_c01021{width:30.844933pt;}
._b_c01021{width:32.954800pt;}
._17_c01021{width:70.518560pt;}
._15_c01021{width:84.622272pt;}
._1_c01021{width:829.394320pt;}
.fs0_c01021{font-size:63.760000pt;}
.fs1_c01021{font-size:76.512000pt;}
.y0_c01021{bottom:0.000000pt;}
.y21_c01021{bottom:94.656000pt;}
.y20_c01021{bottom:118.558667pt;}
.y1f_c01021{bottom:142.462667pt;}
.y1e_c01021{bottom:173.228000pt;}
.y1d_c01021{bottom:223.262667pt;}
.y1c_c01021{bottom:247.165333pt;}
.y1b_c01021{bottom:271.069333pt;}
.y1a_c01021{bottom:294.972000pt;}
.y19_c01021{bottom:325.737333pt;}
.y18_c01021{bottom:378.496000pt;}
.y17_c01021{bottom:438.493333pt;}
.y16_c01021{bottom:462.396000pt;}
.y15_c01021{bottom:486.298667pt;}
.y14_c01021{bottom:510.201333pt;}
.y13_c01021{bottom:534.105333pt;}
.y12_c01021{bottom:558.008000pt;}
.y11_c01021{bottom:581.910667pt;}
.y10_c01021{bottom:605.813333pt;}
.yf_c01021{bottom:629.717333pt;}
.ye_c01021{bottom:653.620000pt;}
.yd_c01021{bottom:677.522667pt;}
.yc_c01021{bottom:701.425333pt;}
.yb_c01021{bottom:732.192000pt;}
.ya_c01021{bottom:782.226667pt;}
.y9_c01021{bottom:806.129333pt;}
.y8_c01021{bottom:830.032000pt;}
.y7_c01021{bottom:853.936000pt;}
.y6_c01021{bottom:877.838667pt;}
.y5_c01021{bottom:901.741333pt;}
.y4_c01021{bottom:925.644000pt;}
.y3_c01021{bottom:949.546667pt;}
.y2_c01021{bottom:973.450667pt;}
.y1_c01021{bottom:1032.964000pt;}
.h2_c01021{height:47.820000pt;}
.h6_c01021{height:53.132000pt;}
.h5_c01021{height:57.384000pt;}
.h3_c01021{height:63.937333pt;}
.h4_c01021{height:76.722667pt;}
.h1_c01021{height:1123.333333pt;}
.h0_c01021{height:1123.653333pt;}
.w0_c01021{width:794.550667pt;}
.w1_c01021{width:794.666667pt;}
.x0_c01021{left:0.000000pt;}
.x1_c01021{left:113.385333pt;}
.x2_c01021{left:142.078667pt;}
.x6_c01021{left:253.916000pt;}
.x5_c01021{left:304.460000pt;}
.x3_c01021{left:380.757333pt;}
.x4_c01021{left:641.717333pt;}
}





/* 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_4b10b121f49fa7aa1c15697e.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.001000;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_17923015ac5e2d670313132f.woff2')format("woff");}.ff2_c01022{font-family:ff2_c01022;line-height:1.001000;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_c01022;src:url('chunks/assets/font_28ae4f6c4f8997b8e1fb32ae.woff2')format("woff");}.ff3_c01022{font-family:ff3_c01022;line-height:0.697000;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_c01022;src:url('chunks/assets/font_d5ade9b1e71cd8e1e657f5f2.woff2')format("woff");}.ff4_c01022{font-family:ff4_c01022;line-height:1.001000;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_c01022;src:url('chunks/assets/font_9df685ada2927a60e4438cfd.woff2')format("woff");}.ff5_c01022{font-family:ff5_c01022;line-height:0.696000;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_c01022;src:url('chunks/assets/font_6c46dfbaa1be0e252b90b7ab.woff2')format("woff");}.ff6_c01022{font-family:ff6_c01022;line-height:1.000000;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_c01022;src:url('chunks/assets/font_2796d3a3252f8f63b6efc837.woff2')format("woff");}.ff7_c01022{font-family:ff7_c01022;line-height:1.000000;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);}
.v2_c01022{vertical-align:-21.696000px;}
.v0_c01022{vertical-align:0.000000px;}
.v3_c01022{vertical-align:15.114000px;}
.v1_c01022{vertical-align:26.028000px;}
.ls1_c01022{letter-spacing:0.000000px;}
.ls0_c01022{letter-spacing:17.821590px;}
.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:-0.071730px;}
.ws2d_c01022{word-spacing:-0.059778px;}
.ws3_c01022{word-spacing:-0.047820px;}
.ws27_c01022{word-spacing:-0.041844px;}
.ws2f_c01022{word-spacing:0.000000px;}
.ws13_c01022{word-spacing:16.139250px;}
.ws22_c01022{word-spacing:17.430390px;}
.ws1e_c01022{word-spacing:17.789040px;}
.ws1f_c01022{word-spacing:18.291150px;}
.ws9_c01022{word-spacing:18.506340px;}
.wsf_c01022{word-spacing:19.654020px;}
.ws2b_c01022{word-spacing:19.846296px;}
.ws1c_c01022{word-spacing:19.940940px;}
.ws1d_c01022{word-spacing:20.371320px;}
.wsa_c01022{word-spacing:20.801700px;}
.ws2c_c01022{word-spacing:21.280968px;}
.ws2e_c01022{word-spacing:21.340746px;}
.ws10_c01022{word-spacing:21.877650px;}
.ws17_c01022{word-spacing:21.949380px;}
.ws12_c01022{word-spacing:22.379760px;}
.ws5_c01022{word-spacing:22.523220px;}
.ws19_c01022{word-spacing:22.738410px;}
.wsb_c01022{word-spacing:23.097060px;}
.ws2_c01022{word-spacing:23.312250px;}
.ws25_c01022{word-spacing:23.383980px;}
.ws26_c01022{word-spacing:24.316470px;}
.ws1a_c01022{word-spacing:24.459930px;}
.ws20_c01022{word-spacing:25.105500px;}
.ws6_c01022{word-spacing:25.822800px;}
.ws2a_c01022{word-spacing:25.883874px;}
.ws28_c01022{word-spacing:25.943652px;}
.ws8_c01022{word-spacing:25.966260px;}
.ws1b_c01022{word-spacing:26.109720px;}
.ws18_c01022{word-spacing:26.253180px;}
.wsc_c01022{word-spacing:26.468370px;}
.ws0_c01022{word-spacing:26.827020px;}
.ws29_c01022{word-spacing:26.840322px;}
.ws16_c01022{word-spacing:27.185670px;}
.wsd_c01022{word-spacing:27.902970px;}
.ws24_c01022{word-spacing:28.046430px;}
.ws7_c01022{word-spacing:29.265840px;}
.wse_c01022{word-spacing:29.495100px;}
.ws11_c01022{word-spacing:29.839680px;}
.ws4_c01022{word-spacing:29.983140px;}
.ws14_c01022{word-spacing:31.417740px;}
.ws21_c01022{word-spacing:31.704660px;}
.ws15_c01022{word-spacing:34.286940px;}
.ws23_c01022{word-spacing:35.738280px;}
._0_c01022{margin-left:-40.670910px;}
._8_c01022{margin-left:-37.156140px;}
._b_c01022{margin-left:-36.113730px;}
._6_c01022{margin-left:-34.468590px;}
._e_c01022{margin-left:-33.139260px;}
._14_c01022{margin-left:-30.008556px;}
._4_c01022{margin-left:-27.329130px;}
._3_c01022{margin-left:-7.818570px;}
._13_c01022{margin-left:-4.836732px;}
._c_c01022{margin-left:-3.565320px;}
._7_c01022{margin-left:-2.151900px;}
._f_c01022{margin-left:-1.042410px;}
._2_c01022{width:1.936710px;}
._5_c01022{width:2.979120px;}
._d_c01022{width:4.974600px;}
._a_c01022{width:17.540310px;}
._11_c01022{width:20.000160px;}
._10_c01022{width:21.480780px;}
._12_c01022{width:24.421740px;}
._9_c01022{width:28.299810px;}
._1_c01022{width:933.068610px;}
.fc0_c01022{color:rgb(0,0,0);}
.fs2_c01022{font-size:41.844000px;}
.fs1_c01022{font-size:47.820000px;}
.fs3_c01022{font-size:59.778000px;}
.fs0_c01022{font-size:71.730000px;}
.y0_c01022{bottom:0.000000px;}
.y2a_c01022{bottom:98.865000px;}
.y29_c01022{bottom:116.797500px;}
.y28_c01022{bottom:129.307500px;}
.y27_c01022{bottom:134.731500px;}
.y26_c01022{bottom:154.266000px;}
.y25_c01022{bottom:172.198500px;}
.y24_c01022{bottom:184.708500px;}
.y23_c01022{bottom:208.065000px;}
.y22_c01022{bottom:234.624000px;}
.y21_c01022{bottom:261.514500px;}
.y20_c01022{bottom:288.406500px;}
.y1f_c01022{bottom:315.297000px;}
.y1e_c01022{bottom:342.187500px;}
.y1d_c01022{bottom:369.078000px;}
.y1c_c01022{bottom:395.970000px;}
.y1b_c01022{bottom:422.860500px;}
.y1a_c01022{bottom:449.751000px;}
.y19_c01022{bottom:476.641500px;}
.y18_c01022{bottom:503.533500px;}
.y17_c01022{bottom:530.424000px;}
.y16_c01022{bottom:557.314500px;}
.y15_c01022{bottom:584.205000px;}
.y14_c01022{bottom:611.095500px;}
.y13_c01022{bottom:637.987500px;}
.y12_c01022{bottom:664.878000px;}
.y11_c01022{bottom:691.768500px;}
.y10_c01022{bottom:718.659000px;}
.yf_c01022{bottom:745.551000px;}
.ye_c01022{bottom:772.441500px;}
.yd_c01022{bottom:799.332000px;}
.yc_c01022{bottom:826.222500px;}
.yb_c01022{bottom:853.114500px;}
.ya_c01022{bottom:880.005000px;}
.y9_c01022{bottom:906.895500px;}
.y8_c01022{bottom:933.786000px;}
.y7_c01022{bottom:960.678000px;}
.y6_c01022{bottom:987.568500px;}
.y5_c01022{bottom:1014.459000px;}
.y4_c01022{bottom:1041.349500px;}
.y3_c01022{bottom:1068.240000px;}
.y2_c01022{bottom:1095.132000px;}
.y1_c01022{bottom:1162.084500px;}
.h5_c01022{height:28.286544px;}
.h7_c01022{height:38.251500px;}
.h6_c01022{height:44.833500px;}
.h2_c01022{height:53.797500px;}
.h3_c01022{height:58.354320px;}
.h4_c01022{height:58.360320px;}
.h1_c01022{height:1263.750000px;}
.h0_c01022{height:1264.110000px;}
.w0_c01022{width:893.869500px;}
.w1_c01022{width:894.000000px;}
.x0_c01022{left:0.000000px;}
.x1_c01022{left:127.558500px;}
.x3_c01022{left:135.840000px;}
.x2_c01022{left:159.838500px;}
.x4_c01022{left:201.366000px;}
@media print{
.v2_c01022{vertical-align:-19.285333pt;}
.v0_c01022{vertical-align:0.000000pt;}
.v3_c01022{vertical-align:13.434667pt;}
.v1_c01022{vertical-align:23.136000pt;}
.ls1_c01022{letter-spacing:0.000000pt;}
.ls0_c01022{letter-spacing:15.841413pt;}
.ws1_c01022{word-spacing:-0.063760pt;}
.ws2d_c01022{word-spacing:-0.053136pt;}
.ws3_c01022{word-spacing:-0.042507pt;}
.ws27_c01022{word-spacing:-0.037195pt;}
.ws2f_c01022{word-spacing:0.000000pt;}
.ws13_c01022{word-spacing:14.346000pt;}
.ws22_c01022{word-spacing:15.493680pt;}
.ws1e_c01022{word-spacing:15.812480pt;}
.ws1f_c01022{word-spacing:16.258800pt;}
.ws9_c01022{word-spacing:16.450080pt;}
.wsf_c01022{word-spacing:17.470240pt;}
.ws2b_c01022{word-spacing:17.641152pt;}
.ws1c_c01022{word-spacing:17.725280pt;}
.ws1d_c01022{word-spacing:18.107840pt;}
.wsa_c01022{word-spacing:18.490400pt;}
.ws2c_c01022{word-spacing:18.916416pt;}
.ws2e_c01022{word-spacing:18.969552pt;}
.ws10_c01022{word-spacing:19.446800pt;}
.ws17_c01022{word-spacing:19.510560pt;}
.ws12_c01022{word-spacing:19.893120pt;}
.ws5_c01022{word-spacing:20.020640pt;}
.ws19_c01022{word-spacing:20.211920pt;}
.wsb_c01022{word-spacing:20.530720pt;}
.ws2_c01022{word-spacing:20.722000pt;}
.ws25_c01022{word-spacing:20.785760pt;}
.ws26_c01022{word-spacing:21.614640pt;}
.ws1a_c01022{word-spacing:21.742160pt;}
.ws20_c01022{word-spacing:22.316000pt;}
.ws6_c01022{word-spacing:22.953600pt;}
.ws2a_c01022{word-spacing:23.007888pt;}
.ws28_c01022{word-spacing:23.061024pt;}
.ws8_c01022{word-spacing:23.081120pt;}
.ws1b_c01022{word-spacing:23.208640pt;}
.ws18_c01022{word-spacing:23.336160pt;}
.wsc_c01022{word-spacing:23.527440pt;}
.ws0_c01022{word-spacing:23.846240pt;}
.ws29_c01022{word-spacing:23.858064pt;}
.ws16_c01022{word-spacing:24.165040pt;}
.wsd_c01022{word-spacing:24.802640pt;}
.ws24_c01022{word-spacing:24.930160pt;}
.ws7_c01022{word-spacing:26.014080pt;}
.wse_c01022{word-spacing:26.217867pt;}
.ws11_c01022{word-spacing:26.524160pt;}
.ws4_c01022{word-spacing:26.651680pt;}
.ws14_c01022{word-spacing:27.926880pt;}
.ws21_c01022{word-spacing:28.181920pt;}
.ws15_c01022{word-spacing:30.477280pt;}
.ws23_c01022{word-spacing:31.767360pt;}
._0_c01022{margin-left:-36.151920pt;}
._8_c01022{margin-left:-33.027680pt;}
._b_c01022{margin-left:-32.101093pt;}
._6_c01022{margin-left:-30.638747pt;}
._e_c01022{margin-left:-29.457120pt;}
._14_c01022{margin-left:-26.674272pt;}
._4_c01022{margin-left:-24.292560pt;}
._3_c01022{margin-left:-6.949840pt;}
._13_c01022{margin-left:-4.299317pt;}
._c_c01022{margin-left:-3.169173pt;}
._7_c01022{margin-left:-1.912800pt;}
._f_c01022{margin-left:-0.926587pt;}
._2_c01022{width:1.721520pt;}
._5_c01022{width:2.648107pt;}
._d_c01022{width:4.421867pt;}
._a_c01022{width:15.591387pt;}
._11_c01022{width:17.777920pt;}
._10_c01022{width:19.094027pt;}
._12_c01022{width:21.708213pt;}
._9_c01022{width:25.155387pt;}
._1_c01022{width:829.394320pt;}
.fs2_c01022{font-size:37.194667pt;}
.fs1_c01022{font-size:42.506667pt;}
.fs3_c01022{font-size:53.136000pt;}
.fs0_c01022{font-size:63.760000pt;}
.y0_c01022{bottom:0.000000pt;}
.y2a_c01022{bottom:87.880000pt;}
.y29_c01022{bottom:103.820000pt;}
.y28_c01022{bottom:114.940000pt;}
.y27_c01022{bottom:119.761333pt;}
.y26_c01022{bottom:137.125333pt;}
.y25_c01022{bottom:153.065333pt;}
.y24_c01022{bottom:164.185333pt;}
.y23_c01022{bottom:184.946667pt;}
.y22_c01022{bottom:208.554667pt;}
.y21_c01022{bottom:232.457333pt;}
.y20_c01022{bottom:256.361333pt;}
.y1f_c01022{bottom:280.264000pt;}
.y1e_c01022{bottom:304.166667pt;}
.y1d_c01022{bottom:328.069333pt;}
.y1c_c01022{bottom:351.973333pt;}
.y1b_c01022{bottom:375.876000pt;}
.y1a_c01022{bottom:399.778667pt;}
.y19_c01022{bottom:423.681333pt;}
.y18_c01022{bottom:447.585333pt;}
.y17_c01022{bottom:471.488000pt;}
.y16_c01022{bottom:495.390667pt;}
.y15_c01022{bottom:519.293333pt;}
.y14_c01022{bottom:543.196000pt;}
.y13_c01022{bottom:567.100000pt;}
.y12_c01022{bottom:591.002667pt;}
.y11_c01022{bottom:614.905333pt;}
.y10_c01022{bottom:638.808000pt;}
.yf_c01022{bottom:662.712000pt;}
.ye_c01022{bottom:686.614667pt;}
.yd_c01022{bottom:710.517333pt;}
.yc_c01022{bottom:734.420000pt;}
.yb_c01022{bottom:758.324000pt;}
.ya_c01022{bottom:782.226667pt;}
.y9_c01022{bottom:806.129333pt;}
.y8_c01022{bottom:830.032000pt;}
.y7_c01022{bottom:853.936000pt;}
.y6_c01022{bottom:877.838667pt;}
.y5_c01022{bottom:901.741333pt;}
.y4_c01022{bottom:925.644000pt;}
.y3_c01022{bottom:949.546667pt;}
.y2_c01022{bottom:973.450667pt;}
.y1_c01022{bottom:1032.964000pt;}
.h5_c01022{height:25.143595pt;}
.h7_c01022{height:34.001333pt;}
.h6_c01022{height:39.852000pt;}
.h2_c01022{height:47.820000pt;}
.h3_c01022{height:51.870507pt;}
.h4_c01022{height:51.875840pt;}
.h1_c01022{height:1123.333333pt;}
.h0_c01022{height:1123.653333pt;}
.w0_c01022{width:794.550667pt;}
.w1_c01022{width:794.666667pt;}
.x0_c01022{left:0.000000pt;}
.x1_c01022{left:113.385333pt;}
.x3_c01022{left:120.746667pt;}
.x2_c01022{left:142.078667pt;}
.x4_c01022{left:178.992000pt;}
}





/* 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_52a2bf4ce922eb7c9bdde12f.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.001000;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_eb96dd7b8db8d8ded4c911e9.woff2')format("woff");}.ff2_c01023{font-family:ff2_c01023;line-height:1.001000;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_c01023;src:url('chunks/assets/font_a07fcb6ecaa976764b4de0ea.woff2')format("woff");}.ff3_c01023{font-family:ff3_c01023;line-height:1.001000;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_c01023;src:url('chunks/assets/font_9e3cab3f13f171a65a5d94f7.woff2')format("woff");}.ff4_c01023{font-family:ff4_c01023;line-height:1.000000;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;}
.v1_c01023{vertical-align:5.976000px;}
.ls0_c01023{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws1e_c01023{word-spacing:0.000000px;}
.ws18_c01023{word-spacing:18.362880px;}
.ws1d_c01023{word-spacing:19.654020px;}
.ws1b_c01023{word-spacing:21.016890px;}
.ws1c_c01023{word-spacing:22.308030px;}
.ws3_c01023{word-spacing:22.666680px;}
.ws4_c01023{word-spacing:23.312250px;}
.ws1a_c01023{word-spacing:23.886090px;}
.wsc_c01023{word-spacing:23.957820px;}
.ws10_c01023{word-spacing:24.047250px;}
.wse_c01023{word-spacing:24.101280px;}
.ws19_c01023{word-spacing:24.603390px;}
.ws17_c01023{word-spacing:24.818580px;}
.ws5_c01023{word-spacing:25.392420px;}
.wsd_c01023{word-spacing:25.607610px;}
.ws11_c01023{word-spacing:25.679340px;}
.ws14_c01023{word-spacing:25.894530px;}
.ws0_c01023{word-spacing:26.827020px;}
.wsb_c01023{word-spacing:27.042210px;}
.ws2_c01023{word-spacing:27.113940px;}
.wsf_c01023{word-spacing:28.773300px;}
.ws9_c01023{word-spacing:29.911410px;}
.ws13_c01023{word-spacing:30.843900px;}
.ws6_c01023{word-spacing:31.057020px;}
.ws8_c01023{word-spacing:31.059090px;}
.wsa_c01023{word-spacing:32.278500px;}
.ws15_c01023{word-spacing:32.450652px;}
.ws12_c01023{word-spacing:32.493690px;}
.ws7_c01023{word-spacing:37.022310px;}
.ws16_c01023{word-spacing:79.261650px;}
._0_c01023{margin-left:-40.670910px;}
._9_c01023{margin-left:-37.156140px;}
._c_c01023{margin-left:-35.219430px;}
._7_c01023{margin-left:-33.139260px;}
._5_c01023{margin-left:-27.400860px;}
._13_c01023{margin-left:-26.331150px;}
._e_c01023{margin-left:-8.957940px;}
._4_c01023{margin-left:-7.818570px;}
._b_c01023{margin-left:-5.740470px;}
._12_c01023{margin-left:-4.734180px;}
._a_c01023{margin-left:-3.584430px;}
._6_c01023{margin-left:-1.936710px;}
._2_c01023{width:1.936710px;}
._3_c01023{width:3.945150px;}
._10_c01023{width:21.447270px;}
._14_c01023{width:25.966260px;}
._f_c01023{width:30.912270px;}
._8_c01023{width:33.141330px;}
._d_c01023{width:79.333380px;}
._11_c01023{width:95.200056px;}
._1_c01023{width:933.068610px;}
.fc0_c01023{color:rgb(0,0,0);}
.fs0_c01023{font-size:71.730000px;}
.fs1_c01023{font-size:86.076000px;}
.y0_c01023{bottom:0.000000px;}
.y21_c01023{bottom:106.488000px;}
.y20_c01023{bottom:133.378500px;}
.y1f_c01023{bottom:160.269000px;}
.y1e_c01023{bottom:187.161000px;}
.y1d_c01023{bottom:214.051500px;}
.y1c_c01023{bottom:240.942000px;}
.y1b_c01023{bottom:267.832500px;}
.y1a_c01023{bottom:302.445000px;}
.y19_c01023{bottom:358.734000px;}
.y18_c01023{bottom:385.624500px;}
.y17_c01023{bottom:412.515000px;}
.y16_c01023{bottom:447.127500px;}
.y15_c01023{bottom:506.479500px;}
.y14_c01023{bottom:573.976500px;}
.y13_c01023{bottom:600.868500px;}
.y12_c01023{bottom:627.759000px;}
.y11_c01023{bottom:654.649500px;}
.y10_c01023{bottom:681.540000px;}
.yf_c01023{bottom:708.432000px;}
.ye_c01023{bottom:735.322500px;}
.yd_c01023{bottom:762.213000px;}
.yc_c01023{bottom:789.103500px;}
.yb_c01023{bottom:815.994000px;}
.ya_c01023{bottom:850.606500px;}
.y9_c01023{bottom:906.895500px;}
.y8_c01023{bottom:933.786000px;}
.y7_c01023{bottom:960.678000px;}
.y6_c01023{bottom:987.568500px;}
.y5_c01023{bottom:1014.459000px;}
.y4_c01023{bottom:1041.349500px;}
.y3_c01023{bottom:1068.240000px;}
.y2_c01023{bottom:1095.132000px;}
.y1_c01023{bottom:1162.084500px;}
.h2_c01023{height:53.797500px;}
.h3_c01023{height:59.773500px;}
.h4_c01023{height:64.557000px;}
.h1_c01023{height:1263.750000px;}
.h0_c01023{height:1264.110000px;}
.w0_c01023{width:893.869500px;}
.w1_c01023{width:894.000000px;}
.x0_c01023{left:0.000000px;}
.x1_c01023{left:127.558500px;}
.x2_c01023{left:159.838500px;}
.x3_c01023{left:281.391000px;}
.x4_c01023{left:287.673000px;}
.x5_c01023{left:342.067500px;}
.x6_c01023{left:512.164500px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.v1_c01023{vertical-align:5.312000pt;}
.ls0_c01023{letter-spacing:0.000000pt;}
.ws1_c01023{word-spacing:-0.063760pt;}
.ws1e_c01023{word-spacing:0.000000pt;}
.ws18_c01023{word-spacing:16.322560pt;}
.ws1d_c01023{word-spacing:17.470240pt;}
.ws1b_c01023{word-spacing:18.681680pt;}
.ws1c_c01023{word-spacing:19.829360pt;}
.ws3_c01023{word-spacing:20.148160pt;}
.ws4_c01023{word-spacing:20.722000pt;}
.ws1a_c01023{word-spacing:21.232080pt;}
.wsc_c01023{word-spacing:21.295840pt;}
.ws10_c01023{word-spacing:21.375333pt;}
.wse_c01023{word-spacing:21.423360pt;}
.ws19_c01023{word-spacing:21.869680pt;}
.ws17_c01023{word-spacing:22.060960pt;}
.ws5_c01023{word-spacing:22.571040pt;}
.wsd_c01023{word-spacing:22.762320pt;}
.ws11_c01023{word-spacing:22.826080pt;}
.ws14_c01023{word-spacing:23.017360pt;}
.ws0_c01023{word-spacing:23.846240pt;}
.wsb_c01023{word-spacing:24.037520pt;}
.ws2_c01023{word-spacing:24.101280pt;}
.wsf_c01023{word-spacing:25.576267pt;}
.ws9_c01023{word-spacing:26.587920pt;}
.ws13_c01023{word-spacing:27.416800pt;}
.ws6_c01023{word-spacing:27.606240pt;}
.ws8_c01023{word-spacing:27.608080pt;}
.wsa_c01023{word-spacing:28.692000pt;}
.ws15_c01023{word-spacing:28.845024pt;}
.ws12_c01023{word-spacing:28.883280pt;}
.ws7_c01023{word-spacing:32.908720pt;}
.ws16_c01023{word-spacing:70.454800pt;}
._0_c01023{margin-left:-36.151920pt;}
._9_c01023{margin-left:-33.027680pt;}
._c_c01023{margin-left:-31.306160pt;}
._7_c01023{margin-left:-29.457120pt;}
._5_c01023{margin-left:-24.356320pt;}
._13_c01023{margin-left:-23.405467pt;}
._e_c01023{margin-left:-7.962613pt;}
._4_c01023{margin-left:-6.949840pt;}
._b_c01023{margin-left:-5.102640pt;}
._12_c01023{margin-left:-4.208160pt;}
._a_c01023{margin-left:-3.186160pt;}
._6_c01023{margin-left:-1.721520pt;}
._2_c01023{width:1.721520pt;}
._3_c01023{width:3.506800pt;}
._10_c01023{width:19.064240pt;}
._14_c01023{width:23.081120pt;}
._f_c01023{width:27.477573pt;}
._8_c01023{width:29.458960pt;}
._d_c01023{width:70.518560pt;}
._11_c01023{width:84.622272pt;}
._1_c01023{width:829.394320pt;}
.fs0_c01023{font-size:63.760000pt;}
.fs1_c01023{font-size:76.512000pt;}
.y0_c01023{bottom:0.000000pt;}
.y21_c01023{bottom:94.656000pt;}
.y20_c01023{bottom:118.558667pt;}
.y1f_c01023{bottom:142.461333pt;}
.y1e_c01023{bottom:166.365333pt;}
.y1d_c01023{bottom:190.268000pt;}
.y1c_c01023{bottom:214.170667pt;}
.y1b_c01023{bottom:238.073333pt;}
.y1a_c01023{bottom:268.840000pt;}
.y19_c01023{bottom:318.874667pt;}
.y18_c01023{bottom:342.777333pt;}
.y17_c01023{bottom:366.680000pt;}
.y16_c01023{bottom:397.446667pt;}
.y15_c01023{bottom:450.204000pt;}
.y14_c01023{bottom:510.201333pt;}
.y13_c01023{bottom:534.105333pt;}
.y12_c01023{bottom:558.008000pt;}
.y11_c01023{bottom:581.910667pt;}
.y10_c01023{bottom:605.813333pt;}
.yf_c01023{bottom:629.717333pt;}
.ye_c01023{bottom:653.620000pt;}
.yd_c01023{bottom:677.522667pt;}
.yc_c01023{bottom:701.425333pt;}
.yb_c01023{bottom:725.328000pt;}
.ya_c01023{bottom:756.094667pt;}
.y9_c01023{bottom:806.129333pt;}
.y8_c01023{bottom:830.032000pt;}
.y7_c01023{bottom:853.936000pt;}
.y6_c01023{bottom:877.838667pt;}
.y5_c01023{bottom:901.741333pt;}
.y4_c01023{bottom:925.644000pt;}
.y3_c01023{bottom:949.546667pt;}
.y2_c01023{bottom:973.450667pt;}
.y1_c01023{bottom:1032.964000pt;}
.h2_c01023{height:47.820000pt;}
.h3_c01023{height:53.132000pt;}
.h4_c01023{height:57.384000pt;}
.h1_c01023{height:1123.333333pt;}
.h0_c01023{height:1123.653333pt;}
.w0_c01023{width:794.550667pt;}
.w1_c01023{width:794.666667pt;}
.x0_c01023{left:0.000000pt;}
.x1_c01023{left:113.385333pt;}
.x2_c01023{left:142.078667pt;}
.x3_c01023{left:250.125333pt;}
.x4_c01023{left:255.709333pt;}
.x5_c01023{left:304.060000pt;}
.x6_c01023{left:455.257333pt;}
}





/* 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_601a1cc1733ec329b7e81257.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.001000;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_b0adeab64aa0bd24c8d9fb66.woff2')format("woff");}.ff2_c01024{font-family:ff2_c01024;line-height:1.001000;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_c01024;src:url('chunks/assets/font_26ae9ec2a1db256feabf52d5.woff2')format("woff");}.ff3_c01024{font-family:ff3_c01024;line-height:1.001000;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_c01024;src:url('chunks/assets/font_dd53e81d68d566408177a73a.woff2')format("woff");}.ff4_c01024{font-family:ff4_c01024;line-height:0.697000;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_c01024;src:url('chunks/assets/font_dfa9140fb06af81c73832911.woff2')format("woff");}.ff5_c01024{font-family:ff5_c01024;line-height:0.696000;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_c01024;src:url('chunks/assets/font_89bbf0e5eb6fad27fe1498b1.woff2')format("woff");}.ff6_c01024{font-family:ff6_c01024;line-height:1.000000;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_c01024;src:url('chunks/assets/font_e7fb802dd62d184a346a8c82.woff2')format("woff");}.ff7_c01024{font-family:ff7_c01024;line-height:1.000000;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);}
.v2_c01024{vertical-align:-21.690000px;}
.v0_c01024{vertical-align:0.000000px;}
.v3_c01024{vertical-align:15.108000px;}
.v1_c01024{vertical-align:26.028000px;}
.ls0_c01024{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01024{word-spacing:-0.071730px;}
.ws1f_c01024{word-spacing:-0.059778px;}
.wsb_c01024{word-spacing:-0.047820px;}
.ws1e_c01024{word-spacing:-0.041844px;}
.ws24_c01024{word-spacing:0.000000px;}
.ws22_c01024{word-spacing:14.884722px;}
.ws19_c01024{word-spacing:16.282710px;}
.ws2_c01024{word-spacing:17.071740px;}
.ws6_c01024{word-spacing:17.789040px;}
.wsc_c01024{word-spacing:19.080180px;}
.ws20_c01024{word-spacing:19.846296px;}
.ws15_c01024{word-spacing:20.586510px;}
.ws1a_c01024{word-spacing:20.729970px;}
.ws18_c01024{word-spacing:20.945160px;}
.ws23_c01024{word-spacing:21.280968px;}
.ws21_c01024{word-spacing:21.340746px;}
.ws13_c01024{word-spacing:21.447270px;}
.ws5_c01024{word-spacing:23.097030px;}
.wsf_c01024{word-spacing:23.312250px;}
.ws14_c01024{word-spacing:23.383980px;}
.ws7_c01024{word-spacing:24.603390px;}
.ws17_c01024{word-spacing:24.746850px;}
.wsa_c01024{word-spacing:25.033770px;}
.ws16_c01024{word-spacing:25.607610px;}
.ws1d_c01024{word-spacing:26.037990px;}
.ws0_c01024{word-spacing:26.827020px;}
.wse_c01024{word-spacing:27.329130px;}
.ws1b_c01024{word-spacing:27.974700px;}
.ws11_c01024{word-spacing:28.118160px;}
.ws3_c01024{word-spacing:30.341790px;}
.ws12_c01024{word-spacing:30.485250px;}
.ws10_c01024{word-spacing:30.843900px;}
.ws4_c01024{word-spacing:31.489470px;}
.wsd_c01024{word-spacing:31.848120px;}
.ws1c_c01024{word-spacing:34.071750px;}
.ws8_c01024{word-spacing:34.430400px;}
.ws9_c01024{word-spacing:35.291160px;}
._0_c01024{margin-left:-40.670910px;}
._9_c01024{margin-left:-36.940950px;}
._2_c01024{margin-left:-35.075970px;}
._c_c01024{margin-left:-34.071750px;}
._e_c01024{margin-left:-32.350230px;}
._11_c01024{margin-left:-30.116556px;}
._4_c01024{margin-left:-27.400860px;}
._10_c01024{margin-left:-24.969408px;}
._3_c01024{margin-left:-7.818570px;}
._a_c01024{margin-left:-5.594940px;}
._7_c01024{margin-left:-4.160340px;}
._d_c01024{margin-left:-3.012660px;}
._6_c01024{margin-left:-1.936710px;}
._5_c01024{width:1.936710px;}
._8_c01024{width:3.945150px;}
._f_c01024{width:6.535182px;}
._b_c01024{width:33.705180px;}
._1_c01024{width:933.068610px;}
.fc0_c01024{color:rgb(0,0,0);}
.fs2_c01024{font-size:41.844000px;}
.fs1_c01024{font-size:47.820000px;}
.fs3_c01024{font-size:59.778000px;}
.fs0_c01024{font-size:71.730000px;}
.y0_c01024{bottom:0.000000px;}
.y27_c01024{bottom:117.963000px;}
.y26_c01024{bottom:135.895500px;}
.y25_c01024{bottom:153.829500px;}
.y24_c01024{bottom:166.338000px;}
.y23_c01024{bottom:184.272000px;}
.y22_c01024{bottom:189.694500px;}
.y21_c01024{bottom:203.806500px;}
.y20_c01024{bottom:209.229000px;}
.y1f_c01024{bottom:237.588000px;}
.y1e_c01024{bottom:264.478500px;}
.y1d_c01024{bottom:291.370500px;}
.y1c_c01024{bottom:337.687500px;}
.y1b_c01024{bottom:364.579500px;}
.y1a_c01024{bottom:391.470000px;}
.y19_c01024{bottom:418.360500px;}
.y18_c01024{bottom:464.679000px;}
.y17_c01024{bottom:491.569500px;}
.y16_c01024{bottom:537.888000px;}
.y15_c01024{bottom:564.778500px;}
.y14_c01024{bottom:591.669000px;}
.y13_c01024{bottom:618.559500px;}
.y12_c01024{bottom:664.878000px;}
.y11_c01024{bottom:691.768500px;}
.y10_c01024{bottom:718.659000px;}
.yf_c01024{bottom:745.551000px;}
.ye_c01024{bottom:772.441500px;}
.yd_c01024{bottom:799.332000px;}
.yc_c01024{bottom:826.222500px;}
.yb_c01024{bottom:853.114500px;}
.ya_c01024{bottom:880.005000px;}
.y9_c01024{bottom:906.895500px;}
.y8_c01024{bottom:933.786000px;}
.y7_c01024{bottom:960.678000px;}
.y6_c01024{bottom:987.568500px;}
.y5_c01024{bottom:1014.459000px;}
.y4_c01024{bottom:1041.349500px;}
.y3_c01024{bottom:1068.240000px;}
.y2_c01024{bottom:1095.132000px;}
.y1_c01024{bottom:1162.084500px;}
.h7_c01024{height:28.286544px;}
.h5_c01024{height:38.251500px;}
.h6_c01024{height:44.833500px;}
.h2_c01024{height:53.797500px;}
.h3_c01024{height:58.354320px;}
.h4_c01024{height:58.360320px;}
.h1_c01024{height:1263.750000px;}
.h0_c01024{height:1264.110000px;}
.w0_c01024{width:893.869500px;}
.w1_c01024{width:894.000000px;}
.x0_c01024{left:0.000000px;}
.x1_c01024{left:127.558500px;}
.x5_c01024{left:135.840000px;}
.x2_c01024{left:159.838500px;}
.x4_c01024{left:171.456000px;}
.x7_c01024{left:191.196000px;}
.x6_c01024{left:196.591500px;}
.x3_c01024{left:197.794500px;}
@media print{
.v2_c01024{vertical-align:-19.280000pt;}
.v0_c01024{vertical-align:0.000000pt;}
.v3_c01024{vertical-align:13.429333pt;}
.v1_c01024{vertical-align:23.136000pt;}
.ls0_c01024{letter-spacing:0.000000pt;}
.ws1_c01024{word-spacing:-0.063760pt;}
.ws1f_c01024{word-spacing:-0.053136pt;}
.wsb_c01024{word-spacing:-0.042507pt;}
.ws1e_c01024{word-spacing:-0.037195pt;}
.ws24_c01024{word-spacing:0.000000pt;}
.ws22_c01024{word-spacing:13.230864pt;}
.ws19_c01024{word-spacing:14.473520pt;}
.ws2_c01024{word-spacing:15.174880pt;}
.ws6_c01024{word-spacing:15.812480pt;}
.wsc_c01024{word-spacing:16.960160pt;}
.ws20_c01024{word-spacing:17.641152pt;}
.ws15_c01024{word-spacing:18.299120pt;}
.ws1a_c01024{word-spacing:18.426640pt;}
.ws18_c01024{word-spacing:18.617920pt;}
.ws23_c01024{word-spacing:18.916416pt;}
.ws21_c01024{word-spacing:18.969552pt;}
.ws13_c01024{word-spacing:19.064240pt;}
.ws5_c01024{word-spacing:20.530693pt;}
.wsf_c01024{word-spacing:20.722000pt;}
.ws14_c01024{word-spacing:20.785760pt;}
.ws7_c01024{word-spacing:21.869680pt;}
.ws17_c01024{word-spacing:21.997200pt;}
.wsa_c01024{word-spacing:22.252240pt;}
.ws16_c01024{word-spacing:22.762320pt;}
.ws1d_c01024{word-spacing:23.144880pt;}
.ws0_c01024{word-spacing:23.846240pt;}
.wse_c01024{word-spacing:24.292560pt;}
.ws1b_c01024{word-spacing:24.866400pt;}
.ws11_c01024{word-spacing:24.993920pt;}
.ws3_c01024{word-spacing:26.970480pt;}
.ws12_c01024{word-spacing:27.098000pt;}
.ws10_c01024{word-spacing:27.416800pt;}
.ws4_c01024{word-spacing:27.990640pt;}
.wsd_c01024{word-spacing:28.309440pt;}
.ws1c_c01024{word-spacing:30.286000pt;}
.ws8_c01024{word-spacing:30.604800pt;}
.ws9_c01024{word-spacing:31.369920pt;}
._0_c01024{margin-left:-36.151920pt;}
._9_c01024{margin-left:-32.836400pt;}
._2_c01024{margin-left:-31.178640pt;}
._c_c01024{margin-left:-30.286000pt;}
._e_c01024{margin-left:-28.755760pt;}
._11_c01024{margin-left:-26.770272pt;}
._4_c01024{margin-left:-24.356320pt;}
._10_c01024{margin-left:-22.195029pt;}
._3_c01024{margin-left:-6.949840pt;}
._a_c01024{margin-left:-4.973280pt;}
._7_c01024{margin-left:-3.698080pt;}
._d_c01024{margin-left:-2.677920pt;}
._6_c01024{margin-left:-1.721520pt;}
._5_c01024{width:1.721520pt;}
._8_c01024{width:3.506800pt;}
._f_c01024{width:5.809051pt;}
._b_c01024{width:29.960160pt;}
._1_c01024{width:829.394320pt;}
.fs2_c01024{font-size:37.194667pt;}
.fs1_c01024{font-size:42.506667pt;}
.fs3_c01024{font-size:53.136000pt;}
.fs0_c01024{font-size:63.760000pt;}
.y0_c01024{bottom:0.000000pt;}
.y27_c01024{bottom:104.856000pt;}
.y26_c01024{bottom:120.796000pt;}
.y25_c01024{bottom:136.737333pt;}
.y24_c01024{bottom:147.856000pt;}
.y23_c01024{bottom:163.797333pt;}
.y22_c01024{bottom:168.617333pt;}
.y21_c01024{bottom:181.161333pt;}
.y20_c01024{bottom:185.981333pt;}
.y1f_c01024{bottom:211.189333pt;}
.y1e_c01024{bottom:235.092000pt;}
.y1d_c01024{bottom:258.996000pt;}
.y1c_c01024{bottom:300.166667pt;}
.y1b_c01024{bottom:324.070667pt;}
.y1a_c01024{bottom:347.973333pt;}
.y19_c01024{bottom:371.876000pt;}
.y18_c01024{bottom:413.048000pt;}
.y17_c01024{bottom:436.950667pt;}
.y16_c01024{bottom:478.122667pt;}
.y15_c01024{bottom:502.025333pt;}
.y14_c01024{bottom:525.928000pt;}
.y13_c01024{bottom:549.830667pt;}
.y12_c01024{bottom:591.002667pt;}
.y11_c01024{bottom:614.905333pt;}
.y10_c01024{bottom:638.808000pt;}
.yf_c01024{bottom:662.712000pt;}
.ye_c01024{bottom:686.614667pt;}
.yd_c01024{bottom:710.517333pt;}
.yc_c01024{bottom:734.420000pt;}
.yb_c01024{bottom:758.324000pt;}
.ya_c01024{bottom:782.226667pt;}
.y9_c01024{bottom:806.129333pt;}
.y8_c01024{bottom:830.032000pt;}
.y7_c01024{bottom:853.936000pt;}
.y6_c01024{bottom:877.838667pt;}
.y5_c01024{bottom:901.741333pt;}
.y4_c01024{bottom:925.644000pt;}
.y3_c01024{bottom:949.546667pt;}
.y2_c01024{bottom:973.450667pt;}
.y1_c01024{bottom:1032.964000pt;}
.h7_c01024{height:25.143595pt;}
.h5_c01024{height:34.001333pt;}
.h6_c01024{height:39.852000pt;}
.h2_c01024{height:47.820000pt;}
.h3_c01024{height:51.870507pt;}
.h4_c01024{height:51.875840pt;}
.h1_c01024{height:1123.333333pt;}
.h0_c01024{height:1123.653333pt;}
.w0_c01024{width:794.550667pt;}
.w1_c01024{width:794.666667pt;}
.x0_c01024{left:0.000000pt;}
.x1_c01024{left:113.385333pt;}
.x5_c01024{left:120.746667pt;}
.x2_c01024{left:142.078667pt;}
.x4_c01024{left:152.405333pt;}
.x7_c01024{left:169.952000pt;}
.x6_c01024{left:174.748000pt;}
.x3_c01024{left:175.817333pt;}
}





/* 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_c8d0e68ea03aa2cea0fbc90a.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.001000;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_2a71eae2e4771fa0f7d77aac.woff2')format("woff");}.ff2_c01025{font-family:ff2_c01025;line-height:1.001000;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_c01025;src:url('chunks/assets/font_bbe2f65114925daf14d56d78.woff2')format("woff");}.ff3_c01025{font-family:ff3_c01025;line-height:1.001000;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_c01025;src:url('chunks/assets/font_ac8850fc34fc3cd0c13e75bb.woff2')format("woff");}.ff4_c01025{font-family:ff4_c01025;line-height:0.697000;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_c01025;src:url('chunks/assets/font_3e14f987bd05be8a23b5c595.woff2')format("woff");}.ff5_c01025{font-family:ff5_c01025;line-height:1.000000;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_c01025;src:url('chunks/assets/font_b61faf3ddb555aa80eabd387.woff2')format("woff");}.ff6_c01025{font-family:ff6_c01025;line-height:0.696000;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_c01025;src:url('chunks/assets/font_76f87ef2192f5ba2c257f612.woff2')format("woff");}.ff7_c01025{font-family:ff7_c01025;line-height:1.000000;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_c01025;src:url('chunks/assets/font_ae1e44b6cf43df845bf5cfb7.woff2')format("woff");}.ff8_c01025{font-family:ff8_c01025;line-height:1.000000;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);}
.v4_c01025{vertical-align:-21.690000px;}
.v0_c01025{vertical-align:0.000000px;}
.v2_c01025{vertical-align:5.976000px;}
.v3_c01025{vertical-align:18.132000px;}
.v1_c01025{vertical-align:26.028000px;}
.ls2_c01025{letter-spacing:0.000000px;}
.ls0_c01025{letter-spacing:24.445590px;}
.ls1_c01025{letter-spacing:24.463440px;}
.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:-0.071730px;}
.ws9_c01025{word-spacing:-0.047820px;}
.ws21_c01025{word-spacing:-0.041844px;}
.ws24_c01025{word-spacing:0.000000px;}
.wsf_c01025{word-spacing:15.565410px;}
.ws22_c01025{word-spacing:19.069182px;}
.ws1d_c01025{word-spacing:20.371320px;}
.ws23_c01025{word-spacing:20.563632px;}
.ws10_c01025{word-spacing:23.097060px;}
.ws1c_c01025{word-spacing:23.240520px;}
.ws3_c01025{word-spacing:23.312250px;}
.ws13_c01025{word-spacing:23.383980px;}
.ws8_c01025{word-spacing:25.033770px;}
.ws2_c01025{word-spacing:25.392420px;}
.ws18_c01025{word-spacing:25.751070px;}
.ws1a_c01025{word-spacing:25.894530px;}
.ws7_c01025{word-spacing:25.966260px;}
.ws5_c01025{word-spacing:26.037990px;}
.wsc_c01025{word-spacing:26.253180px;}
.ws4_c01025{word-spacing:26.755290px;}
.ws0_c01025{word-spacing:26.827020px;}
.ws19_c01025{word-spacing:26.970480px;}
.ws15_c01025{word-spacing:27.042210px;}
.wsd_c01025{word-spacing:27.902970px;}
.ws6_c01025{word-spacing:27.974700px;}
.ws16_c01025{word-spacing:28.261620px;}
.ws1f_c01025{word-spacing:28.333350px;}
.ws1e_c01025{word-spacing:28.405080px;}
.ws11_c01025{word-spacing:28.978920px;}
.wsb_c01025{word-spacing:29.194110px;}
.ws17_c01025{word-spacing:30.987360px;}
.wse_c01025{word-spacing:32.421960px;}
.ws14_c01025{word-spacing:32.450652px;}
.ws1b_c01025{word-spacing:32.852340px;}
.ws12_c01025{word-spacing:34.409760px;}
.ws20_c01025{word-spacing:34.645590px;}
.wsa_c01025{word-spacing:79.261650px;}
._0_c01025{margin-left:-40.670910px;}
._5_c01025{margin-left:-35.291160px;}
._b_c01025{margin-left:-33.067530px;}
._12_c01025{margin-left:-29.622390px;}
._c_c01025{margin-left:-27.042210px;}
._a_c01025{margin-left:-8.392410px;}
._6_c01025{margin-left:-5.881860px;}
._f_c01025{margin-left:-4.805910px;}
._4_c01025{margin-left:-3.801690px;}
._2_c01025{margin-left:-1.936710px;}
._3_c01025{width:1.721520px;}
._9_c01025{width:3.945150px;}
._11_c01025{width:18.108546px;}
._8_c01025{width:29.331180px;}
._7_c01025{width:32.002290px;}
._10_c01025{width:36.689400px;}
._e_c01025{width:79.333380px;}
._d_c01025{width:95.200056px;}
._1_c01025{width:933.068610px;}
.fc0_c01025{color:rgb(0,0,0);}
.fs3_c01025{font-size:41.844000px;}
.fs1_c01025{font-size:47.820000px;}
.fs4_c01025{font-size:59.778000px;}
.fs0_c01025{font-size:71.730000px;}
.fs2_c01025{font-size:86.076000px;}
.y0_c01025{bottom:0.000000px;}
.y21_c01025{bottom:110.158500px;}
.y20_c01025{bottom:133.513500px;}
.y1f_c01025{bottom:160.270500px;}
.y1e_c01025{bottom:187.161000px;}
.y1d_c01025{bottom:214.051500px;}
.y1c_c01025{bottom:240.942000px;}
.y1b_c01025{bottom:267.834000px;}
.y1a_c01025{bottom:294.724500px;}
.y19_c01025{bottom:321.615000px;}
.y18_c01025{bottom:356.227500px;}
.y17_c01025{bottom:412.516500px;}
.y16_c01025{bottom:439.407000px;}
.y15_c01025{bottom:466.297500px;}
.y14_c01025{bottom:493.188000px;}
.y13_c01025{bottom:520.078500px;}
.y12_c01025{bottom:554.691000px;}
.y11_c01025{bottom:614.043000px;}
.y10_c01025{bottom:681.540000px;}
.yf_c01025{bottom:708.432000px;}
.ye_c01025{bottom:735.322500px;}
.yd_c01025{bottom:762.213000px;}
.yc_c01025{bottom:789.103500px;}
.yb_c01025{bottom:815.995500px;}
.ya_c01025{bottom:842.886000px;}
.y9_c01025{bottom:869.776500px;}
.y8_c01025{bottom:896.667000px;}
.y7_c01025{bottom:931.279500px;}
.y6_c01025{bottom:987.568500px;}
.y5_c01025{bottom:1014.459000px;}
.y4_c01025{bottom:1041.349500px;}
.y3_c01025{bottom:1068.240000px;}
.y2_c01025{bottom:1095.132000px;}
.y1_c01025{bottom:1162.084500px;}
.h7_c01025{height:28.286544px;}
.h8_c01025{height:44.833500px;}
.h2_c01025{height:53.797500px;}
.h3_c01025{height:58.354320px;}
.h5_c01025{height:59.773500px;}
.h4_c01025{height:64.557000px;}
.h6_c01025{height:71.929500px;}
.h1_c01025{height:1263.750000px;}
.h0_c01025{height:1264.110000px;}
.w0_c01025{width:893.869500px;}
.w1_c01025{width:894.000000px;}
.x0_c01025{left:0.000000px;}
.x1_c01025{left:127.558500px;}
.x5_c01025{left:135.840000px;}
.x2_c01025{left:159.838500px;}
.x3_c01025{left:327.618000px;}
.x4_c01025{left:457.683000px;}
@media print{
.v4_c01025{vertical-align:-19.280000pt;}
.v0_c01025{vertical-align:0.000000pt;}
.v2_c01025{vertical-align:5.312000pt;}
.v3_c01025{vertical-align:16.117333pt;}
.v1_c01025{vertical-align:23.136000pt;}
.ls2_c01025{letter-spacing:0.000000pt;}
.ls0_c01025{letter-spacing:21.729413pt;}
.ls1_c01025{letter-spacing:21.745280pt;}
.ws1_c01025{word-spacing:-0.063760pt;}
.ws9_c01025{word-spacing:-0.042507pt;}
.ws21_c01025{word-spacing:-0.037195pt;}
.ws24_c01025{word-spacing:0.000000pt;}
.wsf_c01025{word-spacing:13.835920pt;}
.ws22_c01025{word-spacing:16.950384pt;}
.ws1d_c01025{word-spacing:18.107840pt;}
.ws23_c01025{word-spacing:18.278784pt;}
.ws10_c01025{word-spacing:20.530720pt;}
.ws1c_c01025{word-spacing:20.658240pt;}
.ws3_c01025{word-spacing:20.722000pt;}
.ws13_c01025{word-spacing:20.785760pt;}
.ws8_c01025{word-spacing:22.252240pt;}
.ws2_c01025{word-spacing:22.571040pt;}
.ws18_c01025{word-spacing:22.889840pt;}
.ws1a_c01025{word-spacing:23.017360pt;}
.ws7_c01025{word-spacing:23.081120pt;}
.ws5_c01025{word-spacing:23.144880pt;}
.wsc_c01025{word-spacing:23.336160pt;}
.ws4_c01025{word-spacing:23.782480pt;}
.ws0_c01025{word-spacing:23.846240pt;}
.ws19_c01025{word-spacing:23.973760pt;}
.ws15_c01025{word-spacing:24.037520pt;}
.wsd_c01025{word-spacing:24.802640pt;}
.ws6_c01025{word-spacing:24.866400pt;}
.ws16_c01025{word-spacing:25.121440pt;}
.ws1f_c01025{word-spacing:25.185200pt;}
.ws1e_c01025{word-spacing:25.248960pt;}
.ws11_c01025{word-spacing:25.759040pt;}
.wsb_c01025{word-spacing:25.950320pt;}
.ws17_c01025{word-spacing:27.544320pt;}
.wse_c01025{word-spacing:28.819520pt;}
.ws14_c01025{word-spacing:28.845024pt;}
.ws1b_c01025{word-spacing:29.202080pt;}
.ws12_c01025{word-spacing:30.586453pt;}
.ws20_c01025{word-spacing:30.796080pt;}
.wsa_c01025{word-spacing:70.454800pt;}
._0_c01025{margin-left:-36.151920pt;}
._5_c01025{margin-left:-31.369920pt;}
._b_c01025{margin-left:-29.393360pt;}
._12_c01025{margin-left:-26.331013pt;}
._c_c01025{margin-left:-24.037520pt;}
._a_c01025{margin-left:-7.459920pt;}
._6_c01025{margin-left:-5.228320pt;}
._f_c01025{margin-left:-4.271920pt;}
._4_c01025{margin-left:-3.379280pt;}
._2_c01025{margin-left:-1.721520pt;}
._3_c01025{width:1.530240pt;}
._9_c01025{width:3.506800pt;}
._11_c01025{width:16.096485pt;}
._8_c01025{width:26.072160pt;}
._7_c01025{width:28.446480pt;}
._10_c01025{width:32.612800pt;}
._e_c01025{width:70.518560pt;}
._d_c01025{width:84.622272pt;}
._1_c01025{width:829.394320pt;}
.fs3_c01025{font-size:37.194667pt;}
.fs1_c01025{font-size:42.506667pt;}
.fs4_c01025{font-size:53.136000pt;}
.fs0_c01025{font-size:63.760000pt;}
.fs2_c01025{font-size:76.512000pt;}
.y0_c01025{bottom:0.000000pt;}
.y21_c01025{bottom:97.918667pt;}
.y20_c01025{bottom:118.678667pt;}
.y1f_c01025{bottom:142.462667pt;}
.y1e_c01025{bottom:166.365333pt;}
.y1d_c01025{bottom:190.268000pt;}
.y1c_c01025{bottom:214.170667pt;}
.y1b_c01025{bottom:238.074667pt;}
.y1a_c01025{bottom:261.977333pt;}
.y19_c01025{bottom:285.880000pt;}
.y18_c01025{bottom:316.646667pt;}
.y17_c01025{bottom:366.681333pt;}
.y16_c01025{bottom:390.584000pt;}
.y15_c01025{bottom:414.486667pt;}
.y14_c01025{bottom:438.389333pt;}
.y13_c01025{bottom:462.292000pt;}
.y12_c01025{bottom:493.058667pt;}
.y11_c01025{bottom:545.816000pt;}
.y10_c01025{bottom:605.813333pt;}
.yf_c01025{bottom:629.717333pt;}
.ye_c01025{bottom:653.620000pt;}
.yd_c01025{bottom:677.522667pt;}
.yc_c01025{bottom:701.425333pt;}
.yb_c01025{bottom:725.329333pt;}
.ya_c01025{bottom:749.232000pt;}
.y9_c01025{bottom:773.134667pt;}
.y8_c01025{bottom:797.037333pt;}
.y7_c01025{bottom:827.804000pt;}
.y6_c01025{bottom:877.838667pt;}
.y5_c01025{bottom:901.741333pt;}
.y4_c01025{bottom:925.644000pt;}
.y3_c01025{bottom:949.546667pt;}
.y2_c01025{bottom:973.450667pt;}
.y1_c01025{bottom:1032.964000pt;}
.h7_c01025{height:25.143595pt;}
.h8_c01025{height:39.852000pt;}
.h2_c01025{height:47.820000pt;}
.h3_c01025{height:51.870507pt;}
.h5_c01025{height:53.132000pt;}
.h4_c01025{height:57.384000pt;}
.h6_c01025{height:63.937333pt;}
.h1_c01025{height:1123.333333pt;}
.h0_c01025{height:1123.653333pt;}
.w0_c01025{width:794.550667pt;}
.w1_c01025{width:794.666667pt;}
.x0_c01025{left:0.000000pt;}
.x1_c01025{left:113.385333pt;}
.x5_c01025{left:120.746667pt;}
.x2_c01025{left:142.078667pt;}
.x3_c01025{left:291.216000pt;}
.x4_c01025{left:406.829333pt;}
}





/* 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_c8d0e68ea03aa2cea0fbc90a.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.001000;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_25b160f2fb62d712bb30cfb3.woff2')format("woff");}.ff2_c01026{font-family:ff2_c01026;line-height:1.001000;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_c01026;src:url('chunks/assets/font_feb5efa5a490e41f8d916e05.woff2')format("woff");}.ff3_c01026{font-family:ff3_c01026;line-height:1.001000;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_c01026;src:url('chunks/assets/font_ac8850fc34fc3cd0c13e75bb.woff2')format("woff");}.ff4_c01026{font-family:ff4_c01026;line-height:0.697000;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_c01026;src:url('chunks/assets/font_b61faf3ddb555aa80eabd387.woff2')format("woff");}.ff5_c01026{font-family:ff5_c01026;line-height:0.696000;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_c01026;src:url('chunks/assets/font_1633b36149108f5fc973a98f.woff2')format("woff");}.ff6_c01026{font-family:ff6_c01026;line-height:1.000000;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_c01026;src:url('chunks/assets/font_4fca5a236573959765c1edfd.woff2')format("woff");}.ff7_c01026{font-family:ff7_c01026;line-height:1.000000;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);}
.v2_c01026{vertical-align:-21.690000px;}
.v0_c01026{vertical-align:0.000000px;}
.v3_c01026{vertical-align:21.690000px;}
.v1_c01026{vertical-align:26.034000px;}
.ls2_c01026{letter-spacing:0.000000px;}
.ls1_c01026{letter-spacing:22.930764px;}
.ls0_c01026{letter-spacing:25.584984px;}
.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;}
}
.ws23_c01026{word-spacing:-25.644762px;}
.ws1_c01026{word-spacing:-0.071730px;}
.ws25_c01026{word-spacing:-0.059778px;}
.ws5_c01026{word-spacing:-0.047820px;}
.ws20_c01026{word-spacing:-0.041844px;}
.ws2b_c01026{word-spacing:0.000000px;}
.wsc_c01026{word-spacing:17.932500px;}
.ws27_c01026{word-spacing:19.846296px;}
.ws2a_c01026{word-spacing:19.850430px;}
.ws13_c01026{word-spacing:19.869210px;}
.ws11_c01026{word-spacing:19.924170px;}
.ws19_c01026{word-spacing:20.729970px;}
.ws28_c01026{word-spacing:21.340746px;}
.ws12_c01026{word-spacing:21.877650px;}
.ws26_c01026{word-spacing:22.655862px;}
.ws24_c01026{word-spacing:22.715640px;}
.ws10_c01026{word-spacing:23.240520px;}
.wsf_c01026{word-spacing:23.312250px;}
.ws8_c01026{word-spacing:23.383980px;}
.ws29_c01026{word-spacing:24.030756px;}
.ws18_c01026{word-spacing:24.603390px;}
.ws16_c01026{word-spacing:24.818580px;}
.ws9_c01026{word-spacing:25.033770px;}
.wse_c01026{word-spacing:25.392420px;}
.ws21_c01026{word-spacing:25.525206px;}
.ws2_c01026{word-spacing:25.751070px;}
.ws14_c01026{word-spacing:26.037990px;}
.ws22_c01026{word-spacing:26.541432px;}
.ws7_c01026{word-spacing:26.611830px;}
.ws15_c01026{word-spacing:26.755290px;}
.ws0_c01026{word-spacing:26.827020px;}
.ws1f_c01026{word-spacing:27.113940px;}
.ws3_c01026{word-spacing:27.185670px;}
.ws6_c01026{word-spacing:27.831240px;}
.ws1c_c01026{word-spacing:29.481030px;}
.ws4_c01026{word-spacing:30.054870px;}
.wsb_c01026{word-spacing:30.341790px;}
.ws17_c01026{word-spacing:30.413520px;}
.ws1e_c01026{word-spacing:31.202550px;}
.wsa_c01026{word-spacing:33.210990px;}
.ws1a_c01026{word-spacing:33.569640px;}
.ws1d_c01026{word-spacing:33.784830px;}
.ws1b_c01026{word-spacing:34.071750px;}
.wsd_c01026{word-spacing:34.286940px;}
._0_c01026{margin-left:-40.670910px;}
._f_c01026{margin-left:-38.380770px;}
._e_c01026{margin-left:-36.438840px;}
._2_c01026{margin-left:-35.434620px;}
._9_c01026{margin-left:-33.210990px;}
._15_c01026{margin-left:-31.021056px;}
._c_c01026{margin-left:-28.692000px;}
._11_c01026{margin-left:-27.400860px;}
._17_c01026{margin-left:-25.610016px;}
._16_c01026{margin-left:-23.886168px;}
._10_c01026{margin-left:-8.464140px;}
._b_c01026{margin-left:-7.350630px;}
._d_c01026{margin-left:-6.025320px;}
._4_c01026{margin-left:-3.609540px;}
._7_c01026{margin-left:-1.864980px;}
._3_c01026{width:1.864980px;}
._6_c01026{width:3.028740px;}
._5_c01026{width:4.345200px;}
._13_c01026{width:10.251480px;}
._12_c01026{width:11.267520px;}
._a_c01026{width:24.603390px;}
._8_c01026{width:26.253180px;}
._14_c01026{width:34.909470px;}
._1_c01026{width:933.068610px;}
.fc0_c01026{color:rgb(0,0,0);}
.fs2_c01026{font-size:41.844000px;}
.fs1_c01026{font-size:47.820000px;}
.fs3_c01026{font-size:59.778000px;}
.fs0_c01026{font-size:71.730000px;}
.y0_c01026{bottom:0.000000px;}
.y28_c01026{bottom:93.442500px;}
.y27_c01026{bottom:116.797500px;}
.y26_c01026{bottom:134.731500px;}
.y25_c01026{bottom:147.240000px;}
.y24_c01026{bottom:170.596500px;}
.y23_c01026{bottom:183.106500px;}
.y22_c01026{bottom:206.461500px;}
.y21_c01026{bottom:230.911500px;}
.y20_c01026{bottom:257.802000px;}
.y1f_c01026{bottom:284.694000px;}
.y1e_c01026{bottom:311.584500px;}
.y1d_c01026{bottom:338.475000px;}
.y1c_c01026{bottom:365.365500px;}
.y1b_c01026{bottom:402.457500px;}
.y1a_c01026{bottom:429.349500px;}
.y19_c01026{bottom:456.240000px;}
.y18_c01026{bottom:483.130500px;}
.y17_c01026{bottom:520.222500px;}
.y16_c01026{bottom:547.113000px;}
.y15_c01026{bottom:574.003500px;}
.y14_c01026{bottom:600.895500px;}
.y13_c01026{bottom:637.987500px;}
.y12_c01026{bottom:664.878000px;}
.y11_c01026{bottom:691.768500px;}
.y10_c01026{bottom:718.659000px;}
.yf_c01026{bottom:745.551000px;}
.ye_c01026{bottom:772.441500px;}
.yd_c01026{bottom:799.332000px;}
.yc_c01026{bottom:826.222500px;}
.yb_c01026{bottom:853.114500px;}
.ya_c01026{bottom:880.005000px;}
.y9_c01026{bottom:906.895500px;}
.y8_c01026{bottom:933.786000px;}
.y7_c01026{bottom:960.678000px;}
.y6_c01026{bottom:987.568500px;}
.y5_c01026{bottom:1014.459000px;}
.y4_c01026{bottom:1041.349500px;}
.y3_c01026{bottom:1068.240000px;}
.y2_c01026{bottom:1095.132000px;}
.y1_c01026{bottom:1162.084500px;}
.h5_c01026{height:28.286544px;}
.h6_c01026{height:44.833500px;}
.h7_c01026{height:49.976544px;}
.h2_c01026{height:53.797500px;}
.h4_c01026{height:58.354320px;}
.h3_c01026{height:58.360320px;}
.h1_c01026{height:1263.750000px;}
.h0_c01026{height:1264.110000px;}
.w0_c01026{width:893.869500px;}
.w1_c01026{width:894.000000px;}
.x0_c01026{left:0.000000px;}
.x1_c01026{left:127.558500px;}
.x5_c01026{left:135.840000px;}
.x2_c01026{left:159.838500px;}
.x4_c01026{left:171.456000px;}
.x3_c01026{left:197.794500px;}
@media print{
.v2_c01026{vertical-align:-19.280000pt;}
.v0_c01026{vertical-align:0.000000pt;}
.v3_c01026{vertical-align:19.280000pt;}
.v1_c01026{vertical-align:23.141333pt;}
.ls2_c01026{letter-spacing:0.000000pt;}
.ls1_c01026{letter-spacing:20.382901pt;}
.ls0_c01026{letter-spacing:22.742208pt;}
.ws23_c01026{word-spacing:-22.795344pt;}
.ws1_c01026{word-spacing:-0.063760pt;}
.ws25_c01026{word-spacing:-0.053136pt;}
.ws5_c01026{word-spacing:-0.042507pt;}
.ws20_c01026{word-spacing:-0.037195pt;}
.ws2b_c01026{word-spacing:0.000000pt;}
.wsc_c01026{word-spacing:15.940000pt;}
.ws27_c01026{word-spacing:17.641152pt;}
.ws2a_c01026{word-spacing:17.644827pt;}
.ws13_c01026{word-spacing:17.661520pt;}
.ws11_c01026{word-spacing:17.710373pt;}
.ws19_c01026{word-spacing:18.426640pt;}
.ws28_c01026{word-spacing:18.969552pt;}
.ws12_c01026{word-spacing:19.446800pt;}
.ws26_c01026{word-spacing:20.138544pt;}
.ws24_c01026{word-spacing:20.191680pt;}
.ws10_c01026{word-spacing:20.658240pt;}
.wsf_c01026{word-spacing:20.722000pt;}
.ws8_c01026{word-spacing:20.785760pt;}
.ws29_c01026{word-spacing:21.360672pt;}
.ws18_c01026{word-spacing:21.869680pt;}
.ws16_c01026{word-spacing:22.060960pt;}
.ws9_c01026{word-spacing:22.252240pt;}
.wse_c01026{word-spacing:22.571040pt;}
.ws21_c01026{word-spacing:22.689072pt;}
.ws2_c01026{word-spacing:22.889840pt;}
.ws14_c01026{word-spacing:23.144880pt;}
.ws22_c01026{word-spacing:23.592384pt;}
.ws7_c01026{word-spacing:23.654960pt;}
.ws15_c01026{word-spacing:23.782480pt;}
.ws0_c01026{word-spacing:23.846240pt;}
.ws1f_c01026{word-spacing:24.101280pt;}
.ws3_c01026{word-spacing:24.165040pt;}
.ws6_c01026{word-spacing:24.738880pt;}
.ws1c_c01026{word-spacing:26.205360pt;}
.ws4_c01026{word-spacing:26.715440pt;}
.wsb_c01026{word-spacing:26.970480pt;}
.ws17_c01026{word-spacing:27.034240pt;}
.ws1e_c01026{word-spacing:27.735600pt;}
.wsa_c01026{word-spacing:29.520880pt;}
.ws1a_c01026{word-spacing:29.839680pt;}
.ws1d_c01026{word-spacing:30.030960pt;}
.ws1b_c01026{word-spacing:30.286000pt;}
.wsd_c01026{word-spacing:30.477280pt;}
._0_c01026{margin-left:-36.151920pt;}
._f_c01026{margin-left:-34.116240pt;}
._e_c01026{margin-left:-32.390080pt;}
._2_c01026{margin-left:-31.497440pt;}
._9_c01026{margin-left:-29.520880pt;}
._15_c01026{margin-left:-27.574272pt;}
._c_c01026{margin-left:-25.504000pt;}
._11_c01026{margin-left:-24.356320pt;}
._17_c01026{margin-left:-22.764459pt;}
._16_c01026{margin-left:-21.232149pt;}
._10_c01026{margin-left:-7.523680pt;}
._b_c01026{margin-left:-6.533893pt;}
._d_c01026{margin-left:-5.355840pt;}
._4_c01026{margin-left:-3.208480pt;}
._7_c01026{margin-left:-1.657760pt;}
._3_c01026{width:1.657760pt;}
._6_c01026{width:2.692213pt;}
._5_c01026{width:3.862400pt;}
._13_c01026{width:9.112427pt;}
._12_c01026{width:10.015573pt;}
._a_c01026{width:21.869680pt;}
._8_c01026{width:23.336160pt;}
._14_c01026{width:31.030640pt;}
._1_c01026{width:829.394320pt;}
.fs2_c01026{font-size:37.194667pt;}
.fs1_c01026{font-size:42.506667pt;}
.fs3_c01026{font-size:53.136000pt;}
.fs0_c01026{font-size:63.760000pt;}
.y0_c01026{bottom:0.000000pt;}
.y28_c01026{bottom:83.060000pt;}
.y27_c01026{bottom:103.820000pt;}
.y26_c01026{bottom:119.761333pt;}
.y25_c01026{bottom:130.880000pt;}
.y24_c01026{bottom:151.641333pt;}
.y23_c01026{bottom:162.761333pt;}
.y22_c01026{bottom:183.521333pt;}
.y21_c01026{bottom:205.254667pt;}
.y20_c01026{bottom:229.157333pt;}
.y1f_c01026{bottom:253.061333pt;}
.y1e_c01026{bottom:276.964000pt;}
.y1d_c01026{bottom:300.866667pt;}
.y1c_c01026{bottom:324.769333pt;}
.y1b_c01026{bottom:357.740000pt;}
.y1a_c01026{bottom:381.644000pt;}
.y19_c01026{bottom:405.546667pt;}
.y18_c01026{bottom:429.449333pt;}
.y17_c01026{bottom:462.420000pt;}
.y16_c01026{bottom:486.322667pt;}
.y15_c01026{bottom:510.225333pt;}
.y14_c01026{bottom:534.129333pt;}
.y13_c01026{bottom:567.100000pt;}
.y12_c01026{bottom:591.002667pt;}
.y11_c01026{bottom:614.905333pt;}
.y10_c01026{bottom:638.808000pt;}
.yf_c01026{bottom:662.712000pt;}
.ye_c01026{bottom:686.614667pt;}
.yd_c01026{bottom:710.517333pt;}
.yc_c01026{bottom:734.420000pt;}
.yb_c01026{bottom:758.324000pt;}
.ya_c01026{bottom:782.226667pt;}
.y9_c01026{bottom:806.129333pt;}
.y8_c01026{bottom:830.032000pt;}
.y7_c01026{bottom:853.936000pt;}
.y6_c01026{bottom:877.838667pt;}
.y5_c01026{bottom:901.741333pt;}
.y4_c01026{bottom:925.644000pt;}
.y3_c01026{bottom:949.546667pt;}
.y2_c01026{bottom:973.450667pt;}
.y1_c01026{bottom:1032.964000pt;}
.h5_c01026{height:25.143595pt;}
.h6_c01026{height:39.852000pt;}
.h7_c01026{height:44.423595pt;}
.h2_c01026{height:47.820000pt;}
.h4_c01026{height:51.870507pt;}
.h3_c01026{height:51.875840pt;}
.h1_c01026{height:1123.333333pt;}
.h0_c01026{height:1123.653333pt;}
.w0_c01026{width:794.550667pt;}
.w1_c01026{width:794.666667pt;}
.x0_c01026{left:0.000000pt;}
.x1_c01026{left:113.385333pt;}
.x5_c01026{left:120.746667pt;}
.x2_c01026{left:142.078667pt;}
.x4_c01026{left:152.405333pt;}
.x3_c01026{left:175.817333pt;}
}





/* 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_d46037126c74bc4d535ee8bd.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.001000;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_d7821e7d053c2f27fa9de329.woff2')format("woff");}.ff2_c01027{font-family:ff2_c01027;line-height:1.001000;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_c01027;src:url('chunks/assets/font_5f871ffb81428a40a0beb182.woff2')format("woff");}.ff3_c01027{font-family:ff3_c01027;line-height:1.000000;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_c01027;src:url('chunks/assets/font_e33b3b7de9330afc4e54b515.woff2')format("woff");}.ff4_c01027{font-family:ff4_c01027;line-height:0.697000;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_c01027;src:url('chunks/assets/font_49a19b049509cec36a664601.woff2')format("woff");}.ff5_c01027{font-family:ff5_c01027;line-height:1.001000;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_c01027;src:url('chunks/assets/font_cdf522a95d009f68be3a59e7.woff2')format("woff");}.ff6_c01027{font-family:ff6_c01027;line-height:0.696000;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_c01027;src:url('chunks/assets/font_fbe5d5940bafc0d75e1e7c42.woff2')format("woff");}.ff7_c01027{font-family:ff7_c01027;line-height:1.000000;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_c01027;src:url('chunks/assets/font_3f2004dc6b7e339315bfe2c9.woff2')format("woff");}.ff8_c01027{font-family:ff8_c01027;line-height:1.000000;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);}
.v3_c01027{vertical-align:-21.690000px;}
.v0_c01027{vertical-align:0.000000px;}
.v1_c01027{vertical-align:5.982000px;}
.v4_c01027{vertical-align:15.108000px;}
.v5_c01027{vertical-align:21.690000px;}
.v2_c01027{vertical-align:26.028000px;}
.ls1_c01027{letter-spacing:0.000000px;}
.ls0_c01027{letter-spacing:22.930764px;}
.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:-0.071730px;}
.ws28_c01027{word-spacing:-0.059778px;}
.ws21_c01027{word-spacing:-0.047820px;}
.ws26_c01027{word-spacing:-0.041844px;}
.ws2d_c01027{word-spacing:0.000000px;}
.ws19_c01027{word-spacing:17.789040px;}
.ws1c_c01027{word-spacing:19.295370px;}
.ws2a_c01027{word-spacing:19.846296px;}
.ws2b_c01027{word-spacing:19.906074px;}
.ws13_c01027{word-spacing:20.514780px;}
.ws29_c01027{word-spacing:21.280968px;}
.ws2c_c01027{word-spacing:21.340746px;}
.wsc_c01027{word-spacing:21.350400px;}
.wse_c01027{word-spacing:21.375540px;}
.ws1a_c01027{word-spacing:21.734190px;}
.ws7_c01027{word-spacing:22.092840px;}
.ws1d_c01027{word-spacing:22.236300px;}
.ws25_c01027{word-spacing:22.379760px;}
.ws23_c01027{word-spacing:23.097060px;}
.wsf_c01027{word-spacing:23.240520px;}
.ws4_c01027{word-spacing:23.312250px;}
.ws15_c01027{word-spacing:23.383980px;}
.ws1b_c01027{word-spacing:24.101280px;}
.ws14_c01027{word-spacing:24.244740px;}
.ws17_c01027{word-spacing:24.675120px;}
.ws9_c01027{word-spacing:24.746850px;}
.ws3_c01027{word-spacing:24.890310px;}
.ws2_c01027{word-spacing:24.962040px;}
.ws20_c01027{word-spacing:25.033770px;}
.ws1f_c01027{word-spacing:25.248960px;}
.ws1e_c01027{word-spacing:26.037990px;}
.ws18_c01027{word-spacing:26.253180px;}
.wsd_c01027{word-spacing:26.771280px;}
.ws0_c01027{word-spacing:26.827020px;}
.ws5_c01027{word-spacing:27.042210px;}
.ws6_c01027{word-spacing:27.113940px;}
.ws27_c01027{word-spacing:27.198990px;}
.ws10_c01027{word-spacing:27.759510px;}
.wsa_c01027{word-spacing:27.803100px;}
.ws12_c01027{word-spacing:27.831240px;}
.ws24_c01027{word-spacing:28.405080px;}
.wsb_c01027{word-spacing:28.476810px;}
.ws8_c01027{word-spacing:30.987360px;}
.ws11_c01027{word-spacing:32.213550px;}
.ws16_c01027{word-spacing:33.713100px;}
.ws22_c01027{word-spacing:79.261650px;}
._0_c01027{margin-left:-40.670910px;}
._c_c01027{margin-left:-37.012680px;}
._4_c01027{margin-left:-35.506350px;}
._f_c01027{margin-left:-34.502130px;}
._5_c01027{margin-left:-33.210990px;}
._12_c01027{margin-left:-31.384206px;}
._8_c01027{margin-left:-27.329130px;}
._13_c01027{margin-left:-24.951618px;}
._14_c01027{margin-left:-23.607474px;}
._10_c01027{margin-left:-8.971680px;}
._7_c01027{margin-left:-7.890300px;}
._a_c01027{margin-left:-5.594940px;}
._6_c01027{margin-left:-3.945150px;}
._3_c01027{margin-left:-1.936710px;}
._2_c01027{width:1.864980px;}
._b_c01027{width:3.945150px;}
._11_c01027{width:6.526806px;}
._e_c01027{width:22.092840px;}
._d_c01027{width:32.818290px;}
._9_c01027{width:79.333380px;}
._1_c01027{width:933.068610px;}
.fc0_c01027{color:rgb(0,0,0);}
.fs2_c01027{font-size:41.844000px;}
.fs1_c01027{font-size:47.820000px;}
.fs3_c01027{font-size:59.778000px;}
.fs0_c01027{font-size:71.730000px;}
.y0_c01027{bottom:0.000000px;}
.y26_c01027{bottom:119.514000px;}
.y25_c01027{bottom:124.938000px;}
.y24_c01027{bottom:139.050000px;}
.y23_c01027{bottom:156.982500px;}
.y22_c01027{bottom:162.405000px;}
.y21_c01027{bottom:187.276500px;}
.y20_c01027{bottom:214.168500px;}
.y1f_c01027{bottom:241.059000px;}
.y1e_c01027{bottom:267.949500px;}
.y1d_c01027{bottom:302.562000px;}
.y1c_c01027{bottom:358.849500px;}
.y1b_c01027{bottom:385.741500px;}
.y1a_c01027{bottom:412.632000px;}
.y19_c01027{bottom:439.522500px;}
.y18_c01027{bottom:466.413000px;}
.y17_c01027{bottom:493.305000px;}
.y16_c01027{bottom:520.195500px;}
.y15_c01027{bottom:547.086000px;}
.y14_c01027{bottom:573.976500px;}
.y13_c01027{bottom:600.868500px;}
.y12_c01027{bottom:627.759000px;}
.y11_c01027{bottom:654.649500px;}
.y10_c01027{bottom:681.540000px;}
.yf_c01027{bottom:708.432000px;}
.ye_c01027{bottom:735.322500px;}
.yd_c01027{bottom:762.213000px;}
.yc_c01027{bottom:789.103500px;}
.yb_c01027{bottom:815.994000px;}
.ya_c01027{bottom:842.886000px;}
.y9_c01027{bottom:869.776500px;}
.y8_c01027{bottom:896.667000px;}
.y7_c01027{bottom:923.557500px;}
.y6_c01027{bottom:950.449500px;}
.y5_c01027{bottom:985.060500px;}
.y4_c01027{bottom:1041.349500px;}
.y3_c01027{bottom:1068.240000px;}
.y2_c01027{bottom:1095.132000px;}
.y1_c01027{bottom:1162.084500px;}
.h7_c01027{height:38.251500px;}
.h8_c01027{height:44.833500px;}
.h9_c01027{height:49.976544px;}
.h2_c01027{height:53.797500px;}
.h4_c01027{height:58.354320px;}
.h5_c01027{height:58.360320px;}
.h6_c01027{height:59.773500px;}
.h3_c01027{height:59.779500px;}
.h1_c01027{height:1263.750000px;}
.h0_c01027{height:1264.110000px;}
.w0_c01027{width:893.869500px;}
.w1_c01027{width:894.000000px;}
.x0_c01027{left:0.000000px;}
.x1_c01027{left:127.558500px;}
.x5_c01027{left:135.840000px;}
.x2_c01027{left:159.838500px;}
.x7_c01027{left:176.874000px;}
.x6_c01027{left:236.821500px;}
.x4_c01027{left:239.029500px;}
.x3_c01027{left:460.498500px;}
@media print{
.v3_c01027{vertical-align:-19.280000pt;}
.v0_c01027{vertical-align:0.000000pt;}
.v1_c01027{vertical-align:5.317333pt;}
.v4_c01027{vertical-align:13.429333pt;}
.v5_c01027{vertical-align:19.280000pt;}
.v2_c01027{vertical-align:23.136000pt;}
.ls1_c01027{letter-spacing:0.000000pt;}
.ls0_c01027{letter-spacing:20.382901pt;}
.ws1_c01027{word-spacing:-0.063760pt;}
.ws28_c01027{word-spacing:-0.053136pt;}
.ws21_c01027{word-spacing:-0.042507pt;}
.ws26_c01027{word-spacing:-0.037195pt;}
.ws2d_c01027{word-spacing:0.000000pt;}
.ws19_c01027{word-spacing:15.812480pt;}
.ws1c_c01027{word-spacing:17.151440pt;}
.ws2a_c01027{word-spacing:17.641152pt;}
.ws2b_c01027{word-spacing:17.694288pt;}
.ws13_c01027{word-spacing:18.235360pt;}
.ws29_c01027{word-spacing:18.916416pt;}
.ws2c_c01027{word-spacing:18.969552pt;}
.wsc_c01027{word-spacing:18.978133pt;}
.wse_c01027{word-spacing:19.000480pt;}
.ws1a_c01027{word-spacing:19.319280pt;}
.ws7_c01027{word-spacing:19.638080pt;}
.ws1d_c01027{word-spacing:19.765600pt;}
.ws25_c01027{word-spacing:19.893120pt;}
.ws23_c01027{word-spacing:20.530720pt;}
.wsf_c01027{word-spacing:20.658240pt;}
.ws4_c01027{word-spacing:20.722000pt;}
.ws15_c01027{word-spacing:20.785760pt;}
.ws1b_c01027{word-spacing:21.423360pt;}
.ws14_c01027{word-spacing:21.550880pt;}
.ws17_c01027{word-spacing:21.933440pt;}
.ws9_c01027{word-spacing:21.997200pt;}
.ws3_c01027{word-spacing:22.124720pt;}
.ws2_c01027{word-spacing:22.188480pt;}
.ws20_c01027{word-spacing:22.252240pt;}
.ws1f_c01027{word-spacing:22.443520pt;}
.ws1e_c01027{word-spacing:23.144880pt;}
.ws18_c01027{word-spacing:23.336160pt;}
.wsd_c01027{word-spacing:23.796693pt;}
.ws0_c01027{word-spacing:23.846240pt;}
.ws5_c01027{word-spacing:24.037520pt;}
.ws6_c01027{word-spacing:24.101280pt;}
.ws27_c01027{word-spacing:24.176880pt;}
.ws10_c01027{word-spacing:24.675120pt;}
.wsa_c01027{word-spacing:24.713867pt;}
.ws12_c01027{word-spacing:24.738880pt;}
.ws24_c01027{word-spacing:25.248960pt;}
.wsb_c01027{word-spacing:25.312720pt;}
.ws8_c01027{word-spacing:27.544320pt;}
.ws11_c01027{word-spacing:28.634267pt;}
.ws16_c01027{word-spacing:29.967200pt;}
.ws22_c01027{word-spacing:70.454800pt;}
._0_c01027{margin-left:-36.151920pt;}
._c_c01027{margin-left:-32.900160pt;}
._4_c01027{margin-left:-31.561200pt;}
._f_c01027{margin-left:-30.668560pt;}
._5_c01027{margin-left:-29.520880pt;}
._12_c01027{margin-left:-27.897072pt;}
._8_c01027{margin-left:-24.292560pt;}
._13_c01027{margin-left:-22.179216pt;}
._14_c01027{margin-left:-20.984421pt;}
._10_c01027{margin-left:-7.974827pt;}
._7_c01027{margin-left:-7.013600pt;}
._a_c01027{margin-left:-4.973280pt;}
._6_c01027{margin-left:-3.506800pt;}
._3_c01027{margin-left:-1.721520pt;}
._2_c01027{width:1.657760pt;}
._b_c01027{width:3.506800pt;}
._11_c01027{width:5.801605pt;}
._e_c01027{width:19.638080pt;}
._d_c01027{width:29.171813pt;}
._9_c01027{width:70.518560pt;}
._1_c01027{width:829.394320pt;}
.fs2_c01027{font-size:37.194667pt;}
.fs1_c01027{font-size:42.506667pt;}
.fs3_c01027{font-size:53.136000pt;}
.fs0_c01027{font-size:63.760000pt;}
.y0_c01027{bottom:0.000000pt;}
.y26_c01027{bottom:106.234667pt;}
.y25_c01027{bottom:111.056000pt;}
.y24_c01027{bottom:123.600000pt;}
.y23_c01027{bottom:139.540000pt;}
.y22_c01027{bottom:144.360000pt;}
.y21_c01027{bottom:166.468000pt;}
.y20_c01027{bottom:190.372000pt;}
.y1f_c01027{bottom:214.274667pt;}
.y1e_c01027{bottom:238.177333pt;}
.y1d_c01027{bottom:268.944000pt;}
.y1c_c01027{bottom:318.977333pt;}
.y1b_c01027{bottom:342.881333pt;}
.y1a_c01027{bottom:366.784000pt;}
.y19_c01027{bottom:390.686667pt;}
.y18_c01027{bottom:414.589333pt;}
.y17_c01027{bottom:438.493333pt;}
.y16_c01027{bottom:462.396000pt;}
.y15_c01027{bottom:486.298667pt;}
.y14_c01027{bottom:510.201333pt;}
.y13_c01027{bottom:534.105333pt;}
.y12_c01027{bottom:558.008000pt;}
.y11_c01027{bottom:581.910667pt;}
.y10_c01027{bottom:605.813333pt;}
.yf_c01027{bottom:629.717333pt;}
.ye_c01027{bottom:653.620000pt;}
.yd_c01027{bottom:677.522667pt;}
.yc_c01027{bottom:701.425333pt;}
.yb_c01027{bottom:725.328000pt;}
.ya_c01027{bottom:749.232000pt;}
.y9_c01027{bottom:773.134667pt;}
.y8_c01027{bottom:797.037333pt;}
.y7_c01027{bottom:820.940000pt;}
.y6_c01027{bottom:844.844000pt;}
.y5_c01027{bottom:875.609333pt;}
.y4_c01027{bottom:925.644000pt;}
.y3_c01027{bottom:949.546667pt;}
.y2_c01027{bottom:973.450667pt;}
.y1_c01027{bottom:1032.964000pt;}
.h7_c01027{height:34.001333pt;}
.h8_c01027{height:39.852000pt;}
.h9_c01027{height:44.423595pt;}
.h2_c01027{height:47.820000pt;}
.h4_c01027{height:51.870507pt;}
.h5_c01027{height:51.875840pt;}
.h6_c01027{height:53.132000pt;}
.h3_c01027{height:53.137333pt;}
.h1_c01027{height:1123.333333pt;}
.h0_c01027{height:1123.653333pt;}
.w0_c01027{width:794.550667pt;}
.w1_c01027{width:794.666667pt;}
.x0_c01027{left:0.000000pt;}
.x1_c01027{left:113.385333pt;}
.x5_c01027{left:120.746667pt;}
.x2_c01027{left:142.078667pt;}
.x7_c01027{left:157.221333pt;}
.x6_c01027{left:210.508000pt;}
.x4_c01027{left:212.470667pt;}
.x3_c01027{left:409.332000pt;}
}





/* 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_fc21f01e5277059e95a56fe1.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.001000;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_a02882e099a7487dfcb0f775.woff2')format("woff");}.ff2_c01028{font-family:ff2_c01028;line-height:1.001000;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_550f1215e35e99c5ce9384c9.woff2')format("woff");}.ff3_c01028{font-family:ff3_c01028;line-height:1.001000;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_c01028;src:url('chunks/assets/font_15bd5986127ce32fca492643.woff2')format("woff");}.ff4_c01028{font-family:ff4_c01028;line-height:0.697000;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_c01028;src:url('chunks/assets/font_f3b9eeb66e773d6e0cbfb87f.woff2')format("woff");}.ff5_c01028{font-family:ff5_c01028;line-height:1.000000;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_c01028;src:url('chunks/assets/font_ad47cc586548a65b18fe94f0.woff2')format("woff");}.ff6_c01028{font-family:ff6_c01028;line-height:0.696000;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_c01028;src:url('chunks/assets/font_9b934cc1f3f056b879fc52af.woff2')format("woff");}.ff7_c01028{font-family:ff7_c01028;line-height:1.000000;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_c01028;src:url('chunks/assets/font_7d50ee498fa466a9f701cceb.woff2')format("woff");}.ff8_c01028{font-family:ff8_c01028;line-height:1.000000;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);}
.v3_c01028{vertical-align:-21.690000px;}
.v0_c01028{vertical-align:0.000000px;}
.v4_c01028{vertical-align:15.108000px;}
.v2_c01028{vertical-align:18.132000px;}
.v5_c01028{vertical-align:21.690000px;}
.v1_c01028{vertical-align:26.028000px;}
.ls3_c01028{letter-spacing:0.000000px;}
.ls1_c01028{letter-spacing:7.477392px;}
.ls2_c01028{letter-spacing:22.930764px;}
.ls0_c01028{letter-spacing:23.430300px;}
.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:-0.071730px;}
.ws20_c01028{word-spacing:-0.059778px;}
.wse_c01028{word-spacing:-0.047820px;}
.ws1d_c01028{word-spacing:-0.041844px;}
.ws23_c01028{word-spacing:0.000000px;}
.ws1b_c01028{word-spacing:16.569630px;}
.ws1e_c01028{word-spacing:19.846296px;}
.ws17_c01028{word-spacing:20.012670px;}
.ws21_c01028{word-spacing:21.101634px;}
.wsf_c01028{word-spacing:21.160350px;}
.ws1f_c01028{word-spacing:21.280968px;}
.wsc_c01028{word-spacing:21.662460px;}
.ws22_c01028{word-spacing:22.476528px;}
.ws1c_c01028{word-spacing:22.523220px;}
.ws8_c01028{word-spacing:22.594950px;}
.ws16_c01028{word-spacing:23.097060px;}
.ws10_c01028{word-spacing:23.168790px;}
.ws3_c01028{word-spacing:23.312250px;}
.ws1a_c01028{word-spacing:23.383980px;}
.wsd_c01028{word-spacing:23.455710px;}
.ws14_c01028{word-spacing:23.957820px;}
.ws9_c01028{word-spacing:24.316470px;}
.wsa_c01028{word-spacing:24.388200px;}
.ws4_c01028{word-spacing:25.033770px;}
.ws5_c01028{word-spacing:25.105500px;}
.ws7_c01028{word-spacing:25.583100px;}
.wsb_c01028{word-spacing:25.673100px;}
.ws13_c01028{word-spacing:25.966260px;}
.ws0_c01028{word-spacing:26.827020px;}
.ws12_c01028{word-spacing:27.042210px;}
.ws2_c01028{word-spacing:27.185670px;}
.ws18_c01028{word-spacing:27.544320px;}
.ws6_c01028{word-spacing:27.616050px;}
.ws15_c01028{word-spacing:27.759510px;}
.ws19_c01028{word-spacing:31.632930px;}
.ws11_c01028{word-spacing:32.450652px;}
._0_c01028{margin-left:-40.670910px;}
._6_c01028{margin-left:-36.940950px;}
._7_c01028{margin-left:-35.147700px;}
._13_c01028{margin-left:-33.473280px;}
._10_c01028{margin-left:-32.254950px;}
._17_c01028{margin-left:-30.695058px;}
._14_c01028{margin-left:-29.314020px;}
._3_c01028{margin-left:-27.329130px;}
._16_c01028{margin-left:-23.696226px;}
._2_c01028{margin-left:-7.890300px;}
._d_c01028{margin-left:-6.025320px;}
._4_c01028{margin-left:-4.088610px;}
._8_c01028{margin-left:-2.892750px;}
._f_c01028{margin-left:-1.626240px;}
._5_c01028{width:1.793250px;}
._c_c01028{width:2.817060px;}
._b_c01028{width:4.327350px;}
._a_c01028{width:6.212100px;}
._e_c01028{width:24.538500px;}
._9_c01028{width:28.704270px;}
._15_c01028{width:35.030610px;}
._12_c01028{width:79.333380px;}
._11_c01028{width:95.200056px;}
._1_c01028{width:933.068610px;}
.fc0_c01028{color:rgb(0,0,0);}
.fs3_c01028{font-size:41.844000px;}
.fs1_c01028{font-size:47.820000px;}
.fs4_c01028{font-size:59.778000px;}
.fs0_c01028{font-size:71.730000px;}
.fs2_c01028{font-size:86.076000px;}
.y0_c01028{bottom:0.000000px;}
.y24_c01028{bottom:99.340500px;}
.y23_c01028{bottom:122.695500px;}
.y22_c01028{bottom:135.205500px;}
.y21_c01028{bottom:140.628000px;}
.y20_c01028{bottom:160.164000px;}
.y1f_c01028{bottom:178.096500px;}
.y1e_c01028{bottom:204.852000px;}
.y1d_c01028{bottom:231.744000px;}
.y1c_c01028{bottom:258.634500px;}
.y1b_c01028{bottom:304.953000px;}
.y1a_c01028{bottom:331.843500px;}
.y19_c01028{bottom:358.734000px;}
.y18_c01028{bottom:385.624500px;}
.y17_c01028{bottom:412.516500px;}
.y16_c01028{bottom:439.407000px;}
.y15_c01028{bottom:474.018000px;}
.y14_c01028{bottom:530.307000px;}
.y13_c01028{bottom:557.199000px;}
.y12_c01028{bottom:584.089500px;}
.y11_c01028{bottom:610.980000px;}
.y10_c01028{bottom:637.870500px;}
.yf_c01028{bottom:664.761000px;}
.ye_c01028{bottom:699.373500px;}
.yd_c01028{bottom:758.725500px;}
.yc_c01028{bottom:826.222500px;}
.yb_c01028{bottom:853.114500px;}
.ya_c01028{bottom:880.005000px;}
.y9_c01028{bottom:906.895500px;}
.y8_c01028{bottom:933.786000px;}
.y7_c01028{bottom:960.678000px;}
.y6_c01028{bottom:987.568500px;}
.y5_c01028{bottom:1014.459000px;}
.y4_c01028{bottom:1041.349500px;}
.y3_c01028{bottom:1068.240000px;}
.y2_c01028{bottom:1095.132000px;}
.y1_c01028{bottom:1162.084500px;}
.h7_c01028{height:28.286544px;}
.h8_c01028{height:38.251500px;}
.ha_c01028{height:44.833500px;}
.h9_c01028{height:49.976544px;}
.h2_c01028{height:53.797500px;}
.h3_c01028{height:58.354320px;}
.h4_c01028{height:58.360320px;}
.h5_c01028{height:64.557000px;}
.h6_c01028{height:71.929500px;}
.h1_c01028{height:1263.750000px;}
.h0_c01028{height:1264.110000px;}
.w0_c01028{width:893.869500px;}
.w1_c01028{width:894.000000px;}
.x0_c01028{left:0.000000px;}
.x1_c01028{left:127.558500px;}
.x6_c01028{left:135.840000px;}
.x2_c01028{left:159.838500px;}
.x7_c01028{left:165.459000px;}
.x4_c01028{left:171.456000px;}
.x3_c01028{left:197.794500px;}
.x5_c01028{left:372.111000px;}
@media print{
.v3_c01028{vertical-align:-19.280000pt;}
.v0_c01028{vertical-align:0.000000pt;}
.v4_c01028{vertical-align:13.429333pt;}
.v2_c01028{vertical-align:16.117333pt;}
.v5_c01028{vertical-align:19.280000pt;}
.v1_c01028{vertical-align:23.136000pt;}
.ls3_c01028{letter-spacing:0.000000pt;}
.ls1_c01028{letter-spacing:6.646571pt;}
.ls2_c01028{letter-spacing:20.382901pt;}
.ls0_c01028{letter-spacing:20.826933pt;}
.ws1_c01028{word-spacing:-0.063760pt;}
.ws20_c01028{word-spacing:-0.053136pt;}
.wse_c01028{word-spacing:-0.042507pt;}
.ws1d_c01028{word-spacing:-0.037195pt;}
.ws23_c01028{word-spacing:0.000000pt;}
.ws1b_c01028{word-spacing:14.728560pt;}
.ws1e_c01028{word-spacing:17.641152pt;}
.ws17_c01028{word-spacing:17.789040pt;}
.ws21_c01028{word-spacing:18.757008pt;}
.wsf_c01028{word-spacing:18.809200pt;}
.ws1f_c01028{word-spacing:18.916416pt;}
.wsc_c01028{word-spacing:19.255520pt;}
.ws22_c01028{word-spacing:19.979136pt;}
.ws1c_c01028{word-spacing:20.020640pt;}
.ws8_c01028{word-spacing:20.084400pt;}
.ws16_c01028{word-spacing:20.530720pt;}
.ws10_c01028{word-spacing:20.594480pt;}
.ws3_c01028{word-spacing:20.722000pt;}
.ws1a_c01028{word-spacing:20.785760pt;}
.wsd_c01028{word-spacing:20.849520pt;}
.ws14_c01028{word-spacing:21.295840pt;}
.ws9_c01028{word-spacing:21.614640pt;}
.wsa_c01028{word-spacing:21.678400pt;}
.ws4_c01028{word-spacing:22.252240pt;}
.ws5_c01028{word-spacing:22.316000pt;}
.ws7_c01028{word-spacing:22.740533pt;}
.wsb_c01028{word-spacing:22.820533pt;}
.ws13_c01028{word-spacing:23.081120pt;}
.ws0_c01028{word-spacing:23.846240pt;}
.ws12_c01028{word-spacing:24.037520pt;}
.ws2_c01028{word-spacing:24.165040pt;}
.ws18_c01028{word-spacing:24.483840pt;}
.ws6_c01028{word-spacing:24.547600pt;}
.ws15_c01028{word-spacing:24.675120pt;}
.ws19_c01028{word-spacing:28.118160pt;}
.ws11_c01028{word-spacing:28.845024pt;}
._0_c01028{margin-left:-36.151920pt;}
._6_c01028{margin-left:-32.836400pt;}
._7_c01028{margin-left:-31.242400pt;}
._13_c01028{margin-left:-29.754027pt;}
._10_c01028{margin-left:-28.671067pt;}
._17_c01028{margin-left:-27.284496pt;}
._14_c01028{margin-left:-26.056907pt;}
._3_c01028{margin-left:-24.292560pt;}
._16_c01028{margin-left:-21.063312pt;}
._2_c01028{margin-left:-7.013600pt;}
._d_c01028{margin-left:-5.355840pt;}
._4_c01028{margin-left:-3.634320pt;}
._8_c01028{margin-left:-2.571333pt;}
._f_c01028{margin-left:-1.445547pt;}
._5_c01028{width:1.594000pt;}
._c_c01028{width:2.504053pt;}
._b_c01028{width:3.846533pt;}
._a_c01028{width:5.521867pt;}
._e_c01028{width:21.812000pt;}
._9_c01028{width:25.514907pt;}
._15_c01028{width:31.138320pt;}
._12_c01028{width:70.518560pt;}
._11_c01028{width:84.622272pt;}
._1_c01028{width:829.394320pt;}
.fs3_c01028{font-size:37.194667pt;}
.fs1_c01028{font-size:42.506667pt;}
.fs4_c01028{font-size:53.136000pt;}
.fs0_c01028{font-size:63.760000pt;}
.fs2_c01028{font-size:76.512000pt;}
.y0_c01028{bottom:0.000000pt;}
.y24_c01028{bottom:88.302667pt;}
.y23_c01028{bottom:109.062667pt;}
.y22_c01028{bottom:120.182667pt;}
.y21_c01028{bottom:125.002667pt;}
.y20_c01028{bottom:142.368000pt;}
.y1f_c01028{bottom:158.308000pt;}
.y1e_c01028{bottom:182.090667pt;}
.y1d_c01028{bottom:205.994667pt;}
.y1c_c01028{bottom:229.897333pt;}
.y1b_c01028{bottom:271.069333pt;}
.y1a_c01028{bottom:294.972000pt;}
.y19_c01028{bottom:318.874667pt;}
.y18_c01028{bottom:342.777333pt;}
.y17_c01028{bottom:366.681333pt;}
.y16_c01028{bottom:390.584000pt;}
.y15_c01028{bottom:421.349333pt;}
.y14_c01028{bottom:471.384000pt;}
.y13_c01028{bottom:495.288000pt;}
.y12_c01028{bottom:519.190667pt;}
.y11_c01028{bottom:543.093333pt;}
.y10_c01028{bottom:566.996000pt;}
.yf_c01028{bottom:590.898667pt;}
.ye_c01028{bottom:621.665333pt;}
.yd_c01028{bottom:674.422667pt;}
.yc_c01028{bottom:734.420000pt;}
.yb_c01028{bottom:758.324000pt;}
.ya_c01028{bottom:782.226667pt;}
.y9_c01028{bottom:806.129333pt;}
.y8_c01028{bottom:830.032000pt;}
.y7_c01028{bottom:853.936000pt;}
.y6_c01028{bottom:877.838667pt;}
.y5_c01028{bottom:901.741333pt;}
.y4_c01028{bottom:925.644000pt;}
.y3_c01028{bottom:949.546667pt;}
.y2_c01028{bottom:973.450667pt;}
.y1_c01028{bottom:1032.964000pt;}
.h7_c01028{height:25.143595pt;}
.h8_c01028{height:34.001333pt;}
.ha_c01028{height:39.852000pt;}
.h9_c01028{height:44.423595pt;}
.h2_c01028{height:47.820000pt;}
.h3_c01028{height:51.870507pt;}
.h4_c01028{height:51.875840pt;}
.h5_c01028{height:57.384000pt;}
.h6_c01028{height:63.937333pt;}
.h1_c01028{height:1123.333333pt;}
.h0_c01028{height:1123.653333pt;}
.w0_c01028{width:794.550667pt;}
.w1_c01028{width:794.666667pt;}
.x0_c01028{left:0.000000pt;}
.x1_c01028{left:113.385333pt;}
.x6_c01028{left:120.746667pt;}
.x2_c01028{left:142.078667pt;}
.x7_c01028{left:147.074667pt;}
.x4_c01028{left:152.405333pt;}
.x3_c01028{left:175.817333pt;}
.x5_c01028{left:330.765333pt;}
}





/* 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_a4804438c27f88c0237960a3.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.001000;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_edcb88cb39dd0deaa7a451f2.woff2')format("woff");}.ff2_c01029{font-family:ff2_c01029;line-height:1.001000;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_c01029;src:url('chunks/assets/font_c32383785f9cb5521e7b25e9.woff2')format("woff");}.ff3_c01029{font-family:ff3_c01029;line-height:1.001000;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_c01029;src:url('chunks/assets/font_e3f8177219d6206648d0e11f.woff2')format("woff");}.ff4_c01029{font-family:ff4_c01029;line-height:0.697000;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_c01029;src:url('chunks/assets/font_b2792b2d802a90d180cc251a.woff2')format("woff");}.ff5_c01029{font-family:ff5_c01029;line-height:0.696000;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_c01029;src:url('chunks/assets/font_74d6302db5fb4a6e5be7fc39.woff2')format("woff");}.ff6_c01029{font-family:ff6_c01029;line-height:1.000000;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_c01029;src:url('chunks/assets/font_82cfe03e9ee85a7229bc2fbc.woff2')format("woff");}.ff7_c01029{font-family:ff7_c01029;line-height:1.000000;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);}
.v2_c01029{vertical-align:-21.696000px;}
.v0_c01029{vertical-align:0.000000px;}
.v1_c01029{vertical-align:26.034000px;}
.ls3_c01029{letter-spacing:0.000000px;}
.ls2_c01029{letter-spacing:23.382300px;}
.ls1_c01029{letter-spacing:23.407440px;}
.ls0_c01029{letter-spacing:23.413440px;}
.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:-0.071730px;}
.ws23_c01029{word-spacing:-0.059778px;}
.ws16_c01029{word-spacing:-0.047820px;}
.ws20_c01029{word-spacing:-0.041844px;}
.ws27_c01029{word-spacing:0.000000px;}
.ws3_c01029{word-spacing:16.713090px;}
.wsb_c01029{word-spacing:17.430390px;}
.ws2_c01029{word-spacing:17.789040px;}
.ws1c_c01029{word-spacing:18.578070px;}
.ws19_c01029{word-spacing:19.295370px;}
.ws24_c01029{word-spacing:19.846296px;}
.wsa_c01029{word-spacing:20.443050px;}
.ws8_c01029{word-spacing:20.873430px;}
.ws6_c01029{word-spacing:21.088620px;}
.ws5_c01029{word-spacing:21.303810px;}
.ws18_c01029{word-spacing:21.447270px;}
.ws25_c01029{word-spacing:22.177638px;}
.wsf_c01029{word-spacing:22.379760px;}
.ws1a_c01029{word-spacing:22.523220px;}
.ws4_c01029{word-spacing:23.025330px;}
.ws7_c01029{word-spacing:23.168790px;}
.ws9_c01029{word-spacing:23.312250px;}
.ws26_c01029{word-spacing:23.432976px;}
.ws10_c01029{word-spacing:23.455710px;}
.ws17_c01029{word-spacing:23.599170px;}
.wsd_c01029{word-spacing:23.670900px;}
.wsc_c01029{word-spacing:24.459930px;}
.ws1e_c01029{word-spacing:24.962040px;}
.ws15_c01029{word-spacing:25.033770px;}
.ws1d_c01029{word-spacing:25.105500px;}
.ws14_c01029{word-spacing:25.535880px;}
.ws12_c01029{word-spacing:25.822800px;}
.wse_c01029{word-spacing:26.755290px;}
.ws0_c01029{word-spacing:26.827020px;}
.ws21_c01029{word-spacing:27.019656px;}
.ws1b_c01029{word-spacing:27.831240px;}
.ws22_c01029{word-spacing:27.916326px;}
.ws13_c01029{word-spacing:28.333350px;}
.ws1f_c01029{word-spacing:29.122380px;}
.ws11_c01029{word-spacing:29.552760px;}
._0_c01029{margin-left:-40.670910px;}
._3_c01029{margin-left:-37.084410px;}
._4_c01029{margin-left:-35.291160px;}
._9_c01029{margin-left:-33.210990px;}
._10_c01029{margin-left:-29.194110px;}
._7_c01029{margin-left:-27.329130px;}
._14_c01029{margin-left:-23.378268px;}
._6_c01029{margin-left:-7.675110px;}
._f_c01029{margin-left:-6.168780px;}
._a_c01029{margin-left:-4.088610px;}
._d_c01029{margin-left:-3.084390px;}
._5_c01029{margin-left:-1.936710px;}
._2_c01029{width:1.793250px;}
._12_c01029{width:2.797470px;}
._8_c01029{width:3.801690px;}
._c_c01029{width:21.160350px;}
._b_c01029{width:25.177230px;}
._e_c01029{width:26.611830px;}
._13_c01029{width:28.442232px;}
._11_c01029{width:29.574480px;}
._1_c01029{width:933.068610px;}
.fc0_c01029{color:rgb(0,0,0);}
.fs2_c01029{font-size:41.844000px;}
.fs1_c01029{font-size:47.820000px;}
.fs3_c01029{font-size:59.778000px;}
.fs0_c01029{font-size:71.730000px;}
.y0_c01029{bottom:0.000000px;}
.y27_c01029{bottom:93.442500px;}
.y26_c01029{bottom:116.797500px;}
.y25_c01029{bottom:129.307500px;}
.y24_c01029{bottom:152.664000px;}
.y23_c01029{bottom:175.149000px;}
.y22_c01029{bottom:202.039500px;}
.y21_c01029{bottom:228.931500px;}
.y20_c01029{bottom:255.822000px;}
.y1f_c01029{bottom:282.712500px;}
.y1e_c01029{bottom:309.603000px;}
.y1d_c01029{bottom:336.493500px;}
.y1c_c01029{bottom:363.385500px;}
.y1b_c01029{bottom:390.276000px;}
.y1a_c01029{bottom:417.166500px;}
.y19_c01029{bottom:444.057000px;}
.y18_c01029{bottom:487.240500px;}
.y17_c01029{bottom:514.131000px;}
.y16_c01029{bottom:541.023000px;}
.y15_c01029{bottom:567.913500px;}
.y14_c01029{bottom:594.804000px;}
.y13_c01029{bottom:637.987500px;}
.y12_c01029{bottom:664.878000px;}
.y11_c01029{bottom:691.768500px;}
.y10_c01029{bottom:718.659000px;}
.yf_c01029{bottom:745.551000px;}
.ye_c01029{bottom:772.441500px;}
.yd_c01029{bottom:799.332000px;}
.yc_c01029{bottom:826.222500px;}
.yb_c01029{bottom:853.114500px;}
.ya_c01029{bottom:880.005000px;}
.y9_c01029{bottom:906.895500px;}
.y8_c01029{bottom:933.786000px;}
.y7_c01029{bottom:960.678000px;}
.y6_c01029{bottom:987.568500px;}
.y5_c01029{bottom:1014.459000px;}
.y4_c01029{bottom:1041.349500px;}
.y3_c01029{bottom:1068.240000px;}
.y2_c01029{bottom:1095.132000px;}
.y1_c01029{bottom:1162.084500px;}
.h5_c01029{height:28.286544px;}
.h6_c01029{height:44.833500px;}
.h2_c01029{height:53.797500px;}
.h4_c01029{height:58.354320px;}
.h3_c01029{height:58.360320px;}
.h1_c01029{height:1263.750000px;}
.h0_c01029{height:1264.110000px;}
.w0_c01029{width:893.869500px;}
.w1_c01029{width:894.000000px;}
.x0_c01029{left:0.000000px;}
.x1_c01029{left:127.558500px;}
.x5_c01029{left:135.840000px;}
.x2_c01029{left:159.838500px;}
.x4_c01029{left:171.456000px;}
.x3_c01029{left:197.794500px;}
@media print{
.v2_c01029{vertical-align:-19.285333pt;}
.v0_c01029{vertical-align:0.000000pt;}
.v1_c01029{vertical-align:23.141333pt;}
.ls3_c01029{letter-spacing:0.000000pt;}
.ls2_c01029{letter-spacing:20.784267pt;}
.ls1_c01029{letter-spacing:20.806613pt;}
.ls0_c01029{letter-spacing:20.811947pt;}
.ws1_c01029{word-spacing:-0.063760pt;}
.ws23_c01029{word-spacing:-0.053136pt;}
.ws16_c01029{word-spacing:-0.042507pt;}
.ws20_c01029{word-spacing:-0.037195pt;}
.ws27_c01029{word-spacing:0.000000pt;}
.ws3_c01029{word-spacing:14.856080pt;}
.wsb_c01029{word-spacing:15.493680pt;}
.ws2_c01029{word-spacing:15.812480pt;}
.ws1c_c01029{word-spacing:16.513840pt;}
.ws19_c01029{word-spacing:17.151440pt;}
.ws24_c01029{word-spacing:17.641152pt;}
.wsa_c01029{word-spacing:18.171600pt;}
.ws8_c01029{word-spacing:18.554160pt;}
.ws6_c01029{word-spacing:18.745440pt;}
.ws5_c01029{word-spacing:18.936720pt;}
.ws18_c01029{word-spacing:19.064240pt;}
.ws25_c01029{word-spacing:19.713456pt;}
.wsf_c01029{word-spacing:19.893120pt;}
.ws1a_c01029{word-spacing:20.020640pt;}
.ws4_c01029{word-spacing:20.466960pt;}
.ws7_c01029{word-spacing:20.594480pt;}
.ws9_c01029{word-spacing:20.722000pt;}
.ws26_c01029{word-spacing:20.829312pt;}
.ws10_c01029{word-spacing:20.849520pt;}
.ws17_c01029{word-spacing:20.977040pt;}
.wsd_c01029{word-spacing:21.040800pt;}
.wsc_c01029{word-spacing:21.742160pt;}
.ws1e_c01029{word-spacing:22.188480pt;}
.ws15_c01029{word-spacing:22.252240pt;}
.ws1d_c01029{word-spacing:22.316000pt;}
.ws14_c01029{word-spacing:22.698560pt;}
.ws12_c01029{word-spacing:22.953600pt;}
.wse_c01029{word-spacing:23.782480pt;}
.ws0_c01029{word-spacing:23.846240pt;}
.ws21_c01029{word-spacing:24.017472pt;}
.ws1b_c01029{word-spacing:24.738880pt;}
.ws22_c01029{word-spacing:24.814512pt;}
.ws13_c01029{word-spacing:25.185200pt;}
.ws1f_c01029{word-spacing:25.886560pt;}
.ws11_c01029{word-spacing:26.269120pt;}
._0_c01029{margin-left:-36.151920pt;}
._3_c01029{margin-left:-32.963920pt;}
._4_c01029{margin-left:-31.369920pt;}
._9_c01029{margin-left:-29.520880pt;}
._10_c01029{margin-left:-25.950320pt;}
._7_c01029{margin-left:-24.292560pt;}
._14_c01029{margin-left:-20.780683pt;}
._6_c01029{margin-left:-6.822320pt;}
._f_c01029{margin-left:-5.483360pt;}
._a_c01029{margin-left:-3.634320pt;}
._d_c01029{margin-left:-2.741680pt;}
._5_c01029{margin-left:-1.721520pt;}
._2_c01029{width:1.594000pt;}
._12_c01029{width:2.486640pt;}
._8_c01029{width:3.379280pt;}
._c_c01029{width:18.809200pt;}
._b_c01029{width:22.379760pt;}
._e_c01029{width:23.654960pt;}
._13_c01029{width:25.281984pt;}
._11_c01029{width:26.288427pt;}
._1_c01029{width:829.394320pt;}
.fs2_c01029{font-size:37.194667pt;}
.fs1_c01029{font-size:42.506667pt;}
.fs3_c01029{font-size:53.136000pt;}
.fs0_c01029{font-size:63.760000pt;}
.y0_c01029{bottom:0.000000pt;}
.y27_c01029{bottom:83.060000pt;}
.y26_c01029{bottom:103.820000pt;}
.y25_c01029{bottom:114.940000pt;}
.y24_c01029{bottom:135.701333pt;}
.y23_c01029{bottom:155.688000pt;}
.y22_c01029{bottom:179.590667pt;}
.y21_c01029{bottom:203.494667pt;}
.y20_c01029{bottom:227.397333pt;}
.y1f_c01029{bottom:251.300000pt;}
.y1e_c01029{bottom:275.202667pt;}
.y1d_c01029{bottom:299.105333pt;}
.y1c_c01029{bottom:323.009333pt;}
.y1b_c01029{bottom:346.912000pt;}
.y1a_c01029{bottom:370.814667pt;}
.y19_c01029{bottom:394.717333pt;}
.y18_c01029{bottom:433.102667pt;}
.y17_c01029{bottom:457.005333pt;}
.y16_c01029{bottom:480.909333pt;}
.y15_c01029{bottom:504.812000pt;}
.y14_c01029{bottom:528.714667pt;}
.y13_c01029{bottom:567.100000pt;}
.y12_c01029{bottom:591.002667pt;}
.y11_c01029{bottom:614.905333pt;}
.y10_c01029{bottom:638.808000pt;}
.yf_c01029{bottom:662.712000pt;}
.ye_c01029{bottom:686.614667pt;}
.yd_c01029{bottom:710.517333pt;}
.yc_c01029{bottom:734.420000pt;}
.yb_c01029{bottom:758.324000pt;}
.ya_c01029{bottom:782.226667pt;}
.y9_c01029{bottom:806.129333pt;}
.y8_c01029{bottom:830.032000pt;}
.y7_c01029{bottom:853.936000pt;}
.y6_c01029{bottom:877.838667pt;}
.y5_c01029{bottom:901.741333pt;}
.y4_c01029{bottom:925.644000pt;}
.y3_c01029{bottom:949.546667pt;}
.y2_c01029{bottom:973.450667pt;}
.y1_c01029{bottom:1032.964000pt;}
.h5_c01029{height:25.143595pt;}
.h6_c01029{height:39.852000pt;}
.h2_c01029{height:47.820000pt;}
.h4_c01029{height:51.870507pt;}
.h3_c01029{height:51.875840pt;}
.h1_c01029{height:1123.333333pt;}
.h0_c01029{height:1123.653333pt;}
.w0_c01029{width:794.550667pt;}
.w1_c01029{width:794.666667pt;}
.x0_c01029{left:0.000000pt;}
.x1_c01029{left:113.385333pt;}
.x5_c01029{left:120.746667pt;}
.x2_c01029{left:142.078667pt;}
.x4_c01029{left:152.405333pt;}
.x3_c01029{left:175.817333pt;}
}





/* 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_66a788692d350096656b8f79.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.001000;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_c01030;src:url('chunks/assets/font_07e13bfc7f854853040197c9.woff2')format("woff");}.ff2_c01030{font-family:ff2_c01030;line-height:1.001000;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_c01030;src:url('chunks/assets/font_de9da645f8c3455ba931b3fa.woff2')format("woff");}.ff3_c01030{font-family:ff3_c01030;line-height:1.001000;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_c01030;src:url('chunks/assets/font_e5f8dec5b33aa0b6d3fc7684.woff2')format("woff");}.ff4_c01030{font-family:ff4_c01030;line-height:0.697000;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_c01030;src:url('chunks/assets/font_8991173ddb8b833a97ee5fff.woff2')format("woff");}.ff5_c01030{font-family:ff5_c01030;line-height:1.000000;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_c01030;src:url('chunks/assets/font_28fae241072f34bbf14e5f0f.woff2')format("woff");}.ff6_c01030{font-family:ff6_c01030;line-height:0.696000;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_c01030;src:url('chunks/assets/font_71feedb0d0287db6c46da397.woff2')format("woff");}.ff7_c01030{font-family:ff7_c01030;line-height:1.000000;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_c01030;src:url('chunks/assets/font_e57ebccb611d30fe57f3ab33.woff2')format("woff");}.ff8_c01030{font-family:ff8_c01030;line-height:1.000000;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);}
.v3_c01030{vertical-align:-21.696000px;}
.v0_c01030{vertical-align:0.000000px;}
.v2_c01030{vertical-align:5.976000px;}
.v1_c01030{vertical-align:26.028000px;}
.ls0_c01030{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws9_c01030{word-spacing:-0.047820px;}
.ws21_c01030{word-spacing:-0.041844px;}
.ws27_c01030{word-spacing:0.000000px;}
.wsa_c01030{word-spacing:16.497900px;}
.ws1f_c01030{word-spacing:18.362880px;}
.ws25_c01030{word-spacing:19.846296px;}
.ws26_c01030{word-spacing:19.906074px;}
.ws1d_c01030{word-spacing:20.729970px;}
.wsf_c01030{word-spacing:21.447270px;}
.ws11_c01030{word-spacing:21.734190px;}
.ws1b_c01030{word-spacing:22.523220px;}
.ws17_c01030{word-spacing:22.738410px;}
.ws2_c01030{word-spacing:23.312250px;}
.ws1a_c01030{word-spacing:23.383980px;}
.ws13_c01030{word-spacing:23.670900px;}
.ws19_c01030{word-spacing:24.029550px;}
.ws18_c01030{word-spacing:24.316470px;}
.ws8_c01030{word-spacing:25.033770px;}
.wsb_c01030{word-spacing:25.392420px;}
.ws22_c01030{word-spacing:25.824096px;}
.ws24_c01030{word-spacing:25.883874px;}
.ws12_c01030{word-spacing:26.253180px;}
.ws7_c01030{word-spacing:26.324910px;}
.ws10_c01030{word-spacing:26.540100px;}
.ws20_c01030{word-spacing:26.683560px;}
.wsd_c01030{word-spacing:26.755290px;}
.ws0_c01030{word-spacing:26.827020px;}
.ws23_c01030{word-spacing:26.840322px;}
.wsc_c01030{word-spacing:26.898750px;}
.wse_c01030{word-spacing:27.042210px;}
.ws3_c01030{word-spacing:27.329130px;}
.ws14_c01030{word-spacing:27.759510px;}
.ws6_c01030{word-spacing:29.624490px;}
.ws15_c01030{word-spacing:30.126600px;}
.ws5_c01030{word-spacing:30.341790px;}
.ws1c_c01030{word-spacing:30.413520px;}
.ws1e_c01030{word-spacing:30.556980px;}
.ws16_c01030{word-spacing:31.274280px;}
.ws4_c01030{word-spacing:32.063310px;}
._0_c01030{margin-left:-40.670910px;}
._7_c01030{margin-left:-36.797490px;}
._3_c01030{margin-left:-35.219430px;}
._f_c01030{margin-left:-32.637150px;}
._b_c01030{margin-left:-28.692000px;}
._d_c01030{margin-left:-27.400860px;}
._14_c01030{margin-left:-23.367396px;}
._c_c01030{margin-left:-7.746840px;}
._a_c01030{margin-left:-6.527430px;}
._5_c01030{margin-left:-4.375530px;}
._6_c01030{margin-left:-2.940930px;}
._2_c01030{margin-left:-1.936710px;}
._13_c01030{width:1.291140px;}
._9_c01030{width:2.582280px;}
._8_c01030{width:4.303800px;}
._4_c01030{width:10.759500px;}
._12_c01030{width:25.392420px;}
._10_c01030{width:29.620710px;}
._11_c01030{width:37.963230px;}
._e_c01030{width:79.333380px;}
._1_c01030{width:933.068610px;}
.fc0_c01030{color:rgb(0,0,0);}
.fs2_c01030{font-size:41.844000px;}
.fs1_c01030{font-size:47.820000px;}
.fs3_c01030{font-size:59.778000px;}
.fs0_c01030{font-size:71.730000px;}
.y0_c01030{bottom:0.000000px;}
.y25_c01030{bottom:98.865000px;}
.y24_c01030{bottom:111.375000px;}
.y23_c01030{bottom:134.731500px;}
.y22_c01030{bottom:161.176500px;}
.y21_c01030{bottom:188.068500px;}
.y20_c01030{bottom:214.959000px;}
.y1f_c01030{bottom:241.849500px;}
.y1e_c01030{bottom:268.740000px;}
.y1d_c01030{bottom:295.632000px;}
.y1c_c01030{bottom:322.522500px;}
.y1b_c01030{bottom:349.413000px;}
.y1a_c01030{bottom:376.303500px;}
.y19_c01030{bottom:403.195500px;}
.y18_c01030{bottom:430.086000px;}
.y17_c01030{bottom:456.976500px;}
.y16_c01030{bottom:483.867000px;}
.y15_c01030{bottom:510.759000px;}
.y14_c01030{bottom:537.649500px;}
.y13_c01030{bottom:564.540000px;}
.y12_c01030{bottom:591.430500px;}
.y11_c01030{bottom:618.321000px;}
.y10_c01030{bottom:645.213000px;}
.yf_c01030{bottom:672.103500px;}
.ye_c01030{bottom:698.994000px;}
.yd_c01030{bottom:733.606500px;}
.yc_c01030{bottom:789.847500px;}
.yb_c01030{bottom:816.738000px;}
.ya_c01030{bottom:843.628500px;}
.y9_c01030{bottom:870.519000px;}
.y8_c01030{bottom:915.598500px;}
.y7_c01030{bottom:942.489000px;}
.y6_c01030{bottom:969.379500px;}
.y5_c01030{bottom:996.271500px;}
.y4_c01030{bottom:1023.162000px;}
.y3_c01030{bottom:1050.052500px;}
.y2_c01030{bottom:1095.132000px;}
.y1_c01030{bottom:1162.084500px;}
.h5_c01030{height:28.286544px;}
.h6_c01030{height:44.833500px;}
.h2_c01030{height:53.797500px;}
.h3_c01030{height:58.354320px;}
.h4_c01030{height:59.773500px;}
.h1_c01030{height:1263.750000px;}
.h0_c01030{height:1264.110000px;}
.w0_c01030{width:893.869500px;}
.w1_c01030{width:894.000000px;}
.x0_c01030{left:0.000000px;}
.x1_c01030{left:127.558500px;}
.x6_c01030{left:135.840000px;}
.x2_c01030{left:159.838500px;}
.x4_c01030{left:171.456000px;}
.x3_c01030{left:197.794500px;}
.x5_c01030{left:476.538000px;}
@media print{
.v3_c01030{vertical-align:-19.285333pt;}
.v0_c01030{vertical-align:0.000000pt;}
.v2_c01030{vertical-align:5.312000pt;}
.v1_c01030{vertical-align:23.136000pt;}
.ls0_c01030{letter-spacing:0.000000pt;}
.ws1_c01030{word-spacing:-0.063760pt;}
.ws9_c01030{word-spacing:-0.042507pt;}
.ws21_c01030{word-spacing:-0.037195pt;}
.ws27_c01030{word-spacing:0.000000pt;}
.wsa_c01030{word-spacing:14.664800pt;}
.ws1f_c01030{word-spacing:16.322560pt;}
.ws25_c01030{word-spacing:17.641152pt;}
.ws26_c01030{word-spacing:17.694288pt;}
.ws1d_c01030{word-spacing:18.426640pt;}
.wsf_c01030{word-spacing:19.064240pt;}
.ws11_c01030{word-spacing:19.319280pt;}
.ws1b_c01030{word-spacing:20.020640pt;}
.ws17_c01030{word-spacing:20.211920pt;}
.ws2_c01030{word-spacing:20.722000pt;}
.ws1a_c01030{word-spacing:20.785760pt;}
.ws13_c01030{word-spacing:21.040800pt;}
.ws19_c01030{word-spacing:21.359600pt;}
.ws18_c01030{word-spacing:21.614640pt;}
.ws8_c01030{word-spacing:22.252240pt;}
.wsb_c01030{word-spacing:22.571040pt;}
.ws22_c01030{word-spacing:22.954752pt;}
.ws24_c01030{word-spacing:23.007888pt;}
.ws12_c01030{word-spacing:23.336160pt;}
.ws7_c01030{word-spacing:23.399920pt;}
.ws10_c01030{word-spacing:23.591200pt;}
.ws20_c01030{word-spacing:23.718720pt;}
.wsd_c01030{word-spacing:23.782480pt;}
.ws0_c01030{word-spacing:23.846240pt;}
.ws23_c01030{word-spacing:23.858064pt;}
.wsc_c01030{word-spacing:23.910000pt;}
.wse_c01030{word-spacing:24.037520pt;}
.ws3_c01030{word-spacing:24.292560pt;}
.ws14_c01030{word-spacing:24.675120pt;}
.ws6_c01030{word-spacing:26.332880pt;}
.ws15_c01030{word-spacing:26.779200pt;}
.ws5_c01030{word-spacing:26.970480pt;}
.ws1c_c01030{word-spacing:27.034240pt;}
.ws1e_c01030{word-spacing:27.161760pt;}
.ws16_c01030{word-spacing:27.799360pt;}
.ws4_c01030{word-spacing:28.500720pt;}
._0_c01030{margin-left:-36.151920pt;}
._7_c01030{margin-left:-32.708880pt;}
._3_c01030{margin-left:-31.306160pt;}
._f_c01030{margin-left:-29.010800pt;}
._b_c01030{margin-left:-25.504000pt;}
._d_c01030{margin-left:-24.356320pt;}
._14_c01030{margin-left:-20.771019pt;}
._c_c01030{margin-left:-6.886080pt;}
._a_c01030{margin-left:-5.802160pt;}
._5_c01030{margin-left:-3.889360pt;}
._6_c01030{margin-left:-2.614160pt;}
._2_c01030{margin-left:-1.721520pt;}
._13_c01030{width:1.147680pt;}
._9_c01030{width:2.295360pt;}
._8_c01030{width:3.825600pt;}
._4_c01030{width:9.564000pt;}
._12_c01030{width:22.571040pt;}
._10_c01030{width:26.329520pt;}
._11_c01030{width:33.745093pt;}
._e_c01030{width:70.518560pt;}
._1_c01030{width:829.394320pt;}
.fs2_c01030{font-size:37.194667pt;}
.fs1_c01030{font-size:42.506667pt;}
.fs3_c01030{font-size:53.136000pt;}
.fs0_c01030{font-size:63.760000pt;}
.y0_c01030{bottom:0.000000pt;}
.y25_c01030{bottom:87.880000pt;}
.y24_c01030{bottom:99.000000pt;}
.y23_c01030{bottom:119.761333pt;}
.y22_c01030{bottom:143.268000pt;}
.y21_c01030{bottom:167.172000pt;}
.y20_c01030{bottom:191.074667pt;}
.y1f_c01030{bottom:214.977333pt;}
.y1e_c01030{bottom:238.880000pt;}
.y1d_c01030{bottom:262.784000pt;}
.y1c_c01030{bottom:286.686667pt;}
.y1b_c01030{bottom:310.589333pt;}
.y1a_c01030{bottom:334.492000pt;}
.y19_c01030{bottom:358.396000pt;}
.y18_c01030{bottom:382.298667pt;}
.y17_c01030{bottom:406.201333pt;}
.y16_c01030{bottom:430.104000pt;}
.y15_c01030{bottom:454.008000pt;}
.y14_c01030{bottom:477.910667pt;}
.y13_c01030{bottom:501.813333pt;}
.y12_c01030{bottom:525.716000pt;}
.y11_c01030{bottom:549.618667pt;}
.y10_c01030{bottom:573.522667pt;}
.yf_c01030{bottom:597.425333pt;}
.ye_c01030{bottom:621.328000pt;}
.yd_c01030{bottom:652.094667pt;}
.yc_c01030{bottom:702.086667pt;}
.yb_c01030{bottom:725.989333pt;}
.ya_c01030{bottom:749.892000pt;}
.y9_c01030{bottom:773.794667pt;}
.y8_c01030{bottom:813.865333pt;}
.y7_c01030{bottom:837.768000pt;}
.y6_c01030{bottom:861.670667pt;}
.y5_c01030{bottom:885.574667pt;}
.y4_c01030{bottom:909.477333pt;}
.y3_c01030{bottom:933.380000pt;}
.y2_c01030{bottom:973.450667pt;}
.y1_c01030{bottom:1032.964000pt;}
.h5_c01030{height:25.143595pt;}
.h6_c01030{height:39.852000pt;}
.h2_c01030{height:47.820000pt;}
.h3_c01030{height:51.870507pt;}
.h4_c01030{height:53.132000pt;}
.h1_c01030{height:1123.333333pt;}
.h0_c01030{height:1123.653333pt;}
.w0_c01030{width:794.550667pt;}
.w1_c01030{width:794.666667pt;}
.x0_c01030{left:0.000000pt;}
.x1_c01030{left:113.385333pt;}
.x6_c01030{left:120.746667pt;}
.x2_c01030{left:142.078667pt;}
.x4_c01030{left:152.405333pt;}
.x3_c01030{left:175.817333pt;}
.x5_c01030{left:423.589333pt;}
}





/* 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_b8a037e258e710dde19a36fb.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.001000;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_c01031;src:url('chunks/assets/font_85ddaba8b52e3c81bac569b5.woff2')format("woff");}.ff2_c01031{font-family:ff2_c01031;line-height:1.001000;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_c01031;src:url('chunks/assets/font_c3512277e66b8c7a5555f5d9.woff2')format("woff");}.ff3_c01031{font-family:ff3_c01031;line-height:1.000000;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_c01031;src:url('chunks/assets/font_240ccc594b3cf8ad0e103698.woff2')format("woff");}.ff4_c01031{font-family:ff4_c01031;line-height:1.001000;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_c01031;src:url('chunks/assets/font_548769d0c12c8f904353f322.woff2')format("woff");}.ff5_c01031{font-family:ff5_c01031;line-height:0.697000;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_c01031;src:url('chunks/assets/font_0d8aa36cb66466f235571469.woff2')format("woff");}.ff6_c01031{font-family:ff6_c01031;line-height:0.462000;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_c01031;src:url('chunks/assets/font_f08fe174350a870bc49db8f1.woff2')format("woff");}.ff7_c01031{font-family:ff7_c01031;line-height:0.696000;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_c01031;src:url('chunks/assets/font_8755c845c4c3b6fdbcd23ab4.woff2')format("woff");}.ff8_c01031{font-family:ff8_c01031;line-height:1.000000;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_c01031;src:url('chunks/assets/font_aa1d69b2bcb54021abc86f7e.woff2')format("woff");}.ff9_c01031{font-family:ff9_c01031;line-height:1.000000;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);}
.v4_c01031{vertical-align:-21.696000px;}
.v0_c01031{vertical-align:0.000000px;}
.v3_c01031{vertical-align:5.976000px;}
.v2_c01031{vertical-align:21.762000px;}
.v1_c01031{vertical-align:26.028000px;}
.ls3_c01031{letter-spacing:0.000000px;}
.ls1_c01031{letter-spacing:0.000750px;}
.ls0_c01031{letter-spacing:11.228136px;}
.ls2_c01031{letter-spacing:29.864340px;}
.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:-0.071730px;}
.wsa_c01031{word-spacing:-0.047820px;}
.ws1a_c01031{word-spacing:-0.041844px;}
.ws1f_c01031{word-spacing:0.000000px;}
.wsf_c01031{word-spacing:17.358660px;}
.wsc_c01031{word-spacing:19.510560px;}
.ws1d_c01031{word-spacing:19.846296px;}
.ws8_c01031{word-spacing:20.801700px;}
.ws12_c01031{word-spacing:21.088620px;}
.ws1b_c01031{word-spacing:21.101634px;}
.ws1e_c01031{word-spacing:21.280968px;}
.ws13_c01031{word-spacing:21.805920px;}
.ws1c_c01031{word-spacing:22.476528px;}
.ws7_c01031{word-spacing:22.738410px;}
.ws17_c01031{word-spacing:23.240520px;}
.ws3_c01031{word-spacing:23.312250px;}
.ws9_c01031{word-spacing:25.033770px;}
.ws16_c01031{word-spacing:25.822800px;}
.ws2_c01031{word-spacing:26.181450px;}
.ws0_c01031{word-spacing:26.827020px;}
.wse_c01031{word-spacing:27.042210px;}
.ws11_c01031{word-spacing:27.329130px;}
.ws10_c01031{word-spacing:28.405080px;}
.wsb_c01031{word-spacing:29.983140px;}
.ws18_c01031{word-spacing:30.700440px;}
.ws14_c01031{word-spacing:30.772170px;}
.wsd_c01031{word-spacing:32.450652px;}
.ws5_c01031{word-spacing:32.565420px;}
.ws19_c01031{word-spacing:34.000020px;}
.ws6_c01031{word-spacing:34.071750px;}
.ws15_c01031{word-spacing:35.291160px;}
.ws4_c01031{word-spacing:79.261650px;}
._0_c01031{margin-left:-40.670910px;}
._f_c01031{margin-left:-37.084410px;}
._9_c01031{margin-left:-35.147700px;}
._3_c01031{margin-left:-33.210990px;}
._19_c01031{margin-left:-31.825710px;}
._18_c01031{margin-left:-30.255930px;}
._c_c01031{margin-left:-28.692000px;}
._10_c01031{margin-left:-27.042210px;}
._17_c01031{margin-left:-23.571330px;}
._16_c01031{margin-left:-22.385130px;}
._7_c01031{margin-left:-8.392410px;}
._b_c01031{margin-left:-6.842910px;}
._12_c01031{margin-left:-5.767092px;}
._6_c01031{margin-left:-3.873420px;}
._2_c01031{margin-left:-1.936710px;}
._5_c01031{width:1.936710px;}
._e_c01031{width:3.028740px;}
._d_c01031{width:4.662090px;}
._15_c01031{width:9.974676px;}
._13_c01031{width:11.151912px;}
._4_c01031{width:24.316470px;}
._a_c01031{width:25.908720px;}
._8_c01031{width:32.135040px;}
._14_c01031{width:79.333380px;}
._11_c01031{width:95.200056px;}
._1_c01031{width:933.068610px;}
.fc0_c01031{color:rgb(0,0,0);}
.fs3_c01031{font-size:41.844000px;}
.fs1_c01031{font-size:47.820000px;}
.fs4_c01031{font-size:59.778000px;}
.fs0_c01031{font-size:71.730000px;}
.fs2_c01031{font-size:86.076000px;}
.y0_c01031{bottom:0.000000px;}
.y21_c01031{bottom:98.865000px;}
.y20_c01031{bottom:111.375000px;}
.y1f_c01031{bottom:134.731500px;}
.y1e_c01031{bottom:159.066000px;}
.y1d_c01031{bottom:185.956500px;}
.y1c_c01031{bottom:212.847000px;}
.y1b_c01031{bottom:249.478500px;}
.y1a_c01031{bottom:276.369000px;}
.y19_c01031{bottom:303.259500px;}
.y18_c01031{bottom:330.151500px;}
.y17_c01031{bottom:357.042000px;}
.y16_c01031{bottom:383.932500px;}
.y15_c01031{bottom:410.823000px;}
.y14_c01031{bottom:437.715000px;}
.y13_c01031{bottom:472.326000px;}
.y12_c01031{bottom:528.240000px;}
.y11_c01031{bottom:555.130500px;}
.y10_c01031{bottom:582.021000px;}
.yf_c01031{bottom:616.633500px;}
.ye_c01031{bottom:675.985500px;}
.yd_c01031{bottom:743.107500px;}
.yc_c01031{bottom:769.998000px;}
.yb_c01031{bottom:796.888500px;}
.ya_c01031{bottom:823.780500px;}
.y9_c01031{bottom:860.412000px;}
.y8_c01031{bottom:887.302500px;}
.y7_c01031{bottom:923.934000px;}
.y6_c01031{bottom:950.824500px;}
.y5_c01031{bottom:977.715000px;}
.y4_c01031{bottom:1012.327500px;}
.y3_c01031{bottom:1068.240000px;}
.y2_c01031{bottom:1095.132000px;}
.y1_c01031{bottom:1162.084500px;}
.h7_c01031{height:28.286544px;}
.h8_c01031{height:44.833500px;}
.h2_c01031{height:53.797500px;}
.h3_c01031{height:58.354320px;}
.h6_c01031{height:59.773500px;}
.h5_c01031{height:64.557000px;}
.h4_c01031{height:86.319000px;}
.h1_c01031{height:1263.750000px;}
.h0_c01031{height:1264.110000px;}
.w0_c01031{width:893.869500px;}
.w1_c01031{width:894.000000px;}
.x0_c01031{left:0.000000px;}
.x1_c01031{left:127.558500px;}
.x9_c01031{left:135.840000px;}
.x2_c01031{left:159.838500px;}
.x4_c01031{left:171.456000px;}
.x3_c01031{left:197.794500px;}
.x7_c01031{left:287.671500px;}
.x5_c01031{left:337.089000px;}
.x6_c01031{left:354.603000px;}
.x8_c01031{left:511.167000px;}
@media print{
.v4_c01031{vertical-align:-19.285333pt;}
.v0_c01031{vertical-align:0.000000pt;}
.v3_c01031{vertical-align:5.312000pt;}
.v2_c01031{vertical-align:19.344000pt;}
.v1_c01031{vertical-align:23.136000pt;}
.ls3_c01031{letter-spacing:0.000000pt;}
.ls1_c01031{letter-spacing:0.000667pt;}
.ls0_c01031{letter-spacing:9.980565pt;}
.ls2_c01031{letter-spacing:26.546080pt;}
.ws1_c01031{word-spacing:-0.063760pt;}
.wsa_c01031{word-spacing:-0.042507pt;}
.ws1a_c01031{word-spacing:-0.037195pt;}
.ws1f_c01031{word-spacing:0.000000pt;}
.wsf_c01031{word-spacing:15.429920pt;}
.wsc_c01031{word-spacing:17.342720pt;}
.ws1d_c01031{word-spacing:17.641152pt;}
.ws8_c01031{word-spacing:18.490400pt;}
.ws12_c01031{word-spacing:18.745440pt;}
.ws1b_c01031{word-spacing:18.757008pt;}
.ws1e_c01031{word-spacing:18.916416pt;}
.ws13_c01031{word-spacing:19.383040pt;}
.ws1c_c01031{word-spacing:19.979136pt;}
.ws7_c01031{word-spacing:20.211920pt;}
.ws17_c01031{word-spacing:20.658240pt;}
.ws3_c01031{word-spacing:20.722000pt;}
.ws9_c01031{word-spacing:22.252240pt;}
.ws16_c01031{word-spacing:22.953600pt;}
.ws2_c01031{word-spacing:23.272400pt;}
.ws0_c01031{word-spacing:23.846240pt;}
.wse_c01031{word-spacing:24.037520pt;}
.ws11_c01031{word-spacing:24.292560pt;}
.ws10_c01031{word-spacing:25.248960pt;}
.wsb_c01031{word-spacing:26.651680pt;}
.ws18_c01031{word-spacing:27.289280pt;}
.ws14_c01031{word-spacing:27.353040pt;}
.wsd_c01031{word-spacing:28.845024pt;}
.ws5_c01031{word-spacing:28.947040pt;}
.ws19_c01031{word-spacing:30.222240pt;}
.ws6_c01031{word-spacing:30.286000pt;}
.ws15_c01031{word-spacing:31.369920pt;}
.ws4_c01031{word-spacing:70.454800pt;}
._0_c01031{margin-left:-36.151920pt;}
._f_c01031{margin-left:-32.963920pt;}
._9_c01031{margin-left:-31.242400pt;}
._3_c01031{margin-left:-29.520880pt;}
._19_c01031{margin-left:-28.289520pt;}
._18_c01031{margin-left:-26.894160pt;}
._c_c01031{margin-left:-25.504000pt;}
._10_c01031{margin-left:-24.037520pt;}
._17_c01031{margin-left:-20.952293pt;}
._16_c01031{margin-left:-19.897893pt;}
._7_c01031{margin-left:-7.459920pt;}
._b_c01031{margin-left:-6.082587pt;}
._12_c01031{margin-left:-5.126304pt;}
._6_c01031{margin-left:-3.443040pt;}
._2_c01031{margin-left:-1.721520pt;}
._5_c01031{width:1.721520pt;}
._e_c01031{width:2.692213pt;}
._d_c01031{width:4.144080pt;}
._15_c01031{width:8.866379pt;}
._13_c01031{width:9.912811pt;}
._4_c01031{width:21.614640pt;}
._a_c01031{width:23.029973pt;}
._8_c01031{width:28.564480pt;}
._14_c01031{width:70.518560pt;}
._11_c01031{width:84.622272pt;}
._1_c01031{width:829.394320pt;}
.fs3_c01031{font-size:37.194667pt;}
.fs1_c01031{font-size:42.506667pt;}
.fs4_c01031{font-size:53.136000pt;}
.fs0_c01031{font-size:63.760000pt;}
.fs2_c01031{font-size:76.512000pt;}
.y0_c01031{bottom:0.000000pt;}
.y21_c01031{bottom:87.880000pt;}
.y20_c01031{bottom:99.000000pt;}
.y1f_c01031{bottom:119.761333pt;}
.y1e_c01031{bottom:141.392000pt;}
.y1d_c01031{bottom:165.294667pt;}
.y1c_c01031{bottom:189.197333pt;}
.y1b_c01031{bottom:221.758667pt;}
.y1a_c01031{bottom:245.661333pt;}
.y19_c01031{bottom:269.564000pt;}
.y18_c01031{bottom:293.468000pt;}
.y17_c01031{bottom:317.370667pt;}
.y16_c01031{bottom:341.273333pt;}
.y15_c01031{bottom:365.176000pt;}
.y14_c01031{bottom:389.080000pt;}
.y13_c01031{bottom:419.845333pt;}
.y12_c01031{bottom:469.546667pt;}
.y11_c01031{bottom:493.449333pt;}
.y10_c01031{bottom:517.352000pt;}
.yf_c01031{bottom:548.118667pt;}
.ye_c01031{bottom:600.876000pt;}
.yd_c01031{bottom:660.540000pt;}
.yc_c01031{bottom:684.442667pt;}
.yb_c01031{bottom:708.345333pt;}
.ya_c01031{bottom:732.249333pt;}
.y9_c01031{bottom:764.810667pt;}
.y8_c01031{bottom:788.713333pt;}
.y7_c01031{bottom:821.274667pt;}
.y6_c01031{bottom:845.177333pt;}
.y5_c01031{bottom:869.080000pt;}
.y4_c01031{bottom:899.846667pt;}
.y3_c01031{bottom:949.546667pt;}
.y2_c01031{bottom:973.450667pt;}
.y1_c01031{bottom:1032.964000pt;}
.h7_c01031{height:25.143595pt;}
.h8_c01031{height:39.852000pt;}
.h2_c01031{height:47.820000pt;}
.h3_c01031{height:51.870507pt;}
.h6_c01031{height:53.132000pt;}
.h5_c01031{height:57.384000pt;}
.h4_c01031{height:76.728000pt;}
.h1_c01031{height:1123.333333pt;}
.h0_c01031{height:1123.653333pt;}
.w0_c01031{width:794.550667pt;}
.w1_c01031{width:794.666667pt;}
.x0_c01031{left:0.000000pt;}
.x1_c01031{left:113.385333pt;}
.x9_c01031{left:120.746667pt;}
.x2_c01031{left:142.078667pt;}
.x4_c01031{left:152.405333pt;}
.x3_c01031{left:175.817333pt;}
.x7_c01031{left:255.708000pt;}
.x5_c01031{left:299.634667pt;}
.x6_c01031{left:315.202667pt;}
.x8_c01031{left:454.370667pt;}
}





/* 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_3a6c3679152c48e73e84e439.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.001000;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_c01032;src:url('chunks/assets/font_863699ed0755be4cdba2cbab.woff2')format("woff");}.ff2_c01032{font-family:ff2_c01032;line-height:1.001000;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_c01032;src:url('chunks/assets/font_76a45a536a15a6168eb9f4a6.woff2')format("woff");}.ff3_c01032{font-family:ff3_c01032;line-height:0.697000;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_c01032;src:url('chunks/assets/font_fae332a767bdb44d1ae75019.woff2')format("woff");}.ff4_c01032{font-family:ff4_c01032;line-height:1.001000;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_c01032;src:url('chunks/assets/font_b5566af47a74fa67ceff824b.woff2')format("woff");}.ff5_c01032{font-family:ff5_c01032;line-height:1.000000;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_c01032;src:url('chunks/assets/font_e1d5b6f09256147ab2a5fd23.woff2')format("woff");}.ff6_c01032{font-family:ff6_c01032;line-height:0.696000;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_c01032;src:url('chunks/assets/font_160b97cefefd272a435e6def.woff2')format("woff");}.ff7_c01032{font-family:ff7_c01032;line-height:1.000000;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_c01032;src:url('chunks/assets/font_253bb2513b54ba3e93c61d8b.woff2')format("woff");}.ff8_c01032{font-family:ff8_c01032;line-height:1.000000;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);}
.v3_c01032{vertical-align:-21.696000px;}
.v0_c01032{vertical-align:0.000000px;}
.v2_c01032{vertical-align:5.982000px;}
.v4_c01032{vertical-align:15.108000px;}
.v1_c01032{vertical-align:26.034000px;}
.ls0_c01032{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws20_c01032{word-spacing:-0.059778px;}
.ws4_c01032{word-spacing:-0.047820px;}
.ws1b_c01032{word-spacing:-0.041844px;}
.ws25_c01032{word-spacing:0.000000px;}
.ws23_c01032{word-spacing:14.227164px;}
.ws10_c01032{word-spacing:15.780600px;}
.ws24_c01032{word-spacing:16.140060px;}
.ws13_c01032{word-spacing:18.506340px;}
.ws21_c01032{word-spacing:18.710514px;}
.ws1a_c01032{word-spacing:18.721530px;}
.ws1c_c01032{word-spacing:18.889848px;}
.ws8_c01032{word-spacing:19.008450px;}
.ws16_c01032{word-spacing:19.797480px;}
.ws1d_c01032{word-spacing:19.827012px;}
.ws1f_c01032{word-spacing:19.846296px;}
.ws22_c01032{word-spacing:20.264742px;}
.ws19_c01032{word-spacing:20.371320px;}
.ws1e_c01032{word-spacing:21.280968px;}
.wse_c01032{word-spacing:21.877650px;}
.ws14_c01032{word-spacing:22.451490px;}
.wsd_c01032{word-spacing:23.097060px;}
.ws7_c01032{word-spacing:23.312250px;}
.wsa_c01032{word-spacing:23.335710px;}
.ws11_c01032{word-spacing:24.173010px;}
.ws9_c01032{word-spacing:24.388200px;}
.wsb_c01032{word-spacing:25.033770px;}
.ws6_c01032{word-spacing:26.396640px;}
.ws0_c01032{word-spacing:26.827020px;}
.ws5_c01032{word-spacing:26.915400px;}
.ws12_c01032{word-spacing:26.970480px;}
.ws17_c01032{word-spacing:27.042210px;}
.ws18_c01032{word-spacing:28.548540px;}
.ws3_c01032{word-spacing:28.835460px;}
.ws15_c01032{word-spacing:32.135040px;}
.wsf_c01032{word-spacing:33.282720px;}
.ws2_c01032{word-spacing:33.354450px;}
.wsc_c01032{word-spacing:38.016900px;}
._0_c01032{margin-left:-40.670910px;}
._4_c01032{margin-left:-37.084410px;}
._a_c01032{margin-left:-35.936730px;}
._7_c01032{margin-left:-34.645590px;}
._e_c01032{margin-left:-32.924070px;}
._15_c01032{margin-left:-31.084992px;}
._12_c01032{margin-left:-29.265840px;}
._6_c01032{margin-left:-27.329130px;}
._16_c01032{margin-left:-23.184858px;}
._5_c01032{margin-left:-7.890300px;}
._f_c01032{margin-left:-5.881860px;}
._b_c01032{margin-left:-3.945150px;}
._2_c01032{margin-left:-2.151900px;}
._9_c01032{margin-left:-1.075950px;}
._3_c01032{width:1.936710px;}
._d_c01032{width:3.022740px;}
._c_c01032{width:4.399350px;}
._13_c01032{width:5.405070px;}
._14_c01032{width:19.797480px;}
._10_c01032{width:28.747440px;}
._8_c01032{width:30.413520px;}
._11_c01032{width:79.333380px;}
._1_c01032{width:933.068610px;}
.fc0_c01032{color:rgb(0,0,0);}
.fs2_c01032{font-size:41.844000px;}
.fs1_c01032{font-size:47.820000px;}
.fs3_c01032{font-size:59.778000px;}
.fs0_c01032{font-size:71.730000px;}
.y0_c01032{bottom:0.000000px;}
.y28_c01032{bottom:93.442500px;}
.y27_c01032{bottom:116.797500px;}
.y26_c01032{bottom:134.730000px;}
.y25_c01032{bottom:152.664000px;}
.y24_c01032{bottom:170.596500px;}
.y23_c01032{bottom:183.106500px;}
.y22_c01032{bottom:201.039000px;}
.y21_c01032{bottom:206.461500px;}
.y20_c01032{bottom:220.573500px;}
.y1f_c01032{bottom:243.930000px;}
.y1e_c01032{bottom:268.869000px;}
.y1d_c01032{bottom:295.759500px;}
.y1c_c01032{bottom:334.812000px;}
.y1b_c01032{bottom:361.702500px;}
.y1a_c01032{bottom:396.313500px;}
.y19_c01032{bottom:452.322000px;}
.y18_c01032{bottom:479.212500px;}
.y17_c01032{bottom:506.103000px;}
.y16_c01032{bottom:532.993500px;}
.y15_c01032{bottom:559.885500px;}
.y14_c01032{bottom:586.776000px;}
.y13_c01032{bottom:613.666500px;}
.y12_c01032{bottom:640.557000px;}
.y11_c01032{bottom:667.447500px;}
.y10_c01032{bottom:694.339500px;}
.yf_c01032{bottom:721.230000px;}
.ye_c01032{bottom:748.120500px;}
.yd_c01032{bottom:775.011000px;}
.yc_c01032{bottom:801.903000px;}
.yb_c01032{bottom:828.793500px;}
.ya_c01032{bottom:867.844500px;}
.y9_c01032{bottom:894.735000px;}
.y8_c01032{bottom:933.786000px;}
.y7_c01032{bottom:960.678000px;}
.y6_c01032{bottom:987.568500px;}
.y5_c01032{bottom:1014.459000px;}
.y4_c01032{bottom:1041.349500px;}
.y3_c01032{bottom:1068.240000px;}
.y2_c01032{bottom:1095.132000px;}
.y1_c01032{bottom:1162.084500px;}
.h6_c01032{height:28.286544px;}
.h8_c01032{height:38.251500px;}
.h7_c01032{height:44.833500px;}
.h2_c01032{height:53.797500px;}
.h4_c01032{height:58.354320px;}
.h3_c01032{height:58.360320px;}
.h5_c01032{height:59.779500px;}
.h9_c01032{height:59.941500px;}
.h1_c01032{height:1263.750000px;}
.h0_c01032{height:1264.110000px;}
.w0_c01032{width:893.869500px;}
.w1_c01032{width:894.000000px;}
.x0_c01032{left:0.000000px;}
.x1_c01032{left:127.558500px;}
.x6_c01032{left:135.840000px;}
.x2_c01032{left:159.838500px;}
.x4_c01032{left:171.456000px;}
.x3_c01032{left:197.794500px;}
.x7_c01032{left:275.491500px;}
.x5_c01032{left:282.586500px;}
@media print{
.v3_c01032{vertical-align:-19.285333pt;}
.v0_c01032{vertical-align:0.000000pt;}
.v2_c01032{vertical-align:5.317333pt;}
.v4_c01032{vertical-align:13.429333pt;}
.v1_c01032{vertical-align:23.141333pt;}
.ls0_c01032{letter-spacing:0.000000pt;}
.ws1_c01032{word-spacing:-0.063760pt;}
.ws20_c01032{word-spacing:-0.053136pt;}
.ws4_c01032{word-spacing:-0.042507pt;}
.ws1b_c01032{word-spacing:-0.037195pt;}
.ws25_c01032{word-spacing:0.000000pt;}
.ws23_c01032{word-spacing:12.646368pt;}
.ws10_c01032{word-spacing:14.027200pt;}
.ws24_c01032{word-spacing:14.346720pt;}
.ws13_c01032{word-spacing:16.450080pt;}
.ws21_c01032{word-spacing:16.631568pt;}
.ws1a_c01032{word-spacing:16.641360pt;}
.ws1c_c01032{word-spacing:16.790976pt;}
.ws8_c01032{word-spacing:16.896400pt;}
.ws16_c01032{word-spacing:17.597760pt;}
.ws1d_c01032{word-spacing:17.624011pt;}
.ws1f_c01032{word-spacing:17.641152pt;}
.ws22_c01032{word-spacing:18.013104pt;}
.ws19_c01032{word-spacing:18.107840pt;}
.ws1e_c01032{word-spacing:18.916416pt;}
.wse_c01032{word-spacing:19.446800pt;}
.ws14_c01032{word-spacing:19.956880pt;}
.wsd_c01032{word-spacing:20.530720pt;}
.ws7_c01032{word-spacing:20.722000pt;}
.wsa_c01032{word-spacing:20.742853pt;}
.ws11_c01032{word-spacing:21.487120pt;}
.ws9_c01032{word-spacing:21.678400pt;}
.wsb_c01032{word-spacing:22.252240pt;}
.ws6_c01032{word-spacing:23.463680pt;}
.ws0_c01032{word-spacing:23.846240pt;}
.ws5_c01032{word-spacing:23.924800pt;}
.ws12_c01032{word-spacing:23.973760pt;}
.ws17_c01032{word-spacing:24.037520pt;}
.ws18_c01032{word-spacing:25.376480pt;}
.ws3_c01032{word-spacing:25.631520pt;}
.ws15_c01032{word-spacing:28.564480pt;}
.wsf_c01032{word-spacing:29.584640pt;}
.ws2_c01032{word-spacing:29.648400pt;}
.wsc_c01032{word-spacing:33.792800pt;}
._0_c01032{margin-left:-36.151920pt;}
._4_c01032{margin-left:-32.963920pt;}
._a_c01032{margin-left:-31.943760pt;}
._7_c01032{margin-left:-30.796080pt;}
._e_c01032{margin-left:-29.265840pt;}
._15_c01032{margin-left:-27.631104pt;}
._12_c01032{margin-left:-26.014080pt;}
._6_c01032{margin-left:-24.292560pt;}
._16_c01032{margin-left:-20.608763pt;}
._5_c01032{margin-left:-7.013600pt;}
._f_c01032{margin-left:-5.228320pt;}
._b_c01032{margin-left:-3.506800pt;}
._2_c01032{margin-left:-1.912800pt;}
._9_c01032{margin-left:-0.956400pt;}
._3_c01032{width:1.721520pt;}
._d_c01032{width:2.686880pt;}
._c_c01032{width:3.910533pt;}
._13_c01032{width:4.804507pt;}
._14_c01032{width:17.597760pt;}
._10_c01032{width:25.553280pt;}
._8_c01032{width:27.034240pt;}
._11_c01032{width:70.518560pt;}
._1_c01032{width:829.394320pt;}
.fs2_c01032{font-size:37.194667pt;}
.fs1_c01032{font-size:42.506667pt;}
.fs3_c01032{font-size:53.136000pt;}
.fs0_c01032{font-size:63.760000pt;}
.y0_c01032{bottom:0.000000pt;}
.y28_c01032{bottom:83.060000pt;}
.y27_c01032{bottom:103.820000pt;}
.y26_c01032{bottom:119.760000pt;}
.y25_c01032{bottom:135.701333pt;}
.y24_c01032{bottom:151.641333pt;}
.y23_c01032{bottom:162.761333pt;}
.y22_c01032{bottom:178.701333pt;}
.y21_c01032{bottom:183.521333pt;}
.y20_c01032{bottom:196.065333pt;}
.y1f_c01032{bottom:216.826667pt;}
.y1e_c01032{bottom:238.994667pt;}
.y1d_c01032{bottom:262.897333pt;}
.y1c_c01032{bottom:297.610667pt;}
.y1b_c01032{bottom:321.513333pt;}
.y1a_c01032{bottom:352.278667pt;}
.y19_c01032{bottom:402.064000pt;}
.y18_c01032{bottom:425.966667pt;}
.y17_c01032{bottom:449.869333pt;}
.y16_c01032{bottom:473.772000pt;}
.y15_c01032{bottom:497.676000pt;}
.y14_c01032{bottom:521.578667pt;}
.y13_c01032{bottom:545.481333pt;}
.y12_c01032{bottom:569.384000pt;}
.y11_c01032{bottom:593.286667pt;}
.y10_c01032{bottom:617.190667pt;}
.yf_c01032{bottom:641.093333pt;}
.ye_c01032{bottom:664.996000pt;}
.yd_c01032{bottom:688.898667pt;}
.yc_c01032{bottom:712.802667pt;}
.yb_c01032{bottom:736.705333pt;}
.ya_c01032{bottom:771.417333pt;}
.y9_c01032{bottom:795.320000pt;}
.y8_c01032{bottom:830.032000pt;}
.y7_c01032{bottom:853.936000pt;}
.y6_c01032{bottom:877.838667pt;}
.y5_c01032{bottom:901.741333pt;}
.y4_c01032{bottom:925.644000pt;}
.y3_c01032{bottom:949.546667pt;}
.y2_c01032{bottom:973.450667pt;}
.y1_c01032{bottom:1032.964000pt;}
.h6_c01032{height:25.143595pt;}
.h8_c01032{height:34.001333pt;}
.h7_c01032{height:39.852000pt;}
.h2_c01032{height:47.820000pt;}
.h4_c01032{height:51.870507pt;}
.h3_c01032{height:51.875840pt;}
.h5_c01032{height:53.137333pt;}
.h9_c01032{height:53.281333pt;}
.h1_c01032{height:1123.333333pt;}
.h0_c01032{height:1123.653333pt;}
.w0_c01032{width:794.550667pt;}
.w1_c01032{width:794.666667pt;}
.x0_c01032{left:0.000000pt;}
.x1_c01032{left:113.385333pt;}
.x6_c01032{left:120.746667pt;}
.x2_c01032{left:142.078667pt;}
.x4_c01032{left:152.405333pt;}
.x3_c01032{left:175.817333pt;}
.x7_c01032{left:244.881333pt;}
.x5_c01032{left:251.188000pt;}
}





/* 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_1542710caae2f016cb153154.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.001000;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_c01033;src:url('chunks/assets/font_a5de91d5eb7aac98af5140ae.woff2')format("woff");}.ff2_c01033{font-family:ff2_c01033;line-height:1.001000;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_c01033;src:url('chunks/assets/font_5ac17b541847df85f103e1f4.woff2')format("woff");}.ff3_c01033{font-family:ff3_c01033;line-height:1.000000;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_c01033;src:url('chunks/assets/font_c342aab18fb0d8f6898f5178.woff2')format("woff");}.ff4_c01033{font-family:ff4_c01033;line-height:1.001000;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_c01033;src:url('chunks/assets/font_1e19ab5be9c3583793e32c50.woff2')format("woff");}.ff5_c01033{font-family:ff5_c01033;line-height:0.697000;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_c01033;src:url('chunks/assets/font_d7ad8d59edcb2d2483728765.woff2')format("woff");}.ff6_c01033{font-family:ff6_c01033;line-height:0.696000;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_c01033;src:url('chunks/assets/font_0619ebcdc96a844095cd2806.woff2')format("woff");}.ff7_c01033{font-family:ff7_c01033;line-height:1.000000;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_c01033;src:url('chunks/assets/font_0b4e8b8c05e7a32d63c79b10.woff2')format("woff");}.ff8_c01033{font-family:ff8_c01033;line-height:1.000000;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);}
.v3_c01033{vertical-align:-21.690000px;}
.v0_c01033{vertical-align:0.000000px;}
.v1_c01033{vertical-align:5.976000px;}
.v2_c01033{vertical-align:26.034000px;}
.ls0_c01033{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws23_c01033{word-spacing:-0.059778px;}
.ws15_c01033{word-spacing:-0.047820px;}
.ws20_c01033{word-spacing:-0.041844px;}
.ws24_c01033{word-spacing:0.000000px;}
.wsc_c01033{word-spacing:17.789040px;}
.wsb_c01033{word-spacing:19.725750px;}
.ws21_c01033{word-spacing:19.846296px;}
.wse_c01033{word-spacing:20.299590px;}
.ws22_c01033{word-spacing:21.340746px;}
.ws10_c01033{word-spacing:22.594950px;}
.ws6_c01033{word-spacing:23.312250px;}
.ws4_c01033{word-spacing:23.383980px;}
.ws19_c01033{word-spacing:23.599170px;}
.ws12_c01033{word-spacing:23.742630px;}
.ws18_c01033{word-spacing:23.814360px;}
.wsf_c01033{word-spacing:24.029550px;}
.ws1d_c01033{word-spacing:24.962040px;}
.ws14_c01033{word-spacing:25.033770px;}
.ws3_c01033{word-spacing:26.181450px;}
.ws13_c01033{word-spacing:26.396640px;}
.ws1a_c01033{word-spacing:26.755290px;}
.ws0_c01033{word-spacing:26.827020px;}
.ws11_c01033{word-spacing:26.970480px;}
.ws9_c01033{word-spacing:27.042210px;}
.ws1e_c01033{word-spacing:27.185670px;}
.wsa_c01033{word-spacing:27.257400px;}
.ws16_c01033{word-spacing:28.692000px;}
.ws2_c01033{word-spacing:29.194110px;}
.ws17_c01033{word-spacing:29.265840px;}
.ws1c_c01033{word-spacing:30.556980px;}
.ws1f_c01033{word-spacing:31.417740px;}
.ws5_c01033{word-spacing:31.561200px;}
.ws1b_c01033{word-spacing:31.704660px;}
.wsd_c01033{word-spacing:32.350230px;}
.ws7_c01033{word-spacing:32.450652px;}
.ws8_c01033{word-spacing:79.261650px;}
._0_c01033{margin-left:-40.670910px;}
._5_c01033{margin-left:-37.084410px;}
._2_c01033{margin-left:-35.147700px;}
._13_c01033{margin-left:-33.569640px;}
._7_c01033{margin-left:-27.329130px;}
._15_c01033{margin-left:-24.299100px;}
._16_c01033{margin-left:-22.827828px;}
._b_c01033{margin-left:-9.007170px;}
._6_c01033{margin-left:-7.818570px;}
._d_c01033{margin-left:-6.383970px;}
._c_c01033{margin-left:-4.662450px;}
._f_c01033{margin-left:-3.586500px;}
._3_c01033{margin-left:-2.008440px;}
._10_c01033{margin-left:-1.004220px;}
._4_c01033{width:1.864980px;}
._9_c01033{width:3.801690px;}
._14_c01033{width:5.648040px;}
._11_c01033{width:31.489470px;}
._8_c01033{width:33.641370px;}
._12_c01033{width:34.999350px;}
._e_c01033{width:79.333380px;}
._a_c01033{width:95.200056px;}
._1_c01033{width:933.068610px;}
.fc0_c01033{color:rgb(0,0,0);}
.fs3_c01033{font-size:41.844000px;}
.fs2_c01033{font-size:47.820000px;}
.fs4_c01033{font-size:59.778000px;}
.fs0_c01033{font-size:71.730000px;}
.fs1_c01033{font-size:86.076000px;}
.y0_c01033{bottom:0.000000px;}
.y21_c01033{bottom:113.845500px;}
.y20_c01033{bottom:131.778000px;}
.y1f_c01033{bottom:158.535000px;}
.y1e_c01033{bottom:185.425500px;}
.y1d_c01033{bottom:212.316000px;}
.y1c_c01033{bottom:239.208000px;}
.y1b_c01033{bottom:266.098500px;}
.y1a_c01033{bottom:292.989000px;}
.y19_c01033{bottom:339.307500px;}
.y18_c01033{bottom:366.198000px;}
.y17_c01033{bottom:393.088500px;}
.y16_c01033{bottom:419.979000px;}
.y15_c01033{bottom:446.871000px;}
.y14_c01033{bottom:493.188000px;}
.y13_c01033{bottom:520.080000px;}
.y12_c01033{bottom:546.970500px;}
.y11_c01033{bottom:581.581500px;}
.y10_c01033{bottom:637.870500px;}
.yf_c01033{bottom:664.762500px;}
.ye_c01033{bottom:691.653000px;}
.yd_c01033{bottom:718.543500px;}
.yc_c01033{bottom:745.434000px;}
.yb_c01033{bottom:772.324500px;}
.ya_c01033{bottom:799.216500px;}
.y9_c01033{bottom:826.107000px;}
.y8_c01033{bottom:860.719500px;}
.y7_c01033{bottom:920.071500px;}
.y6_c01033{bottom:987.568500px;}
.y5_c01033{bottom:1014.459000px;}
.y4_c01033{bottom:1041.349500px;}
.y3_c01033{bottom:1068.240000px;}
.y2_c01033{bottom:1095.132000px;}
.y1_c01033{bottom:1162.084500px;}
.h7_c01033{height:28.286544px;}
.h2_c01033{height:53.797500px;}
.h6_c01033{height:58.354320px;}
.h5_c01033{height:58.360320px;}
.h4_c01033{height:59.773500px;}
.h3_c01033{height:64.557000px;}
.h1_c01033{height:1263.750000px;}
.h0_c01033{height:1264.110000px;}
.w0_c01033{width:893.869500px;}
.w1_c01033{width:894.000000px;}
.x0_c01033{left:0.000000px;}
.x1_c01033{left:127.558500px;}
.x6_c01033{left:135.840000px;}
.x2_c01033{left:159.838500px;}
.x5_c01033{left:171.456000px;}
.x4_c01033{left:197.794500px;}
.x3_c01033{left:287.673000px;}
@media print{
.v3_c01033{vertical-align:-19.280000pt;}
.v0_c01033{vertical-align:0.000000pt;}
.v1_c01033{vertical-align:5.312000pt;}
.v2_c01033{vertical-align:23.141333pt;}
.ls0_c01033{letter-spacing:0.000000pt;}
.ws1_c01033{word-spacing:-0.063760pt;}
.ws23_c01033{word-spacing:-0.053136pt;}
.ws15_c01033{word-spacing:-0.042507pt;}
.ws20_c01033{word-spacing:-0.037195pt;}
.ws24_c01033{word-spacing:0.000000pt;}
.wsc_c01033{word-spacing:15.812480pt;}
.wsb_c01033{word-spacing:17.534000pt;}
.ws21_c01033{word-spacing:17.641152pt;}
.wse_c01033{word-spacing:18.044080pt;}
.ws22_c01033{word-spacing:18.969552pt;}
.ws10_c01033{word-spacing:20.084400pt;}
.ws6_c01033{word-spacing:20.722000pt;}
.ws4_c01033{word-spacing:20.785760pt;}
.ws19_c01033{word-spacing:20.977040pt;}
.ws12_c01033{word-spacing:21.104560pt;}
.ws18_c01033{word-spacing:21.168320pt;}
.wsf_c01033{word-spacing:21.359600pt;}
.ws1d_c01033{word-spacing:22.188480pt;}
.ws14_c01033{word-spacing:22.252240pt;}
.ws3_c01033{word-spacing:23.272400pt;}
.ws13_c01033{word-spacing:23.463680pt;}
.ws1a_c01033{word-spacing:23.782480pt;}
.ws0_c01033{word-spacing:23.846240pt;}
.ws11_c01033{word-spacing:23.973760pt;}
.ws9_c01033{word-spacing:24.037520pt;}
.ws1e_c01033{word-spacing:24.165040pt;}
.wsa_c01033{word-spacing:24.228800pt;}
.ws16_c01033{word-spacing:25.504000pt;}
.ws2_c01033{word-spacing:25.950320pt;}
.ws17_c01033{word-spacing:26.014080pt;}
.ws1c_c01033{word-spacing:27.161760pt;}
.ws1f_c01033{word-spacing:27.926880pt;}
.ws5_c01033{word-spacing:28.054400pt;}
.ws1b_c01033{word-spacing:28.181920pt;}
.wsd_c01033{word-spacing:28.755760pt;}
.ws7_c01033{word-spacing:28.845024pt;}
.ws8_c01033{word-spacing:70.454800pt;}
._0_c01033{margin-left:-36.151920pt;}
._5_c01033{margin-left:-32.963920pt;}
._2_c01033{margin-left:-31.242400pt;}
._13_c01033{margin-left:-29.839680pt;}
._7_c01033{margin-left:-24.292560pt;}
._15_c01033{margin-left:-21.599200pt;}
._16_c01033{margin-left:-20.291403pt;}
._b_c01033{margin-left:-8.006373pt;}
._6_c01033{margin-left:-6.949840pt;}
._d_c01033{margin-left:-5.674640pt;}
._c_c01033{margin-left:-4.144400pt;}
._f_c01033{margin-left:-3.188000pt;}
._3_c01033{margin-left:-1.785280pt;}
._10_c01033{margin-left:-0.892640pt;}
._4_c01033{width:1.657760pt;}
._9_c01033{width:3.379280pt;}
._14_c01033{width:5.020480pt;}
._11_c01033{width:27.990640pt;}
._8_c01033{width:29.903440pt;}
._12_c01033{width:31.110533pt;}
._e_c01033{width:70.518560pt;}
._a_c01033{width:84.622272pt;}
._1_c01033{width:829.394320pt;}
.fs3_c01033{font-size:37.194667pt;}
.fs2_c01033{font-size:42.506667pt;}
.fs4_c01033{font-size:53.136000pt;}
.fs0_c01033{font-size:63.760000pt;}
.fs1_c01033{font-size:76.512000pt;}
.y0_c01033{bottom:0.000000pt;}
.y21_c01033{bottom:101.196000pt;}
.y20_c01033{bottom:117.136000pt;}
.y1f_c01033{bottom:140.920000pt;}
.y1e_c01033{bottom:164.822667pt;}
.y1d_c01033{bottom:188.725333pt;}
.y1c_c01033{bottom:212.629333pt;}
.y1b_c01033{bottom:236.532000pt;}
.y1a_c01033{bottom:260.434667pt;}
.y19_c01033{bottom:301.606667pt;}
.y18_c01033{bottom:325.509333pt;}
.y17_c01033{bottom:349.412000pt;}
.y16_c01033{bottom:373.314667pt;}
.y15_c01033{bottom:397.218667pt;}
.y14_c01033{bottom:438.389333pt;}
.y13_c01033{bottom:462.293333pt;}
.y12_c01033{bottom:486.196000pt;}
.y11_c01033{bottom:516.961333pt;}
.y10_c01033{bottom:566.996000pt;}
.yf_c01033{bottom:590.900000pt;}
.ye_c01033{bottom:614.802667pt;}
.yd_c01033{bottom:638.705333pt;}
.yc_c01033{bottom:662.608000pt;}
.yb_c01033{bottom:686.510667pt;}
.ya_c01033{bottom:710.414667pt;}
.y9_c01033{bottom:734.317333pt;}
.y8_c01033{bottom:765.084000pt;}
.y7_c01033{bottom:817.841333pt;}
.y6_c01033{bottom:877.838667pt;}
.y5_c01033{bottom:901.741333pt;}
.y4_c01033{bottom:925.644000pt;}
.y3_c01033{bottom:949.546667pt;}
.y2_c01033{bottom:973.450667pt;}
.y1_c01033{bottom:1032.964000pt;}
.h7_c01033{height:25.143595pt;}
.h2_c01033{height:47.820000pt;}
.h6_c01033{height:51.870507pt;}
.h5_c01033{height:51.875840pt;}
.h4_c01033{height:53.132000pt;}
.h3_c01033{height:57.384000pt;}
.h1_c01033{height:1123.333333pt;}
.h0_c01033{height:1123.653333pt;}
.w0_c01033{width:794.550667pt;}
.w1_c01033{width:794.666667pt;}
.x0_c01033{left:0.000000pt;}
.x1_c01033{left:113.385333pt;}
.x6_c01033{left:120.746667pt;}
.x2_c01033{left:142.078667pt;}
.x5_c01033{left:152.405333pt;}
.x4_c01033{left:175.817333pt;}
.x3_c01033{left:255.709333pt;}
}





/* 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_50722f4cc2b6f7d5b34f3e8a.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.001000;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_c01034;src:url('chunks/assets/font_405dc2f4daa2eb63fce68406.woff2')format("woff");}.ff2_c01034{font-family:ff2_c01034;line-height:1.001000;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_c01034;src:url('chunks/assets/font_9d674eb4e5dbecb4bf07619c.woff2')format("woff");}.ff3_c01034{font-family:ff3_c01034;line-height:1.001000;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_c01034;src:url('chunks/assets/font_2f72fc883a39564a5eecc646.woff2')format("woff");}.ff4_c01034{font-family:ff4_c01034;line-height:0.697000;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_c01034;src:url('chunks/assets/font_425030babaa436103360c29b.woff2')format("woff");}.ff5_c01034{font-family:ff5_c01034;line-height:1.000000;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_c01034;src:url('chunks/assets/font_b0c7a0e62fed4e2ab22ea60a.woff2')format("woff");}.ff6_c01034{font-family:ff6_c01034;line-height:0.696000;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_c01034;src:url('chunks/assets/font_37298ef2379e831f8feb5324.woff2')format("woff");}.ff7_c01034{font-family:ff7_c01034;line-height:1.000000;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_c01034;src:url('chunks/assets/font_09f77e74f4e4544f63d38278.woff2')format("woff");}.ff8_c01034{font-family:ff8_c01034;line-height:1.000000;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);}
.v4_c01034{vertical-align:-21.690000px;}
.v0_c01034{vertical-align:0.000000px;}
.v3_c01034{vertical-align:5.976000px;}
.v2_c01034{vertical-align:7.170000px;}
.v1_c01034{vertical-align:26.034000px;}
.ls0_c01034{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws1a_c01034{word-spacing:-0.047820px;}
.ws1f_c01034{word-spacing:-0.041844px;}
.ws25_c01034{word-spacing:0.000000px;}
.wsf_c01034{word-spacing:15.995790px;}
.ws1c_c01034{word-spacing:16.067520px;}
.ws16_c01034{word-spacing:17.358660px;}
.ws15_c01034{word-spacing:17.573850px;}
.ws1d_c01034{word-spacing:17.717310px;}
.ws9_c01034{word-spacing:18.291150px;}
.ws11_c01034{word-spacing:19.223640px;}
.ws1b_c01034{word-spacing:19.510560px;}
.ws23_c01034{word-spacing:19.846296px;}
.wsb_c01034{word-spacing:20.012670px;}
.ws12_c01034{word-spacing:20.514780px;}
.ws20_c01034{word-spacing:20.742966px;}
.ws22_c01034{word-spacing:20.802744px;}
.ws24_c01034{word-spacing:21.280968px;}
.ws19_c01034{word-spacing:21.519000px;}
.ws17_c01034{word-spacing:21.805920px;}
.ws21_c01034{word-spacing:22.177638px;}
.wsc_c01034{word-spacing:23.312250px;}
.ws7_c01034{word-spacing:23.383980px;}
.ws3_c01034{word-spacing:23.957820px;}
.wsd_c01034{word-spacing:24.459930px;}
.ws4_c01034{word-spacing:25.607610px;}
.ws2_c01034{word-spacing:26.181450px;}
.ws1e_c01034{word-spacing:26.755290px;}
.ws0_c01034{word-spacing:26.827020px;}
.ws8_c01034{word-spacing:27.042210px;}
.ws18_c01034{word-spacing:27.687780px;}
.ws5_c01034{word-spacing:29.409300px;}
.ws10_c01034{word-spacing:29.839680px;}
.wse_c01034{word-spacing:30.772170px;}
.wsa_c01034{word-spacing:31.059090px;}
.ws6_c01034{word-spacing:32.435100px;}
.ws14_c01034{word-spacing:32.450652px;}
.ws13_c01034{word-spacing:95.113980px;}
._0_c01034{margin-left:-40.670910px;}
._4_c01034{margin-left:-37.156140px;}
._6_c01034{margin-left:-35.147700px;}
._d_c01034{margin-left:-33.067530px;}
._f_c01034{margin-left:-30.390342px;}
._c_c01034{margin-left:-27.329130px;}
._b_c01034{margin-left:-7.675110px;}
._2_c01034{margin-left:-5.881860px;}
._7_c01034{margin-left:-3.945150px;}
._5_c01034{margin-left:-2.080170px;}
._3_c01034{width:2.080170px;}
._9_c01034{width:4.174350px;}
._e_c01034{width:25.320690px;}
._8_c01034{width:30.055650px;}
._a_c01034{width:79.333380px;}
._1_c01034{width:933.068610px;}
.fc0_c01034{color:rgb(0,0,0);}
.fs3_c01034{font-size:41.844000px;}
.fs1_c01034{font-size:47.820000px;}
.fs4_c01034{font-size:59.778000px;}
.fs0_c01034{font-size:71.730000px;}
.fs2_c01034{font-size:86.076000px;}
.y0_c01034{bottom:0.000000px;}
.y21_c01034{bottom:123.543000px;}
.y20_c01034{bottom:136.053000px;}
.y1f_c01034{bottom:159.408000px;}
.y1e_c01034{bottom:187.161000px;}
.y1d_c01034{bottom:214.051500px;}
.y1c_c01034{bottom:240.942000px;}
.y1b_c01034{bottom:267.834000px;}
.y1a_c01034{bottom:294.724500px;}
.y19_c01034{bottom:321.615000px;}
.y18_c01034{bottom:348.505500px;}
.y17_c01034{bottom:383.118000px;}
.y16_c01034{bottom:439.407000px;}
.y15_c01034{bottom:466.297500px;}
.y14_c01034{bottom:500.910000px;}
.y13_c01034{bottom:560.262000px;}
.y12_c01034{bottom:627.759000px;}
.y11_c01034{bottom:654.649500px;}
.y10_c01034{bottom:681.540000px;}
.yf_c01034{bottom:708.432000px;}
.ye_c01034{bottom:735.322500px;}
.yd_c01034{bottom:762.213000px;}
.yc_c01034{bottom:789.103500px;}
.yb_c01034{bottom:815.994000px;}
.ya_c01034{bottom:842.886000px;}
.y9_c01034{bottom:869.776500px;}
.y8_c01034{bottom:896.667000px;}
.y7_c01034{bottom:923.557500px;}
.y6_c01034{bottom:958.170000px;}
.y5_c01034{bottom:1014.459000px;}
.y4_c01034{bottom:1041.349500px;}
.y3_c01034{bottom:1068.240000px;}
.y2_c01034{bottom:1095.132000px;}
.y1_c01034{bottom:1162.084500px;}
.h8_c01034{height:28.286544px;}
.h9_c01034{height:44.833500px;}
.h2_c01034{height:53.797500px;}
.h7_c01034{height:58.354320px;}
.h3_c01034{height:58.360320px;}
.h6_c01034{height:59.773500px;}
.h5_c01034{height:64.557000px;}
.h4_c01034{height:71.727000px;}
.h1_c01034{height:1263.750000px;}
.h0_c01034{height:1264.110000px;}
.w0_c01034{width:893.869500px;}
.w1_c01034{width:894.000000px;}
.x0_c01034{left:0.000000px;}
.x1_c01034{left:127.558500px;}
.x5_c01034{left:135.840000px;}
.x2_c01034{left:159.838500px;}
.x3_c01034{left:259.339500px;}
.x4_c01034{left:426.606000px;}
@media print{
.v4_c01034{vertical-align:-19.280000pt;}
.v0_c01034{vertical-align:0.000000pt;}
.v3_c01034{vertical-align:5.312000pt;}
.v2_c01034{vertical-align:6.373333pt;}
.v1_c01034{vertical-align:23.141333pt;}
.ls0_c01034{letter-spacing:0.000000pt;}
.ws1_c01034{word-spacing:-0.063760pt;}
.ws1a_c01034{word-spacing:-0.042507pt;}
.ws1f_c01034{word-spacing:-0.037195pt;}
.ws25_c01034{word-spacing:0.000000pt;}
.wsf_c01034{word-spacing:14.218480pt;}
.ws1c_c01034{word-spacing:14.282240pt;}
.ws16_c01034{word-spacing:15.429920pt;}
.ws15_c01034{word-spacing:15.621200pt;}
.ws1d_c01034{word-spacing:15.748720pt;}
.ws9_c01034{word-spacing:16.258800pt;}
.ws11_c01034{word-spacing:17.087680pt;}
.ws1b_c01034{word-spacing:17.342720pt;}
.ws23_c01034{word-spacing:17.641152pt;}
.wsb_c01034{word-spacing:17.789040pt;}
.ws12_c01034{word-spacing:18.235360pt;}
.ws20_c01034{word-spacing:18.438192pt;}
.ws22_c01034{word-spacing:18.491328pt;}
.ws24_c01034{word-spacing:18.916416pt;}
.ws19_c01034{word-spacing:19.128000pt;}
.ws17_c01034{word-spacing:19.383040pt;}
.ws21_c01034{word-spacing:19.713456pt;}
.wsc_c01034{word-spacing:20.722000pt;}
.ws7_c01034{word-spacing:20.785760pt;}
.ws3_c01034{word-spacing:21.295840pt;}
.wsd_c01034{word-spacing:21.742160pt;}
.ws4_c01034{word-spacing:22.762320pt;}
.ws2_c01034{word-spacing:23.272400pt;}
.ws1e_c01034{word-spacing:23.782480pt;}
.ws0_c01034{word-spacing:23.846240pt;}
.ws8_c01034{word-spacing:24.037520pt;}
.ws18_c01034{word-spacing:24.611360pt;}
.ws5_c01034{word-spacing:26.141600pt;}
.ws10_c01034{word-spacing:26.524160pt;}
.wse_c01034{word-spacing:27.353040pt;}
.wsa_c01034{word-spacing:27.608080pt;}
.ws6_c01034{word-spacing:28.831200pt;}
.ws14_c01034{word-spacing:28.845024pt;}
.ws13_c01034{word-spacing:84.545760pt;}
._0_c01034{margin-left:-36.151920pt;}
._4_c01034{margin-left:-33.027680pt;}
._6_c01034{margin-left:-31.242400pt;}
._d_c01034{margin-left:-29.393360pt;}
._f_c01034{margin-left:-27.013637pt;}
._c_c01034{margin-left:-24.292560pt;}
._b_c01034{margin-left:-6.822320pt;}
._2_c01034{margin-left:-5.228320pt;}
._7_c01034{margin-left:-3.506800pt;}
._5_c01034{margin-left:-1.849040pt;}
._3_c01034{width:1.849040pt;}
._9_c01034{width:3.710533pt;}
._e_c01034{width:22.507280pt;}
._8_c01034{width:26.716133pt;}
._a_c01034{width:70.518560pt;}
._1_c01034{width:829.394320pt;}
.fs3_c01034{font-size:37.194667pt;}
.fs1_c01034{font-size:42.506667pt;}
.fs4_c01034{font-size:53.136000pt;}
.fs0_c01034{font-size:63.760000pt;}
.fs2_c01034{font-size:76.512000pt;}
.y0_c01034{bottom:0.000000pt;}
.y21_c01034{bottom:109.816000pt;}
.y20_c01034{bottom:120.936000pt;}
.y1f_c01034{bottom:141.696000pt;}
.y1e_c01034{bottom:166.365333pt;}
.y1d_c01034{bottom:190.268000pt;}
.y1c_c01034{bottom:214.170667pt;}
.y1b_c01034{bottom:238.074667pt;}
.y1a_c01034{bottom:261.977333pt;}
.y19_c01034{bottom:285.880000pt;}
.y18_c01034{bottom:309.782667pt;}
.y17_c01034{bottom:340.549333pt;}
.y16_c01034{bottom:390.584000pt;}
.y15_c01034{bottom:414.486667pt;}
.y14_c01034{bottom:445.253333pt;}
.y13_c01034{bottom:498.010667pt;}
.y12_c01034{bottom:558.008000pt;}
.y11_c01034{bottom:581.910667pt;}
.y10_c01034{bottom:605.813333pt;}
.yf_c01034{bottom:629.717333pt;}
.ye_c01034{bottom:653.620000pt;}
.yd_c01034{bottom:677.522667pt;}
.yc_c01034{bottom:701.425333pt;}
.yb_c01034{bottom:725.328000pt;}
.ya_c01034{bottom:749.232000pt;}
.y9_c01034{bottom:773.134667pt;}
.y8_c01034{bottom:797.037333pt;}
.y7_c01034{bottom:820.940000pt;}
.y6_c01034{bottom:851.706667pt;}
.y5_c01034{bottom:901.741333pt;}
.y4_c01034{bottom:925.644000pt;}
.y3_c01034{bottom:949.546667pt;}
.y2_c01034{bottom:973.450667pt;}
.y1_c01034{bottom:1032.964000pt;}
.h8_c01034{height:25.143595pt;}
.h9_c01034{height:39.852000pt;}
.h2_c01034{height:47.820000pt;}
.h7_c01034{height:51.870507pt;}
.h3_c01034{height:51.875840pt;}
.h6_c01034{height:53.132000pt;}
.h5_c01034{height:57.384000pt;}
.h4_c01034{height:63.757333pt;}
.h1_c01034{height:1123.333333pt;}
.h0_c01034{height:1123.653333pt;}
.w0_c01034{width:794.550667pt;}
.w1_c01034{width:794.666667pt;}
.x0_c01034{left:0.000000pt;}
.x1_c01034{left:113.385333pt;}
.x5_c01034{left:120.746667pt;}
.x2_c01034{left:142.078667pt;}
.x3_c01034{left:230.524000pt;}
.x4_c01034{left:379.205333pt;}
}





/* 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_185da3cc2c0733de28235ce9.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.001000;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_c01035;src:url('chunks/assets/font_7e5b854b62056bc7745d1d67.woff2')format("woff");}.ff2_c01035{font-family:ff2_c01035;line-height:1.001000;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_c01035;src:url('chunks/assets/font_526660ee729448ca0d855c38.woff2')format("woff");}.ff3_c01035{font-family:ff3_c01035;line-height:1.001000;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_c01035;src:url('chunks/assets/font_9994f9f610692e7bee820f24.woff2')format("woff");}.ff4_c01035{font-family:ff4_c01035;line-height:0.697000;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_c01035;src:url('chunks/assets/font_c9e54d295b2591135aafb65f.woff2')format("woff");}.ff5_c01035{font-family:ff5_c01035;line-height:0.696000;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_c01035;src:url('chunks/assets/font_951df77b0ce84507374efc05.woff2')format("woff");}.ff6_c01035{font-family:ff6_c01035;line-height:1.000000;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_c01035;src:url('chunks/assets/font_34a5d9a24b886e64a3845fe2.woff2')format("woff");}.ff7_c01035{font-family:ff7_c01035;line-height:1.000000;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);}
.v2_c01035{vertical-align:-21.696000px;}
.v0_c01035{vertical-align:0.000000px;}
.v3_c01035{vertical-align:15.108000px;}
.v1_c01035{vertical-align:26.028000px;}
.ls0_c01035{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01035{word-spacing:-0.071730px;}
.ws26_c01035{word-spacing:-0.059778px;}
.ws7_c01035{word-spacing:-0.047820px;}
.ws22_c01035{word-spacing:-0.041844px;}
.ws29_c01035{word-spacing:0.000000px;}
.ws23_c01035{word-spacing:14.824944px;}
.ws1d_c01035{word-spacing:17.502120px;}
.ws20_c01035{word-spacing:17.573850px;}
.ws25_c01035{word-spacing:19.846296px;}
.ws1e_c01035{word-spacing:20.537100px;}
.ws10_c01035{word-spacing:20.586510px;}
.ws9_c01035{word-spacing:20.801700px;}
.ws11_c01035{word-spacing:20.873430px;}
.ws13_c01035{word-spacing:20.945160px;}
.ws24_c01035{word-spacing:21.280968px;}
.ws1a_c01035{word-spacing:22.451490px;}
.ws17_c01035{word-spacing:22.666680px;}
.ws12_c01035{word-spacing:22.810140px;}
.ws1f_c01035{word-spacing:22.869030px;}
.ws27_c01035{word-spacing:23.253642px;}
.wsd_c01035{word-spacing:23.312250px;}
.wsc_c01035{word-spacing:23.383980px;}
.ws5_c01035{word-spacing:23.886090px;}
.wsb_c01035{word-spacing:24.029550px;}
.wsa_c01035{word-spacing:24.101280px;}
.ws1b_c01035{word-spacing:24.244740px;}
.ws14_c01035{word-spacing:24.388200px;}
.ws28_c01035{word-spacing:24.449202px;}
.ws2_c01035{word-spacing:24.746850px;}
.ws3_c01035{word-spacing:25.033770px;}
.ws21_c01035{word-spacing:25.234050px;}
.ws1c_c01035{word-spacing:25.822800px;}
.ws19_c01035{word-spacing:26.181450px;}
.wse_c01035{word-spacing:26.683560px;}
.ws0_c01035{word-spacing:26.827020px;}
.ws15_c01035{word-spacing:27.831240px;}
.ws4_c01035{word-spacing:27.902970px;}
.ws8_c01035{word-spacing:28.333350px;}
.wsf_c01035{word-spacing:29.337570px;}
.ws6_c01035{word-spacing:30.987360px;}
.ws18_c01035{word-spacing:34.860780px;}
.ws16_c01035{word-spacing:36.869220px;}
._0_c01035{margin-left:-40.670910px;}
._3_c01035{margin-left:-37.084410px;}
._6_c01035{margin-left:-35.147700px;}
._5_c01035{margin-left:-33.210990px;}
._13_c01035{margin-left:-30.762126px;}
._12_c01035{margin-left:-29.586840px;}
._b_c01035{margin-left:-28.548540px;}
._8_c01035{margin-left:-27.329130px;}
._14_c01035{margin-left:-23.943264px;}
._7_c01035{margin-left:-7.962030px;}
._d_c01035{margin-left:-5.738400px;}
._9_c01035{margin-left:-3.658230px;}
._4_c01035{margin-left:-1.936710px;}
._2_c01035{width:1.936710px;}
._a_c01035{width:3.514770px;}
._c_c01035{width:4.719510px;}
._e_c01035{width:10.185660px;}
._f_c01035{width:11.333340px;}
._11_c01035{width:15.685410px;}
._10_c01035{width:30.261060px;}
._1_c01035{width:933.068610px;}
.fc0_c01035{color:rgb(0,0,0);}
.fs2_c01035{font-size:41.844000px;}
.fs1_c01035{font-size:47.820000px;}
.fs3_c01035{font-size:59.778000px;}
.fs0_c01035{font-size:71.730000px;}
.y0_c01035{bottom:0.000000px;}
.y25_c01035{bottom:145.461000px;}
.y24_c01035{bottom:157.969500px;}
.y23_c01035{bottom:175.903500px;}
.y22_c01035{bottom:181.326000px;}
.y21_c01035{bottom:200.860500px;}
.y20_c01035{bottom:213.370500px;}
.y1f_c01035{bottom:236.727000px;}
.y1e_c01035{bottom:264.478500px;}
.y1d_c01035{bottom:291.370500px;}
.y1c_c01035{bottom:318.261000px;}
.y1b_c01035{bottom:345.151500px;}
.y1a_c01035{bottom:372.042000px;}
.y19_c01035{bottom:398.934000px;}
.y18_c01035{bottom:445.251000px;}
.y17_c01035{bottom:472.141500px;}
.y16_c01035{bottom:499.033500px;}
.y15_c01035{bottom:525.924000px;}
.y14_c01035{bottom:572.242500px;}
.y13_c01035{bottom:599.133000px;}
.y12_c01035{bottom:626.023500px;}
.y11_c01035{bottom:652.914000px;}
.y10_c01035{bottom:699.232500px;}
.yf_c01035{bottom:726.123000px;}
.ye_c01035{bottom:753.013500px;}
.yd_c01035{bottom:799.332000px;}
.yc_c01035{bottom:826.222500px;}
.yb_c01035{bottom:853.114500px;}
.ya_c01035{bottom:880.005000px;}
.y9_c01035{bottom:906.895500px;}
.y8_c01035{bottom:933.786000px;}
.y7_c01035{bottom:960.678000px;}
.y6_c01035{bottom:987.568500px;}
.y5_c01035{bottom:1014.459000px;}
.y4_c01035{bottom:1041.349500px;}
.y3_c01035{bottom:1068.240000px;}
.y2_c01035{bottom:1095.132000px;}
.y1_c01035{bottom:1162.084500px;}
.h5_c01035{height:28.286544px;}
.h7_c01035{height:38.251500px;}
.h6_c01035{height:44.833500px;}
.h2_c01035{height:53.797500px;}
.h3_c01035{height:58.354320px;}
.h4_c01035{height:58.360320px;}
.h1_c01035{height:1263.750000px;}
.h0_c01035{height:1264.110000px;}
.w0_c01035{width:893.869500px;}
.w1_c01035{width:894.000000px;}
.x0_c01035{left:0.000000px;}
.x1_c01035{left:127.558500px;}
.x5_c01035{left:135.840000px;}
.x2_c01035{left:159.838500px;}
.x4_c01035{left:171.456000px;}
.x6_c01035{left:190.365000px;}
.x3_c01035{left:197.794500px;}
@media print{
.v2_c01035{vertical-align:-19.285333pt;}
.v0_c01035{vertical-align:0.000000pt;}
.v3_c01035{vertical-align:13.429333pt;}
.v1_c01035{vertical-align:23.136000pt;}
.ls0_c01035{letter-spacing:0.000000pt;}
.ws1_c01035{word-spacing:-0.063760pt;}
.ws26_c01035{word-spacing:-0.053136pt;}
.ws7_c01035{word-spacing:-0.042507pt;}
.ws22_c01035{word-spacing:-0.037195pt;}
.ws29_c01035{word-spacing:0.000000pt;}
.ws23_c01035{word-spacing:13.177728pt;}
.ws1d_c01035{word-spacing:15.557440pt;}
.ws20_c01035{word-spacing:15.621200pt;}
.ws25_c01035{word-spacing:17.641152pt;}
.ws1e_c01035{word-spacing:18.255200pt;}
.ws10_c01035{word-spacing:18.299120pt;}
.ws9_c01035{word-spacing:18.490400pt;}
.ws11_c01035{word-spacing:18.554160pt;}
.ws13_c01035{word-spacing:18.617920pt;}
.ws24_c01035{word-spacing:18.916416pt;}
.ws1a_c01035{word-spacing:19.956880pt;}
.ws17_c01035{word-spacing:20.148160pt;}
.ws12_c01035{word-spacing:20.275680pt;}
.ws1f_c01035{word-spacing:20.328027pt;}
.ws27_c01035{word-spacing:20.669904pt;}
.wsd_c01035{word-spacing:20.722000pt;}
.wsc_c01035{word-spacing:20.785760pt;}
.ws5_c01035{word-spacing:21.232080pt;}
.wsb_c01035{word-spacing:21.359600pt;}
.wsa_c01035{word-spacing:21.423360pt;}
.ws1b_c01035{word-spacing:21.550880pt;}
.ws14_c01035{word-spacing:21.678400pt;}
.ws28_c01035{word-spacing:21.732624pt;}
.ws2_c01035{word-spacing:21.997200pt;}
.ws3_c01035{word-spacing:22.252240pt;}
.ws21_c01035{word-spacing:22.430267pt;}
.ws1c_c01035{word-spacing:22.953600pt;}
.ws19_c01035{word-spacing:23.272400pt;}
.wse_c01035{word-spacing:23.718720pt;}
.ws0_c01035{word-spacing:23.846240pt;}
.ws15_c01035{word-spacing:24.738880pt;}
.ws4_c01035{word-spacing:24.802640pt;}
.ws8_c01035{word-spacing:25.185200pt;}
.wsf_c01035{word-spacing:26.077840pt;}
.ws6_c01035{word-spacing:27.544320pt;}
.ws18_c01035{word-spacing:30.987360pt;}
.ws16_c01035{word-spacing:32.772640pt;}
._0_c01035{margin-left:-36.151920pt;}
._3_c01035{margin-left:-32.963920pt;}
._6_c01035{margin-left:-31.242400pt;}
._5_c01035{margin-left:-29.520880pt;}
._13_c01035{margin-left:-27.344112pt;}
._12_c01035{margin-left:-26.299413pt;}
._b_c01035{margin-left:-25.376480pt;}
._8_c01035{margin-left:-24.292560pt;}
._14_c01035{margin-left:-21.282901pt;}
._7_c01035{margin-left:-7.077360pt;}
._d_c01035{margin-left:-5.100800pt;}
._9_c01035{margin-left:-3.251760pt;}
._4_c01035{margin-left:-1.721520pt;}
._2_c01035{width:1.721520pt;}
._a_c01035{width:3.124240pt;}
._c_c01035{width:4.195120pt;}
._e_c01035{width:9.053920pt;}
._f_c01035{width:10.074080pt;}
._11_c01035{width:13.942587pt;}
._10_c01035{width:26.898720pt;}
._1_c01035{width:829.394320pt;}
.fs2_c01035{font-size:37.194667pt;}
.fs1_c01035{font-size:42.506667pt;}
.fs3_c01035{font-size:53.136000pt;}
.fs0_c01035{font-size:63.760000pt;}
.y0_c01035{bottom:0.000000pt;}
.y25_c01035{bottom:129.298667pt;}
.y24_c01035{bottom:140.417333pt;}
.y23_c01035{bottom:156.358667pt;}
.y22_c01035{bottom:161.178667pt;}
.y21_c01035{bottom:178.542667pt;}
.y20_c01035{bottom:189.662667pt;}
.y1f_c01035{bottom:210.424000pt;}
.y1e_c01035{bottom:235.092000pt;}
.y1d_c01035{bottom:258.996000pt;}
.y1c_c01035{bottom:282.898667pt;}
.y1b_c01035{bottom:306.801333pt;}
.y1a_c01035{bottom:330.704000pt;}
.y19_c01035{bottom:354.608000pt;}
.y18_c01035{bottom:395.778667pt;}
.y17_c01035{bottom:419.681333pt;}
.y16_c01035{bottom:443.585333pt;}
.y15_c01035{bottom:467.488000pt;}
.y14_c01035{bottom:508.660000pt;}
.y13_c01035{bottom:532.562667pt;}
.y12_c01035{bottom:556.465333pt;}
.y11_c01035{bottom:580.368000pt;}
.y10_c01035{bottom:621.540000pt;}
.yf_c01035{bottom:645.442667pt;}
.ye_c01035{bottom:669.345333pt;}
.yd_c01035{bottom:710.517333pt;}
.yc_c01035{bottom:734.420000pt;}
.yb_c01035{bottom:758.324000pt;}
.ya_c01035{bottom:782.226667pt;}
.y9_c01035{bottom:806.129333pt;}
.y8_c01035{bottom:830.032000pt;}
.y7_c01035{bottom:853.936000pt;}
.y6_c01035{bottom:877.838667pt;}
.y5_c01035{bottom:901.741333pt;}
.y4_c01035{bottom:925.644000pt;}
.y3_c01035{bottom:949.546667pt;}
.y2_c01035{bottom:973.450667pt;}
.y1_c01035{bottom:1032.964000pt;}
.h5_c01035{height:25.143595pt;}
.h7_c01035{height:34.001333pt;}
.h6_c01035{height:39.852000pt;}
.h2_c01035{height:47.820000pt;}
.h3_c01035{height:51.870507pt;}
.h4_c01035{height:51.875840pt;}
.h1_c01035{height:1123.333333pt;}
.h0_c01035{height:1123.653333pt;}
.w0_c01035{width:794.550667pt;}
.w1_c01035{width:794.666667pt;}
.x0_c01035{left:0.000000pt;}
.x1_c01035{left:113.385333pt;}
.x5_c01035{left:120.746667pt;}
.x2_c01035{left:142.078667pt;}
.x4_c01035{left:152.405333pt;}
.x6_c01035{left:169.213333pt;}
.x3_c01035{left:175.817333pt;}
}





/* 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_185da3cc2c0733de28235ce9.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.001000;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_f4bd49d6eae0ad67f3728bf6.woff2')format("woff");}.ff2_c01036{font-family:ff2_c01036;line-height:1.001000;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_2647a4d3ce49c7996aa04e76.woff2')format("woff");}.ff3_c01036{font-family:ff3_c01036;line-height:1.000000;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_6a80f8b70cc59b2d149e6487.woff2')format("woff");}.ff4_c01036{font-family:ff4_c01036;line-height:1.001000;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_c01036;src:url('chunks/assets/font_9994f9f610692e7bee820f24.woff2')format("woff");}.ff5_c01036{font-family:ff5_c01036;line-height:0.697000;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_c01036;src:url('chunks/assets/font_c9e54d295b2591135aafb65f.woff2')format("woff");}.ff6_c01036{font-family:ff6_c01036;line-height:0.696000;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_c01036;src:url('chunks/assets/font_9320c92e97cfc9d2ffc33d8d.woff2')format("woff");}.ff7_c01036{font-family:ff7_c01036;line-height:1.000000;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_c01036;src:url('chunks/assets/font_e8df1a916fd3c1ae591bf799.woff2')format("woff");}.ff8_c01036{font-family:ff8_c01036;line-height:1.000000;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);}
.v2_c01036{vertical-align:-21.690000px;}
.v0_c01036{vertical-align:0.000000px;}
.v1_c01036{vertical-align:26.028000px;}
.ls0_c01036{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws5_c01036{word-spacing:-0.047820px;}
.wsd_c01036{word-spacing:-0.041844px;}
.ws10_c01036{word-spacing:0.000000px;}
.wsa_c01036{word-spacing:16.497900px;}
.wse_c01036{word-spacing:16.498728px;}
.wsf_c01036{word-spacing:18.232290px;}
.ws9_c01036{word-spacing:18.793260px;}
.wsc_c01036{word-spacing:23.312250px;}
.wsb_c01036{word-spacing:24.531660px;}
.ws6_c01036{word-spacing:24.675120px;}
.ws4_c01036{word-spacing:25.033770px;}
.ws7_c01036{word-spacing:25.751070px;}
.ws8_c01036{word-spacing:25.966260px;}
.ws0_c01036{word-spacing:26.827020px;}
.ws3_c01036{word-spacing:28.763730px;}
.ws2_c01036{word-spacing:79.261650px;}
._0_c01036{margin-left:-40.670910px;}
._b_c01036{margin-left:-36.940950px;}
._3_c01036{margin-left:-35.793270px;}
._a_c01036{margin-left:-34.215210px;}
._e_c01036{margin-left:-30.890550px;}
._8_c01036{margin-left:-27.400860px;}
._c_c01036{margin-left:-8.248950px;}
._7_c01036{margin-left:-7.101270px;}
._2_c01036{margin-left:-3.514770px;}
._9_c01036{margin-left:-1.793250px;}
._6_c01036{width:2.008440px;}
._5_c01036{width:3.028740px;}
._4_c01036{width:4.525560px;}
._d_c01036{width:24.388200px;}
._1_c01036{width:933.068610px;}
.fc0_c01036{color:rgb(0,0,0);}
.fs2_c01036{font-size:41.844000px;}
.fs1_c01036{font-size:47.820000px;}
.fs3_c01036{font-size:59.778000px;}
.fs0_c01036{font-size:71.730000px;}
.y0_c01036{bottom:0.000000px;}
.yd_c01036{bottom:98.937000px;}
.yc_c01036{bottom:799.075500px;}
.yb_c01036{bottom:825.966000px;}
.ya_c01036{bottom:852.856500px;}
.y9_c01036{bottom:879.747000px;}
.y8_c01036{bottom:906.637500px;}
.y7_c01036{bottom:933.529500px;}
.y6_c01036{bottom:960.420000px;}
.y5_c01036{bottom:987.310500px;}
.y4_c01036{bottom:1033.629000px;}
.y3_c01036{bottom:1060.519500px;}
.y2_c01036{bottom:1095.132000px;}
.y1_c01036{bottom:1162.084500px;}
.h4_c01036{height:28.286544px;}
.h2_c01036{height:53.797500px;}
.h3_c01036{height:58.354320px;}
.h1_c01036{height:1263.750000px;}
.h0_c01036{height:1264.110000px;}
.w0_c01036{width:893.869500px;}
.w1_c01036{width:894.000000px;}
.x0_c01036{left:0.000000px;}
.x1_c01036{left:127.558500px;}
.x5_c01036{left:135.840000px;}
.x4_c01036{left:159.838500px;}
.x3_c01036{left:171.456000px;}
.x2_c01036{left:197.794500px;}
@media print{
.v2_c01036{vertical-align:-19.280000pt;}
.v0_c01036{vertical-align:0.000000pt;}
.v1_c01036{vertical-align:23.136000pt;}
.ls0_c01036{letter-spacing:0.000000pt;}
.ws1_c01036{word-spacing:-0.063760pt;}
.ws5_c01036{word-spacing:-0.042507pt;}
.wsd_c01036{word-spacing:-0.037195pt;}
.ws10_c01036{word-spacing:0.000000pt;}
.wsa_c01036{word-spacing:14.664800pt;}
.wse_c01036{word-spacing:14.665536pt;}
.wsf_c01036{word-spacing:16.206480pt;}
.ws9_c01036{word-spacing:16.705120pt;}
.wsc_c01036{word-spacing:20.722000pt;}
.wsb_c01036{word-spacing:21.805920pt;}
.ws6_c01036{word-spacing:21.933440pt;}
.ws4_c01036{word-spacing:22.252240pt;}
.ws7_c01036{word-spacing:22.889840pt;}
.ws8_c01036{word-spacing:23.081120pt;}
.ws0_c01036{word-spacing:23.846240pt;}
.ws3_c01036{word-spacing:25.567760pt;}
.ws2_c01036{word-spacing:70.454800pt;}
._0_c01036{margin-left:-36.151920pt;}
._b_c01036{margin-left:-32.836400pt;}
._3_c01036{margin-left:-31.816240pt;}
._a_c01036{margin-left:-30.413520pt;}
._e_c01036{margin-left:-27.458267pt;}
._8_c01036{margin-left:-24.356320pt;}
._c_c01036{margin-left:-7.332400pt;}
._7_c01036{margin-left:-6.312240pt;}
._2_c01036{margin-left:-3.124240pt;}
._9_c01036{margin-left:-1.594000pt;}
._6_c01036{width:1.785280pt;}
._5_c01036{width:2.692213pt;}
._4_c01036{width:4.022720pt;}
._d_c01036{width:21.678400pt;}
._1_c01036{width:829.394320pt;}
.fs2_c01036{font-size:37.194667pt;}
.fs1_c01036{font-size:42.506667pt;}
.fs3_c01036{font-size:53.136000pt;}
.fs0_c01036{font-size:63.760000pt;}
.y0_c01036{bottom:0.000000pt;}
.yd_c01036{bottom:87.944000pt;}
.yc_c01036{bottom:710.289333pt;}
.yb_c01036{bottom:734.192000pt;}
.ya_c01036{bottom:758.094667pt;}
.y9_c01036{bottom:781.997333pt;}
.y8_c01036{bottom:805.900000pt;}
.y7_c01036{bottom:829.804000pt;}
.y6_c01036{bottom:853.706667pt;}
.y5_c01036{bottom:877.609333pt;}
.y4_c01036{bottom:918.781333pt;}
.y3_c01036{bottom:942.684000pt;}
.y2_c01036{bottom:973.450667pt;}
.y1_c01036{bottom:1032.964000pt;}
.h4_c01036{height:25.143595pt;}
.h2_c01036{height:47.820000pt;}
.h3_c01036{height:51.870507pt;}
.h1_c01036{height:1123.333333pt;}
.h0_c01036{height:1123.653333pt;}
.w0_c01036{width:794.550667pt;}
.w1_c01036{width:794.666667pt;}
.x0_c01036{left:0.000000pt;}
.x1_c01036{left:113.385333pt;}
.x5_c01036{left:120.746667pt;}
.x4_c01036{left:142.078667pt;}
.x3_c01036{left:152.405333pt;}
.x2_c01036{left:175.817333pt;}
}





/* 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_2a009f719b2d6598e38d8693.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.001000;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_353461851ff152ea094911fb.woff2')format("woff");}.ff2_c01037{font-family:ff2_c01037;line-height:1.001000;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;}
.ls0_c01037{letter-spacing:0.000000px;}
.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;}
}
.ws17_c01037{word-spacing:-0.071730px;}
.wsa_c01037{word-spacing:18.649800px;}
.ws9_c01037{word-spacing:18.864990px;}
.ws5_c01037{word-spacing:19.151910px;}
.ws1_c01037{word-spacing:19.654020px;}
.wsb_c01037{word-spacing:20.156130px;}
.ws10_c01037{word-spacing:21.662460px;}
.ws6_c01037{word-spacing:21.877650px;}
.wsf_c01037{word-spacing:22.164570px;}
.ws15_c01037{word-spacing:22.738410px;}
.ws4_c01037{word-spacing:23.312250px;}
.ws8_c01037{word-spacing:23.455710px;}
.ws13_c01037{word-spacing:24.531660px;}
.ws2_c01037{word-spacing:24.818580px;}
.ws16_c01037{word-spacing:24.962040px;}
.ws14_c01037{word-spacing:25.464150px;}
.ws3_c01037{word-spacing:25.679340px;}
.wse_c01037{word-spacing:27.113940px;}
.wsc_c01037{word-spacing:27.616050px;}
.ws12_c01037{word-spacing:27.687780px;}
.ws7_c01037{word-spacing:28.046430px;}
.ws11_c01037{word-spacing:28.333350px;}
.wsd_c01037{word-spacing:30.843900px;}
.ws0_c01037{word-spacing:55.473306px;}
._1_c01037{margin-left:-65.140236px;}
._6_c01037{margin-left:-36.940950px;}
._a_c01037{margin-left:-35.865000px;}
._9_c01037{margin-left:-34.645590px;}
._8_c01037{margin-left:-33.210990px;}
._5_c01037{margin-left:-27.329130px;}
._0_c01037{margin-left:-18.738972px;}
._4_c01037{margin-left:-8.033760px;}
._c_c01037{margin-left:-6.957810px;}
._2_c01037{margin-left:-5.810130px;}
._b_c01037{margin-left:-3.945150px;}
._7_c01037{margin-left:-2.151900px;}
._3_c01037{width:1.793250px;}
._d_c01037{width:2.797470px;}
.fc0_c01037{color:rgb(0,0,0);}
.fs1_c01037{font-size:71.730000px;}
.fs0_c01037{font-size:148.722000px;}
.y0_c01037{bottom:0.000000px;}
.y1d_c01037{bottom:61.552500px;}
.y1c_c01037{bottom:120.313500px;}
.y1b_c01037{bottom:147.204000px;}
.y1a_c01037{bottom:174.094500px;}
.y19_c01037{bottom:200.986500px;}
.y18_c01037{bottom:227.877000px;}
.y17_c01037{bottom:254.767500px;}
.y16_c01037{bottom:281.658000px;}
.y15_c01037{bottom:308.550000px;}
.y14_c01037{bottom:335.440500px;}
.y13_c01037{bottom:362.331000px;}
.y12_c01037{bottom:389.221500px;}
.y11_c01037{bottom:416.112000px;}
.y10_c01037{bottom:443.004000px;}
.yf_c01037{bottom:469.894500px;}
.ye_c01037{bottom:496.785000px;}
.yd_c01037{bottom:523.675500px;}
.yc_c01037{bottom:550.567500px;}
.yb_c01037{bottom:577.458000px;}
.ya_c01037{bottom:604.348500px;}
.y9_c01037{bottom:631.239000px;}
.y8_c01037{bottom:658.131000px;}
.y7_c01037{bottom:685.021500px;}
.y6_c01037{bottom:711.912000px;}
.y5_c01037{bottom:738.802500px;}
.y4_c01037{bottom:765.694500px;}
.y3_c01037{bottom:792.585000px;}
.y2_c01037{bottom:879.252000px;}
.y1_c01037{bottom:964.776000px;}
.h3_c01037{height:53.797500px;}
.h2_c01037{height:111.541500px;}
.h1_c01037{height:1263.750000px;}
.h0_c01037{height:1264.110000px;}
.w0_c01037{width:893.869500px;}
.w1_c01037{width:894.000000px;}
.x0_c01037{left:0.000000px;}
.x1_c01037{left:127.558500px;}
.x2_c01037{left:159.838500px;}
.x3_c01037{left:433.765500px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.ls0_c01037{letter-spacing:0.000000pt;}
.ws17_c01037{word-spacing:-0.063760pt;}
.wsa_c01037{word-spacing:16.577600pt;}
.ws9_c01037{word-spacing:16.768880pt;}
.ws5_c01037{word-spacing:17.023920pt;}
.ws1_c01037{word-spacing:17.470240pt;}
.wsb_c01037{word-spacing:17.916560pt;}
.ws10_c01037{word-spacing:19.255520pt;}
.ws6_c01037{word-spacing:19.446800pt;}
.wsf_c01037{word-spacing:19.701840pt;}
.ws15_c01037{word-spacing:20.211920pt;}
.ws4_c01037{word-spacing:20.722000pt;}
.ws8_c01037{word-spacing:20.849520pt;}
.ws13_c01037{word-spacing:21.805920pt;}
.ws2_c01037{word-spacing:22.060960pt;}
.ws16_c01037{word-spacing:22.188480pt;}
.ws14_c01037{word-spacing:22.634800pt;}
.ws3_c01037{word-spacing:22.826080pt;}
.wse_c01037{word-spacing:24.101280pt;}
.wsc_c01037{word-spacing:24.547600pt;}
.ws12_c01037{word-spacing:24.611360pt;}
.ws7_c01037{word-spacing:24.930160pt;}
.ws11_c01037{word-spacing:25.185200pt;}
.wsd_c01037{word-spacing:27.416800pt;}
.ws0_c01037{word-spacing:49.309605pt;}
._1_c01037{margin-left:-57.902432pt;}
._6_c01037{margin-left:-32.836400pt;}
._a_c01037{margin-left:-31.880000pt;}
._9_c01037{margin-left:-30.796080pt;}
._8_c01037{margin-left:-29.520880pt;}
._5_c01037{margin-left:-24.292560pt;}
._0_c01037{margin-left:-16.656864pt;}
._4_c01037{margin-left:-7.141120pt;}
._c_c01037{margin-left:-6.184720pt;}
._2_c01037{margin-left:-5.164560pt;}
._b_c01037{margin-left:-3.506800pt;}
._7_c01037{margin-left:-1.912800pt;}
._3_c01037{width:1.594000pt;}
._d_c01037{width:2.486640pt;}
.fs1_c01037{font-size:63.760000pt;}
.fs0_c01037{font-size:132.197333pt;}
.y0_c01037{bottom:0.000000pt;}
.y1d_c01037{bottom:54.713333pt;}
.y1c_c01037{bottom:106.945333pt;}
.y1b_c01037{bottom:130.848000pt;}
.y1a_c01037{bottom:154.750667pt;}
.y19_c01037{bottom:178.654667pt;}
.y18_c01037{bottom:202.557333pt;}
.y17_c01037{bottom:226.460000pt;}
.y16_c01037{bottom:250.362667pt;}
.y15_c01037{bottom:274.266667pt;}
.y14_c01037{bottom:298.169333pt;}
.y13_c01037{bottom:322.072000pt;}
.y12_c01037{bottom:345.974667pt;}
.y11_c01037{bottom:369.877333pt;}
.y10_c01037{bottom:393.781333pt;}
.yf_c01037{bottom:417.684000pt;}
.ye_c01037{bottom:441.586667pt;}
.yd_c01037{bottom:465.489333pt;}
.yc_c01037{bottom:489.393333pt;}
.yb_c01037{bottom:513.296000pt;}
.ya_c01037{bottom:537.198667pt;}
.y9_c01037{bottom:561.101333pt;}
.y8_c01037{bottom:585.005333pt;}
.y7_c01037{bottom:608.908000pt;}
.y6_c01037{bottom:632.810667pt;}
.y5_c01037{bottom:656.713333pt;}
.y4_c01037{bottom:680.617333pt;}
.y3_c01037{bottom:704.520000pt;}
.y2_c01037{bottom:781.557333pt;}
.y1_c01037{bottom:857.578667pt;}
.h3_c01037{height:47.820000pt;}
.h2_c01037{height:99.148000pt;}
.h1_c01037{height:1123.333333pt;}
.h0_c01037{height:1123.653333pt;}
.w0_c01037{width:794.550667pt;}
.w1_c01037{width:794.666667pt;}
.x0_c01037{left:0.000000pt;}
.x1_c01037{left:113.385333pt;}
.x2_c01037{left:142.078667pt;}
.x3_c01037{left:385.569333pt;}
}





/* 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_1957b6692a10fb6d0a40b342.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.001000;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_37d51da730360a1da62a3c42.woff2')format("woff");}.ff2_c01038{font-family:ff2_c01038;line-height:1.001000;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;}
.ls0_c01038{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws3_c01038{word-spacing:17.071740px;}
.ws8_c01038{word-spacing:18.864990px;}
.wsb_c01038{word-spacing:20.443050px;}
.wsc_c01038{word-spacing:21.877650px;}
.ws9_c01038{word-spacing:22.953600px;}
.ws2_c01038{word-spacing:23.312250px;}
.ws6_c01038{word-spacing:24.173010px;}
.wsa_c01038{word-spacing:25.177230px;}
.ws0_c01038{word-spacing:26.827020px;}
.ws7_c01038{word-spacing:27.329130px;}
.ws4_c01038{word-spacing:28.261620px;}
.ws5_c01038{word-spacing:34.071750px;}
._a_c01038{margin-left:-37.156140px;}
._6_c01038{margin-left:-35.075970px;}
._7_c01038{margin-left:-33.282720px;}
._1_c01038{margin-left:-31.417740px;}
._9_c01038{margin-left:-27.329130px;}
._0_c01038{margin-left:-9.324900px;}
._8_c01038{margin-left:-7.818570px;}
._c_c01038{margin-left:-6.455700px;}
._4_c01038{margin-left:-3.945150px;}
._3_c01038{margin-left:-1.936710px;}
._5_c01038{width:1.936710px;}
._b_c01038{width:3.873420px;}
._d_c01038{width:23.814360px;}
._2_c01038{width:1469.106900px;}
.fc0_c01038{color:rgb(0,0,0);}
.fs0_c01038{font-size:71.730000px;}
.y0_c01038{bottom:0.000000px;}
.ye_c01038{bottom:772.441500px;}
.yd_c01038{bottom:799.332000px;}
.yc_c01038{bottom:826.222500px;}
.yb_c01038{bottom:853.114500px;}
.ya_c01038{bottom:880.005000px;}
.y9_c01038{bottom:906.895500px;}
.y8_c01038{bottom:933.786000px;}
.y7_c01038{bottom:960.678000px;}
.y6_c01038{bottom:987.568500px;}
.y5_c01038{bottom:1014.459000px;}
.y4_c01038{bottom:1041.349500px;}
.y3_c01038{bottom:1068.240000px;}
.y2_c01038{bottom:1095.132000px;}
.y1_c01038{bottom:1162.084500px;}
.h2_c01038{height:53.797500px;}
.h1_c01038{height:1263.750000px;}
.h0_c01038{height:1264.110000px;}
.w0_c01038{width:893.869500px;}
.w1_c01038{width:894.000000px;}
.x0_c01038{left:0.000000px;}
.x1_c01038{left:127.558500px;}
.x2_c01038{left:159.838500px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls0_c01038{letter-spacing:0.000000pt;}
.ws1_c01038{word-spacing:-0.063760pt;}
.ws3_c01038{word-spacing:15.174880pt;}
.ws8_c01038{word-spacing:16.768880pt;}
.wsb_c01038{word-spacing:18.171600pt;}
.wsc_c01038{word-spacing:19.446800pt;}
.ws9_c01038{word-spacing:20.403200pt;}
.ws2_c01038{word-spacing:20.722000pt;}
.ws6_c01038{word-spacing:21.487120pt;}
.wsa_c01038{word-spacing:22.379760pt;}
.ws0_c01038{word-spacing:23.846240pt;}
.ws7_c01038{word-spacing:24.292560pt;}
.ws4_c01038{word-spacing:25.121440pt;}
.ws5_c01038{word-spacing:30.286000pt;}
._a_c01038{margin-left:-33.027680pt;}
._6_c01038{margin-left:-31.178640pt;}
._7_c01038{margin-left:-29.584640pt;}
._1_c01038{margin-left:-27.926880pt;}
._9_c01038{margin-left:-24.292560pt;}
._0_c01038{margin-left:-8.288800pt;}
._8_c01038{margin-left:-6.949840pt;}
._c_c01038{margin-left:-5.738400pt;}
._4_c01038{margin-left:-3.506800pt;}
._3_c01038{margin-left:-1.721520pt;}
._5_c01038{width:1.721520pt;}
._b_c01038{width:3.443040pt;}
._d_c01038{width:21.168320pt;}
._2_c01038{width:1305.872800pt;}
.fs0_c01038{font-size:63.760000pt;}
.y0_c01038{bottom:0.000000pt;}
.ye_c01038{bottom:686.614667pt;}
.yd_c01038{bottom:710.517333pt;}
.yc_c01038{bottom:734.420000pt;}
.yb_c01038{bottom:758.324000pt;}
.ya_c01038{bottom:782.226667pt;}
.y9_c01038{bottom:806.129333pt;}
.y8_c01038{bottom:830.032000pt;}
.y7_c01038{bottom:853.936000pt;}
.y6_c01038{bottom:877.838667pt;}
.y5_c01038{bottom:901.741333pt;}
.y4_c01038{bottom:925.644000pt;}
.y3_c01038{bottom:949.546667pt;}
.y2_c01038{bottom:973.450667pt;}
.y1_c01038{bottom:1032.964000pt;}
.h2_c01038{height:47.820000pt;}
.h1_c01038{height:1123.333333pt;}
.h0_c01038{height:1123.653333pt;}
.w0_c01038{width:794.550667pt;}
.w1_c01038{width:794.666667pt;}
.x0_c01038{left:0.000000pt;}
.x1_c01038{left:113.385333pt;}
.x2_c01038{left:142.078667pt;}
}





/* 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_706f953c53beee21601ff2ce.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.001000;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_938bbb3e6e71b28a69028ff9.woff2')format("woff");}.ff2_c01039{font-family:ff2_c01039;line-height:1.001000;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;}
.v1_c01039{vertical-align:35.940000px;}
.ls0_c01039{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01039{word-spacing:-0.148722px;}
.ws2_c01039{word-spacing:-0.071730px;}
.ws3_c01039{word-spacing:0.000000px;}
.ws0_c01039{word-spacing:55.622028px;}
._6_c01039{margin-left:-83.879208px;}
._5_c01039{margin-left:-65.140236px;}
._4_c01039{margin-left:-18.590250px;}
._1_c01039{margin-left:-13.979868px;}
._3_c01039{margin-left:-9.369486px;}
._0_c01039{margin-left:-4.759104px;}
._2_c01039{width:13.096956px;}
.fc0_c01039{color:rgb(0,0,0);}
.fs1_c01039{font-size:71.730000px;}
.fs0_c01039{font-size:148.722000px;}
.y0_c01039{bottom:0.000000px;}
.y6_c01039{bottom:61.552500px;}
.y5_c01039{bottom:595.365000px;}
.y4_c01039{bottom:651.001500px;}
.y3_c01039{bottom:706.638000px;}
.y2_c01039{bottom:715.623000px;}
.y1_c01039{bottom:792.162000px;}
.h4_c01039{height:53.797500px;}
.h2_c01039{height:111.541500px;}
.h3_c01039{height:147.481500px;}
.h1_c01039{height:1263.750000px;}
.h0_c01039{height:1264.110000px;}
.w0_c01039{width:893.869500px;}
.w1_c01039{width:894.000000px;}
.x0_c01039{left:0.000000px;}
.x3_c01039{left:150.954000px;}
.x2_c01039{left:156.568500px;}
.x5_c01039{left:217.371000px;}
.x6_c01039{left:322.014000px;}
.x4_c01039{left:366.678000px;}
.x1_c01039{left:374.080500px;}
.x7_c01039{left:433.765500px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.v1_c01039{vertical-align:31.946667pt;}
.ls0_c01039{letter-spacing:0.000000pt;}
.ws1_c01039{word-spacing:-0.132197pt;}
.ws2_c01039{word-spacing:-0.063760pt;}
.ws3_c01039{word-spacing:0.000000pt;}
.ws0_c01039{word-spacing:49.441803pt;}
._6_c01039{margin-left:-74.559296pt;}
._5_c01039{margin-left:-57.902432pt;}
._4_c01039{margin-left:-16.524667pt;}
._1_c01039{margin-left:-12.426549pt;}
._3_c01039{margin-left:-8.328432pt;}
._0_c01039{margin-left:-4.230315pt;}
._2_c01039{width:11.641739pt;}
.fs1_c01039{font-size:63.760000pt;}
.fs0_c01039{font-size:132.197333pt;}
.y0_c01039{bottom:0.000000pt;}
.y6_c01039{bottom:54.713333pt;}
.y5_c01039{bottom:529.213333pt;}
.y4_c01039{bottom:578.668000pt;}
.y3_c01039{bottom:628.122667pt;}
.y2_c01039{bottom:636.109333pt;}
.y1_c01039{bottom:704.144000pt;}
.h4_c01039{height:47.820000pt;}
.h2_c01039{height:99.148000pt;}
.h3_c01039{height:131.094667pt;}
.h1_c01039{height:1123.333333pt;}
.h0_c01039{height:1123.653333pt;}
.w0_c01039{width:794.550667pt;}
.w1_c01039{width:794.666667pt;}
.x0_c01039{left:0.000000pt;}
.x3_c01039{left:134.181333pt;}
.x2_c01039{left:139.172000pt;}
.x5_c01039{left:193.218667pt;}
.x6_c01039{left:286.234667pt;}
.x4_c01039{left:325.936000pt;}
.x1_c01039{left:332.516000pt;}
.x7_c01039{left:385.569333pt;}
}





/* 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_8e9377e845fa51d5d0abbdc2.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.001000;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_c01040;src:url('chunks/assets/font_6104acd947fe8bab09c7af41.woff2')format("woff");}.ff2_c01040{font-family:ff2_c01040;line-height:1.001000;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;}
.ls0_c01040{letter-spacing:0.000000px;}
.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;}
}
.ws2_c01040{word-spacing:23.312250px;}
.ws1_c01040{word-spacing:23.343120px;}
.ws0_c01040{word-spacing:25.033770px;}
._3_c01040{margin-left:-35.865000px;}
._5_c01040{margin-left:-34.071750px;}
._2_c01040{margin-left:-28.692000px;}
._1_c01040{margin-left:-7.173000px;}
._0_c01040{margin-left:-3.586500px;}
._4_c01040{margin-left:-1.752390px;}
.fc0_c01040{color:rgb(0,0,0);}
.fs0_c01040{font-size:71.730000px;}
.y0_c01040{bottom:0.000000px;}
.y3_c01040{bottom:895.962000px;}
.y2_c01040{bottom:922.852500px;}
.y1_c01040{bottom:949.744500px;}
.h2_c01040{height:53.797500px;}
.h1_c01040{height:1263.750000px;}
.h0_c01040{height:1264.110000px;}
.w0_c01040{width:893.869500px;}
.w1_c01040{width:894.000000px;}
.x0_c01040{left:0.000000px;}
.x3_c01040{left:377.919000px;}
.x2_c01040{left:395.040000px;}
.x1_c01040{left:399.342000px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.ls0_c01040{letter-spacing:0.000000pt;}
.ws2_c01040{word-spacing:20.722000pt;}
.ws1_c01040{word-spacing:20.749440pt;}
.ws0_c01040{word-spacing:22.252240pt;}
._3_c01040{margin-left:-31.880000pt;}
._5_c01040{margin-left:-30.286000pt;}
._2_c01040{margin-left:-25.504000pt;}
._1_c01040{margin-left:-6.376000pt;}
._0_c01040{margin-left:-3.188000pt;}
._4_c01040{margin-left:-1.557680pt;}
.fs0_c01040{font-size:63.760000pt;}
.y0_c01040{bottom:0.000000pt;}
.y3_c01040{bottom:796.410667pt;}
.y2_c01040{bottom:820.313333pt;}
.y1_c01040{bottom:844.217333pt;}
.h2_c01040{height:47.820000pt;}
.h1_c01040{height:1123.333333pt;}
.h0_c01040{height:1123.653333pt;}
.w0_c01040{width:794.550667pt;}
.w1_c01040{width:794.666667pt;}
.x0_c01040{left:0.000000pt;}
.x3_c01040{left:335.928000pt;}
.x2_c01040{left:351.146667pt;}
.x1_c01040{left:354.970667pt;}
}





/* 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_5657874dd0dcf9e01e6972a9.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.001000;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_c29e9b7f900b22cf695c6421.woff2')format("woff");}.ff2_c01041{font-family:ff2_c01041;line-height:1.000000;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_c01041;src:url('chunks/assets/font_02801a397d8daf776e0ea515.woff2')format("woff");}.ff3_c01041{font-family:ff3_c01041;line-height:1.001000;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;}
}
.ws16_c01041{word-spacing:-0.071730px;}
.ws7_c01041{word-spacing:16.210980px;}
.wsd_c01041{word-spacing:20.873430px;}
.ws13_c01041{word-spacing:21.303810px;}
.ws9_c01041{word-spacing:23.312250px;}
.wsc_c01041{word-spacing:23.383980px;}
.wse_c01041{word-spacing:23.527440px;}
.ws14_c01041{word-spacing:25.177230px;}
.ws3_c01041{word-spacing:25.751070px;}
.ws6_c01041{word-spacing:25.822800px;}
.ws10_c01041{word-spacing:27.257400px;}
.ws15_c01041{word-spacing:28.261620px;}
.ws4_c01041{word-spacing:30.843900px;}
.wsb_c01041{word-spacing:30.915630px;}
.ws12_c01041{word-spacing:31.561200px;}
.ws2_c01041{word-spacing:31.991580px;}
.wsa_c01041{word-spacing:32.206770px;}
.ws1_c01041{word-spacing:32.364576px;}
.wsf_c01041{word-spacing:32.708880px;}
.ws11_c01041{word-spacing:32.995800px;}
.ws8_c01041{word-spacing:34.573860px;}
.ws5_c01041{word-spacing:34.789050px;}
.ws0_c01041{word-spacing:55.473306px;}
._4_c01041{margin-left:-88.340868px;}
._1_c01041{margin-left:-65.140236px;}
._a_c01041{margin-left:-37.084410px;}
._f_c01041{margin-left:-35.147700px;}
._c_c01041{margin-left:-33.210990px;}
._8_c01041{margin-left:-27.329130px;}
._0_c01041{margin-left:-18.738972px;}
._7_c01041{margin-left:-7.890300px;}
._10_c01041{margin-left:-6.168780px;}
._2_c01041{margin-left:-4.759104px;}
._6_c01041{margin-left:-1.936710px;}
._9_c01041{width:1.936710px;}
._d_c01041{width:3.801690px;}
._3_c01041{width:4.907826px;}
._e_c01041{width:27.257400px;}
._b_c01041{width:29.983140px;}
._5_c01041{width:95.200056px;}
.fc0_c01041{color:rgb(0,0,0);}
.fs2_c01041{font-size:71.730000px;}
.fs1_c01041{font-size:86.076000px;}
.fs0_c01041{font-size:148.722000px;}
.y0_c01041{bottom:0.000000px;}
.y1b_c01041{bottom:61.552500px;}
.y1a_c01041{bottom:104.743500px;}
.y19_c01041{bottom:131.634000px;}
.y18_c01041{bottom:158.526000px;}
.y17_c01041{bottom:185.416500px;}
.y16_c01041{bottom:212.307000px;}
.y15_c01041{bottom:239.197500px;}
.y14_c01041{bottom:266.089500px;}
.y13_c01041{bottom:292.980000px;}
.y12_c01041{bottom:319.870500px;}
.y11_c01041{bottom:346.761000px;}
.y10_c01041{bottom:373.651500px;}
.yf_c01041{bottom:400.543500px;}
.ye_c01041{bottom:427.434000px;}
.yd_c01041{bottom:454.324500px;}
.yc_c01041{bottom:481.215000px;}
.yb_c01041{bottom:508.107000px;}
.ya_c01041{bottom:534.997500px;}
.y9_c01041{bottom:561.888000px;}
.y8_c01041{bottom:588.778500px;}
.y7_c01041{bottom:615.670500px;}
.y6_c01041{bottom:642.561000px;}
.y5_c01041{bottom:669.451500px;}
.y4_c01041{bottom:704.064000px;}
.y3_c01041{bottom:823.615500px;}
.y2_c01041{bottom:879.252000px;}
.y1_c01041{bottom:964.776000px;}
.h4_c01041{height:53.797500px;}
.h3_c01041{height:64.557000px;}
.h2_c01041{height:111.541500px;}
.h1_c01041{height:1263.750000px;}
.h0_c01041{height:1264.110000px;}
.w0_c01041{width:893.869500px;}
.w1_c01041{width:894.000000px;}
.x0_c01041{left:0.000000px;}
.x1_c01041{left:127.558500px;}
.x2_c01041{left:159.838500px;}
.x3_c01041{left:433.765500px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.ls0_c01041{letter-spacing:0.000000pt;}
.ws16_c01041{word-spacing:-0.063760pt;}
.ws7_c01041{word-spacing:14.409760pt;}
.wsd_c01041{word-spacing:18.554160pt;}
.ws13_c01041{word-spacing:18.936720pt;}
.ws9_c01041{word-spacing:20.722000pt;}
.wsc_c01041{word-spacing:20.785760pt;}
.wse_c01041{word-spacing:20.913280pt;}
.ws14_c01041{word-spacing:22.379760pt;}
.ws3_c01041{word-spacing:22.889840pt;}
.ws6_c01041{word-spacing:22.953600pt;}
.ws10_c01041{word-spacing:24.228800pt;}
.ws15_c01041{word-spacing:25.121440pt;}
.ws4_c01041{word-spacing:27.416800pt;}
.wsb_c01041{word-spacing:27.480560pt;}
.ws12_c01041{word-spacing:28.054400pt;}
.ws2_c01041{word-spacing:28.436960pt;}
.wsa_c01041{word-spacing:28.628240pt;}
.ws1_c01041{word-spacing:28.768512pt;}
.wsf_c01041{word-spacing:29.074560pt;}
.ws11_c01041{word-spacing:29.329600pt;}
.ws8_c01041{word-spacing:30.732320pt;}
.ws5_c01041{word-spacing:30.923600pt;}
.ws0_c01041{word-spacing:49.309605pt;}
._4_c01041{margin-left:-78.525216pt;}
._1_c01041{margin-left:-57.902432pt;}
._a_c01041{margin-left:-32.963920pt;}
._f_c01041{margin-left:-31.242400pt;}
._c_c01041{margin-left:-29.520880pt;}
._8_c01041{margin-left:-24.292560pt;}
._0_c01041{margin-left:-16.656864pt;}
._7_c01041{margin-left:-7.013600pt;}
._10_c01041{margin-left:-5.483360pt;}
._2_c01041{margin-left:-4.230315pt;}
._6_c01041{margin-left:-1.721520pt;}
._9_c01041{width:1.721520pt;}
._d_c01041{width:3.379280pt;}
._3_c01041{width:4.362512pt;}
._e_c01041{width:24.228800pt;}
._b_c01041{width:26.651680pt;}
._5_c01041{width:84.622272pt;}
.fs2_c01041{font-size:63.760000pt;}
.fs1_c01041{font-size:76.512000pt;}
.fs0_c01041{font-size:132.197333pt;}
.y0_c01041{bottom:0.000000pt;}
.y1b_c01041{bottom:54.713333pt;}
.y1a_c01041{bottom:93.105333pt;}
.y19_c01041{bottom:117.008000pt;}
.y18_c01041{bottom:140.912000pt;}
.y17_c01041{bottom:164.814667pt;}
.y16_c01041{bottom:188.717333pt;}
.y15_c01041{bottom:212.620000pt;}
.y14_c01041{bottom:236.524000pt;}
.y13_c01041{bottom:260.426667pt;}
.y12_c01041{bottom:284.329333pt;}
.y11_c01041{bottom:308.232000pt;}
.y10_c01041{bottom:332.134667pt;}
.yf_c01041{bottom:356.038667pt;}
.ye_c01041{bottom:379.941333pt;}
.yd_c01041{bottom:403.844000pt;}
.yc_c01041{bottom:427.746667pt;}
.yb_c01041{bottom:451.650667pt;}
.ya_c01041{bottom:475.553333pt;}
.y9_c01041{bottom:499.456000pt;}
.y8_c01041{bottom:523.358667pt;}
.y7_c01041{bottom:547.262667pt;}
.y6_c01041{bottom:571.165333pt;}
.y5_c01041{bottom:595.068000pt;}
.y4_c01041{bottom:625.834667pt;}
.y3_c01041{bottom:732.102667pt;}
.y2_c01041{bottom:781.557333pt;}
.y1_c01041{bottom:857.578667pt;}
.h4_c01041{height:47.820000pt;}
.h3_c01041{height:57.384000pt;}
.h2_c01041{height:99.148000pt;}
.h1_c01041{height:1123.333333pt;}
.h0_c01041{height:1123.653333pt;}
.w0_c01041{width:794.550667pt;}
.w1_c01041{width:794.666667pt;}
.x0_c01041{left:0.000000pt;}
.x1_c01041{left:113.385333pt;}
.x2_c01041{left:142.078667pt;}
.x3_c01041{left:385.569333pt;}
}





/* 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_5657874dd0dcf9e01e6972a9.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.001000;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_c01042;src:url('chunks/assets/font_ea2d56a49557fbcccb80b071.woff2')format("woff");}.ff2_c01042{font-family:ff2_c01042;line-height:1.001000;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_c01042;src:url('chunks/assets/font_a424009b446c4e7f84e19489.woff2')format("woff");}.ff3_c01042{font-family:ff3_c01042;line-height:0.697000;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_c01042;src:url('chunks/assets/font_31cb0534a4a80df9fee23506.woff2')format("woff");}.ff4_c01042{font-family:ff4_c01042;line-height:1.001000;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_c01042;src:url('chunks/assets/font_41dd02bd25efc93512efe5a7.woff2')format("woff");}.ff5_c01042{font-family:ff5_c01042;line-height:0.696000;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_c01042;src:url('chunks/assets/font_5258fd3be11fa63121d45a7d.woff2')format("woff");}.ff6_c01042{font-family:ff6_c01042;line-height:1.000000;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_c01042;src:url('chunks/assets/font_7ba5a5733f3a74f58bbec383.woff2')format("woff");}.ff7_c01042{font-family:ff7_c01042;line-height:1.000000;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);}
.v3_c01042{vertical-align:-21.690000px;}
.v0_c01042{vertical-align:0.000000px;}
.v5_c01042{vertical-align:15.114000px;}
.v2_c01042{vertical-align:18.132000px;}
.v4_c01042{vertical-align:21.690000px;}
.v1_c01042{vertical-align:26.034000px;}
.ls5_c01042{letter-spacing:0.000000px;}
.ls0_c01042{letter-spacing:2.999580px;}
.ls2_c01042{letter-spacing:3.004764px;}
.ls1_c01042{letter-spacing:3.005580px;}
.ls3_c01042{letter-spacing:3.010764px;}
.ls4_c01042{letter-spacing:26.059716px;}
.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;}
}
.ws1_c01042{word-spacing:-0.071730px;}
.ws22_c01042{word-spacing:-0.059778px;}
.ws3b_c01042{word-spacing:0.000000px;}
.ws38_c01042{word-spacing:13.330494px;}
.ws25_c01042{word-spacing:14.944500px;}
.ws39_c01042{word-spacing:15.303168px;}
.ws1a_c01042{word-spacing:15.565410px;}
.ws23_c01042{word-spacing:16.379172px;}
.wse_c01042{word-spacing:16.569630px;}
.ws11_c01042{word-spacing:16.928280px;}
.ws24_c01042{word-spacing:18.112734px;}
.ws20_c01042{word-spacing:18.172512px;}
.ws1f_c01042{word-spacing:18.232290px;}
.ws12_c01042{word-spacing:18.936720px;}
.wsb_c01042{word-spacing:19.080180px;}
.ws33_c01042{word-spacing:19.188738px;}
.ws21_c01042{word-spacing:19.786518px;}
.ws37_c01042{word-spacing:19.846296px;}
.ws1e_c01042{word-spacing:20.025630px;}
.ws2a_c01042{word-spacing:20.204964px;}
.ws2c_c01042{word-spacing:20.503854px;}
.ws34_c01042{word-spacing:20.683188px;}
.ws9_c01042{word-spacing:21.232080px;}
.ws3a_c01042{word-spacing:21.280968px;}
.ws1d_c01042{word-spacing:21.520080px;}
.ws5_c01042{word-spacing:21.590730px;}
.ws2b_c01042{word-spacing:21.639636px;}
.ws2d_c01042{word-spacing:21.938526px;}
.ws13_c01042{word-spacing:22.092840px;}
.ws16_c01042{word-spacing:22.451490px;}
.ws35_c01042{word-spacing:22.596084px;}
.ws32_c01042{word-spacing:23.074308px;}
.ws30_c01042{word-spacing:23.089938px;}
.ws4_c01042{word-spacing:23.312250px;}
.ws15_c01042{word-spacing:23.383980px;}
.ws6_c01042{word-spacing:23.455710px;}
.ws2_c01042{word-spacing:23.742630px;}
.ws36_c01042{word-spacing:23.791644px;}
.wsf_c01042{word-spacing:24.029550px;}
.ws31_c01042{word-spacing:24.269868px;}
.ws26_c01042{word-spacing:24.568758px;}
.ws2f_c01042{word-spacing:24.748092px;}
.wsc_c01042{word-spacing:24.818580px;}
.ws10_c01042{word-spacing:24.962040px;}
.ws19_c01042{word-spacing:25.033770px;}
.ws3_c01042{word-spacing:25.320690px;}
.wsa_c01042{word-spacing:25.464150px;}
.ws27_c01042{word-spacing:25.644762px;}
.ws29_c01042{word-spacing:25.764318px;}
.ws17_c01042{word-spacing:25.894530px;}
.ws14_c01042{word-spacing:25.966260px;}
.ws1b_c01042{word-spacing:26.003430px;}
.ws28_c01042{word-spacing:26.780544px;}
.ws0_c01042{word-spacing:26.827020px;}
.ws1c_c01042{word-spacing:26.959878px;}
.ws2e_c01042{word-spacing:28.513062px;}
.ws18_c01042{word-spacing:29.839680px;}
.wsd_c01042{word-spacing:30.270060px;}
.ws8_c01042{word-spacing:30.341790px;}
.ws7_c01042{word-spacing:31.417740px;}
._4_c01042{margin-left:-42.607620px;}
._8_c01042{margin-left:-37.227870px;}
._11_c01042{margin-left:-36.080190px;}
._a_c01042{margin-left:-34.789050px;}
._d_c01042{margin-left:-32.708880px;}
._2_c01042{margin-left:-31.417740px;}
._15_c01042{margin-left:-29.875416px;}
._7_c01042{margin-left:-27.329130px;}
._17_c01042{margin-left:-24.664698px;}
._16_c01042{margin-left:-22.476726px;}
._1_c01042{margin-left:-9.037980px;}
._6_c01042{margin-left:-7.388190px;}
._e_c01042{margin-left:-5.881860px;}
._b_c01042{margin-left:-3.896910px;}
._0_c01042{margin-left:-2.367090px;}
._12_c01042{margin-left:-1.004220px;}
._10_c01042{width:1.004220px;}
._3_c01042{width:2.080170px;}
._9_c01042{width:4.734180px;}
._18_c01042{width:8.171340px;}
._13_c01042{width:10.759500px;}
._c_c01042{width:23.240520px;}
._14_c01042{width:28.261620px;}
._f_c01042{width:32.789640px;}
._5_c01042{width:515.743470px;}
.fc0_c01042{color:rgb(0,0,0);}
.fs2_c01042{font-size:41.844000px;}
.fs1_c01042{font-size:47.820000px;}
.fs3_c01042{font-size:59.778000px;}
.fs0_c01042{font-size:71.730000px;}
.y0_c01042{bottom:0.000000px;}
.y2c_c01042{bottom:93.442500px;}
.y2b_c01042{bottom:98.865000px;}
.y2a_c01042{bottom:112.977000px;}
.y29_c01042{bottom:136.333500px;}
.y28_c01042{bottom:148.842000px;}
.y27_c01042{bottom:166.776000px;}
.y26_c01042{bottom:184.708500px;}
.y25_c01042{bottom:202.641000px;}
.y24_c01042{bottom:220.573500px;}
.y23_c01042{bottom:238.506000px;}
.y22_c01042{bottom:256.440000px;}
.y21_c01042{bottom:274.372500px;}
.y20_c01042{bottom:292.305000px;}
.y1f_c01042{bottom:310.237500px;}
.y1e_c01042{bottom:328.170000px;}
.y1d_c01042{bottom:346.102500px;}
.y1c_c01042{bottom:364.036500px;}
.y1b_c01042{bottom:387.391500px;}
.y1a_c01042{bottom:413.787000px;}
.y19_c01042{bottom:458.659500px;}
.y18_c01042{bottom:485.550000px;}
.y17_c01042{bottom:512.442000px;}
.y16_c01042{bottom:557.314500px;}
.y15_c01042{bottom:584.205000px;}
.y14_c01042{bottom:611.095500px;}
.y13_c01042{bottom:637.987500px;}
.y12_c01042{bottom:664.878000px;}
.y11_c01042{bottom:691.768500px;}
.y10_c01042{bottom:718.659000px;}
.yf_c01042{bottom:745.551000px;}
.ye_c01042{bottom:772.441500px;}
.yd_c01042{bottom:799.332000px;}
.yc_c01042{bottom:826.222500px;}
.yb_c01042{bottom:853.114500px;}
.ya_c01042{bottom:880.005000px;}
.y9_c01042{bottom:906.895500px;}
.y8_c01042{bottom:933.786000px;}
.y7_c01042{bottom:960.678000px;}
.y6_c01042{bottom:987.568500px;}
.y5_c01042{bottom:1014.459000px;}
.y4_c01042{bottom:1041.349500px;}
.y3_c01042{bottom:1068.240000px;}
.y2_c01042{bottom:1095.132000px;}
.y1_c01042{bottom:1162.084500px;}
.h5_c01042{height:28.286544px;}
.h8_c01042{height:38.251500px;}
.h6_c01042{height:44.833500px;}
.h2_c01042{height:53.797500px;}
.h3_c01042{height:58.360320px;}
.h7_c01042{height:59.947500px;}
.h4_c01042{height:71.929500px;}
.h1_c01042{height:1263.750000px;}
.h0_c01042{height:1264.110000px;}
.w0_c01042{width:893.869500px;}
.w1_c01042{width:894.000000px;}
.x0_c01042{left:0.000000px;}
.x1_c01042{left:127.558500px;}
.x6_c01042{left:147.754500px;}
.x2_c01042{left:159.838500px;}
.x5_c01042{left:171.456000px;}
.x4_c01042{left:197.794500px;}
.x8_c01042{left:211.951500px;}
.x7_c01042{left:250.441500px;}
.x3_c01042{left:584.242500px;}
@media print{
.v3_c01042{vertical-align:-19.280000pt;}
.v0_c01042{vertical-align:0.000000pt;}
.v5_c01042{vertical-align:13.434667pt;}
.v2_c01042{vertical-align:16.117333pt;}
.v4_c01042{vertical-align:19.280000pt;}
.v1_c01042{vertical-align:23.141333pt;}
.ls5_c01042{letter-spacing:0.000000pt;}
.ls0_c01042{letter-spacing:2.666293pt;}
.ls2_c01042{letter-spacing:2.670901pt;}
.ls1_c01042{letter-spacing:2.671627pt;}
.ls3_c01042{letter-spacing:2.676235pt;}
.ls4_c01042{letter-spacing:23.164192pt;}
.ws1_c01042{word-spacing:-0.063760pt;}
.ws22_c01042{word-spacing:-0.053136pt;}
.ws3b_c01042{word-spacing:0.000000pt;}
.ws38_c01042{word-spacing:11.849328pt;}
.ws25_c01042{word-spacing:13.284000pt;}
.ws39_c01042{word-spacing:13.602816pt;}
.ws1a_c01042{word-spacing:13.835920pt;}
.ws23_c01042{word-spacing:14.559264pt;}
.wse_c01042{word-spacing:14.728560pt;}
.ws11_c01042{word-spacing:15.047360pt;}
.ws24_c01042{word-spacing:16.100208pt;}
.ws20_c01042{word-spacing:16.153344pt;}
.ws1f_c01042{word-spacing:16.206480pt;}
.ws12_c01042{word-spacing:16.832640pt;}
.wsb_c01042{word-spacing:16.960160pt;}
.ws33_c01042{word-spacing:17.056656pt;}
.ws21_c01042{word-spacing:17.588016pt;}
.ws37_c01042{word-spacing:17.641152pt;}
.ws1e_c01042{word-spacing:17.800560pt;}
.ws2a_c01042{word-spacing:17.959968pt;}
.ws2c_c01042{word-spacing:18.225648pt;}
.ws34_c01042{word-spacing:18.385056pt;}
.ws9_c01042{word-spacing:18.872960pt;}
.ws3a_c01042{word-spacing:18.916416pt;}
.ws1d_c01042{word-spacing:19.128960pt;}
.ws5_c01042{word-spacing:19.191760pt;}
.ws2b_c01042{word-spacing:19.235232pt;}
.ws2d_c01042{word-spacing:19.500912pt;}
.ws13_c01042{word-spacing:19.638080pt;}
.ws16_c01042{word-spacing:19.956880pt;}
.ws35_c01042{word-spacing:20.085408pt;}
.ws32_c01042{word-spacing:20.510496pt;}
.ws30_c01042{word-spacing:20.524389pt;}
.ws4_c01042{word-spacing:20.722000pt;}
.ws15_c01042{word-spacing:20.785760pt;}
.ws6_c01042{word-spacing:20.849520pt;}
.ws2_c01042{word-spacing:21.104560pt;}
.ws36_c01042{word-spacing:21.148128pt;}
.wsf_c01042{word-spacing:21.359600pt;}
.ws31_c01042{word-spacing:21.573216pt;}
.ws26_c01042{word-spacing:21.838896pt;}
.ws2f_c01042{word-spacing:21.998304pt;}
.wsc_c01042{word-spacing:22.060960pt;}
.ws10_c01042{word-spacing:22.188480pt;}
.ws19_c01042{word-spacing:22.252240pt;}
.ws3_c01042{word-spacing:22.507280pt;}
.wsa_c01042{word-spacing:22.634800pt;}
.ws27_c01042{word-spacing:22.795344pt;}
.ws29_c01042{word-spacing:22.901616pt;}
.ws17_c01042{word-spacing:23.017360pt;}
.ws14_c01042{word-spacing:23.081120pt;}
.ws1b_c01042{word-spacing:23.114160pt;}
.ws28_c01042{word-spacing:23.804928pt;}
.ws0_c01042{word-spacing:23.846240pt;}
.ws1c_c01042{word-spacing:23.964336pt;}
.ws2e_c01042{word-spacing:25.344944pt;}
.ws18_c01042{word-spacing:26.524160pt;}
.wsd_c01042{word-spacing:26.906720pt;}
.ws8_c01042{word-spacing:26.970480pt;}
.ws7_c01042{word-spacing:27.926880pt;}
._4_c01042{margin-left:-37.873440pt;}
._8_c01042{margin-left:-33.091440pt;}
._11_c01042{margin-left:-32.071280pt;}
._a_c01042{margin-left:-30.923600pt;}
._d_c01042{margin-left:-29.074560pt;}
._2_c01042{margin-left:-27.926880pt;}
._15_c01042{margin-left:-26.555925pt;}
._7_c01042{margin-left:-24.292560pt;}
._17_c01042{margin-left:-21.924176pt;}
._16_c01042{margin-left:-19.979312pt;}
._1_c01042{margin-left:-8.033760pt;}
._6_c01042{margin-left:-6.567280pt;}
._e_c01042{margin-left:-5.228320pt;}
._b_c01042{margin-left:-3.463920pt;}
._0_c01042{margin-left:-2.104080pt;}
._12_c01042{margin-left:-0.892640pt;}
._10_c01042{width:0.892640pt;}
._3_c01042{width:1.849040pt;}
._9_c01042{width:4.208160pt;}
._18_c01042{width:7.263413pt;}
._13_c01042{width:9.564000pt;}
._c_c01042{width:20.658240pt;}
._14_c01042{width:25.121440pt;}
._f_c01042{width:29.146347pt;}
._5_c01042{width:458.438640pt;}
.fs2_c01042{font-size:37.194667pt;}
.fs1_c01042{font-size:42.506667pt;}
.fs3_c01042{font-size:53.136000pt;}
.fs0_c01042{font-size:63.760000pt;}
.y0_c01042{bottom:0.000000pt;}
.y2c_c01042{bottom:83.060000pt;}
.y2b_c01042{bottom:87.880000pt;}
.y2a_c01042{bottom:100.424000pt;}
.y29_c01042{bottom:121.185333pt;}
.y28_c01042{bottom:132.304000pt;}
.y27_c01042{bottom:148.245333pt;}
.y26_c01042{bottom:164.185333pt;}
.y25_c01042{bottom:180.125333pt;}
.y24_c01042{bottom:196.065333pt;}
.y23_c01042{bottom:212.005333pt;}
.y22_c01042{bottom:227.946667pt;}
.y21_c01042{bottom:243.886667pt;}
.y20_c01042{bottom:259.826667pt;}
.y1f_c01042{bottom:275.766667pt;}
.y1e_c01042{bottom:291.706667pt;}
.y1d_c01042{bottom:307.646667pt;}
.y1c_c01042{bottom:323.588000pt;}
.y1b_c01042{bottom:344.348000pt;}
.y1a_c01042{bottom:367.810667pt;}
.y19_c01042{bottom:407.697333pt;}
.y18_c01042{bottom:431.600000pt;}
.y17_c01042{bottom:455.504000pt;}
.y16_c01042{bottom:495.390667pt;}
.y15_c01042{bottom:519.293333pt;}
.y14_c01042{bottom:543.196000pt;}
.y13_c01042{bottom:567.100000pt;}
.y12_c01042{bottom:591.002667pt;}
.y11_c01042{bottom:614.905333pt;}
.y10_c01042{bottom:638.808000pt;}
.yf_c01042{bottom:662.712000pt;}
.ye_c01042{bottom:686.614667pt;}
.yd_c01042{bottom:710.517333pt;}
.yc_c01042{bottom:734.420000pt;}
.yb_c01042{bottom:758.324000pt;}
.ya_c01042{bottom:782.226667pt;}
.y9_c01042{bottom:806.129333pt;}
.y8_c01042{bottom:830.032000pt;}
.y7_c01042{bottom:853.936000pt;}
.y6_c01042{bottom:877.838667pt;}
.y5_c01042{bottom:901.741333pt;}
.y4_c01042{bottom:925.644000pt;}
.y3_c01042{bottom:949.546667pt;}
.y2_c01042{bottom:973.450667pt;}
.y1_c01042{bottom:1032.964000pt;}
.h5_c01042{height:25.143595pt;}
.h8_c01042{height:34.001333pt;}
.h6_c01042{height:39.852000pt;}
.h2_c01042{height:47.820000pt;}
.h3_c01042{height:51.875840pt;}
.h7_c01042{height:53.286667pt;}
.h4_c01042{height:63.937333pt;}
.h1_c01042{height:1123.333333pt;}
.h0_c01042{height:1123.653333pt;}
.w0_c01042{width:794.550667pt;}
.w1_c01042{width:794.666667pt;}
.x0_c01042{left:0.000000pt;}
.x1_c01042{left:113.385333pt;}
.x6_c01042{left:131.337333pt;}
.x2_c01042{left:142.078667pt;}
.x5_c01042{left:152.405333pt;}
.x4_c01042{left:175.817333pt;}
.x8_c01042{left:188.401333pt;}
.x7_c01042{left:222.614667pt;}
.x3_c01042{left:519.326667pt;}
}





/* 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_c9630683999513054a76160d.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.001000;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_1972cae6b9fff285e270b75c.woff2')format("woff");}.ff2_c01043{font-family:ff2_c01043;line-height:1.001000;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_c01043;src:url('chunks/assets/font_20a7eebf1b9d109724cc0e37.woff2')format("woff");}.ff3_c01043{font-family:ff3_c01043;line-height:0.697000;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_c01043;src:url('chunks/assets/font_a6d1a07dd61951e6bde01192.woff2')format("woff");}.ff4_c01043{font-family:ff4_c01043;line-height:1.000000;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_c01043;src:url('chunks/assets/font_fdead0d8dafdab8b0cae83ae.woff2')format("woff");}.ff5_c01043{font-family:ff5_c01043;line-height:0.696000;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_c01043;src:url('chunks/assets/font_ed8bd181e9bb0c5ca755fc1f.woff2')format("woff");}.ff6_c01043{font-family:ff6_c01043;line-height:1.000000;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_c01043;src:url('chunks/assets/font_da2d683fb72009bbe028f123.woff2')format("woff");}.ff7_c01043{font-family:ff7_c01043;line-height:1.000000;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);}
.v2_c01043{vertical-align:-21.690000px;}
.v0_c01043{vertical-align:0.000000px;}
.v3_c01043{vertical-align:15.108000px;}
.v1_c01043{vertical-align:26.028000px;}
.ls2_c01043{letter-spacing:0.000000px;}
.ls0_c01043{letter-spacing:2.999580px;}
.ls1_c01043{letter-spacing:3.004764px;}
.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;}
}
.ws1_c01043{word-spacing:-0.071730px;}
.ws20_c01043{word-spacing:-0.059778px;}
.ws26_c01043{word-spacing:0.000000px;}
.ws4_c01043{word-spacing:15.852330px;}
.ws21_c01043{word-spacing:16.379172px;}
.wsb_c01043{word-spacing:18.004230px;}
.ws22_c01043{word-spacing:18.112734px;}
.ws11_c01043{word-spacing:18.506340px;}
.wsa_c01043{word-spacing:18.649800px;}
.ws25_c01043{word-spacing:19.547406px;}
.ws12_c01043{word-spacing:19.582290px;}
.ws24_c01043{word-spacing:19.846296px;}
.wsc_c01043{word-spacing:20.227860px;}
.ws17_c01043{word-spacing:21.088620px;}
.ws23_c01043{word-spacing:21.340746px;}
.ws8_c01043{word-spacing:21.805920px;}
.ws1e_c01043{word-spacing:22.666680px;}
.ws5_c01043{word-spacing:22.810140px;}
.ws1b_c01043{word-spacing:23.025330px;}
.ws2_c01043{word-spacing:23.312250px;}
.ws13_c01043{word-spacing:23.383980px;}
.ws6_c01043{word-spacing:23.455710px;}
.ws18_c01043{word-spacing:23.670900px;}
.ws1c_c01043{word-spacing:24.459930px;}
.wse_c01043{word-spacing:24.603390px;}
.ws0_c01043{word-spacing:26.827020px;}
.ws16_c01043{word-spacing:27.185670px;}
.ws10_c01043{word-spacing:27.974700px;}
.wsd_c01043{word-spacing:28.333350px;}
.ws1f_c01043{word-spacing:28.907190px;}
.wsf_c01043{word-spacing:29.122380px;}
.ws1d_c01043{word-spacing:29.767950px;}
.ws7_c01043{word-spacing:30.556980px;}
.ws15_c01043{word-spacing:31.059090px;}
.ws1a_c01043{word-spacing:32.364576px;}
.ws19_c01043{word-spacing:32.450652px;}
.ws9_c01043{word-spacing:34.286940px;}
.ws3_c01043{word-spacing:34.789050px;}
.ws14_c01043{word-spacing:36.725760px;}
._4_c01043{margin-left:-42.607620px;}
._9_c01043{margin-left:-36.438840px;}
._6_c01043{margin-left:-35.291160px;}
._a_c01043{margin-left:-33.210990px;}
._2_c01043{margin-left:-31.417740px;}
._13_c01043{margin-left:-30.051882px;}
._8_c01043{margin-left:-27.329130px;}
._14_c01043{margin-left:-24.628986px;}
._1_c01043{margin-left:-9.037980px;}
._7_c01043{margin-left:-7.890300px;}
._d_c01043{margin-left:-5.451480px;}
._c_c01043{margin-left:-3.514770px;}
._0_c01043{margin-left:-2.367090px;}
._b_c01043{margin-left:-1.147680px;}
._f_c01043{width:1.004220px;}
._3_c01043{width:2.080170px;}
._e_c01043{width:4.232070px;}
._12_c01043{width:26.253180px;}
._10_c01043{width:28.261620px;}
._11_c01043{width:95.200056px;}
._5_c01043{width:515.743470px;}
.fc0_c01043{color:rgb(0,0,0);}
.fs3_c01043{font-size:41.844000px;}
.fs1_c01043{font-size:47.820000px;}
.fs4_c01043{font-size:59.778000px;}
.fs0_c01043{font-size:71.730000px;}
.fs2_c01043{font-size:86.076000px;}
.y0_c01043{bottom:0.000000px;}
.y28_c01043{bottom:97.107000px;}
.y27_c01043{bottom:115.039500px;}
.y26_c01043{bottom:120.462000px;}
.y25_c01043{bottom:134.574000px;}
.y24_c01043{bottom:152.508000px;}
.y23_c01043{bottom:157.930500px;}
.y22_c01043{bottom:186.289500px;}
.y21_c01043{bottom:213.180000px;}
.y20_c01043{bottom:240.070500px;}
.y1f_c01043{bottom:266.961000px;}
.y1e_c01043{bottom:293.853000px;}
.y1d_c01043{bottom:320.743500px;}
.y1c_c01043{bottom:355.354500px;}
.y1b_c01043{bottom:382.254000px;}
.y1a_c01043{bottom:449.751000px;}
.y19_c01043{bottom:476.641500px;}
.y18_c01043{bottom:503.533500px;}
.y17_c01043{bottom:530.424000px;}
.y16_c01043{bottom:557.314500px;}
.y15_c01043{bottom:584.205000px;}
.y14_c01043{bottom:611.095500px;}
.y13_c01043{bottom:637.987500px;}
.y12_c01043{bottom:664.878000px;}
.y11_c01043{bottom:691.768500px;}
.y10_c01043{bottom:718.659000px;}
.yf_c01043{bottom:745.551000px;}
.ye_c01043{bottom:772.441500px;}
.yd_c01043{bottom:799.332000px;}
.yc_c01043{bottom:826.222500px;}
.yb_c01043{bottom:853.114500px;}
.ya_c01043{bottom:880.005000px;}
.y9_c01043{bottom:906.895500px;}
.y8_c01043{bottom:933.786000px;}
.y7_c01043{bottom:960.678000px;}
.y6_c01043{bottom:987.568500px;}
.y5_c01043{bottom:1014.459000px;}
.y4_c01043{bottom:1041.349500px;}
.y3_c01043{bottom:1068.240000px;}
.y2_c01043{bottom:1095.132000px;}
.y1_c01043{bottom:1162.084500px;}
.h5_c01043{height:38.251500px;}
.h6_c01043{height:44.833500px;}
.h2_c01043{height:53.797500px;}
.h3_c01043{height:58.354320px;}
.h4_c01043{height:64.557000px;}
.h1_c01043{height:1263.750000px;}
.h0_c01043{height:1264.110000px;}
.w0_c01043{width:893.869500px;}
.w1_c01043{width:894.000000px;}
.x0_c01043{left:0.000000px;}
.x1_c01043{left:127.558500px;}
.x4_c01043{left:147.754500px;}
.x2_c01043{left:159.838500px;}
.x3_c01043{left:200.784000px;}
.x5_c01043{left:658.212000px;}
@media print{
.v2_c01043{vertical-align:-19.280000pt;}
.v0_c01043{vertical-align:0.000000pt;}
.v3_c01043{vertical-align:13.429333pt;}
.v1_c01043{vertical-align:23.136000pt;}
.ls2_c01043{letter-spacing:0.000000pt;}
.ls0_c01043{letter-spacing:2.666293pt;}
.ls1_c01043{letter-spacing:2.670901pt;}
.ws1_c01043{word-spacing:-0.063760pt;}
.ws20_c01043{word-spacing:-0.053136pt;}
.ws26_c01043{word-spacing:0.000000pt;}
.ws4_c01043{word-spacing:14.090960pt;}
.ws21_c01043{word-spacing:14.559264pt;}
.wsb_c01043{word-spacing:16.003760pt;}
.ws22_c01043{word-spacing:16.100208pt;}
.ws11_c01043{word-spacing:16.450080pt;}
.wsa_c01043{word-spacing:16.577600pt;}
.ws25_c01043{word-spacing:17.375472pt;}
.ws12_c01043{word-spacing:17.406480pt;}
.ws24_c01043{word-spacing:17.641152pt;}
.wsc_c01043{word-spacing:17.980320pt;}
.ws17_c01043{word-spacing:18.745440pt;}
.ws23_c01043{word-spacing:18.969552pt;}
.ws8_c01043{word-spacing:19.383040pt;}
.ws1e_c01043{word-spacing:20.148160pt;}
.ws5_c01043{word-spacing:20.275680pt;}
.ws1b_c01043{word-spacing:20.466960pt;}
.ws2_c01043{word-spacing:20.722000pt;}
.ws13_c01043{word-spacing:20.785760pt;}
.ws6_c01043{word-spacing:20.849520pt;}
.ws18_c01043{word-spacing:21.040800pt;}
.ws1c_c01043{word-spacing:21.742160pt;}
.wse_c01043{word-spacing:21.869680pt;}
.ws0_c01043{word-spacing:23.846240pt;}
.ws16_c01043{word-spacing:24.165040pt;}
.ws10_c01043{word-spacing:24.866400pt;}
.wsd_c01043{word-spacing:25.185200pt;}
.ws1f_c01043{word-spacing:25.695280pt;}
.wsf_c01043{word-spacing:25.886560pt;}
.ws1d_c01043{word-spacing:26.460400pt;}
.ws7_c01043{word-spacing:27.161760pt;}
.ws15_c01043{word-spacing:27.608080pt;}
.ws1a_c01043{word-spacing:28.768512pt;}
.ws19_c01043{word-spacing:28.845024pt;}
.ws9_c01043{word-spacing:30.477280pt;}
.ws3_c01043{word-spacing:30.923600pt;}
.ws14_c01043{word-spacing:32.645120pt;}
._4_c01043{margin-left:-37.873440pt;}
._9_c01043{margin-left:-32.390080pt;}
._6_c01043{margin-left:-31.369920pt;}
._a_c01043{margin-left:-29.520880pt;}
._2_c01043{margin-left:-27.926880pt;}
._13_c01043{margin-left:-26.712784pt;}
._8_c01043{margin-left:-24.292560pt;}
._14_c01043{margin-left:-21.892432pt;}
._1_c01043{margin-left:-8.033760pt;}
._7_c01043{margin-left:-7.013600pt;}
._d_c01043{margin-left:-4.845760pt;}
._c_c01043{margin-left:-3.124240pt;}
._0_c01043{margin-left:-2.104080pt;}
._b_c01043{margin-left:-1.020160pt;}
._f_c01043{width:0.892640pt;}
._3_c01043{width:1.849040pt;}
._e_c01043{width:3.761840pt;}
._12_c01043{width:23.336160pt;}
._10_c01043{width:25.121440pt;}
._11_c01043{width:84.622272pt;}
._5_c01043{width:458.438640pt;}
.fs3_c01043{font-size:37.194667pt;}
.fs1_c01043{font-size:42.506667pt;}
.fs4_c01043{font-size:53.136000pt;}
.fs0_c01043{font-size:63.760000pt;}
.fs2_c01043{font-size:76.512000pt;}
.y0_c01043{bottom:0.000000pt;}
.y28_c01043{bottom:86.317333pt;}
.y27_c01043{bottom:102.257333pt;}
.y26_c01043{bottom:107.077333pt;}
.y25_c01043{bottom:119.621333pt;}
.y24_c01043{bottom:135.562667pt;}
.y23_c01043{bottom:140.382667pt;}
.y22_c01043{bottom:165.590667pt;}
.y21_c01043{bottom:189.493333pt;}
.y20_c01043{bottom:213.396000pt;}
.y1f_c01043{bottom:237.298667pt;}
.y1e_c01043{bottom:261.202667pt;}
.y1d_c01043{bottom:285.105333pt;}
.y1c_c01043{bottom:315.870667pt;}
.y1b_c01043{bottom:339.781333pt;}
.y1a_c01043{bottom:399.778667pt;}
.y19_c01043{bottom:423.681333pt;}
.y18_c01043{bottom:447.585333pt;}
.y17_c01043{bottom:471.488000pt;}
.y16_c01043{bottom:495.390667pt;}
.y15_c01043{bottom:519.293333pt;}
.y14_c01043{bottom:543.196000pt;}
.y13_c01043{bottom:567.100000pt;}
.y12_c01043{bottom:591.002667pt;}
.y11_c01043{bottom:614.905333pt;}
.y10_c01043{bottom:638.808000pt;}
.yf_c01043{bottom:662.712000pt;}
.ye_c01043{bottom:686.614667pt;}
.yd_c01043{bottom:710.517333pt;}
.yc_c01043{bottom:734.420000pt;}
.yb_c01043{bottom:758.324000pt;}
.ya_c01043{bottom:782.226667pt;}
.y9_c01043{bottom:806.129333pt;}
.y8_c01043{bottom:830.032000pt;}
.y7_c01043{bottom:853.936000pt;}
.y6_c01043{bottom:877.838667pt;}
.y5_c01043{bottom:901.741333pt;}
.y4_c01043{bottom:925.644000pt;}
.y3_c01043{bottom:949.546667pt;}
.y2_c01043{bottom:973.450667pt;}
.y1_c01043{bottom:1032.964000pt;}
.h5_c01043{height:34.001333pt;}
.h6_c01043{height:39.852000pt;}
.h2_c01043{height:47.820000pt;}
.h3_c01043{height:51.870507pt;}
.h4_c01043{height:57.384000pt;}
.h1_c01043{height:1123.333333pt;}
.h0_c01043{height:1123.653333pt;}
.w0_c01043{width:794.550667pt;}
.w1_c01043{width:794.666667pt;}
.x0_c01043{left:0.000000pt;}
.x1_c01043{left:113.385333pt;}
.x4_c01043{left:131.337333pt;}
.x2_c01043{left:142.078667pt;}
.x3_c01043{left:178.474667pt;}
.x5_c01043{left:585.077333pt;}
}





/* 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_dc3eb1f92989ac3cd8bafefe.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.001000;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_c01044;src:url('chunks/assets/font_2c77140cef1f07dd665138f3.woff2')format("woff");}.ff2_c01044{font-family:ff2_c01044;line-height:1.001000;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_c01044;src:url('chunks/assets/font_bfd418fdc079300c3b2b5b84.woff2')format("woff");}.ff3_c01044{font-family:ff3_c01044;line-height:1.001000;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_c01044;src:url('chunks/assets/font_3fa687c3f5ef98ca4011ca5d.woff2')format("woff");}.ff4_c01044{font-family:ff4_c01044;line-height:0.697000;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_c01044;src:url('chunks/assets/font_39bfbadf9fe9582096552045.woff2')format("woff");}.ff5_c01044{font-family:ff5_c01044;line-height:0.696000;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_c01044;src:url('chunks/assets/font_b9df0c5364a9aab0450c8a19.woff2')format("woff");}.ff6_c01044{font-family:ff6_c01044;line-height:1.000000;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_c01044;src:url('chunks/assets/font_4cb62bf148b6157155916a88.woff2')format("woff");}.ff7_c01044{font-family:ff7_c01044;line-height:1.000000;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);}
.v3_c01044{vertical-align:-21.690000px;}
.v0_c01044{vertical-align:0.000000px;}
.v4_c01044{vertical-align:15.108000px;}
.v2_c01044{vertical-align:18.132000px;}
.v1_c01044{vertical-align:26.034000px;}
.ls5_c01044{letter-spacing:0.000000px;}
.ls2_c01044{letter-spacing:2.999580px;}
.ls3_c01044{letter-spacing:3.004764px;}
.ls4_c01044{letter-spacing:24.556764px;}
.ls1_c01044{letter-spacing:25.727580px;}
.ls0_c01044{letter-spacing:33.857580px;}
.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;}
}
.ws1_c01044{word-spacing:-0.071730px;}
.ws30_c01044{word-spacing:-0.059778px;}
.ws31_c01044{word-spacing:0.000000px;}
.ws1f_c01044{word-spacing:15.565410px;}
.ws2b_c01044{word-spacing:17.335620px;}
.wsf_c01044{word-spacing:17.430390px;}
.ws20_c01044{word-spacing:18.864990px;}
.ws2c_c01044{word-spacing:18.949626px;}
.ws2e_c01044{word-spacing:19.427850px;}
.wse_c01044{word-spacing:19.582290px;}
.ws25_c01044{word-spacing:19.846296px;}
.ws6_c01044{word-spacing:20.873430px;}
.ws2d_c01044{word-spacing:20.922300px;}
.ws2a_c01044{word-spacing:21.280968px;}
.ws26_c01044{word-spacing:21.340746px;}
.ws27_c01044{word-spacing:21.460302px;}
.ws28_c01044{word-spacing:21.460404px;}
.ws1d_c01044{word-spacing:21.877650px;}
.ws1c_c01044{word-spacing:22.021110px;}
.ws21_c01044{word-spacing:22.308030px;}
.wsa_c01044{word-spacing:22.666680px;}
.ws29_c01044{word-spacing:22.835196px;}
.ws14_c01044{word-spacing:23.025330px;}
.ws16_c01044{word-spacing:23.312250px;}
.wsc_c01044{word-spacing:23.383980px;}
.ws2f_c01044{word-spacing:24.150312px;}
.ws9_c01044{word-spacing:24.388200px;}
.ws12_c01044{word-spacing:25.033770px;}
.ws10_c01044{word-spacing:25.630350px;}
.ws1a_c01044{word-spacing:25.894530px;}
.ws1b_c01044{word-spacing:25.966260px;}
.ws0_c01044{word-spacing:26.827020px;}
.ws15_c01044{word-spacing:26.898750px;}
.ws11_c01044{word-spacing:27.113940px;}
.ws1e_c01044{word-spacing:27.329130px;}
.wsb_c01044{word-spacing:28.620270px;}
.ws2_c01044{word-spacing:29.194110px;}
.ws13_c01044{word-spacing:29.265840px;}
.ws22_c01044{word-spacing:29.649888px;}
.ws24_c01044{word-spacing:29.709666px;}
.wsd_c01044{word-spacing:30.126600px;}
.ws23_c01044{word-spacing:30.367224px;}
.ws3_c01044{word-spacing:30.485250px;}
.ws19_c01044{word-spacing:30.556980px;}
.ws5_c01044{word-spacing:30.772170px;}
.ws7_c01044{word-spacing:31.776390px;}
.ws4_c01044{word-spacing:31.919850px;}
.ws8_c01044{word-spacing:32.780610px;}
.ws18_c01044{word-spacing:33.713100px;}
.ws17_c01044{word-spacing:34.430400px;}
._4_c01044{margin-left:-42.607620px;}
._e_c01044{margin-left:-37.443060px;}
._11_c01044{margin-left:-36.342240px;}
._a_c01044{margin-left:-34.930650px;}
._d_c01044{margin-left:-33.139260px;}
._2_c01044{margin-left:-31.417740px;}
._19_c01044{margin-left:-29.553564px;}
._9_c01044{margin-left:-27.329130px;}
._1a_c01044{margin-left:-22.923228px;}
._1_c01044{margin-left:-9.037980px;}
._8_c01044{margin-left:-8.033760px;}
._17_c01044{margin-left:-6.954780px;}
._14_c01044{margin-left:-5.950560px;}
._6_c01044{margin-left:-4.464900px;}
._10_c01044{margin-left:-3.446070px;}
._0_c01044{margin-left:-2.367090px;}
._13_c01044{margin-left:-1.219410px;}
._1b_c01044{width:1.034190px;}
._3_c01044{width:2.080170px;}
._12_c01044{width:4.016880px;}
._7_c01044{width:6.022230px;}
._b_c01044{width:7.127310px;}
._f_c01044{width:19.223640px;}
._18_c01044{width:22.092840px;}
._16_c01044{width:23.886090px;}
._c_c01044{width:28.620270px;}
._15_c01044{width:39.848700px;}
._5_c01044{width:515.743470px;}
.fc0_c01044{color:rgb(0,0,0);}
.fs2_c01044{font-size:41.844000px;}
.fs1_c01044{font-size:47.820000px;}
.fs3_c01044{font-size:59.778000px;}
.fs0_c01044{font-size:71.730000px;}
.y0_c01044{bottom:0.000000px;}
.y2b_c01044{bottom:111.162000px;}
.y2a_c01044{bottom:129.094500px;}
.y29_c01044{bottom:147.027000px;}
.y28_c01044{bottom:164.961000px;}
.y27_c01044{bottom:170.383500px;}
.y26_c01044{bottom:184.495500px;}
.y25_c01044{bottom:207.852000px;}
.y24_c01044{bottom:225.784500px;}
.y23_c01044{bottom:238.294500px;}
.y22_c01044{bottom:261.649500px;}
.y21_c01044{bottom:288.406500px;}
.y20_c01044{bottom:315.297000px;}
.y1f_c01044{bottom:342.187500px;}
.y1e_c01044{bottom:369.078000px;}
.y1d_c01044{bottom:395.970000px;}
.y1c_c01044{bottom:422.860500px;}
.y1b_c01044{bottom:449.751000px;}
.y1a_c01044{bottom:476.641500px;}
.y19_c01044{bottom:503.533500px;}
.y18_c01044{bottom:530.424000px;}
.y17_c01044{bottom:557.314500px;}
.y16_c01044{bottom:561.847500px;}
.y15_c01044{bottom:584.205000px;}
.y14_c01044{bottom:611.095500px;}
.y13_c01044{bottom:637.987500px;}
.y12_c01044{bottom:664.878000px;}
.y11_c01044{bottom:691.768500px;}
.y10_c01044{bottom:718.659000px;}
.yf_c01044{bottom:745.551000px;}
.ye_c01044{bottom:772.441500px;}
.yd_c01044{bottom:799.332000px;}
.yc_c01044{bottom:826.222500px;}
.yb_c01044{bottom:853.114500px;}
.ya_c01044{bottom:880.005000px;}
.y9_c01044{bottom:906.895500px;}
.y8_c01044{bottom:933.786000px;}
.y7_c01044{bottom:960.678000px;}
.y6_c01044{bottom:987.568500px;}
.y5_c01044{bottom:1014.459000px;}
.y4_c01044{bottom:1041.349500px;}
.y3_c01044{bottom:1068.240000px;}
.y2_c01044{bottom:1095.132000px;}
.y1_c01044{bottom:1162.084500px;}
.h6_c01044{height:28.286544px;}
.h8_c01044{height:38.251500px;}
.h7_c01044{height:44.833500px;}
.h2_c01044{height:53.797500px;}
.h4_c01044{height:58.354320px;}
.h3_c01044{height:58.360320px;}
.h5_c01044{height:71.929500px;}
.h1_c01044{height:1263.750000px;}
.h0_c01044{height:1264.110000px;}
.w0_c01044{width:893.869500px;}
.w1_c01044{width:894.000000px;}
.x0_c01044{left:0.000000px;}
.x1_c01044{left:127.558500px;}
.x4_c01044{left:129.750000px;}
.x5_c01044{left:147.754500px;}
.x2_c01044{left:159.838500px;}
.x6_c01044{left:268.060500px;}
.x3_c01044{left:662.724000px;}
@media print{
.v3_c01044{vertical-align:-19.280000pt;}
.v0_c01044{vertical-align:0.000000pt;}
.v4_c01044{vertical-align:13.429333pt;}
.v2_c01044{vertical-align:16.117333pt;}
.v1_c01044{vertical-align:23.141333pt;}
.ls5_c01044{letter-spacing:0.000000pt;}
.ls2_c01044{letter-spacing:2.666293pt;}
.ls3_c01044{letter-spacing:2.670901pt;}
.ls4_c01044{letter-spacing:21.828235pt;}
.ls1_c01044{letter-spacing:22.868960pt;}
.ls0_c01044{letter-spacing:30.095627pt;}
.ws1_c01044{word-spacing:-0.063760pt;}
.ws30_c01044{word-spacing:-0.053136pt;}
.ws31_c01044{word-spacing:0.000000pt;}
.ws1f_c01044{word-spacing:13.835920pt;}
.ws2b_c01044{word-spacing:15.409440pt;}
.wsf_c01044{word-spacing:15.493680pt;}
.ws20_c01044{word-spacing:16.768880pt;}
.ws2c_c01044{word-spacing:16.844112pt;}
.ws2e_c01044{word-spacing:17.269200pt;}
.wse_c01044{word-spacing:17.406480pt;}
.ws25_c01044{word-spacing:17.641152pt;}
.ws6_c01044{word-spacing:18.554160pt;}
.ws2d_c01044{word-spacing:18.597600pt;}
.ws2a_c01044{word-spacing:18.916416pt;}
.ws26_c01044{word-spacing:18.969552pt;}
.ws27_c01044{word-spacing:19.075824pt;}
.ws28_c01044{word-spacing:19.075915pt;}
.ws1d_c01044{word-spacing:19.446800pt;}
.ws1c_c01044{word-spacing:19.574320pt;}
.ws21_c01044{word-spacing:19.829360pt;}
.wsa_c01044{word-spacing:20.148160pt;}
.ws29_c01044{word-spacing:20.297952pt;}
.ws14_c01044{word-spacing:20.466960pt;}
.ws16_c01044{word-spacing:20.722000pt;}
.wsc_c01044{word-spacing:20.785760pt;}
.ws2f_c01044{word-spacing:21.466944pt;}
.ws9_c01044{word-spacing:21.678400pt;}
.ws12_c01044{word-spacing:22.252240pt;}
.ws10_c01044{word-spacing:22.782533pt;}
.ws1a_c01044{word-spacing:23.017360pt;}
.ws1b_c01044{word-spacing:23.081120pt;}
.ws0_c01044{word-spacing:23.846240pt;}
.ws15_c01044{word-spacing:23.910000pt;}
.ws11_c01044{word-spacing:24.101280pt;}
.ws1e_c01044{word-spacing:24.292560pt;}
.wsb_c01044{word-spacing:25.440240pt;}
.ws2_c01044{word-spacing:25.950320pt;}
.ws13_c01044{word-spacing:26.014080pt;}
.ws22_c01044{word-spacing:26.355456pt;}
.ws24_c01044{word-spacing:26.408592pt;}
.wsd_c01044{word-spacing:26.779200pt;}
.ws23_c01044{word-spacing:26.993088pt;}
.ws3_c01044{word-spacing:27.098000pt;}
.ws19_c01044{word-spacing:27.161760pt;}
.ws5_c01044{word-spacing:27.353040pt;}
.ws7_c01044{word-spacing:28.245680pt;}
.ws4_c01044{word-spacing:28.373200pt;}
.ws8_c01044{word-spacing:29.138320pt;}
.ws18_c01044{word-spacing:29.967200pt;}
.ws17_c01044{word-spacing:30.604800pt;}
._4_c01044{margin-left:-37.873440pt;}
._e_c01044{margin-left:-33.282720pt;}
._11_c01044{margin-left:-32.304213pt;}
._a_c01044{margin-left:-31.049467pt;}
._d_c01044{margin-left:-29.457120pt;}
._2_c01044{margin-left:-27.926880pt;}
._19_c01044{margin-left:-26.269835pt;}
._9_c01044{margin-left:-24.292560pt;}
._1a_c01044{margin-left:-20.376203pt;}
._1_c01044{margin-left:-8.033760pt;}
._8_c01044{margin-left:-7.141120pt;}
._17_c01044{margin-left:-6.182027pt;}
._14_c01044{margin-left:-5.289387pt;}
._6_c01044{margin-left:-3.968800pt;}
._10_c01044{margin-left:-3.063173pt;}
._0_c01044{margin-left:-2.104080pt;}
._13_c01044{margin-left:-1.083920pt;}
._1b_c01044{width:0.919280pt;}
._3_c01044{width:1.849040pt;}
._12_c01044{width:3.570560pt;}
._7_c01044{width:5.353093pt;}
._b_c01044{width:6.335387pt;}
._f_c01044{width:17.087680pt;}
._18_c01044{width:19.638080pt;}
._16_c01044{width:21.232080pt;}
._c_c01044{width:25.440240pt;}
._15_c01044{width:35.421067pt;}
._5_c01044{width:458.438640pt;}
.fs2_c01044{font-size:37.194667pt;}
.fs1_c01044{font-size:42.506667pt;}
.fs3_c01044{font-size:53.136000pt;}
.fs0_c01044{font-size:63.760000pt;}
.y0_c01044{bottom:0.000000pt;}
.y2b_c01044{bottom:98.810667pt;}
.y2a_c01044{bottom:114.750667pt;}
.y29_c01044{bottom:130.690667pt;}
.y28_c01044{bottom:146.632000pt;}
.y27_c01044{bottom:151.452000pt;}
.y26_c01044{bottom:163.996000pt;}
.y25_c01044{bottom:184.757333pt;}
.y24_c01044{bottom:200.697333pt;}
.y23_c01044{bottom:211.817333pt;}
.y22_c01044{bottom:232.577333pt;}
.y21_c01044{bottom:256.361333pt;}
.y20_c01044{bottom:280.264000pt;}
.y1f_c01044{bottom:304.166667pt;}
.y1e_c01044{bottom:328.069333pt;}
.y1d_c01044{bottom:351.973333pt;}
.y1c_c01044{bottom:375.876000pt;}
.y1b_c01044{bottom:399.778667pt;}
.y1a_c01044{bottom:423.681333pt;}
.y19_c01044{bottom:447.585333pt;}
.y18_c01044{bottom:471.488000pt;}
.y17_c01044{bottom:495.390667pt;}
.y16_c01044{bottom:499.420000pt;}
.y15_c01044{bottom:519.293333pt;}
.y14_c01044{bottom:543.196000pt;}
.y13_c01044{bottom:567.100000pt;}
.y12_c01044{bottom:591.002667pt;}
.y11_c01044{bottom:614.905333pt;}
.y10_c01044{bottom:638.808000pt;}
.yf_c01044{bottom:662.712000pt;}
.ye_c01044{bottom:686.614667pt;}
.yd_c01044{bottom:710.517333pt;}
.yc_c01044{bottom:734.420000pt;}
.yb_c01044{bottom:758.324000pt;}
.ya_c01044{bottom:782.226667pt;}
.y9_c01044{bottom:806.129333pt;}
.y8_c01044{bottom:830.032000pt;}
.y7_c01044{bottom:853.936000pt;}
.y6_c01044{bottom:877.838667pt;}
.y5_c01044{bottom:901.741333pt;}
.y4_c01044{bottom:925.644000pt;}
.y3_c01044{bottom:949.546667pt;}
.y2_c01044{bottom:973.450667pt;}
.y1_c01044{bottom:1032.964000pt;}
.h6_c01044{height:25.143595pt;}
.h8_c01044{height:34.001333pt;}
.h7_c01044{height:39.852000pt;}
.h2_c01044{height:47.820000pt;}
.h4_c01044{height:51.870507pt;}
.h3_c01044{height:51.875840pt;}
.h5_c01044{height:63.937333pt;}
.h1_c01044{height:1123.333333pt;}
.h0_c01044{height:1123.653333pt;}
.w0_c01044{width:794.550667pt;}
.w1_c01044{width:794.666667pt;}
.x0_c01044{left:0.000000pt;}
.x1_c01044{left:113.385333pt;}
.x4_c01044{left:115.333333pt;}
.x5_c01044{left:131.337333pt;}
.x2_c01044{left:142.078667pt;}
.x6_c01044{left:238.276000pt;}
.x3_c01044{left:589.088000pt;}
}





/* 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_ec9db606920c9f3ef1a4cb14.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.001000;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_6945df8c3c48f7ac9454539c.woff2')format("woff");}.ff2_c01045{font-family:ff2_c01045;line-height:1.001000;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_92e25418a3c543feeec99d00.woff2')format("woff");}.ff3_c01045{font-family:ff3_c01045;line-height:0.697000;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_c01045;src:url('chunks/assets/font_86734dec3b9e9f83b189151a.woff2')format("woff");}.ff4_c01045{font-family:ff4_c01045;line-height:0.696000;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_c01045;src:url('chunks/assets/font_c453f6358c66d6915af40324.woff2')format("woff");}.ff5_c01045{font-family:ff5_c01045;line-height:1.000000;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_c01045;src:url('chunks/assets/font_523932f88b31bd171b1f9bff.woff2')format("woff");}.ff6_c01045{font-family:ff6_c01045;line-height:1.000000;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);}
.v2_c01045{vertical-align:-21.690000px;}
.v0_c01045{vertical-align:0.000000px;}
.v1_c01045{vertical-align:26.028000px;}
.ls0_c01045{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01045{word-spacing:-0.071730px;}
.ws11_c01045{word-spacing:-0.047820px;}
.ws1a_c01045{word-spacing:-0.041844px;}
.ws25_c01045{word-spacing:0.000000px;}
.ws23_c01045{word-spacing:13.390272px;}
.ws22_c01045{word-spacing:15.303168px;}
.ws21_c01045{word-spacing:15.960726px;}
.ws7_c01045{word-spacing:17.215200px;}
.ws13_c01045{word-spacing:17.502120px;}
.ws20_c01045{word-spacing:17.574732px;}
.wsc_c01045{word-spacing:18.291150px;}
.ws24_c01045{word-spacing:19.188738px;}
.ws1b_c01045{word-spacing:19.846296px;}
.wsb_c01045{word-spacing:19.940940px;}
.wsd_c01045{word-spacing:20.371320px;}
.ws8_c01045{word-spacing:20.586510px;}
.ws1c_c01045{word-spacing:21.280968px;}
.ws1e_c01045{word-spacing:22.536306px;}
.ws2_c01045{word-spacing:23.312250px;}
.ws10_c01045{word-spacing:23.957820px;}
.ws15_c01045{word-spacing:24.029550px;}
.ws6_c01045{word-spacing:24.603390px;}
.ws19_c01045{word-spacing:24.746850px;}
.wsf_c01045{word-spacing:25.248960px;}
.ws1d_c01045{word-spacing:25.465428px;}
.ws12_c01045{word-spacing:25.679340px;}
.ws1f_c01045{word-spacing:25.704540px;}
.ws4_c01045{word-spacing:25.822800px;}
.wse_c01045{word-spacing:25.894530px;}
.ws0_c01045{word-spacing:26.827020px;}
.wsa_c01045{word-spacing:27.400860px;}
.ws5_c01045{word-spacing:27.472590px;}
.ws14_c01045{word-spacing:29.194110px;}
.ws16_c01045{word-spacing:30.198330px;}
.ws18_c01045{word-spacing:31.561200px;}
.ws9_c01045{word-spacing:32.135040px;}
.ws17_c01045{word-spacing:32.350230px;}
.ws3_c01045{word-spacing:34.860780px;}
._4_c01045{margin-left:-42.607620px;}
._a_c01045{margin-left:-37.227870px;}
._6_c01045{margin-left:-35.147700px;}
._8_c01045{margin-left:-32.780610px;}
._2_c01045{margin-left:-31.417740px;}
._14_c01045{margin-left:-30.367710px;}
._13_c01045{margin-left:-29.338992px;}
._c_c01045{margin-left:-27.329130px;}
._12_c01045{margin-left:-23.455854px;}
._1_c01045{margin-left:-9.037980px;}
._b_c01045{margin-left:-7.101270px;}
._f_c01045{margin-left:-5.881860px;}
._7_c01045{margin-left:-3.945150px;}
._0_c01045{margin-left:-2.367090px;}
._d_c01045{margin-left:-1.004220px;}
._10_c01045{width:1.004220px;}
._3_c01045{width:2.080170px;}
._e_c01045{width:3.267480px;}
._15_c01045{width:18.190290px;}
._11_c01045{width:22.346808px;}
._9_c01045{width:25.894530px;}
._5_c01045{width:515.743470px;}
.fc0_c01045{color:rgb(0,0,0);}
.fs2_c01045{font-size:41.844000px;}
.fs1_c01045{font-size:47.820000px;}
.fs3_c01045{font-size:59.778000px;}
.fs0_c01045{font-size:71.730000px;}
.y0_c01045{bottom:0.000000px;}
.y28_c01045{bottom:109.213500px;}
.y27_c01045{bottom:121.722000px;}
.y26_c01045{bottom:139.656000px;}
.y25_c01045{bottom:157.588500px;}
.y24_c01045{bottom:175.521000px;}
.y23_c01045{bottom:193.453500px;}
.y22_c01045{bottom:211.386000px;}
.y21_c01045{bottom:234.742500px;}
.y20_c01045{bottom:252.675000px;}
.y1f_c01045{bottom:279.432000px;}
.y1e_c01045{bottom:306.322500px;}
.y1d_c01045{bottom:333.213000px;}
.y1c_c01045{bottom:360.103500px;}
.y1b_c01045{bottom:386.994000px;}
.y1a_c01045{bottom:413.886000px;}
.y19_c01045{bottom:440.776500px;}
.y18_c01045{bottom:467.667000px;}
.y17_c01045{bottom:494.557500px;}
.y16_c01045{bottom:521.449500px;}
.y15_c01045{bottom:548.340000px;}
.y14_c01045{bottom:575.230500px;}
.y13_c01045{bottom:602.121000px;}
.y12_c01045{bottom:629.013000px;}
.y11_c01045{bottom:655.903500px;}
.y10_c01045{bottom:682.794000px;}
.yf_c01045{bottom:709.684500px;}
.ye_c01045{bottom:736.576500px;}
.yd_c01045{bottom:763.467000px;}
.yc_c01045{bottom:790.357500px;}
.yb_c01045{bottom:817.248000px;}
.ya_c01045{bottom:844.138500px;}
.y9_c01045{bottom:871.030500px;}
.y8_c01045{bottom:897.921000px;}
.y7_c01045{bottom:924.811500px;}
.y6_c01045{bottom:951.702000px;}
.y5_c01045{bottom:1014.459000px;}
.y4_c01045{bottom:1041.349500px;}
.y3_c01045{bottom:1068.240000px;}
.y2_c01045{bottom:1095.132000px;}
.y1_c01045{bottom:1162.084500px;}
.h5_c01045{height:28.286544px;}
.h6_c01045{height:44.833500px;}
.h2_c01045{height:53.797500px;}
.h3_c01045{height:58.354320px;}
.h4_c01045{height:58.360320px;}
.h1_c01045{height:1263.750000px;}
.h0_c01045{height:1264.110000px;}
.w0_c01045{width:893.869500px;}
.w1_c01045{width:894.000000px;}
.x0_c01045{left:0.000000px;}
.x1_c01045{left:127.558500px;}
.x3_c01045{left:141.798000px;}
.x2_c01045{left:159.838500px;}
@media print{
.v2_c01045{vertical-align:-19.280000pt;}
.v0_c01045{vertical-align:0.000000pt;}
.v1_c01045{vertical-align:23.136000pt;}
.ls0_c01045{letter-spacing:0.000000pt;}
.ws1_c01045{word-spacing:-0.063760pt;}
.ws11_c01045{word-spacing:-0.042507pt;}
.ws1a_c01045{word-spacing:-0.037195pt;}
.ws25_c01045{word-spacing:0.000000pt;}
.ws23_c01045{word-spacing:11.902464pt;}
.ws22_c01045{word-spacing:13.602816pt;}
.ws21_c01045{word-spacing:14.187312pt;}
.ws7_c01045{word-spacing:15.302400pt;}
.ws13_c01045{word-spacing:15.557440pt;}
.ws20_c01045{word-spacing:15.621984pt;}
.wsc_c01045{word-spacing:16.258800pt;}
.ws24_c01045{word-spacing:17.056656pt;}
.ws1b_c01045{word-spacing:17.641152pt;}
.wsb_c01045{word-spacing:17.725280pt;}
.wsd_c01045{word-spacing:18.107840pt;}
.ws8_c01045{word-spacing:18.299120pt;}
.ws1c_c01045{word-spacing:18.916416pt;}
.ws1e_c01045{word-spacing:20.032272pt;}
.ws2_c01045{word-spacing:20.722000pt;}
.ws10_c01045{word-spacing:21.295840pt;}
.ws15_c01045{word-spacing:21.359600pt;}
.ws6_c01045{word-spacing:21.869680pt;}
.ws19_c01045{word-spacing:21.997200pt;}
.wsf_c01045{word-spacing:22.443520pt;}
.ws1d_c01045{word-spacing:22.635936pt;}
.ws12_c01045{word-spacing:22.826080pt;}
.ws1f_c01045{word-spacing:22.848480pt;}
.ws4_c01045{word-spacing:22.953600pt;}
.wse_c01045{word-spacing:23.017360pt;}
.ws0_c01045{word-spacing:23.846240pt;}
.wsa_c01045{word-spacing:24.356320pt;}
.ws5_c01045{word-spacing:24.420080pt;}
.ws14_c01045{word-spacing:25.950320pt;}
.ws16_c01045{word-spacing:26.842960pt;}
.ws18_c01045{word-spacing:28.054400pt;}
.ws9_c01045{word-spacing:28.564480pt;}
.ws17_c01045{word-spacing:28.755760pt;}
.ws3_c01045{word-spacing:30.987360pt;}
._4_c01045{margin-left:-37.873440pt;}
._a_c01045{margin-left:-33.091440pt;}
._6_c01045{margin-left:-31.242400pt;}
._8_c01045{margin-left:-29.138320pt;}
._2_c01045{margin-left:-27.926880pt;}
._14_c01045{margin-left:-26.993520pt;}
._13_c01045{margin-left:-26.079104pt;}
._c_c01045{margin-left:-24.292560pt;}
._12_c01045{margin-left:-20.849648pt;}
._1_c01045{margin-left:-8.033760pt;}
._b_c01045{margin-left:-6.312240pt;}
._f_c01045{margin-left:-5.228320pt;}
._7_c01045{margin-left:-3.506800pt;}
._0_c01045{margin-left:-2.104080pt;}
._d_c01045{margin-left:-0.892640pt;}
._10_c01045{width:0.892640pt;}
._3_c01045{width:1.849040pt;}
._e_c01045{width:2.904427pt;}
._15_c01045{width:16.169147pt;}
._11_c01045{width:19.863829pt;}
._9_c01045{width:23.017360pt;}
._5_c01045{width:458.438640pt;}
.fs2_c01045{font-size:37.194667pt;}
.fs1_c01045{font-size:42.506667pt;}
.fs3_c01045{font-size:53.136000pt;}
.fs0_c01045{font-size:63.760000pt;}
.y0_c01045{bottom:0.000000pt;}
.y28_c01045{bottom:97.078667pt;}
.y27_c01045{bottom:108.197333pt;}
.y26_c01045{bottom:124.138667pt;}
.y25_c01045{bottom:140.078667pt;}
.y24_c01045{bottom:156.018667pt;}
.y23_c01045{bottom:171.958667pt;}
.y22_c01045{bottom:187.898667pt;}
.y21_c01045{bottom:208.660000pt;}
.y20_c01045{bottom:224.600000pt;}
.y1f_c01045{bottom:248.384000pt;}
.y1e_c01045{bottom:272.286667pt;}
.y1d_c01045{bottom:296.189333pt;}
.y1c_c01045{bottom:320.092000pt;}
.y1b_c01045{bottom:343.994667pt;}
.y1a_c01045{bottom:367.898667pt;}
.y19_c01045{bottom:391.801333pt;}
.y18_c01045{bottom:415.704000pt;}
.y17_c01045{bottom:439.606667pt;}
.y16_c01045{bottom:463.510667pt;}
.y15_c01045{bottom:487.413333pt;}
.y14_c01045{bottom:511.316000pt;}
.y13_c01045{bottom:535.218667pt;}
.y12_c01045{bottom:559.122667pt;}
.y11_c01045{bottom:583.025333pt;}
.y10_c01045{bottom:606.928000pt;}
.yf_c01045{bottom:630.830667pt;}
.ye_c01045{bottom:654.734667pt;}
.yd_c01045{bottom:678.637333pt;}
.yc_c01045{bottom:702.540000pt;}
.yb_c01045{bottom:726.442667pt;}
.ya_c01045{bottom:750.345333pt;}
.y9_c01045{bottom:774.249333pt;}
.y8_c01045{bottom:798.152000pt;}
.y7_c01045{bottom:822.054667pt;}
.y6_c01045{bottom:845.957333pt;}
.y5_c01045{bottom:901.741333pt;}
.y4_c01045{bottom:925.644000pt;}
.y3_c01045{bottom:949.546667pt;}
.y2_c01045{bottom:973.450667pt;}
.y1_c01045{bottom:1032.964000pt;}
.h5_c01045{height:25.143595pt;}
.h6_c01045{height:39.852000pt;}
.h2_c01045{height:47.820000pt;}
.h3_c01045{height:51.870507pt;}
.h4_c01045{height:51.875840pt;}
.h1_c01045{height:1123.333333pt;}
.h0_c01045{height:1123.653333pt;}
.w0_c01045{width:794.550667pt;}
.w1_c01045{width:794.666667pt;}
.x0_c01045{left:0.000000pt;}
.x1_c01045{left:113.385333pt;}
.x3_c01045{left:126.042667pt;}
.x2_c01045{left:142.078667pt;}
}





/* 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_d05f4980e23df908cf6bf58a.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.001000;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_9c4a85362dc8685ae81357b0.woff2')format("woff");}.ff2_c01046{font-family:ff2_c01046;line-height:1.001000;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_206047fc4553f107529aa365.woff2')format("woff");}.ff3_c01046{font-family:ff3_c01046;line-height:1.001000;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_c01046;src:url('chunks/assets/font_3dd7c2e9c20d4fab9afb2488.woff2')format("woff");}.ff4_c01046{font-family:ff4_c01046;line-height:0.697000;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_c01046;src:url('chunks/assets/font_3e925faf12a70fb6f4c6700f.woff2')format("woff");}.ff5_c01046{font-family:ff5_c01046;line-height:1.000000;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_c01046;src:url('chunks/assets/font_88c181104d5735962f629cdd.woff2')format("woff");}.ff6_c01046{font-family:ff6_c01046;line-height:0.696000;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_c01046;src:url('chunks/assets/font_3ccb61c94a36f348d46d40dc.woff2')format("woff");}.ff7_c01046{font-family:ff7_c01046;line-height:1.000000;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);}
.v3_c01046{vertical-align:-21.696000px;}
.v0_c01046{vertical-align:0.000000px;}
.v2_c01046{vertical-align:15.108000px;}
.v4_c01046{vertical-align:21.696000px;}
.v1_c01046{vertical-align:26.034000px;}
.ls1_c01046{letter-spacing:0.000000px;}
.ls0_c01046{letter-spacing:23.632764px;}
.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;}
}
.ws1_c01046{word-spacing:-0.071730px;}
.ws1f_c01046{word-spacing:-0.059778px;}
.ws13_c01046{word-spacing:-0.047820px;}
.ws1b_c01046{word-spacing:-0.041844px;}
.ws24_c01046{word-spacing:0.000000px;}
.ws19_c01046{word-spacing:18.471402px;}
.ws11_c01046{word-spacing:19.654020px;}
.ws1a_c01046{word-spacing:19.846296px;}
.ws20_c01046{word-spacing:19.906074px;}
.ws1c_c01046{word-spacing:20.539338px;}
.ws1e_c01046{word-spacing:20.563632px;}
.ws21_c01046{word-spacing:21.280968px;}
.wsd_c01046{word-spacing:21.877650px;}
.ws1d_c01046{word-spacing:21.938526px;}
.ws8_c01046{word-spacing:22.666680px;}
.ws5_c01046{word-spacing:23.312250px;}
.ws10_c01046{word-spacing:23.383980px;}
.wse_c01046{word-spacing:23.670900px;}
.ws15_c01046{word-spacing:24.029550px;}
.ws7_c01046{word-spacing:24.746850px;}
.ws9_c01046{word-spacing:24.890310px;}
.wsf_c01046{word-spacing:25.033770px;}
.ws2_c01046{word-spacing:25.822800px;}
.ws16_c01046{word-spacing:26.037990px;}
.wsb_c01046{word-spacing:26.109720px;}
.ws14_c01046{word-spacing:26.181450px;}
.ws3_c01046{word-spacing:26.540100px;}
.ws0_c01046{word-spacing:26.827020px;}
.wsc_c01046{word-spacing:27.759510px;}
.ws18_c01046{word-spacing:28.118160px;}
.wsa_c01046{word-spacing:29.409300px;}
.ws6_c01046{word-spacing:29.481030px;}
.ws17_c01046{word-spacing:30.054870px;}
.ws4_c01046{word-spacing:30.485250px;}
.ws12_c01046{word-spacing:31.274280px;}
.ws22_c01046{word-spacing:32.100786px;}
.ws23_c01046{word-spacing:32.579010px;}
._4_c01046{margin-left:-42.607620px;}
._9_c01046{margin-left:-37.299600px;}
._10_c01046{margin-left:-36.008460px;}
._c_c01046{margin-left:-34.789050px;}
._b_c01046{margin-left:-33.067530px;}
._2_c01046{margin-left:-31.417740px;}
._16_c01046{margin-left:-30.008016px;}
._f_c01046{margin-left:-28.835460px;}
._7_c01046{margin-left:-27.400860px;}
._18_c01046{margin-left:-24.824796px;}
._17_c01046{margin-left:-22.298112px;}
._1_c01046{margin-left:-9.037980px;}
._6_c01046{margin-left:-7.531650px;}
._12_c01046{margin-left:-5.881860px;}
._14_c01046{margin-left:-4.518990px;}
._8_c01046{margin-left:-3.443040px;}
._0_c01046{margin-left:-2.367090px;}
._a_c01046{margin-left:-1.291140px;}
._e_c01046{width:1.004220px;}
._3_c01046{width:2.080170px;}
._15_c01046{width:3.341820px;}
._11_c01046{width:4.530810px;}
._13_c01046{width:27.371220px;}
._d_c01046{width:30.596460px;}
._5_c01046{width:515.743470px;}
.fc0_c01046{color:rgb(0,0,0);}
.fs3_c01046{font-size:41.844000px;}
.fs1_c01046{font-size:47.820000px;}
.fs2_c01046{font-size:59.778000px;}
.fs0_c01046{font-size:71.730000px;}
.y0_c01046{bottom:0.000000px;}
.y26_c01046{bottom:106.662000px;}
.y25_c01046{bottom:130.018500px;}
.y24_c01046{bottom:142.528500px;}
.y23_c01046{bottom:165.883500px;}
.y22_c01046{bottom:178.393500px;}
.y21_c01046{bottom:201.750000px;}
.y20_c01046{bottom:214.258500px;}
.y1f_c01046{bottom:232.192500px;}
.y1e_c01046{bottom:265.974000px;}
.y1d_c01046{bottom:292.864500px;}
.y1c_c01046{bottom:319.755000px;}
.y1b_c01046{bottom:346.645500px;}
.y1a_c01046{bottom:373.537500px;}
.y19_c01046{bottom:419.854500px;}
.y18_c01046{bottom:446.745000px;}
.y17_c01046{bottom:473.637000px;}
.y16_c01046{bottom:500.527500px;}
.y15_c01046{bottom:527.418000px;}
.y14_c01046{bottom:554.308500px;}
.y13_c01046{bottom:600.627000px;}
.y12_c01046{bottom:627.517500px;}
.y11_c01046{bottom:654.409500px;}
.y10_c01046{bottom:700.726500px;}
.yf_c01046{bottom:727.617000px;}
.ye_c01046{bottom:754.509000px;}
.yd_c01046{bottom:781.399500px;}
.yc_c01046{bottom:808.290000px;}
.yb_c01046{bottom:853.114500px;}
.ya_c01046{bottom:880.005000px;}
.y9_c01046{bottom:906.895500px;}
.y8_c01046{bottom:933.786000px;}
.y7_c01046{bottom:960.678000px;}
.y6_c01046{bottom:987.568500px;}
.y5_c01046{bottom:1014.459000px;}
.y4_c01046{bottom:1041.349500px;}
.y3_c01046{bottom:1068.240000px;}
.y2_c01046{bottom:1095.132000px;}
.y1_c01046{bottom:1162.084500px;}
.h7_c01046{height:28.286544px;}
.h6_c01046{height:44.833500px;}
.h2_c01046{height:53.797500px;}
.h4_c01046{height:58.354320px;}
.h3_c01046{height:58.360320px;}
.h5_c01046{height:59.941500px;}
.h1_c01046{height:1263.750000px;}
.h0_c01046{height:1264.110000px;}
.w0_c01046{width:893.869500px;}
.w1_c01046{width:894.000000px;}
.x0_c01046{left:0.000000px;}
.x1_c01046{left:127.558500px;}
.x6_c01046{left:141.798000px;}
.x2_c01046{left:159.838500px;}
.x4_c01046{left:171.456000px;}
.x3_c01046{left:197.794500px;}
.x5_c01046{left:516.054000px;}
@media print{
.v3_c01046{vertical-align:-19.285333pt;}
.v0_c01046{vertical-align:0.000000pt;}
.v2_c01046{vertical-align:13.429333pt;}
.v4_c01046{vertical-align:19.285333pt;}
.v1_c01046{vertical-align:23.141333pt;}
.ls1_c01046{letter-spacing:0.000000pt;}
.ls0_c01046{letter-spacing:21.006901pt;}
.ws1_c01046{word-spacing:-0.063760pt;}
.ws1f_c01046{word-spacing:-0.053136pt;}
.ws13_c01046{word-spacing:-0.042507pt;}
.ws1b_c01046{word-spacing:-0.037195pt;}
.ws24_c01046{word-spacing:0.000000pt;}
.ws19_c01046{word-spacing:16.419024pt;}
.ws11_c01046{word-spacing:17.470240pt;}
.ws1a_c01046{word-spacing:17.641152pt;}
.ws20_c01046{word-spacing:17.694288pt;}
.ws1c_c01046{word-spacing:18.257189pt;}
.ws1e_c01046{word-spacing:18.278784pt;}
.ws21_c01046{word-spacing:18.916416pt;}
.wsd_c01046{word-spacing:19.446800pt;}
.ws1d_c01046{word-spacing:19.500912pt;}
.ws8_c01046{word-spacing:20.148160pt;}
.ws5_c01046{word-spacing:20.722000pt;}
.ws10_c01046{word-spacing:20.785760pt;}
.wse_c01046{word-spacing:21.040800pt;}
.ws15_c01046{word-spacing:21.359600pt;}
.ws7_c01046{word-spacing:21.997200pt;}
.ws9_c01046{word-spacing:22.124720pt;}
.wsf_c01046{word-spacing:22.252240pt;}
.ws2_c01046{word-spacing:22.953600pt;}
.ws16_c01046{word-spacing:23.144880pt;}
.wsb_c01046{word-spacing:23.208640pt;}
.ws14_c01046{word-spacing:23.272400pt;}
.ws3_c01046{word-spacing:23.591200pt;}
.ws0_c01046{word-spacing:23.846240pt;}
.wsc_c01046{word-spacing:24.675120pt;}
.ws18_c01046{word-spacing:24.993920pt;}
.wsa_c01046{word-spacing:26.141600pt;}
.ws6_c01046{word-spacing:26.205360pt;}
.ws17_c01046{word-spacing:26.715440pt;}
.ws4_c01046{word-spacing:27.098000pt;}
.ws12_c01046{word-spacing:27.799360pt;}
.ws22_c01046{word-spacing:28.534032pt;}
.ws23_c01046{word-spacing:28.959120pt;}
._4_c01046{margin-left:-37.873440pt;}
._9_c01046{margin-left:-33.155200pt;}
._10_c01046{margin-left:-32.007520pt;}
._c_c01046{margin-left:-30.923600pt;}
._b_c01046{margin-left:-29.393360pt;}
._2_c01046{margin-left:-27.926880pt;}
._16_c01046{margin-left:-26.673792pt;}
._f_c01046{margin-left:-25.631520pt;}
._7_c01046{margin-left:-24.356320pt;}
._18_c01046{margin-left:-22.066485pt;}
._17_c01046{margin-left:-19.820544pt;}
._1_c01046{margin-left:-8.033760pt;}
._6_c01046{margin-left:-6.694800pt;}
._12_c01046{margin-left:-5.228320pt;}
._14_c01046{margin-left:-4.016880pt;}
._8_c01046{margin-left:-3.060480pt;}
._0_c01046{margin-left:-2.104080pt;}
._a_c01046{margin-left:-1.147680pt;}
._e_c01046{width:0.892640pt;}
._3_c01046{width:1.849040pt;}
._15_c01046{width:2.970507pt;}
._11_c01046{width:4.027387pt;}
._13_c01046{width:24.329973pt;}
._d_c01046{width:27.196853pt;}
._5_c01046{width:458.438640pt;}
.fs3_c01046{font-size:37.194667pt;}
.fs1_c01046{font-size:42.506667pt;}
.fs2_c01046{font-size:53.136000pt;}
.fs0_c01046{font-size:63.760000pt;}
.y0_c01046{bottom:0.000000pt;}
.y26_c01046{bottom:94.810667pt;}
.y25_c01046{bottom:115.572000pt;}
.y24_c01046{bottom:126.692000pt;}
.y23_c01046{bottom:147.452000pt;}
.y22_c01046{bottom:158.572000pt;}
.y21_c01046{bottom:179.333333pt;}
.y20_c01046{bottom:190.452000pt;}
.y1f_c01046{bottom:206.393333pt;}
.y1e_c01046{bottom:236.421333pt;}
.y1d_c01046{bottom:260.324000pt;}
.y1c_c01046{bottom:284.226667pt;}
.y1b_c01046{bottom:308.129333pt;}
.y1a_c01046{bottom:332.033333pt;}
.y19_c01046{bottom:373.204000pt;}
.y18_c01046{bottom:397.106667pt;}
.y17_c01046{bottom:421.010667pt;}
.y16_c01046{bottom:444.913333pt;}
.y15_c01046{bottom:468.816000pt;}
.y14_c01046{bottom:492.718667pt;}
.y13_c01046{bottom:533.890667pt;}
.y12_c01046{bottom:557.793333pt;}
.y11_c01046{bottom:581.697333pt;}
.y10_c01046{bottom:622.868000pt;}
.yf_c01046{bottom:646.770667pt;}
.ye_c01046{bottom:670.674667pt;}
.yd_c01046{bottom:694.577333pt;}
.yc_c01046{bottom:718.480000pt;}
.yb_c01046{bottom:758.324000pt;}
.ya_c01046{bottom:782.226667pt;}
.y9_c01046{bottom:806.129333pt;}
.y8_c01046{bottom:830.032000pt;}
.y7_c01046{bottom:853.936000pt;}
.y6_c01046{bottom:877.838667pt;}
.y5_c01046{bottom:901.741333pt;}
.y4_c01046{bottom:925.644000pt;}
.y3_c01046{bottom:949.546667pt;}
.y2_c01046{bottom:973.450667pt;}
.y1_c01046{bottom:1032.964000pt;}
.h7_c01046{height:25.143595pt;}
.h6_c01046{height:39.852000pt;}
.h2_c01046{height:47.820000pt;}
.h4_c01046{height:51.870507pt;}
.h3_c01046{height:51.875840pt;}
.h5_c01046{height:53.281333pt;}
.h1_c01046{height:1123.333333pt;}
.h0_c01046{height:1123.653333pt;}
.w0_c01046{width:794.550667pt;}
.w1_c01046{width:794.666667pt;}
.x0_c01046{left:0.000000pt;}
.x1_c01046{left:113.385333pt;}
.x6_c01046{left:126.042667pt;}
.x2_c01046{left:142.078667pt;}
.x4_c01046{left:152.405333pt;}
.x3_c01046{left:175.817333pt;}
.x5_c01046{left:458.714667pt;}
}





/* 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_f73bb26a0fdb3d1d609e7504.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.001000;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_ed1930d6e6ef24681ea19a06.woff2')format("woff");}.ff2_c01047{font-family:ff2_c01047;line-height:1.001000;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_c01047;src:url('chunks/assets/font_6e506bd6826794ee724ec59f.woff2')format("woff");}.ff3_c01047{font-family:ff3_c01047;line-height:1.001000;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_c01047;src:url('chunks/assets/font_51d7697f87f17381dca119fc.woff2')format("woff");}.ff4_c01047{font-family:ff4_c01047;line-height:0.697000;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_c01047;src:url('chunks/assets/font_1d69cd20035187a4947db52c.woff2')format("woff");}.ff5_c01047{font-family:ff5_c01047;line-height:0.696000;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_c01047;src:url('chunks/assets/font_607e323500c038e6b4e9ad32.woff2')format("woff");}.ff6_c01047{font-family:ff6_c01047;line-height:1.000000;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_c01047;src:url('chunks/assets/font_bfd42f2b9e295efe07461561.woff2')format("woff");}.ff7_c01047{font-family:ff7_c01047;line-height:1.000000;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);}
.v2_c01047{vertical-align:-21.690000px;}
.v0_c01047{vertical-align:0.000000px;}
.v3_c01047{vertical-align:21.696000px;}
.v1_c01047{vertical-align:26.028000px;}
.ls1_c01047{letter-spacing:0.000000px;}
.ls0_c01047{letter-spacing:22.930764px;}
.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;}
}
.ws1_c01047{word-spacing:-0.071730px;}
.ws2b_c01047{word-spacing:-0.059778px;}
.ws15_c01047{word-spacing:-0.047820px;}
.ws25_c01047{word-spacing:-0.041844px;}
.ws31_c01047{word-spacing:0.000000px;}
.ws2_c01047{word-spacing:15.637140px;}
.ws2e_c01047{word-spacing:16.379172px;}
.ws9_c01047{word-spacing:17.789040px;}
.ws6_c01047{word-spacing:17.799780px;}
.ws2f_c01047{word-spacing:18.052956px;}
.ws20_c01047{word-spacing:18.578070px;}
.ws26_c01047{word-spacing:18.770292px;}
.wsc_c01047{word-spacing:18.864990px;}
.ws14_c01047{word-spacing:19.080180px;}
.ws2c_c01047{word-spacing:19.846080px;}
.ws28_c01047{word-spacing:19.846296px;}
.ws2a_c01047{word-spacing:19.880148px;}
.ws7_c01047{word-spacing:19.940940px;}
.ws4_c01047{word-spacing:20.012670px;}
.ws27_c01047{word-spacing:20.324520px;}
.ws8_c01047{word-spacing:20.843340px;}
.ws29_c01047{word-spacing:21.101634px;}
.ws2d_c01047{word-spacing:21.280968px;}
.ws30_c01047{word-spacing:21.340746px;}
.ws3_c01047{word-spacing:22.164570px;}
.wsa_c01047{word-spacing:23.312250px;}
.ws10_c01047{word-spacing:23.383980px;}
.ws17_c01047{word-spacing:25.033770px;}
.ws13_c01047{word-spacing:26.253180px;}
.ws1e_c01047{word-spacing:26.283780px;}
.ws0_c01047{word-spacing:26.827020px;}
.ws1b_c01047{word-spacing:26.970480px;}
.ws5_c01047{word-spacing:27.329130px;}
.ws1f_c01047{word-spacing:27.759510px;}
.ws12_c01047{word-spacing:28.333350px;}
.wsb_c01047{word-spacing:28.405080px;}
.wsf_c01047{word-spacing:28.548540px;}
.ws19_c01047{word-spacing:29.122380px;}
.ws1c_c01047{word-spacing:29.194110px;}
.wse_c01047{word-spacing:29.839680px;}
.ws23_c01047{word-spacing:30.270990px;}
.ws11_c01047{word-spacing:31.130820px;}
.ws24_c01047{word-spacing:31.417740px;}
.ws18_c01047{word-spacing:31.704660px;}
.ws1d_c01047{word-spacing:33.997530px;}
.ws1a_c01047{word-spacing:34.860780px;}
.ws16_c01047{word-spacing:34.932510px;}
.wsd_c01047{word-spacing:35.075970px;}
.ws22_c01047{word-spacing:36.438840px;}
.ws21_c01047{word-spacing:37.084410px;}
._4_c01047{margin-left:-42.607620px;}
._d_c01047{margin-left:-35.865000px;}
._8_c01047{margin-left:-34.860780px;}
._c_c01047{margin-left:-32.493690px;}
._2_c01047{margin-left:-31.417740px;}
._16_c01047{margin-left:-29.889000px;}
._13_c01047{margin-left:-28.405080px;}
._7_c01047{margin-left:-27.329130px;}
._15_c01047{margin-left:-22.922322px;}
._1_c01047{margin-left:-9.037980px;}
._6_c01047{margin-left:-7.818570px;}
._f_c01047{margin-left:-6.025320px;}
._17_c01047{margin-left:-4.896840px;}
._a_c01047{margin-left:-3.873420px;}
._0_c01047{margin-left:-2.367090px;}
._9_c01047{margin-left:-1.219410px;}
._12_c01047{width:1.008720px;}
._3_c01047{width:2.080170px;}
._b_c01047{width:4.491570px;}
._11_c01047{width:6.156480px;}
._10_c01047{width:10.759500px;}
._e_c01047{width:34.854060px;}
._14_c01047{width:42.709650px;}
._5_c01047{width:515.743470px;}
.fc0_c01047{color:rgb(0,0,0);}
.fs2_c01047{font-size:41.844000px;}
.fs1_c01047{font-size:47.820000px;}
.fs3_c01047{font-size:59.778000px;}
.fs0_c01047{font-size:71.730000px;}
.y0_c01047{bottom:0.000000px;}
.y27_c01047{bottom:93.442500px;}
.y26_c01047{bottom:116.797500px;}
.y25_c01047{bottom:134.731500px;}
.y24_c01047{bottom:147.240000px;}
.y23_c01047{bottom:170.596500px;}
.y22_c01047{bottom:183.106500px;}
.y21_c01047{bottom:206.461500px;}
.y20_c01047{bottom:232.501500px;}
.y1f_c01047{bottom:259.392000px;}
.y1e_c01047{bottom:302.842500px;}
.y1d_c01047{bottom:329.733000px;}
.y1c_c01047{bottom:373.183500px;}
.y1b_c01047{bottom:400.074000px;}
.y1a_c01047{bottom:426.964500px;}
.y19_c01047{bottom:453.855000px;}
.y18_c01047{bottom:480.747000px;}
.y17_c01047{bottom:507.637500px;}
.y16_c01047{bottom:534.528000px;}
.y15_c01047{bottom:577.978500px;}
.y14_c01047{bottom:604.869000px;}
.y13_c01047{bottom:648.319500px;}
.y12_c01047{bottom:675.210000px;}
.y11_c01047{bottom:702.100500px;}
.y10_c01047{bottom:728.991000px;}
.yf_c01047{bottom:772.441500px;}
.ye_c01047{bottom:776.974500px;}
.yd_c01047{bottom:799.332000px;}
.yc_c01047{bottom:826.222500px;}
.yb_c01047{bottom:853.114500px;}
.ya_c01047{bottom:880.005000px;}
.y9_c01047{bottom:906.895500px;}
.y8_c01047{bottom:933.786000px;}
.y7_c01047{bottom:960.678000px;}
.y6_c01047{bottom:987.568500px;}
.y5_c01047{bottom:1014.459000px;}
.y4_c01047{bottom:1041.349500px;}
.y3_c01047{bottom:1068.240000px;}
.y2_c01047{bottom:1095.132000px;}
.y1_c01047{bottom:1162.084500px;}
.h4_c01047{height:28.286544px;}
.h5_c01047{height:44.833500px;}
.h6_c01047{height:49.982544px;}
.h2_c01047{height:53.797500px;}
.h3_c01047{height:58.354320px;}
.h1_c01047{height:1263.750000px;}
.h0_c01047{height:1264.110000px;}
.w0_c01047{width:893.869500px;}
.w1_c01047{width:894.000000px;}
.x0_c01047{left:0.000000px;}
.x1_c01047{left:127.558500px;}
.x6_c01047{left:141.798000px;}
.x2_c01047{left:159.838500px;}
.x3_c01047{left:161.421000px;}
.x5_c01047{left:171.456000px;}
.x4_c01047{left:197.794500px;}
@media print{
.v2_c01047{vertical-align:-19.280000pt;}
.v0_c01047{vertical-align:0.000000pt;}
.v3_c01047{vertical-align:19.285333pt;}
.v1_c01047{vertical-align:23.136000pt;}
.ls1_c01047{letter-spacing:0.000000pt;}
.ls0_c01047{letter-spacing:20.382901pt;}
.ws1_c01047{word-spacing:-0.063760pt;}
.ws2b_c01047{word-spacing:-0.053136pt;}
.ws15_c01047{word-spacing:-0.042507pt;}
.ws25_c01047{word-spacing:-0.037195pt;}
.ws31_c01047{word-spacing:0.000000pt;}
.ws2_c01047{word-spacing:13.899680pt;}
.ws2e_c01047{word-spacing:14.559264pt;}
.ws9_c01047{word-spacing:15.812480pt;}
.ws6_c01047{word-spacing:15.822027pt;}
.ws2f_c01047{word-spacing:16.047072pt;}
.ws20_c01047{word-spacing:16.513840pt;}
.ws26_c01047{word-spacing:16.684704pt;}
.wsc_c01047{word-spacing:16.768880pt;}
.ws14_c01047{word-spacing:16.960160pt;}
.ws2c_c01047{word-spacing:17.640960pt;}
.ws28_c01047{word-spacing:17.641152pt;}
.ws2a_c01047{word-spacing:17.671243pt;}
.ws7_c01047{word-spacing:17.725280pt;}
.ws4_c01047{word-spacing:17.789040pt;}
.ws27_c01047{word-spacing:18.066240pt;}
.ws8_c01047{word-spacing:18.527413pt;}
.ws29_c01047{word-spacing:18.757008pt;}
.ws2d_c01047{word-spacing:18.916416pt;}
.ws30_c01047{word-spacing:18.969552pt;}
.ws3_c01047{word-spacing:19.701840pt;}
.wsa_c01047{word-spacing:20.722000pt;}
.ws10_c01047{word-spacing:20.785760pt;}
.ws17_c01047{word-spacing:22.252240pt;}
.ws13_c01047{word-spacing:23.336160pt;}
.ws1e_c01047{word-spacing:23.363360pt;}
.ws0_c01047{word-spacing:23.846240pt;}
.ws1b_c01047{word-spacing:23.973760pt;}
.ws5_c01047{word-spacing:24.292560pt;}
.ws1f_c01047{word-spacing:24.675120pt;}
.ws12_c01047{word-spacing:25.185200pt;}
.wsb_c01047{word-spacing:25.248960pt;}
.wsf_c01047{word-spacing:25.376480pt;}
.ws19_c01047{word-spacing:25.886560pt;}
.ws1c_c01047{word-spacing:25.950320pt;}
.wse_c01047{word-spacing:26.524160pt;}
.ws23_c01047{word-spacing:26.907547pt;}
.ws11_c01047{word-spacing:27.671840pt;}
.ws24_c01047{word-spacing:27.926880pt;}
.ws18_c01047{word-spacing:28.181920pt;}
.ws1d_c01047{word-spacing:30.220027pt;}
.ws1a_c01047{word-spacing:30.987360pt;}
.ws16_c01047{word-spacing:31.051120pt;}
.wsd_c01047{word-spacing:31.178640pt;}
.ws22_c01047{word-spacing:32.390080pt;}
.ws21_c01047{word-spacing:32.963920pt;}
._4_c01047{margin-left:-37.873440pt;}
._d_c01047{margin-left:-31.880000pt;}
._8_c01047{margin-left:-30.987360pt;}
._c_c01047{margin-left:-28.883280pt;}
._2_c01047{margin-left:-27.926880pt;}
._16_c01047{margin-left:-26.568000pt;}
._13_c01047{margin-left:-25.248960pt;}
._7_c01047{margin-left:-24.292560pt;}
._15_c01047{margin-left:-20.375397pt;}
._1_c01047{margin-left:-8.033760pt;}
._6_c01047{margin-left:-6.949840pt;}
._f_c01047{margin-left:-5.355840pt;}
._17_c01047{margin-left:-4.352747pt;}
._a_c01047{margin-left:-3.443040pt;}
._0_c01047{margin-left:-2.104080pt;}
._9_c01047{margin-left:-1.083920pt;}
._12_c01047{width:0.896640pt;}
._3_c01047{width:1.849040pt;}
._b_c01047{width:3.992507pt;}
._11_c01047{width:5.472427pt;}
._10_c01047{width:9.564000pt;}
._e_c01047{width:30.981387pt;}
._14_c01047{width:37.964133pt;}
._5_c01047{width:458.438640pt;}
.fs2_c01047{font-size:37.194667pt;}
.fs1_c01047{font-size:42.506667pt;}
.fs3_c01047{font-size:53.136000pt;}
.fs0_c01047{font-size:63.760000pt;}
.y0_c01047{bottom:0.000000pt;}
.y27_c01047{bottom:83.060000pt;}
.y26_c01047{bottom:103.820000pt;}
.y25_c01047{bottom:119.761333pt;}
.y24_c01047{bottom:130.880000pt;}
.y23_c01047{bottom:151.641333pt;}
.y22_c01047{bottom:162.761333pt;}
.y21_c01047{bottom:183.521333pt;}
.y20_c01047{bottom:206.668000pt;}
.y1f_c01047{bottom:230.570667pt;}
.y1e_c01047{bottom:269.193333pt;}
.y1d_c01047{bottom:293.096000pt;}
.y1c_c01047{bottom:331.718667pt;}
.y1b_c01047{bottom:355.621333pt;}
.y1a_c01047{bottom:379.524000pt;}
.y19_c01047{bottom:403.426667pt;}
.y18_c01047{bottom:427.330667pt;}
.y17_c01047{bottom:451.233333pt;}
.y16_c01047{bottom:475.136000pt;}
.y15_c01047{bottom:513.758667pt;}
.y14_c01047{bottom:537.661333pt;}
.y13_c01047{bottom:576.284000pt;}
.y12_c01047{bottom:600.186667pt;}
.y11_c01047{bottom:624.089333pt;}
.y10_c01047{bottom:647.992000pt;}
.yf_c01047{bottom:686.614667pt;}
.ye_c01047{bottom:690.644000pt;}
.yd_c01047{bottom:710.517333pt;}
.yc_c01047{bottom:734.420000pt;}
.yb_c01047{bottom:758.324000pt;}
.ya_c01047{bottom:782.226667pt;}
.y9_c01047{bottom:806.129333pt;}
.y8_c01047{bottom:830.032000pt;}
.y7_c01047{bottom:853.936000pt;}
.y6_c01047{bottom:877.838667pt;}
.y5_c01047{bottom:901.741333pt;}
.y4_c01047{bottom:925.644000pt;}
.y3_c01047{bottom:949.546667pt;}
.y2_c01047{bottom:973.450667pt;}
.y1_c01047{bottom:1032.964000pt;}
.h4_c01047{height:25.143595pt;}
.h5_c01047{height:39.852000pt;}
.h6_c01047{height:44.428928pt;}
.h2_c01047{height:47.820000pt;}
.h3_c01047{height:51.870507pt;}
.h1_c01047{height:1123.333333pt;}
.h0_c01047{height:1123.653333pt;}
.w0_c01047{width:794.550667pt;}
.w1_c01047{width:794.666667pt;}
.x0_c01047{left:0.000000pt;}
.x1_c01047{left:113.385333pt;}
.x6_c01047{left:126.042667pt;}
.x2_c01047{left:142.078667pt;}
.x3_c01047{left:143.485333pt;}
.x5_c01047{left:152.405333pt;}
.x4_c01047{left:175.817333pt;}
}





/* 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_7090b80cde5d111d4c88a7ce.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.001000;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_7fcd4acc057e3f49ec70e7f8.woff2')format("woff");}.ff2_c01048{font-family:ff2_c01048;line-height:1.001000;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_c01048;src:url('chunks/assets/font_f66df210cf4b2ff1530a06dc.woff2')format("woff");}.ff3_c01048{font-family:ff3_c01048;line-height:1.001000;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_c01048;src:url('chunks/assets/font_1680aaae9bbe2b49e18d6690.woff2')format("woff");}.ff4_c01048{font-family:ff4_c01048;line-height:0.697000;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_c01048;src:url('chunks/assets/font_e257d6387abc132c9ebe29e8.woff2')format("woff");}.ff5_c01048{font-family:ff5_c01048;line-height:0.696000;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_c01048;src:url('chunks/assets/font_2b5917d6229902fa45843874.woff2')format("woff");}.ff6_c01048{font-family:ff6_c01048;line-height:1.000000;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_c01048;src:url('chunks/assets/font_724e8246a0eb6683b3c94f21.woff2')format("woff");}.ff7_c01048{font-family:ff7_c01048;line-height:1.000000;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);}
.v3_c01048{vertical-align:-21.690000px;}
.v0_c01048{vertical-align:0.000000px;}
.v2_c01048{vertical-align:18.132000px;}
.v1_c01048{vertical-align:26.034000px;}
.ls0_c01048{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01048{word-spacing:-0.071730px;}
.ws5_c01048{word-spacing:-0.047820px;}
.ws21_c01048{word-spacing:-0.041844px;}
.ws2a_c01048{word-spacing:0.000000px;}
.ws28_c01048{word-spacing:14.047830px;}
.ws29_c01048{word-spacing:15.960726px;}
.ws23_c01048{word-spacing:16.199838px;}
.ws24_c01048{word-spacing:17.933400px;}
.ws22_c01048{word-spacing:17.993178px;}
.ws19_c01048{word-spacing:18.864990px;}
.ws13_c01048{word-spacing:19.367100px;}
.ws26_c01048{word-spacing:19.427850px;}
.ws27_c01048{word-spacing:19.846296px;}
.ws7_c01048{word-spacing:20.514780px;}
.ws16_c01048{word-spacing:20.873430px;}
.ws25_c01048{word-spacing:20.922300px;}
.ws1a_c01048{word-spacing:20.945160px;}
.ws15_c01048{word-spacing:21.519000px;}
.ws10_c01048{word-spacing:21.662460px;}
.ws20_c01048{word-spacing:22.594950px;}
.ws14_c01048{word-spacing:23.025330px;}
.ws3_c01048{word-spacing:23.312250px;}
.ws9_c01048{word-spacing:23.383980px;}
.ws2_c01048{word-spacing:23.455710px;}
.wsa_c01048{word-spacing:23.670900px;}
.ws1f_c01048{word-spacing:24.388200px;}
.ws1c_c01048{word-spacing:24.531660px;}
.ws4_c01048{word-spacing:25.033770px;}
.wsd_c01048{word-spacing:26.037990px;}
.ws18_c01048{word-spacing:26.324910px;}
.ws0_c01048{word-spacing:26.827020px;}
.ws6_c01048{word-spacing:26.970480px;}
.ws8_c01048{word-spacing:27.257400px;}
.wse_c01048{word-spacing:27.544320px;}
.ws1d_c01048{word-spacing:27.611340px;}
.ws1e_c01048{word-spacing:28.405080px;}
.ws1b_c01048{word-spacing:28.548540px;}
.wsf_c01048{word-spacing:28.907190px;}
.wsc_c01048{word-spacing:29.122380px;}
.ws17_c01048{word-spacing:29.552760px;}
.wsb_c01048{word-spacing:29.839680px;}
.ws12_c01048{word-spacing:31.632930px;}
.ws11_c01048{word-spacing:34.286940px;}
._4_c01048{margin-left:-42.607620px;}
._c_c01048{margin-left:-36.940950px;}
._8_c01048{margin-left:-35.865000px;}
._f_c01048{margin-left:-34.430400px;}
._11_c01048{margin-left:-33.067530px;}
._2_c01048{margin-left:-31.417740px;}
._17_c01048{margin-left:-30.083478px;}
._7_c01048{margin-left:-28.692000px;}
._e_c01048{margin-left:-27.185670px;}
._1a_c01048{margin-left:-24.449202px;}
._18_c01048{margin-left:-22.497618px;}
._1_c01048{margin-left:-9.037980px;}
._6_c01048{margin-left:-7.316460px;}
._19_c01048{margin-left:-6.097356px;}
._12_c01048{margin-left:-5.092830px;}
._9_c01048{margin-left:-3.586500px;}
._0_c01048{margin-left:-2.367090px;}
._10_c01048{margin-left:-1.075950px;}
._3_c01048{width:2.080170px;}
._a_c01048{width:3.586500px;}
._b_c01048{width:4.646280px;}
._16_c01048{width:20.729970px;}
._d_c01048{width:28.763730px;}
._15_c01048{width:30.413520px;}
._14_c01048{width:31.763610px;}
._13_c01048{width:36.642450px;}
._5_c01048{width:515.743470px;}
.fc0_c01048{color:rgb(0,0,0);}
.fs2_c01048{font-size:41.844000px;}
.fs1_c01048{font-size:47.820000px;}
.fs3_c01048{font-size:59.778000px;}
.fs0_c01048{font-size:71.730000px;}
.y0_c01048{bottom:0.000000px;}
.y28_c01048{bottom:93.442500px;}
.y27_c01048{bottom:116.797500px;}
.y26_c01048{bottom:129.307500px;}
.y25_c01048{bottom:147.240000px;}
.y24_c01048{bottom:165.172500px;}
.y23_c01048{bottom:188.529000px;}
.y22_c01048{bottom:212.710500px;}
.y21_c01048{bottom:239.601000px;}
.y20_c01048{bottom:266.493000px;}
.y1f_c01048{bottom:293.383500px;}
.y1e_c01048{bottom:320.274000px;}
.y1d_c01048{bottom:347.164500px;}
.y1c_c01048{bottom:374.056500px;}
.y1b_c01048{bottom:413.731500px;}
.y1a_c01048{bottom:440.622000px;}
.y19_c01048{bottom:467.512500px;}
.y18_c01048{bottom:494.403000px;}
.y17_c01048{bottom:521.293500px;}
.y16_c01048{bottom:548.185500px;}
.y15_c01048{bottom:575.076000px;}
.y14_c01048{bottom:601.966500px;}
.y13_c01048{bottom:628.857000px;}
.y12_c01048{bottom:655.749000px;}
.y11_c01048{bottom:682.639500px;}
.y10_c01048{bottom:709.530000px;}
.yf_c01048{bottom:736.420500px;}
.ye_c01048{bottom:763.312500px;}
.yd_c01048{bottom:790.203000px;}
.yc_c01048{bottom:817.093500px;}
.yb_c01048{bottom:843.984000px;}
.ya_c01048{bottom:870.874500px;}
.y9_c01048{bottom:897.766500px;}
.y8_c01048{bottom:924.657000px;}
.y7_c01048{bottom:951.547500px;}
.y6_c01048{bottom:978.438000px;}
.y5_c01048{bottom:1005.330000px;}
.y4_c01048{bottom:1041.349500px;}
.y3_c01048{bottom:1068.240000px;}
.y2_c01048{bottom:1095.132000px;}
.y1_c01048{bottom:1162.084500px;}
.h5_c01048{height:28.286544px;}
.h6_c01048{height:44.833500px;}
.h2_c01048{height:53.797500px;}
.h3_c01048{height:58.360320px;}
.h4_c01048{height:71.929500px;}
.h1_c01048{height:1263.750000px;}
.h0_c01048{height:1264.110000px;}
.w0_c01048{width:893.869500px;}
.w1_c01048{width:894.000000px;}
.x0_c01048{left:0.000000px;}
.x1_c01048{left:127.558500px;}
.x6_c01048{left:141.798000px;}
.x3_c01048{left:159.838500px;}
.x2_c01048{left:171.456000px;}
.x5_c01048{left:284.712000px;}
.x4_c01048{left:707.202000px;}
@media print{
.v3_c01048{vertical-align:-19.280000pt;}
.v0_c01048{vertical-align:0.000000pt;}
.v2_c01048{vertical-align:16.117333pt;}
.v1_c01048{vertical-align:23.141333pt;}
.ls0_c01048{letter-spacing:0.000000pt;}
.ws1_c01048{word-spacing:-0.063760pt;}
.ws5_c01048{word-spacing:-0.042507pt;}
.ws21_c01048{word-spacing:-0.037195pt;}
.ws2a_c01048{word-spacing:0.000000pt;}
.ws28_c01048{word-spacing:12.486960pt;}
.ws29_c01048{word-spacing:14.187312pt;}
.ws23_c01048{word-spacing:14.399856pt;}
.ws24_c01048{word-spacing:15.940800pt;}
.ws22_c01048{word-spacing:15.993936pt;}
.ws19_c01048{word-spacing:16.768880pt;}
.ws13_c01048{word-spacing:17.215200pt;}
.ws26_c01048{word-spacing:17.269200pt;}
.ws27_c01048{word-spacing:17.641152pt;}
.ws7_c01048{word-spacing:18.235360pt;}
.ws16_c01048{word-spacing:18.554160pt;}
.ws25_c01048{word-spacing:18.597600pt;}
.ws1a_c01048{word-spacing:18.617920pt;}
.ws15_c01048{word-spacing:19.128000pt;}
.ws10_c01048{word-spacing:19.255520pt;}
.ws20_c01048{word-spacing:20.084400pt;}
.ws14_c01048{word-spacing:20.466960pt;}
.ws3_c01048{word-spacing:20.722000pt;}
.ws9_c01048{word-spacing:20.785760pt;}
.ws2_c01048{word-spacing:20.849520pt;}
.wsa_c01048{word-spacing:21.040800pt;}
.ws1f_c01048{word-spacing:21.678400pt;}
.ws1c_c01048{word-spacing:21.805920pt;}
.ws4_c01048{word-spacing:22.252240pt;}
.wsd_c01048{word-spacing:23.144880pt;}
.ws18_c01048{word-spacing:23.399920pt;}
.ws0_c01048{word-spacing:23.846240pt;}
.ws6_c01048{word-spacing:23.973760pt;}
.ws8_c01048{word-spacing:24.228800pt;}
.wse_c01048{word-spacing:24.483840pt;}
.ws1d_c01048{word-spacing:24.543413pt;}
.ws1e_c01048{word-spacing:25.248960pt;}
.ws1b_c01048{word-spacing:25.376480pt;}
.wsf_c01048{word-spacing:25.695280pt;}
.wsc_c01048{word-spacing:25.886560pt;}
.ws17_c01048{word-spacing:26.269120pt;}
.wsb_c01048{word-spacing:26.524160pt;}
.ws12_c01048{word-spacing:28.118160pt;}
.ws11_c01048{word-spacing:30.477280pt;}
._4_c01048{margin-left:-37.873440pt;}
._c_c01048{margin-left:-32.836400pt;}
._8_c01048{margin-left:-31.880000pt;}
._f_c01048{margin-left:-30.604800pt;}
._11_c01048{margin-left:-29.393360pt;}
._2_c01048{margin-left:-27.926880pt;}
._17_c01048{margin-left:-26.740869pt;}
._7_c01048{margin-left:-25.504000pt;}
._e_c01048{margin-left:-24.165040pt;}
._1a_c01048{margin-left:-21.732624pt;}
._18_c01048{margin-left:-19.997883pt;}
._1_c01048{margin-left:-8.033760pt;}
._6_c01048{margin-left:-6.503520pt;}
._19_c01048{margin-left:-5.419872pt;}
._12_c01048{margin-left:-4.526960pt;}
._9_c01048{margin-left:-3.188000pt;}
._0_c01048{margin-left:-2.104080pt;}
._10_c01048{margin-left:-0.956400pt;}
._3_c01048{width:1.849040pt;}
._a_c01048{width:3.188000pt;}
._b_c01048{width:4.130027pt;}
._16_c01048{width:18.426640pt;}
._d_c01048{width:25.567760pt;}
._15_c01048{width:27.034240pt;}
._14_c01048{width:28.234320pt;}
._13_c01048{width:32.571067pt;}
._5_c01048{width:458.438640pt;}
.fs2_c01048{font-size:37.194667pt;}
.fs1_c01048{font-size:42.506667pt;}
.fs3_c01048{font-size:53.136000pt;}
.fs0_c01048{font-size:63.760000pt;}
.y0_c01048{bottom:0.000000pt;}
.y28_c01048{bottom:83.060000pt;}
.y27_c01048{bottom:103.820000pt;}
.y26_c01048{bottom:114.940000pt;}
.y25_c01048{bottom:130.880000pt;}
.y24_c01048{bottom:146.820000pt;}
.y23_c01048{bottom:167.581333pt;}
.y22_c01048{bottom:189.076000pt;}
.y21_c01048{bottom:212.978667pt;}
.y20_c01048{bottom:236.882667pt;}
.y1f_c01048{bottom:260.785333pt;}
.y1e_c01048{bottom:284.688000pt;}
.y1d_c01048{bottom:308.590667pt;}
.y1c_c01048{bottom:332.494667pt;}
.y1b_c01048{bottom:367.761333pt;}
.y1a_c01048{bottom:391.664000pt;}
.y19_c01048{bottom:415.566667pt;}
.y18_c01048{bottom:439.469333pt;}
.y17_c01048{bottom:463.372000pt;}
.y16_c01048{bottom:487.276000pt;}
.y15_c01048{bottom:511.178667pt;}
.y14_c01048{bottom:535.081333pt;}
.y13_c01048{bottom:558.984000pt;}
.y12_c01048{bottom:582.888000pt;}
.y11_c01048{bottom:606.790667pt;}
.y10_c01048{bottom:630.693333pt;}
.yf_c01048{bottom:654.596000pt;}
.ye_c01048{bottom:678.500000pt;}
.yd_c01048{bottom:702.402667pt;}
.yc_c01048{bottom:726.305333pt;}
.yb_c01048{bottom:750.208000pt;}
.ya_c01048{bottom:774.110667pt;}
.y9_c01048{bottom:798.014667pt;}
.y8_c01048{bottom:821.917333pt;}
.y7_c01048{bottom:845.820000pt;}
.y6_c01048{bottom:869.722667pt;}
.y5_c01048{bottom:893.626667pt;}
.y4_c01048{bottom:925.644000pt;}
.y3_c01048{bottom:949.546667pt;}
.y2_c01048{bottom:973.450667pt;}
.y1_c01048{bottom:1032.964000pt;}
.h5_c01048{height:25.143595pt;}
.h6_c01048{height:39.852000pt;}
.h2_c01048{height:47.820000pt;}
.h3_c01048{height:51.875840pt;}
.h4_c01048{height:63.937333pt;}
.h1_c01048{height:1123.333333pt;}
.h0_c01048{height:1123.653333pt;}
.w0_c01048{width:794.550667pt;}
.w1_c01048{width:794.666667pt;}
.x0_c01048{left:0.000000pt;}
.x1_c01048{left:113.385333pt;}
.x6_c01048{left:126.042667pt;}
.x3_c01048{left:142.078667pt;}
.x2_c01048{left:152.405333pt;}
.x5_c01048{left:253.077333pt;}
.x4_c01048{left:628.624000pt;}
}





/* 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_106f07c267041caf7af5aa0f.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:1.001000;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_3938941d6bdd79313f86b67f.woff2')format("woff");}.ff2_c01049{font-family:ff2_c01049;line-height:1.001000;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_81335bf593e60dc12a2a32f9.woff2')format("woff");}.ff3_c01049{font-family:ff3_c01049;line-height:0.697000;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_c01049;src:url('chunks/assets/font_e39ef51f3182ca0afc88325b.woff2')format("woff");}.ff4_c01049{font-family:ff4_c01049;line-height:0.696000;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_c01049;src:url('chunks/assets/font_c78c33d4bb9b1309ed321be0.woff2')format("woff");}.ff5_c01049{font-family:ff5_c01049;line-height:1.000000;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_c01049;src:url('chunks/assets/font_c3bf6a57131a27b4b361dd44.woff2')format("woff");}.ff6_c01049{font-family:ff6_c01049;line-height:1.000000;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);}
.v2_c01049{vertical-align:-21.690000px;}
.v0_c01049{vertical-align:0.000000px;}
.v1_c01049{vertical-align:26.028000px;}
.ls0_c01049{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01049{word-spacing:-0.071730px;}
.ws6_c01049{word-spacing:-0.047820px;}
.wsf_c01049{word-spacing:-0.041844px;}
.ws13_c01049{word-spacing:0.000000px;}
.ws10_c01049{word-spacing:17.993178px;}
.ws8_c01049{word-spacing:18.004230px;}
.ws7_c01049{word-spacing:19.151910px;}
.ws11_c01049{word-spacing:19.666962px;}
.ws12_c01049{word-spacing:19.846296px;}
.wse_c01049{word-spacing:20.514780px;}
.wsc_c01049{word-spacing:21.805920px;}
.ws5_c01049{word-spacing:23.312250px;}
.wsb_c01049{word-spacing:23.383980px;}
.ws2_c01049{word-spacing:24.818580px;}
.wsa_c01049{word-spacing:25.033770px;}
.wsd_c01049{word-spacing:25.320690px;}
.ws4_c01049{word-spacing:25.607610px;}
.ws0_c01049{word-spacing:26.827020px;}
.ws3_c01049{word-spacing:30.126600px;}
.ws9_c01049{word-spacing:34.000020px;}
._4_c01049{margin-left:-42.607620px;}
._c_c01049{margin-left:-37.443060px;}
._6_c01049{margin-left:-35.219430px;}
._8_c01049{margin-left:-33.210990px;}
._2_c01049{margin-left:-31.417740px;}
._13_c01049{margin-left:-29.948778px;}
._11_c01049{margin-left:-28.426374px;}
._a_c01049{margin-left:-27.329130px;}
._1_c01049{margin-left:-9.037980px;}
._9_c01049{margin-left:-7.818570px;}
._12_c01049{margin-left:-5.021352px;}
._d_c01049{margin-left:-3.514770px;}
._0_c01049{margin-left:-2.367090px;}
._f_c01049{margin-left:-1.219410px;}
._3_c01049{width:2.080170px;}
._10_c01049{width:3.945150px;}
._e_c01049{width:19.797480px;}
._7_c01049{width:23.025330px;}
._b_c01049{width:26.683560px;}
._5_c01049{width:515.743470px;}
.fc0_c01049{color:rgb(0,0,0);}
.fs2_c01049{font-size:41.844000px;}
.fs1_c01049{font-size:47.820000px;}
.fs3_c01049{font-size:59.778000px;}
.fs0_c01049{font-size:71.730000px;}
.y0_c01049{bottom:0.000000px;}
.y11_c01049{bottom:93.507000px;}
.y10_c01049{bottom:116.862000px;}
.yf_c01049{bottom:745.551000px;}
.ye_c01049{bottom:772.441500px;}
.yd_c01049{bottom:799.332000px;}
.yc_c01049{bottom:826.222500px;}
.yb_c01049{bottom:853.114500px;}
.ya_c01049{bottom:880.005000px;}
.y9_c01049{bottom:906.895500px;}
.y8_c01049{bottom:933.786000px;}
.y7_c01049{bottom:960.678000px;}
.y6_c01049{bottom:987.568500px;}
.y5_c01049{bottom:1014.459000px;}
.y4_c01049{bottom:1041.349500px;}
.y3_c01049{bottom:1068.240000px;}
.y2_c01049{bottom:1095.132000px;}
.y1_c01049{bottom:1162.084500px;}
.h4_c01049{height:28.286544px;}
.h5_c01049{height:44.833500px;}
.h2_c01049{height:53.797500px;}
.h3_c01049{height:58.354320px;}
.h1_c01049{height:1263.750000px;}
.h0_c01049{height:1264.110000px;}
.w0_c01049{width:893.869500px;}
.w1_c01049{width:894.000000px;}
.x0_c01049{left:0.000000px;}
.x1_c01049{left:127.558500px;}
.x3_c01049{left:141.798000px;}
.x2_c01049{left:159.838500px;}
@media print{
.v2_c01049{vertical-align:-19.280000pt;}
.v0_c01049{vertical-align:0.000000pt;}
.v1_c01049{vertical-align:23.136000pt;}
.ls0_c01049{letter-spacing:0.000000pt;}
.ws1_c01049{word-spacing:-0.063760pt;}
.ws6_c01049{word-spacing:-0.042507pt;}
.wsf_c01049{word-spacing:-0.037195pt;}
.ws13_c01049{word-spacing:0.000000pt;}
.ws10_c01049{word-spacing:15.993936pt;}
.ws8_c01049{word-spacing:16.003760pt;}
.ws7_c01049{word-spacing:17.023920pt;}
.ws11_c01049{word-spacing:17.481744pt;}
.ws12_c01049{word-spacing:17.641152pt;}
.wse_c01049{word-spacing:18.235360pt;}
.wsc_c01049{word-spacing:19.383040pt;}
.ws5_c01049{word-spacing:20.722000pt;}
.wsb_c01049{word-spacing:20.785760pt;}
.ws2_c01049{word-spacing:22.060960pt;}
.wsa_c01049{word-spacing:22.252240pt;}
.wsd_c01049{word-spacing:22.507280pt;}
.ws4_c01049{word-spacing:22.762320pt;}
.ws0_c01049{word-spacing:23.846240pt;}
.ws3_c01049{word-spacing:26.779200pt;}
.ws9_c01049{word-spacing:30.222240pt;}
._4_c01049{margin-left:-37.873440pt;}
._c_c01049{margin-left:-33.282720pt;}
._6_c01049{margin-left:-31.306160pt;}
._8_c01049{margin-left:-29.520880pt;}
._2_c01049{margin-left:-27.926880pt;}
._13_c01049{margin-left:-26.621136pt;}
._11_c01049{margin-left:-25.267888pt;}
._a_c01049{margin-left:-24.292560pt;}
._1_c01049{margin-left:-8.033760pt;}
._9_c01049{margin-left:-6.949840pt;}
._12_c01049{margin-left:-4.463424pt;}
._d_c01049{margin-left:-3.124240pt;}
._0_c01049{margin-left:-2.104080pt;}
._f_c01049{margin-left:-1.083920pt;}
._3_c01049{width:1.849040pt;}
._10_c01049{width:3.506800pt;}
._e_c01049{width:17.597760pt;}
._7_c01049{width:20.466960pt;}
._b_c01049{width:23.718720pt;}
._5_c01049{width:458.438640pt;}
.fs2_c01049{font-size:37.194667pt;}
.fs1_c01049{font-size:42.506667pt;}
.fs3_c01049{font-size:53.136000pt;}
.fs0_c01049{font-size:63.760000pt;}
.y0_c01049{bottom:0.000000pt;}
.y11_c01049{bottom:83.117333pt;}
.y10_c01049{bottom:103.877333pt;}
.yf_c01049{bottom:662.712000pt;}
.ye_c01049{bottom:686.614667pt;}
.yd_c01049{bottom:710.517333pt;}
.yc_c01049{bottom:734.420000pt;}
.yb_c01049{bottom:758.324000pt;}
.ya_c01049{bottom:782.226667pt;}
.y9_c01049{bottom:806.129333pt;}
.y8_c01049{bottom:830.032000pt;}
.y7_c01049{bottom:853.936000pt;}
.y6_c01049{bottom:877.838667pt;}
.y5_c01049{bottom:901.741333pt;}
.y4_c01049{bottom:925.644000pt;}
.y3_c01049{bottom:949.546667pt;}
.y2_c01049{bottom:973.450667pt;}
.y1_c01049{bottom:1032.964000pt;}
.h4_c01049{height:25.143595pt;}
.h5_c01049{height:39.852000pt;}
.h2_c01049{height:47.820000pt;}
.h3_c01049{height:51.870507pt;}
.h1_c01049{height:1123.333333pt;}
.h0_c01049{height:1123.653333pt;}
.w0_c01049{width:794.550667pt;}
.w1_c01049{width:794.666667pt;}
.x0_c01049{left:0.000000pt;}
.x1_c01049{left:113.385333pt;}
.x3_c01049{left:126.042667pt;}
.x2_c01049{left:142.078667pt;}
}





/* 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_8b3742dd1de58328e7fe9f7a.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.001000;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_dcaab0f6656f594aa07aa8a0.woff2')format("woff");}.ff2_c01050{font-family:ff2_c01050;line-height:1.000000;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_c01050;src:url('chunks/assets/font_3a18e5dc8bcf94180caf5c55.woff2')format("woff");}.ff3_c01050{font-family:ff3_c01050;line-height:1.001000;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_c01050;src:url('chunks/assets/font_c2e815f0b67f733ac7402ad7.woff2')format("woff");}.ff4_c01050{font-family:ff4_c01050;line-height:0.697000;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_c01050;src:url('chunks/assets/font_ed3b2b51686ff72e687be50e.woff2')format("woff");}.ff5_c01050{font-family:ff5_c01050;line-height:1.001000;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_c01050;src:url('chunks/assets/font_76046867a420aa8ca89df52b.woff2')format("woff");}.ff6_c01050{font-family:ff6_c01050;line-height:0.696000;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_c01050;src:url('chunks/assets/font_91462d9bb8b0f34e1b3ce1db.woff2')format("woff");}.ff7_c01050{font-family:ff7_c01050;line-height:1.000000;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_c01050;src:url('chunks/assets/font_c8cacceddf3ad775336c333c.woff2')format("woff");}.ff8_c01050{font-family:ff8_c01050;line-height:1.000000;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);}
.v3_c01050{vertical-align:-21.690000px;}
.v0_c01050{vertical-align:0.000000px;}
.v1_c01050{vertical-align:7.170000px;}
.v4_c01050{vertical-align:15.108000px;}
.v2_c01050{vertical-align:26.034000px;}
.ls2_c01050{letter-spacing:0.000000px;}
.ls1_c01050{letter-spacing:3.004764px;}
.ls0_c01050{letter-spacing:3.005580px;}
.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;}
}
.wsa_c01050{word-spacing:-0.071730px;}
.ws18_c01050{word-spacing:-0.059778px;}
.ws1b_c01050{word-spacing:0.000000px;}
.ws13_c01050{word-spacing:16.259616px;}
.wsb_c01050{word-spacing:16.497900px;}
.ws5_c01050{word-spacing:17.789040px;}
.ws17_c01050{word-spacing:19.846296px;}
.ws8_c01050{word-spacing:20.156130px;}
.ws6_c01050{word-spacing:21.447270px;}
.ws14_c01050{word-spacing:23.253642px;}
.ws7_c01050{word-spacing:23.312250px;}
.ws16_c01050{word-spacing:23.373198px;}
.ws12_c01050{word-spacing:24.459930px;}
.wsd_c01050{word-spacing:25.033770px;}
.ws11_c01050{word-spacing:26.253180px;}
.ws4_c01050{word-spacing:26.396640px;}
.ws9_c01050{word-spacing:27.311520px;}
.ws3_c01050{word-spacing:28.261620px;}
.ws10_c01050{word-spacing:28.405080px;}
.ws15_c01050{word-spacing:28.812996px;}
.wsf_c01050{word-spacing:30.700440px;}
.ws19_c01050{word-spacing:32.698566px;}
.ws1a_c01050{word-spacing:33.176790px;}
.wse_c01050{word-spacing:34.645590px;}
.wsc_c01050{word-spacing:34.717320px;}
.ws0_c01050{word-spacing:55.473306px;}
.ws1_c01050{word-spacing:55.622028px;}
.ws2_c01050{word-spacing:95.113980px;}
._3_c01050{margin-left:-84.176652px;}
._1_c01050{margin-left:-65.140236px;}
._a_c01050{margin-left:-37.084410px;}
._8_c01050{margin-left:-35.334198px;}
._b_c01050{margin-left:-33.325758px;}
._10_c01050{margin-left:-29.745540px;}
._7_c01050{margin-left:-27.329130px;}
._11_c01050{margin-left:-22.717110px;}
._0_c01050{margin-left:-18.738972px;}
._6_c01050{margin-left:-8.378064px;}
._c_c01050{margin-left:-7.047654px;}
._2_c01050{margin-left:-4.759104px;}
._e_c01050{margin-left:-3.586500px;}
._4_c01050{margin-left:-1.893672px;}
._d_c01050{width:1.750212px;}
._5_c01050{width:3.619800px;}
._f_c01050{width:5.307072px;}
._12_c01050{width:7.484676px;}
._9_c01050{width:28.333350px;}
.fc0_c01050{color:rgb(0,0,0);}
.fs4_c01050{font-size:41.844000px;}
.fs3_c01050{font-size:47.820000px;}
.fs5_c01050{font-size:59.778000px;}
.fs2_c01050{font-size:71.730000px;}
.fs1_c01050{font-size:86.076000px;}
.fs0_c01050{font-size:148.722000px;}
.y0_c01050{bottom:0.000000px;}
.y1d_c01050{bottom:61.552500px;}
.y1c_c01050{bottom:93.442500px;}
.y1b_c01050{bottom:111.375000px;}
.y1a_c01050{bottom:116.797500px;}
.y19_c01050{bottom:130.909500px;}
.y18_c01050{bottom:148.843500px;}
.y17_c01050{bottom:166.776000px;}
.y16_c01050{bottom:184.708500px;}
.y15_c01050{bottom:208.063500px;}
.y14_c01050{bottom:230.878500px;}
.y13_c01050{bottom:257.769000px;}
.y12_c01050{bottom:284.659500px;}
.y11_c01050{bottom:311.550000px;}
.y10_c01050{bottom:338.442000px;}
.yf_c01050{bottom:365.332500px;}
.ye_c01050{bottom:409.828500px;}
.yd_c01050{bottom:436.719000px;}
.yc_c01050{bottom:481.215000px;}
.yb_c01050{bottom:508.107000px;}
.ya_c01050{bottom:534.997500px;}
.y9_c01050{bottom:561.888000px;}
.y8_c01050{bottom:588.778500px;}
.y7_c01050{bottom:615.670500px;}
.y6_c01050{bottom:642.561000px;}
.y5_c01050{bottom:669.451500px;}
.y4_c01050{bottom:704.064000px;}
.y3_c01050{bottom:823.615500px;}
.y2_c01050{bottom:879.252000px;}
.y1_c01050{bottom:964.776000px;}
.h8_c01050{height:28.286544px;}
.ha_c01050{height:38.251500px;}
.h9_c01050{height:44.833500px;}
.h5_c01050{height:53.797500px;}
.h7_c01050{height:58.354320px;}
.h6_c01050{height:58.360320px;}
.h4_c01050{height:64.557000px;}
.h3_c01050{height:71.727000px;}
.h2_c01050{height:111.541500px;}
.h1_c01050{height:1263.750000px;}
.h0_c01050{height:1264.110000px;}
.w0_c01050{width:893.869500px;}
.w1_c01050{width:894.000000px;}
.x0_c01050{left:0.000000px;}
.x1_c01050{left:127.558500px;}
.x6_c01050{left:147.754500px;}
.x3_c01050{left:159.838500px;}
.x5_c01050{left:171.456000px;}
.x4_c01050{left:197.794500px;}
.x2_c01050{left:320.167500px;}
.x7_c01050{left:433.765500px;}
@media print{
.v3_c01050{vertical-align:-19.280000pt;}
.v0_c01050{vertical-align:0.000000pt;}
.v1_c01050{vertical-align:6.373333pt;}
.v4_c01050{vertical-align:13.429333pt;}
.v2_c01050{vertical-align:23.141333pt;}
.ls2_c01050{letter-spacing:0.000000pt;}
.ls1_c01050{letter-spacing:2.670901pt;}
.ls0_c01050{letter-spacing:2.671627pt;}
.wsa_c01050{word-spacing:-0.063760pt;}
.ws18_c01050{word-spacing:-0.053136pt;}
.ws1b_c01050{word-spacing:0.000000pt;}
.ws13_c01050{word-spacing:14.452992pt;}
.wsb_c01050{word-spacing:14.664800pt;}
.ws5_c01050{word-spacing:15.812480pt;}
.ws17_c01050{word-spacing:17.641152pt;}
.ws8_c01050{word-spacing:17.916560pt;}
.ws6_c01050{word-spacing:19.064240pt;}
.ws14_c01050{word-spacing:20.669904pt;}
.ws7_c01050{word-spacing:20.722000pt;}
.ws16_c01050{word-spacing:20.776176pt;}
.ws12_c01050{word-spacing:21.742160pt;}
.wsd_c01050{word-spacing:22.252240pt;}
.ws11_c01050{word-spacing:23.336160pt;}
.ws4_c01050{word-spacing:23.463680pt;}
.ws9_c01050{word-spacing:24.276907pt;}
.ws3_c01050{word-spacing:25.121440pt;}
.ws10_c01050{word-spacing:25.248960pt;}
.ws15_c01050{word-spacing:25.611552pt;}
.wsf_c01050{word-spacing:27.289280pt;}
.ws19_c01050{word-spacing:29.065392pt;}
.ws1a_c01050{word-spacing:29.490480pt;}
.wse_c01050{word-spacing:30.796080pt;}
.wsc_c01050{word-spacing:30.859840pt;}
.ws0_c01050{word-spacing:49.309605pt;}
.ws1_c01050{word-spacing:49.441803pt;}
.ws2_c01050{word-spacing:84.545760pt;}
._3_c01050{margin-left:-74.823691pt;}
._1_c01050{margin-left:-57.902432pt;}
._a_c01050{margin-left:-32.963920pt;}
._8_c01050{margin-left:-31.408176pt;}
._b_c01050{margin-left:-29.622896pt;}
._10_c01050{margin-left:-26.440480pt;}
._7_c01050{margin-left:-24.292560pt;}
._11_c01050{margin-left:-20.192987pt;}
._0_c01050{margin-left:-16.656864pt;}
._6_c01050{margin-left:-7.447168pt;}
._c_c01050{margin-left:-6.264581pt;}
._2_c01050{margin-left:-4.230315pt;}
._e_c01050{margin-left:-3.188000pt;}
._4_c01050{margin-left:-1.683264pt;}
._d_c01050{width:1.555744pt;}
._5_c01050{width:3.217600pt;}
._f_c01050{width:4.717397pt;}
._12_c01050{width:6.653045pt;}
._9_c01050{width:25.185200pt;}
.fs4_c01050{font-size:37.194667pt;}
.fs3_c01050{font-size:42.506667pt;}
.fs5_c01050{font-size:53.136000pt;}
.fs2_c01050{font-size:63.760000pt;}
.fs1_c01050{font-size:76.512000pt;}
.fs0_c01050{font-size:132.197333pt;}
.y0_c01050{bottom:0.000000pt;}
.y1d_c01050{bottom:54.713333pt;}
.y1c_c01050{bottom:83.060000pt;}
.y1b_c01050{bottom:99.000000pt;}
.y1a_c01050{bottom:103.820000pt;}
.y19_c01050{bottom:116.364000pt;}
.y18_c01050{bottom:132.305333pt;}
.y17_c01050{bottom:148.245333pt;}
.y16_c01050{bottom:164.185333pt;}
.y15_c01050{bottom:184.945333pt;}
.y14_c01050{bottom:205.225333pt;}
.y13_c01050{bottom:229.128000pt;}
.y12_c01050{bottom:253.030667pt;}
.y11_c01050{bottom:276.933333pt;}
.y10_c01050{bottom:300.837333pt;}
.yf_c01050{bottom:324.740000pt;}
.ye_c01050{bottom:364.292000pt;}
.yd_c01050{bottom:388.194667pt;}
.yc_c01050{bottom:427.746667pt;}
.yb_c01050{bottom:451.650667pt;}
.ya_c01050{bottom:475.553333pt;}
.y9_c01050{bottom:499.456000pt;}
.y8_c01050{bottom:523.358667pt;}
.y7_c01050{bottom:547.262667pt;}
.y6_c01050{bottom:571.165333pt;}
.y5_c01050{bottom:595.068000pt;}
.y4_c01050{bottom:625.834667pt;}
.y3_c01050{bottom:732.102667pt;}
.y2_c01050{bottom:781.557333pt;}
.y1_c01050{bottom:857.578667pt;}
.h8_c01050{height:25.143595pt;}
.ha_c01050{height:34.001333pt;}
.h9_c01050{height:39.852000pt;}
.h5_c01050{height:47.820000pt;}
.h7_c01050{height:51.870507pt;}
.h6_c01050{height:51.875840pt;}
.h4_c01050{height:57.384000pt;}
.h3_c01050{height:63.757333pt;}
.h2_c01050{height:99.148000pt;}
.h1_c01050{height:1123.333333pt;}
.h0_c01050{height:1123.653333pt;}
.w0_c01050{width:794.550667pt;}
.w1_c01050{width:794.666667pt;}
.x0_c01050{left:0.000000pt;}
.x1_c01050{left:113.385333pt;}
.x6_c01050{left:131.337333pt;}
.x3_c01050{left:142.078667pt;}
.x5_c01050{left:152.405333pt;}
.x4_c01050{left:175.817333pt;}
.x2_c01050{left:284.593333pt;}
.x7_c01050{left:385.569333pt;}
}





/* 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_d598e7ccbfeae33e8ecd4f89.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.001000;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_2b9091fab30110703b870a76.woff2')format("woff");}.ff2_c01051{font-family:ff2_c01051;line-height:1.001000;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_c01051;src:url('chunks/assets/font_4d32374ca0df02dbd035c27e.woff2')format("woff");}.ff3_c01051{font-family:ff3_c01051;line-height:1.001000;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_c01051;src:url('chunks/assets/font_4a4e31d70cbad534aafa00e7.woff2')format("woff");}.ff4_c01051{font-family:ff4_c01051;line-height:0.697000;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_c01051;src:url('chunks/assets/font_b6203c26ef1b899fd6c6a1c6.woff2')format("woff");}.ff5_c01051{font-family:ff5_c01051;line-height:0.696000;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_c01051;src:url('chunks/assets/font_03cb83e32d7535f3bc9afd48.woff2')format("woff");}.ff6_c01051{font-family:ff6_c01051;line-height:1.000000;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_c01051;src:url('chunks/assets/font_ec118e853c06ca4ee732d22b.woff2')format("woff");}.ff7_c01051{font-family:ff7_c01051;line-height:1.000000;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);}
.v2_c01051{vertical-align:-21.690000px;}
.v0_c01051{vertical-align:0.000000px;}
.v1_c01051{vertical-align:26.034000px;}
.ls4_c01051{letter-spacing:0.000000px;}
.ls1_c01051{letter-spacing:2.999580px;}
.ls2_c01051{letter-spacing:3.004764px;}
.ls0_c01051{letter-spacing:3.005580px;}
.ls3_c01051{letter-spacing:24.784764px;}
.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;}
}
.ws1_c01051{word-spacing:-0.071730px;}
.ws1a_c01051{word-spacing:-0.059778px;}
.ws1d_c01051{word-spacing:0.000000px;}
.ws16_c01051{word-spacing:17.335620px;}
.ws13_c01051{word-spacing:17.645580px;}
.ws17_c01051{word-spacing:18.949626px;}
.ws18_c01051{word-spacing:19.846296px;}
.ws8_c01051{word-spacing:21.160350px;}
.wse_c01051{word-spacing:21.232080px;}
.ws1b_c01051{word-spacing:21.280968px;}
.ws15_c01051{word-spacing:21.375540px;}
.ws19_c01051{word-spacing:21.699414px;}
.wsf_c01051{word-spacing:22.451490px;}
.ws4_c01051{word-spacing:23.097060px;}
.ws5_c01051{word-spacing:23.312250px;}
.wsd_c01051{word-spacing:23.383980px;}
.ws2_c01051{word-spacing:24.818580px;}
.wsb_c01051{word-spacing:25.033770px;}
.ws12_c01051{word-spacing:25.105500px;}
.ws0_c01051{word-spacing:26.827020px;}
.ws11_c01051{word-spacing:27.329130px;}
.ws3_c01051{word-spacing:27.400860px;}
.ws14_c01051{word-spacing:27.616050px;}
.wsc_c01051{word-spacing:27.831240px;}
.ws6_c01051{word-spacing:29.767950px;}
.ws9_c01051{word-spacing:30.054870px;}
.ws1c_c01051{word-spacing:31.024782px;}
.ws10_c01051{word-spacing:31.346010px;}
.wsa_c01051{word-spacing:32.565420px;}
.ws7_c01051{word-spacing:34.502130px;}
._3_c01051{margin-left:-40.742640px;}
._11_c01051{margin-left:-37.227870px;}
._b_c01051{margin-left:-36.151920px;}
._7_c01051{margin-left:-34.430400px;}
._2_c01051{margin-left:-31.417740px;}
._f_c01051{margin-left:-29.409300px;}
._9_c01051{margin-left:-27.329130px;}
._1_c01051{margin-left:-9.037980px;}
._8_c01051{margin-left:-7.818570px;}
._5_c01051{margin-left:-5.881860px;}
._c_c01051{margin-left:-3.586500px;}
._0_c01051{margin-left:-2.367090px;}
._10_c01051{margin-left:-1.075950px;}
._6_c01051{width:1.004220px;}
._a_c01051{width:2.080170px;}
._d_c01051{width:3.729960px;}
._e_c01051{width:19.438830px;}
._4_c01051{width:560.072610px;}
.fc0_c01051{color:rgb(0,0,0);}
.fs2_c01051{font-size:41.844000px;}
.fs1_c01051{font-size:47.820000px;}
.fs3_c01051{font-size:59.778000px;}
.fs0_c01051{font-size:71.730000px;}
.y0_c01051{bottom:0.000000px;}
.y24_c01051{bottom:112.740000px;}
.y23_c01051{bottom:136.095000px;}
.y22_c01051{bottom:154.029000px;}
.y21_c01051{bottom:166.537500px;}
.y20_c01051{bottom:189.894000px;}
.y1f_c01051{bottom:202.404000px;}
.y1e_c01051{bottom:225.759000px;}
.y1d_c01051{bottom:252.516000px;}
.y1c_c01051{bottom:279.406500px;}
.y1b_c01051{bottom:306.297000px;}
.y1a_c01051{bottom:333.189000px;}
.y19_c01051{bottom:360.079500px;}
.y18_c01051{bottom:406.396500px;}
.y17_c01051{bottom:433.288500px;}
.y16_c01051{bottom:460.179000px;}
.y15_c01051{bottom:506.497500px;}
.y14_c01051{bottom:533.388000px;}
.y13_c01051{bottom:579.705000px;}
.y12_c01051{bottom:606.597000px;}
.y11_c01051{bottom:633.487500px;}
.y10_c01051{bottom:679.806000px;}
.yf_c01051{bottom:706.696500px;}
.ye_c01051{bottom:753.013500px;}
.yd_c01051{bottom:779.905500px;}
.yc_c01051{bottom:806.796000px;}
.yb_c01051{bottom:833.686500px;}
.ya_c01051{bottom:860.577000px;}
.y9_c01051{bottom:887.469000px;}
.y8_c01051{bottom:914.359500px;}
.y7_c01051{bottom:941.250000px;}
.y6_c01051{bottom:987.568500px;}
.y5_c01051{bottom:1014.459000px;}
.y4_c01051{bottom:1041.349500px;}
.y3_c01051{bottom:1068.240000px;}
.y2_c01051{bottom:1095.132000px;}
.y1_c01051{bottom:1162.084500px;}
.h5_c01051{height:28.286544px;}
.h6_c01051{height:44.833500px;}
.h2_c01051{height:53.797500px;}
.h4_c01051{height:58.354320px;}
.h3_c01051{height:58.360320px;}
.h1_c01051{height:1263.750000px;}
.h0_c01051{height:1264.110000px;}
.w0_c01051{width:893.869500px;}
.w1_c01051{width:894.000000px;}
.x0_c01051{left:0.000000px;}
.x1_c01051{left:127.558500px;}
.x5_c01051{left:147.754500px;}
.x2_c01051{left:159.838500px;}
.x4_c01051{left:171.456000px;}
.x3_c01051{left:197.794500px;}
@media print{
.v2_c01051{vertical-align:-19.280000pt;}
.v0_c01051{vertical-align:0.000000pt;}
.v1_c01051{vertical-align:23.141333pt;}
.ls4_c01051{letter-spacing:0.000000pt;}
.ls1_c01051{letter-spacing:2.666293pt;}
.ls2_c01051{letter-spacing:2.670901pt;}
.ls0_c01051{letter-spacing:2.671627pt;}
.ls3_c01051{letter-spacing:22.030901pt;}
.ws1_c01051{word-spacing:-0.063760pt;}
.ws1a_c01051{word-spacing:-0.053136pt;}
.ws1d_c01051{word-spacing:0.000000pt;}
.ws16_c01051{word-spacing:15.409440pt;}
.ws13_c01051{word-spacing:15.684960pt;}
.ws17_c01051{word-spacing:16.844112pt;}
.ws18_c01051{word-spacing:17.641152pt;}
.ws8_c01051{word-spacing:18.809200pt;}
.wse_c01051{word-spacing:18.872960pt;}
.ws1b_c01051{word-spacing:18.916416pt;}
.ws15_c01051{word-spacing:19.000480pt;}
.ws19_c01051{word-spacing:19.288368pt;}
.wsf_c01051{word-spacing:19.956880pt;}
.ws4_c01051{word-spacing:20.530720pt;}
.ws5_c01051{word-spacing:20.722000pt;}
.wsd_c01051{word-spacing:20.785760pt;}
.ws2_c01051{word-spacing:22.060960pt;}
.wsb_c01051{word-spacing:22.252240pt;}
.ws12_c01051{word-spacing:22.316000pt;}
.ws0_c01051{word-spacing:23.846240pt;}
.ws11_c01051{word-spacing:24.292560pt;}
.ws3_c01051{word-spacing:24.356320pt;}
.ws14_c01051{word-spacing:24.547600pt;}
.wsc_c01051{word-spacing:24.738880pt;}
.ws6_c01051{word-spacing:26.460400pt;}
.ws9_c01051{word-spacing:26.715440pt;}
.ws1c_c01051{word-spacing:27.577584pt;}
.ws10_c01051{word-spacing:27.863120pt;}
.wsa_c01051{word-spacing:28.947040pt;}
.ws7_c01051{word-spacing:30.668560pt;}
._3_c01051{margin-left:-36.215680pt;}
._11_c01051{margin-left:-33.091440pt;}
._b_c01051{margin-left:-32.135040pt;}
._7_c01051{margin-left:-30.604800pt;}
._2_c01051{margin-left:-27.926880pt;}
._f_c01051{margin-left:-26.141600pt;}
._9_c01051{margin-left:-24.292560pt;}
._1_c01051{margin-left:-8.033760pt;}
._8_c01051{margin-left:-6.949840pt;}
._5_c01051{margin-left:-5.228320pt;}
._c_c01051{margin-left:-3.188000pt;}
._0_c01051{margin-left:-2.104080pt;}
._10_c01051{margin-left:-0.956400pt;}
._6_c01051{width:0.892640pt;}
._a_c01051{width:1.849040pt;}
._d_c01051{width:3.315520pt;}
._e_c01051{width:17.278960pt;}
._4_c01051{width:497.842320pt;}
.fs2_c01051{font-size:37.194667pt;}
.fs1_c01051{font-size:42.506667pt;}
.fs3_c01051{font-size:53.136000pt;}
.fs0_c01051{font-size:63.760000pt;}
.y0_c01051{bottom:0.000000pt;}
.y24_c01051{bottom:100.213333pt;}
.y23_c01051{bottom:120.973333pt;}
.y22_c01051{bottom:136.914667pt;}
.y21_c01051{bottom:148.033333pt;}
.y20_c01051{bottom:168.794667pt;}
.y1f_c01051{bottom:179.914667pt;}
.y1e_c01051{bottom:200.674667pt;}
.y1d_c01051{bottom:224.458667pt;}
.y1c_c01051{bottom:248.361333pt;}
.y1b_c01051{bottom:272.264000pt;}
.y1a_c01051{bottom:296.168000pt;}
.y19_c01051{bottom:320.070667pt;}
.y18_c01051{bottom:361.241333pt;}
.y17_c01051{bottom:385.145333pt;}
.y16_c01051{bottom:409.048000pt;}
.y15_c01051{bottom:450.220000pt;}
.y14_c01051{bottom:474.122667pt;}
.y13_c01051{bottom:515.293333pt;}
.y12_c01051{bottom:539.197333pt;}
.y11_c01051{bottom:563.100000pt;}
.y10_c01051{bottom:604.272000pt;}
.yf_c01051{bottom:628.174667pt;}
.ye_c01051{bottom:669.345333pt;}
.yd_c01051{bottom:693.249333pt;}
.yc_c01051{bottom:717.152000pt;}
.yb_c01051{bottom:741.054667pt;}
.ya_c01051{bottom:764.957333pt;}
.y9_c01051{bottom:788.861333pt;}
.y8_c01051{bottom:812.764000pt;}
.y7_c01051{bottom:836.666667pt;}
.y6_c01051{bottom:877.838667pt;}
.y5_c01051{bottom:901.741333pt;}
.y4_c01051{bottom:925.644000pt;}
.y3_c01051{bottom:949.546667pt;}
.y2_c01051{bottom:973.450667pt;}
.y1_c01051{bottom:1032.964000pt;}
.h5_c01051{height:25.143595pt;}
.h6_c01051{height:39.852000pt;}
.h2_c01051{height:47.820000pt;}
.h4_c01051{height:51.870507pt;}
.h3_c01051{height:51.875840pt;}
.h1_c01051{height:1123.333333pt;}
.h0_c01051{height:1123.653333pt;}
.w0_c01051{width:794.550667pt;}
.w1_c01051{width:794.666667pt;}
.x0_c01051{left:0.000000pt;}
.x1_c01051{left:113.385333pt;}
.x5_c01051{left:131.337333pt;}
.x2_c01051{left:142.078667pt;}
.x4_c01051{left:152.405333pt;}
.x3_c01051{left:175.817333pt;}
}





/* 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_b3935a03480e798e4ae50972.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.001000;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_c01052;src:url('chunks/assets/font_943cd3772ef16d64f3f1fa56.woff2')format("woff");}.ff2_c01052{font-family:ff2_c01052;line-height:1.001000;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_c01052;src:url('chunks/assets/font_781d1dbbe6bcb0569b06ed9e.woff2')format("woff");}.ff3_c01052{font-family:ff3_c01052;line-height:0.697000;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_c01052;src:url('chunks/assets/font_a5c9f0ea40d55ef35e193982.woff2')format("woff");}.ff4_c01052{font-family:ff4_c01052;line-height:1.000000;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_c01052;src:url('chunks/assets/font_17198fa47464e7f382b0de9e.woff2')format("woff");}.ff5_c01052{font-family:ff5_c01052;line-height:0.696000;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_c01052;src:url('chunks/assets/font_7d5e8592f1c8c2cab3e85173.woff2')format("woff");}.ff6_c01052{font-family:ff6_c01052;line-height:1.000000;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_c01052;src:url('chunks/assets/font_98bdecb221f3bc3a42f64414.woff2')format("woff");}.ff7_c01052{font-family:ff7_c01052;line-height:1.000000;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);}
.v2_c01052{vertical-align:-21.696000px;}
.v0_c01052{vertical-align:0.000000px;}
.v1_c01052{vertical-align:26.034000px;}
.ls3_c01052{letter-spacing:0.000000px;}
.ls0_c01052{letter-spacing:2.999580px;}
.ls2_c01052{letter-spacing:3.004764px;}
.ls1_c01052{letter-spacing:3.005580px;}
.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;}
}
.ws1_c01052{word-spacing:-0.071730px;}
.ws24_c01052{word-spacing:0.000000px;}
.ws1a_c01052{word-spacing:14.824944px;}
.ws11_c01052{word-spacing:16.282710px;}
.wsa_c01052{word-spacing:17.645580px;}
.wsf_c01052{word-spacing:17.932500px;}
.ws1c_c01052{word-spacing:19.846296px;}
.ws23_c01052{word-spacing:19.906074px;}
.ws6_c01052{word-spacing:20.084400px;}
.ws10_c01052{word-spacing:20.156130px;}
.ws8_c01052{word-spacing:20.299590px;}
.ws15_c01052{word-spacing:20.371320px;}
.wsb_c01052{word-spacing:21.590730px;}
.wse_c01052{word-spacing:21.734190px;}
.ws21_c01052{word-spacing:22.237416px;}
.ws19_c01052{word-spacing:22.379760px;}
.ws4_c01052{word-spacing:22.738410px;}
.ws18_c01052{word-spacing:22.881870px;}
.ws1b_c01052{word-spacing:23.134086px;}
.ws3_c01052{word-spacing:23.312250px;}
.ws20_c01052{word-spacing:23.552532px;}
.ws5_c01052{word-spacing:24.459930px;}
.ws9_c01052{word-spacing:24.890310px;}
.ws17_c01052{word-spacing:25.033770px;}
.wsd_c01052{word-spacing:25.535880px;}
.ws22_c01052{word-spacing:26.122986px;}
.ws0_c01052{word-spacing:26.827020px;}
.ws13_c01052{word-spacing:27.042210px;}
.ws2_c01052{word-spacing:27.616050px;}
.wsc_c01052{word-spacing:27.687780px;}
.ws16_c01052{word-spacing:29.194110px;}
.ws12_c01052{word-spacing:29.767950px;}
.ws7_c01052{word-spacing:32.450652px;}
.ws1d_c01052{word-spacing:32.758344px;}
.ws1f_c01052{word-spacing:32.818122px;}
.ws1e_c01052{word-spacing:33.236568px;}
.ws14_c01052{word-spacing:33.784830px;}
._3_c01052{margin-left:-40.742640px;}
._8_c01052{margin-left:-37.084410px;}
._14_c01052{margin-left:-35.578080px;}
._9_c01052{margin-left:-34.286940px;}
._6_c01052{margin-left:-32.780610px;}
._2_c01052{margin-left:-31.417740px;}
._18_c01052{margin-left:-30.326952px;}
._16_c01052{margin-left:-28.980666px;}
._12_c01052{margin-left:-27.329130px;}
._17_c01052{margin-left:-22.369644px;}
._1_c01052{margin-left:-9.037980px;}
._11_c01052{margin-left:-7.890300px;}
._5_c01052{margin-left:-5.523210px;}
._10_c01052{margin-left:-4.016880px;}
._0_c01052{margin-left:-2.367090px;}
._c_c01052{margin-left:-1.075950px;}
._f_c01052{width:1.004220px;}
._a_c01052{width:2.080170px;}
._d_c01052{width:3.873420px;}
._13_c01052{width:16.354440px;}
._e_c01052{width:19.151910px;}
._15_c01052{width:24.962040px;}
._7_c01052{width:29.552760px;}
._b_c01052{width:95.200056px;}
._4_c01052{width:560.072610px;}
.fc0_c01052{color:rgb(0,0,0);}
.fs3_c01052{font-size:41.844000px;}
.fs1_c01052{font-size:47.820000px;}
.fs4_c01052{font-size:59.778000px;}
.fs0_c01052{font-size:71.730000px;}
.fs2_c01052{font-size:86.076000px;}
.y0_c01052{bottom:0.000000px;}
.y28_c01052{bottom:100.287000px;}
.y27_c01052{bottom:118.219500px;}
.y26_c01052{bottom:136.152000px;}
.y25_c01052{bottom:154.084500px;}
.y24_c01052{bottom:177.441000px;}
.y23_c01052{bottom:189.949500px;}
.y22_c01052{bottom:213.306000px;}
.y21_c01052{bottom:225.816000px;}
.y20_c01052{bottom:243.748500px;}
.y1f_c01052{bottom:267.105000px;}
.y1e_c01052{bottom:293.860500px;}
.y1d_c01052{bottom:320.751000px;}
.y1c_c01052{bottom:347.643000px;}
.y1b_c01052{bottom:374.533500px;}
.y1a_c01052{bottom:401.424000px;}
.y19_c01052{bottom:428.314500px;}
.y18_c01052{bottom:455.205000px;}
.y17_c01052{bottom:482.097000px;}
.y16_c01052{bottom:508.987500px;}
.y15_c01052{bottom:535.878000px;}
.y14_c01052{bottom:562.768500px;}
.y13_c01052{bottom:589.660500px;}
.y12_c01052{bottom:616.551000px;}
.y11_c01052{bottom:643.441500px;}
.y10_c01052{bottom:670.332000px;}
.yf_c01052{bottom:697.224000px;}
.ye_c01052{bottom:724.114500px;}
.yd_c01052{bottom:751.005000px;}
.yc_c01052{bottom:777.895500px;}
.yb_c01052{bottom:804.787500px;}
.ya_c01052{bottom:831.678000px;}
.y9_c01052{bottom:858.568500px;}
.y8_c01052{bottom:893.181000px;}
.y7_c01052{bottom:960.678000px;}
.y6_c01052{bottom:987.568500px;}
.y5_c01052{bottom:1014.459000px;}
.y4_c01052{bottom:1041.349500px;}
.y3_c01052{bottom:1068.240000px;}
.y2_c01052{bottom:1095.132000px;}
.y1_c01052{bottom:1162.084500px;}
.h6_c01052{height:28.286544px;}
.h7_c01052{height:44.833500px;}
.h2_c01052{height:53.797500px;}
.h4_c01052{height:58.354320px;}
.h3_c01052{height:58.360320px;}
.h5_c01052{height:64.557000px;}
.h1_c01052{height:1263.750000px;}
.h0_c01052{height:1264.110000px;}
.w0_c01052{width:893.869500px;}
.w1_c01052{width:894.000000px;}
.x0_c01052{left:0.000000px;}
.x1_c01052{left:127.558500px;}
.x3_c01052{left:147.754500px;}
.x2_c01052{left:159.838500px;}
@media print{
.v2_c01052{vertical-align:-19.285333pt;}
.v0_c01052{vertical-align:0.000000pt;}
.v1_c01052{vertical-align:23.141333pt;}
.ls3_c01052{letter-spacing:0.000000pt;}
.ls0_c01052{letter-spacing:2.666293pt;}
.ls2_c01052{letter-spacing:2.670901pt;}
.ls1_c01052{letter-spacing:2.671627pt;}
.ws1_c01052{word-spacing:-0.063760pt;}
.ws24_c01052{word-spacing:0.000000pt;}
.ws1a_c01052{word-spacing:13.177728pt;}
.ws11_c01052{word-spacing:14.473520pt;}
.wsa_c01052{word-spacing:15.684960pt;}
.wsf_c01052{word-spacing:15.940000pt;}
.ws1c_c01052{word-spacing:17.641152pt;}
.ws23_c01052{word-spacing:17.694288pt;}
.ws6_c01052{word-spacing:17.852800pt;}
.ws10_c01052{word-spacing:17.916560pt;}
.ws8_c01052{word-spacing:18.044080pt;}
.ws15_c01052{word-spacing:18.107840pt;}
.wsb_c01052{word-spacing:19.191760pt;}
.wse_c01052{word-spacing:19.319280pt;}
.ws21_c01052{word-spacing:19.766592pt;}
.ws19_c01052{word-spacing:19.893120pt;}
.ws4_c01052{word-spacing:20.211920pt;}
.ws18_c01052{word-spacing:20.339440pt;}
.ws1b_c01052{word-spacing:20.563632pt;}
.ws3_c01052{word-spacing:20.722000pt;}
.ws20_c01052{word-spacing:20.935584pt;}
.ws5_c01052{word-spacing:21.742160pt;}
.ws9_c01052{word-spacing:22.124720pt;}
.ws17_c01052{word-spacing:22.252240pt;}
.wsd_c01052{word-spacing:22.698560pt;}
.ws22_c01052{word-spacing:23.220432pt;}
.ws0_c01052{word-spacing:23.846240pt;}
.ws13_c01052{word-spacing:24.037520pt;}
.ws2_c01052{word-spacing:24.547600pt;}
.wsc_c01052{word-spacing:24.611360pt;}
.ws16_c01052{word-spacing:25.950320pt;}
.ws12_c01052{word-spacing:26.460400pt;}
.ws7_c01052{word-spacing:28.845024pt;}
.ws1d_c01052{word-spacing:29.118528pt;}
.ws1f_c01052{word-spacing:29.171664pt;}
.ws1e_c01052{word-spacing:29.543616pt;}
.ws14_c01052{word-spacing:30.030960pt;}
._3_c01052{margin-left:-36.215680pt;}
._8_c01052{margin-left:-32.963920pt;}
._14_c01052{margin-left:-31.624960pt;}
._9_c01052{margin-left:-30.477280pt;}
._6_c01052{margin-left:-29.138320pt;}
._2_c01052{margin-left:-27.926880pt;}
._18_c01052{margin-left:-26.957291pt;}
._16_c01052{margin-left:-25.760592pt;}
._12_c01052{margin-left:-24.292560pt;}
._17_c01052{margin-left:-19.884128pt;}
._1_c01052{margin-left:-8.033760pt;}
._11_c01052{margin-left:-7.013600pt;}
._5_c01052{margin-left:-4.909520pt;}
._10_c01052{margin-left:-3.570560pt;}
._0_c01052{margin-left:-2.104080pt;}
._c_c01052{margin-left:-0.956400pt;}
._f_c01052{width:0.892640pt;}
._a_c01052{width:1.849040pt;}
._d_c01052{width:3.443040pt;}
._13_c01052{width:14.537280pt;}
._e_c01052{width:17.023920pt;}
._15_c01052{width:22.188480pt;}
._7_c01052{width:26.269120pt;}
._b_c01052{width:84.622272pt;}
._4_c01052{width:497.842320pt;}
.fs3_c01052{font-size:37.194667pt;}
.fs1_c01052{font-size:42.506667pt;}
.fs4_c01052{font-size:53.136000pt;}
.fs0_c01052{font-size:63.760000pt;}
.fs2_c01052{font-size:76.512000pt;}
.y0_c01052{bottom:0.000000pt;}
.y28_c01052{bottom:89.144000pt;}
.y27_c01052{bottom:105.084000pt;}
.y26_c01052{bottom:121.024000pt;}
.y25_c01052{bottom:136.964000pt;}
.y24_c01052{bottom:157.725333pt;}
.y23_c01052{bottom:168.844000pt;}
.y22_c01052{bottom:189.605333pt;}
.y21_c01052{bottom:200.725333pt;}
.y20_c01052{bottom:216.665333pt;}
.y1f_c01052{bottom:237.426667pt;}
.y1e_c01052{bottom:261.209333pt;}
.y1d_c01052{bottom:285.112000pt;}
.y1c_c01052{bottom:309.016000pt;}
.y1b_c01052{bottom:332.918667pt;}
.y1a_c01052{bottom:356.821333pt;}
.y19_c01052{bottom:380.724000pt;}
.y18_c01052{bottom:404.626667pt;}
.y17_c01052{bottom:428.530667pt;}
.y16_c01052{bottom:452.433333pt;}
.y15_c01052{bottom:476.336000pt;}
.y14_c01052{bottom:500.238667pt;}
.y13_c01052{bottom:524.142667pt;}
.y12_c01052{bottom:548.045333pt;}
.y11_c01052{bottom:571.948000pt;}
.y10_c01052{bottom:595.850667pt;}
.yf_c01052{bottom:619.754667pt;}
.ye_c01052{bottom:643.657333pt;}
.yd_c01052{bottom:667.560000pt;}
.yc_c01052{bottom:691.462667pt;}
.yb_c01052{bottom:715.366667pt;}
.ya_c01052{bottom:739.269333pt;}
.y9_c01052{bottom:763.172000pt;}
.y8_c01052{bottom:793.938667pt;}
.y7_c01052{bottom:853.936000pt;}
.y6_c01052{bottom:877.838667pt;}
.y5_c01052{bottom:901.741333pt;}
.y4_c01052{bottom:925.644000pt;}
.y3_c01052{bottom:949.546667pt;}
.y2_c01052{bottom:973.450667pt;}
.y1_c01052{bottom:1032.964000pt;}
.h6_c01052{height:25.143595pt;}
.h7_c01052{height:39.852000pt;}
.h2_c01052{height:47.820000pt;}
.h4_c01052{height:51.870507pt;}
.h3_c01052{height:51.875840pt;}
.h5_c01052{height:57.384000pt;}
.h1_c01052{height:1123.333333pt;}
.h0_c01052{height:1123.653333pt;}
.w0_c01052{width:794.550667pt;}
.w1_c01052{width:794.666667pt;}
.x0_c01052{left:0.000000pt;}
.x1_c01052{left:113.385333pt;}
.x3_c01052{left:131.337333pt;}
.x2_c01052{left:142.078667pt;}
}





/* 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_f7ecefd9afdef615e05409e5.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.001000;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_27443f78873c66b432b2f443.woff2')format("woff");}.ff2_c01053{font-family:ff2_c01053;line-height:1.001000;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_c01053;src:url('chunks/assets/font_ec76e533406e86c4c84290bc.woff2')format("woff");}.ff3_c01053{font-family:ff3_c01053;line-height:0.697000;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_c01053;src:url('chunks/assets/font_17068f5fbd6756fe1b1c3c47.woff2')format("woff");}.ff4_c01053{font-family:ff4_c01053;line-height:1.001000;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_c01053;src:url('chunks/assets/font_2a274a38c4c7fd9204930aa8.woff2')format("woff");}.ff5_c01053{font-family:ff5_c01053;line-height:0.696000;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_c01053;src:url('chunks/assets/font_f1f1d2c980924ddddf7e15f9.woff2')format("woff");}.ff6_c01053{font-family:ff6_c01053;line-height:1.000000;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_c01053;src:url('chunks/assets/font_2d71f2f900811326791317e8.woff2')format("woff");}.ff7_c01053{font-family:ff7_c01053;line-height:1.000000;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);}
.v2_c01053{vertical-align:-21.696000px;}
.v0_c01053{vertical-align:0.000000px;}
.v1_c01053{vertical-align:26.028000px;}
.ls1_c01053{letter-spacing:0.000000px;}
.ls0_c01053{letter-spacing:22.585716px;}
.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;}
}
.ws1_c01053{word-spacing:-0.071730px;}
.wse_c01053{word-spacing:-0.047820px;}
.ws1d_c01053{word-spacing:-0.041844px;}
.ws2a_c01053{word-spacing:0.000000px;}
.ws22_c01053{word-spacing:15.312654px;}
.ws24_c01053{word-spacing:15.602058px;}
.ws21_c01053{word-spacing:17.156286px;}
.ws23_c01053{word-spacing:17.395398px;}
.ws27_c01053{word-spacing:17.634510px;}
.wsf_c01053{word-spacing:18.434610px;}
.ws10_c01053{word-spacing:18.649800px;}
.ws4_c01053{word-spacing:19.151910px;}
.ws2_c01053{word-spacing:19.223640px;}
.ws29_c01053{word-spacing:19.846296px;}
.ws1e_c01053{word-spacing:20.324520px;}
.ws17_c01053{word-spacing:21.160350px;}
.ws16_c01053{word-spacing:21.590730px;}
.ws3_c01053{word-spacing:22.247340px;}
.ws1f_c01053{word-spacing:22.536306px;}
.ws28_c01053{word-spacing:22.894974px;}
.ws1b_c01053{word-spacing:23.025330px;}
.ws14_c01053{word-spacing:23.312250px;}
.ws6_c01053{word-spacing:23.383980px;}
.ws20_c01053{word-spacing:23.791644px;}
.ws5_c01053{word-spacing:23.886090px;}
.wsc_c01053{word-spacing:23.957820px;}
.wsa_c01053{word-spacing:24.173010px;}
.ws19_c01053{word-spacing:24.890310px;}
.wsd_c01053{word-spacing:25.033770px;}
.ws26_c01053{word-spacing:25.286094px;}
.ws25_c01053{word-spacing:25.584984px;}
.ws13_c01053{word-spacing:25.607610px;}
.ws9_c01053{word-spacing:25.822800px;}
.ws1a_c01053{word-spacing:26.181450px;}
.ws15_c01053{word-spacing:26.253180px;}
.ws11_c01053{word-spacing:26.755290px;}
.ws0_c01053{word-spacing:26.827020px;}
.ws12_c01053{word-spacing:27.329130px;}
.ws18_c01053{word-spacing:27.616050px;}
.wsb_c01053{word-spacing:28.476810px;}
.ws7_c01053{word-spacing:30.987360px;}
.ws1c_c01053{word-spacing:31.704660px;}
.ws8_c01053{word-spacing:34.358670px;}
._3_c01053{margin-left:-40.742640px;}
._a_c01053{margin-left:-37.084410px;}
._e_c01053{margin-left:-35.936730px;}
._5_c01053{margin-left:-34.358670px;}
._12_c01053{margin-left:-32.525742px;}
._2_c01053{margin-left:-31.417740px;}
._13_c01053{margin-left:-30.415284px;}
._f_c01053{margin-left:-28.405080px;}
._8_c01053{margin-left:-27.329130px;}
._15_c01053{margin-left:-23.435550px;}
._1_c01053{margin-left:-9.037980px;}
._7_c01053{margin-left:-7.101270px;}
._10_c01053{margin-left:-5.881860px;}
._9_c01053{margin-left:-3.945150px;}
._0_c01053{margin-left:-2.367090px;}
._d_c01053{margin-left:-1.219410px;}
._6_c01053{width:1.936710px;}
._b_c01053{width:3.658230px;}
._14_c01053{width:20.115006px;}
._11_c01053{width:28.692000px;}
._c_c01053{width:31.848450px;}
._4_c01053{width:560.072610px;}
.fc0_c01053{color:rgb(0,0,0);}
.fs2_c01053{font-size:41.844000px;}
.fs1_c01053{font-size:47.820000px;}
.fs3_c01053{font-size:59.778000px;}
.fs0_c01053{font-size:71.730000px;}
.y0_c01053{bottom:0.000000px;}
.y28_c01053{bottom:98.865000px;}
.y27_c01053{bottom:111.375000px;}
.y26_c01053{bottom:129.307500px;}
.y25_c01053{bottom:147.240000px;}
.y24_c01053{bottom:165.172500px;}
.y23_c01053{bottom:183.106500px;}
.y22_c01053{bottom:201.039000px;}
.y21_c01053{bottom:218.971500px;}
.y20_c01053{bottom:236.904000px;}
.y1f_c01053{bottom:260.260500px;}
.y1e_c01053{bottom:286.869000px;}
.y1d_c01053{bottom:313.759500px;}
.y1c_c01053{bottom:340.651500px;}
.y1b_c01053{bottom:367.542000px;}
.y1a_c01053{bottom:394.432500px;}
.y19_c01053{bottom:421.323000px;}
.y18_c01053{bottom:465.853500px;}
.y17_c01053{bottom:492.744000px;}
.y16_c01053{bottom:519.634500px;}
.y15_c01053{bottom:546.526500px;}
.y14_c01053{bottom:573.417000px;}
.y13_c01053{bottom:600.307500px;}
.y12_c01053{bottom:627.198000px;}
.y11_c01053{bottom:654.090000px;}
.y10_c01053{bottom:680.980500px;}
.yf_c01053{bottom:707.871000px;}
.ye_c01053{bottom:734.761500px;}
.yd_c01053{bottom:761.653500px;}
.yc_c01053{bottom:807.384000px;}
.yb_c01053{bottom:834.274500px;}
.ya_c01053{bottom:861.165000px;}
.y9_c01053{bottom:888.055500px;}
.y8_c01053{bottom:933.786000px;}
.y7_c01053{bottom:960.678000px;}
.y6_c01053{bottom:987.568500px;}
.y5_c01053{bottom:1014.459000px;}
.y4_c01053{bottom:1041.349500px;}
.y3_c01053{bottom:1068.240000px;}
.y2_c01053{bottom:1095.132000px;}
.y1_c01053{bottom:1162.084500px;}
.h4_c01053{height:28.286544px;}
.h5_c01053{height:44.833500px;}
.h2_c01053{height:53.797500px;}
.h3_c01053{height:58.354320px;}
.h1_c01053{height:1263.750000px;}
.h0_c01053{height:1264.110000px;}
.w0_c01053{width:893.869500px;}
.w1_c01053{width:894.000000px;}
.x0_c01053{left:0.000000px;}
.x1_c01053{left:127.558500px;}
.x5_c01053{left:141.798000px;}
.x2_c01053{left:159.838500px;}
.x4_c01053{left:171.456000px;}
.x3_c01053{left:197.794500px;}
@media print{
.v2_c01053{vertical-align:-19.285333pt;}
.v0_c01053{vertical-align:0.000000pt;}
.v1_c01053{vertical-align:23.136000pt;}
.ls1_c01053{letter-spacing:0.000000pt;}
.ls0_c01053{letter-spacing:20.076192pt;}
.ws1_c01053{word-spacing:-0.063760pt;}
.wse_c01053{word-spacing:-0.042507pt;}
.ws1d_c01053{word-spacing:-0.037195pt;}
.ws2a_c01053{word-spacing:0.000000pt;}
.ws22_c01053{word-spacing:13.611248pt;}
.ws24_c01053{word-spacing:13.868496pt;}
.ws21_c01053{word-spacing:15.250032pt;}
.ws23_c01053{word-spacing:15.462576pt;}
.ws27_c01053{word-spacing:15.675120pt;}
.wsf_c01053{word-spacing:16.386320pt;}
.ws10_c01053{word-spacing:16.577600pt;}
.ws4_c01053{word-spacing:17.023920pt;}
.ws2_c01053{word-spacing:17.087680pt;}
.ws29_c01053{word-spacing:17.641152pt;}
.ws1e_c01053{word-spacing:18.066240pt;}
.ws17_c01053{word-spacing:18.809200pt;}
.ws16_c01053{word-spacing:19.191760pt;}
.ws3_c01053{word-spacing:19.775413pt;}
.ws1f_c01053{word-spacing:20.032272pt;}
.ws28_c01053{word-spacing:20.351088pt;}
.ws1b_c01053{word-spacing:20.466960pt;}
.ws14_c01053{word-spacing:20.722000pt;}
.ws6_c01053{word-spacing:20.785760pt;}
.ws20_c01053{word-spacing:21.148128pt;}
.ws5_c01053{word-spacing:21.232080pt;}
.wsc_c01053{word-spacing:21.295840pt;}
.wsa_c01053{word-spacing:21.487120pt;}
.ws19_c01053{word-spacing:22.124720pt;}
.wsd_c01053{word-spacing:22.252240pt;}
.ws26_c01053{word-spacing:22.476528pt;}
.ws25_c01053{word-spacing:22.742208pt;}
.ws13_c01053{word-spacing:22.762320pt;}
.ws9_c01053{word-spacing:22.953600pt;}
.ws1a_c01053{word-spacing:23.272400pt;}
.ws15_c01053{word-spacing:23.336160pt;}
.ws11_c01053{word-spacing:23.782480pt;}
.ws0_c01053{word-spacing:23.846240pt;}
.ws12_c01053{word-spacing:24.292560pt;}
.ws18_c01053{word-spacing:24.547600pt;}
.wsb_c01053{word-spacing:25.312720pt;}
.ws7_c01053{word-spacing:27.544320pt;}
.ws1c_c01053{word-spacing:28.181920pt;}
.ws8_c01053{word-spacing:30.541040pt;}
._3_c01053{margin-left:-36.215680pt;}
._a_c01053{margin-left:-32.963920pt;}
._e_c01053{margin-left:-31.943760pt;}
._5_c01053{margin-left:-30.541040pt;}
._12_c01053{margin-left:-28.911771pt;}
._2_c01053{margin-left:-27.926880pt;}
._13_c01053{margin-left:-27.035808pt;}
._f_c01053{margin-left:-25.248960pt;}
._8_c01053{margin-left:-24.292560pt;}
._15_c01053{margin-left:-20.831600pt;}
._1_c01053{margin-left:-8.033760pt;}
._7_c01053{margin-left:-6.312240pt;}
._10_c01053{margin-left:-5.228320pt;}
._9_c01053{margin-left:-3.506800pt;}
._0_c01053{margin-left:-2.104080pt;}
._d_c01053{margin-left:-1.083920pt;}
._6_c01053{width:1.721520pt;}
._b_c01053{width:3.251760pt;}
._14_c01053{width:17.880005pt;}
._11_c01053{width:25.504000pt;}
._c_c01053{width:28.309733pt;}
._4_c01053{width:497.842320pt;}
.fs2_c01053{font-size:37.194667pt;}
.fs1_c01053{font-size:42.506667pt;}
.fs3_c01053{font-size:53.136000pt;}
.fs0_c01053{font-size:63.760000pt;}
.y0_c01053{bottom:0.000000pt;}
.y28_c01053{bottom:87.880000pt;}
.y27_c01053{bottom:99.000000pt;}
.y26_c01053{bottom:114.940000pt;}
.y25_c01053{bottom:130.880000pt;}
.y24_c01053{bottom:146.820000pt;}
.y23_c01053{bottom:162.761333pt;}
.y22_c01053{bottom:178.701333pt;}
.y21_c01053{bottom:194.641333pt;}
.y20_c01053{bottom:210.581333pt;}
.y1f_c01053{bottom:231.342667pt;}
.y1e_c01053{bottom:254.994667pt;}
.y1d_c01053{bottom:278.897333pt;}
.y1c_c01053{bottom:302.801333pt;}
.y1b_c01053{bottom:326.704000pt;}
.y1a_c01053{bottom:350.606667pt;}
.y19_c01053{bottom:374.509333pt;}
.y18_c01053{bottom:414.092000pt;}
.y17_c01053{bottom:437.994667pt;}
.y16_c01053{bottom:461.897333pt;}
.y15_c01053{bottom:485.801333pt;}
.y14_c01053{bottom:509.704000pt;}
.y13_c01053{bottom:533.606667pt;}
.y12_c01053{bottom:557.509333pt;}
.y11_c01053{bottom:581.413333pt;}
.y10_c01053{bottom:605.316000pt;}
.yf_c01053{bottom:629.218667pt;}
.ye_c01053{bottom:653.121333pt;}
.yd_c01053{bottom:677.025333pt;}
.yc_c01053{bottom:717.674667pt;}
.yb_c01053{bottom:741.577333pt;}
.ya_c01053{bottom:765.480000pt;}
.y9_c01053{bottom:789.382667pt;}
.y8_c01053{bottom:830.032000pt;}
.y7_c01053{bottom:853.936000pt;}
.y6_c01053{bottom:877.838667pt;}
.y5_c01053{bottom:901.741333pt;}
.y4_c01053{bottom:925.644000pt;}
.y3_c01053{bottom:949.546667pt;}
.y2_c01053{bottom:973.450667pt;}
.y1_c01053{bottom:1032.964000pt;}
.h4_c01053{height:25.143595pt;}
.h5_c01053{height:39.852000pt;}
.h2_c01053{height:47.820000pt;}
.h3_c01053{height:51.870507pt;}
.h1_c01053{height:1123.333333pt;}
.h0_c01053{height:1123.653333pt;}
.w0_c01053{width:794.550667pt;}
.w1_c01053{width:794.666667pt;}
.x0_c01053{left:0.000000pt;}
.x1_c01053{left:113.385333pt;}
.x5_c01053{left:126.042667pt;}
.x2_c01053{left:142.078667pt;}
.x4_c01053{left:152.405333pt;}
.x3_c01053{left:175.817333pt;}
}





/* 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_ee6da0184205056f81ab56b8.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.001000;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_5b10e55c0538440021b835b0.woff2')format("woff");}.ff2_c01054{font-family:ff2_c01054;line-height:1.001000;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_c01054;src:url('chunks/assets/font_7e4a6057bada6026113cf758.woff2')format("woff");}.ff3_c01054{font-family:ff3_c01054;line-height:0.697000;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_c01054;src:url('chunks/assets/font_e01a5902dc96437db3a11e66.woff2')format("woff");}.ff4_c01054{font-family:ff4_c01054;line-height:0.696000;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_c01054;src:url('chunks/assets/font_6615c9215fd824a0433d9b68.woff2')format("woff");}.ff5_c01054{font-family:ff5_c01054;line-height:1.000000;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_c01054;src:url('chunks/assets/font_aefb92a14c85c46860a91796.woff2')format("woff");}.ff6_c01054{font-family:ff6_c01054;line-height:1.000000;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);}
.v2_c01054{vertical-align:-21.690000px;}
.v0_c01054{vertical-align:0.000000px;}
.v3_c01054{vertical-align:21.690000px;}
.v1_c01054{vertical-align:26.028000px;}
.ls1_c01054{letter-spacing:0.000000px;}
.ls0_c01054{letter-spacing:18.442764px;}
.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;}
}
.ws1_c01054{word-spacing:-0.071730px;}
.ws1f_c01054{word-spacing:-0.059778px;}
.ws9_c01054{word-spacing:-0.047820px;}
.ws1d_c01054{word-spacing:-0.041844px;}
.ws30_c01054{word-spacing:0.000000px;}
.ws2c_c01054{word-spacing:14.107608px;}
.ws2f_c01054{word-spacing:15.362946px;}
.ws2e_c01054{word-spacing:15.388740px;}
.wse_c01054{word-spacing:15.637140px;}
.ws2b_c01054{word-spacing:16.080282px;}
.ws1e_c01054{word-spacing:16.558506px;}
.ws4_c01054{word-spacing:18.506340px;}
.wsd_c01054{word-spacing:19.654020px;}
.ws8_c01054{word-spacing:19.797480px;}
.ws22_c01054{word-spacing:19.846296px;}
.ws23_c01054{word-spacing:19.906074px;}
.wsa_c01054{word-spacing:21.590730px;}
.ws29_c01054{word-spacing:21.699414px;}
.ws21_c01054{word-spacing:22.237416px;}
.ws17_c01054{word-spacing:22.738410px;}
.ws5_c01054{word-spacing:22.881870px;}
.ws19_c01054{word-spacing:22.953600px;}
.ws2a_c01054{word-spacing:23.014530px;}
.wsc_c01054{word-spacing:23.312250px;}
.ws3_c01054{word-spacing:23.383980px;}
.ws20_c01054{word-spacing:23.492754px;}
.ws1a_c01054{word-spacing:23.599170px;}
.ws15_c01054{word-spacing:23.742630px;}
.ws10_c01054{word-spacing:23.886090px;}
.wsb_c01054{word-spacing:24.101280px;}
.ws14_c01054{word-spacing:24.316470px;}
.ws27_c01054{word-spacing:24.508980px;}
.ws25_c01054{word-spacing:24.568758px;}
.ws24_c01054{word-spacing:24.807870px;}
.ws28_c01054{word-spacing:25.465428px;}
.ws6_c01054{word-spacing:25.535880px;}
.ws26_c01054{word-spacing:25.644762px;}
.wsf_c01054{word-spacing:26.611830px;}
.ws0_c01054{word-spacing:26.827020px;}
.ws16_c01054{word-spacing:27.257400px;}
.ws2_c01054{word-spacing:27.759510px;}
.ws2d_c01054{word-spacing:27.916326px;}
.ws18_c01054{word-spacing:28.189890px;}
.ws1b_c01054{word-spacing:29.122380px;}
.ws11_c01054{word-spacing:30.485250px;}
.ws12_c01054{word-spacing:31.059090px;}
.ws13_c01054{word-spacing:32.135040px;}
.ws1c_c01054{word-spacing:32.153340px;}
.ws7_c01054{word-spacing:34.860780px;}
._3_c01054{margin-left:-40.742640px;}
._8_c01054{margin-left:-37.084410px;}
._9_c01054{margin-left:-35.147700px;}
._f_c01054{margin-left:-32.421960px;}
._2_c01054{margin-left:-31.417740px;}
._11_c01054{margin-left:-29.674152px;}
._6_c01054{margin-left:-27.329130px;}
._12_c01054{margin-left:-24.183720px;}
._13_c01054{margin-left:-22.731078px;}
._1_c01054{margin-left:-9.037980px;}
._5_c01054{margin-left:-7.890300px;}
._c_c01054{margin-left:-5.810130px;}
._a_c01054{margin-left:-3.514770px;}
._0_c01054{margin-left:-2.367090px;}
._e_c01054{margin-left:-1.075950px;}
._b_c01054{width:1.936710px;}
._d_c01054{width:3.640350px;}
._10_c01054{width:26.109720px;}
._7_c01054{width:29.696220px;}
._4_c01054{width:560.072610px;}
.fc0_c01054{color:rgb(0,0,0);}
.fs2_c01054{font-size:41.844000px;}
.fs1_c01054{font-size:47.820000px;}
.fs3_c01054{font-size:59.778000px;}
.fs0_c01054{font-size:71.730000px;}
.y0_c01054{bottom:0.000000px;}
.y2a_c01054{bottom:94.815000px;}
.y29_c01054{bottom:118.171500px;}
.y28_c01054{bottom:130.680000px;}
.y27_c01054{bottom:148.614000px;}
.y26_c01054{bottom:166.546500px;}
.y25_c01054{bottom:184.479000px;}
.y24_c01054{bottom:202.411500px;}
.y23_c01054{bottom:225.768000px;}
.y22_c01054{bottom:243.700500px;}
.y21_c01054{bottom:256.210500px;}
.y20_c01054{bottom:274.143000px;}
.y1f_c01054{bottom:297.498000px;}
.y1e_c01054{bottom:324.255000px;}
.y1d_c01054{bottom:351.145500px;}
.y1c_c01054{bottom:378.036000px;}
.y1b_c01054{bottom:404.928000px;}
.y1a_c01054{bottom:431.818500px;}
.y19_c01054{bottom:458.709000px;}
.y18_c01054{bottom:485.599500px;}
.y17_c01054{bottom:512.491500px;}
.y16_c01054{bottom:557.314500px;}
.y15_c01054{bottom:584.205000px;}
.y14_c01054{bottom:611.095500px;}
.y13_c01054{bottom:637.987500px;}
.y12_c01054{bottom:664.878000px;}
.y11_c01054{bottom:691.768500px;}
.y10_c01054{bottom:718.659000px;}
.yf_c01054{bottom:745.551000px;}
.ye_c01054{bottom:772.441500px;}
.yd_c01054{bottom:799.332000px;}
.yc_c01054{bottom:826.222500px;}
.yb_c01054{bottom:853.114500px;}
.ya_c01054{bottom:880.005000px;}
.y9_c01054{bottom:906.895500px;}
.y8_c01054{bottom:933.786000px;}
.y7_c01054{bottom:960.678000px;}
.y6_c01054{bottom:987.568500px;}
.y5_c01054{bottom:1014.459000px;}
.y4_c01054{bottom:1041.349500px;}
.y3_c01054{bottom:1068.240000px;}
.y2_c01054{bottom:1095.132000px;}
.y1_c01054{bottom:1162.084500px;}
.h5_c01054{height:28.286544px;}
.h6_c01054{height:44.833500px;}
.h7_c01054{height:49.976544px;}
.h2_c01054{height:53.797500px;}
.h3_c01054{height:58.354320px;}
.h4_c01054{height:58.360320px;}
.h1_c01054{height:1263.750000px;}
.h0_c01054{height:1264.110000px;}
.w0_c01054{width:893.869500px;}
.w1_c01054{width:894.000000px;}
.x0_c01054{left:0.000000px;}
.x1_c01054{left:127.558500px;}
.x3_c01054{left:141.798000px;}
.x2_c01054{left:159.838500px;}
@media print{
.v2_c01054{vertical-align:-19.280000pt;}
.v0_c01054{vertical-align:0.000000pt;}
.v3_c01054{vertical-align:19.280000pt;}
.v1_c01054{vertical-align:23.136000pt;}
.ls1_c01054{letter-spacing:0.000000pt;}
.ls0_c01054{letter-spacing:16.393568pt;}
.ws1_c01054{word-spacing:-0.063760pt;}
.ws1f_c01054{word-spacing:-0.053136pt;}
.ws9_c01054{word-spacing:-0.042507pt;}
.ws1d_c01054{word-spacing:-0.037195pt;}
.ws30_c01054{word-spacing:0.000000pt;}
.ws2c_c01054{word-spacing:12.540096pt;}
.ws2f_c01054{word-spacing:13.655952pt;}
.ws2e_c01054{word-spacing:13.678880pt;}
.wse_c01054{word-spacing:13.899680pt;}
.ws2b_c01054{word-spacing:14.293584pt;}
.ws1e_c01054{word-spacing:14.718672pt;}
.ws4_c01054{word-spacing:16.450080pt;}
.wsd_c01054{word-spacing:17.470240pt;}
.ws8_c01054{word-spacing:17.597760pt;}
.ws22_c01054{word-spacing:17.641152pt;}
.ws23_c01054{word-spacing:17.694288pt;}
.wsa_c01054{word-spacing:19.191760pt;}
.ws29_c01054{word-spacing:19.288368pt;}
.ws21_c01054{word-spacing:19.766592pt;}
.ws17_c01054{word-spacing:20.211920pt;}
.ws5_c01054{word-spacing:20.339440pt;}
.ws19_c01054{word-spacing:20.403200pt;}
.ws2a_c01054{word-spacing:20.457360pt;}
.wsc_c01054{word-spacing:20.722000pt;}
.ws3_c01054{word-spacing:20.785760pt;}
.ws20_c01054{word-spacing:20.882448pt;}
.ws1a_c01054{word-spacing:20.977040pt;}
.ws15_c01054{word-spacing:21.104560pt;}
.ws10_c01054{word-spacing:21.232080pt;}
.wsb_c01054{word-spacing:21.423360pt;}
.ws14_c01054{word-spacing:21.614640pt;}
.ws27_c01054{word-spacing:21.785760pt;}
.ws25_c01054{word-spacing:21.838896pt;}
.ws24_c01054{word-spacing:22.051440pt;}
.ws28_c01054{word-spacing:22.635936pt;}
.ws6_c01054{word-spacing:22.698560pt;}
.ws26_c01054{word-spacing:22.795344pt;}
.wsf_c01054{word-spacing:23.654960pt;}
.ws0_c01054{word-spacing:23.846240pt;}
.ws16_c01054{word-spacing:24.228800pt;}
.ws2_c01054{word-spacing:24.675120pt;}
.ws2d_c01054{word-spacing:24.814512pt;}
.ws18_c01054{word-spacing:25.057680pt;}
.ws1b_c01054{word-spacing:25.886560pt;}
.ws11_c01054{word-spacing:27.098000pt;}
.ws12_c01054{word-spacing:27.608080pt;}
.ws13_c01054{word-spacing:28.564480pt;}
.ws1c_c01054{word-spacing:28.580747pt;}
.ws7_c01054{word-spacing:30.987360pt;}
._3_c01054{margin-left:-36.215680pt;}
._8_c01054{margin-left:-32.963920pt;}
._9_c01054{margin-left:-31.242400pt;}
._f_c01054{margin-left:-28.819520pt;}
._2_c01054{margin-left:-27.926880pt;}
._11_c01054{margin-left:-26.377024pt;}
._6_c01054{margin-left:-24.292560pt;}
._12_c01054{margin-left:-21.496640pt;}
._13_c01054{margin-left:-20.205403pt;}
._1_c01054{margin-left:-8.033760pt;}
._5_c01054{margin-left:-7.013600pt;}
._c_c01054{margin-left:-5.164560pt;}
._a_c01054{margin-left:-3.124240pt;}
._0_c01054{margin-left:-2.104080pt;}
._e_c01054{margin-left:-0.956400pt;}
._b_c01054{width:1.721520pt;}
._d_c01054{width:3.235867pt;}
._10_c01054{width:23.208640pt;}
._7_c01054{width:26.396640pt;}
._4_c01054{width:497.842320pt;}
.fs2_c01054{font-size:37.194667pt;}
.fs1_c01054{font-size:42.506667pt;}
.fs3_c01054{font-size:53.136000pt;}
.fs0_c01054{font-size:63.760000pt;}
.y0_c01054{bottom:0.000000pt;}
.y2a_c01054{bottom:84.280000pt;}
.y29_c01054{bottom:105.041333pt;}
.y28_c01054{bottom:116.160000pt;}
.y27_c01054{bottom:132.101333pt;}
.y26_c01054{bottom:148.041333pt;}
.y25_c01054{bottom:163.981333pt;}
.y24_c01054{bottom:179.921333pt;}
.y23_c01054{bottom:200.682667pt;}
.y22_c01054{bottom:216.622667pt;}
.y21_c01054{bottom:227.742667pt;}
.y20_c01054{bottom:243.682667pt;}
.y1f_c01054{bottom:264.442667pt;}
.y1e_c01054{bottom:288.226667pt;}
.y1d_c01054{bottom:312.129333pt;}
.y1c_c01054{bottom:336.032000pt;}
.y1b_c01054{bottom:359.936000pt;}
.y1a_c01054{bottom:383.838667pt;}
.y19_c01054{bottom:407.741333pt;}
.y18_c01054{bottom:431.644000pt;}
.y17_c01054{bottom:455.548000pt;}
.y16_c01054{bottom:495.390667pt;}
.y15_c01054{bottom:519.293333pt;}
.y14_c01054{bottom:543.196000pt;}
.y13_c01054{bottom:567.100000pt;}
.y12_c01054{bottom:591.002667pt;}
.y11_c01054{bottom:614.905333pt;}
.y10_c01054{bottom:638.808000pt;}
.yf_c01054{bottom:662.712000pt;}
.ye_c01054{bottom:686.614667pt;}
.yd_c01054{bottom:710.517333pt;}
.yc_c01054{bottom:734.420000pt;}
.yb_c01054{bottom:758.324000pt;}
.ya_c01054{bottom:782.226667pt;}
.y9_c01054{bottom:806.129333pt;}
.y8_c01054{bottom:830.032000pt;}
.y7_c01054{bottom:853.936000pt;}
.y6_c01054{bottom:877.838667pt;}
.y5_c01054{bottom:901.741333pt;}
.y4_c01054{bottom:925.644000pt;}
.y3_c01054{bottom:949.546667pt;}
.y2_c01054{bottom:973.450667pt;}
.y1_c01054{bottom:1032.964000pt;}
.h5_c01054{height:25.143595pt;}
.h6_c01054{height:39.852000pt;}
.h7_c01054{height:44.423595pt;}
.h2_c01054{height:47.820000pt;}
.h3_c01054{height:51.870507pt;}
.h4_c01054{height:51.875840pt;}
.h1_c01054{height:1123.333333pt;}
.h0_c01054{height:1123.653333pt;}
.w0_c01054{width:794.550667pt;}
.w1_c01054{width:794.666667pt;}
.x0_c01054{left:0.000000pt;}
.x1_c01054{left:113.385333pt;}
.x3_c01054{left:126.042667pt;}
.x2_c01054{left:142.078667pt;}
}





/* 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_ee6da0184205056f81ab56b8.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.001000;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_86a678ebb5cbae81a59ac743.woff2')format("woff");}.ff2_c01055{font-family:ff2_c01055;line-height:1.001000;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_c01055;src:url('chunks/assets/font_051c94b82fc2038a13d81be2.woff2')format("woff");}.ff3_c01055{font-family:ff3_c01055;line-height:1.000000;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_c01055;src:url('chunks/assets/font_66acd5548a24650d9009b72e.woff2')format("woff");}.ff4_c01055{font-family:ff4_c01055;line-height:0.697000;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_c01055;src:url('chunks/assets/font_4311b2eefd566e2f34723471.woff2')format("woff");}.ff5_c01055{font-family:ff5_c01055;line-height:1.001000;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_c01055;src:url('chunks/assets/font_38a12a44e7f8514bc7df7f1d.woff2')format("woff");}.ff6_c01055{font-family:ff6_c01055;line-height:1.000000;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_c01055;src:url('chunks/assets/font_b4e106ca56ccebdaf322538d.woff2')format("woff");}.ff7_c01055{font-family:ff7_c01055;line-height:1.000000;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_c01055;src:url('chunks/assets/font_b2729fe4b4b4c251075bf590.woff2')format("woff");}.ff8_c01055{font-family:ff8_c01055;line-height:0.696000;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);}
.v6_c01055{vertical-align:-21.696000px;}
.v0_c01055{vertical-align:0.000000px;}
.v2_c01055{vertical-align:7.170000px;}
.v4_c01055{vertical-align:15.108000px;}
.v3_c01055{vertical-align:18.132000px;}
.v5_c01055{vertical-align:21.690000px;}
.v1_c01055{vertical-align:26.034000px;}
.ls1_c01055{letter-spacing:0.000000px;}
.ls0_c01055{letter-spacing:19.918764px;}
.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;}
}
.ws1_c01055{word-spacing:-0.071730px;}
.ws19_c01055{word-spacing:-0.059778px;}
.wse_c01055{word-spacing:-0.047820px;}
.ws23_c01055{word-spacing:-0.041844px;}
.ws28_c01055{word-spacing:0.000000px;}
.wsf_c01055{word-spacing:16.139250px;}
.ws18_c01055{word-spacing:16.850664px;}
.ws1a_c01055{word-spacing:16.857396px;}
.ws1f_c01055{word-spacing:18.292068px;}
.ws14_c01055{word-spacing:19.295370px;}
.ws20_c01055{word-spacing:19.368072px;}
.ws13_c01055{word-spacing:19.510560px;}
.ws1b_c01055{word-spacing:19.607184px;}
.ws22_c01055{word-spacing:19.846296px;}
.ws1c_c01055{word-spacing:20.683188px;}
.ws21_c01055{word-spacing:20.862522px;}
.ws27_c01055{word-spacing:21.280968px;}
.ws4_c01055{word-spacing:21.447270px;}
.ws10_c01055{word-spacing:21.662460px;}
.ws1d_c01055{word-spacing:22.117860px;}
.ws5_c01055{word-spacing:22.594950px;}
.ws9_c01055{word-spacing:22.881870px;}
.ws16_c01055{word-spacing:23.134086px;}
.ws17_c01055{word-spacing:23.193864px;}
.ws2_c01055{word-spacing:23.312250px;}
.ws8_c01055{word-spacing:23.455710px;}
.wsa_c01055{word-spacing:23.670900px;}
.ws1e_c01055{word-spacing:24.090534px;}
.ws15_c01055{word-spacing:25.033770px;}
.ws25_c01055{word-spacing:25.226316px;}
.ws26_c01055{word-spacing:25.943652px;}
.ws0_c01055{word-spacing:26.827020px;}
.wsd_c01055{word-spacing:27.472590px;}
.wsc_c01055{word-spacing:28.046430px;}
.ws24_c01055{word-spacing:28.334772px;}
.ws6_c01055{word-spacing:29.122380px;}
.ws11_c01055{word-spacing:29.337570px;}
.wsb_c01055{word-spacing:29.767950px;}
.ws12_c01055{word-spacing:31.632930px;}
.ws3_c01055{word-spacing:32.450652px;}
.ws7_c01055{word-spacing:34.215210px;}
._3_c01055{margin-left:-40.742640px;}
._7_c01055{margin-left:-37.084410px;}
._5_c01055{margin-left:-35.147700px;}
._c_c01055{margin-left:-32.780610px;}
._2_c01055{margin-left:-31.417740px;}
._17_c01055{margin-left:-30.368970px;}
._15_c01055{margin-left:-29.016360px;}
._e_c01055{margin-left:-27.329130px;}
._18_c01055{margin-left:-23.283558px;}
._11_c01055{margin-left:-10.818030px;}
._1_c01055{margin-left:-9.037980px;}
._d_c01055{margin-left:-7.818570px;}
._9_c01055{margin-left:-5.853168px;}
._b_c01055{margin-left:-3.801690px;}
._0_c01055{margin-left:-2.367090px;}
._a_c01055{margin-left:-1.004220px;}
._6_c01055{width:1.864980px;}
._10_c01055{width:3.473778px;}
._14_c01055{width:5.653500px;}
._16_c01055{width:8.383176px;}
._f_c01055{width:24.746850px;}
._13_c01055{width:28.469700px;}
._12_c01055{width:31.561200px;}
._8_c01055{width:95.200056px;}
._4_c01055{width:560.072610px;}
.fc0_c01055{color:rgb(0,0,0);}
.fs4_c01055{font-size:41.844000px;}
.fs2_c01055{font-size:47.820000px;}
.fs3_c01055{font-size:59.778000px;}
.fs0_c01055{font-size:71.730000px;}
.fs1_c01055{font-size:86.076000px;}
.y0_c01055{bottom:0.000000px;}
.y27_c01055{bottom:116.566500px;}
.y26_c01055{bottom:134.500500px;}
.y25_c01055{bottom:157.855500px;}
.y24_c01055{bottom:170.365500px;}
.y23_c01055{bottom:188.298000px;}
.y22_c01055{bottom:211.654500px;}
.y21_c01055{bottom:224.164500px;}
.y20_c01055{bottom:242.097000px;}
.y1f_c01055{bottom:260.029500px;}
.y1e_c01055{bottom:277.962000px;}
.y1d_c01055{bottom:295.894500px;}
.y1c_c01055{bottom:313.827000px;}
.y1b_c01055{bottom:331.761000px;}
.y1a_c01055{bottom:349.693500px;}
.y19_c01055{bottom:379.987500px;}
.y18_c01055{bottom:406.878000px;}
.y17_c01055{bottom:433.770000px;}
.y16_c01055{bottom:460.660500px;}
.y15_c01055{bottom:487.551000px;}
.y14_c01055{bottom:522.163500px;}
.y13_c01055{bottom:589.660500px;}
.y12_c01055{bottom:616.551000px;}
.y11_c01055{bottom:643.441500px;}
.y10_c01055{bottom:670.332000px;}
.yf_c01055{bottom:697.224000px;}
.ye_c01055{bottom:724.114500px;}
.yd_c01055{bottom:751.005000px;}
.yc_c01055{bottom:777.895500px;}
.yb_c01055{bottom:804.787500px;}
.ya_c01055{bottom:831.678000px;}
.y9_c01055{bottom:858.568500px;}
.y8_c01055{bottom:885.459000px;}
.y7_c01055{bottom:912.349500px;}
.y6_c01055{bottom:939.241500px;}
.y5_c01055{bottom:966.132000px;}
.y4_c01055{bottom:993.022500px;}
.y3_c01055{bottom:1027.635000px;}
.y2_c01055{bottom:1095.132000px;}
.y1_c01055{bottom:1162.084500px;}
.h9_c01055{height:28.286544px;}
.h8_c01055{height:44.833500px;}
.h2_c01055{height:53.797500px;}
.h4_c01055{height:58.360320px;}
.h7_c01055{height:59.941500px;}
.h3_c01055{height:64.557000px;}
.h5_c01055{height:71.727000px;}
.h6_c01055{height:71.929500px;}
.h1_c01055{height:1263.750000px;}
.h0_c01055{height:1264.110000px;}
.w0_c01055{width:893.869500px;}
.w1_c01055{width:894.000000px;}
.x0_c01055{left:0.000000px;}
.x1_c01055{left:127.558500px;}
.x7_c01055{left:141.796500px;}
.x2_c01055{left:159.838500px;}
.x5_c01055{left:332.437500px;}
.x3_c01055{left:430.806000px;}
.x6_c01055{left:586.600500px;}
.x4_c01055{left:607.875000px;}
@media print{
.v6_c01055{vertical-align:-19.285333pt;}
.v0_c01055{vertical-align:0.000000pt;}
.v2_c01055{vertical-align:6.373333pt;}
.v4_c01055{vertical-align:13.429333pt;}
.v3_c01055{vertical-align:16.117333pt;}
.v5_c01055{vertical-align:19.280000pt;}
.v1_c01055{vertical-align:23.141333pt;}
.ls1_c01055{letter-spacing:0.000000pt;}
.ls0_c01055{letter-spacing:17.705568pt;}
.ws1_c01055{word-spacing:-0.063760pt;}
.ws19_c01055{word-spacing:-0.053136pt;}
.wse_c01055{word-spacing:-0.042507pt;}
.ws23_c01055{word-spacing:-0.037195pt;}
.ws28_c01055{word-spacing:0.000000pt;}
.wsf_c01055{word-spacing:14.346000pt;}
.ws18_c01055{word-spacing:14.978368pt;}
.ws1a_c01055{word-spacing:14.984352pt;}
.ws1f_c01055{word-spacing:16.259616pt;}
.ws14_c01055{word-spacing:17.151440pt;}
.ws20_c01055{word-spacing:17.216064pt;}
.ws13_c01055{word-spacing:17.342720pt;}
.ws1b_c01055{word-spacing:17.428608pt;}
.ws22_c01055{word-spacing:17.641152pt;}
.ws1c_c01055{word-spacing:18.385056pt;}
.ws21_c01055{word-spacing:18.544464pt;}
.ws27_c01055{word-spacing:18.916416pt;}
.ws4_c01055{word-spacing:19.064240pt;}
.ws10_c01055{word-spacing:19.255520pt;}
.ws1d_c01055{word-spacing:19.660320pt;}
.ws5_c01055{word-spacing:20.084400pt;}
.ws9_c01055{word-spacing:20.339440pt;}
.ws16_c01055{word-spacing:20.563632pt;}
.ws17_c01055{word-spacing:20.616768pt;}
.ws2_c01055{word-spacing:20.722000pt;}
.ws8_c01055{word-spacing:20.849520pt;}
.wsa_c01055{word-spacing:21.040800pt;}
.ws1e_c01055{word-spacing:21.413808pt;}
.ws15_c01055{word-spacing:22.252240pt;}
.ws25_c01055{word-spacing:22.423392pt;}
.ws26_c01055{word-spacing:23.061024pt;}
.ws0_c01055{word-spacing:23.846240pt;}
.wsd_c01055{word-spacing:24.420080pt;}
.wsc_c01055{word-spacing:24.930160pt;}
.ws24_c01055{word-spacing:25.186464pt;}
.ws6_c01055{word-spacing:25.886560pt;}
.ws11_c01055{word-spacing:26.077840pt;}
.wsb_c01055{word-spacing:26.460400pt;}
.ws12_c01055{word-spacing:28.118160pt;}
.ws3_c01055{word-spacing:28.845024pt;}
.ws7_c01055{word-spacing:30.413520pt;}
._3_c01055{margin-left:-36.215680pt;}
._7_c01055{margin-left:-32.963920pt;}
._5_c01055{margin-left:-31.242400pt;}
._c_c01055{margin-left:-29.138320pt;}
._2_c01055{margin-left:-27.926880pt;}
._17_c01055{margin-left:-26.994640pt;}
._15_c01055{margin-left:-25.792320pt;}
._e_c01055{margin-left:-24.292560pt;}
._18_c01055{margin-left:-20.696496pt;}
._11_c01055{margin-left:-9.616027pt;}
._1_c01055{margin-left:-8.033760pt;}
._d_c01055{margin-left:-6.949840pt;}
._9_c01055{margin-left:-5.202816pt;}
._b_c01055{margin-left:-3.379280pt;}
._0_c01055{margin-left:-2.104080pt;}
._a_c01055{margin-left:-0.892640pt;}
._6_c01055{width:1.657760pt;}
._10_c01055{width:3.087803pt;}
._14_c01055{width:5.025333pt;}
._16_c01055{width:7.451712pt;}
._f_c01055{width:21.997200pt;}
._13_c01055{width:25.306400pt;}
._12_c01055{width:28.054400pt;}
._8_c01055{width:84.622272pt;}
._4_c01055{width:497.842320pt;}
.fs4_c01055{font-size:37.194667pt;}
.fs2_c01055{font-size:42.506667pt;}
.fs3_c01055{font-size:53.136000pt;}
.fs0_c01055{font-size:63.760000pt;}
.fs1_c01055{font-size:76.512000pt;}
.y0_c01055{bottom:0.000000pt;}
.y27_c01055{bottom:103.614667pt;}
.y26_c01055{bottom:119.556000pt;}
.y25_c01055{bottom:140.316000pt;}
.y24_c01055{bottom:151.436000pt;}
.y23_c01055{bottom:167.376000pt;}
.y22_c01055{bottom:188.137333pt;}
.y21_c01055{bottom:199.257333pt;}
.y20_c01055{bottom:215.197333pt;}
.y1f_c01055{bottom:231.137333pt;}
.y1e_c01055{bottom:247.077333pt;}
.y1d_c01055{bottom:263.017333pt;}
.y1c_c01055{bottom:278.957333pt;}
.y1b_c01055{bottom:294.898667pt;}
.y1a_c01055{bottom:310.838667pt;}
.y19_c01055{bottom:337.766667pt;}
.y18_c01055{bottom:361.669333pt;}
.y17_c01055{bottom:385.573333pt;}
.y16_c01055{bottom:409.476000pt;}
.y15_c01055{bottom:433.378667pt;}
.y14_c01055{bottom:464.145333pt;}
.y13_c01055{bottom:524.142667pt;}
.y12_c01055{bottom:548.045333pt;}
.y11_c01055{bottom:571.948000pt;}
.y10_c01055{bottom:595.850667pt;}
.yf_c01055{bottom:619.754667pt;}
.ye_c01055{bottom:643.657333pt;}
.yd_c01055{bottom:667.560000pt;}
.yc_c01055{bottom:691.462667pt;}
.yb_c01055{bottom:715.366667pt;}
.ya_c01055{bottom:739.269333pt;}
.y9_c01055{bottom:763.172000pt;}
.y8_c01055{bottom:787.074667pt;}
.y7_c01055{bottom:810.977333pt;}
.y6_c01055{bottom:834.881333pt;}
.y5_c01055{bottom:858.784000pt;}
.y4_c01055{bottom:882.686667pt;}
.y3_c01055{bottom:913.453333pt;}
.y2_c01055{bottom:973.450667pt;}
.y1_c01055{bottom:1032.964000pt;}
.h9_c01055{height:25.143595pt;}
.h8_c01055{height:39.852000pt;}
.h2_c01055{height:47.820000pt;}
.h4_c01055{height:51.875840pt;}
.h7_c01055{height:53.281333pt;}
.h3_c01055{height:57.384000pt;}
.h5_c01055{height:63.757333pt;}
.h6_c01055{height:63.937333pt;}
.h1_c01055{height:1123.333333pt;}
.h0_c01055{height:1123.653333pt;}
.w0_c01055{width:794.550667pt;}
.w1_c01055{width:794.666667pt;}
.x0_c01055{left:0.000000pt;}
.x1_c01055{left:113.385333pt;}
.x7_c01055{left:126.041333pt;}
.x2_c01055{left:142.078667pt;}
.x5_c01055{left:295.500000pt;}
.x3_c01055{left:382.938667pt;}
.x6_c01055{left:521.422667pt;}
.x4_c01055{left:540.333333pt;}
}





/* 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_14d56f95f3967c123fc2c066.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.001000;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_80fd6f50e8a299c35ff4791e.woff2')format("woff");}.ff2_c01056{font-family:ff2_c01056;line-height:1.001000;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_c01056;src:url('chunks/assets/font_66acd5548a24650d9009b72e.woff2')format("woff");}.ff3_c01056{font-family:ff3_c01056;line-height:0.697000;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_c01056;src:url('chunks/assets/font_2630dc0db929c1889b3247d9.woff2')format("woff");}.ff4_c01056{font-family:ff4_c01056;line-height:1.001000;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_c01056;src:url('chunks/assets/font_b2729fe4b4b4c251075bf590.woff2')format("woff");}.ff5_c01056{font-family:ff5_c01056;line-height:0.696000;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_c01056;src:url('chunks/assets/font_620bfb300aa0e08bf479baa3.woff2')format("woff");}.ff6_c01056{font-family:ff6_c01056;line-height:1.000000;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_c01056;src:url('chunks/assets/font_9f33b382132497097957ae8e.woff2')format("woff");}.ff7_c01056{font-family:ff7_c01056;line-height:1.000000;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);}
.v3_c01056{vertical-align:-21.690000px;}
.v0_c01056{vertical-align:0.000000px;}
.v2_c01056{vertical-align:18.132000px;}
.v1_c01056{vertical-align:26.034000px;}
.ls0_c01056{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01056{word-spacing:-0.071730px;}
.ws6_c01056{word-spacing:-0.047820px;}
.ws13_c01056{word-spacing:-0.041844px;}
.ws27_c01056{word-spacing:0.000000px;}
.ws14_c01056{word-spacing:16.917174px;}
.ws15_c01056{word-spacing:17.096508px;}
.ws3_c01056{word-spacing:17.286930px;}
.ws10_c01056{word-spacing:18.147690px;}
.ws16_c01056{word-spacing:18.770292px;}
.ws1d_c01056{word-spacing:19.248516px;}
.ws22_c01056{word-spacing:19.547406px;}
.ws18_c01056{word-spacing:19.846296px;}
.ws1e_c01056{word-spacing:20.742966px;}
.ws1a_c01056{word-spacing:20.802744px;}
.ws8_c01056{word-spacing:20.945160px;}
.ws26_c01056{word-spacing:21.280968px;}
.ws17_c01056{word-spacing:21.340746px;}
.ws11_c01056{word-spacing:21.375540px;}
.ws4_c01056{word-spacing:21.805920px;}
.ws23_c01056{word-spacing:21.878748px;}
.ws2_c01056{word-spacing:22.021110px;}
.ws19_c01056{word-spacing:22.177638px;}
.ws24_c01056{word-spacing:23.253642px;}
.ws9_c01056{word-spacing:23.312250px;}
.ws25_c01056{word-spacing:24.449202px;}
.ws5_c01056{word-spacing:24.845340px;}
.wsb_c01056{word-spacing:25.033770px;}
.ws1b_c01056{word-spacing:25.226316px;}
.wsc_c01056{word-spacing:25.248960px;}
.ws1c_c01056{word-spacing:26.302320px;}
.ws21_c01056{word-spacing:26.780544px;}
.ws0_c01056{word-spacing:26.827020px;}
.ws1f_c01056{word-spacing:26.840322px;}
.ws12_c01056{word-spacing:27.544320px;}
.ws20_c01056{word-spacing:27.736992px;}
.wsd_c01056{word-spacing:28.189890px;}
.ws7_c01056{word-spacing:28.620270px;}
.wsf_c01056{word-spacing:31.489470px;}
.wse_c01056{word-spacing:31.776390px;}
.wsa_c01056{word-spacing:32.421960px;}
._3_c01056{margin-left:-40.742640px;}
._b_c01056{margin-left:-37.873440px;}
._8_c01056{margin-left:-35.865000px;}
._6_c01056{margin-left:-34.358670px;}
._7_c01056{margin-left:-32.421960px;}
._2_c01056{margin-left:-31.417740px;}
._10_c01056{margin-left:-29.337570px;}
._e_c01056{margin-left:-27.329130px;}
._14_c01056{margin-left:-24.180840px;}
._15_c01056{margin-left:-22.619004px;}
._1_c01056{margin-left:-9.037980px;}
._d_c01056{margin-left:-7.890300px;}
._18_c01056{margin-left:-6.836676px;}
._f_c01056{margin-left:-5.810130px;}
._c_c01056{margin-left:-3.945150px;}
._0_c01056{margin-left:-2.367090px;}
._9_c01056{margin-left:-1.024980px;}
._17_c01056{width:1.050798px;}
._5_c01056{width:2.295360px;}
._a_c01056{width:3.824580px;}
._11_c01056{width:5.422560px;}
._16_c01056{width:24.993774px;}
._13_c01056{width:26.696010px;}
._12_c01056{width:33.928290px;}
._4_c01056{width:560.072610px;}
.fc0_c01056{color:rgb(0,0,0);}
.fs2_c01056{font-size:41.844000px;}
.fs1_c01056{font-size:47.820000px;}
.fs3_c01056{font-size:59.778000px;}
.fs0_c01056{font-size:71.730000px;}
.y0_c01056{bottom:0.000000px;}
.y22_c01056{bottom:93.460500px;}
.y21_c01056{bottom:116.817000px;}
.y20_c01056{bottom:129.327000px;}
.y1f_c01056{bottom:147.259500px;}
.y1e_c01056{bottom:165.192000px;}
.y1d_c01056{bottom:183.124500px;}
.y1c_c01056{bottom:201.057000px;}
.y1b_c01056{bottom:218.991000px;}
.y1a_c01056{bottom:236.923500px;}
.y19_c01056{bottom:254.856000px;}
.y18_c01056{bottom:278.211000px;}
.y17_c01056{bottom:290.721000px;}
.y16_c01056{bottom:308.655000px;}
.y15_c01056{bottom:332.010000px;}
.y14_c01056{bottom:536.376000px;}
.y13_c01056{bottom:563.266500px;}
.y12_c01056{bottom:590.158500px;}
.y11_c01056{bottom:634.981500px;}
.y10_c01056{bottom:661.872000px;}
.yf_c01056{bottom:688.764000px;}
.ye_c01056{bottom:715.654500px;}
.yd_c01056{bottom:742.545000px;}
.yc_c01056{bottom:769.435500px;}
.yb_c01056{bottom:796.327500px;}
.ya_c01056{bottom:842.644500px;}
.y9_c01056{bottom:869.535000px;}
.y8_c01056{bottom:915.853500px;}
.y7_c01056{bottom:942.744000px;}
.y6_c01056{bottom:969.636000px;}
.y5_c01056{bottom:1014.459000px;}
.y4_c01056{bottom:1041.349500px;}
.y3_c01056{bottom:1068.240000px;}
.y2_c01056{bottom:1095.132000px;}
.y1_c01056{bottom:1162.084500px;}
.h6_c01056{height:28.286544px;}
.h7_c01056{height:44.833500px;}
.h2_c01056{height:53.797500px;}
.h4_c01056{height:58.354320px;}
.h3_c01056{height:58.360320px;}
.h5_c01056{height:71.929500px;}
.h1_c01056{height:1263.750000px;}
.h0_c01056{height:1264.110000px;}
.w0_c01056{width:893.869500px;}
.w1_c01056{width:894.000000px;}
.x0_c01056{left:0.000000px;}
.x1_c01056{left:127.558500px;}
.x6_c01056{left:141.798000px;}
.x2_c01056{left:159.838500px;}
.x4_c01056{left:171.456000px;}
.x3_c01056{left:197.794500px;}
.x5_c01056{left:421.885500px;}
@media print{
.v3_c01056{vertical-align:-19.280000pt;}
.v0_c01056{vertical-align:0.000000pt;}
.v2_c01056{vertical-align:16.117333pt;}
.v1_c01056{vertical-align:23.141333pt;}
.ls0_c01056{letter-spacing:0.000000pt;}
.ws1_c01056{word-spacing:-0.063760pt;}
.ws6_c01056{word-spacing:-0.042507pt;}
.ws13_c01056{word-spacing:-0.037195pt;}
.ws27_c01056{word-spacing:0.000000pt;}
.ws14_c01056{word-spacing:15.037488pt;}
.ws15_c01056{word-spacing:15.196896pt;}
.ws3_c01056{word-spacing:15.366160pt;}
.ws10_c01056{word-spacing:16.131280pt;}
.ws16_c01056{word-spacing:16.684704pt;}
.ws1d_c01056{word-spacing:17.109792pt;}
.ws22_c01056{word-spacing:17.375472pt;}
.ws18_c01056{word-spacing:17.641152pt;}
.ws1e_c01056{word-spacing:18.438192pt;}
.ws1a_c01056{word-spacing:18.491328pt;}
.ws8_c01056{word-spacing:18.617920pt;}
.ws26_c01056{word-spacing:18.916416pt;}
.ws17_c01056{word-spacing:18.969552pt;}
.ws11_c01056{word-spacing:19.000480pt;}
.ws4_c01056{word-spacing:19.383040pt;}
.ws23_c01056{word-spacing:19.447776pt;}
.ws2_c01056{word-spacing:19.574320pt;}
.ws19_c01056{word-spacing:19.713456pt;}
.ws24_c01056{word-spacing:20.669904pt;}
.ws9_c01056{word-spacing:20.722000pt;}
.ws25_c01056{word-spacing:21.732624pt;}
.ws5_c01056{word-spacing:22.084747pt;}
.wsb_c01056{word-spacing:22.252240pt;}
.ws1b_c01056{word-spacing:22.423392pt;}
.wsc_c01056{word-spacing:22.443520pt;}
.ws1c_c01056{word-spacing:23.379840pt;}
.ws21_c01056{word-spacing:23.804928pt;}
.ws0_c01056{word-spacing:23.846240pt;}
.ws1f_c01056{word-spacing:23.858064pt;}
.ws12_c01056{word-spacing:24.483840pt;}
.ws20_c01056{word-spacing:24.655104pt;}
.wsd_c01056{word-spacing:25.057680pt;}
.ws7_c01056{word-spacing:25.440240pt;}
.wsf_c01056{word-spacing:27.990640pt;}
.wse_c01056{word-spacing:28.245680pt;}
.wsa_c01056{word-spacing:28.819520pt;}
._3_c01056{margin-left:-36.215680pt;}
._b_c01056{margin-left:-33.665280pt;}
._8_c01056{margin-left:-31.880000pt;}
._6_c01056{margin-left:-30.541040pt;}
._7_c01056{margin-left:-28.819520pt;}
._2_c01056{margin-left:-27.926880pt;}
._10_c01056{margin-left:-26.077840pt;}
._e_c01056{margin-left:-24.292560pt;}
._14_c01056{margin-left:-21.494080pt;}
._15_c01056{margin-left:-20.105781pt;}
._1_c01056{margin-left:-8.033760pt;}
._d_c01056{margin-left:-7.013600pt;}
._18_c01056{margin-left:-6.077045pt;}
._f_c01056{margin-left:-5.164560pt;}
._c_c01056{margin-left:-3.506800pt;}
._0_c01056{margin-left:-2.104080pt;}
._9_c01056{margin-left:-0.911093pt;}
._17_c01056{width:0.934043pt;}
._5_c01056{width:2.040320pt;}
._a_c01056{width:3.399627pt;}
._11_c01056{width:4.820053pt;}
._16_c01056{width:22.216688pt;}
._13_c01056{width:23.729787pt;}
._12_c01056{width:30.158480pt;}
._4_c01056{width:497.842320pt;}
.fs2_c01056{font-size:37.194667pt;}
.fs1_c01056{font-size:42.506667pt;}
.fs3_c01056{font-size:53.136000pt;}
.fs0_c01056{font-size:63.760000pt;}
.y0_c01056{bottom:0.000000pt;}
.y22_c01056{bottom:83.076000pt;}
.y21_c01056{bottom:103.837333pt;}
.y20_c01056{bottom:114.957333pt;}
.y1f_c01056{bottom:130.897333pt;}
.y1e_c01056{bottom:146.837333pt;}
.y1d_c01056{bottom:162.777333pt;}
.y1c_c01056{bottom:178.717333pt;}
.y1b_c01056{bottom:194.658667pt;}
.y1a_c01056{bottom:210.598667pt;}
.y19_c01056{bottom:226.538667pt;}
.y18_c01056{bottom:247.298667pt;}
.y17_c01056{bottom:258.418667pt;}
.y16_c01056{bottom:274.360000pt;}
.y15_c01056{bottom:295.120000pt;}
.y14_c01056{bottom:476.778667pt;}
.y13_c01056{bottom:500.681333pt;}
.y12_c01056{bottom:524.585333pt;}
.y11_c01056{bottom:564.428000pt;}
.y10_c01056{bottom:588.330667pt;}
.yf_c01056{bottom:612.234667pt;}
.ye_c01056{bottom:636.137333pt;}
.yd_c01056{bottom:660.040000pt;}
.yc_c01056{bottom:683.942667pt;}
.yb_c01056{bottom:707.846667pt;}
.ya_c01056{bottom:749.017333pt;}
.y9_c01056{bottom:772.920000pt;}
.y8_c01056{bottom:814.092000pt;}
.y7_c01056{bottom:837.994667pt;}
.y6_c01056{bottom:861.898667pt;}
.y5_c01056{bottom:901.741333pt;}
.y4_c01056{bottom:925.644000pt;}
.y3_c01056{bottom:949.546667pt;}
.y2_c01056{bottom:973.450667pt;}
.y1_c01056{bottom:1032.964000pt;}
.h6_c01056{height:25.143595pt;}
.h7_c01056{height:39.852000pt;}
.h2_c01056{height:47.820000pt;}
.h4_c01056{height:51.870507pt;}
.h3_c01056{height:51.875840pt;}
.h5_c01056{height:63.937333pt;}
.h1_c01056{height:1123.333333pt;}
.h0_c01056{height:1123.653333pt;}
.w0_c01056{width:794.550667pt;}
.w1_c01056{width:794.666667pt;}
.x0_c01056{left:0.000000pt;}
.x1_c01056{left:113.385333pt;}
.x6_c01056{left:126.042667pt;}
.x2_c01056{left:142.078667pt;}
.x4_c01056{left:152.405333pt;}
.x3_c01056{left:175.817333pt;}
.x5_c01056{left:375.009333pt;}
}





/* 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_9f78f840cb23b0407043e9f0.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.001000;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_83ea0122e82cfecba151d4fd.woff2')format("woff");}.ff2_c01057{font-family:ff2_c01057;line-height:1.000000;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_2cbb4cff7bed830a5fa769dd.woff2')format("woff");}.ff3_c01057{font-family:ff3_c01057;line-height:1.001000;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_c01057;src:url('chunks/assets/font_51c04b2429a145ff053a69e5.woff2')format("woff");}.ff4_c01057{font-family:ff4_c01057;line-height:1.001000;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_c01057;src:url('chunks/assets/font_e4dd71468d27643a680d813d.woff2')format("woff");}.ff5_c01057{font-family:ff5_c01057;line-height:0.697000;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_c01057;src:url('chunks/assets/font_11bb8e516f50fba49b26c86a.woff2')format("woff");}.ff6_c01057{font-family:ff6_c01057;line-height:0.696000;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_c01057;src:url('chunks/assets/font_0ef42a38d33619365168d063.woff2')format("woff");}.ff7_c01057{font-family:ff7_c01057;line-height:1.000000;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_c01057;src:url('chunks/assets/font_34a051b2f3a274159486ca8b.woff2')format("woff");}.ff8_c01057{font-family:ff8_c01057;line-height:1.000000;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);}
.v3_c01057{vertical-align:-21.696000px;}
.v0_c01057{vertical-align:0.000000px;}
.v1_c01057{vertical-align:5.982000px;}
.v2_c01057{vertical-align:26.028000px;}
.ls2_c01057{letter-spacing:0.000000px;}
.ls1_c01057{letter-spacing:3.004764px;}
.ls0_c01057{letter-spacing:3.005580px;}
.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;}
}
.ws4_c01057{word-spacing:-0.071730px;}
.ws15_c01057{word-spacing:0.000000px;}
.ws13_c01057{word-spacing:16.737840px;}
.ws14_c01057{word-spacing:18.411624px;}
.wsb_c01057{word-spacing:19.582290px;}
.ws8_c01057{word-spacing:20.371320px;}
.ws6_c01057{word-spacing:22.738410px;}
.ws12_c01057{word-spacing:23.025330px;}
.ws5_c01057{word-spacing:23.240520px;}
.wsa_c01057{word-spacing:23.312250px;}
.ws7_c01057{word-spacing:23.455710px;}
.wsf_c01057{word-spacing:25.033770px;}
.ws9_c01057{word-spacing:25.105500px;}
.ws11_c01057{word-spacing:26.827020px;}
.wse_c01057{word-spacing:27.113940px;}
.ws10_c01057{word-spacing:32.565420px;}
.wsd_c01057{word-spacing:34.071750px;}
.wsc_c01057{word-spacing:37.156140px;}
.ws0_c01057{word-spacing:55.473306px;}
.ws1_c01057{word-spacing:55.622028px;}
.ws3_c01057{word-spacing:79.261650px;}
.ws2_c01057{word-spacing:95.113980px;}
._2_c01057{margin-left:-83.879208px;}
._1_c01057{margin-left:-65.140236px;}
._9_c01057{margin-left:-37.084410px;}
._6_c01057{margin-left:-35.578080px;}
._d_c01057{margin-left:-33.986970px;}
._12_c01057{margin-left:-32.421960px;}
._13_c01057{margin-left:-30.364434px;}
._c_c01057{margin-left:-27.329130px;}
._0_c01057{margin-left:-18.738972px;}
._4_c01057{margin-left:-8.979300px;}
._b_c01057{margin-left:-7.603380px;}
._11_c01057{margin-left:-5.594940px;}
._5_c01057{margin-left:-3.945150px;}
._e_c01057{margin-left:-2.940930px;}
._3_c01057{margin-left:-1.506330px;}
._a_c01057{width:1.291140px;}
._7_c01057{width:2.367090px;}
._10_c01057{width:5.025420px;}
._8_c01057{width:24.746850px;}
._f_c01057{width:33.126210px;}
.fc0_c01057{color:rgb(0,0,0);}
.fs4_c01057{font-size:41.844000px;}
.fs3_c01057{font-size:47.820000px;}
.fs5_c01057{font-size:59.778000px;}
.fs2_c01057{font-size:71.730000px;}
.fs1_c01057{font-size:86.076000px;}
.fs0_c01057{font-size:148.722000px;}
.y0_c01057{bottom:0.000000px;}
.y18_c01057{bottom:61.552500px;}
.y17_c01057{bottom:141.126000px;}
.y16_c01057{bottom:167.881500px;}
.y15_c01057{bottom:194.773500px;}
.y14_c01057{bottom:221.664000px;}
.y13_c01057{bottom:248.554500px;}
.y12_c01057{bottom:294.873000px;}
.y11_c01057{bottom:321.763500px;}
.y10_c01057{bottom:348.654000px;}
.yf_c01057{bottom:375.544500px;}
.ye_c01057{bottom:421.863000px;}
.yd_c01057{bottom:426.396000px;}
.yc_c01057{bottom:448.753500px;}
.yb_c01057{bottom:475.645500px;}
.ya_c01057{bottom:502.536000px;}
.y9_c01057{bottom:529.426500px;}
.y8_c01057{bottom:556.317000px;}
.y7_c01057{bottom:583.207500px;}
.y6_c01057{bottom:610.099500px;}
.y5_c01057{bottom:644.710500px;}
.y4_c01057{bottom:704.064000px;}
.y3_c01057{bottom:823.615500px;}
.y2_c01057{bottom:879.252000px;}
.y1_c01057{bottom:964.776000px;}
.h7_c01057{height:28.286544px;}
.h5_c01057{height:53.797500px;}
.h6_c01057{height:58.354320px;}
.h4_c01057{height:59.779500px;}
.h3_c01057{height:64.557000px;}
.h2_c01057{height:111.541500px;}
.h1_c01057{height:1263.750000px;}
.h0_c01057{height:1264.110000px;}
.w0_c01057{width:893.869500px;}
.w1_c01057{width:894.000000px;}
.x0_c01057{left:0.000000px;}
.x1_c01057{left:127.558500px;}
.x4_c01057{left:129.751500px;}
.x7_c01057{left:147.754500px;}
.x3_c01057{left:159.838500px;}
.x6_c01057{left:171.456000px;}
.x5_c01057{left:197.794500px;}
.x2_c01057{left:292.719000px;}
.x8_c01057{left:433.765500px;}
@media print{
.v3_c01057{vertical-align:-19.285333pt;}
.v0_c01057{vertical-align:0.000000pt;}
.v1_c01057{vertical-align:5.317333pt;}
.v2_c01057{vertical-align:23.136000pt;}
.ls2_c01057{letter-spacing:0.000000pt;}
.ls1_c01057{letter-spacing:2.670901pt;}
.ls0_c01057{letter-spacing:2.671627pt;}
.ws4_c01057{word-spacing:-0.063760pt;}
.ws15_c01057{word-spacing:0.000000pt;}
.ws13_c01057{word-spacing:14.878080pt;}
.ws14_c01057{word-spacing:16.365888pt;}
.wsb_c01057{word-spacing:17.406480pt;}
.ws8_c01057{word-spacing:18.107840pt;}
.ws6_c01057{word-spacing:20.211920pt;}
.ws12_c01057{word-spacing:20.466960pt;}
.ws5_c01057{word-spacing:20.658240pt;}
.wsa_c01057{word-spacing:20.722000pt;}
.ws7_c01057{word-spacing:20.849520pt;}
.wsf_c01057{word-spacing:22.252240pt;}
.ws9_c01057{word-spacing:22.316000pt;}
.ws11_c01057{word-spacing:23.846240pt;}
.wse_c01057{word-spacing:24.101280pt;}
.ws10_c01057{word-spacing:28.947040pt;}
.wsd_c01057{word-spacing:30.286000pt;}
.wsc_c01057{word-spacing:33.027680pt;}
.ws0_c01057{word-spacing:49.309605pt;}
.ws1_c01057{word-spacing:49.441803pt;}
.ws3_c01057{word-spacing:70.454800pt;}
.ws2_c01057{word-spacing:84.545760pt;}
._2_c01057{margin-left:-74.559296pt;}
._1_c01057{margin-left:-57.902432pt;}
._9_c01057{margin-left:-32.963920pt;}
._6_c01057{margin-left:-31.624960pt;}
._d_c01057{margin-left:-30.210640pt;}
._12_c01057{margin-left:-28.819520pt;}
._13_c01057{margin-left:-26.990608pt;}
._c_c01057{margin-left:-24.292560pt;}
._0_c01057{margin-left:-16.656864pt;}
._4_c01057{margin-left:-7.981600pt;}
._b_c01057{margin-left:-6.758560pt;}
._11_c01057{margin-left:-4.973280pt;}
._5_c01057{margin-left:-3.506800pt;}
._e_c01057{margin-left:-2.614160pt;}
._3_c01057{margin-left:-1.338960pt;}
._a_c01057{width:1.147680pt;}
._7_c01057{width:2.104080pt;}
._10_c01057{width:4.467040pt;}
._8_c01057{width:21.997200pt;}
._f_c01057{width:29.445520pt;}
.fs4_c01057{font-size:37.194667pt;}
.fs3_c01057{font-size:42.506667pt;}
.fs5_c01057{font-size:53.136000pt;}
.fs2_c01057{font-size:63.760000pt;}
.fs1_c01057{font-size:76.512000pt;}
.fs0_c01057{font-size:132.197333pt;}
.y0_c01057{bottom:0.000000pt;}
.y18_c01057{bottom:54.713333pt;}
.y17_c01057{bottom:125.445333pt;}
.y16_c01057{bottom:149.228000pt;}
.y15_c01057{bottom:173.132000pt;}
.y14_c01057{bottom:197.034667pt;}
.y13_c01057{bottom:220.937333pt;}
.y12_c01057{bottom:262.109333pt;}
.y11_c01057{bottom:286.012000pt;}
.y10_c01057{bottom:309.914667pt;}
.yf_c01057{bottom:333.817333pt;}
.ye_c01057{bottom:374.989333pt;}
.yd_c01057{bottom:379.018667pt;}
.yc_c01057{bottom:398.892000pt;}
.yb_c01057{bottom:422.796000pt;}
.ya_c01057{bottom:446.698667pt;}
.y9_c01057{bottom:470.601333pt;}
.y8_c01057{bottom:494.504000pt;}
.y7_c01057{bottom:518.406667pt;}
.y6_c01057{bottom:542.310667pt;}
.y5_c01057{bottom:573.076000pt;}
.y4_c01057{bottom:625.834667pt;}
.y3_c01057{bottom:732.102667pt;}
.y2_c01057{bottom:781.557333pt;}
.y1_c01057{bottom:857.578667pt;}
.h7_c01057{height:25.143595pt;}
.h5_c01057{height:47.820000pt;}
.h6_c01057{height:51.870507pt;}
.h4_c01057{height:53.137333pt;}
.h3_c01057{height:57.384000pt;}
.h2_c01057{height:99.148000pt;}
.h1_c01057{height:1123.333333pt;}
.h0_c01057{height:1123.653333pt;}
.w0_c01057{width:794.550667pt;}
.w1_c01057{width:794.666667pt;}
.x0_c01057{left:0.000000pt;}
.x1_c01057{left:113.385333pt;}
.x4_c01057{left:115.334667pt;}
.x7_c01057{left:131.337333pt;}
.x3_c01057{left:142.078667pt;}
.x6_c01057{left:152.405333pt;}
.x5_c01057{left:175.817333pt;}
.x2_c01057{left:260.194667pt;}
.x8_c01057{left:385.569333pt;}
}





/* 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_e7b4ef2be4469664ae30c472.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.001000;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_21676ad3e837fbe837d204d8.woff2')format("woff");}.ff2_c01058{font-family:ff2_c01058;line-height:1.001000;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_682192b940e3aad4adf1facc.woff2')format("woff");}.ff3_c01058{font-family:ff3_c01058;line-height:1.000000;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_c01058;src:url('chunks/assets/font_ebe2f36e0041d48041df911b.woff2')format("woff");}.ff4_c01058{font-family:ff4_c01058;line-height:1.001000;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;}
.ls0_c01058{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws1a_c01058{word-spacing:15.708870px;}
.ws22_c01058{word-spacing:16.856550px;}
.ws3_c01058{word-spacing:17.000010px;}
.ws2_c01058{word-spacing:17.143470px;}
.ws25_c01058{word-spacing:17.502120px;}
.ws16_c01058{word-spacing:17.645580px;}
.ws20_c01058{word-spacing:17.789040px;}
.ws7_c01058{word-spacing:19.510560px;}
.ws13_c01058{word-spacing:19.869210px;}
.ws10_c01058{word-spacing:20.299590px;}
.ws24_c01058{word-spacing:20.514780px;}
.ws14_c01058{word-spacing:20.586510px;}
.ws15_c01058{word-spacing:21.232080px;}
.wse_c01058{word-spacing:21.303810px;}
.wsf_c01058{word-spacing:21.877650px;}
.ws12_c01058{word-spacing:22.164570px;}
.ws17_c01058{word-spacing:22.868940px;}
.ws19_c01058{word-spacing:22.881870px;}
.wsd_c01058{word-spacing:23.097060px;}
.ws1b_c01058{word-spacing:23.240520px;}
.ws4_c01058{word-spacing:23.312250px;}
.wsa_c01058{word-spacing:23.383980px;}
.ws11_c01058{word-spacing:23.455710px;}
.ws9_c01058{word-spacing:24.101280px;}
.ws5_c01058{word-spacing:24.316470px;}
.ws23_c01058{word-spacing:24.531660px;}
.ws18_c01058{word-spacing:24.675120px;}
.ws0_c01058{word-spacing:26.827020px;}
.wsb_c01058{word-spacing:26.970480px;}
.ws8_c01058{word-spacing:27.185670px;}
.ws21_c01058{word-spacing:28.692000px;}
.wsc_c01058{word-spacing:29.839680px;}
.ws1c_c01058{word-spacing:30.681270px;}
.ws1d_c01058{word-spacing:30.915630px;}
.ws1f_c01058{word-spacing:30.987360px;}
.ws1e_c01058{word-spacing:31.991580px;}
.ws6_c01058{word-spacing:34.143480px;}
._0_c01058{margin-left:-40.527450px;}
._9_c01058{margin-left:-36.797490px;}
._6_c01058{margin-left:-35.147700px;}
._7_c01058{margin-left:-33.426180px;}
._3_c01058{margin-left:-27.329130px;}
._2_c01058{margin-left:-7.818570px;}
._a_c01058{margin-left:-5.810130px;}
._4_c01058{margin-left:-3.945150px;}
._5_c01058{margin-left:-2.008440px;}
._8_c01058{width:1.864980px;}
._e_c01058{width:3.371310px;}
._d_c01058{width:20.084400px;}
._c_c01058{width:25.033770px;}
._f_c01058{width:28.173900px;}
._10_c01058{width:37.883220px;}
._b_c01058{width:79.333380px;}
._1_c01058{width:464.743440px;}
.fc0_c01058{color:rgb(0,0,0);}
.fs0_c01058{font-size:71.730000px;}
.y0_c01058{bottom:0.000000px;}
.y25_c01058{bottom:116.832000px;}
.y24_c01058{bottom:143.724000px;}
.y23_c01058{bottom:170.614500px;}
.y22_c01058{bottom:197.505000px;}
.y21_c01058{bottom:224.395500px;}
.y20_c01058{bottom:251.287500px;}
.y1f_c01058{bottom:278.178000px;}
.y1e_c01058{bottom:305.068500px;}
.y1d_c01058{bottom:331.959000px;}
.y1c_c01058{bottom:358.851000px;}
.y1b_c01058{bottom:385.741500px;}
.y1a_c01058{bottom:412.632000px;}
.y19_c01058{bottom:439.522500px;}
.y18_c01058{bottom:466.413000px;}
.y17_c01058{bottom:493.305000px;}
.y16_c01058{bottom:520.195500px;}
.y15_c01058{bottom:547.086000px;}
.y14_c01058{bottom:573.976500px;}
.y13_c01058{bottom:600.868500px;}
.y12_c01058{bottom:627.759000px;}
.y11_c01058{bottom:654.649500px;}
.y10_c01058{bottom:681.540000px;}
.yf_c01058{bottom:708.432000px;}
.ye_c01058{bottom:735.322500px;}
.yd_c01058{bottom:762.213000px;}
.yc_c01058{bottom:796.825500px;}
.yb_c01058{bottom:853.114500px;}
.ya_c01058{bottom:880.005000px;}
.y9_c01058{bottom:906.895500px;}
.y8_c01058{bottom:933.786000px;}
.y7_c01058{bottom:960.678000px;}
.y6_c01058{bottom:987.568500px;}
.y5_c01058{bottom:1014.459000px;}
.y4_c01058{bottom:1041.349500px;}
.y3_c01058{bottom:1068.240000px;}
.y2_c01058{bottom:1095.132000px;}
.y1_c01058{bottom:1162.084500px;}
.h2_c01058{height:53.797500px;}
.h1_c01058{height:1263.750000px;}
.h0_c01058{height:1264.110000px;}
.w0_c01058{width:893.869500px;}
.w1_c01058{width:894.000000px;}
.x0_c01058{left:0.000000px;}
.x1_c01058{left:127.558500px;}
.x2_c01058{left:159.838500px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.ls0_c01058{letter-spacing:0.000000pt;}
.ws1_c01058{word-spacing:-0.063760pt;}
.ws1a_c01058{word-spacing:13.963440pt;}
.ws22_c01058{word-spacing:14.983600pt;}
.ws3_c01058{word-spacing:15.111120pt;}
.ws2_c01058{word-spacing:15.238640pt;}
.ws25_c01058{word-spacing:15.557440pt;}
.ws16_c01058{word-spacing:15.684960pt;}
.ws20_c01058{word-spacing:15.812480pt;}
.ws7_c01058{word-spacing:17.342720pt;}
.ws13_c01058{word-spacing:17.661520pt;}
.ws10_c01058{word-spacing:18.044080pt;}
.ws24_c01058{word-spacing:18.235360pt;}
.ws14_c01058{word-spacing:18.299120pt;}
.ws15_c01058{word-spacing:18.872960pt;}
.wse_c01058{word-spacing:18.936720pt;}
.wsf_c01058{word-spacing:19.446800pt;}
.ws12_c01058{word-spacing:19.701840pt;}
.ws17_c01058{word-spacing:20.327947pt;}
.ws19_c01058{word-spacing:20.339440pt;}
.wsd_c01058{word-spacing:20.530720pt;}
.ws1b_c01058{word-spacing:20.658240pt;}
.ws4_c01058{word-spacing:20.722000pt;}
.wsa_c01058{word-spacing:20.785760pt;}
.ws11_c01058{word-spacing:20.849520pt;}
.ws9_c01058{word-spacing:21.423360pt;}
.ws5_c01058{word-spacing:21.614640pt;}
.ws23_c01058{word-spacing:21.805920pt;}
.ws18_c01058{word-spacing:21.933440pt;}
.ws0_c01058{word-spacing:23.846240pt;}
.wsb_c01058{word-spacing:23.973760pt;}
.ws8_c01058{word-spacing:24.165040pt;}
.ws21_c01058{word-spacing:25.504000pt;}
.wsc_c01058{word-spacing:26.524160pt;}
.ws1c_c01058{word-spacing:27.272240pt;}
.ws1d_c01058{word-spacing:27.480560pt;}
.ws1f_c01058{word-spacing:27.544320pt;}
.ws1e_c01058{word-spacing:28.436960pt;}
.ws6_c01058{word-spacing:30.349760pt;}
._0_c01058{margin-left:-36.024400pt;}
._9_c01058{margin-left:-32.708880pt;}
._6_c01058{margin-left:-31.242400pt;}
._7_c01058{margin-left:-29.712160pt;}
._3_c01058{margin-left:-24.292560pt;}
._2_c01058{margin-left:-6.949840pt;}
._a_c01058{margin-left:-5.164560pt;}
._4_c01058{margin-left:-3.506800pt;}
._5_c01058{margin-left:-1.785280pt;}
._8_c01058{width:1.657760pt;}
._e_c01058{width:2.996720pt;}
._d_c01058{width:17.852800pt;}
._c_c01058{width:22.252240pt;}
._f_c01058{width:25.043467pt;}
._10_c01058{width:33.673973pt;}
._b_c01058{width:70.518560pt;}
._1_c01058{width:413.105280pt;}
.fs0_c01058{font-size:63.760000pt;}
.y0_c01058{bottom:0.000000pt;}
.y25_c01058{bottom:103.850667pt;}
.y24_c01058{bottom:127.754667pt;}
.y23_c01058{bottom:151.657333pt;}
.y22_c01058{bottom:175.560000pt;}
.y21_c01058{bottom:199.462667pt;}
.y20_c01058{bottom:223.366667pt;}
.y1f_c01058{bottom:247.269333pt;}
.y1e_c01058{bottom:271.172000pt;}
.y1d_c01058{bottom:295.074667pt;}
.y1c_c01058{bottom:318.978667pt;}
.y1b_c01058{bottom:342.881333pt;}
.y1a_c01058{bottom:366.784000pt;}
.y19_c01058{bottom:390.686667pt;}
.y18_c01058{bottom:414.589333pt;}
.y17_c01058{bottom:438.493333pt;}
.y16_c01058{bottom:462.396000pt;}
.y15_c01058{bottom:486.298667pt;}
.y14_c01058{bottom:510.201333pt;}
.y13_c01058{bottom:534.105333pt;}
.y12_c01058{bottom:558.008000pt;}
.y11_c01058{bottom:581.910667pt;}
.y10_c01058{bottom:605.813333pt;}
.yf_c01058{bottom:629.717333pt;}
.ye_c01058{bottom:653.620000pt;}
.yd_c01058{bottom:677.522667pt;}
.yc_c01058{bottom:708.289333pt;}
.yb_c01058{bottom:758.324000pt;}
.ya_c01058{bottom:782.226667pt;}
.y9_c01058{bottom:806.129333pt;}
.y8_c01058{bottom:830.032000pt;}
.y7_c01058{bottom:853.936000pt;}
.y6_c01058{bottom:877.838667pt;}
.y5_c01058{bottom:901.741333pt;}
.y4_c01058{bottom:925.644000pt;}
.y3_c01058{bottom:949.546667pt;}
.y2_c01058{bottom:973.450667pt;}
.y1_c01058{bottom:1032.964000pt;}
.h2_c01058{height:47.820000pt;}
.h1_c01058{height:1123.333333pt;}
.h0_c01058{height:1123.653333pt;}
.w0_c01058{width:794.550667pt;}
.w1_c01058{width:794.666667pt;}
.x0_c01058{left:0.000000pt;}
.x1_c01058{left:113.385333pt;}
.x2_c01058{left:142.078667pt;}
}





/* 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_7983cd4d704bb2769f060a90.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.001000;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_93a915a9222142dbf4cf4775.woff2')format("woff");}.ff2_c01059{font-family:ff2_c01059;line-height:1.001000;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;}
.v1_c01059{vertical-align:18.132000px;}
.ls0_c01059{letter-spacing:0.000000px;}
.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:-0.071730px;}
.ws21_c01059{word-spacing:0.000000px;}
.ws15_c01059{word-spacing:16.354440px;}
.wsf_c01059{word-spacing:19.438830px;}
.ws17_c01059{word-spacing:20.873430px;}
.wsb_c01059{word-spacing:21.232080px;}
.ws20_c01059{word-spacing:21.303810px;}
.wsd_c01059{word-spacing:21.447270px;}
.ws1f_c01059{word-spacing:21.590730px;}
.ws6_c01059{word-spacing:21.949380px;}
.ws1e_c01059{word-spacing:22.164570px;}
.wsc_c01059{word-spacing:22.379760px;}
.ws9_c01059{word-spacing:22.810140px;}
.ws3_c01059{word-spacing:23.168790px;}
.ws4_c01059{word-spacing:23.312250px;}
.ws19_c01059{word-spacing:23.527440px;}
.ws1a_c01059{word-spacing:23.814360px;}
.wse_c01059{word-spacing:24.316470px;}
.ws5_c01059{word-spacing:24.388200px;}
.ws12_c01059{word-spacing:24.459930px;}
.wsa_c01059{word-spacing:24.531660px;}
.ws16_c01059{word-spacing:24.603390px;}
.ws1c_c01059{word-spacing:26.611830px;}
.ws14_c01059{word-spacing:26.755290px;}
.ws0_c01059{word-spacing:26.827020px;}
.ws1b_c01059{word-spacing:27.042210px;}
.ws2_c01059{word-spacing:27.113940px;}
.ws1d_c01059{word-spacing:27.185670px;}
.ws18_c01059{word-spacing:27.831240px;}
.ws13_c01059{word-spacing:28.333350px;}
.ws7_c01059{word-spacing:28.476810px;}
.ws10_c01059{word-spacing:29.839680px;}
.ws11_c01059{word-spacing:31.202550px;}
.ws8_c01059{word-spacing:33.282720px;}
._0_c01059{margin-left:-40.527450px;}
._c_c01059{margin-left:-37.227870px;}
._5_c01059{margin-left:-35.291160px;}
._a_c01059{margin-left:-33.067530px;}
._9_c01059{margin-left:-27.329130px;}
._8_c01059{margin-left:-7.962030px;}
._b_c01059{margin-left:-5.810130px;}
._4_c01059{margin-left:-4.088610px;}
._2_c01059{margin-left:-2.080170px;}
._3_c01059{width:2.080170px;}
._6_c01059{width:3.873420px;}
._7_c01059{width:33.384660px;}
._1_c01059{width:464.743440px;}
.fc0_c01059{color:rgb(0,0,0);}
.fs0_c01059{font-size:71.730000px;}
.y0_c01059{bottom:0.000000px;}
.y26_c01059{bottom:127.060500px;}
.y25_c01059{bottom:153.951000px;}
.y24_c01059{bottom:180.843000px;}
.y23_c01059{bottom:207.733500px;}
.y22_c01059{bottom:234.624000px;}
.y21_c01059{bottom:261.514500px;}
.y20_c01059{bottom:288.406500px;}
.y1f_c01059{bottom:315.297000px;}
.y1e_c01059{bottom:342.187500px;}
.y1d_c01059{bottom:369.078000px;}
.y1c_c01059{bottom:395.970000px;}
.y1b_c01059{bottom:422.860500px;}
.y1a_c01059{bottom:449.751000px;}
.y19_c01059{bottom:476.641500px;}
.y18_c01059{bottom:503.533500px;}
.y17_c01059{bottom:530.424000px;}
.y16_c01059{bottom:557.314500px;}
.y15_c01059{bottom:584.205000px;}
.y14_c01059{bottom:611.095500px;}
.y13_c01059{bottom:637.987500px;}
.y12_c01059{bottom:664.878000px;}
.y11_c01059{bottom:691.768500px;}
.y10_c01059{bottom:718.659000px;}
.yf_c01059{bottom:745.551000px;}
.ye_c01059{bottom:772.441500px;}
.yd_c01059{bottom:799.332000px;}
.yc_c01059{bottom:826.222500px;}
.yb_c01059{bottom:853.114500px;}
.ya_c01059{bottom:880.005000px;}
.y9_c01059{bottom:906.895500px;}
.y8_c01059{bottom:933.786000px;}
.y7_c01059{bottom:960.678000px;}
.y6_c01059{bottom:987.568500px;}
.y5_c01059{bottom:1014.459000px;}
.y4_c01059{bottom:1041.349500px;}
.y3_c01059{bottom:1068.240000px;}
.y2_c01059{bottom:1095.132000px;}
.y1_c01059{bottom:1162.084500px;}
.h2_c01059{height:53.797500px;}
.h3_c01059{height:71.929500px;}
.h1_c01059{height:1263.750000px;}
.h0_c01059{height:1264.110000px;}
.w0_c01059{width:893.869500px;}
.w1_c01059{width:894.000000px;}
.x0_c01059{left:0.000000px;}
.x1_c01059{left:127.558500px;}
.x2_c01059{left:159.838500px;}
.x3_c01059{left:609.966000px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.v1_c01059{vertical-align:16.117333pt;}
.ls0_c01059{letter-spacing:0.000000pt;}
.ws1_c01059{word-spacing:-0.063760pt;}
.ws21_c01059{word-spacing:0.000000pt;}
.ws15_c01059{word-spacing:14.537280pt;}
.wsf_c01059{word-spacing:17.278960pt;}
.ws17_c01059{word-spacing:18.554160pt;}
.wsb_c01059{word-spacing:18.872960pt;}
.ws20_c01059{word-spacing:18.936720pt;}
.wsd_c01059{word-spacing:19.064240pt;}
.ws1f_c01059{word-spacing:19.191760pt;}
.ws6_c01059{word-spacing:19.510560pt;}
.ws1e_c01059{word-spacing:19.701840pt;}
.wsc_c01059{word-spacing:19.893120pt;}
.ws9_c01059{word-spacing:20.275680pt;}
.ws3_c01059{word-spacing:20.594480pt;}
.ws4_c01059{word-spacing:20.722000pt;}
.ws19_c01059{word-spacing:20.913280pt;}
.ws1a_c01059{word-spacing:21.168320pt;}
.wse_c01059{word-spacing:21.614640pt;}
.ws5_c01059{word-spacing:21.678400pt;}
.ws12_c01059{word-spacing:21.742160pt;}
.wsa_c01059{word-spacing:21.805920pt;}
.ws16_c01059{word-spacing:21.869680pt;}
.ws1c_c01059{word-spacing:23.654960pt;}
.ws14_c01059{word-spacing:23.782480pt;}
.ws0_c01059{word-spacing:23.846240pt;}
.ws1b_c01059{word-spacing:24.037520pt;}
.ws2_c01059{word-spacing:24.101280pt;}
.ws1d_c01059{word-spacing:24.165040pt;}
.ws18_c01059{word-spacing:24.738880pt;}
.ws13_c01059{word-spacing:25.185200pt;}
.ws7_c01059{word-spacing:25.312720pt;}
.ws10_c01059{word-spacing:26.524160pt;}
.ws11_c01059{word-spacing:27.735600pt;}
.ws8_c01059{word-spacing:29.584640pt;}
._0_c01059{margin-left:-36.024400pt;}
._c_c01059{margin-left:-33.091440pt;}
._5_c01059{margin-left:-31.369920pt;}
._a_c01059{margin-left:-29.393360pt;}
._9_c01059{margin-left:-24.292560pt;}
._8_c01059{margin-left:-7.077360pt;}
._b_c01059{margin-left:-5.164560pt;}
._4_c01059{margin-left:-3.634320pt;}
._2_c01059{margin-left:-1.849040pt;}
._3_c01059{width:1.849040pt;}
._6_c01059{width:3.443040pt;}
._7_c01059{width:29.675253pt;}
._1_c01059{width:413.105280pt;}
.fs0_c01059{font-size:63.760000pt;}
.y0_c01059{bottom:0.000000pt;}
.y26_c01059{bottom:112.942667pt;}
.y25_c01059{bottom:136.845333pt;}
.y24_c01059{bottom:160.749333pt;}
.y23_c01059{bottom:184.652000pt;}
.y22_c01059{bottom:208.554667pt;}
.y21_c01059{bottom:232.457333pt;}
.y20_c01059{bottom:256.361333pt;}
.y1f_c01059{bottom:280.264000pt;}
.y1e_c01059{bottom:304.166667pt;}
.y1d_c01059{bottom:328.069333pt;}
.y1c_c01059{bottom:351.973333pt;}
.y1b_c01059{bottom:375.876000pt;}
.y1a_c01059{bottom:399.778667pt;}
.y19_c01059{bottom:423.681333pt;}
.y18_c01059{bottom:447.585333pt;}
.y17_c01059{bottom:471.488000pt;}
.y16_c01059{bottom:495.390667pt;}
.y15_c01059{bottom:519.293333pt;}
.y14_c01059{bottom:543.196000pt;}
.y13_c01059{bottom:567.100000pt;}
.y12_c01059{bottom:591.002667pt;}
.y11_c01059{bottom:614.905333pt;}
.y10_c01059{bottom:638.808000pt;}
.yf_c01059{bottom:662.712000pt;}
.ye_c01059{bottom:686.614667pt;}
.yd_c01059{bottom:710.517333pt;}
.yc_c01059{bottom:734.420000pt;}
.yb_c01059{bottom:758.324000pt;}
.ya_c01059{bottom:782.226667pt;}
.y9_c01059{bottom:806.129333pt;}
.y8_c01059{bottom:830.032000pt;}
.y7_c01059{bottom:853.936000pt;}
.y6_c01059{bottom:877.838667pt;}
.y5_c01059{bottom:901.741333pt;}
.y4_c01059{bottom:925.644000pt;}
.y3_c01059{bottom:949.546667pt;}
.y2_c01059{bottom:973.450667pt;}
.y1_c01059{bottom:1032.964000pt;}
.h2_c01059{height:47.820000pt;}
.h3_c01059{height:63.937333pt;}
.h1_c01059{height:1123.333333pt;}
.h0_c01059{height:1123.653333pt;}
.w0_c01059{width:794.550667pt;}
.w1_c01059{width:794.666667pt;}
.x0_c01059{left:0.000000pt;}
.x1_c01059{left:113.385333pt;}
.x2_c01059{left:142.078667pt;}
.x3_c01059{left:542.192000pt;}
}





/* 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_fa6cf641342dbfbfd46b361d.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.001000;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_911c116d3c9eaf91a306810e.woff2')format("woff");}.ff2_c01060{font-family:ff2_c01060;line-height:1.001000;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_c01060;src:url('chunks/assets/font_f90c271e1fdf7241e7828f4b.woff2')format("woff");}.ff3_c01060{font-family:ff3_c01060;line-height:1.000000;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_c01060;src:url('chunks/assets/font_9f74d592e45db026684ea737.woff2')format("woff");}.ff4_c01060{font-family:ff4_c01060;line-height:1.001000;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_c01060;src:url('chunks/assets/font_0736d2da16420ec65c72f9f7.woff2')format("woff");}.ff5_c01060{font-family:ff5_c01060;line-height:0.697000;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_c01060;src:url('chunks/assets/font_6ec8b2d2e80c9e91b669d58a.woff2')format("woff");}.ff6_c01060{font-family:ff6_c01060;line-height:0.696000;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_c01060;src:url('chunks/assets/font_5371ea00e1bed196293f9047.woff2')format("woff");}.ff7_c01060{font-family:ff7_c01060;line-height:1.000000;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_c01060;src:url('chunks/assets/font_cf7d0683c78b9a20eaae25d7.woff2')format("woff");}.ff8_c01060{font-family:ff8_c01060;line-height:1.000000;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);}
.v4_c01060{vertical-align:-21.696000px;}
.v0_c01060{vertical-align:0.000000px;}
.v3_c01060{vertical-align:7.176000px;}
.v5_c01060{vertical-align:15.114000px;}
.v1_c01060{vertical-align:18.132000px;}
.v2_c01060{vertical-align:26.034000px;}
.ls2_c01060{letter-spacing:0.000000px;}
.ls1_c01060{letter-spacing:3.004764px;}
.ls0_c01060{letter-spacing:29.987580px;}
.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;}
}
.ws1_c01060{word-spacing:-0.071730px;}
.ws25_c01060{word-spacing:-0.059778px;}
.ws29_c01060{word-spacing:0.000000px;}
.ws10_c01060{word-spacing:16.210980px;}
.ws24_c01060{word-spacing:16.282710px;}
.ws4_c01060{word-spacing:17.071740px;}
.wsa_c01060{word-spacing:18.004230px;}
.ws9_c01060{word-spacing:18.291150px;}
.ws5_c01060{word-spacing:18.864990px;}
.ws12_c01060{word-spacing:19.080180px;}
.wsb_c01060{word-spacing:19.654020px;}
.ws28_c01060{word-spacing:19.846296px;}
.wsc_c01060{word-spacing:20.801700px;}
.ws7_c01060{word-spacing:21.088620px;}
.ws6_c01060{word-spacing:22.092840px;}
.ws1e_c01060{word-spacing:22.451490px;}
.ws3_c01060{word-spacing:23.168790px;}
.ws26_c01060{word-spacing:23.193864px;}
.ws8_c01060{word-spacing:23.312250px;}
.wsd_c01060{word-spacing:23.383980px;}
.wse_c01060{word-spacing:24.029550px;}
.ws19_c01060{word-spacing:24.347040px;}
.ws17_c01060{word-spacing:24.376110px;}
.ws27_c01060{word-spacing:24.389424px;}
.ws1b_c01060{word-spacing:25.320690px;}
.ws16_c01060{word-spacing:25.966260px;}
.ws18_c01060{word-spacing:26.037990px;}
.wsf_c01060{word-spacing:26.755290px;}
.ws0_c01060{word-spacing:26.827020px;}
.ws13_c01060{word-spacing:26.888010px;}
.ws15_c01060{word-spacing:26.898750px;}
.ws2_c01060{word-spacing:26.970480px;}
.ws1d_c01060{word-spacing:27.185670px;}
.ws20_c01060{word-spacing:27.616050px;}
.ws11_c01060{word-spacing:28.046430px;}
.ws14_c01060{word-spacing:28.333350px;}
.ws22_c01060{word-spacing:29.409300px;}
.ws21_c01060{word-spacing:29.481030px;}
.ws1f_c01060{word-spacing:29.624490px;}
.ws1a_c01060{word-spacing:29.983140px;}
.ws23_c01060{word-spacing:30.556980px;}
.ws1c_c01060{word-spacing:32.364576px;}
._0_c01060{margin-left:-40.527450px;}
._8_c01060{margin-left:-37.084410px;}
._6_c01060{margin-left:-35.721540px;}
._12_c01060{margin-left:-34.717320px;}
._9_c01060{margin-left:-33.713100px;}
._11_c01060{margin-left:-32.637150px;}
._19_c01060{margin-left:-29.136474px;}
._b_c01060{margin-left:-27.329130px;}
._a_c01060{margin-left:-7.818570px;}
._f_c01060{margin-left:-5.810130px;}
._3_c01060{margin-left:-4.805910px;}
._13_c01060{margin-left:-3.801690px;}
._d_c01060{margin-left:-2.510550px;}
._4_c01060{margin-left:-1.506330px;}
._5_c01060{width:1.578060px;}
._10_c01060{width:2.725740px;}
._14_c01060{width:4.232070px;}
._7_c01060{width:18.721530px;}
._e_c01060{width:21.877650px;}
._c_c01060{width:27.341220px;}
._16_c01060{width:28.705830px;}
._18_c01060{width:29.767950px;}
._15_c01060{width:32.576850px;}
._2_c01060{width:79.333380px;}
._17_c01060{width:95.200056px;}
._1_c01060{width:464.743440px;}
.fc0_c01060{color:rgb(0,0,0);}
.fs3_c01060{font-size:41.844000px;}
.fs1_c01060{font-size:47.820000px;}
.fs4_c01060{font-size:59.778000px;}
.fs0_c01060{font-size:71.730000px;}
.fs2_c01060{font-size:86.076000px;}
.y0_c01060{bottom:0.000000px;}
.y26_c01060{bottom:99.970500px;}
.y25_c01060{bottom:117.903000px;}
.y24_c01060{bottom:123.327000px;}
.y23_c01060{bottom:151.686000px;}
.y22_c01060{bottom:178.576500px;}
.y21_c01060{bottom:205.467000px;}
.y20_c01060{bottom:232.357500px;}
.y1f_c01060{bottom:259.248000px;}
.y1e_c01060{bottom:286.140000px;}
.y1d_c01060{bottom:313.030500px;}
.y1c_c01060{bottom:339.921000px;}
.y1b_c01060{bottom:366.811500px;}
.y1a_c01060{bottom:393.703500px;}
.y19_c01060{bottom:420.594000px;}
.y18_c01060{bottom:455.205000px;}
.y17_c01060{bottom:522.702000px;}
.y16_c01060{bottom:549.594000px;}
.y15_c01060{bottom:576.484500px;}
.y14_c01060{bottom:603.375000px;}
.y13_c01060{bottom:630.265500px;}
.y12_c01060{bottom:657.157500px;}
.y11_c01060{bottom:684.048000px;}
.y10_c01060{bottom:710.938500px;}
.yf_c01060{bottom:737.829000px;}
.ye_c01060{bottom:764.721000px;}
.yd_c01060{bottom:791.611500px;}
.yc_c01060{bottom:818.502000px;}
.yb_c01060{bottom:845.392500px;}
.ya_c01060{bottom:872.283000px;}
.y9_c01060{bottom:899.175000px;}
.y8_c01060{bottom:926.065500px;}
.y7_c01060{bottom:952.956000px;}
.y6_c01060{bottom:979.846500px;}
.y5_c01060{bottom:1006.738500px;}
.y4_c01060{bottom:1033.629000px;}
.y3_c01060{bottom:1060.519500px;}
.y2_c01060{bottom:1095.132000px;}
.y1_c01060{bottom:1162.084500px;}
.h7_c01060{height:38.251500px;}
.h8_c01060{height:44.833500px;}
.h2_c01060{height:53.797500px;}
.h4_c01060{height:58.360320px;}
.h6_c01060{height:64.557000px;}
.h5_c01060{height:71.733000px;}
.h3_c01060{height:71.929500px;}
.h1_c01060{height:1263.750000px;}
.h0_c01060{height:1264.110000px;}
.w0_c01060{width:893.869500px;}
.w1_c01060{width:894.000000px;}
.x0_c01060{left:0.000000px;}
.x1_c01060{left:127.558500px;}
.x6_c01060{left:147.754500px;}
.x2_c01060{left:159.838500px;}
.x7_c01060{left:201.366000px;}
.x4_c01060{left:545.389500px;}
.x5_c01060{left:713.466000px;}
.x3_c01060{left:721.932000px;}
@media print{
.v4_c01060{vertical-align:-19.285333pt;}
.v0_c01060{vertical-align:0.000000pt;}
.v3_c01060{vertical-align:6.378667pt;}
.v5_c01060{vertical-align:13.434667pt;}
.v1_c01060{vertical-align:16.117333pt;}
.v2_c01060{vertical-align:23.141333pt;}
.ls2_c01060{letter-spacing:0.000000pt;}
.ls1_c01060{letter-spacing:2.670901pt;}
.ls0_c01060{letter-spacing:26.655627pt;}
.ws1_c01060{word-spacing:-0.063760pt;}
.ws25_c01060{word-spacing:-0.053136pt;}
.ws29_c01060{word-spacing:0.000000pt;}
.ws10_c01060{word-spacing:14.409760pt;}
.ws24_c01060{word-spacing:14.473520pt;}
.ws4_c01060{word-spacing:15.174880pt;}
.wsa_c01060{word-spacing:16.003760pt;}
.ws9_c01060{word-spacing:16.258800pt;}
.ws5_c01060{word-spacing:16.768880pt;}
.ws12_c01060{word-spacing:16.960160pt;}
.wsb_c01060{word-spacing:17.470240pt;}
.ws28_c01060{word-spacing:17.641152pt;}
.wsc_c01060{word-spacing:18.490400pt;}
.ws7_c01060{word-spacing:18.745440pt;}
.ws6_c01060{word-spacing:19.638080pt;}
.ws1e_c01060{word-spacing:19.956880pt;}
.ws3_c01060{word-spacing:20.594480pt;}
.ws26_c01060{word-spacing:20.616768pt;}
.ws8_c01060{word-spacing:20.722000pt;}
.wsd_c01060{word-spacing:20.785760pt;}
.wse_c01060{word-spacing:21.359600pt;}
.ws19_c01060{word-spacing:21.641813pt;}
.ws17_c01060{word-spacing:21.667653pt;}
.ws27_c01060{word-spacing:21.679488pt;}
.ws1b_c01060{word-spacing:22.507280pt;}
.ws16_c01060{word-spacing:23.081120pt;}
.ws18_c01060{word-spacing:23.144880pt;}
.wsf_c01060{word-spacing:23.782480pt;}
.ws0_c01060{word-spacing:23.846240pt;}
.ws13_c01060{word-spacing:23.900453pt;}
.ws15_c01060{word-spacing:23.910000pt;}
.ws2_c01060{word-spacing:23.973760pt;}
.ws1d_c01060{word-spacing:24.165040pt;}
.ws20_c01060{word-spacing:24.547600pt;}
.ws11_c01060{word-spacing:24.930160pt;}
.ws14_c01060{word-spacing:25.185200pt;}
.ws22_c01060{word-spacing:26.141600pt;}
.ws21_c01060{word-spacing:26.205360pt;}
.ws1f_c01060{word-spacing:26.332880pt;}
.ws1a_c01060{word-spacing:26.651680pt;}
.ws23_c01060{word-spacing:27.161760pt;}
.ws1c_c01060{word-spacing:28.768512pt;}
._0_c01060{margin-left:-36.024400pt;}
._8_c01060{margin-left:-32.963920pt;}
._6_c01060{margin-left:-31.752480pt;}
._12_c01060{margin-left:-30.859840pt;}
._9_c01060{margin-left:-29.967200pt;}
._11_c01060{margin-left:-29.010800pt;}
._19_c01060{margin-left:-25.899088pt;}
._b_c01060{margin-left:-24.292560pt;}
._a_c01060{margin-left:-6.949840pt;}
._f_c01060{margin-left:-5.164560pt;}
._3_c01060{margin-left:-4.271920pt;}
._13_c01060{margin-left:-3.379280pt;}
._d_c01060{margin-left:-2.231600pt;}
._4_c01060{margin-left:-1.338960pt;}
._5_c01060{width:1.402720pt;}
._10_c01060{width:2.422880pt;}
._14_c01060{width:3.761840pt;}
._7_c01060{width:16.641360pt;}
._e_c01060{width:19.446800pt;}
._c_c01060{width:24.303307pt;}
._16_c01060{width:25.516293pt;}
._18_c01060{width:26.460400pt;}
._15_c01060{width:28.957200pt;}
._2_c01060{width:70.518560pt;}
._17_c01060{width:84.622272pt;}
._1_c01060{width:413.105280pt;}
.fs3_c01060{font-size:37.194667pt;}
.fs1_c01060{font-size:42.506667pt;}
.fs4_c01060{font-size:53.136000pt;}
.fs0_c01060{font-size:63.760000pt;}
.fs2_c01060{font-size:76.512000pt;}
.y0_c01060{bottom:0.000000pt;}
.y26_c01060{bottom:88.862667pt;}
.y25_c01060{bottom:104.802667pt;}
.y24_c01060{bottom:109.624000pt;}
.y23_c01060{bottom:134.832000pt;}
.y22_c01060{bottom:158.734667pt;}
.y21_c01060{bottom:182.637333pt;}
.y20_c01060{bottom:206.540000pt;}
.y1f_c01060{bottom:230.442667pt;}
.y1e_c01060{bottom:254.346667pt;}
.y1d_c01060{bottom:278.249333pt;}
.y1c_c01060{bottom:302.152000pt;}
.y1b_c01060{bottom:326.054667pt;}
.y1a_c01060{bottom:349.958667pt;}
.y19_c01060{bottom:373.861333pt;}
.y18_c01060{bottom:404.626667pt;}
.y17_c01060{bottom:464.624000pt;}
.y16_c01060{bottom:488.528000pt;}
.y15_c01060{bottom:512.430667pt;}
.y14_c01060{bottom:536.333333pt;}
.y13_c01060{bottom:560.236000pt;}
.y12_c01060{bottom:584.140000pt;}
.y11_c01060{bottom:608.042667pt;}
.y10_c01060{bottom:631.945333pt;}
.yf_c01060{bottom:655.848000pt;}
.ye_c01060{bottom:679.752000pt;}
.yd_c01060{bottom:703.654667pt;}
.yc_c01060{bottom:727.557333pt;}
.yb_c01060{bottom:751.460000pt;}
.ya_c01060{bottom:775.362667pt;}
.y9_c01060{bottom:799.266667pt;}
.y8_c01060{bottom:823.169333pt;}
.y7_c01060{bottom:847.072000pt;}
.y6_c01060{bottom:870.974667pt;}
.y5_c01060{bottom:894.878667pt;}
.y4_c01060{bottom:918.781333pt;}
.y3_c01060{bottom:942.684000pt;}
.y2_c01060{bottom:973.450667pt;}
.y1_c01060{bottom:1032.964000pt;}
.h7_c01060{height:34.001333pt;}
.h8_c01060{height:39.852000pt;}
.h2_c01060{height:47.820000pt;}
.h4_c01060{height:51.875840pt;}
.h6_c01060{height:57.384000pt;}
.h5_c01060{height:63.762667pt;}
.h3_c01060{height:63.937333pt;}
.h1_c01060{height:1123.333333pt;}
.h0_c01060{height:1123.653333pt;}
.w0_c01060{width:794.550667pt;}
.w1_c01060{width:794.666667pt;}
.x0_c01060{left:0.000000pt;}
.x1_c01060{left:113.385333pt;}
.x6_c01060{left:131.337333pt;}
.x2_c01060{left:142.078667pt;}
.x7_c01060{left:178.992000pt;}
.x4_c01060{left:484.790667pt;}
.x5_c01060{left:634.192000pt;}
.x3_c01060{left:641.717333pt;}
}





/* 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_74110a3d07394183d52698ce.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.001000;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_b78cbd57fc3a21bdf4856bc1.woff2')format("woff");}.ff2_c01061{font-family:ff2_c01061;line-height:1.001000;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_c01061;src:url('chunks/assets/font_f74886aa051f95ec781da0a3.woff2')format("woff");}.ff3_c01061{font-family:ff3_c01061;line-height:1.001000;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_c01061;src:url('chunks/assets/font_faa6965f69e913fa358a2d77.woff2')format("woff");}.ff4_c01061{font-family:ff4_c01061;line-height:0.697000;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_c01061;src:url('chunks/assets/font_4f4b8f5cc407fec95bb25126.woff2')format("woff");}.ff5_c01061{font-family:ff5_c01061;line-height:0.696000;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_c01061;src:url('chunks/assets/font_14de735440af945feba323f6.woff2')format("woff");}.ff6_c01061{font-family:ff6_c01061;line-height:1.000000;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_c01061;src:url('chunks/assets/font_6e57456a3abb4b90dd15ae9f.woff2')format("woff");}.ff7_c01061{font-family:ff7_c01061;line-height:1.000000;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);}
.v2_c01061{vertical-align:-21.690000px;}
.v0_c01061{vertical-align:0.000000px;}
.v1_c01061{vertical-align:26.028000px;}
.ls4_c01061{letter-spacing:0.000000px;}
.ls0_c01061{letter-spacing:2.999580px;}
.ls2_c01061{letter-spacing:3.004764px;}
.ls1_c01061{letter-spacing:3.005580px;}
.ls3_c01061{letter-spacing:24.556764px;}
.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;}
}
.ws1_c01061{word-spacing:-0.071730px;}
.ws26_c01061{word-spacing:0.000000px;}
.wsa_c01061{word-spacing:15.852330px;}
.ws15_c01061{word-spacing:17.932500px;}
.ws1a_c01061{word-spacing:18.506340px;}
.ws8_c01061{word-spacing:18.649800px;}
.ws1f_c01061{word-spacing:19.846296px;}
.ws13_c01061{word-spacing:20.227860px;}
.ws25_c01061{word-spacing:21.280968px;}
.ws1e_c01061{word-spacing:21.340746px;}
.ws1c_c01061{word-spacing:21.460302px;}
.ws24_c01061{word-spacing:21.460404px;}
.ws5_c01061{word-spacing:21.590730px;}
.ws4_c01061{word-spacing:22.236300px;}
.ws1d_c01061{word-spacing:22.835196px;}
.ws12_c01061{word-spacing:22.881870px;}
.ws9_c01061{word-spacing:23.312250px;}
.wsd_c01061{word-spacing:23.383980px;}
.ws14_c01061{word-spacing:23.670900px;}
.ws1b_c01061{word-spacing:24.029550px;}
.ws21_c01061{word-spacing:24.449202px;}
.ws18_c01061{word-spacing:24.818580px;}
.ws6_c01061{word-spacing:25.033770px;}
.wsb_c01061{word-spacing:25.177230px;}
.wsf_c01061{word-spacing:25.464150px;}
.ws23_c01061{word-spacing:25.525206px;}
.ws22_c01061{word-spacing:25.584984px;}
.ws16_c01061{word-spacing:25.966260px;}
.ws7_c01061{word-spacing:26.324910px;}
.ws17_c01061{word-spacing:26.468370px;}
.ws11_c01061{word-spacing:26.611830px;}
.ws0_c01061{word-spacing:26.827020px;}
.wse_c01061{word-spacing:27.759510px;}
.ws10_c01061{word-spacing:28.118160px;}
.ws20_c01061{word-spacing:28.155438px;}
.ws19_c01061{word-spacing:28.978920px;}
.wsc_c01061{word-spacing:31.561200px;}
.ws3_c01061{word-spacing:31.919850px;}
.ws2_c01061{word-spacing:33.641370px;}
._0_c01061{margin-left:-40.527450px;}
._a_c01061{margin-left:-36.797490px;}
._5_c01061{margin-left:-35.793270px;}
._4_c01061{margin-left:-34.071750px;}
._9_c01061{margin-left:-32.421960px;}
._17_c01061{margin-left:-31.395672px;}
._16_c01061{margin-left:-30.379266px;}
._15_c01061{margin-left:-28.853154px;}
._c_c01061{margin-left:-27.329130px;}
._14_c01061{margin-left:-22.758180px;}
._b_c01061{margin-left:-7.890300px;}
._11_c01061{margin-left:-5.881860px;}
._d_c01061{margin-left:-4.590720px;}
._2_c01061{margin-left:-3.586500px;}
._3_c01061{margin-left:-1.721520px;}
._8_c01061{width:1.649790px;}
._6_c01061{width:3.586500px;}
._7_c01061{width:4.653030px;}
._12_c01061{width:10.759500px;}
._10_c01061{width:17.502120px;}
._f_c01061{width:19.295370px;}
._13_c01061{width:27.544320px;}
._e_c01061{width:28.835460px;}
._1_c01061{width:464.743440px;}
.fc0_c01061{color:rgb(0,0,0);}
.fs2_c01061{font-size:41.844000px;}
.fs1_c01061{font-size:47.820000px;}
.fs3_c01061{font-size:59.778000px;}
.fs0_c01061{font-size:71.730000px;}
.y0_c01061{bottom:0.000000px;}
.y26_c01061{bottom:118.734000px;}
.y25_c01061{bottom:142.089000px;}
.y24_c01061{bottom:154.599000px;}
.y23_c01061{bottom:172.531500px;}
.y22_c01061{bottom:195.888000px;}
.y21_c01061{bottom:208.398000px;}
.y20_c01061{bottom:231.753000px;}
.y1f_c01061{bottom:258.510000px;}
.y1e_c01061{bottom:285.400500px;}
.y1d_c01061{bottom:312.291000px;}
.y1c_c01061{bottom:339.183000px;}
.y1b_c01061{bottom:366.073500px;}
.y1a_c01061{bottom:392.964000px;}
.y19_c01061{bottom:419.854500px;}
.y18_c01061{bottom:466.173000px;}
.y17_c01061{bottom:493.063500px;}
.y16_c01061{bottom:519.954000px;}
.y15_c01061{bottom:546.846000px;}
.y14_c01061{bottom:573.736500px;}
.y13_c01061{bottom:600.627000px;}
.y12_c01061{bottom:627.517500px;}
.y11_c01061{bottom:654.409500px;}
.y10_c01061{bottom:681.300000px;}
.yf_c01061{bottom:708.190500px;}
.ye_c01061{bottom:735.081000px;}
.yd_c01061{bottom:779.905500px;}
.yc_c01061{bottom:806.796000px;}
.yb_c01061{bottom:833.686500px;}
.ya_c01061{bottom:860.577000px;}
.y9_c01061{bottom:887.469000px;}
.y8_c01061{bottom:914.359500px;}
.y7_c01061{bottom:941.250000px;}
.y6_c01061{bottom:987.568500px;}
.y5_c01061{bottom:1014.459000px;}
.y4_c01061{bottom:1041.349500px;}
.y3_c01061{bottom:1068.240000px;}
.y2_c01061{bottom:1095.132000px;}
.y1_c01061{bottom:1162.084500px;}
.h4_c01061{height:28.286544px;}
.h5_c01061{height:44.833500px;}
.h2_c01061{height:53.797500px;}
.h3_c01061{height:58.354320px;}
.h1_c01061{height:1263.750000px;}
.h0_c01061{height:1264.110000px;}
.w0_c01061{width:893.869500px;}
.w1_c01061{width:894.000000px;}
.x0_c01061{left:0.000000px;}
.x1_c01061{left:127.558500px;}
.x5_c01061{left:147.754500px;}
.x4_c01061{left:159.838500px;}
.x3_c01061{left:171.456000px;}
.x2_c01061{left:197.794500px;}
@media print{
.v2_c01061{vertical-align:-19.280000pt;}
.v0_c01061{vertical-align:0.000000pt;}
.v1_c01061{vertical-align:23.136000pt;}
.ls4_c01061{letter-spacing:0.000000pt;}
.ls0_c01061{letter-spacing:2.666293pt;}
.ls2_c01061{letter-spacing:2.670901pt;}
.ls1_c01061{letter-spacing:2.671627pt;}
.ls3_c01061{letter-spacing:21.828235pt;}
.ws1_c01061{word-spacing:-0.063760pt;}
.ws26_c01061{word-spacing:0.000000pt;}
.wsa_c01061{word-spacing:14.090960pt;}
.ws15_c01061{word-spacing:15.940000pt;}
.ws1a_c01061{word-spacing:16.450080pt;}
.ws8_c01061{word-spacing:16.577600pt;}
.ws1f_c01061{word-spacing:17.641152pt;}
.ws13_c01061{word-spacing:17.980320pt;}
.ws25_c01061{word-spacing:18.916416pt;}
.ws1e_c01061{word-spacing:18.969552pt;}
.ws1c_c01061{word-spacing:19.075824pt;}
.ws24_c01061{word-spacing:19.075915pt;}
.ws5_c01061{word-spacing:19.191760pt;}
.ws4_c01061{word-spacing:19.765600pt;}
.ws1d_c01061{word-spacing:20.297952pt;}
.ws12_c01061{word-spacing:20.339440pt;}
.ws9_c01061{word-spacing:20.722000pt;}
.wsd_c01061{word-spacing:20.785760pt;}
.ws14_c01061{word-spacing:21.040800pt;}
.ws1b_c01061{word-spacing:21.359600pt;}
.ws21_c01061{word-spacing:21.732624pt;}
.ws18_c01061{word-spacing:22.060960pt;}
.ws6_c01061{word-spacing:22.252240pt;}
.wsb_c01061{word-spacing:22.379760pt;}
.wsf_c01061{word-spacing:22.634800pt;}
.ws23_c01061{word-spacing:22.689072pt;}
.ws22_c01061{word-spacing:22.742208pt;}
.ws16_c01061{word-spacing:23.081120pt;}
.ws7_c01061{word-spacing:23.399920pt;}
.ws17_c01061{word-spacing:23.527440pt;}
.ws11_c01061{word-spacing:23.654960pt;}
.ws0_c01061{word-spacing:23.846240pt;}
.wse_c01061{word-spacing:24.675120pt;}
.ws10_c01061{word-spacing:24.993920pt;}
.ws20_c01061{word-spacing:25.027056pt;}
.ws19_c01061{word-spacing:25.759040pt;}
.wsc_c01061{word-spacing:28.054400pt;}
.ws3_c01061{word-spacing:28.373200pt;}
.ws2_c01061{word-spacing:29.903440pt;}
._0_c01061{margin-left:-36.024400pt;}
._a_c01061{margin-left:-32.708880pt;}
._5_c01061{margin-left:-31.816240pt;}
._4_c01061{margin-left:-30.286000pt;}
._9_c01061{margin-left:-28.819520pt;}
._17_c01061{margin-left:-27.907264pt;}
._16_c01061{margin-left:-27.003792pt;}
._15_c01061{margin-left:-25.647248pt;}
._c_c01061{margin-left:-24.292560pt;}
._14_c01061{margin-left:-20.229493pt;}
._b_c01061{margin-left:-7.013600pt;}
._11_c01061{margin-left:-5.228320pt;}
._d_c01061{margin-left:-4.080640pt;}
._2_c01061{margin-left:-3.188000pt;}
._3_c01061{margin-left:-1.530240pt;}
._8_c01061{width:1.466480pt;}
._6_c01061{width:3.188000pt;}
._7_c01061{width:4.136027pt;}
._12_c01061{width:9.564000pt;}
._10_c01061{width:15.557440pt;}
._f_c01061{width:17.151440pt;}
._13_c01061{width:24.483840pt;}
._e_c01061{width:25.631520pt;}
._1_c01061{width:413.105280pt;}
.fs2_c01061{font-size:37.194667pt;}
.fs1_c01061{font-size:42.506667pt;}
.fs3_c01061{font-size:53.136000pt;}
.fs0_c01061{font-size:63.760000pt;}
.y0_c01061{bottom:0.000000pt;}
.y26_c01061{bottom:105.541333pt;}
.y25_c01061{bottom:126.301333pt;}
.y24_c01061{bottom:137.421333pt;}
.y23_c01061{bottom:153.361333pt;}
.y22_c01061{bottom:174.122667pt;}
.y21_c01061{bottom:185.242667pt;}
.y20_c01061{bottom:206.002667pt;}
.y1f_c01061{bottom:229.786667pt;}
.y1e_c01061{bottom:253.689333pt;}
.y1d_c01061{bottom:277.592000pt;}
.y1c_c01061{bottom:301.496000pt;}
.y1b_c01061{bottom:325.398667pt;}
.y1a_c01061{bottom:349.301333pt;}
.y19_c01061{bottom:373.204000pt;}
.y18_c01061{bottom:414.376000pt;}
.y17_c01061{bottom:438.278667pt;}
.y16_c01061{bottom:462.181333pt;}
.y15_c01061{bottom:486.085333pt;}
.y14_c01061{bottom:509.988000pt;}
.y13_c01061{bottom:533.890667pt;}
.y12_c01061{bottom:557.793333pt;}
.y11_c01061{bottom:581.697333pt;}
.y10_c01061{bottom:605.600000pt;}
.yf_c01061{bottom:629.502667pt;}
.ye_c01061{bottom:653.405333pt;}
.yd_c01061{bottom:693.249333pt;}
.yc_c01061{bottom:717.152000pt;}
.yb_c01061{bottom:741.054667pt;}
.ya_c01061{bottom:764.957333pt;}
.y9_c01061{bottom:788.861333pt;}
.y8_c01061{bottom:812.764000pt;}
.y7_c01061{bottom:836.666667pt;}
.y6_c01061{bottom:877.838667pt;}
.y5_c01061{bottom:901.741333pt;}
.y4_c01061{bottom:925.644000pt;}
.y3_c01061{bottom:949.546667pt;}
.y2_c01061{bottom:973.450667pt;}
.y1_c01061{bottom:1032.964000pt;}
.h4_c01061{height:25.143595pt;}
.h5_c01061{height:39.852000pt;}
.h2_c01061{height:47.820000pt;}
.h3_c01061{height:51.870507pt;}
.h1_c01061{height:1123.333333pt;}
.h0_c01061{height:1123.653333pt;}
.w0_c01061{width:794.550667pt;}
.w1_c01061{width:794.666667pt;}
.x0_c01061{left:0.000000pt;}
.x1_c01061{left:113.385333pt;}
.x5_c01061{left:131.337333pt;}
.x4_c01061{left:142.078667pt;}
.x3_c01061{left:152.405333pt;}
.x2_c01061{left:175.817333pt;}
}





/* 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_cc47084a8b623f9036b76d8f.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.001000;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_c01062;src:url('chunks/assets/font_aadabf92e39b168e719f20bf.woff2')format("woff");}.ff2_c01062{font-family:ff2_c01062;line-height:1.001000;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_c01062;src:url('chunks/assets/font_7cd8b3ebff842666986fa68e.woff2')format("woff");}.ff3_c01062{font-family:ff3_c01062;line-height:1.001000;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_c01062;src:url('chunks/assets/font_3b5f0ca700f17b3d5c4e6494.woff2')format("woff");}.ff4_c01062{font-family:ff4_c01062;line-height:0.697000;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_c01062;src:url('chunks/assets/font_6d1fe037833e28c79ac3f039.woff2')format("woff");}.ff5_c01062{font-family:ff5_c01062;line-height:0.696000;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_c01062;src:url('chunks/assets/font_e4ee8554498f766156b1d4b0.woff2')format("woff");}.ff6_c01062{font-family:ff6_c01062;line-height:1.000000;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_c01062;src:url('chunks/assets/font_cfd544c62db825e2a2efd01b.woff2')format("woff");}.ff7_c01062{font-family:ff7_c01062;line-height:1.000000;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);}
.v2_c01062{vertical-align:-21.690000px;}
.v0_c01062{vertical-align:0.000000px;}
.v3_c01062{vertical-align:21.696000px;}
.v1_c01062{vertical-align:26.028000px;}
.ls5_c01062{letter-spacing:0.000000px;}
.ls0_c01062{letter-spacing:2.999580px;}
.ls2_c01062{letter-spacing:3.004764px;}
.ls1_c01062{letter-spacing:3.005580px;}
.ls4_c01062{letter-spacing:22.930764px;}
.ls3_c01062{letter-spacing:30.358764px;}
.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;}
}
.ws1_c01062{word-spacing:-0.071730px;}
.ws22_c01062{word-spacing:0.000000px;}
.ws21_c01062{word-spacing:9.086256px;}
.wsa_c01062{word-spacing:17.000010px;}
.ws13_c01062{word-spacing:17.358660px;}
.ws15_c01062{word-spacing:18.219420px;}
.ws1c_c01062{word-spacing:19.846296px;}
.ws1d_c01062{word-spacing:21.101634px;}
.ws20_c01062{word-spacing:21.340746px;}
.ws6_c01062{word-spacing:22.308030px;}
.wsb_c01062{word-spacing:22.666680px;}
.wsc_c01062{word-spacing:22.810140px;}
.ws9_c01062{word-spacing:23.312250px;}
.ws16_c01062{word-spacing:23.814360px;}
.ws11_c01062{word-spacing:24.101280px;}
.ws19_c01062{word-spacing:24.675120px;}
.ws14_c01062{word-spacing:25.607610px;}
.ws8_c01062{word-spacing:25.679340px;}
.ws18_c01062{word-spacing:25.822800px;}
.ws2_c01062{word-spacing:26.540100px;}
.ws0_c01062{word-spacing:26.827020px;}
.ws12_c01062{word-spacing:27.113940px;}
.ws1e_c01062{word-spacing:27.258768px;}
.wsf_c01062{word-spacing:27.616050px;}
.ws1f_c01062{word-spacing:28.155438px;}
.ws10_c01062{word-spacing:28.476810px;}
.ws4_c01062{word-spacing:29.122380px;}
.ws3_c01062{word-spacing:29.839680px;}
.ws17_c01062{word-spacing:30.126600px;}
.ws7_c01062{word-spacing:30.413520px;}
.ws5_c01062{word-spacing:32.063310px;}
.wse_c01062{word-spacing:33.210990px;}
.wsd_c01062{word-spacing:33.784830px;}
.ws1b_c01062{word-spacing:35.807022px;}
.ws1a_c01062{word-spacing:35.986356px;}
._0_c01062{margin-left:-40.527450px;}
._8_c01062{margin-left:-37.443060px;}
._3_c01062{margin-left:-36.008460px;}
._a_c01062{margin-left:-34.790370px;}
._d_c01062{margin-left:-32.351550px;}
._f_c01062{margin-left:-30.774168px;}
._11_c01062{margin-left:-29.733678px;}
._9_c01062{margin-left:-27.974700px;}
._4_c01062{margin-left:-7.173000px;}
._e_c01062{margin-left:-5.523210px;}
._2_c01062{margin-left:-3.514770px;}
._6_c01062{margin-left:-2.008440px;}
._b_c01062{margin-left:-1.004220px;}
._7_c01062{width:2.008440px;}
._13_c01062{width:3.659838px;}
._5_c01062{width:4.735500px;}
._c_c01062{width:10.759500px;}
._12_c01062{width:22.103568px;}
._10_c01062{width:34.859004px;}
._1_c01062{width:464.743440px;}
.fc0_c01062{color:rgb(0,0,0);}
.fs2_c01062{font-size:41.844000px;}
.fs1_c01062{font-size:47.820000px;}
.fs3_c01062{font-size:59.778000px;}
.fs0_c01062{font-size:71.730000px;}
.y0_c01062{bottom:0.000000px;}
.y27_c01062{bottom:122.662500px;}
.y26_c01062{bottom:140.595000px;}
.y25_c01062{bottom:153.105000px;}
.y24_c01062{bottom:171.037500px;}
.y23_c01062{bottom:194.394000px;}
.y22_c01062{bottom:206.904000px;}
.y21_c01062{bottom:230.259000px;}
.y20_c01062{bottom:257.016000px;}
.y1f_c01062{bottom:283.906500px;}
.y1e_c01062{bottom:310.797000px;}
.y1d_c01062{bottom:337.687500px;}
.y1c_c01062{bottom:364.578000px;}
.y1b_c01062{bottom:391.470000px;}
.y1a_c01062{bottom:418.360500px;}
.y19_c01062{bottom:445.251000px;}
.y18_c01062{bottom:472.141500px;}
.y17_c01062{bottom:518.460000px;}
.y16_c01062{bottom:545.350500px;}
.y15_c01062{bottom:572.242500px;}
.y14_c01062{bottom:599.133000px;}
.y13_c01062{bottom:626.023500px;}
.y12_c01062{bottom:652.914000px;}
.y11_c01062{bottom:679.806000px;}
.y10_c01062{bottom:726.123000px;}
.yf_c01062{bottom:753.013500px;}
.ye_c01062{bottom:779.905500px;}
.yd_c01062{bottom:806.796000px;}
.yc_c01062{bottom:833.686500px;}
.yb_c01062{bottom:838.219500px;}
.ya_c01062{bottom:860.577000px;}
.y9_c01062{bottom:887.469000px;}
.y8_c01062{bottom:914.359500px;}
.y7_c01062{bottom:941.250000px;}
.y6_c01062{bottom:987.568500px;}
.y5_c01062{bottom:1014.459000px;}
.y4_c01062{bottom:1041.349500px;}
.y3_c01062{bottom:1068.240000px;}
.y2_c01062{bottom:1095.132000px;}
.y1_c01062{bottom:1162.084500px;}
.h5_c01062{height:28.286544px;}
.h6_c01062{height:44.833500px;}
.h7_c01062{height:49.982544px;}
.h2_c01062{height:53.797500px;}
.h3_c01062{height:58.354320px;}
.h4_c01062{height:58.360320px;}
.h1_c01062{height:1263.750000px;}
.h0_c01062{height:1264.110000px;}
.w0_c01062{width:893.869500px;}
.w1_c01062{width:894.000000px;}
.x0_c01062{left:0.000000px;}
.x1_c01062{left:127.558500px;}
.x6_c01062{left:147.754500px;}
.x4_c01062{left:159.838500px;}
.x5_c01062{left:161.421000px;}
.x3_c01062{left:171.456000px;}
.x2_c01062{left:197.794500px;}
@media print{
.v2_c01062{vertical-align:-19.280000pt;}
.v0_c01062{vertical-align:0.000000pt;}
.v3_c01062{vertical-align:19.285333pt;}
.v1_c01062{vertical-align:23.136000pt;}
.ls5_c01062{letter-spacing:0.000000pt;}
.ls0_c01062{letter-spacing:2.666293pt;}
.ls2_c01062{letter-spacing:2.670901pt;}
.ls1_c01062{letter-spacing:2.671627pt;}
.ls4_c01062{letter-spacing:20.382901pt;}
.ls3_c01062{letter-spacing:26.985568pt;}
.ws1_c01062{word-spacing:-0.063760pt;}
.ws22_c01062{word-spacing:0.000000pt;}
.ws21_c01062{word-spacing:8.076672pt;}
.wsa_c01062{word-spacing:15.111120pt;}
.ws13_c01062{word-spacing:15.429920pt;}
.ws15_c01062{word-spacing:16.195040pt;}
.ws1c_c01062{word-spacing:17.641152pt;}
.ws1d_c01062{word-spacing:18.757008pt;}
.ws20_c01062{word-spacing:18.969552pt;}
.ws6_c01062{word-spacing:19.829360pt;}
.wsb_c01062{word-spacing:20.148160pt;}
.wsc_c01062{word-spacing:20.275680pt;}
.ws9_c01062{word-spacing:20.722000pt;}
.ws16_c01062{word-spacing:21.168320pt;}
.ws11_c01062{word-spacing:21.423360pt;}
.ws19_c01062{word-spacing:21.933440pt;}
.ws14_c01062{word-spacing:22.762320pt;}
.ws8_c01062{word-spacing:22.826080pt;}
.ws18_c01062{word-spacing:22.953600pt;}
.ws2_c01062{word-spacing:23.591200pt;}
.ws0_c01062{word-spacing:23.846240pt;}
.ws12_c01062{word-spacing:24.101280pt;}
.ws1e_c01062{word-spacing:24.230016pt;}
.wsf_c01062{word-spacing:24.547600pt;}
.ws1f_c01062{word-spacing:25.027056pt;}
.ws10_c01062{word-spacing:25.312720pt;}
.ws4_c01062{word-spacing:25.886560pt;}
.ws3_c01062{word-spacing:26.524160pt;}
.ws17_c01062{word-spacing:26.779200pt;}
.ws7_c01062{word-spacing:27.034240pt;}
.ws5_c01062{word-spacing:28.500720pt;}
.wse_c01062{word-spacing:29.520880pt;}
.wsd_c01062{word-spacing:30.030960pt;}
.ws1b_c01062{word-spacing:31.828464pt;}
.ws1a_c01062{word-spacing:31.987872pt;}
._0_c01062{margin-left:-36.024400pt;}
._8_c01062{margin-left:-33.282720pt;}
._3_c01062{margin-left:-32.007520pt;}
._a_c01062{margin-left:-30.924773pt;}
._d_c01062{margin-left:-28.756933pt;}
._f_c01062{margin-left:-27.354816pt;}
._11_c01062{margin-left:-26.429936pt;}
._9_c01062{margin-left:-24.866400pt;}
._4_c01062{margin-left:-6.376000pt;}
._e_c01062{margin-left:-4.909520pt;}
._2_c01062{margin-left:-3.124240pt;}
._6_c01062{margin-left:-1.785280pt;}
._b_c01062{margin-left:-0.892640pt;}
._7_c01062{width:1.785280pt;}
._13_c01062{width:3.253189pt;}
._5_c01062{width:4.209333pt;}
._c_c01062{width:9.564000pt;}
._12_c01062{width:19.647616pt;}
._10_c01062{width:30.985781pt;}
._1_c01062{width:413.105280pt;}
.fs2_c01062{font-size:37.194667pt;}
.fs1_c01062{font-size:42.506667pt;}
.fs3_c01062{font-size:53.136000pt;}
.fs0_c01062{font-size:63.760000pt;}
.y0_c01062{bottom:0.000000pt;}
.y27_c01062{bottom:109.033333pt;}
.y26_c01062{bottom:124.973333pt;}
.y25_c01062{bottom:136.093333pt;}
.y24_c01062{bottom:152.033333pt;}
.y23_c01062{bottom:172.794667pt;}
.y22_c01062{bottom:183.914667pt;}
.y21_c01062{bottom:204.674667pt;}
.y20_c01062{bottom:228.458667pt;}
.y1f_c01062{bottom:252.361333pt;}
.y1e_c01062{bottom:276.264000pt;}
.y1d_c01062{bottom:300.166667pt;}
.y1c_c01062{bottom:324.069333pt;}
.y1b_c01062{bottom:347.973333pt;}
.y1a_c01062{bottom:371.876000pt;}
.y19_c01062{bottom:395.778667pt;}
.y18_c01062{bottom:419.681333pt;}
.y17_c01062{bottom:460.853333pt;}
.y16_c01062{bottom:484.756000pt;}
.y15_c01062{bottom:508.660000pt;}
.y14_c01062{bottom:532.562667pt;}
.y13_c01062{bottom:556.465333pt;}
.y12_c01062{bottom:580.368000pt;}
.y11_c01062{bottom:604.272000pt;}
.y10_c01062{bottom:645.442667pt;}
.yf_c01062{bottom:669.345333pt;}
.ye_c01062{bottom:693.249333pt;}
.yd_c01062{bottom:717.152000pt;}
.yc_c01062{bottom:741.054667pt;}
.yb_c01062{bottom:745.084000pt;}
.ya_c01062{bottom:764.957333pt;}
.y9_c01062{bottom:788.861333pt;}
.y8_c01062{bottom:812.764000pt;}
.y7_c01062{bottom:836.666667pt;}
.y6_c01062{bottom:877.838667pt;}
.y5_c01062{bottom:901.741333pt;}
.y4_c01062{bottom:925.644000pt;}
.y3_c01062{bottom:949.546667pt;}
.y2_c01062{bottom:973.450667pt;}
.y1_c01062{bottom:1032.964000pt;}
.h5_c01062{height:25.143595pt;}
.h6_c01062{height:39.852000pt;}
.h7_c01062{height:44.428928pt;}
.h2_c01062{height:47.820000pt;}
.h3_c01062{height:51.870507pt;}
.h4_c01062{height:51.875840pt;}
.h1_c01062{height:1123.333333pt;}
.h0_c01062{height:1123.653333pt;}
.w0_c01062{width:794.550667pt;}
.w1_c01062{width:794.666667pt;}
.x0_c01062{left:0.000000pt;}
.x1_c01062{left:113.385333pt;}
.x6_c01062{left:131.337333pt;}
.x4_c01062{left:142.078667pt;}
.x5_c01062{left:143.485333pt;}
.x3_c01062{left:152.405333pt;}
.x2_c01062{left:175.817333pt;}
}





/* 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_3dae77858abf20f1ba77e435.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.001000;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_d1843dc5cfd5423cf6c730cc.woff2')format("woff");}.ff2_c01063{font-family:ff2_c01063;line-height:1.001000;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;}
.v1_c01063{vertical-align:18.132000px;}
.ls0_c01063{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01063{word-spacing:-0.071730px;}
.ws23_c01063{word-spacing:0.000000px;}
.ws8_c01063{word-spacing:19.438830px;}
.ws9_c01063{word-spacing:19.940940px;}
.ws14_c01063{word-spacing:20.227860px;}
.ws17_c01063{word-spacing:20.443050px;}
.ws1e_c01063{word-spacing:20.873430px;}
.ws20_c01063{word-spacing:20.945160px;}
.ws22_c01063{word-spacing:21.016890px;}
.wsc_c01063{word-spacing:21.232080px;}
.ws7_c01063{word-spacing:22.666680px;}
.ws6_c01063{word-spacing:23.312250px;}
.ws18_c01063{word-spacing:23.455710px;}
.ws21_c01063{word-spacing:24.101280px;}
.wsd_c01063{word-spacing:24.531660px;}
.ws3_c01063{word-spacing:25.392420px;}
.wse_c01063{word-spacing:25.679340px;}
.ws12_c01063{word-spacing:25.822800px;}
.ws1a_c01063{word-spacing:26.324910px;}
.ws1f_c01063{word-spacing:26.396640px;}
.wsa_c01063{word-spacing:26.611830px;}
.ws4_c01063{word-spacing:26.683560px;}
.ws13_c01063{word-spacing:26.755290px;}
.ws0_c01063{word-spacing:26.827020px;}
.ws15_c01063{word-spacing:27.185670px;}
.ws1c_c01063{word-spacing:27.831240px;}
.wsb_c01063{word-spacing:28.046430px;}
.ws16_c01063{word-spacing:28.261620px;}
.ws19_c01063{word-spacing:28.620270px;}
.ws11_c01063{word-spacing:29.265840px;}
.ws2_c01063{word-spacing:30.843900px;}
.ws5_c01063{word-spacing:30.915630px;}
.ws1d_c01063{word-spacing:31.561200px;}
.ws1b_c01063{word-spacing:31.632930px;}
.ws10_c01063{word-spacing:34.000020px;}
.wsf_c01063{word-spacing:34.071750px;}
._0_c01063{margin-left:-40.527450px;}
._9_c01063{margin-left:-37.443060px;}
._2_c01063{margin-left:-34.860780px;}
._8_c01063{margin-left:-33.210990px;}
._7_c01063{margin-left:-27.400860px;}
._6_c01063{margin-left:-7.746840px;}
._b_c01063{margin-left:-5.810130px;}
._5_c01063{margin-left:-3.873420px;}
._3_c01063{margin-left:-1.936710px;}
._4_c01063{width:1.936710px;}
._a_c01063{width:3.945150px;}
._c_c01063{width:20.299590px;}
._d_c01063{width:42.548730px;}
._1_c01063{width:464.743440px;}
.fc0_c01063{color:rgb(0,0,0);}
.fs0_c01063{font-size:71.730000px;}
.y0_c01063{bottom:0.000000px;}
.y28_c01063{bottom:100.170000px;}
.y27_c01063{bottom:104.703000px;}
.y26_c01063{bottom:127.060500px;}
.y25_c01063{bottom:153.951000px;}
.y24_c01063{bottom:180.843000px;}
.y23_c01063{bottom:207.733500px;}
.y22_c01063{bottom:234.624000px;}
.y21_c01063{bottom:261.514500px;}
.y20_c01063{bottom:288.406500px;}
.y1f_c01063{bottom:315.297000px;}
.y1e_c01063{bottom:342.187500px;}
.y1d_c01063{bottom:369.078000px;}
.y1c_c01063{bottom:395.970000px;}
.y1b_c01063{bottom:422.860500px;}
.y1a_c01063{bottom:449.751000px;}
.y19_c01063{bottom:476.641500px;}
.y18_c01063{bottom:503.533500px;}
.y17_c01063{bottom:530.424000px;}
.y16_c01063{bottom:557.314500px;}
.y15_c01063{bottom:584.205000px;}
.y14_c01063{bottom:611.095500px;}
.y13_c01063{bottom:637.987500px;}
.y12_c01063{bottom:664.878000px;}
.y11_c01063{bottom:691.768500px;}
.y10_c01063{bottom:718.659000px;}
.yf_c01063{bottom:745.551000px;}
.ye_c01063{bottom:772.441500px;}
.yd_c01063{bottom:799.332000px;}
.yc_c01063{bottom:826.222500px;}
.yb_c01063{bottom:853.114500px;}
.ya_c01063{bottom:880.005000px;}
.y9_c01063{bottom:906.895500px;}
.y8_c01063{bottom:933.786000px;}
.y7_c01063{bottom:960.678000px;}
.y6_c01063{bottom:987.568500px;}
.y5_c01063{bottom:1014.459000px;}
.y4_c01063{bottom:1041.349500px;}
.y3_c01063{bottom:1068.240000px;}
.y2_c01063{bottom:1095.132000px;}
.y1_c01063{bottom:1162.084500px;}
.h2_c01063{height:53.797500px;}
.h3_c01063{height:71.929500px;}
.h1_c01063{height:1263.750000px;}
.h0_c01063{height:1264.110000px;}
.w0_c01063{width:893.869500px;}
.w1_c01063{width:894.000000px;}
.x0_c01063{left:0.000000px;}
.x1_c01063{left:127.558500px;}
.x4_c01063{left:129.751500px;}
.x2_c01063{left:159.838500px;}
.x3_c01063{left:381.660000px;}
@media print{
.v0_c01063{vertical-align:0.000000pt;}
.v1_c01063{vertical-align:16.117333pt;}
.ls0_c01063{letter-spacing:0.000000pt;}
.ws1_c01063{word-spacing:-0.063760pt;}
.ws23_c01063{word-spacing:0.000000pt;}
.ws8_c01063{word-spacing:17.278960pt;}
.ws9_c01063{word-spacing:17.725280pt;}
.ws14_c01063{word-spacing:17.980320pt;}
.ws17_c01063{word-spacing:18.171600pt;}
.ws1e_c01063{word-spacing:18.554160pt;}
.ws20_c01063{word-spacing:18.617920pt;}
.ws22_c01063{word-spacing:18.681680pt;}
.wsc_c01063{word-spacing:18.872960pt;}
.ws7_c01063{word-spacing:20.148160pt;}
.ws6_c01063{word-spacing:20.722000pt;}
.ws18_c01063{word-spacing:20.849520pt;}
.ws21_c01063{word-spacing:21.423360pt;}
.wsd_c01063{word-spacing:21.805920pt;}
.ws3_c01063{word-spacing:22.571040pt;}
.wse_c01063{word-spacing:22.826080pt;}
.ws12_c01063{word-spacing:22.953600pt;}
.ws1a_c01063{word-spacing:23.399920pt;}
.ws1f_c01063{word-spacing:23.463680pt;}
.wsa_c01063{word-spacing:23.654960pt;}
.ws4_c01063{word-spacing:23.718720pt;}
.ws13_c01063{word-spacing:23.782480pt;}
.ws0_c01063{word-spacing:23.846240pt;}
.ws15_c01063{word-spacing:24.165040pt;}
.ws1c_c01063{word-spacing:24.738880pt;}
.wsb_c01063{word-spacing:24.930160pt;}
.ws16_c01063{word-spacing:25.121440pt;}
.ws19_c01063{word-spacing:25.440240pt;}
.ws11_c01063{word-spacing:26.014080pt;}
.ws2_c01063{word-spacing:27.416800pt;}
.ws5_c01063{word-spacing:27.480560pt;}
.ws1d_c01063{word-spacing:28.054400pt;}
.ws1b_c01063{word-spacing:28.118160pt;}
.ws10_c01063{word-spacing:30.222240pt;}
.wsf_c01063{word-spacing:30.286000pt;}
._0_c01063{margin-left:-36.024400pt;}
._9_c01063{margin-left:-33.282720pt;}
._2_c01063{margin-left:-30.987360pt;}
._8_c01063{margin-left:-29.520880pt;}
._7_c01063{margin-left:-24.356320pt;}
._6_c01063{margin-left:-6.886080pt;}
._b_c01063{margin-left:-5.164560pt;}
._5_c01063{margin-left:-3.443040pt;}
._3_c01063{margin-left:-1.721520pt;}
._4_c01063{width:1.721520pt;}
._a_c01063{width:3.506800pt;}
._c_c01063{width:18.044080pt;}
._d_c01063{width:37.821093pt;}
._1_c01063{width:413.105280pt;}
.fs0_c01063{font-size:63.760000pt;}
.y0_c01063{bottom:0.000000pt;}
.y28_c01063{bottom:89.040000pt;}
.y27_c01063{bottom:93.069333pt;}
.y26_c01063{bottom:112.942667pt;}
.y25_c01063{bottom:136.845333pt;}
.y24_c01063{bottom:160.749333pt;}
.y23_c01063{bottom:184.652000pt;}
.y22_c01063{bottom:208.554667pt;}
.y21_c01063{bottom:232.457333pt;}
.y20_c01063{bottom:256.361333pt;}
.y1f_c01063{bottom:280.264000pt;}
.y1e_c01063{bottom:304.166667pt;}
.y1d_c01063{bottom:328.069333pt;}
.y1c_c01063{bottom:351.973333pt;}
.y1b_c01063{bottom:375.876000pt;}
.y1a_c01063{bottom:399.778667pt;}
.y19_c01063{bottom:423.681333pt;}
.y18_c01063{bottom:447.585333pt;}
.y17_c01063{bottom:471.488000pt;}
.y16_c01063{bottom:495.390667pt;}
.y15_c01063{bottom:519.293333pt;}
.y14_c01063{bottom:543.196000pt;}
.y13_c01063{bottom:567.100000pt;}
.y12_c01063{bottom:591.002667pt;}
.y11_c01063{bottom:614.905333pt;}
.y10_c01063{bottom:638.808000pt;}
.yf_c01063{bottom:662.712000pt;}
.ye_c01063{bottom:686.614667pt;}
.yd_c01063{bottom:710.517333pt;}
.yc_c01063{bottom:734.420000pt;}
.yb_c01063{bottom:758.324000pt;}
.ya_c01063{bottom:782.226667pt;}
.y9_c01063{bottom:806.129333pt;}
.y8_c01063{bottom:830.032000pt;}
.y7_c01063{bottom:853.936000pt;}
.y6_c01063{bottom:877.838667pt;}
.y5_c01063{bottom:901.741333pt;}
.y4_c01063{bottom:925.644000pt;}
.y3_c01063{bottom:949.546667pt;}
.y2_c01063{bottom:973.450667pt;}
.y1_c01063{bottom:1032.964000pt;}
.h2_c01063{height:47.820000pt;}
.h3_c01063{height:63.937333pt;}
.h1_c01063{height:1123.333333pt;}
.h0_c01063{height:1123.653333pt;}
.w0_c01063{width:794.550667pt;}
.w1_c01063{width:794.666667pt;}
.x0_c01063{left:0.000000pt;}
.x1_c01063{left:113.385333pt;}
.x4_c01063{left:115.334667pt;}
.x2_c01063{left:142.078667pt;}
.x3_c01063{left:339.253333pt;}
}





/* 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_9bca4fa16815c9b2ebf7d0b3.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.001000;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_c01064;src:url('chunks/assets/font_dc1d8db44866ee94d50d9891.woff2')format("woff");}.ff2_c01064{font-family:ff2_c01064;line-height:1.001000;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_c01064;src:url('chunks/assets/font_970f37d6bb70f9c6026d907a.woff2')format("woff");}.ff3_c01064{font-family:ff3_c01064;line-height:1.001000;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_c01064;src:url('chunks/assets/font_4ac069f3571b1de8c4166b55.woff2')format("woff");}.ff4_c01064{font-family:ff4_c01064;line-height:0.697000;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_c01064;src:url('chunks/assets/font_1d709ca4d0bc080570d83075.woff2')format("woff");}.ff5_c01064{font-family:ff5_c01064;line-height:0.696000;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_c01064;src:url('chunks/assets/font_8fca465812b1b785ea1bb33f.woff2')format("woff");}.ff6_c01064{font-family:ff6_c01064;line-height:1.000000;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_c01064;src:url('chunks/assets/font_9f470c179f76a32dfef972b0.woff2')format("woff");}.ff7_c01064{font-family:ff7_c01064;line-height:1.000000;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);}
.v2_c01064{vertical-align:-21.696000px;}
.v0_c01064{vertical-align:0.000000px;}
.v3_c01064{vertical-align:21.690000px;}
.v1_c01064{vertical-align:26.034000px;}
.ls1_c01064{letter-spacing:0.000000px;}
.ls0_c01064{letter-spacing:24.544764px;}
.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;}
}
.ws1_c01064{word-spacing:-0.071730px;}
.wsc_c01064{word-spacing:-0.047820px;}
.ws24_c01064{word-spacing:-0.041844px;}
.ws2b_c01064{word-spacing:0.000000px;}
.ws2a_c01064{word-spacing:9.086256px;}
.ws25_c01064{word-spacing:15.362946px;}
.wsd_c01064{word-spacing:15.565410px;}
.ws9_c01064{word-spacing:15.601530px;}
.wsb_c01064{word-spacing:15.637140px;}
.ws16_c01064{word-spacing:16.282710px;}
.ws15_c01064{word-spacing:17.071740px;}
.ws13_c01064{word-spacing:17.143470px;}
.ws1c_c01064{word-spacing:17.573850px;}
.wsa_c01064{word-spacing:17.932500px;}
.wse_c01064{word-spacing:19.008450px;}
.ws14_c01064{word-spacing:19.295370px;}
.ws23_c01064{word-spacing:19.582290px;}
.ws29_c01064{word-spacing:19.846296px;}
.ws1b_c01064{word-spacing:20.084400px;}
.ws8_c01064{word-spacing:20.371320px;}
.ws28_c01064{word-spacing:21.460302px;}
.ws26_c01064{word-spacing:21.520080px;}
.ws6_c01064{word-spacing:21.590730px;}
.ws1d_c01064{word-spacing:21.662460px;}
.ws17_c01064{word-spacing:22.666680px;}
.ws27_c01064{word-spacing:22.775418px;}
.ws5_c01064{word-spacing:23.312250px;}
.ws4_c01064{word-spacing:23.742630px;}
.ws3_c01064{word-spacing:24.316470px;}
.ws11_c01064{word-spacing:24.746850px;}
.ws1e_c01064{word-spacing:25.320690px;}
.ws18_c01064{word-spacing:25.894530px;}
.ws19_c01064{word-spacing:26.109720px;}
.ws12_c01064{word-spacing:26.324910px;}
.ws1f_c01064{word-spacing:26.755290px;}
.ws0_c01064{word-spacing:26.827020px;}
.ws22_c01064{word-spacing:26.970480px;}
.wsf_c01064{word-spacing:27.185670px;}
.ws7_c01064{word-spacing:27.472590px;}
.ws2_c01064{word-spacing:28.692000px;}
.ws10_c01064{word-spacing:28.763730px;}
.ws1a_c01064{word-spacing:29.265840px;}
.ws20_c01064{word-spacing:30.556980px;}
.ws21_c01064{word-spacing:32.565420px;}
._0_c01064{margin-left:-40.527450px;}
._5_c01064{margin-left:-37.084410px;}
._3_c01064{margin-left:-35.219430px;}
._6_c01064{margin-left:-33.354450px;}
._15_c01064{margin-left:-32.076774px;}
._12_c01064{margin-left:-30.442314px;}
._18_c01064{margin-left:-28.609848px;}
._b_c01064{margin-left:-27.329130px;}
._16_c01064{margin-left:-24.422652px;}
._a_c01064{margin-left:-8.033760px;}
._c_c01064{margin-left:-6.312240px;}
._13_c01064{margin-left:-5.260464px;}
._9_c01064{margin-left:-3.945150px;}
._10_c01064{margin-left:-2.940930px;}
._2_c01064{margin-left:-1.936710px;}
._7_c01064{width:2.008440px;}
._e_c01064{width:3.120630px;}
._11_c01064{width:5.625000px;}
._14_c01064{width:14.380974px;}
._d_c01064{width:20.107890px;}
._17_c01064{width:22.363116px;}
._f_c01064{width:23.816580px;}
._8_c01064{width:25.535880px;}
._4_c01064{width:30.628710px;}
._1_c01064{width:464.743440px;}
.fc0_c01064{color:rgb(0,0,0);}
.fs2_c01064{font-size:41.844000px;}
.fs1_c01064{font-size:47.820000px;}
.fs3_c01064{font-size:59.778000px;}
.fs0_c01064{font-size:71.730000px;}
.y0_c01064{bottom:0.000000px;}
.y27_c01064{bottom:98.865000px;}
.y26_c01064{bottom:111.375000px;}
.y25_c01064{bottom:129.307500px;}
.y24_c01064{bottom:152.664000px;}
.y23_c01064{bottom:178.248000px;}
.y22_c01064{bottom:219.882000px;}
.y21_c01064{bottom:246.772500px;}
.y20_c01064{bottom:273.663000px;}
.y1f_c01064{bottom:300.555000px;}
.y1e_c01064{bottom:327.445500px;}
.y1d_c01064{bottom:369.078000px;}
.y1c_c01064{bottom:395.970000px;}
.y1b_c01064{bottom:422.860500px;}
.y1a_c01064{bottom:449.751000px;}
.y19_c01064{bottom:476.641500px;}
.y18_c01064{bottom:503.533500px;}
.y17_c01064{bottom:530.424000px;}
.y16_c01064{bottom:557.314500px;}
.y15_c01064{bottom:584.205000px;}
.y14_c01064{bottom:611.095500px;}
.y13_c01064{bottom:637.987500px;}
.y12_c01064{bottom:664.878000px;}
.y11_c01064{bottom:691.768500px;}
.y10_c01064{bottom:718.659000px;}
.yf_c01064{bottom:745.551000px;}
.ye_c01064{bottom:772.441500px;}
.yd_c01064{bottom:799.332000px;}
.yc_c01064{bottom:826.222500px;}
.yb_c01064{bottom:853.114500px;}
.ya_c01064{bottom:880.005000px;}
.y9_c01064{bottom:906.895500px;}
.y8_c01064{bottom:933.786000px;}
.y7_c01064{bottom:960.678000px;}
.y6_c01064{bottom:987.568500px;}
.y5_c01064{bottom:1014.459000px;}
.y4_c01064{bottom:1041.349500px;}
.y3_c01064{bottom:1068.240000px;}
.y2_c01064{bottom:1095.132000px;}
.y1_c01064{bottom:1162.084500px;}
.h5_c01064{height:28.286544px;}
.h7_c01064{height:44.833500px;}
.h6_c01064{height:49.976544px;}
.h2_c01064{height:53.797500px;}
.h4_c01064{height:58.354320px;}
.h3_c01064{height:58.360320px;}
.h1_c01064{height:1263.750000px;}
.h0_c01064{height:1264.110000px;}
.w0_c01064{width:893.869500px;}
.w1_c01064{width:894.000000px;}
.x0_c01064{left:0.000000px;}
.x1_c01064{left:127.558500px;}
.x5_c01064{left:141.798000px;}
.x2_c01064{left:159.838500px;}
.x4_c01064{left:171.456000px;}
.x3_c01064{left:197.794500px;}
@media print{
.v2_c01064{vertical-align:-19.285333pt;}
.v0_c01064{vertical-align:0.000000pt;}
.v3_c01064{vertical-align:19.280000pt;}
.v1_c01064{vertical-align:23.141333pt;}
.ls1_c01064{letter-spacing:0.000000pt;}
.ls0_c01064{letter-spacing:21.817568pt;}
.ws1_c01064{word-spacing:-0.063760pt;}
.wsc_c01064{word-spacing:-0.042507pt;}
.ws24_c01064{word-spacing:-0.037195pt;}
.ws2b_c01064{word-spacing:0.000000pt;}
.ws2a_c01064{word-spacing:8.076672pt;}
.ws25_c01064{word-spacing:13.655952pt;}
.wsd_c01064{word-spacing:13.835920pt;}
.ws9_c01064{word-spacing:13.868027pt;}
.wsb_c01064{word-spacing:13.899680pt;}
.ws16_c01064{word-spacing:14.473520pt;}
.ws15_c01064{word-spacing:15.174880pt;}
.ws13_c01064{word-spacing:15.238640pt;}
.ws1c_c01064{word-spacing:15.621200pt;}
.wsa_c01064{word-spacing:15.940000pt;}
.wse_c01064{word-spacing:16.896400pt;}
.ws14_c01064{word-spacing:17.151440pt;}
.ws23_c01064{word-spacing:17.406480pt;}
.ws29_c01064{word-spacing:17.641152pt;}
.ws1b_c01064{word-spacing:17.852800pt;}
.ws8_c01064{word-spacing:18.107840pt;}
.ws28_c01064{word-spacing:19.075824pt;}
.ws26_c01064{word-spacing:19.128960pt;}
.ws6_c01064{word-spacing:19.191760pt;}
.ws1d_c01064{word-spacing:19.255520pt;}
.ws17_c01064{word-spacing:20.148160pt;}
.ws27_c01064{word-spacing:20.244816pt;}
.ws5_c01064{word-spacing:20.722000pt;}
.ws4_c01064{word-spacing:21.104560pt;}
.ws3_c01064{word-spacing:21.614640pt;}
.ws11_c01064{word-spacing:21.997200pt;}
.ws1e_c01064{word-spacing:22.507280pt;}
.ws18_c01064{word-spacing:23.017360pt;}
.ws19_c01064{word-spacing:23.208640pt;}
.ws12_c01064{word-spacing:23.399920pt;}
.ws1f_c01064{word-spacing:23.782480pt;}
.ws0_c01064{word-spacing:23.846240pt;}
.ws22_c01064{word-spacing:23.973760pt;}
.wsf_c01064{word-spacing:24.165040pt;}
.ws7_c01064{word-spacing:24.420080pt;}
.ws2_c01064{word-spacing:25.504000pt;}
.ws10_c01064{word-spacing:25.567760pt;}
.ws1a_c01064{word-spacing:26.014080pt;}
.ws20_c01064{word-spacing:27.161760pt;}
.ws21_c01064{word-spacing:28.947040pt;}
._0_c01064{margin-left:-36.024400pt;}
._5_c01064{margin-left:-32.963920pt;}
._3_c01064{margin-left:-31.306160pt;}
._6_c01064{margin-left:-29.648400pt;}
._15_c01064{margin-left:-28.512688pt;}
._12_c01064{margin-left:-27.059835pt;}
._18_c01064{margin-left:-25.430976pt;}
._b_c01064{margin-left:-24.292560pt;}
._16_c01064{margin-left:-21.709024pt;}
._a_c01064{margin-left:-7.141120pt;}
._c_c01064{margin-left:-5.610880pt;}
._13_c01064{margin-left:-4.675968pt;}
._9_c01064{margin-left:-3.506800pt;}
._10_c01064{margin-left:-2.614160pt;}
._2_c01064{margin-left:-1.721520pt;}
._7_c01064{width:1.785280pt;}
._e_c01064{width:2.773893pt;}
._11_c01064{width:5.000000pt;}
._14_c01064{width:12.783088pt;}
._d_c01064{width:17.873680pt;}
._17_c01064{width:19.878325pt;}
._f_c01064{width:21.170293pt;}
._8_c01064{width:22.698560pt;}
._4_c01064{width:27.225520pt;}
._1_c01064{width:413.105280pt;}
.fs2_c01064{font-size:37.194667pt;}
.fs1_c01064{font-size:42.506667pt;}
.fs3_c01064{font-size:53.136000pt;}
.fs0_c01064{font-size:63.760000pt;}
.y0_c01064{bottom:0.000000pt;}
.y27_c01064{bottom:87.880000pt;}
.y26_c01064{bottom:99.000000pt;}
.y25_c01064{bottom:114.940000pt;}
.y24_c01064{bottom:135.701333pt;}
.y23_c01064{bottom:158.442667pt;}
.y22_c01064{bottom:195.450667pt;}
.y21_c01064{bottom:219.353333pt;}
.y20_c01064{bottom:243.256000pt;}
.y1f_c01064{bottom:267.160000pt;}
.y1e_c01064{bottom:291.062667pt;}
.y1d_c01064{bottom:328.069333pt;}
.y1c_c01064{bottom:351.973333pt;}
.y1b_c01064{bottom:375.876000pt;}
.y1a_c01064{bottom:399.778667pt;}
.y19_c01064{bottom:423.681333pt;}
.y18_c01064{bottom:447.585333pt;}
.y17_c01064{bottom:471.488000pt;}
.y16_c01064{bottom:495.390667pt;}
.y15_c01064{bottom:519.293333pt;}
.y14_c01064{bottom:543.196000pt;}
.y13_c01064{bottom:567.100000pt;}
.y12_c01064{bottom:591.002667pt;}
.y11_c01064{bottom:614.905333pt;}
.y10_c01064{bottom:638.808000pt;}
.yf_c01064{bottom:662.712000pt;}
.ye_c01064{bottom:686.614667pt;}
.yd_c01064{bottom:710.517333pt;}
.yc_c01064{bottom:734.420000pt;}
.yb_c01064{bottom:758.324000pt;}
.ya_c01064{bottom:782.226667pt;}
.y9_c01064{bottom:806.129333pt;}
.y8_c01064{bottom:830.032000pt;}
.y7_c01064{bottom:853.936000pt;}
.y6_c01064{bottom:877.838667pt;}
.y5_c01064{bottom:901.741333pt;}
.y4_c01064{bottom:925.644000pt;}
.y3_c01064{bottom:949.546667pt;}
.y2_c01064{bottom:973.450667pt;}
.y1_c01064{bottom:1032.964000pt;}
.h5_c01064{height:25.143595pt;}
.h7_c01064{height:39.852000pt;}
.h6_c01064{height:44.423595pt;}
.h2_c01064{height:47.820000pt;}
.h4_c01064{height:51.870507pt;}
.h3_c01064{height:51.875840pt;}
.h1_c01064{height:1123.333333pt;}
.h0_c01064{height:1123.653333pt;}
.w0_c01064{width:794.550667pt;}
.w1_c01064{width:794.666667pt;}
.x0_c01064{left:0.000000pt;}
.x1_c01064{left:113.385333pt;}
.x5_c01064{left:126.042667pt;}
.x2_c01064{left:142.078667pt;}
.x4_c01064{left:152.405333pt;}
.x3_c01064{left:175.817333pt;}
}





/* 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_d6286b942059bcdda58b5819.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.001000;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_d984733d796dc48bdc55adef.woff2')format("woff");}.ff2_c01065{font-family:ff2_c01065;line-height:1.001000;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_c01065;src:url('chunks/assets/font_58f52e762c77e45e26b0630d.woff2')format("woff");}.ff3_c01065{font-family:ff3_c01065;line-height:0.697000;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_c01065;src:url('chunks/assets/font_132f8451b9154ea2b86fa903.woff2')format("woff");}.ff4_c01065{font-family:ff4_c01065;line-height:0.462000;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_c01065;src:url('chunks/assets/font_78c0da1178414ab392fb1b17.woff2')format("woff");}.ff5_c01065{font-family:ff5_c01065;line-height:0.696000;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_c01065;src:url('chunks/assets/font_f51c71a3f55337aedb29608a.woff2')format("woff");}.ff6_c01065{font-family:ff6_c01065;line-height:1.000000;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_c01065;src:url('chunks/assets/font_54efed25887ef54ac188972a.woff2')format("woff");}.ff7_c01065{font-family:ff7_c01065;line-height:1.000000;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);}
.v2_c01065{vertical-align:-21.690000px;}
.v0_c01065{vertical-align:0.000000px;}
.v3_c01065{vertical-align:15.108000px;}
.v1_c01065{vertical-align:26.034000px;}
.ls1_c01065{letter-spacing:0.000000px;}
.ls0_c01065{letter-spacing:30.458340px;}
.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;}
}
.ws1_c01065{word-spacing:-0.071730px;}
.ws8_c01065{word-spacing:-0.047820px;}
.ws1e_c01065{word-spacing:-0.041844px;}
.ws2b_c01065{word-spacing:0.000000px;}
.ws25_c01065{word-spacing:14.526054px;}
.ws21_c01065{word-spacing:15.721614px;}
.ws11_c01065{word-spacing:15.924060px;}
.ws22_c01065{word-spacing:17.514954px;}
.ws26_c01065{word-spacing:18.232290px;}
.ws1d_c01065{word-spacing:18.434610px;}
.ws27_c01065{word-spacing:19.248516px;}
.ws13_c01065{word-spacing:19.438830px;}
.ws24_c01065{word-spacing:19.846296px;}
.ws23_c01065{word-spacing:21.340746px;}
.ws19_c01065{word-spacing:21.734190px;}
.ws9_c01065{word-spacing:22.810140px;}
.wsb_c01065{word-spacing:23.312250px;}
.ws7_c01065{word-spacing:23.383980px;}
.ws20_c01065{word-spacing:23.731866px;}
.ws1f_c01065{word-spacing:23.791644px;}
.ws2_c01065{word-spacing:23.814360px;}
.ws17_c01065{word-spacing:23.886090px;}
.ws4_c01065{word-spacing:24.818580px;}
.ws1a_c01065{word-spacing:25.248960px;}
.ws28_c01065{word-spacing:25.644762px;}
.wsf_c01065{word-spacing:25.679340px;}
.ws1b_c01065{word-spacing:26.468370px;}
.ws0_c01065{word-spacing:26.827020px;}
.ws29_c01065{word-spacing:26.900100px;}
.ws18_c01065{word-spacing:27.042210px;}
.ws16_c01065{word-spacing:27.329130px;}
.ws1c_c01065{word-spacing:27.400860px;}
.ws2a_c01065{word-spacing:27.856548px;}
.ws5_c01065{word-spacing:27.863340px;}
.ws15_c01065{word-spacing:27.974700px;}
.ws12_c01065{word-spacing:28.261620px;}
.wsa_c01065{word-spacing:28.333350px;}
.ws14_c01065{word-spacing:28.620270px;}
.ws3_c01065{word-spacing:31.130820px;}
.ws10_c01065{word-spacing:31.274280px;}
.wse_c01065{word-spacing:31.704660px;}
.ws6_c01065{word-spacing:32.924070px;}
.wsc_c01065{word-spacing:33.497910px;}
.wsd_c01065{word-spacing:34.932510px;}
._0_c01065{margin-left:-40.527450px;}
._e_c01065{margin-left:-38.201400px;}
._7_c01065{margin-left:-36.510570px;}
._6_c01065{margin-left:-35.362890px;}
._c_c01065{margin-left:-34.358670px;}
._b_c01065{margin-left:-33.139260px;}
._12_c01065{margin-left:-31.263750px;}
._11_c01065{margin-left:-29.676894px;}
._a_c01065{margin-left:-27.329130px;}
._15_c01065{margin-left:-23.193864px;}
._9_c01065{margin-left:-8.033760px;}
._14_c01065{margin-left:-6.393180px;}
._8_c01065{margin-left:-5.308020px;}
._2_c01065{margin-left:-3.873420px;}
._3_c01065{margin-left:-2.008440px;}
._13_c01065{margin-left:-1.004472px;}
._4_c01065{width:1.434600px;}
._5_c01065{width:2.869200px;}
._16_c01065{width:3.896586px;}
._f_c01065{width:7.409850px;}
._10_c01065{width:16.833528px;}
._d_c01065{width:29.839680px;}
._1_c01065{width:464.743440px;}
.fc0_c01065{color:rgb(0,0,0);}
.fs2_c01065{font-size:41.844000px;}
.fs1_c01065{font-size:47.820000px;}
.fs3_c01065{font-size:59.778000px;}
.fs0_c01065{font-size:71.730000px;}
.y0_c01065{bottom:0.000000px;}
.y2a_c01065{bottom:102.187500px;}
.y29_c01065{bottom:120.120000px;}
.y28_c01065{bottom:138.052500px;}
.y27_c01065{bottom:155.986500px;}
.y26_c01065{bottom:173.919000px;}
.y25_c01065{bottom:191.851500px;}
.y24_c01065{bottom:215.206500px;}
.y23_c01065{bottom:227.716500px;}
.y22_c01065{bottom:245.649000px;}
.y21_c01065{bottom:263.583000px;}
.y20_c01065{bottom:269.005500px;}
.y1f_c01065{bottom:297.364500px;}
.y1e_c01065{bottom:324.255000px;}
.y1d_c01065{bottom:351.145500px;}
.y1c_c01065{bottom:378.036000px;}
.y1b_c01065{bottom:404.928000px;}
.y1a_c01065{bottom:431.818500px;}
.y19_c01065{bottom:458.709000px;}
.y18_c01065{bottom:503.533500px;}
.y17_c01065{bottom:530.424000px;}
.y16_c01065{bottom:557.314500px;}
.y15_c01065{bottom:584.205000px;}
.y14_c01065{bottom:611.095500px;}
.y13_c01065{bottom:637.987500px;}
.y12_c01065{bottom:664.878000px;}
.y11_c01065{bottom:691.768500px;}
.y10_c01065{bottom:718.659000px;}
.yf_c01065{bottom:745.551000px;}
.ye_c01065{bottom:772.441500px;}
.yd_c01065{bottom:799.332000px;}
.yc_c01065{bottom:826.222500px;}
.yb_c01065{bottom:853.114500px;}
.ya_c01065{bottom:880.005000px;}
.y9_c01065{bottom:906.895500px;}
.y8_c01065{bottom:933.786000px;}
.y7_c01065{bottom:960.678000px;}
.y6_c01065{bottom:987.568500px;}
.y5_c01065{bottom:1014.459000px;}
.y4_c01065{bottom:1041.349500px;}
.y3_c01065{bottom:1068.240000px;}
.y2_c01065{bottom:1095.132000px;}
.y1_c01065{bottom:1162.084500px;}
.h7_c01065{height:28.286544px;}
.h5_c01065{height:38.251500px;}
.h6_c01065{height:44.833500px;}
.h2_c01065{height:53.797500px;}
.h4_c01065{height:58.354320px;}
.h3_c01065{height:58.360320px;}
.h1_c01065{height:1263.750000px;}
.h0_c01065{height:1264.110000px;}
.w0_c01065{width:893.869500px;}
.w1_c01065{width:894.000000px;}
.x0_c01065{left:0.000000px;}
.x1_c01065{left:127.558500px;}
.x3_c01065{left:141.798000px;}
.x2_c01065{left:159.838500px;}
.x4_c01065{left:522.309000px;}
@media print{
.v2_c01065{vertical-align:-19.280000pt;}
.v0_c01065{vertical-align:0.000000pt;}
.v3_c01065{vertical-align:13.429333pt;}
.v1_c01065{vertical-align:23.141333pt;}
.ls1_c01065{letter-spacing:0.000000pt;}
.ls0_c01065{letter-spacing:27.074080pt;}
.ws1_c01065{word-spacing:-0.063760pt;}
.ws8_c01065{word-spacing:-0.042507pt;}
.ws1e_c01065{word-spacing:-0.037195pt;}
.ws2b_c01065{word-spacing:0.000000pt;}
.ws25_c01065{word-spacing:12.912048pt;}
.ws21_c01065{word-spacing:13.974768pt;}
.ws11_c01065{word-spacing:14.154720pt;}
.ws22_c01065{word-spacing:15.568848pt;}
.ws26_c01065{word-spacing:16.206480pt;}
.ws1d_c01065{word-spacing:16.386320pt;}
.ws27_c01065{word-spacing:17.109792pt;}
.ws13_c01065{word-spacing:17.278960pt;}
.ws24_c01065{word-spacing:17.641152pt;}
.ws23_c01065{word-spacing:18.969552pt;}
.ws19_c01065{word-spacing:19.319280pt;}
.ws9_c01065{word-spacing:20.275680pt;}
.wsb_c01065{word-spacing:20.722000pt;}
.ws7_c01065{word-spacing:20.785760pt;}
.ws20_c01065{word-spacing:21.094992pt;}
.ws1f_c01065{word-spacing:21.148128pt;}
.ws2_c01065{word-spacing:21.168320pt;}
.ws17_c01065{word-spacing:21.232080pt;}
.ws4_c01065{word-spacing:22.060960pt;}
.ws1a_c01065{word-spacing:22.443520pt;}
.ws28_c01065{word-spacing:22.795344pt;}
.wsf_c01065{word-spacing:22.826080pt;}
.ws1b_c01065{word-spacing:23.527440pt;}
.ws0_c01065{word-spacing:23.846240pt;}
.ws29_c01065{word-spacing:23.911200pt;}
.ws18_c01065{word-spacing:24.037520pt;}
.ws16_c01065{word-spacing:24.292560pt;}
.ws1c_c01065{word-spacing:24.356320pt;}
.ws2a_c01065{word-spacing:24.761376pt;}
.ws5_c01065{word-spacing:24.767413pt;}
.ws15_c01065{word-spacing:24.866400pt;}
.ws12_c01065{word-spacing:25.121440pt;}
.wsa_c01065{word-spacing:25.185200pt;}
.ws14_c01065{word-spacing:25.440240pt;}
.ws3_c01065{word-spacing:27.671840pt;}
.ws10_c01065{word-spacing:27.799360pt;}
.wse_c01065{word-spacing:28.181920pt;}
.ws6_c01065{word-spacing:29.265840pt;}
.wsc_c01065{word-spacing:29.775920pt;}
.wsd_c01065{word-spacing:31.051120pt;}
._0_c01065{margin-left:-36.024400pt;}
._e_c01065{margin-left:-33.956800pt;}
._7_c01065{margin-left:-32.453840pt;}
._6_c01065{margin-left:-31.433680pt;}
._c_c01065{margin-left:-30.541040pt;}
._b_c01065{margin-left:-29.457120pt;}
._12_c01065{margin-left:-27.790000pt;}
._11_c01065{margin-left:-26.379461pt;}
._a_c01065{margin-left:-24.292560pt;}
._15_c01065{margin-left:-20.616768pt;}
._9_c01065{margin-left:-7.141120pt;}
._14_c01065{margin-left:-5.682827pt;}
._8_c01065{margin-left:-4.718240pt;}
._2_c01065{margin-left:-3.443040pt;}
._3_c01065{margin-left:-1.785280pt;}
._13_c01065{margin-left:-0.892864pt;}
._4_c01065{width:1.275200pt;}
._5_c01065{width:2.550400pt;}
._16_c01065{width:3.463632pt;}
._f_c01065{width:6.586533pt;}
._10_c01065{width:14.963136pt;}
._d_c01065{width:26.524160pt;}
._1_c01065{width:413.105280pt;}
.fs2_c01065{font-size:37.194667pt;}
.fs1_c01065{font-size:42.506667pt;}
.fs3_c01065{font-size:53.136000pt;}
.fs0_c01065{font-size:63.760000pt;}
.y0_c01065{bottom:0.000000pt;}
.y2a_c01065{bottom:90.833333pt;}
.y29_c01065{bottom:106.773333pt;}
.y28_c01065{bottom:122.713333pt;}
.y27_c01065{bottom:138.654667pt;}
.y26_c01065{bottom:154.594667pt;}
.y25_c01065{bottom:170.534667pt;}
.y24_c01065{bottom:191.294667pt;}
.y23_c01065{bottom:202.414667pt;}
.y22_c01065{bottom:218.354667pt;}
.y21_c01065{bottom:234.296000pt;}
.y20_c01065{bottom:239.116000pt;}
.y1f_c01065{bottom:264.324000pt;}
.y1e_c01065{bottom:288.226667pt;}
.y1d_c01065{bottom:312.129333pt;}
.y1c_c01065{bottom:336.032000pt;}
.y1b_c01065{bottom:359.936000pt;}
.y1a_c01065{bottom:383.838667pt;}
.y19_c01065{bottom:407.741333pt;}
.y18_c01065{bottom:447.585333pt;}
.y17_c01065{bottom:471.488000pt;}
.y16_c01065{bottom:495.390667pt;}
.y15_c01065{bottom:519.293333pt;}
.y14_c01065{bottom:543.196000pt;}
.y13_c01065{bottom:567.100000pt;}
.y12_c01065{bottom:591.002667pt;}
.y11_c01065{bottom:614.905333pt;}
.y10_c01065{bottom:638.808000pt;}
.yf_c01065{bottom:662.712000pt;}
.ye_c01065{bottom:686.614667pt;}
.yd_c01065{bottom:710.517333pt;}
.yc_c01065{bottom:734.420000pt;}
.yb_c01065{bottom:758.324000pt;}
.ya_c01065{bottom:782.226667pt;}
.y9_c01065{bottom:806.129333pt;}
.y8_c01065{bottom:830.032000pt;}
.y7_c01065{bottom:853.936000pt;}
.y6_c01065{bottom:877.838667pt;}
.y5_c01065{bottom:901.741333pt;}
.y4_c01065{bottom:925.644000pt;}
.y3_c01065{bottom:949.546667pt;}
.y2_c01065{bottom:973.450667pt;}
.y1_c01065{bottom:1032.964000pt;}
.h7_c01065{height:25.143595pt;}
.h5_c01065{height:34.001333pt;}
.h6_c01065{height:39.852000pt;}
.h2_c01065{height:47.820000pt;}
.h4_c01065{height:51.870507pt;}
.h3_c01065{height:51.875840pt;}
.h1_c01065{height:1123.333333pt;}
.h0_c01065{height:1123.653333pt;}
.w0_c01065{width:794.550667pt;}
.w1_c01065{width:794.666667pt;}
.x0_c01065{left:0.000000pt;}
.x1_c01065{left:113.385333pt;}
.x3_c01065{left:126.042667pt;}
.x2_c01065{left:142.078667pt;}
.x4_c01065{left:464.274667pt;}
}





/* 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_877d545f2a38250274eb5a41.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.001000;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_035f499a32e287c1efc2c2f1.woff2')format("woff");}.ff2_c01066{font-family:ff2_c01066;line-height:1.001000;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_c01066;src:url('chunks/assets/font_4857583752a153c29b0e6852.woff2')format("woff");}.ff3_c01066{font-family:ff3_c01066;line-height:1.001000;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_c01066;src:url('chunks/assets/font_52bb63c48d0f044032b31ceb.woff2')format("woff");}.ff4_c01066{font-family:ff4_c01066;line-height:0.697000;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_c01066;src:url('chunks/assets/font_700b659ff0e42f423a9a2cf2.woff2')format("woff");}.ff5_c01066{font-family:ff5_c01066;line-height:0.696000;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_c01066;src:url('chunks/assets/font_c6f5db70f4d9305cd44d531b.woff2')format("woff");}.ff6_c01066{font-family:ff6_c01066;line-height:1.000000;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_c01066;src:url('chunks/assets/font_06bf950e58959e70779888ff.woff2')format("woff");}.ff7_c01066{font-family:ff7_c01066;line-height:1.000000;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);}
.v3_c01066{vertical-align:-21.690000px;}
.v0_c01066{vertical-align:0.000000px;}
.v4_c01066{vertical-align:15.108000px;}
.v1_c01066{vertical-align:18.132000px;}
.v2_c01066{vertical-align:26.028000px;}
.ls3_c01066{letter-spacing:0.000000px;}
.ls1_c01066{letter-spacing:25.903590px;}
.ls2_c01066{letter-spacing:28.105590px;}
.ls0_c01066{letter-spacing:37.387590px;}
.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;}
}
.ws1_c01066{word-spacing:-0.071730px;}
.wsd_c01066{word-spacing:-0.047820px;}
.ws2b_c01066{word-spacing:-0.041844px;}
.ws34_c01066{word-spacing:0.000000px;}
.ws30_c01066{word-spacing:16.737840px;}
.ws1d_c01066{word-spacing:17.573850px;}
.ws2c_c01066{word-spacing:17.813844px;}
.ws2e_c01066{word-spacing:17.873622px;}
.ws31_c01066{word-spacing:18.471402px;}
.ws2_c01066{word-spacing:18.578070px;}
.ws10_c01066{word-spacing:19.223640px;}
.ws2d_c01066{word-spacing:19.487628px;}
.ws23_c01066{word-spacing:19.725750px;}
.ws33_c01066{word-spacing:19.846296px;}
.ws13_c01066{word-spacing:20.156130px;}
.wse_c01066{word-spacing:20.586510px;}
.ws20_c01066{word-spacing:20.873430px;}
.ws32_c01066{word-spacing:21.280968px;}
.ws1c_c01066{word-spacing:22.924770px;}
.ws7_c01066{word-spacing:22.953600px;}
.ws5_c01066{word-spacing:23.024820px;}
.ws28_c01066{word-spacing:23.168790px;}
.wsc_c01066{word-spacing:23.312250px;}
.ws27_c01066{word-spacing:23.599170px;}
.ws14_c01066{word-spacing:23.814360px;}
.ws3_c01066{word-spacing:23.886090px;}
.ws1f_c01066{word-spacing:24.173010px;}
.wsb_c01066{word-spacing:24.675120px;}
.ws8_c01066{word-spacing:24.746850px;}
.ws1e_c01066{word-spacing:25.177230px;}
.ws15_c01066{word-spacing:25.464150px;}
.ws2f_c01066{word-spacing:25.465428px;}
.ws4_c01066{word-spacing:25.535880px;}
.ws1a_c01066{word-spacing:25.822800px;}
.ws18_c01066{word-spacing:25.880730px;}
.wsa_c01066{word-spacing:26.253180px;}
.ws1b_c01066{word-spacing:26.306970px;}
.wsf_c01066{word-spacing:26.396640px;}
.ws0_c01066{word-spacing:26.827020px;}
.ws26_c01066{word-spacing:27.185670px;}
.ws19_c01066{word-spacing:27.329130px;}
.ws11_c01066{word-spacing:27.974700px;}
.ws29_c01066{word-spacing:28.046430px;}
.ws24_c01066{word-spacing:28.548540px;}
.ws6_c01066{word-spacing:28.954770px;}
.ws9_c01066{word-spacing:28.978920px;}
.ws2a_c01066{word-spacing:29.337570px;}
.ws22_c01066{word-spacing:31.130820px;}
.ws12_c01066{word-spacing:31.561200px;}
.ws17_c01066{word-spacing:32.135040px;}
.ws25_c01066{word-spacing:32.278500px;}
.ws16_c01066{word-spacing:33.139260px;}
.ws21_c01066{word-spacing:34.502130px;}
._0_c01066{margin-left:-40.527450px;}
._a_c01066{margin-left:-36.797490px;}
._b_c01066{margin-left:-34.932510px;}
._d_c01066{margin-left:-32.852340px;}
._15_c01066{margin-left:-31.610520px;}
._17_c01066{margin-left:-29.578068px;}
._9_c01066{margin-left:-27.329130px;}
._16_c01066{margin-left:-23.553036px;}
._14_c01066{margin-left:-22.261716px;}
._8_c01066{margin-left:-7.746840px;}
._6_c01066{margin-left:-5.881860px;}
._4_c01066{margin-left:-3.721470px;}
._2_c01066{margin-left:-2.080170px;}
._11_c01066{margin-left:-1.012710px;}
._3_c01066{width:1.721520px;}
._7_c01066{width:3.793710px;}
._13_c01066{width:22.585440px;}
._e_c01066{width:29.014200px;}
._5_c01066{width:30.363570px;}
._c_c01066{width:33.641370px;}
._12_c01066{width:36.522600px;}
._10_c01066{width:38.166420px;}
._f_c01066{width:40.114200px;}
._1_c01066{width:464.743440px;}
.fc0_c01066{color:rgb(0,0,0);}
.fs2_c01066{font-size:41.844000px;}
.fs1_c01066{font-size:47.820000px;}
.fs3_c01066{font-size:59.778000px;}
.fs0_c01066{font-size:71.730000px;}
.y0_c01066{bottom:0.000000px;}
.y27_c01066{bottom:103.822500px;}
.y26_c01066{bottom:121.756500px;}
.y25_c01066{bottom:139.689000px;}
.y24_c01066{bottom:163.044000px;}
.y23_c01066{bottom:189.801000px;}
.y22_c01066{bottom:216.691500px;}
.y21_c01066{bottom:243.582000px;}
.y20_c01066{bottom:270.472500px;}
.y1f_c01066{bottom:297.364500px;}
.y1e_c01066{bottom:324.255000px;}
.y1d_c01066{bottom:351.145500px;}
.y1c_c01066{bottom:378.036000px;}
.y1b_c01066{bottom:404.928000px;}
.y1a_c01066{bottom:431.818500px;}
.y19_c01066{bottom:458.709000px;}
.y18_c01066{bottom:485.599500px;}
.y17_c01066{bottom:512.491500px;}
.y16_c01066{bottom:539.382000px;}
.y15_c01066{bottom:566.272500px;}
.y14_c01066{bottom:593.163000px;}
.y13_c01066{bottom:620.055000px;}
.y12_c01066{bottom:646.945500px;}
.y11_c01066{bottom:673.836000px;}
.y10_c01066{bottom:700.726500px;}
.yf_c01066{bottom:727.617000px;}
.ye_c01066{bottom:772.441500px;}
.yd_c01066{bottom:799.332000px;}
.yc_c01066{bottom:826.222500px;}
.yb_c01066{bottom:853.114500px;}
.ya_c01066{bottom:880.005000px;}
.y9_c01066{bottom:906.895500px;}
.y8_c01066{bottom:933.786000px;}
.y7_c01066{bottom:960.678000px;}
.y6_c01066{bottom:987.568500px;}
.y5_c01066{bottom:1014.459000px;}
.y4_c01066{bottom:1041.349500px;}
.y3_c01066{bottom:1068.240000px;}
.y2_c01066{bottom:1095.132000px;}
.y1_c01066{bottom:1162.084500px;}
.h5_c01066{height:28.286544px;}
.h6_c01066{height:44.833500px;}
.h2_c01066{height:53.797500px;}
.h4_c01066{height:58.354320px;}
.h7_c01066{height:59.941500px;}
.h3_c01066{height:71.929500px;}
.h1_c01066{height:1263.750000px;}
.h0_c01066{height:1264.110000px;}
.w0_c01066{width:893.869500px;}
.w1_c01066{width:894.000000px;}
.x0_c01066{left:0.000000px;}
.x1_c01066{left:127.558500px;}
.x4_c01066{left:141.798000px;}
.x2_c01066{left:143.008500px;}
.x3_c01066{left:159.838500px;}
.x5_c01066{left:283.806000px;}
@media print{
.v3_c01066{vertical-align:-19.280000pt;}
.v0_c01066{vertical-align:0.000000pt;}
.v4_c01066{vertical-align:13.429333pt;}
.v1_c01066{vertical-align:16.117333pt;}
.v2_c01066{vertical-align:23.136000pt;}
.ls3_c01066{letter-spacing:0.000000pt;}
.ls1_c01066{letter-spacing:23.025413pt;}
.ls2_c01066{letter-spacing:24.982747pt;}
.ls0_c01066{letter-spacing:33.233413pt;}
.ws1_c01066{word-spacing:-0.063760pt;}
.wsd_c01066{word-spacing:-0.042507pt;}
.ws2b_c01066{word-spacing:-0.037195pt;}
.ws34_c01066{word-spacing:0.000000pt;}
.ws30_c01066{word-spacing:14.878080pt;}
.ws1d_c01066{word-spacing:15.621200pt;}
.ws2c_c01066{word-spacing:15.834528pt;}
.ws2e_c01066{word-spacing:15.887664pt;}
.ws31_c01066{word-spacing:16.419024pt;}
.ws2_c01066{word-spacing:16.513840pt;}
.ws10_c01066{word-spacing:17.087680pt;}
.ws2d_c01066{word-spacing:17.322336pt;}
.ws23_c01066{word-spacing:17.534000pt;}
.ws33_c01066{word-spacing:17.641152pt;}
.ws13_c01066{word-spacing:17.916560pt;}
.wse_c01066{word-spacing:18.299120pt;}
.ws20_c01066{word-spacing:18.554160pt;}
.ws32_c01066{word-spacing:18.916416pt;}
.ws1c_c01066{word-spacing:20.377573pt;}
.ws7_c01066{word-spacing:20.403200pt;}
.ws5_c01066{word-spacing:20.466507pt;}
.ws28_c01066{word-spacing:20.594480pt;}
.wsc_c01066{word-spacing:20.722000pt;}
.ws27_c01066{word-spacing:20.977040pt;}
.ws14_c01066{word-spacing:21.168320pt;}
.ws3_c01066{word-spacing:21.232080pt;}
.ws1f_c01066{word-spacing:21.487120pt;}
.wsb_c01066{word-spacing:21.933440pt;}
.ws8_c01066{word-spacing:21.997200pt;}
.ws1e_c01066{word-spacing:22.379760pt;}
.ws15_c01066{word-spacing:22.634800pt;}
.ws2f_c01066{word-spacing:22.635936pt;}
.ws4_c01066{word-spacing:22.698560pt;}
.ws1a_c01066{word-spacing:22.953600pt;}
.ws18_c01066{word-spacing:23.005093pt;}
.wsa_c01066{word-spacing:23.336160pt;}
.ws1b_c01066{word-spacing:23.383973pt;}
.wsf_c01066{word-spacing:23.463680pt;}
.ws0_c01066{word-spacing:23.846240pt;}
.ws26_c01066{word-spacing:24.165040pt;}
.ws19_c01066{word-spacing:24.292560pt;}
.ws11_c01066{word-spacing:24.866400pt;}
.ws29_c01066{word-spacing:24.930160pt;}
.ws24_c01066{word-spacing:25.376480pt;}
.ws6_c01066{word-spacing:25.737573pt;}
.ws9_c01066{word-spacing:25.759040pt;}
.ws2a_c01066{word-spacing:26.077840pt;}
.ws22_c01066{word-spacing:27.671840pt;}
.ws12_c01066{word-spacing:28.054400pt;}
.ws17_c01066{word-spacing:28.564480pt;}
.ws25_c01066{word-spacing:28.692000pt;}
.ws16_c01066{word-spacing:29.457120pt;}
.ws21_c01066{word-spacing:30.668560pt;}
._0_c01066{margin-left:-36.024400pt;}
._a_c01066{margin-left:-32.708880pt;}
._b_c01066{margin-left:-31.051120pt;}
._d_c01066{margin-left:-29.202080pt;}
._15_c01066{margin-left:-28.098240pt;}
._17_c01066{margin-left:-26.291616pt;}
._9_c01066{margin-left:-24.292560pt;}
._16_c01066{margin-left:-20.936032pt;}
._14_c01066{margin-left:-19.788192pt;}
._8_c01066{margin-left:-6.886080pt;}
._6_c01066{margin-left:-5.228320pt;}
._4_c01066{margin-left:-3.307973pt;}
._2_c01066{margin-left:-1.849040pt;}
._11_c01066{margin-left:-0.900187pt;}
._3_c01066{width:1.530240pt;}
._7_c01066{width:3.372187pt;}
._13_c01066{width:20.075947pt;}
._e_c01066{width:25.790400pt;}
._5_c01066{width:26.989840pt;}
._c_c01066{width:29.903440pt;}
._12_c01066{width:32.464533pt;}
._10_c01066{width:33.925707pt;}
._f_c01066{width:35.657067pt;}
._1_c01066{width:413.105280pt;}
.fs2_c01066{font-size:37.194667pt;}
.fs1_c01066{font-size:42.506667pt;}
.fs3_c01066{font-size:53.136000pt;}
.fs0_c01066{font-size:63.760000pt;}
.y0_c01066{bottom:0.000000pt;}
.y27_c01066{bottom:92.286667pt;}
.y26_c01066{bottom:108.228000pt;}
.y25_c01066{bottom:124.168000pt;}
.y24_c01066{bottom:144.928000pt;}
.y23_c01066{bottom:168.712000pt;}
.y22_c01066{bottom:192.614667pt;}
.y21_c01066{bottom:216.517333pt;}
.y20_c01066{bottom:240.420000pt;}
.y1f_c01066{bottom:264.324000pt;}
.y1e_c01066{bottom:288.226667pt;}
.y1d_c01066{bottom:312.129333pt;}
.y1c_c01066{bottom:336.032000pt;}
.y1b_c01066{bottom:359.936000pt;}
.y1a_c01066{bottom:383.838667pt;}
.y19_c01066{bottom:407.741333pt;}
.y18_c01066{bottom:431.644000pt;}
.y17_c01066{bottom:455.548000pt;}
.y16_c01066{bottom:479.450667pt;}
.y15_c01066{bottom:503.353333pt;}
.y14_c01066{bottom:527.256000pt;}
.y13_c01066{bottom:551.160000pt;}
.y12_c01066{bottom:575.062667pt;}
.y11_c01066{bottom:598.965333pt;}
.y10_c01066{bottom:622.868000pt;}
.yf_c01066{bottom:646.770667pt;}
.ye_c01066{bottom:686.614667pt;}
.yd_c01066{bottom:710.517333pt;}
.yc_c01066{bottom:734.420000pt;}
.yb_c01066{bottom:758.324000pt;}
.ya_c01066{bottom:782.226667pt;}
.y9_c01066{bottom:806.129333pt;}
.y8_c01066{bottom:830.032000pt;}
.y7_c01066{bottom:853.936000pt;}
.y6_c01066{bottom:877.838667pt;}
.y5_c01066{bottom:901.741333pt;}
.y4_c01066{bottom:925.644000pt;}
.y3_c01066{bottom:949.546667pt;}
.y2_c01066{bottom:973.450667pt;}
.y1_c01066{bottom:1032.964000pt;}
.h5_c01066{height:25.143595pt;}
.h6_c01066{height:39.852000pt;}
.h2_c01066{height:47.820000pt;}
.h4_c01066{height:51.870507pt;}
.h7_c01066{height:53.281333pt;}
.h3_c01066{height:63.937333pt;}
.h1_c01066{height:1123.333333pt;}
.h0_c01066{height:1123.653333pt;}
.w0_c01066{width:794.550667pt;}
.w1_c01066{width:794.666667pt;}
.x0_c01066{left:0.000000pt;}
.x1_c01066{left:113.385333pt;}
.x4_c01066{left:126.042667pt;}
.x2_c01066{left:127.118667pt;}
.x3_c01066{left:142.078667pt;}
.x5_c01066{left:252.272000pt;}
}





/* 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_ef3fef627298935b890708fe.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:1.001000;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_e61c144bc28b61f4eaf018e4.woff2')format("woff");}.ff2_c01067{font-family:ff2_c01067;line-height:1.001000;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_c01067;src:url('chunks/assets/font_ed22ca77a8667a659a805f21.woff2')format("woff");}.ff3_c01067{font-family:ff3_c01067;line-height:0.697000;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_c01067;src:url('chunks/assets/font_1fc0802f932cdd68b38fa991.woff2')format("woff");}.ff4_c01067{font-family:ff4_c01067;line-height:1.000000;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_c01067;src:url('chunks/assets/font_86860d2b088b3be4a2877a20.woff2')format("woff");}.ff5_c01067{font-family:ff5_c01067;line-height:0.696000;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_c01067;src:url('chunks/assets/font_2143b30e96fbe5a210a0dc41.woff2')format("woff");}.ff6_c01067{font-family:ff6_c01067;line-height:1.000000;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_c01067;src:url('chunks/assets/font_ca4fe15346e9156f861c1398.woff2')format("woff");}.ff7_c01067{font-family:ff7_c01067;line-height:1.000000;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);}
.v4_c01067{vertical-align:-21.696000px;}
.v0_c01067{vertical-align:0.000000px;}
.v3_c01067{vertical-align:5.976000px;}
.v2_c01067{vertical-align:7.176000px;}
.v1_c01067{vertical-align:26.034000px;}
.ls1_c01067{letter-spacing:0.000000px;}
.ls0_c01067{letter-spacing:22.835196px;}
.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;}
}
.ws23_c01067{word-spacing:-22.894974px;}
.ws1_c01067{word-spacing:-0.071730px;}
.wsc_c01067{word-spacing:-0.047820px;}
.ws19_c01067{word-spacing:-0.041844px;}
.ws24_c01067{word-spacing:0.000000px;}
.ws18_c01067{word-spacing:15.780600px;}
.ws17_c01067{word-spacing:16.713090px;}
.ws1c_c01067{word-spacing:16.857396px;}
.ws12_c01067{word-spacing:18.004230px;}
.ws1d_c01067{word-spacing:18.531180px;}
.ws1e_c01067{word-spacing:19.123632px;}
.ws20_c01067{word-spacing:19.128960px;}
.ws11_c01067{word-spacing:20.299590px;}
.ws1f_c01067{word-spacing:20.623410px;}
.ws3_c01067{word-spacing:20.873430px;}
.ws8_c01067{word-spacing:21.160350px;}
.ws14_c01067{word-spacing:21.662460px;}
.wsf_c01067{word-spacing:21.734190px;}
.ws7_c01067{word-spacing:21.877650px;}
.ws13_c01067{word-spacing:22.092840px;}
.ws10_c01067{word-spacing:22.451490px;}
.ws22_c01067{word-spacing:22.775418px;}
.ws2_c01067{word-spacing:23.312250px;}
.wsb_c01067{word-spacing:23.383980px;}
.wsa_c01067{word-spacing:23.527440px;}
.ws5_c01067{word-spacing:23.814360px;}
.ws21_c01067{word-spacing:23.970978px;}
.ws4_c01067{word-spacing:24.101280px;}
.ws1a_c01067{word-spacing:24.269868px;}
.ws9_c01067{word-spacing:24.316470px;}
.ws0_c01067{word-spacing:26.827020px;}
.ws6_c01067{word-spacing:27.042210px;}
.ws1b_c01067{word-spacing:29.769444px;}
.ws15_c01067{word-spacing:31.059090px;}
.wsd_c01067{word-spacing:32.450652px;}
.ws16_c01067{word-spacing:34.358670px;}
.wse_c01067{word-spacing:79.261650px;}
._0_c01067{margin-left:-40.527450px;}
._5_c01067{margin-left:-36.940950px;}
._8_c01067{margin-left:-35.147700px;}
._9_c01067{margin-left:-33.282720px;}
._13_c01067{margin-left:-32.009508px;}
._11_c01067{margin-left:-30.020418px;}
._b_c01067{margin-left:-27.329130px;}
._12_c01067{margin-left:-24.782208px;}
._f_c01067{margin-left:-23.732352px;}
._10_c01067{margin-left:-22.333446px;}
._a_c01067{margin-left:-7.675110px;}
._2_c01067{margin-left:-5.810130px;}
._6_c01067{margin-left:-3.873420px;}
._3_c01067{margin-left:-1.936710px;}
._4_c01067{width:1.864980px;}
._7_c01067{width:4.016880px;}
._e_c01067{width:23.274516px;}
._c_c01067{width:26.109720px;}
._d_c01067{width:95.200056px;}
._1_c01067{width:464.743440px;}
.fc0_c01067{color:rgb(0,0,0);}
.fs3_c01067{font-size:41.844000px;}
.fs1_c01067{font-size:47.820000px;}
.fs4_c01067{font-size:59.778000px;}
.fs0_c01067{font-size:71.730000px;}
.fs2_c01067{font-size:86.076000px;}
.y0_c01067{bottom:0.000000px;}
.y22_c01067{bottom:175.405500px;}
.y21_c01067{bottom:193.338000px;}
.y20_c01067{bottom:211.270500px;}
.y1f_c01067{bottom:229.203000px;}
.y1e_c01067{bottom:247.135500px;}
.y1d_c01067{bottom:270.492000px;}
.y1c_c01067{bottom:297.247500px;}
.y1b_c01067{bottom:324.139500px;}
.y1a_c01067{bottom:351.030000px;}
.y19_c01067{bottom:377.920500px;}
.y18_c01067{bottom:404.811000px;}
.y17_c01067{bottom:431.701500px;}
.y16_c01067{bottom:458.593500px;}
.y15_c01067{bottom:485.484000px;}
.y14_c01067{bottom:512.374500px;}
.y13_c01067{bottom:539.265000px;}
.y12_c01067{bottom:566.157000px;}
.y11_c01067{bottom:593.047500px;}
.y10_c01067{bottom:619.938000px;}
.yf_c01067{bottom:646.828500px;}
.ye_c01067{bottom:681.441000px;}
.yd_c01067{bottom:740.793000px;}
.yc_c01067{bottom:808.290000px;}
.yb_c01067{bottom:835.180500px;}
.ya_c01067{bottom:862.072500px;}
.y9_c01067{bottom:888.963000px;}
.y8_c01067{bottom:915.853500px;}
.y7_c01067{bottom:942.744000px;}
.y6_c01067{bottom:969.636000px;}
.y5_c01067{bottom:996.526500px;}
.y4_c01067{bottom:1041.349500px;}
.y3_c01067{bottom:1068.240000px;}
.y2_c01067{bottom:1095.132000px;}
.y1_c01067{bottom:1162.084500px;}
.h7_c01067{height:28.286544px;}
.h8_c01067{height:44.833500px;}
.h2_c01067{height:53.797500px;}
.h3_c01067{height:58.360320px;}
.h6_c01067{height:59.773500px;}
.h5_c01067{height:64.557000px;}
.h4_c01067{height:71.733000px;}
.h1_c01067{height:1263.750000px;}
.h0_c01067{height:1264.110000px;}
.w0_c01067{width:893.869500px;}
.w1_c01067{width:894.000000px;}
.x0_c01067{left:0.000000px;}
.x1_c01067{left:127.558500px;}
.x5_c01067{left:141.798000px;}
.x2_c01067{left:159.838500px;}
.x4_c01067{left:303.706500px;}
.x3_c01067{left:463.467000px;}
@media print{
.v4_c01067{vertical-align:-19.285333pt;}
.v0_c01067{vertical-align:0.000000pt;}
.v3_c01067{vertical-align:5.312000pt;}
.v2_c01067{vertical-align:6.378667pt;}
.v1_c01067{vertical-align:23.141333pt;}
.ls1_c01067{letter-spacing:0.000000pt;}
.ls0_c01067{letter-spacing:20.297952pt;}
.ws23_c01067{word-spacing:-20.351088pt;}
.ws1_c01067{word-spacing:-0.063760pt;}
.wsc_c01067{word-spacing:-0.042507pt;}
.ws19_c01067{word-spacing:-0.037195pt;}
.ws24_c01067{word-spacing:0.000000pt;}
.ws18_c01067{word-spacing:14.027200pt;}
.ws17_c01067{word-spacing:14.856080pt;}
.ws1c_c01067{word-spacing:14.984352pt;}
.ws12_c01067{word-spacing:16.003760pt;}
.ws1d_c01067{word-spacing:16.472160pt;}
.ws1e_c01067{word-spacing:16.998784pt;}
.ws20_c01067{word-spacing:17.003520pt;}
.ws11_c01067{word-spacing:18.044080pt;}
.ws1f_c01067{word-spacing:18.331920pt;}
.ws3_c01067{word-spacing:18.554160pt;}
.ws8_c01067{word-spacing:18.809200pt;}
.ws14_c01067{word-spacing:19.255520pt;}
.wsf_c01067{word-spacing:19.319280pt;}
.ws7_c01067{word-spacing:19.446800pt;}
.ws13_c01067{word-spacing:19.638080pt;}
.ws10_c01067{word-spacing:19.956880pt;}
.ws22_c01067{word-spacing:20.244816pt;}
.ws2_c01067{word-spacing:20.722000pt;}
.wsb_c01067{word-spacing:20.785760pt;}
.wsa_c01067{word-spacing:20.913280pt;}
.ws5_c01067{word-spacing:21.168320pt;}
.ws21_c01067{word-spacing:21.307536pt;}
.ws4_c01067{word-spacing:21.423360pt;}
.ws1a_c01067{word-spacing:21.573216pt;}
.ws9_c01067{word-spacing:21.614640pt;}
.ws0_c01067{word-spacing:23.846240pt;}
.ws6_c01067{word-spacing:24.037520pt;}
.ws1b_c01067{word-spacing:26.461728pt;}
.ws15_c01067{word-spacing:27.608080pt;}
.wsd_c01067{word-spacing:28.845024pt;}
.ws16_c01067{word-spacing:30.541040pt;}
.wse_c01067{word-spacing:70.454800pt;}
._0_c01067{margin-left:-36.024400pt;}
._5_c01067{margin-left:-32.836400pt;}
._8_c01067{margin-left:-31.242400pt;}
._9_c01067{margin-left:-29.584640pt;}
._13_c01067{margin-left:-28.452896pt;}
._11_c01067{margin-left:-26.684816pt;}
._b_c01067{margin-left:-24.292560pt;}
._12_c01067{margin-left:-22.028629pt;}
._f_c01067{margin-left:-21.095424pt;}
._10_c01067{margin-left:-19.851952pt;}
._a_c01067{margin-left:-6.822320pt;}
._2_c01067{margin-left:-5.164560pt;}
._6_c01067{margin-left:-3.443040pt;}
._3_c01067{margin-left:-1.721520pt;}
._4_c01067{width:1.657760pt;}
._7_c01067{width:3.570560pt;}
._e_c01067{width:20.688459pt;}
._c_c01067{width:23.208640pt;}
._d_c01067{width:84.622272pt;}
._1_c01067{width:413.105280pt;}
.fs3_c01067{font-size:37.194667pt;}
.fs1_c01067{font-size:42.506667pt;}
.fs4_c01067{font-size:53.136000pt;}
.fs0_c01067{font-size:63.760000pt;}
.fs2_c01067{font-size:76.512000pt;}
.y0_c01067{bottom:0.000000pt;}
.y22_c01067{bottom:155.916000pt;}
.y21_c01067{bottom:171.856000pt;}
.y20_c01067{bottom:187.796000pt;}
.y1f_c01067{bottom:203.736000pt;}
.y1e_c01067{bottom:219.676000pt;}
.y1d_c01067{bottom:240.437333pt;}
.y1c_c01067{bottom:264.220000pt;}
.y1b_c01067{bottom:288.124000pt;}
.y1a_c01067{bottom:312.026667pt;}
.y19_c01067{bottom:335.929333pt;}
.y18_c01067{bottom:359.832000pt;}
.y17_c01067{bottom:383.734667pt;}
.y16_c01067{bottom:407.638667pt;}
.y15_c01067{bottom:431.541333pt;}
.y14_c01067{bottom:455.444000pt;}
.y13_c01067{bottom:479.346667pt;}
.y12_c01067{bottom:503.250667pt;}
.y11_c01067{bottom:527.153333pt;}
.y10_c01067{bottom:551.056000pt;}
.yf_c01067{bottom:574.958667pt;}
.ye_c01067{bottom:605.725333pt;}
.yd_c01067{bottom:658.482667pt;}
.yc_c01067{bottom:718.480000pt;}
.yb_c01067{bottom:742.382667pt;}
.ya_c01067{bottom:766.286667pt;}
.y9_c01067{bottom:790.189333pt;}
.y8_c01067{bottom:814.092000pt;}
.y7_c01067{bottom:837.994667pt;}
.y6_c01067{bottom:861.898667pt;}
.y5_c01067{bottom:885.801333pt;}
.y4_c01067{bottom:925.644000pt;}
.y3_c01067{bottom:949.546667pt;}
.y2_c01067{bottom:973.450667pt;}
.y1_c01067{bottom:1032.964000pt;}
.h7_c01067{height:25.143595pt;}
.h8_c01067{height:39.852000pt;}
.h2_c01067{height:47.820000pt;}
.h3_c01067{height:51.875840pt;}
.h6_c01067{height:53.132000pt;}
.h5_c01067{height:57.384000pt;}
.h4_c01067{height:63.762667pt;}
.h1_c01067{height:1123.333333pt;}
.h0_c01067{height:1123.653333pt;}
.w0_c01067{width:794.550667pt;}
.w1_c01067{width:794.666667pt;}
.x0_c01067{left:0.000000pt;}
.x1_c01067{left:113.385333pt;}
.x5_c01067{left:126.042667pt;}
.x2_c01067{left:142.078667pt;}
.x4_c01067{left:269.961333pt;}
.x3_c01067{left:411.970667pt;}
}





/* 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_c7b4c163d0a93059db2a5c80.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.001000;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_28a6ae44d7b60f2b94ceb370.woff2')format("woff");}.ff2_c01068{font-family:ff2_c01068;line-height:1.001000;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_c01068;src:url('chunks/assets/font_411800771e3bdbef13492f41.woff2')format("woff");}.ff3_c01068{font-family:ff3_c01068;line-height:1.000000;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_c01068;src:url('chunks/assets/font_069e5a4a174ee6d2faefef24.woff2')format("woff");}.ff4_c01068{font-family:ff4_c01068;line-height:1.001000;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_c01068;src:url('chunks/assets/font_5dd6f4bf6dfd9e73f6d5cc1b.woff2')format("woff");}.ff5_c01068{font-family:ff5_c01068;line-height:0.697000;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_c01068;src:url('chunks/assets/font_a3e02b0b43cc9dac3fe56fc7.woff2')format("woff");}.ff6_c01068{font-family:ff6_c01068;line-height:0.696000;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_c01068;src:url('chunks/assets/font_20d4bba57bd1fe1e7c23947f.woff2')format("woff");}.ff7_c01068{font-family:ff7_c01068;line-height:1.000000;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_c01068;src:url('chunks/assets/font_7b0d1a0dc65ee436bd19722b.woff2')format("woff");}.ff8_c01068{font-family:ff8_c01068;line-height:1.000000;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);}
.v3_c01068{vertical-align:-21.690000px;}
.v0_c01068{vertical-align:0.000000px;}
.v4_c01068{vertical-align:15.108000px;}
.v1_c01068{vertical-align:18.132000px;}
.v2_c01068{vertical-align:26.034000px;}
.ls0_c01068{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01068{word-spacing:-0.071730px;}
.ws11_c01068{word-spacing:-0.047820px;}
.ws29_c01068{word-spacing:-0.041844px;}
.ws2f_c01068{word-spacing:0.000000px;}
.ws2e_c01068{word-spacing:15.064056px;}
.ws18_c01068{word-spacing:17.573850px;}
.ws7_c01068{word-spacing:18.004230px;}
.ws2d_c01068{word-spacing:18.830070px;}
.ws2c_c01068{word-spacing:18.889848px;}
.ws22_c01068{word-spacing:19.151910px;}
.ws2a_c01068{word-spacing:19.846296px;}
.wse_c01068{word-spacing:20.084400px;}
.ws15_c01068{word-spacing:20.156130px;}
.ws4_c01068{word-spacing:20.371320px;}
.ws8_c01068{word-spacing:20.443050px;}
.ws14_c01068{word-spacing:20.586510px;}
.ws21_c01068{word-spacing:21.160350px;}
.ws2b_c01068{word-spacing:21.280968px;}
.ws25_c01068{word-spacing:21.375540px;}
.wsd_c01068{word-spacing:22.092840px;}
.ws9_c01068{word-spacing:22.379760px;}
.ws23_c01068{word-spacing:22.738410px;}
.ws19_c01068{word-spacing:22.953600px;}
.ws27_c01068{word-spacing:23.025330px;}
.ws24_c01068{word-spacing:23.240520px;}
.wsa_c01068{word-spacing:23.312250px;}
.ws26_c01068{word-spacing:23.383980px;}
.ws5_c01068{word-spacing:23.599170px;}
.ws3_c01068{word-spacing:23.886090px;}
.ws1a_c01068{word-spacing:24.675120px;}
.wsf_c01068{word-spacing:24.746850px;}
.ws1b_c01068{word-spacing:25.033770px;}
.ws6_c01068{word-spacing:25.679340px;}
.ws13_c01068{word-spacing:26.324910px;}
.ws12_c01068{word-spacing:26.396640px;}
.wsc_c01068{word-spacing:26.683560px;}
.ws10_c01068{word-spacing:26.755290px;}
.ws0_c01068{word-spacing:26.827020px;}
.ws2_c01068{word-spacing:27.042210px;}
.ws1f_c01068{word-spacing:29.122380px;}
.ws1e_c01068{word-spacing:29.194110px;}
.ws28_c01068{word-spacing:29.911410px;}
.ws17_c01068{word-spacing:30.126600px;}
.ws20_c01068{word-spacing:30.413520px;}
.ws1d_c01068{word-spacing:31.561200px;}
.ws1c_c01068{word-spacing:33.569640px;}
.wsb_c01068{word-spacing:33.856560px;}
.ws16_c01068{word-spacing:34.645590px;}
._0_c01068{margin-left:-40.527450px;}
._7_c01068{margin-left:-36.869220px;}
._8_c01068{margin-left:-35.219430px;}
._9_c01068{margin-left:-32.278500px;}
._17_c01068{margin-left:-30.480294px;}
._15_c01068{margin-left:-29.337570px;}
._e_c01068{margin-left:-27.329130px;}
._19_c01068{margin-left:-23.409648px;}
._d_c01068{margin-left:-7.818570px;}
._4_c01068{margin-left:-5.810130px;}
._a_c01068{margin-left:-3.945150px;}
._6_c01068{margin-left:-2.438820px;}
._3_c01068{margin-left:-1.434600px;}
._5_c01068{width:1.649790px;}
._b_c01068{width:2.654010px;}
._c_c01068{width:3.945150px;}
._16_c01068{width:24.857730px;}
._10_c01068{width:25.866840px;}
._18_c01068{width:27.082134px;}
._f_c01068{width:28.239480px;}
._12_c01068{width:29.547060px;}
._14_c01068{width:31.544760px;}
._11_c01068{width:36.335400px;}
._13_c01068{width:38.827650px;}
._2_c01068{width:79.333380px;}
._1_c01068{width:464.743440px;}
.fc0_c01068{color:rgb(0,0,0);}
.fs2_c01068{font-size:41.844000px;}
.fs1_c01068{font-size:47.820000px;}
.fs3_c01068{font-size:59.778000px;}
.fs0_c01068{font-size:71.730000px;}
.y0_c01068{bottom:0.000000px;}
.y2a_c01068{bottom:93.442500px;}
.y29_c01068{bottom:98.865000px;}
.y28_c01068{bottom:112.977000px;}
.y27_c01068{bottom:130.909500px;}
.y26_c01068{bottom:148.843500px;}
.y25_c01068{bottom:154.266000px;}
.y24_c01068{bottom:173.800500px;}
.y23_c01068{bottom:200.013000px;}
.y22_c01068{bottom:226.903500px;}
.y21_c01068{bottom:253.794000px;}
.y20_c01068{bottom:280.684500px;}
.y1f_c01068{bottom:307.576500px;}
.y1e_c01068{bottom:334.467000px;}
.y1d_c01068{bottom:361.357500px;}
.y1c_c01068{bottom:388.248000px;}
.y1b_c01068{bottom:415.138500px;}
.y1a_c01068{bottom:442.030500px;}
.y19_c01068{bottom:468.921000px;}
.y18_c01068{bottom:495.811500px;}
.y17_c01068{bottom:522.702000px;}
.y16_c01068{bottom:549.594000px;}
.y15_c01068{bottom:576.484500px;}
.y14_c01068{bottom:603.375000px;}
.y13_c01068{bottom:630.265500px;}
.y12_c01068{bottom:657.157500px;}
.y11_c01068{bottom:684.048000px;}
.y10_c01068{bottom:710.938500px;}
.yf_c01068{bottom:737.829000px;}
.ye_c01068{bottom:764.721000px;}
.yd_c01068{bottom:791.611500px;}
.yc_c01068{bottom:818.502000px;}
.yb_c01068{bottom:845.392500px;}
.ya_c01068{bottom:872.283000px;}
.y9_c01068{bottom:899.175000px;}
.y8_c01068{bottom:926.065500px;}
.y7_c01068{bottom:952.956000px;}
.y6_c01068{bottom:979.846500px;}
.y5_c01068{bottom:1006.738500px;}
.y4_c01068{bottom:1033.629000px;}
.y3_c01068{bottom:1060.519500px;}
.y2_c01068{bottom:1095.132000px;}
.y1_c01068{bottom:1162.084500px;}
.h6_c01068{height:28.286544px;}
.h7_c01068{height:38.251500px;}
.h8_c01068{height:44.833500px;}
.h2_c01068{height:53.797500px;}
.h5_c01068{height:58.354320px;}
.h4_c01068{height:58.360320px;}
.h3_c01068{height:71.929500px;}
.h1_c01068{height:1263.750000px;}
.h0_c01068{height:1264.110000px;}
.w0_c01068{width:893.869500px;}
.w1_c01068{width:894.000000px;}
.x0_c01068{left:0.000000px;}
.x1_c01068{left:127.558500px;}
.x5_c01068{left:141.798000px;}
.x2_c01068{left:159.838500px;}
.x4_c01068{left:323.275500px;}
.x6_c01068{left:496.314000px;}
.x3_c01068{left:500.632500px;}
.x7_c01068{left:606.264000px;}
@media print{
.v3_c01068{vertical-align:-19.280000pt;}
.v0_c01068{vertical-align:0.000000pt;}
.v4_c01068{vertical-align:13.429333pt;}
.v1_c01068{vertical-align:16.117333pt;}
.v2_c01068{vertical-align:23.141333pt;}
.ls0_c01068{letter-spacing:0.000000pt;}
.ws1_c01068{word-spacing:-0.063760pt;}
.ws11_c01068{word-spacing:-0.042507pt;}
.ws29_c01068{word-spacing:-0.037195pt;}
.ws2f_c01068{word-spacing:0.000000pt;}
.ws2e_c01068{word-spacing:13.390272pt;}
.ws18_c01068{word-spacing:15.621200pt;}
.ws7_c01068{word-spacing:16.003760pt;}
.ws2d_c01068{word-spacing:16.737840pt;}
.ws2c_c01068{word-spacing:16.790976pt;}
.ws22_c01068{word-spacing:17.023920pt;}
.ws2a_c01068{word-spacing:17.641152pt;}
.wse_c01068{word-spacing:17.852800pt;}
.ws15_c01068{word-spacing:17.916560pt;}
.ws4_c01068{word-spacing:18.107840pt;}
.ws8_c01068{word-spacing:18.171600pt;}
.ws14_c01068{word-spacing:18.299120pt;}
.ws21_c01068{word-spacing:18.809200pt;}
.ws2b_c01068{word-spacing:18.916416pt;}
.ws25_c01068{word-spacing:19.000480pt;}
.wsd_c01068{word-spacing:19.638080pt;}
.ws9_c01068{word-spacing:19.893120pt;}
.ws23_c01068{word-spacing:20.211920pt;}
.ws19_c01068{word-spacing:20.403200pt;}
.ws27_c01068{word-spacing:20.466960pt;}
.ws24_c01068{word-spacing:20.658240pt;}
.wsa_c01068{word-spacing:20.722000pt;}
.ws26_c01068{word-spacing:20.785760pt;}
.ws5_c01068{word-spacing:20.977040pt;}
.ws3_c01068{word-spacing:21.232080pt;}
.ws1a_c01068{word-spacing:21.933440pt;}
.wsf_c01068{word-spacing:21.997200pt;}
.ws1b_c01068{word-spacing:22.252240pt;}
.ws6_c01068{word-spacing:22.826080pt;}
.ws13_c01068{word-spacing:23.399920pt;}
.ws12_c01068{word-spacing:23.463680pt;}
.wsc_c01068{word-spacing:23.718720pt;}
.ws10_c01068{word-spacing:23.782480pt;}
.ws0_c01068{word-spacing:23.846240pt;}
.ws2_c01068{word-spacing:24.037520pt;}
.ws1f_c01068{word-spacing:25.886560pt;}
.ws1e_c01068{word-spacing:25.950320pt;}
.ws28_c01068{word-spacing:26.587920pt;}
.ws17_c01068{word-spacing:26.779200pt;}
.ws20_c01068{word-spacing:27.034240pt;}
.ws1d_c01068{word-spacing:28.054400pt;}
.ws1c_c01068{word-spacing:29.839680pt;}
.wsb_c01068{word-spacing:30.094720pt;}
.ws16_c01068{word-spacing:30.796080pt;}
._0_c01068{margin-left:-36.024400pt;}
._7_c01068{margin-left:-32.772640pt;}
._8_c01068{margin-left:-31.306160pt;}
._9_c01068{margin-left:-28.692000pt;}
._17_c01068{margin-left:-27.093595pt;}
._15_c01068{margin-left:-26.077840pt;}
._e_c01068{margin-left:-24.292560pt;}
._19_c01068{margin-left:-20.808576pt;}
._d_c01068{margin-left:-6.949840pt;}
._4_c01068{margin-left:-5.164560pt;}
._a_c01068{margin-left:-3.506800pt;}
._6_c01068{margin-left:-2.167840pt;}
._3_c01068{margin-left:-1.275200pt;}
._5_c01068{width:1.466480pt;}
._b_c01068{width:2.359120pt;}
._c_c01068{width:3.506800pt;}
._16_c01068{width:22.095760pt;}
._10_c01068{width:22.992747pt;}
._18_c01068{width:24.073008pt;}
._f_c01068{width:25.101760pt;}
._12_c01068{width:26.264053pt;}
._14_c01068{width:28.039787pt;}
._11_c01068{width:32.298133pt;}
._13_c01068{width:34.513467pt;}
._2_c01068{width:70.518560pt;}
._1_c01068{width:413.105280pt;}
.fs2_c01068{font-size:37.194667pt;}
.fs1_c01068{font-size:42.506667pt;}
.fs3_c01068{font-size:53.136000pt;}
.fs0_c01068{font-size:63.760000pt;}
.y0_c01068{bottom:0.000000pt;}
.y2a_c01068{bottom:83.060000pt;}
.y29_c01068{bottom:87.880000pt;}
.y28_c01068{bottom:100.424000pt;}
.y27_c01068{bottom:116.364000pt;}
.y26_c01068{bottom:132.305333pt;}
.y25_c01068{bottom:137.125333pt;}
.y24_c01068{bottom:154.489333pt;}
.y23_c01068{bottom:177.789333pt;}
.y22_c01068{bottom:201.692000pt;}
.y21_c01068{bottom:225.594667pt;}
.y20_c01068{bottom:249.497333pt;}
.y1f_c01068{bottom:273.401333pt;}
.y1e_c01068{bottom:297.304000pt;}
.y1d_c01068{bottom:321.206667pt;}
.y1c_c01068{bottom:345.109333pt;}
.y1b_c01068{bottom:369.012000pt;}
.y1a_c01068{bottom:392.916000pt;}
.y19_c01068{bottom:416.818667pt;}
.y18_c01068{bottom:440.721333pt;}
.y17_c01068{bottom:464.624000pt;}
.y16_c01068{bottom:488.528000pt;}
.y15_c01068{bottom:512.430667pt;}
.y14_c01068{bottom:536.333333pt;}
.y13_c01068{bottom:560.236000pt;}
.y12_c01068{bottom:584.140000pt;}
.y11_c01068{bottom:608.042667pt;}
.y10_c01068{bottom:631.945333pt;}
.yf_c01068{bottom:655.848000pt;}
.ye_c01068{bottom:679.752000pt;}
.yd_c01068{bottom:703.654667pt;}
.yc_c01068{bottom:727.557333pt;}
.yb_c01068{bottom:751.460000pt;}
.ya_c01068{bottom:775.362667pt;}
.y9_c01068{bottom:799.266667pt;}
.y8_c01068{bottom:823.169333pt;}
.y7_c01068{bottom:847.072000pt;}
.y6_c01068{bottom:870.974667pt;}
.y5_c01068{bottom:894.878667pt;}
.y4_c01068{bottom:918.781333pt;}
.y3_c01068{bottom:942.684000pt;}
.y2_c01068{bottom:973.450667pt;}
.y1_c01068{bottom:1032.964000pt;}
.h6_c01068{height:25.143595pt;}
.h7_c01068{height:34.001333pt;}
.h8_c01068{height:39.852000pt;}
.h2_c01068{height:47.820000pt;}
.h5_c01068{height:51.870507pt;}
.h4_c01068{height:51.875840pt;}
.h3_c01068{height:63.937333pt;}
.h1_c01068{height:1123.333333pt;}
.h0_c01068{height:1123.653333pt;}
.w0_c01068{width:794.550667pt;}
.w1_c01068{width:794.666667pt;}
.x0_c01068{left:0.000000pt;}
.x1_c01068{left:113.385333pt;}
.x5_c01068{left:126.042667pt;}
.x2_c01068{left:142.078667pt;}
.x4_c01068{left:287.356000pt;}
.x6_c01068{left:441.168000pt;}
.x3_c01068{left:445.006667pt;}
.x7_c01068{left:538.901333pt;}
}





/* 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_f0e283c1913e45d69bfa7604.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:1.001000;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_40f88f78f59745e1ce5852ef.woff2')format("woff");}.ff2_c01069{font-family:ff2_c01069;line-height:1.001000;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_c01069;src:url('chunks/assets/font_44c612cb8ac2113233805102.woff2')format("woff");}.ff3_c01069{font-family:ff3_c01069;line-height:1.001000;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_c01069;src:url('chunks/assets/font_2413eda0ab6f2d4587941925.woff2')format("woff");}.ff4_c01069{font-family:ff4_c01069;line-height:0.697000;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_c01069;src:url('chunks/assets/font_97b05c3f21d79b04c262ad87.woff2')format("woff");}.ff5_c01069{font-family:ff5_c01069;line-height:1.000000;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_c01069;src:url('chunks/assets/font_eb54112043c453eb55937679.woff2')format("woff");}.ff6_c01069{font-family:ff6_c01069;line-height:0.696000;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_c01069;src:url('chunks/assets/font_8997e5db3d6d072228557d23.woff2')format("woff");}.ff7_c01069{font-family:ff7_c01069;line-height:1.000000;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_c01069;src:url('chunks/assets/font_21b53565ed30216d7745713b.woff2')format("woff");}.ff8_c01069{font-family:ff8_c01069;line-height:1.000000;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);}
.v3_c01069{vertical-align:-21.696000px;}
.v0_c01069{vertical-align:0.000000px;}
.v2_c01069{vertical-align:5.976000px;}
.v4_c01069{vertical-align:15.108000px;}
.v1_c01069{vertical-align:26.034000px;}
.ls4_c01069{letter-spacing:0.000000px;}
.ls3_c01069{letter-spacing:8.304750px;}
.ls2_c01069{letter-spacing:23.395590px;}
.ls0_c01069{letter-spacing:25.045590px;}
.ls1_c01069{letter-spacing:31.057440px;}
.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;}
}
.ws1_c01069{word-spacing:-0.071730px;}
.ws2a_c01069{word-spacing:-0.059778px;}
.wsc_c01069{word-spacing:-0.047820px;}
.ws28_c01069{word-spacing:-0.041844px;}
.ws30_c01069{word-spacing:0.000000px;}
.ws2d_c01069{word-spacing:14.765166px;}
.ws24_c01069{word-spacing:17.430390px;}
.wse_c01069{word-spacing:17.717310px;}
.wsa_c01069{word-spacing:17.789040px;}
.ws1c_c01069{word-spacing:18.291150px;}
.ws26_c01069{word-spacing:18.362880px;}
.ws27_c01069{word-spacing:18.793260px;}
.wsd_c01069{word-spacing:19.151910px;}
.ws1e_c01069{word-spacing:19.367100px;}
.ws2c_c01069{word-spacing:19.846296px;}
.ws29_c01069{word-spacing:20.982078px;}
.ws2f_c01069{word-spacing:21.280968px;}
.ws1d_c01069{word-spacing:22.308030px;}
.ws21_c01069{word-spacing:22.666680px;}
.ws19_c01069{word-spacing:23.312250px;}
.wsb_c01069{word-spacing:23.383980px;}
.ws25_c01069{word-spacing:23.670900px;}
.ws2_c01069{word-spacing:24.414930px;}
.ws4_c01069{word-spacing:24.459930px;}
.wsf_c01069{word-spacing:24.531660px;}
.ws5_c01069{word-spacing:24.890310px;}
.ws8_c01069{word-spacing:24.962040px;}
.ws1b_c01069{word-spacing:25.033770px;}
.ws1f_c01069{word-spacing:25.464150px;}
.ws22_c01069{word-spacing:25.894530px;}
.ws3_c01069{word-spacing:26.037990px;}
.ws10_c01069{word-spacing:26.109720px;}
.ws2e_c01069{word-spacing:26.242542px;}
.ws1a_c01069{word-spacing:26.375340px;}
.ws7_c01069{word-spacing:26.540100px;}
.ws9_c01069{word-spacing:26.683560px;}
.ws0_c01069{word-spacing:26.827020px;}
.ws20_c01069{word-spacing:27.042210px;}
.ws6_c01069{word-spacing:28.025340px;}
.ws11_c01069{word-spacing:29.050650px;}
.ws16_c01069{word-spacing:29.481030px;}
.ws18_c01069{word-spacing:29.552760px;}
.ws23_c01069{word-spacing:29.767950px;}
.ws17_c01069{word-spacing:30.772170px;}
.ws2b_c01069{word-spacing:30.785670px;}
.ws12_c01069{word-spacing:30.915630px;}
.ws14_c01069{word-spacing:30.987360px;}
.ws13_c01069{word-spacing:32.063310px;}
.ws15_c01069{word-spacing:32.780610px;}
._0_c01069{margin-left:-40.527450px;}
._8_c01069{margin-left:-37.156140px;}
._5_c01069{margin-left:-35.623080px;}
._13_c01069{margin-left:-34.445850px;}
._11_c01069{margin-left:-33.399450px;}
._16_c01069{margin-left:-31.113978px;}
._14_c01069{margin-left:-29.889000px;}
._b_c01069{margin-left:-27.329130px;}
._15_c01069{margin-left:-24.039846px;}
._a_c01069{margin-left:-7.818570px;}
._e_c01069{margin-left:-6.025320px;}
._c_c01069{margin-left:-4.816080px;}
._3_c01069{margin-left:-3.586500px;}
._2_c01069{margin-left:-1.748250px;}
._7_c01069{width:1.156140px;}
._9_c01069{width:2.564010px;}
._10_c01069{width:3.684960px;}
._f_c01069{width:20.299590px;}
._6_c01069{width:30.268950px;}
._4_c01069{width:33.230400px;}
._d_c01069{width:37.670250px;}
._12_c01069{width:79.333380px;}
._1_c01069{width:464.743440px;}
.fc0_c01069{color:rgb(0,0,0);}
.fs2_c01069{font-size:41.844000px;}
.fs1_c01069{font-size:47.820000px;}
.fs3_c01069{font-size:59.778000px;}
.fs0_c01069{font-size:71.730000px;}
.y0_c01069{bottom:0.000000px;}
.y28_c01069{bottom:107.758500px;}
.y27_c01069{bottom:125.691000px;}
.y26_c01069{bottom:149.047500px;}
.y25_c01069{bottom:161.556000px;}
.y24_c01069{bottom:184.912500px;}
.y23_c01069{bottom:197.422500px;}
.y22_c01069{bottom:220.777500px;}
.y21_c01069{bottom:233.287500px;}
.y20_c01069{bottom:256.644000px;}
.y1f_c01069{bottom:283.399500px;}
.y1e_c01069{bottom:310.290000px;}
.y1d_c01069{bottom:337.182000px;}
.y1c_c01069{bottom:364.072500px;}
.y1b_c01069{bottom:390.963000px;}
.y1a_c01069{bottom:417.853500px;}
.y19_c01069{bottom:444.745500px;}
.y18_c01069{bottom:471.636000px;}
.y17_c01069{bottom:498.526500px;}
.y16_c01069{bottom:525.417000px;}
.y15_c01069{bottom:560.029500px;}
.y14_c01069{bottom:581.698500px;}
.y13_c01069{bottom:637.987500px;}
.y12_c01069{bottom:664.878000px;}
.y11_c01069{bottom:691.768500px;}
.y10_c01069{bottom:718.659000px;}
.yf_c01069{bottom:745.551000px;}
.ye_c01069{bottom:772.441500px;}
.yd_c01069{bottom:799.332000px;}
.yc_c01069{bottom:826.222500px;}
.yb_c01069{bottom:853.114500px;}
.ya_c01069{bottom:880.005000px;}
.y9_c01069{bottom:906.895500px;}
.y8_c01069{bottom:933.786000px;}
.y7_c01069{bottom:960.678000px;}
.y6_c01069{bottom:987.568500px;}
.y5_c01069{bottom:1014.459000px;}
.y4_c01069{bottom:1041.349500px;}
.y3_c01069{bottom:1068.240000px;}
.y2_c01069{bottom:1095.132000px;}
.y1_c01069{bottom:1162.084500px;}
.h6_c01069{height:28.286544px;}
.h7_c01069{height:44.833500px;}
.h2_c01069{height:53.797500px;}
.h4_c01069{height:58.354320px;}
.h3_c01069{height:58.360320px;}
.h5_c01069{height:59.773500px;}
.h8_c01069{height:59.941500px;}
.h1_c01069{height:1263.750000px;}
.h0_c01069{height:1264.110000px;}
.w0_c01069{width:893.869500px;}
.w1_c01069{width:894.000000px;}
.x0_c01069{left:0.000000px;}
.x1_c01069{left:127.558500px;}
.x7_c01069{left:136.899000px;}
.x6_c01069{left:141.798000px;}
.x2_c01069{left:159.838500px;}
.x3_c01069{left:204.220500px;}
.x4_c01069{left:250.417500px;}
.x5_c01069{left:413.020500px;}
@media print{
.v3_c01069{vertical-align:-19.285333pt;}
.v0_c01069{vertical-align:0.000000pt;}
.v2_c01069{vertical-align:5.312000pt;}
.v4_c01069{vertical-align:13.429333pt;}
.v1_c01069{vertical-align:23.141333pt;}
.ls4_c01069{letter-spacing:0.000000pt;}
.ls3_c01069{letter-spacing:7.382000pt;}
.ls2_c01069{letter-spacing:20.796080pt;}
.ls0_c01069{letter-spacing:22.262747pt;}
.ls1_c01069{letter-spacing:27.606613pt;}
.ws1_c01069{word-spacing:-0.063760pt;}
.ws2a_c01069{word-spacing:-0.053136pt;}
.wsc_c01069{word-spacing:-0.042507pt;}
.ws28_c01069{word-spacing:-0.037195pt;}
.ws30_c01069{word-spacing:0.000000pt;}
.ws2d_c01069{word-spacing:13.124592pt;}
.ws24_c01069{word-spacing:15.493680pt;}
.wse_c01069{word-spacing:15.748720pt;}
.wsa_c01069{word-spacing:15.812480pt;}
.ws1c_c01069{word-spacing:16.258800pt;}
.ws26_c01069{word-spacing:16.322560pt;}
.ws27_c01069{word-spacing:16.705120pt;}
.wsd_c01069{word-spacing:17.023920pt;}
.ws1e_c01069{word-spacing:17.215200pt;}
.ws2c_c01069{word-spacing:17.641152pt;}
.ws29_c01069{word-spacing:18.650736pt;}
.ws2f_c01069{word-spacing:18.916416pt;}
.ws1d_c01069{word-spacing:19.829360pt;}
.ws21_c01069{word-spacing:20.148160pt;}
.ws19_c01069{word-spacing:20.722000pt;}
.wsb_c01069{word-spacing:20.785760pt;}
.ws25_c01069{word-spacing:21.040800pt;}
.ws2_c01069{word-spacing:21.702160pt;}
.ws4_c01069{word-spacing:21.742160pt;}
.wsf_c01069{word-spacing:21.805920pt;}
.ws5_c01069{word-spacing:22.124720pt;}
.ws8_c01069{word-spacing:22.188480pt;}
.ws1b_c01069{word-spacing:22.252240pt;}
.ws1f_c01069{word-spacing:22.634800pt;}
.ws22_c01069{word-spacing:23.017360pt;}
.ws3_c01069{word-spacing:23.144880pt;}
.ws10_c01069{word-spacing:23.208640pt;}
.ws2e_c01069{word-spacing:23.326704pt;}
.ws1a_c01069{word-spacing:23.444747pt;}
.ws7_c01069{word-spacing:23.591200pt;}
.ws9_c01069{word-spacing:23.718720pt;}
.ws0_c01069{word-spacing:23.846240pt;}
.ws20_c01069{word-spacing:24.037520pt;}
.ws6_c01069{word-spacing:24.911413pt;}
.ws11_c01069{word-spacing:25.822800pt;}
.ws16_c01069{word-spacing:26.205360pt;}
.ws18_c01069{word-spacing:26.269120pt;}
.ws23_c01069{word-spacing:26.460400pt;}
.ws17_c01069{word-spacing:27.353040pt;}
.ws2b_c01069{word-spacing:27.365040pt;}
.ws12_c01069{word-spacing:27.480560pt;}
.ws14_c01069{word-spacing:27.544320pt;}
.ws13_c01069{word-spacing:28.500720pt;}
.ws15_c01069{word-spacing:29.138320pt;}
._0_c01069{margin-left:-36.024400pt;}
._8_c01069{margin-left:-33.027680pt;}
._5_c01069{margin-left:-31.664960pt;}
._13_c01069{margin-left:-30.618533pt;}
._11_c01069{margin-left:-29.688400pt;}
._16_c01069{margin-left:-27.656869pt;}
._14_c01069{margin-left:-26.568000pt;}
._b_c01069{margin-left:-24.292560pt;}
._15_c01069{margin-left:-21.368752pt;}
._a_c01069{margin-left:-6.949840pt;}
._e_c01069{margin-left:-5.355840pt;}
._c_c01069{margin-left:-4.280960pt;}
._3_c01069{margin-left:-3.188000pt;}
._2_c01069{margin-left:-1.554000pt;}
._7_c01069{width:1.027680pt;}
._9_c01069{width:2.279120pt;}
._10_c01069{width:3.275520pt;}
._f_c01069{width:18.044080pt;}
._6_c01069{width:26.905733pt;}
._4_c01069{width:29.538133pt;}
._d_c01069{width:33.484667pt;}
._12_c01069{width:70.518560pt;}
._1_c01069{width:413.105280pt;}
.fs2_c01069{font-size:37.194667pt;}
.fs1_c01069{font-size:42.506667pt;}
.fs3_c01069{font-size:53.136000pt;}
.fs0_c01069{font-size:63.760000pt;}
.y0_c01069{bottom:0.000000pt;}
.y28_c01069{bottom:95.785333pt;}
.y27_c01069{bottom:111.725333pt;}
.y26_c01069{bottom:132.486667pt;}
.y25_c01069{bottom:143.605333pt;}
.y24_c01069{bottom:164.366667pt;}
.y23_c01069{bottom:175.486667pt;}
.y22_c01069{bottom:196.246667pt;}
.y21_c01069{bottom:207.366667pt;}
.y20_c01069{bottom:228.128000pt;}
.y1f_c01069{bottom:251.910667pt;}
.y1e_c01069{bottom:275.813333pt;}
.y1d_c01069{bottom:299.717333pt;}
.y1c_c01069{bottom:323.620000pt;}
.y1b_c01069{bottom:347.522667pt;}
.y1a_c01069{bottom:371.425333pt;}
.y19_c01069{bottom:395.329333pt;}
.y18_c01069{bottom:419.232000pt;}
.y17_c01069{bottom:443.134667pt;}
.y16_c01069{bottom:467.037333pt;}
.y15_c01069{bottom:497.804000pt;}
.y14_c01069{bottom:517.065333pt;}
.y13_c01069{bottom:567.100000pt;}
.y12_c01069{bottom:591.002667pt;}
.y11_c01069{bottom:614.905333pt;}
.y10_c01069{bottom:638.808000pt;}
.yf_c01069{bottom:662.712000pt;}
.ye_c01069{bottom:686.614667pt;}
.yd_c01069{bottom:710.517333pt;}
.yc_c01069{bottom:734.420000pt;}
.yb_c01069{bottom:758.324000pt;}
.ya_c01069{bottom:782.226667pt;}
.y9_c01069{bottom:806.129333pt;}
.y8_c01069{bottom:830.032000pt;}
.y7_c01069{bottom:853.936000pt;}
.y6_c01069{bottom:877.838667pt;}
.y5_c01069{bottom:901.741333pt;}
.y4_c01069{bottom:925.644000pt;}
.y3_c01069{bottom:949.546667pt;}
.y2_c01069{bottom:973.450667pt;}
.y1_c01069{bottom:1032.964000pt;}
.h6_c01069{height:25.143595pt;}
.h7_c01069{height:39.852000pt;}
.h2_c01069{height:47.820000pt;}
.h4_c01069{height:51.870507pt;}
.h3_c01069{height:51.875840pt;}
.h5_c01069{height:53.132000pt;}
.h8_c01069{height:53.281333pt;}
.h1_c01069{height:1123.333333pt;}
.h0_c01069{height:1123.653333pt;}
.w0_c01069{width:794.550667pt;}
.w1_c01069{width:794.666667pt;}
.x0_c01069{left:0.000000pt;}
.x1_c01069{left:113.385333pt;}
.x7_c01069{left:121.688000pt;}
.x6_c01069{left:126.042667pt;}
.x2_c01069{left:142.078667pt;}
.x3_c01069{left:181.529333pt;}
.x4_c01069{left:222.593333pt;}
.x5_c01069{left:367.129333pt;}
}





/* 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_48f56491bf4c59ebbf5da0cf.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.001000;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_dcbce2135067272552769955.woff2')format("woff");}.ff2_c01070{font-family:ff2_c01070;line-height:1.001000;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_c01070;src:url('chunks/assets/font_52ae8c7302e0bebc27a8192e.woff2')format("woff");}.ff3_c01070{font-family:ff3_c01070;line-height:1.001000;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_c01070;src:url('chunks/assets/font_543ae02905e9b9863e5dbef3.woff2')format("woff");}.ff4_c01070{font-family:ff4_c01070;line-height:0.697000;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_c01070;src:url('chunks/assets/font_391eaed810791bc77ac5c8f8.woff2')format("woff");}.ff5_c01070{font-family:ff5_c01070;line-height:0.696000;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_c01070;src:url('chunks/assets/font_4e27722421cfaf29999ba6da.woff2')format("woff");}.ff6_c01070{font-family:ff6_c01070;line-height:1.000000;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_c01070;src:url('chunks/assets/font_51363995d0308b4dbf7580fc.woff2')format("woff");}.ff7_c01070{font-family:ff7_c01070;line-height:1.000000;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);}
.v2_c01070{vertical-align:-21.696000px;}
.v0_c01070{vertical-align:0.000000px;}
.v1_c01070{vertical-align:26.028000px;}
.ls0_c01070{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01070{word-spacing:-0.071730px;}
.ws20_c01070{word-spacing:-0.041844px;}
.ws23_c01070{word-spacing:0.000000px;}
.ws7_c01070{word-spacing:16.426170px;}
.ws11_c01070{word-spacing:17.143470px;}
.ws17_c01070{word-spacing:17.215200px;}
.ws1c_c01070{word-spacing:17.502120px;}
.ws1a_c01070{word-spacing:17.573850px;}
.ws13_c01070{word-spacing:18.004230px;}
.ws16_c01070{word-spacing:18.291150px;}
.ws12_c01070{word-spacing:19.367100px;}
.wse_c01070{word-spacing:19.654020px;}
.ws1d_c01070{word-spacing:19.725750px;}
.ws21_c01070{word-spacing:19.846296px;}
.ws15_c01070{word-spacing:20.156130px;}
.ws1e_c01070{word-spacing:20.873430px;}
.ws22_c01070{word-spacing:21.280968px;}
.ws18_c01070{word-spacing:22.810140px;}
.wsf_c01070{word-spacing:22.881870px;}
.ws6_c01070{word-spacing:23.312250px;}
.ws1b_c01070{word-spacing:23.383980px;}
.ws8_c01070{word-spacing:23.527440px;}
.ws5_c01070{word-spacing:24.531660px;}
.ws3_c01070{word-spacing:24.532650px;}
.ws10_c01070{word-spacing:25.320690px;}
.wsa_c01070{word-spacing:25.822800px;}
.ws2_c01070{word-spacing:25.894530px;}
.ws4_c01070{word-spacing:26.109720px;}
.ws1f_c01070{word-spacing:26.324910px;}
.ws14_c01070{word-spacing:26.611830px;}
.ws0_c01070{word-spacing:26.827020px;}
.ws9_c01070{word-spacing:27.113940px;}
.ws19_c01070{word-spacing:27.616050px;}
.wsd_c01070{word-spacing:29.122380px;}
.wsc_c01070{word-spacing:34.286940px;}
.wsb_c01070{word-spacing:35.147700px;}
._0_c01070{margin-left:-40.527450px;}
._3_c01070{margin-left:-37.084410px;}
._4_c01070{margin-left:-35.291160px;}
._f_c01070{margin-left:-34.215210px;}
._8_c01070{margin-left:-33.139260px;}
._12_c01070{margin-left:-30.432318px;}
._13_c01070{margin-left:-29.385066px;}
._b_c01070{margin-left:-27.329130px;}
._a_c01070{margin-left:-7.675110px;}
._6_c01070{margin-left:-3.658230px;}
._5_c01070{margin-left:-1.936710px;}
._2_c01070{width:1.721520px;}
._11_c01070{width:3.514770px;}
._c_c01070{width:4.567620px;}
._e_c01070{width:15.278490px;}
._d_c01070{width:19.725750px;}
._10_c01070{width:22.027020px;}
._7_c01070{width:28.971060px;}
._9_c01070{width:37.370970px;}
._1_c01070{width:464.743440px;}
.fc0_c01070{color:rgb(0,0,0);}
.fs2_c01070{font-size:41.844000px;}
.fs1_c01070{font-size:47.820000px;}
.fs3_c01070{font-size:59.778000px;}
.fs0_c01070{font-size:71.730000px;}
.y0_c01070{bottom:0.000000px;}
.y25_c01070{bottom:100.288500px;}
.y24_c01070{bottom:127.044000px;}
.y23_c01070{bottom:153.934500px;}
.y22_c01070{bottom:180.826500px;}
.y21_c01070{bottom:207.717000px;}
.y20_c01070{bottom:234.607500px;}
.y1f_c01070{bottom:279.432000px;}
.y1e_c01070{bottom:306.322500px;}
.y1d_c01070{bottom:333.213000px;}
.y1c_c01070{bottom:360.103500px;}
.y1b_c01070{bottom:386.994000px;}
.y1a_c01070{bottom:413.886000px;}
.y19_c01070{bottom:440.776500px;}
.y18_c01070{bottom:467.667000px;}
.y17_c01070{bottom:494.557500px;}
.y16_c01070{bottom:521.449500px;}
.y15_c01070{bottom:566.272500px;}
.y14_c01070{bottom:593.163000px;}
.y13_c01070{bottom:620.055000px;}
.y12_c01070{bottom:646.945500px;}
.y11_c01070{bottom:673.836000px;}
.y10_c01070{bottom:700.726500px;}
.yf_c01070{bottom:727.617000px;}
.ye_c01070{bottom:754.509000px;}
.yd_c01070{bottom:781.399500px;}
.yc_c01070{bottom:808.290000px;}
.yb_c01070{bottom:835.180500px;}
.ya_c01070{bottom:862.072500px;}
.y9_c01070{bottom:888.963000px;}
.y8_c01070{bottom:915.853500px;}
.y7_c01070{bottom:960.678000px;}
.y6_c01070{bottom:987.568500px;}
.y5_c01070{bottom:1014.459000px;}
.y4_c01070{bottom:1041.349500px;}
.y3_c01070{bottom:1068.240000px;}
.y2_c01070{bottom:1095.132000px;}
.y1_c01070{bottom:1162.084500px;}
.h4_c01070{height:28.286544px;}
.h2_c01070{height:53.797500px;}
.h3_c01070{height:58.354320px;}
.h1_c01070{height:1263.750000px;}
.h0_c01070{height:1264.110000px;}
.w0_c01070{width:893.869500px;}
.w1_c01070{width:894.000000px;}
.x0_c01070{left:0.000000px;}
.x1_c01070{left:127.558500px;}
.x3_c01070{left:141.798000px;}
.x2_c01070{left:159.838500px;}
@media print{
.v2_c01070{vertical-align:-19.285333pt;}
.v0_c01070{vertical-align:0.000000pt;}
.v1_c01070{vertical-align:23.136000pt;}
.ls0_c01070{letter-spacing:0.000000pt;}
.ws1_c01070{word-spacing:-0.063760pt;}
.ws20_c01070{word-spacing:-0.037195pt;}
.ws23_c01070{word-spacing:0.000000pt;}
.ws7_c01070{word-spacing:14.601040pt;}
.ws11_c01070{word-spacing:15.238640pt;}
.ws17_c01070{word-spacing:15.302400pt;}
.ws1c_c01070{word-spacing:15.557440pt;}
.ws1a_c01070{word-spacing:15.621200pt;}
.ws13_c01070{word-spacing:16.003760pt;}
.ws16_c01070{word-spacing:16.258800pt;}
.ws12_c01070{word-spacing:17.215200pt;}
.wse_c01070{word-spacing:17.470240pt;}
.ws1d_c01070{word-spacing:17.534000pt;}
.ws21_c01070{word-spacing:17.641152pt;}
.ws15_c01070{word-spacing:17.916560pt;}
.ws1e_c01070{word-spacing:18.554160pt;}
.ws22_c01070{word-spacing:18.916416pt;}
.ws18_c01070{word-spacing:20.275680pt;}
.wsf_c01070{word-spacing:20.339440pt;}
.ws6_c01070{word-spacing:20.722000pt;}
.ws1b_c01070{word-spacing:20.785760pt;}
.ws8_c01070{word-spacing:20.913280pt;}
.ws5_c01070{word-spacing:21.805920pt;}
.ws3_c01070{word-spacing:21.806800pt;}
.ws10_c01070{word-spacing:22.507280pt;}
.wsa_c01070{word-spacing:22.953600pt;}
.ws2_c01070{word-spacing:23.017360pt;}
.ws4_c01070{word-spacing:23.208640pt;}
.ws1f_c01070{word-spacing:23.399920pt;}
.ws14_c01070{word-spacing:23.654960pt;}
.ws0_c01070{word-spacing:23.846240pt;}
.ws9_c01070{word-spacing:24.101280pt;}
.ws19_c01070{word-spacing:24.547600pt;}
.wsd_c01070{word-spacing:25.886560pt;}
.wsc_c01070{word-spacing:30.477280pt;}
.wsb_c01070{word-spacing:31.242400pt;}
._0_c01070{margin-left:-36.024400pt;}
._3_c01070{margin-left:-32.963920pt;}
._4_c01070{margin-left:-31.369920pt;}
._f_c01070{margin-left:-30.413520pt;}
._8_c01070{margin-left:-29.457120pt;}
._12_c01070{margin-left:-27.050949pt;}
._13_c01070{margin-left:-26.120059pt;}
._b_c01070{margin-left:-24.292560pt;}
._a_c01070{margin-left:-6.822320pt;}
._6_c01070{margin-left:-3.251760pt;}
._5_c01070{margin-left:-1.721520pt;}
._2_c01070{width:1.530240pt;}
._11_c01070{width:3.124240pt;}
._c_c01070{width:4.060107pt;}
._e_c01070{width:13.580880pt;}
._d_c01070{width:17.534000pt;}
._10_c01070{width:19.579573pt;}
._7_c01070{width:25.752053pt;}
._9_c01070{width:33.218640pt;}
._1_c01070{width:413.105280pt;}
.fs2_c01070{font-size:37.194667pt;}
.fs1_c01070{font-size:42.506667pt;}
.fs3_c01070{font-size:53.136000pt;}
.fs0_c01070{font-size:63.760000pt;}
.y0_c01070{bottom:0.000000pt;}
.y25_c01070{bottom:89.145333pt;}
.y24_c01070{bottom:112.928000pt;}
.y23_c01070{bottom:136.830667pt;}
.y22_c01070{bottom:160.734667pt;}
.y21_c01070{bottom:184.637333pt;}
.y20_c01070{bottom:208.540000pt;}
.y1f_c01070{bottom:248.384000pt;}
.y1e_c01070{bottom:272.286667pt;}
.y1d_c01070{bottom:296.189333pt;}
.y1c_c01070{bottom:320.092000pt;}
.y1b_c01070{bottom:343.994667pt;}
.y1a_c01070{bottom:367.898667pt;}
.y19_c01070{bottom:391.801333pt;}
.y18_c01070{bottom:415.704000pt;}
.y17_c01070{bottom:439.606667pt;}
.y16_c01070{bottom:463.510667pt;}
.y15_c01070{bottom:503.353333pt;}
.y14_c01070{bottom:527.256000pt;}
.y13_c01070{bottom:551.160000pt;}
.y12_c01070{bottom:575.062667pt;}
.y11_c01070{bottom:598.965333pt;}
.y10_c01070{bottom:622.868000pt;}
.yf_c01070{bottom:646.770667pt;}
.ye_c01070{bottom:670.674667pt;}
.yd_c01070{bottom:694.577333pt;}
.yc_c01070{bottom:718.480000pt;}
.yb_c01070{bottom:742.382667pt;}
.ya_c01070{bottom:766.286667pt;}
.y9_c01070{bottom:790.189333pt;}
.y8_c01070{bottom:814.092000pt;}
.y7_c01070{bottom:853.936000pt;}
.y6_c01070{bottom:877.838667pt;}
.y5_c01070{bottom:901.741333pt;}
.y4_c01070{bottom:925.644000pt;}
.y3_c01070{bottom:949.546667pt;}
.y2_c01070{bottom:973.450667pt;}
.y1_c01070{bottom:1032.964000pt;}
.h4_c01070{height:25.143595pt;}
.h2_c01070{height:47.820000pt;}
.h3_c01070{height:51.870507pt;}
.h1_c01070{height:1123.333333pt;}
.h0_c01070{height:1123.653333pt;}
.w0_c01070{width:794.550667pt;}
.w1_c01070{width:794.666667pt;}
.x0_c01070{left:0.000000pt;}
.x1_c01070{left:113.385333pt;}
.x3_c01070{left:126.042667pt;}
.x2_c01070{left:142.078667pt;}
}





/* 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_48f56491bf4c59ebbf5da0cf.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.001000;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_4edee19bfe689138fa431084.woff2')format("woff");}.ff2_c01071{font-family:ff2_c01071;line-height:1.001000;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_c01071;src:url('chunks/assets/font_eb94c2c8b1404a0f873aab7e.woff2')format("woff");}.ff3_c01071{font-family:ff3_c01071;line-height:1.001000;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_c01071;src:url('chunks/assets/font_543ae02905e9b9863e5dbef3.woff2')format("woff");}.ff4_c01071{font-family:ff4_c01071;line-height:0.697000;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_c01071;src:url('chunks/assets/font_391eaed810791bc77ac5c8f8.woff2')format("woff");}.ff5_c01071{font-family:ff5_c01071;line-height:0.696000;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_c01071;src:url('chunks/assets/font_2d788e128363d007fd0e5d3a.woff2')format("woff");}.ff6_c01071{font-family:ff6_c01071;line-height:1.000000;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_c01071;src:url('chunks/assets/font_7820d16ca4d78b8adab4e01c.woff2')format("woff");}.ff7_c01071{font-family:ff7_c01071;line-height:1.000000;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);}
.v2_c01071{vertical-align:-21.690000px;}
.v0_c01071{vertical-align:0.000000px;}
.v1_c01071{vertical-align:26.028000px;}
.ls0_c01071{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01071{word-spacing:-0.071730px;}
.ws8_c01071{word-spacing:-0.047820px;}
.ws23_c01071{word-spacing:-0.041844px;}
.ws26_c01071{word-spacing:0.000000px;}
.ws25_c01071{word-spacing:9.086256px;}
.wse_c01071{word-spacing:16.784820px;}
.wsf_c01071{word-spacing:18.936720px;}
.wsc_c01071{word-spacing:19.654020px;}
.ws6_c01071{word-spacing:19.797480px;}
.ws24_c01071{word-spacing:19.846296px;}
.ws1e_c01071{word-spacing:21.662460px;}
.ws17_c01071{word-spacing:23.168790px;}
.ws2_c01071{word-spacing:23.312250px;}
.ws1c_c01071{word-spacing:23.383980px;}
.ws12_c01071{word-spacing:23.886090px;}
.ws1d_c01071{word-spacing:24.173010px;}
.ws10_c01071{word-spacing:24.459930px;}
.ws21_c01071{word-spacing:24.675120px;}
.ws7_c01071{word-spacing:25.033770px;}
.ws11_c01071{word-spacing:26.037990px;}
.wsd_c01071{word-spacing:26.324910px;}
.ws0_c01071{word-spacing:26.827020px;}
.ws16_c01071{word-spacing:27.185670px;}
.ws20_c01071{word-spacing:27.400860px;}
.ws1b_c01071{word-spacing:28.046430px;}
.wsa_c01071{word-spacing:28.333350px;}
.ws4_c01071{word-spacing:28.548540px;}
.ws1a_c01071{word-spacing:29.481030px;}
.ws18_c01071{word-spacing:29.552760px;}
.ws3_c01071{word-spacing:29.839680px;}
.ws19_c01071{word-spacing:30.700440px;}
.ws22_c01071{word-spacing:31.776390px;}
.wsb_c01071{word-spacing:32.278500px;}
.ws13_c01071{word-spacing:32.550600px;}
.ws15_c01071{word-spacing:32.565420px;}
.ws9_c01071{word-spacing:32.852340px;}
.ws1f_c01071{word-spacing:35.362890px;}
.ws5_c01071{word-spacing:37.371330px;}
.ws14_c01071{word-spacing:37.897770px;}
._0_c01071{margin-left:-40.527450px;}
._c_c01071{margin-left:-36.940950px;}
._6_c01071{margin-left:-35.434620px;}
._4_c01071{margin-left:-33.139260px;}
._11_c01071{margin-left:-30.494376px;}
._b_c01071{margin-left:-27.329130px;}
._a_c01071{margin-left:-7.531650px;}
._e_c01071{margin-left:-5.595870px;}
._7_c01071{margin-left:-3.586500px;}
._2_c01071{margin-left:-2.008440px;}
._5_c01071{width:1.864980px;}
._9_c01071{width:3.791520px;}
._3_c01071{width:21.375540px;}
._f_c01071{width:22.376580px;}
._d_c01071{width:24.173010px;}
._10_c01071{width:25.535880px;}
._8_c01071{width:33.976890px;}
._1_c01071{width:464.743440px;}
.fc0_c01071{color:rgb(0,0,0);}
.fs2_c01071{font-size:41.844000px;}
.fs1_c01071{font-size:47.820000px;}
.fs3_c01071{font-size:59.778000px;}
.fs0_c01071{font-size:71.730000px;}
.y0_c01071{bottom:0.000000px;}
.y24_c01071{bottom:98.865000px;}
.y23_c01071{bottom:124.918500px;}
.y22_c01071{bottom:151.809000px;}
.y21_c01071{bottom:178.701000px;}
.y20_c01071{bottom:205.591500px;}
.y1f_c01071{bottom:232.482000px;}
.y1e_c01071{bottom:259.372500px;}
.y1d_c01071{bottom:286.264500px;}
.y1c_c01071{bottom:329.682000px;}
.y1b_c01071{bottom:356.572500px;}
.y1a_c01071{bottom:383.464500px;}
.y19_c01071{bottom:410.355000px;}
.y18_c01071{bottom:437.245500px;}
.y17_c01071{bottom:464.136000px;}
.y16_c01071{bottom:507.555000px;}
.y15_c01071{bottom:534.445500px;}
.y14_c01071{bottom:561.336000px;}
.y13_c01071{bottom:588.226500px;}
.y12_c01071{bottom:615.118500px;}
.y11_c01071{bottom:642.009000px;}
.y10_c01071{bottom:668.899500px;}
.yf_c01071{bottom:695.790000px;}
.ye_c01071{bottom:722.682000px;}
.yd_c01071{bottom:749.572500px;}
.yc_c01071{bottom:792.990000px;}
.yb_c01071{bottom:819.880500px;}
.ya_c01071{bottom:846.772500px;}
.y9_c01071{bottom:873.663000px;}
.y8_c01071{bottom:900.553500px;}
.y7_c01071{bottom:944.061000px;}
.y6_c01071{bottom:970.951500px;}
.y5_c01071{bottom:997.842000px;}
.y4_c01071{bottom:1024.734000px;}
.y3_c01071{bottom:1068.240000px;}
.y2_c01071{bottom:1095.132000px;}
.y1_c01071{bottom:1162.084500px;}
.h4_c01071{height:28.286544px;}
.h2_c01071{height:53.797500px;}
.h3_c01071{height:58.354320px;}
.h1_c01071{height:1263.750000px;}
.h0_c01071{height:1264.110000px;}
.w0_c01071{width:893.869500px;}
.w1_c01071{width:894.000000px;}
.x0_c01071{left:0.000000px;}
.x1_c01071{left:127.558500px;}
.x5_c01071{left:141.798000px;}
.x4_c01071{left:159.838500px;}
.x3_c01071{left:171.456000px;}
.x2_c01071{left:197.794500px;}
@media print{
.v2_c01071{vertical-align:-19.280000pt;}
.v0_c01071{vertical-align:0.000000pt;}
.v1_c01071{vertical-align:23.136000pt;}
.ls0_c01071{letter-spacing:0.000000pt;}
.ws1_c01071{word-spacing:-0.063760pt;}
.ws8_c01071{word-spacing:-0.042507pt;}
.ws23_c01071{word-spacing:-0.037195pt;}
.ws26_c01071{word-spacing:0.000000pt;}
.ws25_c01071{word-spacing:8.076672pt;}
.wse_c01071{word-spacing:14.919840pt;}
.wsf_c01071{word-spacing:16.832640pt;}
.wsc_c01071{word-spacing:17.470240pt;}
.ws6_c01071{word-spacing:17.597760pt;}
.ws24_c01071{word-spacing:17.641152pt;}
.ws1e_c01071{word-spacing:19.255520pt;}
.ws17_c01071{word-spacing:20.594480pt;}
.ws2_c01071{word-spacing:20.722000pt;}
.ws1c_c01071{word-spacing:20.785760pt;}
.ws12_c01071{word-spacing:21.232080pt;}
.ws1d_c01071{word-spacing:21.487120pt;}
.ws10_c01071{word-spacing:21.742160pt;}
.ws21_c01071{word-spacing:21.933440pt;}
.ws7_c01071{word-spacing:22.252240pt;}
.ws11_c01071{word-spacing:23.144880pt;}
.wsd_c01071{word-spacing:23.399920pt;}
.ws0_c01071{word-spacing:23.846240pt;}
.ws16_c01071{word-spacing:24.165040pt;}
.ws20_c01071{word-spacing:24.356320pt;}
.ws1b_c01071{word-spacing:24.930160pt;}
.wsa_c01071{word-spacing:25.185200pt;}
.ws4_c01071{word-spacing:25.376480pt;}
.ws1a_c01071{word-spacing:26.205360pt;}
.ws18_c01071{word-spacing:26.269120pt;}
.ws3_c01071{word-spacing:26.524160pt;}
.ws19_c01071{word-spacing:27.289280pt;}
.ws22_c01071{word-spacing:28.245680pt;}
.wsb_c01071{word-spacing:28.692000pt;}
.ws13_c01071{word-spacing:28.933867pt;}
.ws15_c01071{word-spacing:28.947040pt;}
.ws9_c01071{word-spacing:29.202080pt;}
.ws1f_c01071{word-spacing:31.433680pt;}
.ws5_c01071{word-spacing:33.218960pt;}
.ws14_c01071{word-spacing:33.686907pt;}
._0_c01071{margin-left:-36.024400pt;}
._c_c01071{margin-left:-32.836400pt;}
._6_c01071{margin-left:-31.497440pt;}
._4_c01071{margin-left:-29.457120pt;}
._11_c01071{margin-left:-27.106112pt;}
._b_c01071{margin-left:-24.292560pt;}
._a_c01071{margin-left:-6.694800pt;}
._e_c01071{margin-left:-4.974107pt;}
._7_c01071{margin-left:-3.188000pt;}
._2_c01071{margin-left:-1.785280pt;}
._5_c01071{width:1.657760pt;}
._9_c01071{width:3.370240pt;}
._3_c01071{width:19.000480pt;}
._f_c01071{width:19.890293pt;}
._d_c01071{width:21.487120pt;}
._10_c01071{width:22.698560pt;}
._8_c01071{width:30.201680pt;}
._1_c01071{width:413.105280pt;}
.fs2_c01071{font-size:37.194667pt;}
.fs1_c01071{font-size:42.506667pt;}
.fs3_c01071{font-size:53.136000pt;}
.fs0_c01071{font-size:63.760000pt;}
.y0_c01071{bottom:0.000000pt;}
.y24_c01071{bottom:87.880000pt;}
.y23_c01071{bottom:111.038667pt;}
.y22_c01071{bottom:134.941333pt;}
.y21_c01071{bottom:158.845333pt;}
.y20_c01071{bottom:182.748000pt;}
.y1f_c01071{bottom:206.650667pt;}
.y1e_c01071{bottom:230.553333pt;}
.y1d_c01071{bottom:254.457333pt;}
.y1c_c01071{bottom:293.050667pt;}
.y1b_c01071{bottom:316.953333pt;}
.y1a_c01071{bottom:340.857333pt;}
.y19_c01071{bottom:364.760000pt;}
.y18_c01071{bottom:388.662667pt;}
.y17_c01071{bottom:412.565333pt;}
.y16_c01071{bottom:451.160000pt;}
.y15_c01071{bottom:475.062667pt;}
.y14_c01071{bottom:498.965333pt;}
.y13_c01071{bottom:522.868000pt;}
.y12_c01071{bottom:546.772000pt;}
.y11_c01071{bottom:570.674667pt;}
.y10_c01071{bottom:594.577333pt;}
.yf_c01071{bottom:618.480000pt;}
.ye_c01071{bottom:642.384000pt;}
.yd_c01071{bottom:666.286667pt;}
.yc_c01071{bottom:704.880000pt;}
.yb_c01071{bottom:728.782667pt;}
.ya_c01071{bottom:752.686667pt;}
.y9_c01071{bottom:776.589333pt;}
.y8_c01071{bottom:800.492000pt;}
.y7_c01071{bottom:839.165333pt;}
.y6_c01071{bottom:863.068000pt;}
.y5_c01071{bottom:886.970667pt;}
.y4_c01071{bottom:910.874667pt;}
.y3_c01071{bottom:949.546667pt;}
.y2_c01071{bottom:973.450667pt;}
.y1_c01071{bottom:1032.964000pt;}
.h4_c01071{height:25.143595pt;}
.h2_c01071{height:47.820000pt;}
.h3_c01071{height:51.870507pt;}
.h1_c01071{height:1123.333333pt;}
.h0_c01071{height:1123.653333pt;}
.w0_c01071{width:794.550667pt;}
.w1_c01071{width:794.666667pt;}
.x0_c01071{left:0.000000pt;}
.x1_c01071{left:113.385333pt;}
.x5_c01071{left:126.042667pt;}
.x4_c01071{left:142.078667pt;}
.x3_c01071{left:152.405333pt;}
.x2_c01071{left:175.817333pt;}
}





/* 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_7255149106e36097b0e238ec.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.001000;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_5903924cb80d212ceac46b42.woff2')format("woff");}.ff2_c01072{font-family:ff2_c01072;line-height:1.001000;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_c01072;src:url('chunks/assets/font_9d29049381c9b8235a266b44.woff2')format("woff");}.ff3_c01072{font-family:ff3_c01072;line-height:1.001000;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_c01072;src:url('chunks/assets/font_dcaedd32d9cbbb7c5db2c862.woff2')format("woff");}.ff4_c01072{font-family:ff4_c01072;line-height:0.697000;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_c01072;src:url('chunks/assets/font_3634b4c69ed61d5354d17823.woff2')format("woff");}.ff5_c01072{font-family:ff5_c01072;line-height:0.696000;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_c01072;src:url('chunks/assets/font_d897c1066cdc33d763ff27fd.woff2')format("woff");}.ff6_c01072{font-family:ff6_c01072;line-height:1.000000;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_c01072;src:url('chunks/assets/font_9f2036ea9ebfd55cae3ae326.woff2')format("woff");}.ff7_c01072{font-family:ff7_c01072;line-height:1.000000;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);}
.v2_c01072{vertical-align:-21.690000px;}
.v0_c01072{vertical-align:0.000000px;}
.v1_c01072{vertical-align:26.034000px;}
.ls0_c01072{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01072{word-spacing:-0.071730px;}
.ws11_c01072{word-spacing:-0.047820px;}
.ws1f_c01072{word-spacing:-0.041844px;}
.ws22_c01072{word-spacing:0.000000px;}
.ws21_c01072{word-spacing:9.086256px;}
.ws15_c01072{word-spacing:15.924060px;}
.ws19_c01072{word-spacing:16.497900px;}
.ws7_c01072{word-spacing:18.649800px;}
.ws14_c01072{word-spacing:19.151910px;}
.ws20_c01072{word-spacing:19.846296px;}
.ws16_c01072{word-spacing:20.227860px;}
.ws8_c01072{word-spacing:20.945160px;}
.ws6_c01072{word-spacing:21.232080px;}
.ws10_c01072{word-spacing:22.164570px;}
.ws4_c01072{word-spacing:22.523220px;}
.ws3_c01072{word-spacing:23.312250px;}
.ws17_c01072{word-spacing:23.383980px;}
.ws1a_c01072{word-spacing:23.957820px;}
.ws1c_c01072{word-spacing:24.459930px;}
.ws13_c01072{word-spacing:24.818580px;}
.ws1e_c01072{word-spacing:25.033770px;}
.ws2_c01072{word-spacing:25.535880px;}
.wsf_c01072{word-spacing:26.109720px;}
.ws1d_c01072{word-spacing:26.468370px;}
.wse_c01072{word-spacing:26.611830px;}
.ws0_c01072{word-spacing:26.827020px;}
.ws1b_c01072{word-spacing:26.898750px;}
.wsa_c01072{word-spacing:27.759510px;}
.wsb_c01072{word-spacing:29.337570px;}
.ws5_c01072{word-spacing:30.556980px;}
.ws18_c01072{word-spacing:33.067530px;}
.wsd_c01072{word-spacing:33.354450px;}
.ws12_c01072{word-spacing:33.713100px;}
.ws9_c01072{word-spacing:34.071750px;}
.wsc_c01072{word-spacing:34.215210px;}
._0_c01072{margin-left:-40.527450px;}
._4_c01072{margin-left:-36.869220px;}
._3_c01072{margin-left:-35.075970px;}
._6_c01072{margin-left:-33.210990px;}
._f_c01072{margin-left:-30.546558px;}
._c_c01072{margin-left:-28.692000px;}
._8_c01072{margin-left:-27.329130px;}
._7_c01072{margin-left:-7.890300px;}
._b_c01072{margin-left:-6.814350px;}
._a_c01072{margin-left:-3.873420px;}
._5_c01072{margin-left:-1.936710px;}
._2_c01072{width:1.864980px;}
._9_c01072{width:3.873420px;}
._e_c01072{width:21.384156px;}
._d_c01072{width:23.670900px;}
._1_c01072{width:464.743440px;}
.fc0_c01072{color:rgb(0,0,0);}
.fs2_c01072{font-size:41.844000px;}
.fs1_c01072{font-size:47.820000px;}
.fs3_c01072{font-size:59.778000px;}
.fs0_c01072{font-size:71.730000px;}
.y0_c01072{bottom:0.000000px;}
.y24_c01072{bottom:106.257000px;}
.y23_c01072{bottom:133.014000px;}
.y22_c01072{bottom:159.904500px;}
.y21_c01072{bottom:186.795000px;}
.y20_c01072{bottom:213.685500px;}
.y1f_c01072{bottom:240.577500px;}
.y1e_c01072{bottom:267.468000px;}
.y1d_c01072{bottom:294.358500px;}
.y1c_c01072{bottom:321.249000px;}
.y1b_c01072{bottom:348.141000px;}
.y1a_c01072{bottom:375.031500px;}
.y19_c01072{bottom:401.922000px;}
.y18_c01072{bottom:446.745000px;}
.y17_c01072{bottom:473.637000px;}
.y16_c01072{bottom:500.527500px;}
.y15_c01072{bottom:527.418000px;}
.y14_c01072{bottom:554.308500px;}
.y13_c01072{bottom:600.627000px;}
.y12_c01072{bottom:627.517500px;}
.y11_c01072{bottom:654.409500px;}
.y10_c01072{bottom:681.300000px;}
.yf_c01072{bottom:727.617000px;}
.ye_c01072{bottom:754.509000px;}
.yd_c01072{bottom:781.399500px;}
.yc_c01072{bottom:808.290000px;}
.yb_c01072{bottom:835.180500px;}
.ya_c01072{bottom:862.072500px;}
.y9_c01072{bottom:888.963000px;}
.y8_c01072{bottom:915.853500px;}
.y7_c01072{bottom:942.744000px;}
.y6_c01072{bottom:969.636000px;}
.y5_c01072{bottom:996.526500px;}
.y4_c01072{bottom:1023.417000px;}
.y3_c01072{bottom:1068.240000px;}
.y2_c01072{bottom:1095.132000px;}
.y1_c01072{bottom:1162.084500px;}
.h4_c01072{height:28.286544px;}
.h2_c01072{height:53.797500px;}
.h3_c01072{height:58.360320px;}
.h1_c01072{height:1263.750000px;}
.h0_c01072{height:1264.110000px;}
.w0_c01072{width:893.869500px;}
.w1_c01072{width:894.000000px;}
.x0_c01072{left:0.000000px;}
.x1_c01072{left:127.558500px;}
.x5_c01072{left:141.798000px;}
.x2_c01072{left:159.838500px;}
.x4_c01072{left:171.456000px;}
.x3_c01072{left:197.794500px;}
@media print{
.v2_c01072{vertical-align:-19.280000pt;}
.v0_c01072{vertical-align:0.000000pt;}
.v1_c01072{vertical-align:23.141333pt;}
.ls0_c01072{letter-spacing:0.000000pt;}
.ws1_c01072{word-spacing:-0.063760pt;}
.ws11_c01072{word-spacing:-0.042507pt;}
.ws1f_c01072{word-spacing:-0.037195pt;}
.ws22_c01072{word-spacing:0.000000pt;}
.ws21_c01072{word-spacing:8.076672pt;}
.ws15_c01072{word-spacing:14.154720pt;}
.ws19_c01072{word-spacing:14.664800pt;}
.ws7_c01072{word-spacing:16.577600pt;}
.ws14_c01072{word-spacing:17.023920pt;}
.ws20_c01072{word-spacing:17.641152pt;}
.ws16_c01072{word-spacing:17.980320pt;}
.ws8_c01072{word-spacing:18.617920pt;}
.ws6_c01072{word-spacing:18.872960pt;}
.ws10_c01072{word-spacing:19.701840pt;}
.ws4_c01072{word-spacing:20.020640pt;}
.ws3_c01072{word-spacing:20.722000pt;}
.ws17_c01072{word-spacing:20.785760pt;}
.ws1a_c01072{word-spacing:21.295840pt;}
.ws1c_c01072{word-spacing:21.742160pt;}
.ws13_c01072{word-spacing:22.060960pt;}
.ws1e_c01072{word-spacing:22.252240pt;}
.ws2_c01072{word-spacing:22.698560pt;}
.wsf_c01072{word-spacing:23.208640pt;}
.ws1d_c01072{word-spacing:23.527440pt;}
.wse_c01072{word-spacing:23.654960pt;}
.ws0_c01072{word-spacing:23.846240pt;}
.ws1b_c01072{word-spacing:23.910000pt;}
.wsa_c01072{word-spacing:24.675120pt;}
.wsb_c01072{word-spacing:26.077840pt;}
.ws5_c01072{word-spacing:27.161760pt;}
.ws18_c01072{word-spacing:29.393360pt;}
.wsd_c01072{word-spacing:29.648400pt;}
.ws12_c01072{word-spacing:29.967200pt;}
.ws9_c01072{word-spacing:30.286000pt;}
.wsc_c01072{word-spacing:30.413520pt;}
._0_c01072{margin-left:-36.024400pt;}
._4_c01072{margin-left:-32.772640pt;}
._3_c01072{margin-left:-31.178640pt;}
._6_c01072{margin-left:-29.520880pt;}
._f_c01072{margin-left:-27.152496pt;}
._c_c01072{margin-left:-25.504000pt;}
._8_c01072{margin-left:-24.292560pt;}
._7_c01072{margin-left:-7.013600pt;}
._b_c01072{margin-left:-6.057200pt;}
._a_c01072{margin-left:-3.443040pt;}
._5_c01072{margin-left:-1.721520pt;}
._2_c01072{width:1.657760pt;}
._9_c01072{width:3.443040pt;}
._e_c01072{width:19.008139pt;}
._d_c01072{width:21.040800pt;}
._1_c01072{width:413.105280pt;}
.fs2_c01072{font-size:37.194667pt;}
.fs1_c01072{font-size:42.506667pt;}
.fs3_c01072{font-size:53.136000pt;}
.fs0_c01072{font-size:63.760000pt;}
.y0_c01072{bottom:0.000000pt;}
.y24_c01072{bottom:94.450667pt;}
.y23_c01072{bottom:118.234667pt;}
.y22_c01072{bottom:142.137333pt;}
.y21_c01072{bottom:166.040000pt;}
.y20_c01072{bottom:189.942667pt;}
.y1f_c01072{bottom:213.846667pt;}
.y1e_c01072{bottom:237.749333pt;}
.y1d_c01072{bottom:261.652000pt;}
.y1c_c01072{bottom:285.554667pt;}
.y1b_c01072{bottom:309.458667pt;}
.y1a_c01072{bottom:333.361333pt;}
.y19_c01072{bottom:357.264000pt;}
.y18_c01072{bottom:397.106667pt;}
.y17_c01072{bottom:421.010667pt;}
.y16_c01072{bottom:444.913333pt;}
.y15_c01072{bottom:468.816000pt;}
.y14_c01072{bottom:492.718667pt;}
.y13_c01072{bottom:533.890667pt;}
.y12_c01072{bottom:557.793333pt;}
.y11_c01072{bottom:581.697333pt;}
.y10_c01072{bottom:605.600000pt;}
.yf_c01072{bottom:646.770667pt;}
.ye_c01072{bottom:670.674667pt;}
.yd_c01072{bottom:694.577333pt;}
.yc_c01072{bottom:718.480000pt;}
.yb_c01072{bottom:742.382667pt;}
.ya_c01072{bottom:766.286667pt;}
.y9_c01072{bottom:790.189333pt;}
.y8_c01072{bottom:814.092000pt;}
.y7_c01072{bottom:837.994667pt;}
.y6_c01072{bottom:861.898667pt;}
.y5_c01072{bottom:885.801333pt;}
.y4_c01072{bottom:909.704000pt;}
.y3_c01072{bottom:949.546667pt;}
.y2_c01072{bottom:973.450667pt;}
.y1_c01072{bottom:1032.964000pt;}
.h4_c01072{height:25.143595pt;}
.h2_c01072{height:47.820000pt;}
.h3_c01072{height:51.875840pt;}
.h1_c01072{height:1123.333333pt;}
.h0_c01072{height:1123.653333pt;}
.w0_c01072{width:794.550667pt;}
.w1_c01072{width:794.666667pt;}
.x0_c01072{left:0.000000pt;}
.x1_c01072{left:113.385333pt;}
.x5_c01072{left:126.042667pt;}
.x2_c01072{left:142.078667pt;}
.x4_c01072{left:152.405333pt;}
.x3_c01072{left:175.817333pt;}
}





/* 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_7255149106e36097b0e238ec.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.001000;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_be5d9adbafabbbe3660bdad1.woff2')format("woff");}.ff2_c01073{font-family:ff2_c01073;line-height:1.001000;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_d64144b5caddd7dfad6ca63c.woff2')format("woff");}.ff3_c01073{font-family:ff3_c01073;line-height:1.001000;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_c01073;src:url('chunks/assets/font_dcaedd32d9cbbb7c5db2c862.woff2')format("woff");}.ff4_c01073{font-family:ff4_c01073;line-height:0.697000;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_c01073;src:url('chunks/assets/font_3634b4c69ed61d5354d17823.woff2')format("woff");}.ff5_c01073{font-family:ff5_c01073;line-height:0.696000;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_c01073;src:url('chunks/assets/font_f5f14e6b8016d1c345d8844e.woff2')format("woff");}.ff6_c01073{font-family:ff6_c01073;line-height:1.000000;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_c01073;src:url('chunks/assets/font_9f2036ea9ebfd55cae3ae326.woff2')format("woff");}.ff7_c01073{font-family:ff7_c01073;line-height:1.000000;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);}
.v2_c01073{vertical-align:-21.690000px;}
.v0_c01073{vertical-align:0.000000px;}
.v1_c01073{vertical-align:26.028000px;}
.ls0_c01073{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01073{word-spacing:-0.071730px;}
.ws10_c01073{word-spacing:-0.047820px;}
.ws1e_c01073{word-spacing:-0.041844px;}
.ws22_c01073{word-spacing:0.000000px;}
.ws21_c01073{word-spacing:9.086256px;}
.ws7_c01073{word-spacing:18.864990px;}
.ws8_c01073{word-spacing:19.367100px;}
.ws13_c01073{word-spacing:19.510560px;}
.ws1f_c01073{word-spacing:19.846296px;}
.ws16_c01073{word-spacing:20.299590px;}
.ws15_c01073{word-spacing:20.873430px;}
.wse_c01073{word-spacing:21.016890px;}
.ws20_c01073{word-spacing:21.280968px;}
.ws2_c01073{word-spacing:21.375540px;}
.wsb_c01073{word-spacing:22.308030px;}
.ws1a_c01073{word-spacing:23.097060px;}
.wsa_c01073{word-spacing:23.168790px;}
.ws6_c01073{word-spacing:23.312250px;}
.wsc_c01073{word-spacing:23.383980px;}
.ws1d_c01073{word-spacing:23.742630px;}
.ws18_c01073{word-spacing:24.101280px;}
.ws14_c01073{word-spacing:24.173010px;}
.wsf_c01073{word-spacing:24.316470px;}
.ws9_c01073{word-spacing:24.603390px;}
.wsd_c01073{word-spacing:25.033770px;}
.ws17_c01073{word-spacing:25.535880px;}
.ws19_c01073{word-spacing:26.324910px;}
.ws0_c01073{word-spacing:26.827020px;}
.ws1c_c01073{word-spacing:26.898750px;}
.ws1b_c01073{word-spacing:28.405080px;}
.ws12_c01073{word-spacing:29.839680px;}
.ws5_c01073{word-spacing:30.700440px;}
.ws3_c01073{word-spacing:32.278500px;}
.ws4_c01073{word-spacing:33.282720px;}
.ws11_c01073{word-spacing:35.075970px;}
._0_c01073{margin-left:-40.527450px;}
._4_c01073{margin-left:-37.084410px;}
._5_c01073{margin-left:-35.075970px;}
._a_c01073{margin-left:-33.210990px;}
._11_c01073{margin-left:-30.889596px;}
._8_c01073{margin-left:-27.329130px;}
._10_c01073{margin-left:-23.257698px;}
._7_c01073{margin-left:-7.746840px;}
._e_c01073{margin-left:-5.810130px;}
._9_c01073{margin-left:-3.595500px;}
._2_c01073{margin-left:-1.936710px;}
._6_c01073{width:1.936710px;}
._b_c01073{width:3.559770px;}
._d_c01073{width:4.665030px;}
._c_c01073{width:18.578070px;}
._f_c01073{width:21.734190px;}
._3_c01073{width:23.383980px;}
._1_c01073{width:464.743440px;}
.fc0_c01073{color:rgb(0,0,0);}
.fs2_c01073{font-size:41.844000px;}
.fs1_c01073{font-size:47.820000px;}
.fs3_c01073{font-size:59.778000px;}
.fs0_c01073{font-size:71.730000px;}
.y0_c01073{bottom:0.000000px;}
.y24_c01073{bottom:98.865000px;}
.y23_c01073{bottom:116.797500px;}
.y22_c01073{bottom:143.313000px;}
.y21_c01073{bottom:170.205000px;}
.y20_c01073{bottom:197.095500px;}
.y1f_c01073{bottom:223.986000px;}
.y1e_c01073{bottom:250.876500px;}
.y1d_c01073{bottom:313.684500px;}
.y1c_c01073{bottom:340.575000px;}
.y1b_c01073{bottom:367.465500px;}
.y1a_c01073{bottom:394.357500px;}
.y19_c01073{bottom:421.248000px;}
.y18_c01073{bottom:448.138500px;}
.y17_c01073{bottom:493.494000px;}
.y16_c01073{bottom:520.384500px;}
.y15_c01073{bottom:547.276500px;}
.y14_c01073{bottom:574.167000px;}
.y13_c01073{bottom:601.057500px;}
.y12_c01073{bottom:627.948000px;}
.y11_c01073{bottom:654.838500px;}
.y10_c01073{bottom:700.195500px;}
.yf_c01073{bottom:727.086000px;}
.ye_c01073{bottom:753.976500px;}
.yd_c01073{bottom:780.867000px;}
.yc_c01073{bottom:826.222500px;}
.yb_c01073{bottom:853.114500px;}
.ya_c01073{bottom:880.005000px;}
.y9_c01073{bottom:906.895500px;}
.y8_c01073{bottom:933.786000px;}
.y7_c01073{bottom:960.678000px;}
.y6_c01073{bottom:987.568500px;}
.y5_c01073{bottom:1014.459000px;}
.y4_c01073{bottom:1041.349500px;}
.y3_c01073{bottom:1068.240000px;}
.y2_c01073{bottom:1095.132000px;}
.y1_c01073{bottom:1162.084500px;}
.h4_c01073{height:28.286544px;}
.h2_c01073{height:53.797500px;}
.h3_c01073{height:58.354320px;}
.h1_c01073{height:1263.750000px;}
.h0_c01073{height:1264.110000px;}
.w0_c01073{width:893.869500px;}
.w1_c01073{width:894.000000px;}
.x0_c01073{left:0.000000px;}
.x1_c01073{left:127.558500px;}
.x5_c01073{left:141.798000px;}
.x2_c01073{left:159.838500px;}
.x4_c01073{left:171.456000px;}
.x3_c01073{left:197.794500px;}
@media print{
.v2_c01073{vertical-align:-19.280000pt;}
.v0_c01073{vertical-align:0.000000pt;}
.v1_c01073{vertical-align:23.136000pt;}
.ls0_c01073{letter-spacing:0.000000pt;}
.ws1_c01073{word-spacing:-0.063760pt;}
.ws10_c01073{word-spacing:-0.042507pt;}
.ws1e_c01073{word-spacing:-0.037195pt;}
.ws22_c01073{word-spacing:0.000000pt;}
.ws21_c01073{word-spacing:8.076672pt;}
.ws7_c01073{word-spacing:16.768880pt;}
.ws8_c01073{word-spacing:17.215200pt;}
.ws13_c01073{word-spacing:17.342720pt;}
.ws1f_c01073{word-spacing:17.641152pt;}
.ws16_c01073{word-spacing:18.044080pt;}
.ws15_c01073{word-spacing:18.554160pt;}
.wse_c01073{word-spacing:18.681680pt;}
.ws20_c01073{word-spacing:18.916416pt;}
.ws2_c01073{word-spacing:19.000480pt;}
.wsb_c01073{word-spacing:19.829360pt;}
.ws1a_c01073{word-spacing:20.530720pt;}
.wsa_c01073{word-spacing:20.594480pt;}
.ws6_c01073{word-spacing:20.722000pt;}
.wsc_c01073{word-spacing:20.785760pt;}
.ws1d_c01073{word-spacing:21.104560pt;}
.ws18_c01073{word-spacing:21.423360pt;}
.ws14_c01073{word-spacing:21.487120pt;}
.wsf_c01073{word-spacing:21.614640pt;}
.ws9_c01073{word-spacing:21.869680pt;}
.wsd_c01073{word-spacing:22.252240pt;}
.ws17_c01073{word-spacing:22.698560pt;}
.ws19_c01073{word-spacing:23.399920pt;}
.ws0_c01073{word-spacing:23.846240pt;}
.ws1c_c01073{word-spacing:23.910000pt;}
.ws1b_c01073{word-spacing:25.248960pt;}
.ws12_c01073{word-spacing:26.524160pt;}
.ws5_c01073{word-spacing:27.289280pt;}
.ws3_c01073{word-spacing:28.692000pt;}
.ws4_c01073{word-spacing:29.584640pt;}
.ws11_c01073{word-spacing:31.178640pt;}
._0_c01073{margin-left:-36.024400pt;}
._4_c01073{margin-left:-32.963920pt;}
._5_c01073{margin-left:-31.178640pt;}
._a_c01073{margin-left:-29.520880pt;}
._11_c01073{margin-left:-27.457419pt;}
._8_c01073{margin-left:-24.292560pt;}
._10_c01073{margin-left:-20.673509pt;}
._7_c01073{margin-left:-6.886080pt;}
._e_c01073{margin-left:-5.164560pt;}
._9_c01073{margin-left:-3.196000pt;}
._2_c01073{margin-left:-1.721520pt;}
._6_c01073{width:1.721520pt;}
._b_c01073{width:3.164240pt;}
._d_c01073{width:4.146693pt;}
._c_c01073{width:16.513840pt;}
._f_c01073{width:19.319280pt;}
._3_c01073{width:20.785760pt;}
._1_c01073{width:413.105280pt;}
.fs2_c01073{font-size:37.194667pt;}
.fs1_c01073{font-size:42.506667pt;}
.fs3_c01073{font-size:53.136000pt;}
.fs0_c01073{font-size:63.760000pt;}
.y0_c01073{bottom:0.000000pt;}
.y24_c01073{bottom:87.880000pt;}
.y23_c01073{bottom:103.820000pt;}
.y22_c01073{bottom:127.389333pt;}
.y21_c01073{bottom:151.293333pt;}
.y20_c01073{bottom:175.196000pt;}
.y1f_c01073{bottom:199.098667pt;}
.y1e_c01073{bottom:223.001333pt;}
.y1d_c01073{bottom:278.830667pt;}
.y1c_c01073{bottom:302.733333pt;}
.y1b_c01073{bottom:326.636000pt;}
.y1a_c01073{bottom:350.540000pt;}
.y19_c01073{bottom:374.442667pt;}
.y18_c01073{bottom:398.345333pt;}
.y17_c01073{bottom:438.661333pt;}
.y16_c01073{bottom:462.564000pt;}
.y15_c01073{bottom:486.468000pt;}
.y14_c01073{bottom:510.370667pt;}
.y13_c01073{bottom:534.273333pt;}
.y12_c01073{bottom:558.176000pt;}
.y11_c01073{bottom:582.078667pt;}
.y10_c01073{bottom:622.396000pt;}
.yf_c01073{bottom:646.298667pt;}
.ye_c01073{bottom:670.201333pt;}
.yd_c01073{bottom:694.104000pt;}
.yc_c01073{bottom:734.420000pt;}
.yb_c01073{bottom:758.324000pt;}
.ya_c01073{bottom:782.226667pt;}
.y9_c01073{bottom:806.129333pt;}
.y8_c01073{bottom:830.032000pt;}
.y7_c01073{bottom:853.936000pt;}
.y6_c01073{bottom:877.838667pt;}
.y5_c01073{bottom:901.741333pt;}
.y4_c01073{bottom:925.644000pt;}
.y3_c01073{bottom:949.546667pt;}
.y2_c01073{bottom:973.450667pt;}
.y1_c01073{bottom:1032.964000pt;}
.h4_c01073{height:25.143595pt;}
.h2_c01073{height:47.820000pt;}
.h3_c01073{height:51.870507pt;}
.h1_c01073{height:1123.333333pt;}
.h0_c01073{height:1123.653333pt;}
.w0_c01073{width:794.550667pt;}
.w1_c01073{width:794.666667pt;}
.x0_c01073{left:0.000000pt;}
.x1_c01073{left:113.385333pt;}
.x5_c01073{left:126.042667pt;}
.x2_c01073{left:142.078667pt;}
.x4_c01073{left:152.405333pt;}
.x3_c01073{left:175.817333pt;}
}





/* 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_b6d44737851eaae1de4d4165.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.001000;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_9fb0554a8b047110f56c3e93.woff2')format("woff");}.ff2_c01074{font-family:ff2_c01074;line-height:1.001000;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_a9511bec72c34da71d441cfb.woff2')format("woff");}.ff3_c01074{font-family:ff3_c01074;line-height:1.001000;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_c01074;src:url('chunks/assets/font_1d89d775663af5ba120ae445.woff2')format("woff");}.ff4_c01074{font-family:ff4_c01074;line-height:0.697000;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_c01074;src:url('chunks/assets/font_228ca176fc9083b77ba7d34f.woff2')format("woff");}.ff5_c01074{font-family:ff5_c01074;line-height:1.000000;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_c01074;src:url('chunks/assets/font_a2d0d80e39500a4b0b434746.woff2')format("woff");}.ff6_c01074{font-family:ff6_c01074;line-height:0.696000;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_c01074;src:url('chunks/assets/font_477d4fc5716d2a3d5e748bc8.woff2')format("woff");}.ff7_c01074{font-family:ff7_c01074;line-height:1.000000;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_c01074;src:url('chunks/assets/font_08201e7cc8c41bb6fb5d0836.woff2')format("woff");}.ff8_c01074{font-family:ff8_c01074;line-height:1.000000;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);}
.v3_c01074{vertical-align:-21.690000px;}
.v0_c01074{vertical-align:0.000000px;}
.v2_c01074{vertical-align:5.976000px;}
.v4_c01074{vertical-align:15.114000px;}
.v1_c01074{vertical-align:26.034000px;}
.ls0_c01074{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01074{word-spacing:-0.071730px;}
.ws21_c01074{word-spacing:-0.059778px;}
.ws7_c01074{word-spacing:-0.047820px;}
.ws19_c01074{word-spacing:-0.041844px;}
.ws2a_c01074{word-spacing:0.000000px;}
.ws1b_c01074{word-spacing:9.086256px;}
.ws11_c01074{word-spacing:15.493680px;}
.ws17_c01074{word-spacing:16.354440px;}
.ws23_c01074{word-spacing:16.618284px;}
.ws9_c01074{word-spacing:18.004230px;}
.ws24_c01074{word-spacing:18.351846px;}
.ws1c_c01074{word-spacing:18.710514px;}
.ws12_c01074{word-spacing:19.582290px;}
.ws1a_c01074{word-spacing:19.846296px;}
.ws18_c01074{word-spacing:20.227860px;}
.ws26_c01074{word-spacing:20.264742px;}
.wsc_c01074{word-spacing:20.299590px;}
.ws2_c01074{word-spacing:20.945160px;}
.ws29_c01074{word-spacing:21.280968px;}
.wse_c01074{word-spacing:21.447270px;}
.ws25_c01074{word-spacing:21.699414px;}
.ws3_c01074{word-spacing:23.312250px;}
.ws16_c01074{word-spacing:23.383980px;}
.ws14_c01074{word-spacing:25.248960px;}
.ws1d_c01074{word-spacing:26.003430px;}
.wsd_c01074{word-spacing:26.253180px;}
.ws27_c01074{word-spacing:26.601210px;}
.ws0_c01074{word-spacing:26.827020px;}
.ws1e_c01074{word-spacing:26.959878px;}
.ws1f_c01074{word-spacing:27.019656px;}
.ws13_c01074{word-spacing:27.042210px;}
.ws15_c01074{word-spacing:27.472590px;}
.ws28_c01074{word-spacing:27.497880px;}
.wsb_c01074{word-spacing:27.831240px;}
.ws20_c01074{word-spacing:27.916326px;}
.ws6_c01074{word-spacing:30.413520px;}
.ws10_c01074{word-spacing:30.843900px;}
.ws22_c01074{word-spacing:30.965004px;}
.ws4_c01074{word-spacing:31.561200px;}
.ws8_c01074{word-spacing:33.067530px;}
.wsf_c01074{word-spacing:33.282720px;}
.wsa_c01074{word-spacing:33.426180px;}
.ws5_c01074{word-spacing:33.569640px;}
._0_c01074{margin-left:-40.527450px;}
._b_c01074{margin-left:-37.227870px;}
._6_c01074{margin-left:-35.219430px;}
._5_c01074{margin-left:-33.210990px;}
._16_c01074{margin-left:-31.562784px;}
._12_c01074{margin-left:-30.546558px;}
._a_c01074{margin-left:-28.692000px;}
._e_c01074{margin-left:-27.185670px;}
._13_c01074{margin-left:-23.865444px;}
._9_c01074{margin-left:-7.244730px;}
._10_c01074{margin-left:-5.379750px;}
._3_c01074{margin-left:-4.160340px;}
._8_c01074{margin-left:-3.012660px;}
._2_c01074{margin-left:-1.936710px;}
._4_c01074{width:1.936710px;}
._d_c01074{width:3.011160px;}
._c_c01074{width:4.729500px;}
._17_c01074{width:5.778858px;}
._14_c01074{width:7.948674px;}
._7_c01074{width:10.759500px;}
._15_c01074{width:18.351846px;}
._11_c01074{width:21.958596px;}
._f_c01074{width:79.333380px;}
._1_c01074{width:464.743440px;}
.fc0_c01074{color:rgb(0,0,0);}
.fs2_c01074{font-size:41.844000px;}
.fs1_c01074{font-size:47.820000px;}
.fs3_c01074{font-size:59.778000px;}
.fs0_c01074{font-size:71.730000px;}
.y0_c01074{bottom:0.000000px;}
.y26_c01074{bottom:126.421500px;}
.y25_c01074{bottom:144.354000px;}
.y24_c01074{bottom:162.288000px;}
.y23_c01074{bottom:180.220500px;}
.y22_c01074{bottom:203.575500px;}
.y21_c01074{bottom:216.085500px;}
.y20_c01074{bottom:234.018000px;}
.y1f_c01074{bottom:251.950500px;}
.y1e_c01074{bottom:275.307000px;}
.y1d_c01074{bottom:293.239500px;}
.y1c_c01074{bottom:319.996500px;}
.y1b_c01074{bottom:346.887000px;}
.y1a_c01074{bottom:373.777500px;}
.y19_c01074{bottom:400.668000px;}
.y18_c01074{bottom:427.560000px;}
.y17_c01074{bottom:462.171000px;}
.y16_c01074{bottom:518.460000px;}
.y15_c01074{bottom:545.350500px;}
.y14_c01074{bottom:572.242500px;}
.y13_c01074{bottom:599.133000px;}
.y12_c01074{bottom:626.023500px;}
.y11_c01074{bottom:652.914000px;}
.y10_c01074{bottom:679.806000px;}
.yf_c01074{bottom:706.696500px;}
.ye_c01074{bottom:733.587000px;}
.yd_c01074{bottom:760.477500px;}
.yc_c01074{bottom:787.368000px;}
.yb_c01074{bottom:814.260000px;}
.ya_c01074{bottom:841.150500px;}
.y9_c01074{bottom:868.041000px;}
.y8_c01074{bottom:894.931500px;}
.y7_c01074{bottom:941.250000px;}
.y6_c01074{bottom:968.140500px;}
.y5_c01074{bottom:995.032500px;}
.y4_c01074{bottom:1021.923000px;}
.y3_c01074{bottom:1068.240000px;}
.y2_c01074{bottom:1095.132000px;}
.y1_c01074{bottom:1162.084500px;}
.h6_c01074{height:28.286544px;}
.h8_c01074{height:44.833500px;}
.h2_c01074{height:53.797500px;}
.h5_c01074{height:58.354320px;}
.h3_c01074{height:58.360320px;}
.h4_c01074{height:59.773500px;}
.h9_c01074{height:59.941500px;}
.h7_c01074{height:59.947500px;}
.h1_c01074{height:1263.750000px;}
.h0_c01074{height:1264.110000px;}
.w0_c01074{width:893.869500px;}
.w1_c01074{width:894.000000px;}
.x0_c01074{left:0.000000px;}
.x1_c01074{left:127.558500px;}
.x6_c01074{left:141.798000px;}
.x2_c01074{left:159.838500px;}
.x4_c01074{left:171.456000px;}
.x8_c01074{left:184.636500px;}
.x3_c01074{left:197.794500px;}
.x9_c01074{left:216.184500px;}
.x7_c01074{left:288.936000px;}
.x5_c01074{left:552.552000px;}
@media print{
.v3_c01074{vertical-align:-19.280000pt;}
.v0_c01074{vertical-align:0.000000pt;}
.v2_c01074{vertical-align:5.312000pt;}
.v4_c01074{vertical-align:13.434667pt;}
.v1_c01074{vertical-align:23.141333pt;}
.ls0_c01074{letter-spacing:0.000000pt;}
.ws1_c01074{word-spacing:-0.063760pt;}
.ws21_c01074{word-spacing:-0.053136pt;}
.ws7_c01074{word-spacing:-0.042507pt;}
.ws19_c01074{word-spacing:-0.037195pt;}
.ws2a_c01074{word-spacing:0.000000pt;}
.ws1b_c01074{word-spacing:8.076672pt;}
.ws11_c01074{word-spacing:13.772160pt;}
.ws17_c01074{word-spacing:14.537280pt;}
.ws23_c01074{word-spacing:14.771808pt;}
.ws9_c01074{word-spacing:16.003760pt;}
.ws24_c01074{word-spacing:16.312752pt;}
.ws1c_c01074{word-spacing:16.631568pt;}
.ws12_c01074{word-spacing:17.406480pt;}
.ws1a_c01074{word-spacing:17.641152pt;}
.ws18_c01074{word-spacing:17.980320pt;}
.ws26_c01074{word-spacing:18.013104pt;}
.wsc_c01074{word-spacing:18.044080pt;}
.ws2_c01074{word-spacing:18.617920pt;}
.ws29_c01074{word-spacing:18.916416pt;}
.wse_c01074{word-spacing:19.064240pt;}
.ws25_c01074{word-spacing:19.288368pt;}
.ws3_c01074{word-spacing:20.722000pt;}
.ws16_c01074{word-spacing:20.785760pt;}
.ws14_c01074{word-spacing:22.443520pt;}
.ws1d_c01074{word-spacing:23.114160pt;}
.wsd_c01074{word-spacing:23.336160pt;}
.ws27_c01074{word-spacing:23.645520pt;}
.ws0_c01074{word-spacing:23.846240pt;}
.ws1e_c01074{word-spacing:23.964336pt;}
.ws1f_c01074{word-spacing:24.017472pt;}
.ws13_c01074{word-spacing:24.037520pt;}
.ws15_c01074{word-spacing:24.420080pt;}
.ws28_c01074{word-spacing:24.442560pt;}
.wsb_c01074{word-spacing:24.738880pt;}
.ws20_c01074{word-spacing:24.814512pt;}
.ws6_c01074{word-spacing:27.034240pt;}
.ws10_c01074{word-spacing:27.416800pt;}
.ws22_c01074{word-spacing:27.524448pt;}
.ws4_c01074{word-spacing:28.054400pt;}
.ws8_c01074{word-spacing:29.393360pt;}
.wsf_c01074{word-spacing:29.584640pt;}
.wsa_c01074{word-spacing:29.712160pt;}
.ws5_c01074{word-spacing:29.839680pt;}
._0_c01074{margin-left:-36.024400pt;}
._b_c01074{margin-left:-33.091440pt;}
._6_c01074{margin-left:-31.306160pt;}
._5_c01074{margin-left:-29.520880pt;}
._16_c01074{margin-left:-28.055808pt;}
._12_c01074{margin-left:-27.152496pt;}
._a_c01074{margin-left:-25.504000pt;}
._e_c01074{margin-left:-24.165040pt;}
._13_c01074{margin-left:-21.213728pt;}
._9_c01074{margin-left:-6.439760pt;}
._10_c01074{margin-left:-4.782000pt;}
._3_c01074{margin-left:-3.698080pt;}
._8_c01074{margin-left:-2.677920pt;}
._2_c01074{margin-left:-1.721520pt;}
._4_c01074{width:1.721520pt;}
._d_c01074{width:2.676587pt;}
._c_c01074{width:4.204000pt;}
._17_c01074{width:5.136763pt;}
._14_c01074{width:7.065488pt;}
._7_c01074{width:9.564000pt;}
._15_c01074{width:16.312752pt;}
._11_c01074{width:19.518752pt;}
._f_c01074{width:70.518560pt;}
._1_c01074{width:413.105280pt;}
.fs2_c01074{font-size:37.194667pt;}
.fs1_c01074{font-size:42.506667pt;}
.fs3_c01074{font-size:53.136000pt;}
.fs0_c01074{font-size:63.760000pt;}
.y0_c01074{bottom:0.000000pt;}
.y26_c01074{bottom:112.374667pt;}
.y25_c01074{bottom:128.314667pt;}
.y24_c01074{bottom:144.256000pt;}
.y23_c01074{bottom:160.196000pt;}
.y22_c01074{bottom:180.956000pt;}
.y21_c01074{bottom:192.076000pt;}
.y20_c01074{bottom:208.016000pt;}
.y1f_c01074{bottom:223.956000pt;}
.y1e_c01074{bottom:244.717333pt;}
.y1d_c01074{bottom:260.657333pt;}
.y1c_c01074{bottom:284.441333pt;}
.y1b_c01074{bottom:308.344000pt;}
.y1a_c01074{bottom:332.246667pt;}
.y19_c01074{bottom:356.149333pt;}
.y18_c01074{bottom:380.053333pt;}
.y17_c01074{bottom:410.818667pt;}
.y16_c01074{bottom:460.853333pt;}
.y15_c01074{bottom:484.756000pt;}
.y14_c01074{bottom:508.660000pt;}
.y13_c01074{bottom:532.562667pt;}
.y12_c01074{bottom:556.465333pt;}
.y11_c01074{bottom:580.368000pt;}
.y10_c01074{bottom:604.272000pt;}
.yf_c01074{bottom:628.174667pt;}
.ye_c01074{bottom:652.077333pt;}
.yd_c01074{bottom:675.980000pt;}
.yc_c01074{bottom:699.882667pt;}
.yb_c01074{bottom:723.786667pt;}
.ya_c01074{bottom:747.689333pt;}
.y9_c01074{bottom:771.592000pt;}
.y8_c01074{bottom:795.494667pt;}
.y7_c01074{bottom:836.666667pt;}
.y6_c01074{bottom:860.569333pt;}
.y5_c01074{bottom:884.473333pt;}
.y4_c01074{bottom:908.376000pt;}
.y3_c01074{bottom:949.546667pt;}
.y2_c01074{bottom:973.450667pt;}
.y1_c01074{bottom:1032.964000pt;}
.h6_c01074{height:25.143595pt;}
.h8_c01074{height:39.852000pt;}
.h2_c01074{height:47.820000pt;}
.h5_c01074{height:51.870507pt;}
.h3_c01074{height:51.875840pt;}
.h4_c01074{height:53.132000pt;}
.h9_c01074{height:53.281333pt;}
.h7_c01074{height:53.286667pt;}
.h1_c01074{height:1123.333333pt;}
.h0_c01074{height:1123.653333pt;}
.w0_c01074{width:794.550667pt;}
.w1_c01074{width:794.666667pt;}
.x0_c01074{left:0.000000pt;}
.x1_c01074{left:113.385333pt;}
.x6_c01074{left:126.042667pt;}
.x2_c01074{left:142.078667pt;}
.x4_c01074{left:152.405333pt;}
.x8_c01074{left:164.121333pt;}
.x3_c01074{left:175.817333pt;}
.x9_c01074{left:192.164000pt;}
.x7_c01074{left:256.832000pt;}
.x5_c01074{left:491.157333pt;}
}





/* 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_e44d1d92c021004dea13532d.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.001000;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_5543df067cf475f9fe8db445.woff2')format("woff");}.ff2_c01075{font-family:ff2_c01075;line-height:1.001000;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_effbb7eba6b022ebb915c9a5.woff2')format("woff");}.ff3_c01075{font-family:ff3_c01075;line-height:0.697000;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_c01075;src:url('chunks/assets/font_910ca49c3a8133d0270ddf89.woff2')format("woff");}.ff4_c01075{font-family:ff4_c01075;line-height:1.001000;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_c01075;src:url('chunks/assets/font_ead0346d39707ade6875733b.woff2')format("woff");}.ff5_c01075{font-family:ff5_c01075;line-height:0.696000;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_c01075;src:url('chunks/assets/font_68b747c66fe1af9b0d5aa4c8.woff2')format("woff");}.ff6_c01075{font-family:ff6_c01075;line-height:1.000000;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);}
.v2_c01075{vertical-align:-21.690000px;}
.v0_c01075{vertical-align:0.000000px;}
.v1_c01075{vertical-align:26.028000px;}
.ls0_c01075{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01075{word-spacing:-0.071730px;}
.ws9_c01075{word-spacing:-0.047820px;}
.ws20_c01075{word-spacing:-0.041844px;}
.ws23_c01075{word-spacing:0.000000px;}
.ws14_c01075{word-spacing:15.493680px;}
.ws13_c01075{word-spacing:15.565410px;}
.wsa_c01075{word-spacing:17.143470px;}
.ws22_c01075{word-spacing:19.846296px;}
.wse_c01075{word-spacing:20.156130px;}
.ws11_c01075{word-spacing:20.514780px;}
.ws1f_c01075{word-spacing:21.519000px;}
.ws18_c01075{word-spacing:22.738410px;}
.ws1a_c01075{word-spacing:23.240520px;}
.ws8_c01075{word-spacing:23.312250px;}
.wsc_c01075{word-spacing:23.383980px;}
.ws10_c01075{word-spacing:24.244740px;}
.ws12_c01075{word-spacing:24.675120px;}
.wsb_c01075{word-spacing:25.033770px;}
.ws6_c01075{word-spacing:25.392420px;}
.ws1e_c01075{word-spacing:25.607610px;}
.ws3_c01075{word-spacing:26.037990px;}
.ws17_c01075{word-spacing:26.324910px;}
.ws1d_c01075{word-spacing:26.683560px;}
.ws0_c01075{word-spacing:26.827020px;}
.ws5_c01075{word-spacing:27.687780px;}
.ws2_c01075{word-spacing:27.831240px;}
.wsd_c01075{word-spacing:28.046430px;}
.ws1c_c01075{word-spacing:28.118160px;}
.ws7_c01075{word-spacing:28.189890px;}
.ws21_c01075{word-spacing:28.633662px;}
.ws15_c01075{word-spacing:29.265840px;}
.wsf_c01075{word-spacing:29.552760px;}
.ws1b_c01075{word-spacing:29.911410px;}
.ws19_c01075{word-spacing:30.126600px;}
.ws16_c01075{word-spacing:32.995800px;}
.ws4_c01075{word-spacing:34.645590px;}
._0_c01075{margin-left:-40.527450px;}
._9_c01075{margin-left:-37.443060px;}
._4_c01075{margin-left:-35.219430px;}
._8_c01075{margin-left:-32.995800px;}
._12_c01075{margin-left:-30.237192px;}
._f_c01075{margin-left:-28.959594px;}
._6_c01075{margin-left:-27.400860px;}
._10_c01075{margin-left:-23.576760px;}
._5_c01075{margin-left:-7.818570px;}
._d_c01075{margin-left:-6.312240px;}
._a_c01075{margin-left:-3.945150px;}
._2_c01075{margin-left:-2.080170px;}
._11_c01075{width:1.051884px;}
._3_c01075{width:2.151900px;}
._7_c01075{width:3.801690px;}
._b_c01075{width:21.519000px;}
._e_c01075{width:23.455710px;}
._c_c01075{width:32.834970px;}
._1_c01075{width:464.743440px;}
.fc0_c01075{color:rgb(0,0,0);}
.fs2_c01075{font-size:41.844000px;}
.fs1_c01075{font-size:47.820000px;}
.fs3_c01075{font-size:59.778000px;}
.fs0_c01075{font-size:71.730000px;}
.y0_c01075{bottom:0.000000px;}
.y26_c01075{bottom:112.798500px;}
.y25_c01075{bottom:136.153500px;}
.y24_c01075{bottom:162.910500px;}
.y23_c01075{bottom:189.801000px;}
.y22_c01075{bottom:216.691500px;}
.y21_c01075{bottom:243.582000px;}
.y20_c01075{bottom:270.472500px;}
.y1f_c01075{bottom:297.364500px;}
.y1e_c01075{bottom:324.255000px;}
.y1d_c01075{bottom:351.145500px;}
.y1c_c01075{bottom:378.036000px;}
.y1b_c01075{bottom:422.860500px;}
.y1a_c01075{bottom:449.751000px;}
.y19_c01075{bottom:476.641500px;}
.y18_c01075{bottom:503.533500px;}
.y17_c01075{bottom:530.424000px;}
.y16_c01075{bottom:557.314500px;}
.y15_c01075{bottom:584.205000px;}
.y14_c01075{bottom:611.095500px;}
.y13_c01075{bottom:637.987500px;}
.y12_c01075{bottom:664.878000px;}
.y11_c01075{bottom:691.768500px;}
.y10_c01075{bottom:718.659000px;}
.yf_c01075{bottom:745.551000px;}
.ye_c01075{bottom:772.441500px;}
.yd_c01075{bottom:799.332000px;}
.yc_c01075{bottom:826.222500px;}
.yb_c01075{bottom:853.114500px;}
.ya_c01075{bottom:880.005000px;}
.y9_c01075{bottom:906.895500px;}
.y8_c01075{bottom:933.786000px;}
.y7_c01075{bottom:960.678000px;}
.y6_c01075{bottom:987.568500px;}
.y5_c01075{bottom:1014.459000px;}
.y4_c01075{bottom:1041.349500px;}
.y3_c01075{bottom:1068.240000px;}
.y2_c01075{bottom:1095.132000px;}
.y1_c01075{bottom:1162.084500px;}
.h4_c01075{height:28.286544px;}
.h5_c01075{height:44.833500px;}
.h2_c01075{height:53.797500px;}
.h3_c01075{height:58.354320px;}
.h1_c01075{height:1263.750000px;}
.h0_c01075{height:1264.110000px;}
.w0_c01075{width:893.869500px;}
.w1_c01075{width:894.000000px;}
.x0_c01075{left:0.000000px;}
.x1_c01075{left:127.558500px;}
.x3_c01075{left:141.798000px;}
.x2_c01075{left:159.838500px;}
@media print{
.v2_c01075{vertical-align:-19.280000pt;}
.v0_c01075{vertical-align:0.000000pt;}
.v1_c01075{vertical-align:23.136000pt;}
.ls0_c01075{letter-spacing:0.000000pt;}
.ws1_c01075{word-spacing:-0.063760pt;}
.ws9_c01075{word-spacing:-0.042507pt;}
.ws20_c01075{word-spacing:-0.037195pt;}
.ws23_c01075{word-spacing:0.000000pt;}
.ws14_c01075{word-spacing:13.772160pt;}
.ws13_c01075{word-spacing:13.835920pt;}
.wsa_c01075{word-spacing:15.238640pt;}
.ws22_c01075{word-spacing:17.641152pt;}
.wse_c01075{word-spacing:17.916560pt;}
.ws11_c01075{word-spacing:18.235360pt;}
.ws1f_c01075{word-spacing:19.128000pt;}
.ws18_c01075{word-spacing:20.211920pt;}
.ws1a_c01075{word-spacing:20.658240pt;}
.ws8_c01075{word-spacing:20.722000pt;}
.wsc_c01075{word-spacing:20.785760pt;}
.ws10_c01075{word-spacing:21.550880pt;}
.ws12_c01075{word-spacing:21.933440pt;}
.wsb_c01075{word-spacing:22.252240pt;}
.ws6_c01075{word-spacing:22.571040pt;}
.ws1e_c01075{word-spacing:22.762320pt;}
.ws3_c01075{word-spacing:23.144880pt;}
.ws17_c01075{word-spacing:23.399920pt;}
.ws1d_c01075{word-spacing:23.718720pt;}
.ws0_c01075{word-spacing:23.846240pt;}
.ws5_c01075{word-spacing:24.611360pt;}
.ws2_c01075{word-spacing:24.738880pt;}
.wsd_c01075{word-spacing:24.930160pt;}
.ws1c_c01075{word-spacing:24.993920pt;}
.ws7_c01075{word-spacing:25.057680pt;}
.ws21_c01075{word-spacing:25.452144pt;}
.ws15_c01075{word-spacing:26.014080pt;}
.wsf_c01075{word-spacing:26.269120pt;}
.ws1b_c01075{word-spacing:26.587920pt;}
.ws19_c01075{word-spacing:26.779200pt;}
.ws16_c01075{word-spacing:29.329600pt;}
.ws4_c01075{word-spacing:30.796080pt;}
._0_c01075{margin-left:-36.024400pt;}
._9_c01075{margin-left:-33.282720pt;}
._4_c01075{margin-left:-31.306160pt;}
._8_c01075{margin-left:-29.329600pt;}
._12_c01075{margin-left:-26.877504pt;}
._f_c01075{margin-left:-25.741861pt;}
._6_c01075{margin-left:-24.356320pt;}
._10_c01075{margin-left:-20.957120pt;}
._5_c01075{margin-left:-6.949840pt;}
._d_c01075{margin-left:-5.610880pt;}
._a_c01075{margin-left:-3.506800pt;}
._2_c01075{margin-left:-1.849040pt;}
._11_c01075{width:0.935008pt;}
._3_c01075{width:1.912800pt;}
._7_c01075{width:3.379280pt;}
._b_c01075{width:19.128000pt;}
._e_c01075{width:20.849520pt;}
._c_c01075{width:29.186640pt;}
._1_c01075{width:413.105280pt;}
.fs2_c01075{font-size:37.194667pt;}
.fs1_c01075{font-size:42.506667pt;}
.fs3_c01075{font-size:53.136000pt;}
.fs0_c01075{font-size:63.760000pt;}
.y0_c01075{bottom:0.000000pt;}
.y26_c01075{bottom:100.265333pt;}
.y25_c01075{bottom:121.025333pt;}
.y24_c01075{bottom:144.809333pt;}
.y23_c01075{bottom:168.712000pt;}
.y22_c01075{bottom:192.614667pt;}
.y21_c01075{bottom:216.517333pt;}
.y20_c01075{bottom:240.420000pt;}
.y1f_c01075{bottom:264.324000pt;}
.y1e_c01075{bottom:288.226667pt;}
.y1d_c01075{bottom:312.129333pt;}
.y1c_c01075{bottom:336.032000pt;}
.y1b_c01075{bottom:375.876000pt;}
.y1a_c01075{bottom:399.778667pt;}
.y19_c01075{bottom:423.681333pt;}
.y18_c01075{bottom:447.585333pt;}
.y17_c01075{bottom:471.488000pt;}
.y16_c01075{bottom:495.390667pt;}
.y15_c01075{bottom:519.293333pt;}
.y14_c01075{bottom:543.196000pt;}
.y13_c01075{bottom:567.100000pt;}
.y12_c01075{bottom:591.002667pt;}
.y11_c01075{bottom:614.905333pt;}
.y10_c01075{bottom:638.808000pt;}
.yf_c01075{bottom:662.712000pt;}
.ye_c01075{bottom:686.614667pt;}
.yd_c01075{bottom:710.517333pt;}
.yc_c01075{bottom:734.420000pt;}
.yb_c01075{bottom:758.324000pt;}
.ya_c01075{bottom:782.226667pt;}
.y9_c01075{bottom:806.129333pt;}
.y8_c01075{bottom:830.032000pt;}
.y7_c01075{bottom:853.936000pt;}
.y6_c01075{bottom:877.838667pt;}
.y5_c01075{bottom:901.741333pt;}
.y4_c01075{bottom:925.644000pt;}
.y3_c01075{bottom:949.546667pt;}
.y2_c01075{bottom:973.450667pt;}
.y1_c01075{bottom:1032.964000pt;}
.h4_c01075{height:25.143595pt;}
.h5_c01075{height:39.852000pt;}
.h2_c01075{height:47.820000pt;}
.h3_c01075{height:51.870507pt;}
.h1_c01075{height:1123.333333pt;}
.h0_c01075{height:1123.653333pt;}
.w0_c01075{width:794.550667pt;}
.w1_c01075{width:794.666667pt;}
.x0_c01075{left:0.000000pt;}
.x1_c01075{left:113.385333pt;}
.x3_c01075{left:126.042667pt;}
.x2_c01075{left:142.078667pt;}
}





/* 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_e3e0c039453be7b9ccf4ccc5.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.001000;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_0227db7a8209484fa61265ae.woff2')format("woff");}.ff2_c01076{font-family:ff2_c01076;line-height:1.001000;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_15d24be0b81393a9840fd319.woff2')format("woff");}.ff3_c01076{font-family:ff3_c01076;line-height:1.001000;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_c01076;src:url('chunks/assets/font_23e3578248dc2558d270dbbb.woff2')format("woff");}.ff4_c01076{font-family:ff4_c01076;line-height:0.697000;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_c01076;src:url('chunks/assets/font_8c072eb4b89f5f69531dcb3e.woff2')format("woff");}.ff5_c01076{font-family:ff5_c01076;line-height:0.696000;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_c01076;src:url('chunks/assets/font_ed4eb8b57f9d82c8a6441c04.woff2')format("woff");}.ff6_c01076{font-family:ff6_c01076;line-height:1.000000;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);}
.v2_c01076{vertical-align:-21.696000px;}
.v0_c01076{vertical-align:0.000000px;}
.v1_c01076{vertical-align:26.034000px;}
.ls0_c01076{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01076{word-spacing:-0.071730px;}
.wsf_c01076{word-spacing:-0.047820px;}
.ws1f_c01076{word-spacing:-0.041844px;}
.ws22_c01076{word-spacing:0.000000px;}
.ws15_c01076{word-spacing:17.358660px;}
.ws14_c01076{word-spacing:17.573850px;}
.ws20_c01076{word-spacing:19.069182px;}
.ws21_c01076{word-spacing:19.846296px;}
.ws13_c01076{word-spacing:21.949380px;}
.ws10_c01076{word-spacing:22.236300px;}
.ws4_c01076{word-spacing:22.594950px;}
.ws7_c01076{word-spacing:23.312250px;}
.ws3_c01076{word-spacing:23.383980px;}
.ws1c_c01076{word-spacing:23.527440px;}
.wse_c01076{word-spacing:24.603390px;}
.wsc_c01076{word-spacing:24.609660px;}
.ws18_c01076{word-spacing:25.033770px;}
.ws16_c01076{word-spacing:25.248960px;}
.ws8_c01076{word-spacing:25.392420px;}
.ws5_c01076{word-spacing:25.966260px;}
.wsd_c01076{word-spacing:26.253180px;}
.ws0_c01076{word-spacing:26.827020px;}
.ws12_c01076{word-spacing:27.042210px;}
.ws1d_c01076{word-spacing:27.329130px;}
.ws2_c01076{word-spacing:27.759510px;}
.ws1a_c01076{word-spacing:28.620270px;}
.ws1e_c01076{word-spacing:29.337570px;}
.ws17_c01076{word-spacing:30.485250px;}
.ws1b_c01076{word-spacing:31.417740px;}
.ws19_c01076{word-spacing:31.561200px;}
.ws6_c01076{word-spacing:32.135040px;}
.ws11_c01076{word-spacing:33.569640px;}
.wsb_c01076{word-spacing:33.928290px;}
.ws9_c01076{word-spacing:34.071750px;}
.wsa_c01076{word-spacing:34.789050px;}
._0_c01076{margin-left:-40.527450px;}
._7_c01076{margin-left:-37.012680px;}
._5_c01076{margin-left:-35.362890px;}
._10_c01076{margin-left:-34.071750px;}
._b_c01076{margin-left:-32.924070px;}
._13_c01076{margin-left:-31.238238px;}
._12_c01076{margin-left:-30.138222px;}
._3_c01076{margin-left:-27.400860px;}
._2_c01076{margin-left:-7.890300px;}
._a_c01076{margin-left:-5.881860px;}
._e_c01076{margin-left:-4.590720px;}
._9_c01076{margin-left:-3.514770px;}
._4_c01076{margin-left:-2.008440px;}
._6_c01076{width:1.864980px;}
._d_c01076{width:2.900220px;}
._8_c01076{width:4.016880px;}
._11_c01076{width:5.238870px;}
._f_c01076{width:24.029550px;}
._c_c01076{width:45.262530px;}
._1_c01076{width:464.743440px;}
.fc0_c01076{color:rgb(0,0,0);}
.fs2_c01076{font-size:41.844000px;}
.fs1_c01076{font-size:47.820000px;}
.fs3_c01076{font-size:59.778000px;}
.fs0_c01076{font-size:71.730000px;}
.y0_c01076{bottom:0.000000px;}
.y24_c01076{bottom:124.173000px;}
.y23_c01076{bottom:136.683000px;}
.y22_c01076{bottom:160.039500px;}
.y21_c01076{bottom:186.795000px;}
.y20_c01076{bottom:213.685500px;}
.y1f_c01076{bottom:240.577500px;}
.y1e_c01076{bottom:304.828500px;}
.y1d_c01076{bottom:331.719000px;}
.y1c_c01076{bottom:358.609500px;}
.y1b_c01076{bottom:385.500000px;}
.y1a_c01076{bottom:412.390500px;}
.y19_c01076{bottom:439.282500px;}
.y18_c01076{bottom:485.599500px;}
.y17_c01076{bottom:512.491500px;}
.y16_c01076{bottom:539.382000px;}
.y15_c01076{bottom:566.272500px;}
.y14_c01076{bottom:593.163000px;}
.y13_c01076{bottom:620.055000px;}
.y12_c01076{bottom:646.945500px;}
.y11_c01076{bottom:673.836000px;}
.y10_c01076{bottom:700.726500px;}
.yf_c01076{bottom:727.617000px;}
.ye_c01076{bottom:754.509000px;}
.yd_c01076{bottom:781.399500px;}
.yc_c01076{bottom:808.290000px;}
.yb_c01076{bottom:835.180500px;}
.ya_c01076{bottom:862.072500px;}
.y9_c01076{bottom:888.963000px;}
.y8_c01076{bottom:915.853500px;}
.y7_c01076{bottom:942.744000px;}
.y6_c01076{bottom:987.568500px;}
.y5_c01076{bottom:1014.459000px;}
.y4_c01076{bottom:1041.349500px;}
.y3_c01076{bottom:1068.240000px;}
.y2_c01076{bottom:1095.132000px;}
.y1_c01076{bottom:1162.084500px;}
.h5_c01076{height:28.286544px;}
.h6_c01076{height:44.833500px;}
.h2_c01076{height:53.797500px;}
.h4_c01076{height:58.354320px;}
.h3_c01076{height:58.360320px;}
.h1_c01076{height:1263.750000px;}
.h0_c01076{height:1264.110000px;}
.w0_c01076{width:893.869500px;}
.w1_c01076{width:894.000000px;}
.x0_c01076{left:0.000000px;}
.x1_c01076{left:127.558500px;}
.x5_c01076{left:141.798000px;}
.x2_c01076{left:159.838500px;}
.x4_c01076{left:171.456000px;}
.x3_c01076{left:197.794500px;}
@media print{
.v2_c01076{vertical-align:-19.285333pt;}
.v0_c01076{vertical-align:0.000000pt;}
.v1_c01076{vertical-align:23.141333pt;}
.ls0_c01076{letter-spacing:0.000000pt;}
.ws1_c01076{word-spacing:-0.063760pt;}
.wsf_c01076{word-spacing:-0.042507pt;}
.ws1f_c01076{word-spacing:-0.037195pt;}
.ws22_c01076{word-spacing:0.000000pt;}
.ws15_c01076{word-spacing:15.429920pt;}
.ws14_c01076{word-spacing:15.621200pt;}
.ws20_c01076{word-spacing:16.950384pt;}
.ws21_c01076{word-spacing:17.641152pt;}
.ws13_c01076{word-spacing:19.510560pt;}
.ws10_c01076{word-spacing:19.765600pt;}
.ws4_c01076{word-spacing:20.084400pt;}
.ws7_c01076{word-spacing:20.722000pt;}
.ws3_c01076{word-spacing:20.785760pt;}
.ws1c_c01076{word-spacing:20.913280pt;}
.wse_c01076{word-spacing:21.869680pt;}
.wsc_c01076{word-spacing:21.875253pt;}
.ws18_c01076{word-spacing:22.252240pt;}
.ws16_c01076{word-spacing:22.443520pt;}
.ws8_c01076{word-spacing:22.571040pt;}
.ws5_c01076{word-spacing:23.081120pt;}
.wsd_c01076{word-spacing:23.336160pt;}
.ws0_c01076{word-spacing:23.846240pt;}
.ws12_c01076{word-spacing:24.037520pt;}
.ws1d_c01076{word-spacing:24.292560pt;}
.ws2_c01076{word-spacing:24.675120pt;}
.ws1a_c01076{word-spacing:25.440240pt;}
.ws1e_c01076{word-spacing:26.077840pt;}
.ws17_c01076{word-spacing:27.098000pt;}
.ws1b_c01076{word-spacing:27.926880pt;}
.ws19_c01076{word-spacing:28.054400pt;}
.ws6_c01076{word-spacing:28.564480pt;}
.ws11_c01076{word-spacing:29.839680pt;}
.wsb_c01076{word-spacing:30.158480pt;}
.ws9_c01076{word-spacing:30.286000pt;}
.wsa_c01076{word-spacing:30.923600pt;}
._0_c01076{margin-left:-36.024400pt;}
._7_c01076{margin-left:-32.900160pt;}
._5_c01076{margin-left:-31.433680pt;}
._10_c01076{margin-left:-30.286000pt;}
._b_c01076{margin-left:-29.265840pt;}
._13_c01076{margin-left:-27.767323pt;}
._12_c01076{margin-left:-26.789531pt;}
._3_c01076{margin-left:-24.356320pt;}
._2_c01076{margin-left:-7.013600pt;}
._a_c01076{margin-left:-5.228320pt;}
._e_c01076{margin-left:-4.080640pt;}
._9_c01076{margin-left:-3.124240pt;}
._4_c01076{margin-left:-1.785280pt;}
._6_c01076{width:1.657760pt;}
._d_c01076{width:2.577973pt;}
._8_c01076{width:3.570560pt;}
._11_c01076{width:4.656773pt;}
._f_c01076{width:21.359600pt;}
._c_c01076{width:40.233360pt;}
._1_c01076{width:413.105280pt;}
.fs2_c01076{font-size:37.194667pt;}
.fs1_c01076{font-size:42.506667pt;}
.fs3_c01076{font-size:53.136000pt;}
.fs0_c01076{font-size:63.760000pt;}
.y0_c01076{bottom:0.000000pt;}
.y24_c01076{bottom:110.376000pt;}
.y23_c01076{bottom:121.496000pt;}
.y22_c01076{bottom:142.257333pt;}
.y21_c01076{bottom:166.040000pt;}
.y20_c01076{bottom:189.942667pt;}
.y1f_c01076{bottom:213.846667pt;}
.y1e_c01076{bottom:270.958667pt;}
.y1d_c01076{bottom:294.861333pt;}
.y1c_c01076{bottom:318.764000pt;}
.y1b_c01076{bottom:342.666667pt;}
.y1a_c01076{bottom:366.569333pt;}
.y19_c01076{bottom:390.473333pt;}
.y18_c01076{bottom:431.644000pt;}
.y17_c01076{bottom:455.548000pt;}
.y16_c01076{bottom:479.450667pt;}
.y15_c01076{bottom:503.353333pt;}
.y14_c01076{bottom:527.256000pt;}
.y13_c01076{bottom:551.160000pt;}
.y12_c01076{bottom:575.062667pt;}
.y11_c01076{bottom:598.965333pt;}
.y10_c01076{bottom:622.868000pt;}
.yf_c01076{bottom:646.770667pt;}
.ye_c01076{bottom:670.674667pt;}
.yd_c01076{bottom:694.577333pt;}
.yc_c01076{bottom:718.480000pt;}
.yb_c01076{bottom:742.382667pt;}
.ya_c01076{bottom:766.286667pt;}
.y9_c01076{bottom:790.189333pt;}
.y8_c01076{bottom:814.092000pt;}
.y7_c01076{bottom:837.994667pt;}
.y6_c01076{bottom:877.838667pt;}
.y5_c01076{bottom:901.741333pt;}
.y4_c01076{bottom:925.644000pt;}
.y3_c01076{bottom:949.546667pt;}
.y2_c01076{bottom:973.450667pt;}
.y1_c01076{bottom:1032.964000pt;}
.h5_c01076{height:25.143595pt;}
.h6_c01076{height:39.852000pt;}
.h2_c01076{height:47.820000pt;}
.h4_c01076{height:51.870507pt;}
.h3_c01076{height:51.875840pt;}
.h1_c01076{height:1123.333333pt;}
.h0_c01076{height:1123.653333pt;}
.w0_c01076{width:794.550667pt;}
.w1_c01076{width:794.666667pt;}
.x0_c01076{left:0.000000pt;}
.x1_c01076{left:113.385333pt;}
.x5_c01076{left:126.042667pt;}
.x2_c01076{left:142.078667pt;}
.x4_c01076{left:152.405333pt;}
.x3_c01076{left:175.817333pt;}
}





/* 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_da48b7b949d4fcff947207df.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:1.001000;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_a3332f1f652d7cfecbd312bb.woff2')format("woff");}.ff2_c01077{font-family:ff2_c01077;line-height:1.001000;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_6fafdfce3008fd40e175e787.woff2')format("woff");}.ff3_c01077{font-family:ff3_c01077;line-height:1.001000;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_c01077;src:url('chunks/assets/font_91a279d72e01262d1c6e32ac.woff2')format("woff");}.ff4_c01077{font-family:ff4_c01077;line-height:0.697000;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_c01077;src:url('chunks/assets/font_b818cee8fd4e053774066d9f.woff2')format("woff");}.ff5_c01077{font-family:ff5_c01077;line-height:0.696000;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_c01077;src:url('chunks/assets/font_e1f533d4e40f5b9acc3a957d.woff2')format("woff");}.ff6_c01077{font-family:ff6_c01077;line-height:1.000000;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_c01077;src:url('chunks/assets/font_7d6246fac625d788d476c8cb.woff2')format("woff");}.ff7_c01077{font-family:ff7_c01077;line-height:1.000000;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_c01077;src:url('chunks/assets/font_20db2b086f4ab1080809f95b.woff2')format("woff");}.ff8_c01077{font-family:ff8_c01077;line-height:0.451000;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);}
.v3_c01077{vertical-align:-21.690000px;}
.v0_c01077{vertical-align:0.000000px;}
.v4_c01077{vertical-align:15.108000px;}
.v2_c01077{vertical-align:18.132000px;}
.v5_c01077{vertical-align:21.690000px;}
.v1_c01077{vertical-align:26.028000px;}
.ls1_c01077{letter-spacing:0.000000px;}
.ls0_c01077{letter-spacing:2.992068px;}
.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;}
}
.ws1_c01077{word-spacing:-0.071730px;}
.ws22_c01077{word-spacing:-0.059778px;}
.wsc_c01077{word-spacing:-0.047820px;}
.ws21_c01077{word-spacing:-0.041844px;}
.ws29_c01077{word-spacing:0.000000px;}
.ws17_c01077{word-spacing:17.645580px;}
.ws19_c01077{word-spacing:17.860770px;}
.ws8_c01077{word-spacing:18.864990px;}
.ws11_c01077{word-spacing:18.936720px;}
.ws24_c01077{word-spacing:19.846296px;}
.ws25_c01077{word-spacing:21.938526px;}
.ws26_c01077{word-spacing:21.998304px;}
.ws20_c01077{word-spacing:22.666680px;}
.ws13_c01077{word-spacing:22.738410px;}
.ws28_c01077{word-spacing:23.253642px;}
.wsd_c01077{word-spacing:23.312250px;}
.ws27_c01077{word-spacing:23.313420px;}
.ws7_c01077{word-spacing:23.383980px;}
.ws1d_c01077{word-spacing:23.886090px;}
.ws2_c01077{word-spacing:24.173010px;}
.ws10_c01077{word-spacing:24.459930px;}
.ws1e_c01077{word-spacing:25.033770px;}
.ws18_c01077{word-spacing:25.105500px;}
.ws23_c01077{word-spacing:25.166538px;}
.ws1b_c01077{word-spacing:25.607610px;}
.ws4_c01077{word-spacing:26.109720px;}
.ws6_c01077{word-spacing:26.181450px;}
.wsf_c01077{word-spacing:26.324910px;}
.ws1f_c01077{word-spacing:26.540100px;}
.ws0_c01077{word-spacing:26.827020px;}
.ws9_c01077{word-spacing:27.472590px;}
.ws5_c01077{word-spacing:27.616050px;}
.ws3_c01077{word-spacing:28.046430px;}
.ws14_c01077{word-spacing:28.620270px;}
.ws1c_c01077{word-spacing:28.978920px;}
.ws15_c01077{word-spacing:29.767950px;}
.ws16_c01077{word-spacing:30.987360px;}
.wse_c01077{word-spacing:32.780610px;}
.ws12_c01077{word-spacing:34.215210px;}
.wsa_c01077{word-spacing:34.286940px;}
.wsb_c01077{word-spacing:35.147700px;}
.ws1a_c01077{word-spacing:37.371330px;}
._0_c01077{margin-left:-40.527450px;}
._b_c01077{margin-left:-37.729980px;}
._c_c01077{margin-left:-36.654030px;}
._4_c01077{margin-left:-35.147700px;}
._f_c01077{margin-left:-33.928290px;}
._17_c01077{margin-left:-31.993092px;}
._16_c01077{margin-left:-30.522456px;}
._13_c01077{margin-left:-28.692000px;}
._8_c01077{margin-left:-27.400860px;}
._18_c01077{margin-left:-24.377778px;}
._19_c01077{margin-left:-22.751784px;}
._7_c01077{margin-left:-7.388190px;}
._6_c01077{margin-left:-6.168780px;}
._a_c01077{margin-left:-4.303800px;}
._e_c01077{margin-left:-3.299580px;}
._2_c01077{margin-left:-1.936710px;}
._3_c01077{width:1.864980px;}
._9_c01077{width:3.801690px;}
._14_c01077{width:5.131140px;}
._15_c01077{width:7.520838px;}
._d_c01077{width:10.759500px;}
._5_c01077{width:30.478440px;}
._11_c01077{width:34.623270px;}
._12_c01077{width:38.447280px;}
._10_c01077{width:42.520380px;}
._1_c01077{width:464.743440px;}
.fc0_c01077{color:rgb(0,0,0);}
.fs2_c01077{font-size:41.844000px;}
.fs1_c01077{font-size:47.820000px;}
.fs3_c01077{font-size:59.778000px;}
.fs0_c01077{font-size:71.730000px;}
.y0_c01077{bottom:0.000000px;}
.y27_c01077{bottom:93.442500px;}
.y26_c01077{bottom:111.375000px;}
.y25_c01077{bottom:116.797500px;}
.y24_c01077{bottom:136.333500px;}
.y23_c01077{bottom:148.843500px;}
.y22_c01077{bottom:166.776000px;}
.y21_c01077{bottom:172.198500px;}
.y20_c01077{bottom:200.146500px;}
.y1f_c01077{bottom:227.038500px;}
.y1e_c01077{bottom:271.716000px;}
.y1d_c01077{bottom:298.606500px;}
.y1c_c01077{bottom:325.497000px;}
.y1b_c01077{bottom:352.387500px;}
.y1a_c01077{bottom:379.279500px;}
.y19_c01077{bottom:406.170000px;}
.y18_c01077{bottom:450.847500px;}
.y17_c01077{bottom:477.738000px;}
.y16_c01077{bottom:504.628500px;}
.y15_c01077{bottom:531.519000px;}
.y14_c01077{bottom:558.411000px;}
.y13_c01077{bottom:585.301500px;}
.y12_c01077{bottom:612.192000px;}
.y11_c01077{bottom:673.981500px;}
.y10_c01077{bottom:700.873500px;}
.yf_c01077{bottom:745.551000px;}
.ye_c01077{bottom:772.441500px;}
.yd_c01077{bottom:799.332000px;}
.yc_c01077{bottom:826.222500px;}
.yb_c01077{bottom:853.114500px;}
.ya_c01077{bottom:880.005000px;}
.y9_c01077{bottom:906.895500px;}
.y8_c01077{bottom:933.786000px;}
.y7_c01077{bottom:960.678000px;}
.y6_c01077{bottom:987.568500px;}
.y5_c01077{bottom:1014.459000px;}
.y4_c01077{bottom:1041.349500px;}
.y3_c01077{bottom:1068.240000px;}
.y2_c01077{bottom:1095.132000px;}
.y1_c01077{bottom:1162.084500px;}
.h8_c01077{height:28.286544px;}
.h6_c01077{height:38.251500px;}
.h7_c01077{height:44.833500px;}
.h2_c01077{height:53.797500px;}
.h3_c01077{height:58.354320px;}
.h4_c01077{height:58.360320px;}
.h9_c01077{height:59.941500px;}
.h5_c01077{height:71.929500px;}
.h1_c01077{height:1263.750000px;}
.h0_c01077{height:1264.110000px;}
.w0_c01077{width:893.869500px;}
.w1_c01077{width:894.000000px;}
.x0_c01077{left:0.000000px;}
.x1_c01077{left:127.558500px;}
.x6_c01077{left:141.798000px;}
.x2_c01077{left:159.838500px;}
.x4_c01077{left:171.456000px;}
.x7_c01077{left:176.874000px;}
.x3_c01077{left:197.794500px;}
.x5_c01077{left:307.065000px;}
.x8_c01077{left:312.522000px;}
.x9_c01077{left:364.434000px;}
@media print{
.v3_c01077{vertical-align:-19.280000pt;}
.v0_c01077{vertical-align:0.000000pt;}
.v4_c01077{vertical-align:13.429333pt;}
.v2_c01077{vertical-align:16.117333pt;}
.v5_c01077{vertical-align:19.280000pt;}
.v1_c01077{vertical-align:23.136000pt;}
.ls1_c01077{letter-spacing:0.000000pt;}
.ls0_c01077{letter-spacing:2.659616pt;}
.ws1_c01077{word-spacing:-0.063760pt;}
.ws22_c01077{word-spacing:-0.053136pt;}
.wsc_c01077{word-spacing:-0.042507pt;}
.ws21_c01077{word-spacing:-0.037195pt;}
.ws29_c01077{word-spacing:0.000000pt;}
.ws17_c01077{word-spacing:15.684960pt;}
.ws19_c01077{word-spacing:15.876240pt;}
.ws8_c01077{word-spacing:16.768880pt;}
.ws11_c01077{word-spacing:16.832640pt;}
.ws24_c01077{word-spacing:17.641152pt;}
.ws25_c01077{word-spacing:19.500912pt;}
.ws26_c01077{word-spacing:19.554048pt;}
.ws20_c01077{word-spacing:20.148160pt;}
.ws13_c01077{word-spacing:20.211920pt;}
.ws28_c01077{word-spacing:20.669904pt;}
.wsd_c01077{word-spacing:20.722000pt;}
.ws27_c01077{word-spacing:20.723040pt;}
.ws7_c01077{word-spacing:20.785760pt;}
.ws1d_c01077{word-spacing:21.232080pt;}
.ws2_c01077{word-spacing:21.487120pt;}
.ws10_c01077{word-spacing:21.742160pt;}
.ws1e_c01077{word-spacing:22.252240pt;}
.ws18_c01077{word-spacing:22.316000pt;}
.ws23_c01077{word-spacing:22.370256pt;}
.ws1b_c01077{word-spacing:22.762320pt;}
.ws4_c01077{word-spacing:23.208640pt;}
.ws6_c01077{word-spacing:23.272400pt;}
.wsf_c01077{word-spacing:23.399920pt;}
.ws1f_c01077{word-spacing:23.591200pt;}
.ws0_c01077{word-spacing:23.846240pt;}
.ws9_c01077{word-spacing:24.420080pt;}
.ws5_c01077{word-spacing:24.547600pt;}
.ws3_c01077{word-spacing:24.930160pt;}
.ws14_c01077{word-spacing:25.440240pt;}
.ws1c_c01077{word-spacing:25.759040pt;}
.ws15_c01077{word-spacing:26.460400pt;}
.ws16_c01077{word-spacing:27.544320pt;}
.wse_c01077{word-spacing:29.138320pt;}
.ws12_c01077{word-spacing:30.413520pt;}
.wsa_c01077{word-spacing:30.477280pt;}
.wsb_c01077{word-spacing:31.242400pt;}
.ws1a_c01077{word-spacing:33.218960pt;}
._0_c01077{margin-left:-36.024400pt;}
._b_c01077{margin-left:-33.537760pt;}
._c_c01077{margin-left:-32.581360pt;}
._4_c01077{margin-left:-31.242400pt;}
._f_c01077{margin-left:-30.158480pt;}
._17_c01077{margin-left:-28.438304pt;}
._16_c01077{margin-left:-27.131072pt;}
._13_c01077{margin-left:-25.504000pt;}
._8_c01077{margin-left:-24.356320pt;}
._18_c01077{margin-left:-21.669136pt;}
._19_c01077{margin-left:-20.223808pt;}
._7_c01077{margin-left:-6.567280pt;}
._6_c01077{margin-left:-5.483360pt;}
._a_c01077{margin-left:-3.825600pt;}
._e_c01077{margin-left:-2.932960pt;}
._2_c01077{margin-left:-1.721520pt;}
._3_c01077{width:1.657760pt;}
._9_c01077{width:3.379280pt;}
._14_c01077{width:4.561013pt;}
._15_c01077{width:6.685189pt;}
._d_c01077{width:9.564000pt;}
._5_c01077{width:27.091947pt;}
._11_c01077{width:30.776240pt;}
._12_c01077{width:34.175360pt;}
._10_c01077{width:37.795893pt;}
._1_c01077{width:413.105280pt;}
.fs2_c01077{font-size:37.194667pt;}
.fs1_c01077{font-size:42.506667pt;}
.fs3_c01077{font-size:53.136000pt;}
.fs0_c01077{font-size:63.760000pt;}
.y0_c01077{bottom:0.000000pt;}
.y27_c01077{bottom:83.060000pt;}
.y26_c01077{bottom:99.000000pt;}
.y25_c01077{bottom:103.820000pt;}
.y24_c01077{bottom:121.185333pt;}
.y23_c01077{bottom:132.305333pt;}
.y22_c01077{bottom:148.245333pt;}
.y21_c01077{bottom:153.065333pt;}
.y20_c01077{bottom:177.908000pt;}
.y1f_c01077{bottom:201.812000pt;}
.y1e_c01077{bottom:241.525333pt;}
.y1d_c01077{bottom:265.428000pt;}
.y1c_c01077{bottom:289.330667pt;}
.y1b_c01077{bottom:313.233333pt;}
.y1a_c01077{bottom:337.137333pt;}
.y19_c01077{bottom:361.040000pt;}
.y18_c01077{bottom:400.753333pt;}
.y17_c01077{bottom:424.656000pt;}
.y16_c01077{bottom:448.558667pt;}
.y15_c01077{bottom:472.461333pt;}
.y14_c01077{bottom:496.365333pt;}
.y13_c01077{bottom:520.268000pt;}
.y12_c01077{bottom:544.170667pt;}
.y11_c01077{bottom:599.094667pt;}
.y10_c01077{bottom:622.998667pt;}
.yf_c01077{bottom:662.712000pt;}
.ye_c01077{bottom:686.614667pt;}
.yd_c01077{bottom:710.517333pt;}
.yc_c01077{bottom:734.420000pt;}
.yb_c01077{bottom:758.324000pt;}
.ya_c01077{bottom:782.226667pt;}
.y9_c01077{bottom:806.129333pt;}
.y8_c01077{bottom:830.032000pt;}
.y7_c01077{bottom:853.936000pt;}
.y6_c01077{bottom:877.838667pt;}
.y5_c01077{bottom:901.741333pt;}
.y4_c01077{bottom:925.644000pt;}
.y3_c01077{bottom:949.546667pt;}
.y2_c01077{bottom:973.450667pt;}
.y1_c01077{bottom:1032.964000pt;}
.h8_c01077{height:25.143595pt;}
.h6_c01077{height:34.001333pt;}
.h7_c01077{height:39.852000pt;}
.h2_c01077{height:47.820000pt;}
.h3_c01077{height:51.870507pt;}
.h4_c01077{height:51.875840pt;}
.h9_c01077{height:53.281333pt;}
.h5_c01077{height:63.937333pt;}
.h1_c01077{height:1123.333333pt;}
.h0_c01077{height:1123.653333pt;}
.w0_c01077{width:794.550667pt;}
.w1_c01077{width:794.666667pt;}
.x0_c01077{left:0.000000pt;}
.x1_c01077{left:113.385333pt;}
.x6_c01077{left:126.042667pt;}
.x2_c01077{left:142.078667pt;}
.x4_c01077{left:152.405333pt;}
.x7_c01077{left:157.221333pt;}
.x3_c01077{left:175.817333pt;}
.x5_c01077{left:272.946667pt;}
.x8_c01077{left:277.797333pt;}
.x9_c01077{left:323.941333pt;}
}





/* 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_25828398ba371a37cbd8722f.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.001000;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_dcb98c9245843ef173feaf6b.woff2')format("woff");}.ff2_c01078{font-family:ff2_c01078;line-height:1.001000;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_c01078;src:url('chunks/assets/font_b7d598fd155d808be0dd0883.woff2')format("woff");}.ff3_c01078{font-family:ff3_c01078;line-height:1.001000;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_c01078;src:url('chunks/assets/font_37b6b1d8ae4db3ec3fe08ed0.woff2')format("woff");}.ff4_c01078{font-family:ff4_c01078;line-height:0.697000;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_c01078;src:url('chunks/assets/font_3d592b70939234686db738a3.woff2')format("woff");}.ff5_c01078{font-family:ff5_c01078;line-height:0.696000;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_c01078;src:url('chunks/assets/font_bf7803e530435c46c9cd9bc1.woff2')format("woff");}.ff6_c01078{font-family:ff6_c01078;line-height:1.000000;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_c01078;src:url('chunks/assets/font_26285c50e7323ab7b51c5069.woff2')format("woff");}.ff7_c01078{font-family:ff7_c01078;line-height:1.000000;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);}
.v2_c01078{vertical-align:-21.690000px;}
.v0_c01078{vertical-align:0.000000px;}
.v1_c01078{vertical-align:26.034000px;}
.ls0_c01078{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01078{word-spacing:-0.071730px;}
.ws1f_c01078{word-spacing:-0.047820px;}
.ws22_c01078{word-spacing:-0.041844px;}
.ws25_c01078{word-spacing:0.000000px;}
.ws13_c01078{word-spacing:15.708870px;}
.ws12_c01078{word-spacing:15.780600px;}
.wse_c01078{word-spacing:17.143470px;}
.wsd_c01078{word-spacing:17.789040px;}
.ws11_c01078{word-spacing:18.075960px;}
.ws21_c01078{word-spacing:18.793260px;}
.ws23_c01078{word-spacing:19.846296px;}
.ws2_c01078{word-spacing:20.443050px;}
.ws10_c01078{word-spacing:21.303810px;}
.ws24_c01078{word-spacing:21.340746px;}
.ws4_c01078{word-spacing:22.164570px;}
.wsb_c01078{word-spacing:22.881870px;}
.ws3_c01078{word-spacing:23.312250px;}
.ws9_c01078{word-spacing:23.383980px;}
.ws18_c01078{word-spacing:23.599170px;}
.ws8_c01078{word-spacing:23.742630px;}
.ws1c_c01078{word-spacing:24.101280px;}
.wsc_c01078{word-spacing:24.603390px;}
.wsf_c01078{word-spacing:24.746850px;}
.ws1e_c01078{word-spacing:25.033770px;}
.ws20_c01078{word-spacing:25.248960px;}
.ws1a_c01078{word-spacing:25.464150px;}
.ws16_c01078{word-spacing:25.535880px;}
.ws14_c01078{word-spacing:25.607610px;}
.wsa_c01078{word-spacing:26.181450px;}
.ws0_c01078{word-spacing:26.827020px;}
.ws15_c01078{word-spacing:27.113940px;}
.ws17_c01078{word-spacing:27.329130px;}
.ws19_c01078{word-spacing:27.544320px;}
.ws1d_c01078{word-spacing:28.907190px;}
.ws6_c01078{word-spacing:31.346010px;}
.ws5_c01078{word-spacing:32.206770px;}
.ws1b_c01078{word-spacing:32.278500px;}
.ws7_c01078{word-spacing:32.637150px;}
._0_c01078{margin-left:-40.527450px;}
._8_c01078{margin-left:-37.658250px;}
._b_c01078{margin-left:-36.582300px;}
._4_c01078{margin-left:-35.147700px;}
._7_c01078{margin-left:-33.282720px;}
._a_c01078{margin-left:-27.400860px;}
._9_c01078{margin-left:-7.818570px;}
._5_c01078{margin-left:-3.945150px;}
._f_c01078{margin-left:-2.940930px;}
._3_c01078{margin-left:-1.936710px;}
._2_c01078{width:1.936710px;}
._6_c01078{width:3.801690px;}
._c_c01078{width:17.717310px;}
._e_c01078{width:24.818580px;}
._d_c01078{width:28.189530px;}
._1_c01078{width:464.743440px;}
.fc0_c01078{color:rgb(0,0,0);}
.fs2_c01078{font-size:41.844000px;}
.fs1_c01078{font-size:47.820000px;}
.fs3_c01078{font-size:59.778000px;}
.fs0_c01078{font-size:71.730000px;}
.y0_c01078{bottom:0.000000px;}
.y24_c01078{bottom:98.865000px;}
.y23_c01078{bottom:124.918500px;}
.y22_c01078{bottom:151.809000px;}
.y21_c01078{bottom:211.843500px;}
.y20_c01078{bottom:238.735500px;}
.y1f_c01078{bottom:265.626000px;}
.y1e_c01078{bottom:292.516500px;}
.y1d_c01078{bottom:319.407000px;}
.y1c_c01078{bottom:346.299000px;}
.y1b_c01078{bottom:373.189500px;}
.y1a_c01078{bottom:400.080000px;}
.y19_c01078{bottom:443.587500px;}
.y18_c01078{bottom:470.478000px;}
.y17_c01078{bottom:497.368500px;}
.y16_c01078{bottom:524.260500px;}
.y15_c01078{bottom:551.151000px;}
.y14_c01078{bottom:594.568500px;}
.y13_c01078{bottom:621.459000px;}
.y12_c01078{bottom:648.351000px;}
.y11_c01078{bottom:675.241500px;}
.y10_c01078{bottom:702.132000px;}
.yf_c01078{bottom:729.022500px;}
.ye_c01078{bottom:755.914500px;}
.yd_c01078{bottom:782.805000px;}
.yc_c01078{bottom:809.695500px;}
.yb_c01078{bottom:836.586000px;}
.ya_c01078{bottom:880.005000px;}
.y9_c01078{bottom:906.895500px;}
.y8_c01078{bottom:933.786000px;}
.y7_c01078{bottom:960.678000px;}
.y6_c01078{bottom:987.568500px;}
.y5_c01078{bottom:1014.459000px;}
.y4_c01078{bottom:1041.349500px;}
.y3_c01078{bottom:1068.240000px;}
.y2_c01078{bottom:1095.132000px;}
.y1_c01078{bottom:1162.084500px;}
.h4_c01078{height:28.286544px;}
.h2_c01078{height:53.797500px;}
.h3_c01078{height:58.360320px;}
.h1_c01078{height:1263.750000px;}
.h0_c01078{height:1264.110000px;}
.w0_c01078{width:893.869500px;}
.w1_c01078{width:894.000000px;}
.x0_c01078{left:0.000000px;}
.x1_c01078{left:127.558500px;}
.x5_c01078{left:141.798000px;}
.x2_c01078{left:159.838500px;}
.x4_c01078{left:171.456000px;}
.x3_c01078{left:197.794500px;}
@media print{
.v2_c01078{vertical-align:-19.280000pt;}
.v0_c01078{vertical-align:0.000000pt;}
.v1_c01078{vertical-align:23.141333pt;}
.ls0_c01078{letter-spacing:0.000000pt;}
.ws1_c01078{word-spacing:-0.063760pt;}
.ws1f_c01078{word-spacing:-0.042507pt;}
.ws22_c01078{word-spacing:-0.037195pt;}
.ws25_c01078{word-spacing:0.000000pt;}
.ws13_c01078{word-spacing:13.963440pt;}
.ws12_c01078{word-spacing:14.027200pt;}
.wse_c01078{word-spacing:15.238640pt;}
.wsd_c01078{word-spacing:15.812480pt;}
.ws11_c01078{word-spacing:16.067520pt;}
.ws21_c01078{word-spacing:16.705120pt;}
.ws23_c01078{word-spacing:17.641152pt;}
.ws2_c01078{word-spacing:18.171600pt;}
.ws10_c01078{word-spacing:18.936720pt;}
.ws24_c01078{word-spacing:18.969552pt;}
.ws4_c01078{word-spacing:19.701840pt;}
.wsb_c01078{word-spacing:20.339440pt;}
.ws3_c01078{word-spacing:20.722000pt;}
.ws9_c01078{word-spacing:20.785760pt;}
.ws18_c01078{word-spacing:20.977040pt;}
.ws8_c01078{word-spacing:21.104560pt;}
.ws1c_c01078{word-spacing:21.423360pt;}
.wsc_c01078{word-spacing:21.869680pt;}
.wsf_c01078{word-spacing:21.997200pt;}
.ws1e_c01078{word-spacing:22.252240pt;}
.ws20_c01078{word-spacing:22.443520pt;}
.ws1a_c01078{word-spacing:22.634800pt;}
.ws16_c01078{word-spacing:22.698560pt;}
.ws14_c01078{word-spacing:22.762320pt;}
.wsa_c01078{word-spacing:23.272400pt;}
.ws0_c01078{word-spacing:23.846240pt;}
.ws15_c01078{word-spacing:24.101280pt;}
.ws17_c01078{word-spacing:24.292560pt;}
.ws19_c01078{word-spacing:24.483840pt;}
.ws1d_c01078{word-spacing:25.695280pt;}
.ws6_c01078{word-spacing:27.863120pt;}
.ws5_c01078{word-spacing:28.628240pt;}
.ws1b_c01078{word-spacing:28.692000pt;}
.ws7_c01078{word-spacing:29.010800pt;}
._0_c01078{margin-left:-36.024400pt;}
._8_c01078{margin-left:-33.474000pt;}
._b_c01078{margin-left:-32.517600pt;}
._4_c01078{margin-left:-31.242400pt;}
._7_c01078{margin-left:-29.584640pt;}
._a_c01078{margin-left:-24.356320pt;}
._9_c01078{margin-left:-6.949840pt;}
._5_c01078{margin-left:-3.506800pt;}
._f_c01078{margin-left:-2.614160pt;}
._3_c01078{margin-left:-1.721520pt;}
._2_c01078{width:1.721520pt;}
._6_c01078{width:3.379280pt;}
._c_c01078{width:15.748720pt;}
._e_c01078{width:22.060960pt;}
._d_c01078{width:25.057360pt;}
._1_c01078{width:413.105280pt;}
.fs2_c01078{font-size:37.194667pt;}
.fs1_c01078{font-size:42.506667pt;}
.fs3_c01078{font-size:53.136000pt;}
.fs0_c01078{font-size:63.760000pt;}
.y0_c01078{bottom:0.000000pt;}
.y24_c01078{bottom:87.880000pt;}
.y23_c01078{bottom:111.038667pt;}
.y22_c01078{bottom:134.941333pt;}
.y21_c01078{bottom:188.305333pt;}
.y20_c01078{bottom:212.209333pt;}
.y1f_c01078{bottom:236.112000pt;}
.y1e_c01078{bottom:260.014667pt;}
.y1d_c01078{bottom:283.917333pt;}
.y1c_c01078{bottom:307.821333pt;}
.y1b_c01078{bottom:331.724000pt;}
.y1a_c01078{bottom:355.626667pt;}
.y19_c01078{bottom:394.300000pt;}
.y18_c01078{bottom:418.202667pt;}
.y17_c01078{bottom:442.105333pt;}
.y16_c01078{bottom:466.009333pt;}
.y15_c01078{bottom:489.912000pt;}
.y14_c01078{bottom:528.505333pt;}
.y13_c01078{bottom:552.408000pt;}
.y12_c01078{bottom:576.312000pt;}
.y11_c01078{bottom:600.214667pt;}
.y10_c01078{bottom:624.117333pt;}
.yf_c01078{bottom:648.020000pt;}
.ye_c01078{bottom:671.924000pt;}
.yd_c01078{bottom:695.826667pt;}
.yc_c01078{bottom:719.729333pt;}
.yb_c01078{bottom:743.632000pt;}
.ya_c01078{bottom:782.226667pt;}
.y9_c01078{bottom:806.129333pt;}
.y8_c01078{bottom:830.032000pt;}
.y7_c01078{bottom:853.936000pt;}
.y6_c01078{bottom:877.838667pt;}
.y5_c01078{bottom:901.741333pt;}
.y4_c01078{bottom:925.644000pt;}
.y3_c01078{bottom:949.546667pt;}
.y2_c01078{bottom:973.450667pt;}
.y1_c01078{bottom:1032.964000pt;}
.h4_c01078{height:25.143595pt;}
.h2_c01078{height:47.820000pt;}
.h3_c01078{height:51.875840pt;}
.h1_c01078{height:1123.333333pt;}
.h0_c01078{height:1123.653333pt;}
.w0_c01078{width:794.550667pt;}
.w1_c01078{width:794.666667pt;}
.x0_c01078{left:0.000000pt;}
.x1_c01078{left:113.385333pt;}
.x5_c01078{left:126.042667pt;}
.x2_c01078{left:142.078667pt;}
.x4_c01078{left:152.405333pt;}
.x3_c01078{left:175.817333pt;}
}





/* 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_8560b16a5e41133aacba13ff.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.001000;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_bc959b2ffc588db602d032c0.woff2')format("woff");}.ff2_c01079{font-family:ff2_c01079;line-height:1.001000;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_5b1d3abf799e53d493aae6ee.woff2')format("woff");}.ff3_c01079{font-family:ff3_c01079;line-height:0.697000;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_c01079;src:url('chunks/assets/font_87a3311b81a5dbae0be4ac7c.woff2')format("woff");}.ff4_c01079{font-family:ff4_c01079;line-height:1.000000;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_c01079;src:url('chunks/assets/font_8b977496b93677d1f593ced9.woff2')format("woff");}.ff5_c01079{font-family:ff5_c01079;line-height:1.001000;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_c01079;src:url('chunks/assets/font_691135f2c4e08de15c2c419b.woff2')format("woff");}.ff6_c01079{font-family:ff6_c01079;line-height:0.696000;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_c01079;src:url('chunks/assets/font_6f9b3f32c51710222c94e400.woff2')format("woff");}.ff7_c01079{font-family:ff7_c01079;line-height:1.000000;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_c01079;src:url('chunks/assets/font_82811effc84cabd193c71ab6.woff2')format("woff");}.ff8_c01079{font-family:ff8_c01079;line-height:1.000000;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);}
.v2_c01079{vertical-align:-21.690000px;}
.v0_c01079{vertical-align:0.000000px;}
.v3_c01079{vertical-align:21.696000px;}
.v1_c01079{vertical-align:26.028000px;}
.ls1_c01079{letter-spacing:0.000000px;}
.ls0_c01079{letter-spacing:22.936764px;}
.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;}
}
.ws1_c01079{word-spacing:-0.071730px;}
.ws21_c01079{word-spacing:-0.059778px;}
.ws6_c01079{word-spacing:-0.047820px;}
.ws1b_c01079{word-spacing:-0.041844px;}
.ws27_c01079{word-spacing:0.000000px;}
.ws9_c01079{word-spacing:16.856550px;}
.ws23_c01079{word-spacing:17.933400px;}
.ws2_c01079{word-spacing:18.291150px;}
.wsf_c01079{word-spacing:18.649800px;}
.ws10_c01079{word-spacing:18.721530px;}
.ws11_c01079{word-spacing:19.008450px;}
.ws12_c01079{word-spacing:19.223640px;}
.ws24_c01079{word-spacing:19.547406px;}
.wse_c01079{word-spacing:19.725750px;}
.ws1f_c01079{word-spacing:19.846296px;}
.ws25_c01079{word-spacing:19.906074px;}
.wsd_c01079{word-spacing:20.156130px;}
.ws8_c01079{word-spacing:20.227860px;}
.wsa_c01079{word-spacing:20.514780px;}
.ws13_c01079{word-spacing:20.873430px;}
.ws1e_c01079{word-spacing:21.280968px;}
.ws26_c01079{word-spacing:21.340746px;}
.wsb_c01079{word-spacing:22.881870px;}
.ws3_c01079{word-spacing:23.312250px;}
.ws15_c01079{word-spacing:23.527440px;}
.ws22_c01079{word-spacing:23.552532px;}
.ws17_c01079{word-spacing:23.670900px;}
.ws1a_c01079{word-spacing:25.033770px;}
.ws19_c01079{word-spacing:25.679340px;}
.ws5_c01079{word-spacing:25.822800px;}
.ws4_c01079{word-spacing:26.611830px;}
.ws0_c01079{word-spacing:26.827020px;}
.wsc_c01079{word-spacing:27.042210px;}
.ws7_c01079{word-spacing:27.400860px;}
.ws14_c01079{word-spacing:28.763730px;}
.ws1c_c01079{word-spacing:29.291220px;}
.ws1d_c01079{word-spacing:29.948778px;}
.ws18_c01079{word-spacing:30.341790px;}
.ws16_c01079{word-spacing:32.924070px;}
.ws20_c01079{word-spacing:56.669544px;}
._0_c01079{margin-left:-40.527450px;}
._5_c01079{margin-left:-37.514790px;}
._3_c01079{margin-left:-35.291160px;}
._11_c01079{margin-left:-30.741120px;}
._e_c01079{margin-left:-28.978920px;}
._7_c01079{margin-left:-27.400860px;}
._10_c01079{margin-left:-22.838730px;}
._6_c01079{margin-left:-7.962030px;}
._8_c01079{margin-left:-6.240510px;}
._9_c01079{margin-left:-4.232070px;}
._c_c01079{margin-left:-2.940930px;}
._2_c01079{margin-left:-1.936710px;}
._12_c01079{width:1.001136px;}
._4_c01079{width:2.080170px;}
._a_c01079{width:3.514770px;}
._f_c01079{width:4.782990px;}
._d_c01079{width:31.919850px;}
._b_c01079{width:79.333380px;}
._1_c01079{width:464.743440px;}
.fc0_c01079{color:rgb(0,0,0);}
.fs2_c01079{font-size:41.844000px;}
.fs1_c01079{font-size:47.820000px;}
.fs3_c01079{font-size:59.778000px;}
.fs0_c01079{font-size:71.730000px;}
.y0_c01079{bottom:0.000000px;}
.y26_c01079{bottom:115.423500px;}
.y25_c01079{bottom:127.932000px;}
.y24_c01079{bottom:145.866000px;}
.y23_c01079{bottom:169.221000px;}
.y22_c01079{bottom:181.731000px;}
.y21_c01079{bottom:205.087500px;}
.y20_c01079{bottom:217.596000px;}
.y1f_c01079{bottom:240.952500px;}
.y1e_c01079{bottom:267.708000px;}
.y1d_c01079{bottom:294.600000px;}
.y1c_c01079{bottom:321.490500px;}
.y1b_c01079{bottom:348.381000px;}
.y1a_c01079{bottom:375.271500px;}
.y19_c01079{bottom:402.163500px;}
.y18_c01079{bottom:429.054000px;}
.y17_c01079{bottom:455.944500px;}
.y16_c01079{bottom:502.263000px;}
.y15_c01079{bottom:529.153500px;}
.y14_c01079{bottom:556.044000px;}
.y13_c01079{bottom:582.934500px;}
.y12_c01079{bottom:609.826500px;}
.y11_c01079{bottom:636.717000px;}
.y10_c01079{bottom:663.607500px;}
.yf_c01079{bottom:690.498000px;}
.ye_c01079{bottom:725.110500px;}
.yd_c01079{bottom:781.399500px;}
.yc_c01079{bottom:808.290000px;}
.yb_c01079{bottom:835.180500px;}
.ya_c01079{bottom:862.072500px;}
.y9_c01079{bottom:888.963000px;}
.y8_c01079{bottom:915.853500px;}
.y7_c01079{bottom:942.744000px;}
.y6_c01079{bottom:969.636000px;}
.y5_c01079{bottom:996.526500px;}
.y4_c01079{bottom:1023.417000px;}
.y3_c01079{bottom:1068.240000px;}
.y2_c01079{bottom:1095.132000px;}
.y1_c01079{bottom:1162.084500px;}
.h5_c01079{height:28.286544px;}
.h6_c01079{height:44.833500px;}
.h2_c01079{height:53.797500px;}
.h3_c01079{height:58.354320px;}
.h4_c01079{height:58.360320px;}
.h1_c01079{height:1263.750000px;}
.h0_c01079{height:1264.110000px;}
.w0_c01079{width:893.869500px;}
.w1_c01079{width:894.000000px;}
.x0_c01079{left:0.000000px;}
.x1_c01079{left:127.558500px;}
.x5_c01079{left:141.798000px;}
.x2_c01079{left:159.838500px;}
.x4_c01079{left:171.456000px;}
.x3_c01079{left:197.794500px;}
@media print{
.v2_c01079{vertical-align:-19.280000pt;}
.v0_c01079{vertical-align:0.000000pt;}
.v3_c01079{vertical-align:19.285333pt;}
.v1_c01079{vertical-align:23.136000pt;}
.ls1_c01079{letter-spacing:0.000000pt;}
.ls0_c01079{letter-spacing:20.388235pt;}
.ws1_c01079{word-spacing:-0.063760pt;}
.ws21_c01079{word-spacing:-0.053136pt;}
.ws6_c01079{word-spacing:-0.042507pt;}
.ws1b_c01079{word-spacing:-0.037195pt;}
.ws27_c01079{word-spacing:0.000000pt;}
.ws9_c01079{word-spacing:14.983600pt;}
.ws23_c01079{word-spacing:15.940800pt;}
.ws2_c01079{word-spacing:16.258800pt;}
.wsf_c01079{word-spacing:16.577600pt;}
.ws10_c01079{word-spacing:16.641360pt;}
.ws11_c01079{word-spacing:16.896400pt;}
.ws12_c01079{word-spacing:17.087680pt;}
.ws24_c01079{word-spacing:17.375472pt;}
.wse_c01079{word-spacing:17.534000pt;}
.ws1f_c01079{word-spacing:17.641152pt;}
.ws25_c01079{word-spacing:17.694288pt;}
.wsd_c01079{word-spacing:17.916560pt;}
.ws8_c01079{word-spacing:17.980320pt;}
.wsa_c01079{word-spacing:18.235360pt;}
.ws13_c01079{word-spacing:18.554160pt;}
.ws1e_c01079{word-spacing:18.916416pt;}
.ws26_c01079{word-spacing:18.969552pt;}
.wsb_c01079{word-spacing:20.339440pt;}
.ws3_c01079{word-spacing:20.722000pt;}
.ws15_c01079{word-spacing:20.913280pt;}
.ws22_c01079{word-spacing:20.935584pt;}
.ws17_c01079{word-spacing:21.040800pt;}
.ws1a_c01079{word-spacing:22.252240pt;}
.ws19_c01079{word-spacing:22.826080pt;}
.ws5_c01079{word-spacing:22.953600pt;}
.ws4_c01079{word-spacing:23.654960pt;}
.ws0_c01079{word-spacing:23.846240pt;}
.wsc_c01079{word-spacing:24.037520pt;}
.ws7_c01079{word-spacing:24.356320pt;}
.ws14_c01079{word-spacing:25.567760pt;}
.ws1c_c01079{word-spacing:26.036640pt;}
.ws1d_c01079{word-spacing:26.621136pt;}
.ws18_c01079{word-spacing:26.970480pt;}
.ws16_c01079{word-spacing:29.265840pt;}
.ws20_c01079{word-spacing:50.372928pt;}
._0_c01079{margin-left:-36.024400pt;}
._5_c01079{margin-left:-33.346480pt;}
._3_c01079{margin-left:-31.369920pt;}
._11_c01079{margin-left:-27.325440pt;}
._e_c01079{margin-left:-25.759040pt;}
._7_c01079{margin-left:-24.356320pt;}
._10_c01079{margin-left:-20.301093pt;}
._6_c01079{margin-left:-7.077360pt;}
._8_c01079{margin-left:-5.547120pt;}
._9_c01079{margin-left:-3.761840pt;}
._c_c01079{margin-left:-2.614160pt;}
._2_c01079{margin-left:-1.721520pt;}
._12_c01079{width:0.889899pt;}
._4_c01079{width:1.849040pt;}
._a_c01079{width:3.124240pt;}
._f_c01079{width:4.251547pt;}
._d_c01079{width:28.373200pt;}
._b_c01079{width:70.518560pt;}
._1_c01079{width:413.105280pt;}
.fs2_c01079{font-size:37.194667pt;}
.fs1_c01079{font-size:42.506667pt;}
.fs3_c01079{font-size:53.136000pt;}
.fs0_c01079{font-size:63.760000pt;}
.y0_c01079{bottom:0.000000pt;}
.y26_c01079{bottom:102.598667pt;}
.y25_c01079{bottom:113.717333pt;}
.y24_c01079{bottom:129.658667pt;}
.y23_c01079{bottom:150.418667pt;}
.y22_c01079{bottom:161.538667pt;}
.y21_c01079{bottom:182.300000pt;}
.y20_c01079{bottom:193.418667pt;}
.y1f_c01079{bottom:214.180000pt;}
.y1e_c01079{bottom:237.962667pt;}
.y1d_c01079{bottom:261.866667pt;}
.y1c_c01079{bottom:285.769333pt;}
.y1b_c01079{bottom:309.672000pt;}
.y1a_c01079{bottom:333.574667pt;}
.y19_c01079{bottom:357.478667pt;}
.y18_c01079{bottom:381.381333pt;}
.y17_c01079{bottom:405.284000pt;}
.y16_c01079{bottom:446.456000pt;}
.y15_c01079{bottom:470.358667pt;}
.y14_c01079{bottom:494.261333pt;}
.y13_c01079{bottom:518.164000pt;}
.y12_c01079{bottom:542.068000pt;}
.y11_c01079{bottom:565.970667pt;}
.y10_c01079{bottom:589.873333pt;}
.yf_c01079{bottom:613.776000pt;}
.ye_c01079{bottom:644.542667pt;}
.yd_c01079{bottom:694.577333pt;}
.yc_c01079{bottom:718.480000pt;}
.yb_c01079{bottom:742.382667pt;}
.ya_c01079{bottom:766.286667pt;}
.y9_c01079{bottom:790.189333pt;}
.y8_c01079{bottom:814.092000pt;}
.y7_c01079{bottom:837.994667pt;}
.y6_c01079{bottom:861.898667pt;}
.y5_c01079{bottom:885.801333pt;}
.y4_c01079{bottom:909.704000pt;}
.y3_c01079{bottom:949.546667pt;}
.y2_c01079{bottom:973.450667pt;}
.y1_c01079{bottom:1032.964000pt;}
.h5_c01079{height:25.143595pt;}
.h6_c01079{height:39.852000pt;}
.h2_c01079{height:47.820000pt;}
.h3_c01079{height:51.870507pt;}
.h4_c01079{height:51.875840pt;}
.h1_c01079{height:1123.333333pt;}
.h0_c01079{height:1123.653333pt;}
.w0_c01079{width:794.550667pt;}
.w1_c01079{width:794.666667pt;}
.x0_c01079{left:0.000000pt;}
.x1_c01079{left:113.385333pt;}
.x5_c01079{left:126.042667pt;}
.x2_c01079{left:142.078667pt;}
.x4_c01079{left:152.405333pt;}
.x3_c01079{left:175.817333pt;}
}





/* 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_a9cc0b874bb5f61471dd7f1a.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.001000;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_f85b7d86a0ff2d5e19cef7ab.woff2')format("woff");}.ff2_c01080{font-family:ff2_c01080;line-height:1.001000;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_c308ab9c76e36298b89c24c2.woff2')format("woff");}.ff3_c01080{font-family:ff3_c01080;line-height:0.697000;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_c01080;src:url('chunks/assets/font_6cb43e0bea0426be2584769a.woff2')format("woff");}.ff4_c01080{font-family:ff4_c01080;line-height:1.001000;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_c01080;src:url('chunks/assets/font_d4d755b7ce591fa55faac7aa.woff2')format("woff");}.ff5_c01080{font-family:ff5_c01080;line-height:0.696000;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_c01080;src:url('chunks/assets/font_1eed25b5bee21fc30c9cd1c0.woff2')format("woff");}.ff6_c01080{font-family:ff6_c01080;line-height:1.000000;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_c01080;src:url('chunks/assets/font_f0795a2cafd52dfcb958807e.woff2')format("woff");}.ff7_c01080{font-family:ff7_c01080;line-height:1.000000;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);}
.v2_c01080{vertical-align:-21.696000px;}
.v0_c01080{vertical-align:0.000000px;}
.v1_c01080{vertical-align:26.034000px;}
.ls1_c01080{letter-spacing:0.000000px;}
.ls0_c01080{letter-spacing:20.773440px;}
.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;}
}
.ws1_c01080{word-spacing:-0.071730px;}
.ws2b_c01080{word-spacing:-0.059778px;}
.wsf_c01080{word-spacing:-0.047820px;}
.ws22_c01080{word-spacing:-0.041844px;}
.ws2e_c01080{word-spacing:0.000000px;}
.wsb_c01080{word-spacing:16.282710px;}
.wsc_c01080{word-spacing:16.354440px;}
.ws1d_c01080{word-spacing:17.502120px;}
.ws1c_c01080{word-spacing:18.075960px;}
.ws9_c01080{word-spacing:18.219420px;}
.ws15_c01080{word-spacing:19.008450px;}
.ws16_c01080{word-spacing:19.080180px;}
.ws26_c01080{word-spacing:19.188738px;}
.ws6_c01080{word-spacing:19.367100px;}
.ws2a_c01080{word-spacing:19.843830px;}
.ws28_c01080{word-spacing:19.846296px;}
.ws27_c01080{word-spacing:20.683188px;}
.ws20_c01080{word-spacing:20.729970px;}
.ws18_c01080{word-spacing:21.088620px;}
.ws4_c01080{word-spacing:21.447270px;}
.wsd_c01080{word-spacing:21.519000px;}
.wse_c01080{word-spacing:21.805920px;}
.ws29_c01080{word-spacing:21.998304px;}
.ws21_c01080{word-spacing:22.594950px;}
.ws2_c01080{word-spacing:22.738410px;}
.ws2c_c01080{word-spacing:22.775418px;}
.ws1f_c01080{word-spacing:23.168790px;}
.ws5_c01080{word-spacing:23.312250px;}
.ws17_c01080{word-spacing:23.670900px;}
.ws14_c01080{word-spacing:23.814360px;}
.ws13_c01080{word-spacing:23.886090px;}
.ws7_c01080{word-spacing:24.244740px;}
.ws12_c01080{word-spacing:24.746850px;}
.ws1e_c01080{word-spacing:24.890310px;}
.ws23_c01080{word-spacing:25.046982px;}
.ws10_c01080{word-spacing:26.109720px;}
.ws0_c01080{word-spacing:26.827020px;}
.ws3_c01080{word-spacing:27.687780px;}
.ws8_c01080{word-spacing:27.902970px;}
.ws24_c01080{word-spacing:28.633662px;}
.ws2d_c01080{word-spacing:29.052108px;}
.ws1a_c01080{word-spacing:29.265840px;}
.ws25_c01080{word-spacing:29.410776px;}
.ws11_c01080{word-spacing:29.552760px;}
.ws19_c01080{word-spacing:30.485250px;}
.wsa_c01080{word-spacing:33.354450px;}
.ws1b_c01080{word-spacing:33.569640px;}
._0_c01080{margin-left:-40.527450px;}
._8_c01080{margin-left:-36.869220px;}
._5_c01080{margin-left:-35.075970px;}
._4_c01080{margin-left:-33.210990px;}
._10_c01080{margin-left:-31.144842px;}
._f_c01080{margin-left:-29.432322px;}
._b_c01080{margin-left:-27.400860px;}
._a_c01080{margin-left:-7.962030px;}
._c_c01080{margin-left:-6.168780px;}
._7_c01080{margin-left:-4.016880px;}
._3_c01080{margin-left:-2.008440px;}
._e_c01080{margin-left:-1.004472px;}
._2_c01080{width:1.864980px;}
._6_c01080{width:3.658230px;}
._9_c01080{width:25.966260px;}
._d_c01080{width:33.696330px;}
._1_c01080{width:464.743440px;}
.fc0_c01080{color:rgb(0,0,0);}
.fs2_c01080{font-size:41.844000px;}
.fs1_c01080{font-size:47.820000px;}
.fs3_c01080{font-size:59.778000px;}
.fs0_c01080{font-size:71.730000px;}
.y0_c01080{bottom:0.000000px;}
.y29_c01080{bottom:102.810000px;}
.y28_c01080{bottom:126.166500px;}
.y27_c01080{bottom:138.675000px;}
.y26_c01080{bottom:162.031500px;}
.y25_c01080{bottom:174.541500px;}
.y24_c01080{bottom:192.474000px;}
.y23_c01080{bottom:210.406500px;}
.y22_c01080{bottom:233.763000px;}
.y21_c01080{bottom:261.514500px;}
.y20_c01080{bottom:288.406500px;}
.y1f_c01080{bottom:315.297000px;}
.y1e_c01080{bottom:342.187500px;}
.y1d_c01080{bottom:369.078000px;}
.y1c_c01080{bottom:395.970000px;}
.y1b_c01080{bottom:422.860500px;}
.y1a_c01080{bottom:449.751000px;}
.y19_c01080{bottom:476.641500px;}
.y18_c01080{bottom:503.533500px;}
.y17_c01080{bottom:530.424000px;}
.y16_c01080{bottom:557.314500px;}
.y15_c01080{bottom:584.205000px;}
.y14_c01080{bottom:611.095500px;}
.y13_c01080{bottom:637.987500px;}
.y12_c01080{bottom:664.878000px;}
.y11_c01080{bottom:691.768500px;}
.y10_c01080{bottom:718.659000px;}
.yf_c01080{bottom:745.551000px;}
.ye_c01080{bottom:772.441500px;}
.yd_c01080{bottom:799.332000px;}
.yc_c01080{bottom:826.222500px;}
.yb_c01080{bottom:853.114500px;}
.ya_c01080{bottom:880.005000px;}
.y9_c01080{bottom:906.895500px;}
.y8_c01080{bottom:933.786000px;}
.y7_c01080{bottom:960.678000px;}
.y6_c01080{bottom:987.568500px;}
.y5_c01080{bottom:1014.459000px;}
.y4_c01080{bottom:1041.349500px;}
.y3_c01080{bottom:1068.240000px;}
.y2_c01080{bottom:1095.132000px;}
.y1_c01080{bottom:1162.084500px;}
.h5_c01080{height:28.286544px;}
.h6_c01080{height:44.833500px;}
.h2_c01080{height:53.797500px;}
.h4_c01080{height:58.354320px;}
.h3_c01080{height:58.360320px;}
.h1_c01080{height:1263.750000px;}
.h0_c01080{height:1264.110000px;}
.w0_c01080{width:893.869500px;}
.w1_c01080{width:894.000000px;}
.x0_c01080{left:0.000000px;}
.x1_c01080{left:127.558500px;}
.x3_c01080{left:141.798000px;}
.x2_c01080{left:159.838500px;}
@media print{
.v2_c01080{vertical-align:-19.285333pt;}
.v0_c01080{vertical-align:0.000000pt;}
.v1_c01080{vertical-align:23.141333pt;}
.ls1_c01080{letter-spacing:0.000000pt;}
.ls0_c01080{letter-spacing:18.465280pt;}
.ws1_c01080{word-spacing:-0.063760pt;}
.ws2b_c01080{word-spacing:-0.053136pt;}
.wsf_c01080{word-spacing:-0.042507pt;}
.ws22_c01080{word-spacing:-0.037195pt;}
.ws2e_c01080{word-spacing:0.000000pt;}
.wsb_c01080{word-spacing:14.473520pt;}
.wsc_c01080{word-spacing:14.537280pt;}
.ws1d_c01080{word-spacing:15.557440pt;}
.ws1c_c01080{word-spacing:16.067520pt;}
.ws9_c01080{word-spacing:16.195040pt;}
.ws15_c01080{word-spacing:16.896400pt;}
.ws16_c01080{word-spacing:16.960160pt;}
.ws26_c01080{word-spacing:17.056656pt;}
.ws6_c01080{word-spacing:17.215200pt;}
.ws2a_c01080{word-spacing:17.638960pt;}
.ws28_c01080{word-spacing:17.641152pt;}
.ws27_c01080{word-spacing:18.385056pt;}
.ws20_c01080{word-spacing:18.426640pt;}
.ws18_c01080{word-spacing:18.745440pt;}
.ws4_c01080{word-spacing:19.064240pt;}
.wsd_c01080{word-spacing:19.128000pt;}
.wse_c01080{word-spacing:19.383040pt;}
.ws29_c01080{word-spacing:19.554048pt;}
.ws21_c01080{word-spacing:20.084400pt;}
.ws2_c01080{word-spacing:20.211920pt;}
.ws2c_c01080{word-spacing:20.244816pt;}
.ws1f_c01080{word-spacing:20.594480pt;}
.ws5_c01080{word-spacing:20.722000pt;}
.ws17_c01080{word-spacing:21.040800pt;}
.ws14_c01080{word-spacing:21.168320pt;}
.ws13_c01080{word-spacing:21.232080pt;}
.ws7_c01080{word-spacing:21.550880pt;}
.ws12_c01080{word-spacing:21.997200pt;}
.ws1e_c01080{word-spacing:22.124720pt;}
.ws23_c01080{word-spacing:22.263984pt;}
.ws10_c01080{word-spacing:23.208640pt;}
.ws0_c01080{word-spacing:23.846240pt;}
.ws3_c01080{word-spacing:24.611360pt;}
.ws8_c01080{word-spacing:24.802640pt;}
.ws24_c01080{word-spacing:25.452144pt;}
.ws2d_c01080{word-spacing:25.824096pt;}
.ws1a_c01080{word-spacing:26.014080pt;}
.ws25_c01080{word-spacing:26.142912pt;}
.ws11_c01080{word-spacing:26.269120pt;}
.ws19_c01080{word-spacing:27.098000pt;}
.wsa_c01080{word-spacing:29.648400pt;}
.ws1b_c01080{word-spacing:29.839680pt;}
._0_c01080{margin-left:-36.024400pt;}
._8_c01080{margin-left:-32.772640pt;}
._5_c01080{margin-left:-31.178640pt;}
._4_c01080{margin-left:-29.520880pt;}
._10_c01080{margin-left:-27.684304pt;}
._f_c01080{margin-left:-26.162064pt;}
._b_c01080{margin-left:-24.356320pt;}
._a_c01080{margin-left:-7.077360pt;}
._c_c01080{margin-left:-5.483360pt;}
._7_c01080{margin-left:-3.570560pt;}
._3_c01080{margin-left:-1.785280pt;}
._e_c01080{margin-left:-0.892864pt;}
._2_c01080{width:1.657760pt;}
._6_c01080{width:3.251760pt;}
._9_c01080{width:23.081120pt;}
._d_c01080{width:29.952293pt;}
._1_c01080{width:413.105280pt;}
.fs2_c01080{font-size:37.194667pt;}
.fs1_c01080{font-size:42.506667pt;}
.fs3_c01080{font-size:53.136000pt;}
.fs0_c01080{font-size:63.760000pt;}
.y0_c01080{bottom:0.000000pt;}
.y29_c01080{bottom:91.386667pt;}
.y28_c01080{bottom:112.148000pt;}
.y27_c01080{bottom:123.266667pt;}
.y26_c01080{bottom:144.028000pt;}
.y25_c01080{bottom:155.148000pt;}
.y24_c01080{bottom:171.088000pt;}
.y23_c01080{bottom:187.028000pt;}
.y22_c01080{bottom:207.789333pt;}
.y21_c01080{bottom:232.457333pt;}
.y20_c01080{bottom:256.361333pt;}
.y1f_c01080{bottom:280.264000pt;}
.y1e_c01080{bottom:304.166667pt;}
.y1d_c01080{bottom:328.069333pt;}
.y1c_c01080{bottom:351.973333pt;}
.y1b_c01080{bottom:375.876000pt;}
.y1a_c01080{bottom:399.778667pt;}
.y19_c01080{bottom:423.681333pt;}
.y18_c01080{bottom:447.585333pt;}
.y17_c01080{bottom:471.488000pt;}
.y16_c01080{bottom:495.390667pt;}
.y15_c01080{bottom:519.293333pt;}
.y14_c01080{bottom:543.196000pt;}
.y13_c01080{bottom:567.100000pt;}
.y12_c01080{bottom:591.002667pt;}
.y11_c01080{bottom:614.905333pt;}
.y10_c01080{bottom:638.808000pt;}
.yf_c01080{bottom:662.712000pt;}
.ye_c01080{bottom:686.614667pt;}
.yd_c01080{bottom:710.517333pt;}
.yc_c01080{bottom:734.420000pt;}
.yb_c01080{bottom:758.324000pt;}
.ya_c01080{bottom:782.226667pt;}
.y9_c01080{bottom:806.129333pt;}
.y8_c01080{bottom:830.032000pt;}
.y7_c01080{bottom:853.936000pt;}
.y6_c01080{bottom:877.838667pt;}
.y5_c01080{bottom:901.741333pt;}
.y4_c01080{bottom:925.644000pt;}
.y3_c01080{bottom:949.546667pt;}
.y2_c01080{bottom:973.450667pt;}
.y1_c01080{bottom:1032.964000pt;}
.h5_c01080{height:25.143595pt;}
.h6_c01080{height:39.852000pt;}
.h2_c01080{height:47.820000pt;}
.h4_c01080{height:51.870507pt;}
.h3_c01080{height:51.875840pt;}
.h1_c01080{height:1123.333333pt;}
.h0_c01080{height:1123.653333pt;}
.w0_c01080{width:794.550667pt;}
.w1_c01080{width:794.666667pt;}
.x0_c01080{left:0.000000pt;}
.x1_c01080{left:113.385333pt;}
.x3_c01080{left:126.042667pt;}
.x2_c01080{left:142.078667pt;}
}





/* 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_5340cd4c882b5254c93a4b62.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.001000;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_22dc0a186d4d05f3827e01ee.woff2')format("woff");}.ff2_c01081{font-family:ff2_c01081;line-height:1.001000;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_aaf735abf66bab89603e6e48.woff2')format("woff");}.ff3_c01081{font-family:ff3_c01081;line-height:1.001000;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_c01081;src:url('chunks/assets/font_f37659656492cf2ea90a8433.woff2')format("woff");}.ff4_c01081{font-family:ff4_c01081;line-height:0.697000;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_c01081;src:url('chunks/assets/font_3c92d215b813ad2fcae529dd.woff2')format("woff");}.ff5_c01081{font-family:ff5_c01081;line-height:1.000000;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_c01081;src:url('chunks/assets/font_86ccb9c18d847bb84bedf528.woff2')format("woff");}.ff6_c01081{font-family:ff6_c01081;line-height:0.696000;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_c01081;src:url('chunks/assets/font_df0ccd5204d113e35bf5a2bd.woff2')format("woff");}.ff7_c01081{font-family:ff7_c01081;line-height:1.000000;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);}
.v3_c01081{vertical-align:-21.696000px;}
.v0_c01081{vertical-align:0.000000px;}
.v2_c01081{vertical-align:18.132000px;}
.v4_c01081{vertical-align:21.690000px;}
.v1_c01081{vertical-align:26.034000px;}
.ls2_c01081{letter-spacing:0.000000px;}
.ls1_c01081{letter-spacing:24.142764px;}
.ls0_c01081{letter-spacing:31.369590px;}
.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;}
}
.ws1_c01081{word-spacing:-0.071730px;}
.ws31_c01081{word-spacing:-0.059778px;}
.ws2c_c01081{word-spacing:-0.041844px;}
.ws33_c01081{word-spacing:0.000000px;}
.ws2d_c01081{word-spacing:16.857396px;}
.wse_c01081{word-spacing:16.928280px;}
.ws12_c01081{word-spacing:17.789040px;}
.ws30_c01081{word-spacing:17.873622px;}
.ws2e_c01081{word-spacing:18.052956px;}
.ws15_c01081{word-spacing:18.362880px;}
.wsd_c01081{word-spacing:19.654020px;}
.ws2b_c01081{word-spacing:19.846296px;}
.ws32_c01081{word-spacing:19.906074px;}
.ws13_c01081{word-spacing:19.940940px;}
.ws16_c01081{word-spacing:20.443050px;}
.ws14_c01081{word-spacing:20.514780px;}
.ws29_c01081{word-spacing:21.041856px;}
.ws2f_c01081{word-spacing:21.101634px;}
.ws23_c01081{word-spacing:21.519000px;}
.ws9_c01081{word-spacing:21.949380px;}
.ws10_c01081{word-spacing:22.021110px;}
.ws24_c01081{word-spacing:22.523220px;}
.ws2a_c01081{word-spacing:22.596084px;}
.wsa_c01081{word-spacing:23.312250px;}
.ws1d_c01081{word-spacing:23.383980px;}
.ws27_c01081{word-spacing:23.731866px;}
.ws7_c01081{word-spacing:23.814360px;}
.wsc_c01081{word-spacing:24.890310px;}
.ws26_c01081{word-spacing:25.966260px;}
.ws28_c01081{word-spacing:26.541432px;}
.ws21_c01081{word-spacing:26.672340px;}
.ws1f_c01081{word-spacing:26.683560px;}
.ws0_c01081{word-spacing:26.827020px;}
.ws1a_c01081{word-spacing:27.544320px;}
.ws20_c01081{word-spacing:28.118160px;}
.ws22_c01081{word-spacing:28.405080px;}
.wsf_c01081{word-spacing:28.620270px;}
.ws19_c01081{word-spacing:28.907190px;}
.ws1e_c01081{word-spacing:29.122380px;}
.ws11_c01081{word-spacing:29.481030px;}
.ws17_c01081{word-spacing:29.696220px;}
.ws1b_c01081{word-spacing:30.413520px;}
.ws1c_c01081{word-spacing:30.628710px;}
.ws8_c01081{word-spacing:30.786600px;}
.ws18_c01081{word-spacing:30.915630px;}
.ws3_c01081{word-spacing:31.059090px;}
.ws5_c01081{word-spacing:31.274280px;}
.ws2_c01081{word-spacing:32.135040px;}
.ws25_c01081{word-spacing:32.708880px;}
.ws6_c01081{word-spacing:34.355340px;}
.ws4_c01081{word-spacing:36.463020px;}
.wsb_c01081{word-spacing:37.873440px;}
._0_c01081{margin-left:-40.527450px;}
._a_c01081{margin-left:-37.317840px;}
._6_c01081{margin-left:-35.825580px;}
._9_c01081{margin-left:-34.756740px;}
._11_c01081{margin-left:-33.162600px;}
._16_c01081{margin-left:-29.889000px;}
._3_c01081{margin-left:-28.692000px;}
._b_c01081{margin-left:-27.368550px;}
._17_c01081{margin-left:-23.583390px;}
._d_c01081{margin-left:-8.177220px;}
._2_c01081{margin-left:-7.173000px;}
._c_c01081{margin-left:-5.810130px;}
._12_c01081{margin-left:-4.647660px;}
._4_c01081{margin-left:-3.586500px;}
._7_c01081{margin-left:-1.864980px;}
._5_c01081{width:1.954950px;}
._18_c01081{width:3.021528px;}
._e_c01081{width:4.630140px;}
._f_c01081{width:5.763990px;}
._15_c01081{width:10.759500px;}
._8_c01081{width:27.402480px;}
._14_c01081{width:30.700440px;}
._13_c01081{width:31.917720px;}
._10_c01081{width:35.401950px;}
._1_c01081{width:464.743440px;}
.fc0_c01081{color:rgb(0,0,0);}
.fs3_c01081{font-size:41.844000px;}
.fs1_c01081{font-size:47.820000px;}
.fs2_c01081{font-size:59.778000px;}
.fs0_c01081{font-size:71.730000px;}
.y0_c01081{bottom:0.000000px;}
.y29_c01081{bottom:93.442500px;}
.y28_c01081{bottom:111.375000px;}
.y27_c01081{bottom:129.307500px;}
.y26_c01081{bottom:147.240000px;}
.y25_c01081{bottom:170.596500px;}
.y24_c01081{bottom:183.106500px;}
.y23_c01081{bottom:201.039000px;}
.y22_c01081{bottom:218.971500px;}
.y21_c01081{bottom:236.904000px;}
.y20_c01081{bottom:254.836500px;}
.y1f_c01081{bottom:285.718500px;}
.y1e_c01081{bottom:326.848500px;}
.y1d_c01081{bottom:353.740500px;}
.y1c_c01081{bottom:380.631000px;}
.y1b_c01081{bottom:407.521500px;}
.y1a_c01081{bottom:434.412000px;}
.y19_c01081{bottom:461.302500px;}
.y18_c01081{bottom:488.194500px;}
.y17_c01081{bottom:515.085000px;}
.y16_c01081{bottom:541.975500px;}
.y15_c01081{bottom:568.866000px;}
.y14_c01081{bottom:595.758000px;}
.y13_c01081{bottom:622.648500px;}
.y12_c01081{bottom:649.539000px;}
.y11_c01081{bottom:676.429500px;}
.y10_c01081{bottom:703.321500px;}
.yf_c01081{bottom:730.212000px;}
.ye_c01081{bottom:757.102500px;}
.yd_c01081{bottom:783.993000px;}
.yc_c01081{bottom:810.885000px;}
.yb_c01081{bottom:837.775500px;}
.ya_c01081{bottom:864.666000px;}
.y9_c01081{bottom:891.556500px;}
.y8_c01081{bottom:918.447000px;}
.y7_c01081{bottom:945.339000px;}
.y6_c01081{bottom:972.229500px;}
.y5_c01081{bottom:1014.459000px;}
.y4_c01081{bottom:1041.349500px;}
.y3_c01081{bottom:1068.240000px;}
.y2_c01081{bottom:1095.132000px;}
.y1_c01081{bottom:1162.084500px;}
.h6_c01081{height:28.286544px;}
.h5_c01081{height:44.833500px;}
.h7_c01081{height:49.976544px;}
.h2_c01081{height:53.797500px;}
.h3_c01081{height:58.360320px;}
.h4_c01081{height:71.929500px;}
.h1_c01081{height:1263.750000px;}
.h0_c01081{height:1264.110000px;}
.w0_c01081{width:893.869500px;}
.w1_c01081{width:894.000000px;}
.x0_c01081{left:0.000000px;}
.x1_c01081{left:127.558500px;}
.x5_c01081{left:141.798000px;}
.x3_c01081{left:159.838500px;}
.x4_c01081{left:197.794500px;}
.x2_c01081{left:423.319500px;}
@media print{
.v3_c01081{vertical-align:-19.285333pt;}
.v0_c01081{vertical-align:0.000000pt;}
.v2_c01081{vertical-align:16.117333pt;}
.v4_c01081{vertical-align:19.280000pt;}
.v1_c01081{vertical-align:23.141333pt;}
.ls2_c01081{letter-spacing:0.000000pt;}
.ls1_c01081{letter-spacing:21.460235pt;}
.ls0_c01081{letter-spacing:27.884080pt;}
.ws1_c01081{word-spacing:-0.063760pt;}
.ws31_c01081{word-spacing:-0.053136pt;}
.ws2c_c01081{word-spacing:-0.037195pt;}
.ws33_c01081{word-spacing:0.000000pt;}
.ws2d_c01081{word-spacing:14.984352pt;}
.wse_c01081{word-spacing:15.047360pt;}
.ws12_c01081{word-spacing:15.812480pt;}
.ws30_c01081{word-spacing:15.887664pt;}
.ws2e_c01081{word-spacing:16.047072pt;}
.ws15_c01081{word-spacing:16.322560pt;}
.wsd_c01081{word-spacing:17.470240pt;}
.ws2b_c01081{word-spacing:17.641152pt;}
.ws32_c01081{word-spacing:17.694288pt;}
.ws13_c01081{word-spacing:17.725280pt;}
.ws16_c01081{word-spacing:18.171600pt;}
.ws14_c01081{word-spacing:18.235360pt;}
.ws29_c01081{word-spacing:18.703872pt;}
.ws2f_c01081{word-spacing:18.757008pt;}
.ws23_c01081{word-spacing:19.128000pt;}
.ws9_c01081{word-spacing:19.510560pt;}
.ws10_c01081{word-spacing:19.574320pt;}
.ws24_c01081{word-spacing:20.020640pt;}
.ws2a_c01081{word-spacing:20.085408pt;}
.wsa_c01081{word-spacing:20.722000pt;}
.ws1d_c01081{word-spacing:20.785760pt;}
.ws27_c01081{word-spacing:21.094992pt;}
.ws7_c01081{word-spacing:21.168320pt;}
.wsc_c01081{word-spacing:22.124720pt;}
.ws26_c01081{word-spacing:23.081120pt;}
.ws28_c01081{word-spacing:23.592384pt;}
.ws21_c01081{word-spacing:23.708747pt;}
.ws1f_c01081{word-spacing:23.718720pt;}
.ws0_c01081{word-spacing:23.846240pt;}
.ws1a_c01081{word-spacing:24.483840pt;}
.ws20_c01081{word-spacing:24.993920pt;}
.ws22_c01081{word-spacing:25.248960pt;}
.wsf_c01081{word-spacing:25.440240pt;}
.ws19_c01081{word-spacing:25.695280pt;}
.ws1e_c01081{word-spacing:25.886560pt;}
.ws11_c01081{word-spacing:26.205360pt;}
.ws17_c01081{word-spacing:26.396640pt;}
.ws1b_c01081{word-spacing:27.034240pt;}
.ws1c_c01081{word-spacing:27.225520pt;}
.ws8_c01081{word-spacing:27.365867pt;}
.ws18_c01081{word-spacing:27.480560pt;}
.ws3_c01081{word-spacing:27.608080pt;}
.ws5_c01081{word-spacing:27.799360pt;}
.ws2_c01081{word-spacing:28.564480pt;}
.ws25_c01081{word-spacing:29.074560pt;}
.ws6_c01081{word-spacing:30.538080pt;}
.ws4_c01081{word-spacing:32.411573pt;}
.wsb_c01081{word-spacing:33.665280pt;}
._0_c01081{margin-left:-36.024400pt;}
._a_c01081{margin-left:-33.171413pt;}
._6_c01081{margin-left:-31.844960pt;}
._9_c01081{margin-left:-30.894880pt;}
._11_c01081{margin-left:-29.477867pt;}
._16_c01081{margin-left:-26.568000pt;}
._3_c01081{margin-left:-25.504000pt;}
._b_c01081{margin-left:-24.327600pt;}
._17_c01081{margin-left:-20.963013pt;}
._d_c01081{margin-left:-7.268640pt;}
._2_c01081{margin-left:-6.376000pt;}
._c_c01081{margin-left:-5.164560pt;}
._12_c01081{margin-left:-4.131253pt;}
._4_c01081{margin-left:-3.188000pt;}
._7_c01081{margin-left:-1.657760pt;}
._5_c01081{width:1.737733pt;}
._18_c01081{width:2.685803pt;}
._e_c01081{width:4.115680pt;}
._f_c01081{width:5.123547pt;}
._15_c01081{width:9.564000pt;}
._8_c01081{width:24.357760pt;}
._14_c01081{width:27.289280pt;}
._13_c01081{width:28.371307pt;}
._10_c01081{width:31.468400pt;}
._1_c01081{width:413.105280pt;}
.fs3_c01081{font-size:37.194667pt;}
.fs1_c01081{font-size:42.506667pt;}
.fs2_c01081{font-size:53.136000pt;}
.fs0_c01081{font-size:63.760000pt;}
.y0_c01081{bottom:0.000000pt;}
.y29_c01081{bottom:83.060000pt;}
.y28_c01081{bottom:99.000000pt;}
.y27_c01081{bottom:114.940000pt;}
.y26_c01081{bottom:130.880000pt;}
.y25_c01081{bottom:151.641333pt;}
.y24_c01081{bottom:162.761333pt;}
.y23_c01081{bottom:178.701333pt;}
.y22_c01081{bottom:194.641333pt;}
.y21_c01081{bottom:210.581333pt;}
.y20_c01081{bottom:226.521333pt;}
.y1f_c01081{bottom:253.972000pt;}
.y1e_c01081{bottom:290.532000pt;}
.y1d_c01081{bottom:314.436000pt;}
.y1c_c01081{bottom:338.338667pt;}
.y1b_c01081{bottom:362.241333pt;}
.y1a_c01081{bottom:386.144000pt;}
.y19_c01081{bottom:410.046667pt;}
.y18_c01081{bottom:433.950667pt;}
.y17_c01081{bottom:457.853333pt;}
.y16_c01081{bottom:481.756000pt;}
.y15_c01081{bottom:505.658667pt;}
.y14_c01081{bottom:529.562667pt;}
.y13_c01081{bottom:553.465333pt;}
.y12_c01081{bottom:577.368000pt;}
.y11_c01081{bottom:601.270667pt;}
.y10_c01081{bottom:625.174667pt;}
.yf_c01081{bottom:649.077333pt;}
.ye_c01081{bottom:672.980000pt;}
.yd_c01081{bottom:696.882667pt;}
.yc_c01081{bottom:720.786667pt;}
.yb_c01081{bottom:744.689333pt;}
.ya_c01081{bottom:768.592000pt;}
.y9_c01081{bottom:792.494667pt;}
.y8_c01081{bottom:816.397333pt;}
.y7_c01081{bottom:840.301333pt;}
.y6_c01081{bottom:864.204000pt;}
.y5_c01081{bottom:901.741333pt;}
.y4_c01081{bottom:925.644000pt;}
.y3_c01081{bottom:949.546667pt;}
.y2_c01081{bottom:973.450667pt;}
.y1_c01081{bottom:1032.964000pt;}
.h6_c01081{height:25.143595pt;}
.h5_c01081{height:39.852000pt;}
.h7_c01081{height:44.423595pt;}
.h2_c01081{height:47.820000pt;}
.h3_c01081{height:51.875840pt;}
.h4_c01081{height:63.937333pt;}
.h1_c01081{height:1123.333333pt;}
.h0_c01081{height:1123.653333pt;}
.w0_c01081{width:794.550667pt;}
.w1_c01081{width:794.666667pt;}
.x0_c01081{left:0.000000pt;}
.x1_c01081{left:113.385333pt;}
.x5_c01081{left:126.042667pt;}
.x3_c01081{left:142.078667pt;}
.x4_c01081{left:175.817333pt;}
.x2_c01081{left:376.284000pt;}
}





/* 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_413cdf6d4a679340823c8628.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.001000;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_d707c4ea1fc077c26b61e713.woff2')format("woff");}.ff2_c01082{font-family:ff2_c01082;line-height:1.001000;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_7a1cf39307ad9897a1a40cc8.woff2')format("woff");}.ff3_c01082{font-family:ff3_c01082;line-height:1.001000;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_c01082;src:url('chunks/assets/font_f37659656492cf2ea90a8433.woff2')format("woff");}.ff4_c01082{font-family:ff4_c01082;line-height:0.697000;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_c01082;src:url('chunks/assets/font_86ccb9c18d847bb84bedf528.woff2')format("woff");}.ff5_c01082{font-family:ff5_c01082;line-height:0.696000;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_c01082;src:url('chunks/assets/font_9ac2464e0d1e504b7eae4ceb.woff2')format("woff");}.ff6_c01082{font-family:ff6_c01082;line-height:1.000000;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_c01082;src:url('chunks/assets/font_f1a85048f0ee53f4bae3b081.woff2')format("woff");}.ff7_c01082{font-family:ff7_c01082;line-height:1.000000;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);}
.v2_c01082{vertical-align:-21.690000px;}
.v0_c01082{vertical-align:0.000000px;}
.v3_c01082{vertical-align:21.690000px;}
.v1_c01082{vertical-align:26.034000px;}
.ls1_c01082{letter-spacing:0.000000px;}
.ls0_c01082{letter-spacing:22.930764px;}
.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:-0.071730px;}
.ws5_c01082{word-spacing:-0.047820px;}
.ws1d_c01082{word-spacing:-0.041844px;}
.ws23_c01082{word-spacing:0.000000px;}
.ws1e_c01082{word-spacing:14.645610px;}
.wsa_c01082{word-spacing:16.784820px;}
.wsd_c01082{word-spacing:18.793260px;}
.ws4_c01082{word-spacing:18.864990px;}
.ws10_c01082{word-spacing:18.936720px;}
.ws2_c01082{word-spacing:19.438830px;}
.ws21_c01082{word-spacing:19.846296px;}
.wsf_c01082{word-spacing:20.012670px;}
.ws22_c01082{word-spacing:21.280968px;}
.ws1f_c01082{word-spacing:21.340746px;}
.ws16_c01082{word-spacing:22.092840px;}
.ws1c_c01082{word-spacing:22.451490px;}
.ws7_c01082{word-spacing:22.523220px;}
.ws20_c01082{word-spacing:22.655862px;}
.ws1a_c01082{word-spacing:22.953600px;}
.ws12_c01082{word-spacing:23.240520px;}
.ws9_c01082{word-spacing:23.312250px;}
.ws14_c01082{word-spacing:23.383980px;}
.ws8_c01082{word-spacing:23.957820px;}
.ws15_c01082{word-spacing:24.101280px;}
.wsc_c01082{word-spacing:25.105500px;}
.ws1b_c01082{word-spacing:25.177230px;}
.wsb_c01082{word-spacing:25.464150px;}
.ws13_c01082{word-spacing:25.751070px;}
.ws0_c01082{word-spacing:26.827020px;}
.ws3_c01082{word-spacing:27.400860px;}
.ws6_c01082{word-spacing:27.974700px;}
.wse_c01082{word-spacing:28.261620px;}
.ws11_c01082{word-spacing:28.907190px;}
.ws18_c01082{word-spacing:29.265840px;}
.ws19_c01082{word-spacing:32.135040px;}
.ws17_c01082{word-spacing:32.708880px;}
._0_c01082{margin-left:-40.527450px;}
._4_c01082{margin-left:-37.658250px;}
._7_c01082{margin-left:-35.506350px;}
._f_c01082{margin-left:-34.215210px;}
._12_c01082{margin-left:-33.210990px;}
._d_c01082{margin-left:-30.413520px;}
._9_c01082{margin-left:-28.692000px;}
._10_c01082{margin-left:-27.113940px;}
._13_c01082{margin-left:-23.091540px;}
._8_c01082{margin-left:-7.316460px;}
._e_c01082{margin-left:-5.881860px;}
._14_c01082{margin-left:-4.602906px;}
._2_c01082{margin-left:-3.586500px;}
._6_c01082{margin-left:-1.936710px;}
._3_c01082{width:1.793250px;}
._5_c01082{width:3.514770px;}
._a_c01082{width:4.731720px;}
._11_c01082{width:21.447270px;}
._c_c01082{width:23.599170px;}
._b_c01082{width:29.983140px;}
._1_c01082{width:464.743440px;}
.fc0_c01082{color:rgb(0,0,0);}
.fs2_c01082{font-size:41.844000px;}
.fs1_c01082{font-size:47.820000px;}
.fs3_c01082{font-size:59.778000px;}
.fs0_c01082{font-size:71.730000px;}
.y0_c01082{bottom:0.000000px;}
.y26_c01082{bottom:102.312000px;}
.y25_c01082{bottom:125.668500px;}
.y24_c01082{bottom:138.177000px;}
.y23_c01082{bottom:156.111000px;}
.y22_c01082{bottom:179.466000px;}
.y21_c01082{bottom:206.223000px;}
.y20_c01082{bottom:233.113500px;}
.y1f_c01082{bottom:260.004000px;}
.y1e_c01082{bottom:286.894500px;}
.y1d_c01082{bottom:313.786500px;}
.y1c_c01082{bottom:340.677000px;}
.y1b_c01082{bottom:367.567500px;}
.y1a_c01082{bottom:394.458000px;}
.y19_c01082{bottom:421.348500px;}
.y18_c01082{bottom:448.240500px;}
.y17_c01082{bottom:475.131000px;}
.y16_c01082{bottom:502.021500px;}
.y15_c01082{bottom:528.912000px;}
.y14_c01082{bottom:555.804000px;}
.y13_c01082{bottom:582.694500px;}
.y12_c01082{bottom:609.585000px;}
.y11_c01082{bottom:636.475500px;}
.y10_c01082{bottom:681.300000px;}
.yf_c01082{bottom:708.190500px;}
.ye_c01082{bottom:735.081000px;}
.yd_c01082{bottom:761.971500px;}
.yc_c01082{bottom:788.863500px;}
.yb_c01082{bottom:815.754000px;}
.ya_c01082{bottom:842.644500px;}
.y9_c01082{bottom:869.535000px;}
.y8_c01082{bottom:896.427000px;}
.y7_c01082{bottom:923.317500px;}
.y6_c01082{bottom:950.208000px;}
.y5_c01082{bottom:977.098500px;}
.y4_c01082{bottom:1041.349500px;}
.y3_c01082{bottom:1068.240000px;}
.y2_c01082{bottom:1095.132000px;}
.y1_c01082{bottom:1162.084500px;}
.h5_c01082{height:28.286544px;}
.h6_c01082{height:44.833500px;}
.h7_c01082{height:49.976544px;}
.h2_c01082{height:53.797500px;}
.h4_c01082{height:58.354320px;}
.h3_c01082{height:58.360320px;}
.h1_c01082{height:1263.750000px;}
.h0_c01082{height:1264.110000px;}
.w0_c01082{width:893.869500px;}
.w1_c01082{width:894.000000px;}
.x0_c01082{left:0.000000px;}
.x1_c01082{left:127.558500px;}
.x4_c01082{left:141.798000px;}
.x3_c01082{left:159.838500px;}
.x2_c01082{left:171.456000px;}
@media print{
.v2_c01082{vertical-align:-19.280000pt;}
.v0_c01082{vertical-align:0.000000pt;}
.v3_c01082{vertical-align:19.280000pt;}
.v1_c01082{vertical-align:23.141333pt;}
.ls1_c01082{letter-spacing:0.000000pt;}
.ls0_c01082{letter-spacing:20.382901pt;}
.ws1_c01082{word-spacing:-0.063760pt;}
.ws5_c01082{word-spacing:-0.042507pt;}
.ws1d_c01082{word-spacing:-0.037195pt;}
.ws23_c01082{word-spacing:0.000000pt;}
.ws1e_c01082{word-spacing:13.018320pt;}
.wsa_c01082{word-spacing:14.919840pt;}
.wsd_c01082{word-spacing:16.705120pt;}
.ws4_c01082{word-spacing:16.768880pt;}
.ws10_c01082{word-spacing:16.832640pt;}
.ws2_c01082{word-spacing:17.278960pt;}
.ws21_c01082{word-spacing:17.641152pt;}
.wsf_c01082{word-spacing:17.789040pt;}
.ws22_c01082{word-spacing:18.916416pt;}
.ws1f_c01082{word-spacing:18.969552pt;}
.ws16_c01082{word-spacing:19.638080pt;}
.ws1c_c01082{word-spacing:19.956880pt;}
.ws7_c01082{word-spacing:20.020640pt;}
.ws20_c01082{word-spacing:20.138544pt;}
.ws1a_c01082{word-spacing:20.403200pt;}
.ws12_c01082{word-spacing:20.658240pt;}
.ws9_c01082{word-spacing:20.722000pt;}
.ws14_c01082{word-spacing:20.785760pt;}
.ws8_c01082{word-spacing:21.295840pt;}
.ws15_c01082{word-spacing:21.423360pt;}
.wsc_c01082{word-spacing:22.316000pt;}
.ws1b_c01082{word-spacing:22.379760pt;}
.wsb_c01082{word-spacing:22.634800pt;}
.ws13_c01082{word-spacing:22.889840pt;}
.ws0_c01082{word-spacing:23.846240pt;}
.ws3_c01082{word-spacing:24.356320pt;}
.ws6_c01082{word-spacing:24.866400pt;}
.wse_c01082{word-spacing:25.121440pt;}
.ws11_c01082{word-spacing:25.695280pt;}
.ws18_c01082{word-spacing:26.014080pt;}
.ws19_c01082{word-spacing:28.564480pt;}
.ws17_c01082{word-spacing:29.074560pt;}
._0_c01082{margin-left:-36.024400pt;}
._4_c01082{margin-left:-33.474000pt;}
._7_c01082{margin-left:-31.561200pt;}
._f_c01082{margin-left:-30.413520pt;}
._12_c01082{margin-left:-29.520880pt;}
._d_c01082{margin-left:-27.034240pt;}
._9_c01082{margin-left:-25.504000pt;}
._10_c01082{margin-left:-24.101280pt;}
._13_c01082{margin-left:-20.525813pt;}
._8_c01082{margin-left:-6.503520pt;}
._e_c01082{margin-left:-5.228320pt;}
._14_c01082{margin-left:-4.091472pt;}
._2_c01082{margin-left:-3.188000pt;}
._6_c01082{margin-left:-1.721520pt;}
._3_c01082{width:1.594000pt;}
._5_c01082{width:3.124240pt;}
._a_c01082{width:4.205973pt;}
._11_c01082{width:19.064240pt;}
._c_c01082{width:20.977040pt;}
._b_c01082{width:26.651680pt;}
._1_c01082{width:413.105280pt;}
.fs2_c01082{font-size:37.194667pt;}
.fs1_c01082{font-size:42.506667pt;}
.fs3_c01082{font-size:53.136000pt;}
.fs0_c01082{font-size:63.760000pt;}
.y0_c01082{bottom:0.000000pt;}
.y26_c01082{bottom:90.944000pt;}
.y25_c01082{bottom:111.705333pt;}
.y24_c01082{bottom:122.824000pt;}
.y23_c01082{bottom:138.765333pt;}
.y22_c01082{bottom:159.525333pt;}
.y21_c01082{bottom:183.309333pt;}
.y20_c01082{bottom:207.212000pt;}
.y1f_c01082{bottom:231.114667pt;}
.y1e_c01082{bottom:255.017333pt;}
.y1d_c01082{bottom:278.921333pt;}
.y1c_c01082{bottom:302.824000pt;}
.y1b_c01082{bottom:326.726667pt;}
.y1a_c01082{bottom:350.629333pt;}
.y19_c01082{bottom:374.532000pt;}
.y18_c01082{bottom:398.436000pt;}
.y17_c01082{bottom:422.338667pt;}
.y16_c01082{bottom:446.241333pt;}
.y15_c01082{bottom:470.144000pt;}
.y14_c01082{bottom:494.048000pt;}
.y13_c01082{bottom:517.950667pt;}
.y12_c01082{bottom:541.853333pt;}
.y11_c01082{bottom:565.756000pt;}
.y10_c01082{bottom:605.600000pt;}
.yf_c01082{bottom:629.502667pt;}
.ye_c01082{bottom:653.405333pt;}
.yd_c01082{bottom:677.308000pt;}
.yc_c01082{bottom:701.212000pt;}
.yb_c01082{bottom:725.114667pt;}
.ya_c01082{bottom:749.017333pt;}
.y9_c01082{bottom:772.920000pt;}
.y8_c01082{bottom:796.824000pt;}
.y7_c01082{bottom:820.726667pt;}
.y6_c01082{bottom:844.629333pt;}
.y5_c01082{bottom:868.532000pt;}
.y4_c01082{bottom:925.644000pt;}
.y3_c01082{bottom:949.546667pt;}
.y2_c01082{bottom:973.450667pt;}
.y1_c01082{bottom:1032.964000pt;}
.h5_c01082{height:25.143595pt;}
.h6_c01082{height:39.852000pt;}
.h7_c01082{height:44.423595pt;}
.h2_c01082{height:47.820000pt;}
.h4_c01082{height:51.870507pt;}
.h3_c01082{height:51.875840pt;}
.h1_c01082{height:1123.333333pt;}
.h0_c01082{height:1123.653333pt;}
.w0_c01082{width:794.550667pt;}
.w1_c01082{width:794.666667pt;}
.x0_c01082{left:0.000000pt;}
.x1_c01082{left:113.385333pt;}
.x4_c01082{left:126.042667pt;}
.x3_c01082{left:142.078667pt;}
.x2_c01082{left:152.405333pt;}
}





/* 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_3cd0f8f8435206d6e9647cd0.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:1.001000;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_df8c2ee2589eec1af4ee4b91.woff2')format("woff");}.ff2_c01083{font-family:ff2_c01083;line-height:1.001000;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_c01083;src:url('chunks/assets/font_25d15f81875ea0b31301e62a.woff2')format("woff");}.ff3_c01083{font-family:ff3_c01083;line-height:0.697000;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_c01083;src:url('chunks/assets/font_a568d92f1c8daf62300c9754.woff2')format("woff");}.ff4_c01083{font-family:ff4_c01083;line-height:1.000000;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_c01083;src:url('chunks/assets/font_24a61b550c2512d21c1dc5d0.woff2')format("woff");}.ff5_c01083{font-family:ff5_c01083;line-height:0.696000;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_c01083;src:url('chunks/assets/font_e2ab4540ed31238d94527a4d.woff2')format("woff");}.ff6_c01083{font-family:ff6_c01083;line-height:1.000000;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_c01083;src:url('chunks/assets/font_1bb821f6b6174fb90cd0c8ef.woff2')format("woff");}.ff7_c01083{font-family:ff7_c01083;line-height:1.000000;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);}
.v4_c01083{vertical-align:-21.690000px;}
.v0_c01083{vertical-align:0.000000px;}
.v3_c01083{vertical-align:5.982000px;}
.v2_c01083{vertical-align:7.170000px;}
.v5_c01083{vertical-align:21.696000px;}
.v1_c01083{vertical-align:26.034000px;}
.ls1_c01083{letter-spacing:0.000000px;}
.ls0_c01083{letter-spacing:19.858764px;}
.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;}
}
.ws1_c01083{word-spacing:-0.071730px;}
.ws25_c01083{word-spacing:-0.059778px;}
.ws4_c01083{word-spacing:-0.047820px;}
.ws1d_c01083{word-spacing:-0.041844px;}
.ws26_c01083{word-spacing:0.000000px;}
.ws24_c01083{word-spacing:16.797618px;}
.ws1a_c01083{word-spacing:16.856550px;}
.ws18_c01083{word-spacing:17.071740px;}
.ws19_c01083{word-spacing:17.358660px;}
.ws15_c01083{word-spacing:17.502120px;}
.ws2_c01083{word-spacing:17.932500px;}
.ws7_c01083{word-spacing:18.291150px;}
.ws12_c01083{word-spacing:19.582290px;}
.ws23_c01083{word-spacing:20.444076px;}
.wsc_c01083{word-spacing:21.375540px;}
.ws1b_c01083{word-spacing:21.662460px;}
.ws5_c01083{word-spacing:21.734190px;}
.ws22_c01083{word-spacing:21.818970px;}
.wsd_c01083{word-spacing:22.236300px;}
.ws8_c01083{word-spacing:22.379760px;}
.ws3_c01083{word-spacing:23.312250px;}
.wsa_c01083{word-spacing:23.383980px;}
.wse_c01083{word-spacing:23.957820px;}
.ws1c_c01083{word-spacing:25.177230px;}
.ws0_c01083{word-spacing:26.827020px;}
.ws11_c01083{word-spacing:27.042210px;}
.ws16_c01083{word-spacing:27.185670px;}
.ws14_c01083{word-spacing:27.472590px;}
.wsf_c01083{word-spacing:28.620270px;}
.ws21_c01083{word-spacing:28.633662px;}
.ws6_c01083{word-spacing:28.835460px;}
.ws17_c01083{word-spacing:29.409300px;}
.wsb_c01083{word-spacing:29.767950px;}
.ws13_c01083{word-spacing:32.565420px;}
.ws9_c01083{word-spacing:34.502130px;}
.ws1e_c01083{word-spacing:34.790796px;}
.ws1f_c01083{word-spacing:35.089686px;}
.ws20_c01083{word-spacing:38.257920px;}
.ws10_c01083{word-spacing:79.261650px;}
._0_c01083{margin-left:-40.527450px;}
._a_c01083{margin-left:-37.156140px;}
._8_c01083{margin-left:-35.004240px;}
._9_c01083{margin-left:-33.210990px;}
._f_c01083{margin-left:-31.013424px;}
._e_c01083{margin-left:-29.650086px;}
._c_c01083{margin-left:-28.529124px;}
._7_c01083{margin-left:-27.329130px;}
._11_c01083{margin-left:-23.253642px;}
._6_c01083{margin-left:-7.890300px;}
._10_c01083{margin-left:-6.420258px;}
._d_c01083{margin-left:-4.961574px;}
._5_c01083{margin-left:-3.945150px;}
._3_c01083{margin-left:-2.008440px;}
._2_c01083{width:1.936710px;}
._4_c01083{width:3.586500px;}
._b_c01083{width:95.200056px;}
._1_c01083{width:464.743440px;}
.fc0_c01083{color:rgb(0,0,0);}
.fs3_c01083{font-size:41.844000px;}
.fs1_c01083{font-size:47.820000px;}
.fs4_c01083{font-size:59.778000px;}
.fs0_c01083{font-size:71.730000px;}
.fs2_c01083{font-size:86.076000px;}
.y0_c01083{bottom:0.000000px;}
.y25_c01083{bottom:112.665000px;}
.y24_c01083{bottom:130.597500px;}
.y23_c01083{bottom:148.530000px;}
.y22_c01083{bottom:166.464000px;}
.y21_c01083{bottom:184.396500px;}
.y20_c01083{bottom:207.751500px;}
.y1f_c01083{bottom:234.508500px;}
.y1e_c01083{bottom:261.399000px;}
.y1d_c01083{bottom:288.289500px;}
.y1c_c01083{bottom:315.180000px;}
.y1b_c01083{bottom:342.072000px;}
.y1a_c01083{bottom:368.962500px;}
.y19_c01083{bottom:395.853000px;}
.y18_c01083{bottom:422.743500px;}
.y17_c01083{bottom:449.635500px;}
.y16_c01083{bottom:476.526000px;}
.y15_c01083{bottom:503.416500px;}
.y14_c01083{bottom:530.307000px;}
.y13_c01083{bottom:557.199000px;}
.y12_c01083{bottom:584.089500px;}
.y11_c01083{bottom:618.700500px;}
.y10_c01083{bottom:678.054000px;}
.yf_c01083{bottom:745.551000px;}
.ye_c01083{bottom:772.441500px;}
.yd_c01083{bottom:799.332000px;}
.yc_c01083{bottom:826.222500px;}
.yb_c01083{bottom:853.114500px;}
.ya_c01083{bottom:880.005000px;}
.y9_c01083{bottom:906.895500px;}
.y8_c01083{bottom:933.786000px;}
.y7_c01083{bottom:960.678000px;}
.y6_c01083{bottom:987.568500px;}
.y5_c01083{bottom:1014.459000px;}
.y4_c01083{bottom:1041.349500px;}
.y3_c01083{bottom:1068.240000px;}
.y2_c01083{bottom:1095.132000px;}
.y1_c01083{bottom:1162.084500px;}
.h7_c01083{height:28.286544px;}
.h8_c01083{height:44.833500px;}
.h9_c01083{height:49.982544px;}
.h2_c01083{height:53.797500px;}
.h3_c01083{height:58.360320px;}
.h6_c01083{height:59.779500px;}
.h5_c01083{height:64.557000px;}
.h4_c01083{height:71.727000px;}
.h1_c01083{height:1263.750000px;}
.h0_c01083{height:1264.110000px;}
.w0_c01083{width:893.869500px;}
.w1_c01083{width:894.000000px;}
.x0_c01083{left:0.000000px;}
.x1_c01083{left:127.558500px;}
.x5_c01083{left:141.798000px;}
.x2_c01083{left:159.838500px;}
.x4_c01083{left:303.558000px;}
.x3_c01083{left:396.513000px;}
@media print{
.v4_c01083{vertical-align:-19.280000pt;}
.v0_c01083{vertical-align:0.000000pt;}
.v3_c01083{vertical-align:5.317333pt;}
.v2_c01083{vertical-align:6.373333pt;}
.v5_c01083{vertical-align:19.285333pt;}
.v1_c01083{vertical-align:23.141333pt;}
.ls1_c01083{letter-spacing:0.000000pt;}
.ls0_c01083{letter-spacing:17.652235pt;}
.ws1_c01083{word-spacing:-0.063760pt;}
.ws25_c01083{word-spacing:-0.053136pt;}
.ws4_c01083{word-spacing:-0.042507pt;}
.ws1d_c01083{word-spacing:-0.037195pt;}
.ws26_c01083{word-spacing:0.000000pt;}
.ws24_c01083{word-spacing:14.931216pt;}
.ws1a_c01083{word-spacing:14.983600pt;}
.ws18_c01083{word-spacing:15.174880pt;}
.ws19_c01083{word-spacing:15.429920pt;}
.ws15_c01083{word-spacing:15.557440pt;}
.ws2_c01083{word-spacing:15.940000pt;}
.ws7_c01083{word-spacing:16.258800pt;}
.ws12_c01083{word-spacing:17.406480pt;}
.ws23_c01083{word-spacing:18.172512pt;}
.wsc_c01083{word-spacing:19.000480pt;}
.ws1b_c01083{word-spacing:19.255520pt;}
.ws5_c01083{word-spacing:19.319280pt;}
.ws22_c01083{word-spacing:19.394640pt;}
.wsd_c01083{word-spacing:19.765600pt;}
.ws8_c01083{word-spacing:19.893120pt;}
.ws3_c01083{word-spacing:20.722000pt;}
.wsa_c01083{word-spacing:20.785760pt;}
.wse_c01083{word-spacing:21.295840pt;}
.ws1c_c01083{word-spacing:22.379760pt;}
.ws0_c01083{word-spacing:23.846240pt;}
.ws11_c01083{word-spacing:24.037520pt;}
.ws16_c01083{word-spacing:24.165040pt;}
.ws14_c01083{word-spacing:24.420080pt;}
.wsf_c01083{word-spacing:25.440240pt;}
.ws21_c01083{word-spacing:25.452144pt;}
.ws6_c01083{word-spacing:25.631520pt;}
.ws17_c01083{word-spacing:26.141600pt;}
.wsb_c01083{word-spacing:26.460400pt;}
.ws13_c01083{word-spacing:28.947040pt;}
.ws9_c01083{word-spacing:30.668560pt;}
.ws1e_c01083{word-spacing:30.925152pt;}
.ws1f_c01083{word-spacing:31.190832pt;}
.ws20_c01083{word-spacing:34.007040pt;}
.ws10_c01083{word-spacing:70.454800pt;}
._0_c01083{margin-left:-36.024400pt;}
._a_c01083{margin-left:-33.027680pt;}
._8_c01083{margin-left:-31.114880pt;}
._9_c01083{margin-left:-29.520880pt;}
._f_c01083{margin-left:-27.567488pt;}
._e_c01083{margin-left:-26.355632pt;}
._c_c01083{margin-left:-25.359221pt;}
._7_c01083{margin-left:-24.292560pt;}
._11_c01083{margin-left:-20.669904pt;}
._6_c01083{margin-left:-7.013600pt;}
._10_c01083{margin-left:-5.706896pt;}
._d_c01083{margin-left:-4.410288pt;}
._5_c01083{margin-left:-3.506800pt;}
._3_c01083{margin-left:-1.785280pt;}
._2_c01083{width:1.721520pt;}
._4_c01083{width:3.188000pt;}
._b_c01083{width:84.622272pt;}
._1_c01083{width:413.105280pt;}
.fs3_c01083{font-size:37.194667pt;}
.fs1_c01083{font-size:42.506667pt;}
.fs4_c01083{font-size:53.136000pt;}
.fs0_c01083{font-size:63.760000pt;}
.fs2_c01083{font-size:76.512000pt;}
.y0_c01083{bottom:0.000000pt;}
.y25_c01083{bottom:100.146667pt;}
.y24_c01083{bottom:116.086667pt;}
.y23_c01083{bottom:132.026667pt;}
.y22_c01083{bottom:147.968000pt;}
.y21_c01083{bottom:163.908000pt;}
.y20_c01083{bottom:184.668000pt;}
.y1f_c01083{bottom:208.452000pt;}
.y1e_c01083{bottom:232.354667pt;}
.y1d_c01083{bottom:256.257333pt;}
.y1c_c01083{bottom:280.160000pt;}
.y1b_c01083{bottom:304.064000pt;}
.y1a_c01083{bottom:327.966667pt;}
.y19_c01083{bottom:351.869333pt;}
.y18_c01083{bottom:375.772000pt;}
.y17_c01083{bottom:399.676000pt;}
.y16_c01083{bottom:423.578667pt;}
.y15_c01083{bottom:447.481333pt;}
.y14_c01083{bottom:471.384000pt;}
.y13_c01083{bottom:495.288000pt;}
.y12_c01083{bottom:519.190667pt;}
.y11_c01083{bottom:549.956000pt;}
.y10_c01083{bottom:602.714667pt;}
.yf_c01083{bottom:662.712000pt;}
.ye_c01083{bottom:686.614667pt;}
.yd_c01083{bottom:710.517333pt;}
.yc_c01083{bottom:734.420000pt;}
.yb_c01083{bottom:758.324000pt;}
.ya_c01083{bottom:782.226667pt;}
.y9_c01083{bottom:806.129333pt;}
.y8_c01083{bottom:830.032000pt;}
.y7_c01083{bottom:853.936000pt;}
.y6_c01083{bottom:877.838667pt;}
.y5_c01083{bottom:901.741333pt;}
.y4_c01083{bottom:925.644000pt;}
.y3_c01083{bottom:949.546667pt;}
.y2_c01083{bottom:973.450667pt;}
.y1_c01083{bottom:1032.964000pt;}
.h7_c01083{height:25.143595pt;}
.h8_c01083{height:39.852000pt;}
.h9_c01083{height:44.428928pt;}
.h2_c01083{height:47.820000pt;}
.h3_c01083{height:51.875840pt;}
.h6_c01083{height:53.137333pt;}
.h5_c01083{height:57.384000pt;}
.h4_c01083{height:63.757333pt;}
.h1_c01083{height:1123.333333pt;}
.h0_c01083{height:1123.653333pt;}
.w0_c01083{width:794.550667pt;}
.w1_c01083{width:794.666667pt;}
.x0_c01083{left:0.000000pt;}
.x1_c01083{left:113.385333pt;}
.x5_c01083{left:126.042667pt;}
.x2_c01083{left:142.078667pt;}
.x4_c01083{left:269.829333pt;}
.x3_c01083{left:352.456000pt;}
}





/* 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_95dc1f1d0a4078e9f7425132.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.001000;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_d6be41b68439fea7c0c7f037.woff2')format("woff");}.ff2_c01084{font-family:ff2_c01084;line-height:1.001000;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_a3587663fe534e9c649896e0.woff2')format("woff");}.ff3_c01084{font-family:ff3_c01084;line-height:1.000000;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_c01084;src:url('chunks/assets/font_748d0555cc3ef0368a7528a0.woff2')format("woff");}.ff4_c01084{font-family:ff4_c01084;line-height:0.697000;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_c01084;src:url('chunks/assets/font_147e419ef865960c2043a3cc.woff2')format("woff");}.ff5_c01084{font-family:ff5_c01084;line-height:0.696000;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_c01084;src:url('chunks/assets/font_74ae266c733040afb721facb.woff2')format("woff");}.ff6_c01084{font-family:ff6_c01084;line-height:1.000000;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_c01084;src:url('chunks/assets/font_aca3b7cbbd0af9faf0d19bb6.woff2')format("woff");}.ff7_c01084{font-family:ff7_c01084;line-height:1.000000;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);}
.v3_c01084{vertical-align:-21.696000px;}
.v0_c01084{vertical-align:0.000000px;}
.v1_c01084{vertical-align:5.982000px;}
.v4_c01084{vertical-align:15.108000px;}
.v2_c01084{vertical-align:26.028000px;}
.ls0_c01084{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01084{word-spacing:-0.071730px;}
.ws1e_c01084{word-spacing:-0.059778px;}
.wsb_c01084{word-spacing:-0.047820px;}
.ws1b_c01084{word-spacing:-0.041844px;}
.ws20_c01084{word-spacing:0.000000px;}
.ws18_c01084{word-spacing:15.780600px;}
.ws13_c01084{word-spacing:16.067520px;}
.ws9_c01084{word-spacing:18.864990px;}
.ws1c_c01084{word-spacing:19.069182px;}
.ws10_c01084{word-spacing:19.151910px;}
.ws7_c01084{word-spacing:19.295370px;}
.wsc_c01084{word-spacing:19.654020px;}
.ws1d_c01084{word-spacing:19.846296px;}
.ws2_c01084{word-spacing:20.945160px;}
.ws1f_c01084{word-spacing:21.280968px;}
.wsf_c01084{word-spacing:21.805920px;}
.ws5_c01084{word-spacing:22.379760px;}
.wsd_c01084{word-spacing:22.666680px;}
.wse_c01084{word-spacing:22.738410px;}
.ws12_c01084{word-spacing:23.312250px;}
.ws6_c01084{word-spacing:23.383980px;}
.wsa_c01084{word-spacing:24.890310px;}
.ws11_c01084{word-spacing:25.679340px;}
.ws8_c01084{word-spacing:26.109720px;}
.ws0_c01084{word-spacing:26.827020px;}
.ws19_c01084{word-spacing:26.898750px;}
.ws4_c01084{word-spacing:26.970480px;}
.ws3_c01084{word-spacing:27.042210px;}
.ws14_c01084{word-spacing:27.113940px;}
.ws17_c01084{word-spacing:29.194110px;}
.ws16_c01084{word-spacing:30.556980px;}
.ws1a_c01084{word-spacing:33.497910px;}
.ws15_c01084{word-spacing:37.299600px;}
._0_c01084{margin-left:-40.527450px;}
._4_c01084{margin-left:-37.156140px;}
._a_c01084{margin-left:-35.291160px;}
._b_c01084{margin-left:-33.426180px;}
._f_c01084{margin-left:-32.005254px;}
._12_c01084{margin-left:-30.340518px;}
._6_c01084{margin-left:-27.329130px;}
._10_c01084{margin-left:-23.242374px;}
._5_c01084{margin-left:-7.890300px;}
._e_c01084{margin-left:-5.881860px;}
._8_c01084{margin-left:-4.805910px;}
._c_c01084{margin-left:-3.801690px;}
._2_c01084{margin-left:-1.936710px;}
._3_c01084{width:1.864980px;}
._9_c01084{width:3.332580px;}
._11_c01084{width:7.970022px;}
._d_c01084{width:17.932500px;}
._7_c01084{width:79.333380px;}
._1_c01084{width:464.743440px;}
.fc0_c01084{color:rgb(0,0,0);}
.fs2_c01084{font-size:41.844000px;}
.fs1_c01084{font-size:47.820000px;}
.fs3_c01084{font-size:59.778000px;}
.fs0_c01084{font-size:71.730000px;}
.y0_c01084{bottom:0.000000px;}
.y27_c01084{bottom:106.189500px;}
.y26_c01084{bottom:111.612000px;}
.y25_c01084{bottom:125.724000px;}
.y24_c01084{bottom:149.080500px;}
.y23_c01084{bottom:175.836000px;}
.y22_c01084{bottom:202.726500px;}
.y21_c01084{bottom:229.618500px;}
.y20_c01084{bottom:256.509000px;}
.y1f_c01084{bottom:283.399500px;}
.y1e_c01084{bottom:310.290000px;}
.y1d_c01084{bottom:337.182000px;}
.y1c_c01084{bottom:364.072500px;}
.y1b_c01084{bottom:390.963000px;}
.y1a_c01084{bottom:417.853500px;}
.y19_c01084{bottom:444.745500px;}
.y18_c01084{bottom:471.636000px;}
.y17_c01084{bottom:498.526500px;}
.y16_c01084{bottom:525.417000px;}
.y15_c01084{bottom:552.309000px;}
.y14_c01084{bottom:579.199500px;}
.y13_c01084{bottom:606.090000px;}
.y12_c01084{bottom:632.980500px;}
.y11_c01084{bottom:659.871000px;}
.y10_c01084{bottom:686.763000px;}
.yf_c01084{bottom:713.653500px;}
.ye_c01084{bottom:740.544000px;}
.yd_c01084{bottom:767.434500px;}
.yc_c01084{bottom:794.326500px;}
.yb_c01084{bottom:821.217000px;}
.ya_c01084{bottom:848.107500px;}
.y9_c01084{bottom:874.998000px;}
.y8_c01084{bottom:901.890000px;}
.y7_c01084{bottom:928.780500px;}
.y6_c01084{bottom:955.671000px;}
.y5_c01084{bottom:990.283500px;}
.y4_c01084{bottom:1011.951000px;}
.y3_c01084{bottom:1068.240000px;}
.y2_c01084{bottom:1095.132000px;}
.y1_c01084{bottom:1162.084500px;}
.h5_c01084{height:28.286544px;}
.h7_c01084{height:38.251500px;}
.h6_c01084{height:44.833500px;}
.h2_c01084{height:53.797500px;}
.h4_c01084{height:58.354320px;}
.h3_c01084{height:59.779500px;}
.h1_c01084{height:1263.750000px;}
.h0_c01084{height:1264.110000px;}
.w0_c01084{width:893.869500px;}
.w1_c01084{width:894.000000px;}
.x0_c01084{left:0.000000px;}
.x1_c01084{left:127.558500px;}
.x5_c01084{left:141.798000px;}
.x4_c01084{left:159.838500px;}
.x6_c01084{left:186.837000px;}
.x3_c01084{left:204.220500px;}
.x2_c01084{left:483.681000px;}
@media print{
.v3_c01084{vertical-align:-19.285333pt;}
.v0_c01084{vertical-align:0.000000pt;}
.v1_c01084{vertical-align:5.317333pt;}
.v4_c01084{vertical-align:13.429333pt;}
.v2_c01084{vertical-align:23.136000pt;}
.ls0_c01084{letter-spacing:0.000000pt;}
.ws1_c01084{word-spacing:-0.063760pt;}
.ws1e_c01084{word-spacing:-0.053136pt;}
.wsb_c01084{word-spacing:-0.042507pt;}
.ws1b_c01084{word-spacing:-0.037195pt;}
.ws20_c01084{word-spacing:0.000000pt;}
.ws18_c01084{word-spacing:14.027200pt;}
.ws13_c01084{word-spacing:14.282240pt;}
.ws9_c01084{word-spacing:16.768880pt;}
.ws1c_c01084{word-spacing:16.950384pt;}
.ws10_c01084{word-spacing:17.023920pt;}
.ws7_c01084{word-spacing:17.151440pt;}
.wsc_c01084{word-spacing:17.470240pt;}
.ws1d_c01084{word-spacing:17.641152pt;}
.ws2_c01084{word-spacing:18.617920pt;}
.ws1f_c01084{word-spacing:18.916416pt;}
.wsf_c01084{word-spacing:19.383040pt;}
.ws5_c01084{word-spacing:19.893120pt;}
.wsd_c01084{word-spacing:20.148160pt;}
.wse_c01084{word-spacing:20.211920pt;}
.ws12_c01084{word-spacing:20.722000pt;}
.ws6_c01084{word-spacing:20.785760pt;}
.wsa_c01084{word-spacing:22.124720pt;}
.ws11_c01084{word-spacing:22.826080pt;}
.ws8_c01084{word-spacing:23.208640pt;}
.ws0_c01084{word-spacing:23.846240pt;}
.ws19_c01084{word-spacing:23.910000pt;}
.ws4_c01084{word-spacing:23.973760pt;}
.ws3_c01084{word-spacing:24.037520pt;}
.ws14_c01084{word-spacing:24.101280pt;}
.ws17_c01084{word-spacing:25.950320pt;}
.ws16_c01084{word-spacing:27.161760pt;}
.ws1a_c01084{word-spacing:29.775920pt;}
.ws15_c01084{word-spacing:33.155200pt;}
._0_c01084{margin-left:-36.024400pt;}
._4_c01084{margin-left:-33.027680pt;}
._a_c01084{margin-left:-31.369920pt;}
._b_c01084{margin-left:-29.712160pt;}
._f_c01084{margin-left:-28.449115pt;}
._12_c01084{margin-left:-26.969349pt;}
._6_c01084{margin-left:-24.292560pt;}
._10_c01084{margin-left:-20.659888pt;}
._5_c01084{margin-left:-7.013600pt;}
._e_c01084{margin-left:-5.228320pt;}
._8_c01084{margin-left:-4.271920pt;}
._c_c01084{margin-left:-3.379280pt;}
._2_c01084{margin-left:-1.721520pt;}
._3_c01084{width:1.657760pt;}
._9_c01084{width:2.962293pt;}
._11_c01084{width:7.084464pt;}
._d_c01084{width:15.940000pt;}
._7_c01084{width:70.518560pt;}
._1_c01084{width:413.105280pt;}
.fs2_c01084{font-size:37.194667pt;}
.fs1_c01084{font-size:42.506667pt;}
.fs3_c01084{font-size:53.136000pt;}
.fs0_c01084{font-size:63.760000pt;}
.y0_c01084{bottom:0.000000pt;}
.y27_c01084{bottom:94.390667pt;}
.y26_c01084{bottom:99.210667pt;}
.y25_c01084{bottom:111.754667pt;}
.y24_c01084{bottom:132.516000pt;}
.y23_c01084{bottom:156.298667pt;}
.y22_c01084{bottom:180.201333pt;}
.y21_c01084{bottom:204.105333pt;}
.y20_c01084{bottom:228.008000pt;}
.y1f_c01084{bottom:251.910667pt;}
.y1e_c01084{bottom:275.813333pt;}
.y1d_c01084{bottom:299.717333pt;}
.y1c_c01084{bottom:323.620000pt;}
.y1b_c01084{bottom:347.522667pt;}
.y1a_c01084{bottom:371.425333pt;}
.y19_c01084{bottom:395.329333pt;}
.y18_c01084{bottom:419.232000pt;}
.y17_c01084{bottom:443.134667pt;}
.y16_c01084{bottom:467.037333pt;}
.y15_c01084{bottom:490.941333pt;}
.y14_c01084{bottom:514.844000pt;}
.y13_c01084{bottom:538.746667pt;}
.y12_c01084{bottom:562.649333pt;}
.y11_c01084{bottom:586.552000pt;}
.y10_c01084{bottom:610.456000pt;}
.yf_c01084{bottom:634.358667pt;}
.ye_c01084{bottom:658.261333pt;}
.yd_c01084{bottom:682.164000pt;}
.yc_c01084{bottom:706.068000pt;}
.yb_c01084{bottom:729.970667pt;}
.ya_c01084{bottom:753.873333pt;}
.y9_c01084{bottom:777.776000pt;}
.y8_c01084{bottom:801.680000pt;}
.y7_c01084{bottom:825.582667pt;}
.y6_c01084{bottom:849.485333pt;}
.y5_c01084{bottom:880.252000pt;}
.y4_c01084{bottom:899.512000pt;}
.y3_c01084{bottom:949.546667pt;}
.y2_c01084{bottom:973.450667pt;}
.y1_c01084{bottom:1032.964000pt;}
.h5_c01084{height:25.143595pt;}
.h7_c01084{height:34.001333pt;}
.h6_c01084{height:39.852000pt;}
.h2_c01084{height:47.820000pt;}
.h4_c01084{height:51.870507pt;}
.h3_c01084{height:53.137333pt;}
.h1_c01084{height:1123.333333pt;}
.h0_c01084{height:1123.653333pt;}
.w0_c01084{width:794.550667pt;}
.w1_c01084{width:794.666667pt;}
.x0_c01084{left:0.000000pt;}
.x1_c01084{left:113.385333pt;}
.x5_c01084{left:126.042667pt;}
.x4_c01084{left:142.078667pt;}
.x6_c01084{left:166.077333pt;}
.x3_c01084{left:181.529333pt;}
.x2_c01084{left:429.938667pt;}
}





/* 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_2141c2afcaca25d3dc3b3e16.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.001000;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_3ecda881703ee15ca7815332.woff2')format("woff");}.ff2_c01085{font-family:ff2_c01085;line-height:1.001000;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_c01085;src:url('chunks/assets/font_57a61d481f3ff018534a2f9b.woff2')format("woff");}.ff3_c01085{font-family:ff3_c01085;line-height:1.001000;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_c01085;src:url('chunks/assets/font_0c1cf1a6c0709781e8f86714.woff2')format("woff");}.ff4_c01085{font-family:ff4_c01085;line-height:0.697000;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_c01085;src:url('chunks/assets/font_d83eaa6ba6f100f6c3ec36a1.woff2')format("woff");}.ff5_c01085{font-family:ff5_c01085;line-height:0.696000;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_c01085;src:url('chunks/assets/font_9986eb79ffba8c744257eef4.woff2')format("woff");}.ff6_c01085{font-family:ff6_c01085;line-height:1.000000;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_c01085;src:url('chunks/assets/font_8e92823ba52a6acc3cc69480.woff2')format("woff");}.ff7_c01085{font-family:ff7_c01085;line-height:1.000000;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);}
.v3_c01085{vertical-align:-21.690000px;}
.v0_c01085{vertical-align:0.000000px;}
.v4_c01085{vertical-align:15.108000px;}
.v2_c01085{vertical-align:18.132000px;}
.v1_c01085{vertical-align:26.034000px;}
.ls1_c01085{letter-spacing:0.000000px;}
.ls0_c01085{letter-spacing:20.485590px;}
.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;}
}
.ws1_c01085{word-spacing:-0.071730px;}
.ws26_c01085{word-spacing:-0.059778px;}
.wse_c01085{word-spacing:-0.047820px;}
.ws25_c01085{word-spacing:-0.041844px;}
.ws35_c01085{word-spacing:0.000000px;}
.ws1b_c01085{word-spacing:11.275680px;}
.ws11_c01085{word-spacing:16.426170px;}
.ws6_c01085{word-spacing:17.215200px;}
.ws14_c01085{word-spacing:17.430390px;}
.ws20_c01085{word-spacing:17.502120px;}
.ws27_c01085{word-spacing:17.933400px;}
.ws18_c01085{word-spacing:18.362880px;}
.ws12_c01085{word-spacing:18.721530px;}
.ws13_c01085{word-spacing:18.864990px;}
.ws2d_c01085{word-spacing:18.889848px;}
.ws2f_c01085{word-spacing:19.248516px;}
.ws8_c01085{word-spacing:19.510560px;}
.ws28_c01085{word-spacing:19.547406px;}
.ws19_c01085{word-spacing:19.725750px;}
.ws29_c01085{word-spacing:19.846296px;}
.ws33_c01085{word-spacing:20.025630px;}
.ws1a_c01085{word-spacing:20.443050px;}
.wsf_c01085{word-spacing:20.514780px;}
.ws2e_c01085{word-spacing:20.802744px;}
.wsc_c01085{word-spacing:21.016890px;}
.wsa_c01085{word-spacing:21.023610px;}
.ws15_c01085{word-spacing:21.160350px;}
.ws34_c01085{word-spacing:21.460302px;}
.ws24_c01085{word-spacing:21.734190px;}
.ws5_c01085{word-spacing:22.379760px;}
.wsb_c01085{word-spacing:22.881870px;}
.wsd_c01085{word-spacing:22.953600px;}
.ws32_c01085{word-spacing:23.014530px;}
.ws16_c01085{word-spacing:23.025330px;}
.ws4_c01085{word-spacing:23.312250px;}
.ws1c_c01085{word-spacing:23.459340px;}
.ws7_c01085{word-spacing:23.599170px;}
.ws2c_c01085{word-spacing:23.612310px;}
.ws10_c01085{word-spacing:23.886090px;}
.ws17_c01085{word-spacing:24.316470px;}
.ws2_c01085{word-spacing:24.746850px;}
.ws30_c01085{word-spacing:24.867648px;}
.ws31_c01085{word-spacing:25.943652px;}
.ws0_c01085{word-spacing:26.827020px;}
.ws1f_c01085{word-spacing:27.113940px;}
.ws9_c01085{word-spacing:27.746310px;}
.ws1d_c01085{word-spacing:27.902970px;}
.ws21_c01085{word-spacing:28.189890px;}
.ws3_c01085{word-spacing:28.476810px;}
.ws2a_c01085{word-spacing:28.812996px;}
.ws23_c01085{word-spacing:29.265840px;}
.ws22_c01085{word-spacing:29.337570px;}
.ws2b_c01085{word-spacing:29.530332px;}
.ws1e_c01085{word-spacing:34.573860px;}
._0_c01085{margin-left:-40.527450px;}
._9_c01085{margin-left:-37.156140px;}
._4_c01085{margin-left:-35.075970px;}
._7_c01085{margin-left:-33.210990px;}
._14_c01085{margin-left:-30.797538px;}
._15_c01085{margin-left:-29.614764px;}
._6_c01085{margin-left:-27.329130px;}
._13_c01085{margin-left:-24.042030px;}
._5_c01085{margin-left:-7.890300px;}
._16_c01085{margin-left:-6.873612px;}
._a_c01085{margin-left:-5.846970px;}
._b_c01085{margin-left:-3.658230px;}
._3_c01085{margin-left:-2.080170px;}
._2_c01085{width:2.008440px;}
._d_c01085{width:3.011160px;}
._c_c01085{width:5.001840px;}
._12_c01085{width:8.311368px;}
._f_c01085{width:20.156130px;}
._10_c01085{width:22.131870px;}
._8_c01085{width:24.531660px;}
._e_c01085{width:31.660140px;}
._11_c01085{width:37.657140px;}
._1_c01085{width:464.743440px;}
.fc0_c01085{color:rgb(0,0,0);}
.fs2_c01085{font-size:41.844000px;}
.fs1_c01085{font-size:47.820000px;}
.fs3_c01085{font-size:59.778000px;}
.fs0_c01085{font-size:71.730000px;}
.y0_c01085{bottom:0.000000px;}
.y2c_c01085{bottom:102.187500px;}
.y2b_c01085{bottom:120.120000px;}
.y2a_c01085{bottom:138.052500px;}
.y29_c01085{bottom:155.986500px;}
.y28_c01085{bottom:173.919000px;}
.y27_c01085{bottom:191.851500px;}
.y26_c01085{bottom:209.784000px;}
.y25_c01085{bottom:233.140500px;}
.y24_c01085{bottom:245.649000px;}
.y23_c01085{bottom:263.583000px;}
.y22_c01085{bottom:269.005500px;}
.y21_c01085{bottom:297.364500px;}
.y20_c01085{bottom:301.897500px;}
.y1f_c01085{bottom:324.255000px;}
.y1e_c01085{bottom:351.145500px;}
.y1d_c01085{bottom:378.036000px;}
.y1c_c01085{bottom:404.928000px;}
.y1b_c01085{bottom:409.461000px;}
.y1a_c01085{bottom:431.818500px;}
.y19_c01085{bottom:458.709000px;}
.y18_c01085{bottom:485.599500px;}
.y17_c01085{bottom:512.491500px;}
.y16_c01085{bottom:539.382000px;}
.y15_c01085{bottom:566.272500px;}
.y14_c01085{bottom:593.163000px;}
.y13_c01085{bottom:620.055000px;}
.y12_c01085{bottom:646.945500px;}
.y11_c01085{bottom:673.836000px;}
.y10_c01085{bottom:700.726500px;}
.yf_c01085{bottom:727.617000px;}
.ye_c01085{bottom:754.509000px;}
.yd_c01085{bottom:781.399500px;}
.yc_c01085{bottom:808.290000px;}
.yb_c01085{bottom:835.180500px;}
.ya_c01085{bottom:862.072500px;}
.y9_c01085{bottom:888.963000px;}
.y8_c01085{bottom:915.853500px;}
.y7_c01085{bottom:942.744000px;}
.y6_c01085{bottom:969.636000px;}
.y5_c01085{bottom:996.526500px;}
.y4_c01085{bottom:1041.349500px;}
.y3_c01085{bottom:1068.240000px;}
.y2_c01085{bottom:1095.132000px;}
.y1_c01085{bottom:1162.084500px;}
.h8_c01085{height:28.286544px;}
.h6_c01085{height:38.251500px;}
.h7_c01085{height:44.833500px;}
.h2_c01085{height:53.797500px;}
.h4_c01085{height:58.354320px;}
.h3_c01085{height:58.360320px;}
.h9_c01085{height:59.941500px;}
.ha_c01085{height:59.947500px;}
.h5_c01085{height:71.929500px;}
.h1_c01085{height:1263.750000px;}
.h0_c01085{height:1264.110000px;}
.w0_c01085{width:893.869500px;}
.w1_c01085{width:894.000000px;}
.x0_c01085{left:0.000000px;}
.x1_c01085{left:127.558500px;}
.x3_c01085{left:129.750000px;}
.x5_c01085{left:141.798000px;}
.x2_c01085{left:159.838500px;}
.x6_c01085{left:176.874000px;}
.x7_c01085{left:570.115500px;}
.x8_c01085{left:652.774500px;}
.x4_c01085{left:654.501000px;}
@media print{
.v3_c01085{vertical-align:-19.280000pt;}
.v0_c01085{vertical-align:0.000000pt;}
.v4_c01085{vertical-align:13.429333pt;}
.v2_c01085{vertical-align:16.117333pt;}
.v1_c01085{vertical-align:23.141333pt;}
.ls1_c01085{letter-spacing:0.000000pt;}
.ls0_c01085{letter-spacing:18.209413pt;}
.ws1_c01085{word-spacing:-0.063760pt;}
.ws26_c01085{word-spacing:-0.053136pt;}
.wse_c01085{word-spacing:-0.042507pt;}
.ws25_c01085{word-spacing:-0.037195pt;}
.ws35_c01085{word-spacing:0.000000pt;}
.ws1b_c01085{word-spacing:10.022827pt;}
.ws11_c01085{word-spacing:14.601040pt;}
.ws6_c01085{word-spacing:15.302400pt;}
.ws14_c01085{word-spacing:15.493680pt;}
.ws20_c01085{word-spacing:15.557440pt;}
.ws27_c01085{word-spacing:15.940800pt;}
.ws18_c01085{word-spacing:16.322560pt;}
.ws12_c01085{word-spacing:16.641360pt;}
.ws13_c01085{word-spacing:16.768880pt;}
.ws2d_c01085{word-spacing:16.790976pt;}
.ws2f_c01085{word-spacing:17.109792pt;}
.ws8_c01085{word-spacing:17.342720pt;}
.ws28_c01085{word-spacing:17.375472pt;}
.ws19_c01085{word-spacing:17.534000pt;}
.ws29_c01085{word-spacing:17.641152pt;}
.ws33_c01085{word-spacing:17.800560pt;}
.ws1a_c01085{word-spacing:18.171600pt;}
.wsf_c01085{word-spacing:18.235360pt;}
.ws2e_c01085{word-spacing:18.491328pt;}
.wsc_c01085{word-spacing:18.681680pt;}
.wsa_c01085{word-spacing:18.687653pt;}
.ws15_c01085{word-spacing:18.809200pt;}
.ws34_c01085{word-spacing:19.075824pt;}
.ws24_c01085{word-spacing:19.319280pt;}
.ws5_c01085{word-spacing:19.893120pt;}
.wsb_c01085{word-spacing:20.339440pt;}
.wsd_c01085{word-spacing:20.403200pt;}
.ws32_c01085{word-spacing:20.457360pt;}
.ws16_c01085{word-spacing:20.466960pt;}
.ws4_c01085{word-spacing:20.722000pt;}
.ws1c_c01085{word-spacing:20.852747pt;}
.ws7_c01085{word-spacing:20.977040pt;}
.ws2c_c01085{word-spacing:20.988720pt;}
.ws10_c01085{word-spacing:21.232080pt;}
.ws17_c01085{word-spacing:21.614640pt;}
.ws2_c01085{word-spacing:21.997200pt;}
.ws30_c01085{word-spacing:22.104576pt;}
.ws31_c01085{word-spacing:23.061024pt;}
.ws0_c01085{word-spacing:23.846240pt;}
.ws1f_c01085{word-spacing:24.101280pt;}
.ws9_c01085{word-spacing:24.663387pt;}
.ws1d_c01085{word-spacing:24.802640pt;}
.ws21_c01085{word-spacing:25.057680pt;}
.ws3_c01085{word-spacing:25.312720pt;}
.ws2a_c01085{word-spacing:25.611552pt;}
.ws23_c01085{word-spacing:26.014080pt;}
.ws22_c01085{word-spacing:26.077840pt;}
.ws2b_c01085{word-spacing:26.249184pt;}
.ws1e_c01085{word-spacing:30.732320pt;}
._0_c01085{margin-left:-36.024400pt;}
._9_c01085{margin-left:-33.027680pt;}
._4_c01085{margin-left:-31.178640pt;}
._7_c01085{margin-left:-29.520880pt;}
._14_c01085{margin-left:-27.375589pt;}
._15_c01085{margin-left:-26.324235pt;}
._6_c01085{margin-left:-24.292560pt;}
._13_c01085{margin-left:-21.370693pt;}
._5_c01085{margin-left:-7.013600pt;}
._16_c01085{margin-left:-6.109877pt;}
._a_c01085{margin-left:-5.197307pt;}
._b_c01085{margin-left:-3.251760pt;}
._3_c01085{margin-left:-1.849040pt;}
._2_c01085{width:1.785280pt;}
._d_c01085{width:2.676587pt;}
._c_c01085{width:4.446080pt;}
._12_c01085{width:7.387883pt;}
._f_c01085{width:17.916560pt;}
._10_c01085{width:19.672773pt;}
._8_c01085{width:21.805920pt;}
._e_c01085{width:28.142347pt;}
._11_c01085{width:33.473013pt;}
._1_c01085{width:413.105280pt;}
.fs2_c01085{font-size:37.194667pt;}
.fs1_c01085{font-size:42.506667pt;}
.fs3_c01085{font-size:53.136000pt;}
.fs0_c01085{font-size:63.760000pt;}
.y0_c01085{bottom:0.000000pt;}
.y2c_c01085{bottom:90.833333pt;}
.y2b_c01085{bottom:106.773333pt;}
.y2a_c01085{bottom:122.713333pt;}
.y29_c01085{bottom:138.654667pt;}
.y28_c01085{bottom:154.594667pt;}
.y27_c01085{bottom:170.534667pt;}
.y26_c01085{bottom:186.474667pt;}
.y25_c01085{bottom:207.236000pt;}
.y24_c01085{bottom:218.354667pt;}
.y23_c01085{bottom:234.296000pt;}
.y22_c01085{bottom:239.116000pt;}
.y21_c01085{bottom:264.324000pt;}
.y20_c01085{bottom:268.353333pt;}
.y1f_c01085{bottom:288.226667pt;}
.y1e_c01085{bottom:312.129333pt;}
.y1d_c01085{bottom:336.032000pt;}
.y1c_c01085{bottom:359.936000pt;}
.y1b_c01085{bottom:363.965333pt;}
.y1a_c01085{bottom:383.838667pt;}
.y19_c01085{bottom:407.741333pt;}
.y18_c01085{bottom:431.644000pt;}
.y17_c01085{bottom:455.548000pt;}
.y16_c01085{bottom:479.450667pt;}
.y15_c01085{bottom:503.353333pt;}
.y14_c01085{bottom:527.256000pt;}
.y13_c01085{bottom:551.160000pt;}
.y12_c01085{bottom:575.062667pt;}
.y11_c01085{bottom:598.965333pt;}
.y10_c01085{bottom:622.868000pt;}
.yf_c01085{bottom:646.770667pt;}
.ye_c01085{bottom:670.674667pt;}
.yd_c01085{bottom:694.577333pt;}
.yc_c01085{bottom:718.480000pt;}
.yb_c01085{bottom:742.382667pt;}
.ya_c01085{bottom:766.286667pt;}
.y9_c01085{bottom:790.189333pt;}
.y8_c01085{bottom:814.092000pt;}
.y7_c01085{bottom:837.994667pt;}
.y6_c01085{bottom:861.898667pt;}
.y5_c01085{bottom:885.801333pt;}
.y4_c01085{bottom:925.644000pt;}
.y3_c01085{bottom:949.546667pt;}
.y2_c01085{bottom:973.450667pt;}
.y1_c01085{bottom:1032.964000pt;}
.h8_c01085{height:25.143595pt;}
.h6_c01085{height:34.001333pt;}
.h7_c01085{height:39.852000pt;}
.h2_c01085{height:47.820000pt;}
.h4_c01085{height:51.870507pt;}
.h3_c01085{height:51.875840pt;}
.h9_c01085{height:53.281333pt;}
.ha_c01085{height:53.286667pt;}
.h5_c01085{height:63.937333pt;}
.h1_c01085{height:1123.333333pt;}
.h0_c01085{height:1123.653333pt;}
.w0_c01085{width:794.550667pt;}
.w1_c01085{width:794.666667pt;}
.x0_c01085{left:0.000000pt;}
.x1_c01085{left:113.385333pt;}
.x3_c01085{left:115.333333pt;}
.x5_c01085{left:126.042667pt;}
.x2_c01085{left:142.078667pt;}
.x6_c01085{left:157.221333pt;}
.x7_c01085{left:506.769333pt;}
.x8_c01085{left:580.244000pt;}
.x4_c01085{left:581.778667pt;}
}





/* 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_d1c0fffde0f96bbae32054fa.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.001000;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_c01086;src:url('chunks/assets/font_cf455e178c9ca0188efd31e7.woff2')format("woff");}.ff2_c01086{font-family:ff2_c01086;line-height:1.001000;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_c01086;src:url('chunks/assets/font_c84aef0673724a3912deae63.woff2')format("woff");}.ff3_c01086{font-family:ff3_c01086;line-height:1.001000;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_c01086;src:url('chunks/assets/font_3896dc2aad96bbe7450a2739.woff2')format("woff");}.ff4_c01086{font-family:ff4_c01086;line-height:0.462000;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_c01086;src:url('chunks/assets/font_983610edd6bcb08ac5ea155d.woff2')format("woff");}.ff5_c01086{font-family:ff5_c01086;line-height:1.000000;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_c01086;src:url('chunks/assets/font_b93574fc97fc195b6f5c8aa9.woff2')format("woff");}.ff6_c01086{font-family:ff6_c01086;line-height:0.697000;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_c01086;src:url('chunks/assets/font_548d7816bbaf05683fc66ed9.woff2')format("woff");}.ff7_c01086{font-family:ff7_c01086;line-height:0.696000;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_c01086;src:url('chunks/assets/font_fc8f92fc2d992c9c7ec627e5.woff2')format("woff");}.ff8_c01086{font-family:ff8_c01086;line-height:1.000000;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_c01086;src:url('chunks/assets/font_b78c313f93ecdc6affe2964a.woff2')format("woff");}.ff9_c01086{font-family:ff9_c01086;line-height:1.000000;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);}
.v2_c01086{vertical-align:-21.690000px;}
.v0_c01086{vertical-align:0.000000px;}
.v3_c01086{vertical-align:21.690000px;}
.v1_c01086{vertical-align:26.028000px;}
.ls2_c01086{letter-spacing:0.000000px;}
.ls1_c01086{letter-spacing:22.930764px;}
.ls0_c01086{letter-spacing:29.864340px;}
.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;}
}
.ws1_c01086{word-spacing:-0.071730px;}
.ws29_c01086{word-spacing:-0.059778px;}
.ws1e_c01086{word-spacing:-0.047820px;}
.ws26_c01086{word-spacing:-0.041844px;}
.ws2a_c01086{word-spacing:0.000000px;}
.ws1d_c01086{word-spacing:15.852330px;}
.ws1b_c01086{word-spacing:18.219420px;}
.ws24_c01086{word-spacing:18.362880px;}
.ws22_c01086{word-spacing:18.434610px;}
.ws10_c01086{word-spacing:18.506340px;}
.ws4_c01086{word-spacing:19.725750px;}
.ws28_c01086{word-spacing:19.846296px;}
.ws17_c01086{word-spacing:19.940940px;}
.ws25_c01086{word-spacing:20.873430px;}
.ws5_c01086{word-spacing:22.379760px;}
.ws3_c01086{word-spacing:22.594950px;}
.ws27_c01086{word-spacing:22.835196px;}
.ws2_c01086{word-spacing:23.312250px;}
.ws12_c01086{word-spacing:23.383980px;}
.wsb_c01086{word-spacing:23.670900px;}
.wsd_c01086{word-spacing:23.814360px;}
.ws7_c01086{word-spacing:24.029550px;}
.ws14_c01086{word-spacing:24.244740px;}
.ws13_c01086{word-spacing:24.316470px;}
.ws1a_c01086{word-spacing:24.459930px;}
.ws11_c01086{word-spacing:24.962040px;}
.ws9_c01086{word-spacing:25.033770px;}
.ws16_c01086{word-spacing:25.177230px;}
.wse_c01086{word-spacing:25.464150px;}
.ws8_c01086{word-spacing:25.679340px;}
.ws23_c01086{word-spacing:26.133270px;}
.wsa_c01086{word-spacing:26.540100px;}
.ws15_c01086{word-spacing:26.755290px;}
.ws0_c01086{word-spacing:26.827020px;}
.ws18_c01086{word-spacing:27.042210px;}
.wsc_c01086{word-spacing:28.150290px;}
.ws21_c01086{word-spacing:28.476810px;}
.ws19_c01086{word-spacing:29.050650px;}
.ws1f_c01086{word-spacing:30.270060px;}
.wsf_c01086{word-spacing:32.167770px;}
.ws1c_c01086{word-spacing:32.493690px;}
.ws6_c01086{word-spacing:32.637150px;}
.ws20_c01086{word-spacing:34.215210px;}
._0_c01086{margin-left:-40.527450px;}
._f_c01086{margin-left:-38.447280px;}
._6_c01086{margin-left:-37.084410px;}
._3_c01086{margin-left:-35.219430px;}
._9_c01086{margin-left:-33.139260px;}
._b_c01086{margin-left:-27.329130px;}
._11_c01086{margin-left:-22.838802px;}
._a_c01086{margin-left:-7.818570px;}
._d_c01086{margin-left:-5.881860px;}
._4_c01086{margin-left:-4.160340px;}
._2_c01086{margin-left:-2.008440px;}
._5_c01086{width:1.506330px;}
._7_c01086{width:2.510550px;}
._8_c01086{width:3.873420px;}
._e_c01086{width:31.063110px;}
._c_c01086{width:32.325300px;}
._10_c01086{width:79.333380px;}
._1_c01086{width:464.743440px;}
.fc0_c01086{color:rgb(0,0,0);}
.fs2_c01086{font-size:41.844000px;}
.fs1_c01086{font-size:47.820000px;}
.fs3_c01086{font-size:59.778000px;}
.fs0_c01086{font-size:71.730000px;}
.y0_c01086{bottom:0.000000px;}
.y25_c01086{bottom:102.570000px;}
.y24_c01086{bottom:125.925000px;}
.y23_c01086{bottom:152.682000px;}
.y22_c01086{bottom:179.572500px;}
.y21_c01086{bottom:206.463000px;}
.y20_c01086{bottom:233.353500px;}
.y1f_c01086{bottom:260.245500px;}
.y1e_c01086{bottom:287.136000px;}
.y1d_c01086{bottom:314.026500px;}
.y1c_c01086{bottom:340.917000px;}
.y1b_c01086{bottom:367.809000px;}
.y1a_c01086{bottom:394.699500px;}
.y19_c01086{bottom:421.590000px;}
.y18_c01086{bottom:448.480500px;}
.y17_c01086{bottom:483.093000px;}
.y16_c01086{bottom:539.382000px;}
.y15_c01086{bottom:566.272500px;}
.y14_c01086{bottom:593.163000px;}
.y13_c01086{bottom:620.055000px;}
.y12_c01086{bottom:646.945500px;}
.y11_c01086{bottom:673.836000px;}
.y10_c01086{bottom:700.726500px;}
.yf_c01086{bottom:745.551000px;}
.ye_c01086{bottom:772.441500px;}
.yd_c01086{bottom:799.332000px;}
.yc_c01086{bottom:826.222500px;}
.yb_c01086{bottom:853.114500px;}
.ya_c01086{bottom:880.005000px;}
.y9_c01086{bottom:906.895500px;}
.y8_c01086{bottom:933.786000px;}
.y7_c01086{bottom:960.678000px;}
.y6_c01086{bottom:987.568500px;}
.y5_c01086{bottom:1014.459000px;}
.y4_c01086{bottom:1041.349500px;}
.y3_c01086{bottom:1068.240000px;}
.y2_c01086{bottom:1095.132000px;}
.y1_c01086{bottom:1162.084500px;}
.h4_c01086{height:28.286544px;}
.h5_c01086{height:49.976544px;}
.h2_c01086{height:53.797500px;}
.h3_c01086{height:58.354320px;}
.h1_c01086{height:1263.750000px;}
.h0_c01086{height:1264.110000px;}
.w0_c01086{width:893.869500px;}
.w1_c01086{width:894.000000px;}
.x0_c01086{left:0.000000px;}
.x1_c01086{left:127.558500px;}
.x3_c01086{left:141.798000px;}
.x2_c01086{left:159.838500px;}
@media print{
.v2_c01086{vertical-align:-19.280000pt;}
.v0_c01086{vertical-align:0.000000pt;}
.v3_c01086{vertical-align:19.280000pt;}
.v1_c01086{vertical-align:23.136000pt;}
.ls2_c01086{letter-spacing:0.000000pt;}
.ls1_c01086{letter-spacing:20.382901pt;}
.ls0_c01086{letter-spacing:26.546080pt;}
.ws1_c01086{word-spacing:-0.063760pt;}
.ws29_c01086{word-spacing:-0.053136pt;}
.ws1e_c01086{word-spacing:-0.042507pt;}
.ws26_c01086{word-spacing:-0.037195pt;}
.ws2a_c01086{word-spacing:0.000000pt;}
.ws1d_c01086{word-spacing:14.090960pt;}
.ws1b_c01086{word-spacing:16.195040pt;}
.ws24_c01086{word-spacing:16.322560pt;}
.ws22_c01086{word-spacing:16.386320pt;}
.ws10_c01086{word-spacing:16.450080pt;}
.ws4_c01086{word-spacing:17.534000pt;}
.ws28_c01086{word-spacing:17.641152pt;}
.ws17_c01086{word-spacing:17.725280pt;}
.ws25_c01086{word-spacing:18.554160pt;}
.ws5_c01086{word-spacing:19.893120pt;}
.ws3_c01086{word-spacing:20.084400pt;}
.ws27_c01086{word-spacing:20.297952pt;}
.ws2_c01086{word-spacing:20.722000pt;}
.ws12_c01086{word-spacing:20.785760pt;}
.wsb_c01086{word-spacing:21.040800pt;}
.wsd_c01086{word-spacing:21.168320pt;}
.ws7_c01086{word-spacing:21.359600pt;}
.ws14_c01086{word-spacing:21.550880pt;}
.ws13_c01086{word-spacing:21.614640pt;}
.ws1a_c01086{word-spacing:21.742160pt;}
.ws11_c01086{word-spacing:22.188480pt;}
.ws9_c01086{word-spacing:22.252240pt;}
.ws16_c01086{word-spacing:22.379760pt;}
.wse_c01086{word-spacing:22.634800pt;}
.ws8_c01086{word-spacing:22.826080pt;}
.ws23_c01086{word-spacing:23.229573pt;}
.wsa_c01086{word-spacing:23.591200pt;}
.ws15_c01086{word-spacing:23.782480pt;}
.ws0_c01086{word-spacing:23.846240pt;}
.ws18_c01086{word-spacing:24.037520pt;}
.wsc_c01086{word-spacing:25.022480pt;}
.ws21_c01086{word-spacing:25.312720pt;}
.ws19_c01086{word-spacing:25.822800pt;}
.ws1f_c01086{word-spacing:26.906720pt;}
.wsf_c01086{word-spacing:28.593573pt;}
.ws1c_c01086{word-spacing:28.883280pt;}
.ws6_c01086{word-spacing:29.010800pt;}
.ws20_c01086{word-spacing:30.413520pt;}
._0_c01086{margin-left:-36.024400pt;}
._f_c01086{margin-left:-34.175360pt;}
._6_c01086{margin-left:-32.963920pt;}
._3_c01086{margin-left:-31.306160pt;}
._9_c01086{margin-left:-29.457120pt;}
._b_c01086{margin-left:-24.292560pt;}
._11_c01086{margin-left:-20.301157pt;}
._a_c01086{margin-left:-6.949840pt;}
._d_c01086{margin-left:-5.228320pt;}
._4_c01086{margin-left:-3.698080pt;}
._2_c01086{margin-left:-1.785280pt;}
._5_c01086{width:1.338960pt;}
._7_c01086{width:2.231600pt;}
._8_c01086{width:3.443040pt;}
._e_c01086{width:27.611653pt;}
._c_c01086{width:28.733600pt;}
._10_c01086{width:70.518560pt;}
._1_c01086{width:413.105280pt;}
.fs2_c01086{font-size:37.194667pt;}
.fs1_c01086{font-size:42.506667pt;}
.fs3_c01086{font-size:53.136000pt;}
.fs0_c01086{font-size:63.760000pt;}
.y0_c01086{bottom:0.000000pt;}
.y25_c01086{bottom:91.173333pt;}
.y24_c01086{bottom:111.933333pt;}
.y23_c01086{bottom:135.717333pt;}
.y22_c01086{bottom:159.620000pt;}
.y21_c01086{bottom:183.522667pt;}
.y20_c01086{bottom:207.425333pt;}
.y1f_c01086{bottom:231.329333pt;}
.y1e_c01086{bottom:255.232000pt;}
.y1d_c01086{bottom:279.134667pt;}
.y1c_c01086{bottom:303.037333pt;}
.y1b_c01086{bottom:326.941333pt;}
.y1a_c01086{bottom:350.844000pt;}
.y19_c01086{bottom:374.746667pt;}
.y18_c01086{bottom:398.649333pt;}
.y17_c01086{bottom:429.416000pt;}
.y16_c01086{bottom:479.450667pt;}
.y15_c01086{bottom:503.353333pt;}
.y14_c01086{bottom:527.256000pt;}
.y13_c01086{bottom:551.160000pt;}
.y12_c01086{bottom:575.062667pt;}
.y11_c01086{bottom:598.965333pt;}
.y10_c01086{bottom:622.868000pt;}
.yf_c01086{bottom:662.712000pt;}
.ye_c01086{bottom:686.614667pt;}
.yd_c01086{bottom:710.517333pt;}
.yc_c01086{bottom:734.420000pt;}
.yb_c01086{bottom:758.324000pt;}
.ya_c01086{bottom:782.226667pt;}
.y9_c01086{bottom:806.129333pt;}
.y8_c01086{bottom:830.032000pt;}
.y7_c01086{bottom:853.936000pt;}
.y6_c01086{bottom:877.838667pt;}
.y5_c01086{bottom:901.741333pt;}
.y4_c01086{bottom:925.644000pt;}
.y3_c01086{bottom:949.546667pt;}
.y2_c01086{bottom:973.450667pt;}
.y1_c01086{bottom:1032.964000pt;}
.h4_c01086{height:25.143595pt;}
.h5_c01086{height:44.423595pt;}
.h2_c01086{height:47.820000pt;}
.h3_c01086{height:51.870507pt;}
.h1_c01086{height:1123.333333pt;}
.h0_c01086{height:1123.653333pt;}
.w0_c01086{width:794.550667pt;}
.w1_c01086{width:794.666667pt;}
.x0_c01086{left:0.000000pt;}
.x1_c01086{left:113.385333pt;}
.x3_c01086{left:126.042667pt;}
.x2_c01086{left:142.078667pt;}
}





/* 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_ebb65395c911240b4353bd7d.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.001000;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_e4f0593beb3b8f807528eac5.woff2')format("woff");}.ff2_c01087{font-family:ff2_c01087;line-height:1.001000;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_c01087;src:url('chunks/assets/font_fdd4e756b947103458a87ef7.woff2')format("woff");}.ff3_c01087{font-family:ff3_c01087;line-height:0.697000;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_c01087;src:url('chunks/assets/font_3b8fbaab4e35f1cdf1397ba5.woff2')format("woff");}.ff4_c01087{font-family:ff4_c01087;line-height:1.001000;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_c01087;src:url('chunks/assets/font_171b49e918e80cff802e9466.woff2')format("woff");}.ff5_c01087{font-family:ff5_c01087;line-height:0.696000;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_c01087;src:url('chunks/assets/font_5490026d125589971b2cf548.woff2')format("woff");}.ff6_c01087{font-family:ff6_c01087;line-height:1.000000;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_c01087;src:url('chunks/assets/font_6fea4c6fc0f9ba30e89b1e1f.woff2')format("woff");}.ff7_c01087{font-family:ff7_c01087;line-height:1.000000;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);}
.v2_c01087{vertical-align:-21.690000px;}
.v0_c01087{vertical-align:0.000000px;}
.v1_c01087{vertical-align:26.028000px;}
.ls1_c01087{letter-spacing:0.000000px;}
.ls0_c01087{letter-spacing:34.170300px;}
.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;}
}
.ws1_c01087{word-spacing:-0.071730px;}
.ws3_c01087{word-spacing:-0.047820px;}
.ws2e_c01087{word-spacing:-0.041844px;}
.ws32_c01087{word-spacing:0.000000px;}
.ws9_c01087{word-spacing:16.354440px;}
.ws25_c01087{word-spacing:17.286930px;}
.ws24_c01087{word-spacing:17.430390px;}
.ws6_c01087{word-spacing:17.502120px;}
.ws1b_c01087{word-spacing:17.717310px;}
.ws1f_c01087{word-spacing:17.757810px;}
.ws1d_c01087{word-spacing:17.789040px;}
.ws29_c01087{word-spacing:18.649800px;}
.ws1a_c01087{word-spacing:19.151910px;}
.ws31_c01087{word-spacing:19.846296px;}
.ws20_c01087{word-spacing:19.869210px;}
.ws1e_c01087{word-spacing:19.940940px;}
.ws19_c01087{word-spacing:20.658240px;}
.ws2f_c01087{word-spacing:20.862522px;}
.ws30_c01087{word-spacing:22.237416px;}
.wsf_c01087{word-spacing:22.439190px;}
.ws11_c01087{word-spacing:22.451490px;}
.ws28_c01087{word-spacing:22.810140px;}
.ws5_c01087{word-spacing:23.025330px;}
.wsb_c01087{word-spacing:23.097060px;}
.ws2_c01087{word-spacing:23.312250px;}
.ws23_c01087{word-spacing:23.383980px;}
.wsc_c01087{word-spacing:23.455710px;}
.wse_c01087{word-spacing:23.742630px;}
.ws4_c01087{word-spacing:24.029550px;}
.ws26_c01087{word-spacing:24.173010px;}
.ws7_c01087{word-spacing:24.316470px;}
.wsd_c01087{word-spacing:25.105500px;}
.ws12_c01087{word-spacing:25.177230px;}
.ws1c_c01087{word-spacing:25.478310px;}
.ws2d_c01087{word-spacing:25.966260px;}
.ws2c_c01087{word-spacing:25.990860px;}
.ws2b_c01087{word-spacing:26.021280px;}
.wsa_c01087{word-spacing:26.181450px;}
.ws13_c01087{word-spacing:26.755290px;}
.ws0_c01087{word-spacing:26.827020px;}
.ws27_c01087{word-spacing:27.042210px;}
.ws2a_c01087{word-spacing:27.472590px;}
.ws16_c01087{word-spacing:27.616050px;}
.ws10_c01087{word-spacing:28.397310px;}
.ws22_c01087{word-spacing:28.712520px;}
.ws18_c01087{word-spacing:28.907190px;}
.ws17_c01087{word-spacing:29.194110px;}
.ws21_c01087{word-spacing:30.747780px;}
.ws8_c01087{word-spacing:31.991580px;}
.ws15_c01087{word-spacing:34.143480px;}
.ws14_c01087{word-spacing:34.932510px;}
._0_c01087{margin-left:-40.527450px;}
._c_c01087{margin-left:-37.371330px;}
._2_c01087{margin-left:-35.075970px;}
._7_c01087{margin-left:-33.210990px;}
._14_c01087{margin-left:-30.423102px;}
._13_c01087{margin-left:-29.377374px;}
._9_c01087{margin-left:-27.329130px;}
._8_c01087{margin-left:-7.303680px;}
._b_c01087{margin-left:-5.810130px;}
._a_c01087{margin-left:-3.873420px;}
._3_c01087{margin-left:-2.008440px;}
._5_c01087{width:1.864980px;}
._4_c01087{width:2.928150px;}
._e_c01087{width:3.945150px;}
._6_c01087{width:21.088620px;}
._10_c01087{width:25.436730px;}
._d_c01087{width:29.654760px;}
._11_c01087{width:30.773100px;}
._12_c01087{width:33.484590px;}
._f_c01087{width:38.812980px;}
._1_c01087{width:464.743440px;}
.fc0_c01087{color:rgb(0,0,0);}
.fs2_c01087{font-size:41.844000px;}
.fs1_c01087{font-size:47.820000px;}
.fs3_c01087{font-size:59.778000px;}
.fs0_c01087{font-size:71.730000px;}
.y0_c01087{bottom:0.000000px;}
.y25_c01087{bottom:103.822500px;}
.y24_c01087{bottom:127.179000px;}
.y23_c01087{bottom:153.934500px;}
.y22_c01087{bottom:180.826500px;}
.y21_c01087{bottom:207.717000px;}
.y20_c01087{bottom:234.607500px;}
.y1f_c01087{bottom:261.498000px;}
.y1e_c01087{bottom:288.390000px;}
.y1d_c01087{bottom:315.280500px;}
.y1c_c01087{bottom:342.171000px;}
.y1b_c01087{bottom:386.994000px;}
.y1a_c01087{bottom:413.886000px;}
.y19_c01087{bottom:440.776500px;}
.y18_c01087{bottom:467.667000px;}
.y17_c01087{bottom:494.557500px;}
.y16_c01087{bottom:521.449500px;}
.y15_c01087{bottom:548.340000px;}
.y14_c01087{bottom:575.230500px;}
.y13_c01087{bottom:602.121000px;}
.y12_c01087{bottom:646.945500px;}
.y11_c01087{bottom:673.836000px;}
.y10_c01087{bottom:700.726500px;}
.yf_c01087{bottom:727.617000px;}
.ye_c01087{bottom:754.509000px;}
.yd_c01087{bottom:781.399500px;}
.yc_c01087{bottom:808.290000px;}
.yb_c01087{bottom:835.180500px;}
.ya_c01087{bottom:862.072500px;}
.y9_c01087{bottom:888.963000px;}
.y8_c01087{bottom:915.853500px;}
.y7_c01087{bottom:942.744000px;}
.y6_c01087{bottom:969.636000px;}
.y5_c01087{bottom:1014.459000px;}
.y4_c01087{bottom:1041.349500px;}
.y3_c01087{bottom:1068.240000px;}
.y2_c01087{bottom:1095.132000px;}
.y1_c01087{bottom:1162.084500px;}
.h4_c01087{height:28.286544px;}
.h5_c01087{height:44.833500px;}
.h2_c01087{height:53.797500px;}
.h3_c01087{height:58.354320px;}
.h1_c01087{height:1263.750000px;}
.h0_c01087{height:1264.110000px;}
.w0_c01087{width:893.869500px;}
.w1_c01087{width:894.000000px;}
.x0_c01087{left:0.000000px;}
.x1_c01087{left:127.558500px;}
.x3_c01087{left:141.798000px;}
.x2_c01087{left:159.838500px;}
@media print{
.v2_c01087{vertical-align:-19.280000pt;}
.v0_c01087{vertical-align:0.000000pt;}
.v1_c01087{vertical-align:23.136000pt;}
.ls1_c01087{letter-spacing:0.000000pt;}
.ls0_c01087{letter-spacing:30.373600pt;}
.ws1_c01087{word-spacing:-0.063760pt;}
.ws3_c01087{word-spacing:-0.042507pt;}
.ws2e_c01087{word-spacing:-0.037195pt;}
.ws32_c01087{word-spacing:0.000000pt;}
.ws9_c01087{word-spacing:14.537280pt;}
.ws25_c01087{word-spacing:15.366160pt;}
.ws24_c01087{word-spacing:15.493680pt;}
.ws6_c01087{word-spacing:15.557440pt;}
.ws1b_c01087{word-spacing:15.748720pt;}
.ws1f_c01087{word-spacing:15.784720pt;}
.ws1d_c01087{word-spacing:15.812480pt;}
.ws29_c01087{word-spacing:16.577600pt;}
.ws1a_c01087{word-spacing:17.023920pt;}
.ws31_c01087{word-spacing:17.641152pt;}
.ws20_c01087{word-spacing:17.661520pt;}
.ws1e_c01087{word-spacing:17.725280pt;}
.ws19_c01087{word-spacing:18.362880pt;}
.ws2f_c01087{word-spacing:18.544464pt;}
.ws30_c01087{word-spacing:19.766592pt;}
.wsf_c01087{word-spacing:19.945947pt;}
.ws11_c01087{word-spacing:19.956880pt;}
.ws28_c01087{word-spacing:20.275680pt;}
.ws5_c01087{word-spacing:20.466960pt;}
.wsb_c01087{word-spacing:20.530720pt;}
.ws2_c01087{word-spacing:20.722000pt;}
.ws23_c01087{word-spacing:20.785760pt;}
.wsc_c01087{word-spacing:20.849520pt;}
.wse_c01087{word-spacing:21.104560pt;}
.ws4_c01087{word-spacing:21.359600pt;}
.ws26_c01087{word-spacing:21.487120pt;}
.ws7_c01087{word-spacing:21.614640pt;}
.wsd_c01087{word-spacing:22.316000pt;}
.ws12_c01087{word-spacing:22.379760pt;}
.ws1c_c01087{word-spacing:22.647387pt;}
.ws2d_c01087{word-spacing:23.081120pt;}
.ws2c_c01087{word-spacing:23.102987pt;}
.ws2b_c01087{word-spacing:23.130027pt;}
.wsa_c01087{word-spacing:23.272400pt;}
.ws13_c01087{word-spacing:23.782480pt;}
.ws0_c01087{word-spacing:23.846240pt;}
.ws27_c01087{word-spacing:24.037520pt;}
.ws2a_c01087{word-spacing:24.420080pt;}
.ws16_c01087{word-spacing:24.547600pt;}
.ws10_c01087{word-spacing:25.242053pt;}
.ws22_c01087{word-spacing:25.522240pt;}
.ws18_c01087{word-spacing:25.695280pt;}
.ws17_c01087{word-spacing:25.950320pt;}
.ws21_c01087{word-spacing:27.331360pt;}
.ws8_c01087{word-spacing:28.436960pt;}
.ws15_c01087{word-spacing:30.349760pt;}
.ws14_c01087{word-spacing:31.051120pt;}
._0_c01087{margin-left:-36.024400pt;}
._c_c01087{margin-left:-33.218960pt;}
._2_c01087{margin-left:-31.178640pt;}
._7_c01087{margin-left:-29.520880pt;}
._14_c01087{margin-left:-27.042757pt;}
._13_c01087{margin-left:-26.113221pt;}
._9_c01087{margin-left:-24.292560pt;}
._8_c01087{margin-left:-6.492160pt;}
._b_c01087{margin-left:-5.164560pt;}
._a_c01087{margin-left:-3.443040pt;}
._3_c01087{margin-left:-1.785280pt;}
._5_c01087{width:1.657760pt;}
._4_c01087{width:2.602800pt;}
._e_c01087{width:3.506800pt;}
._6_c01087{width:18.745440pt;}
._10_c01087{width:22.610427pt;}
._d_c01087{width:26.359787pt;}
._11_c01087{width:27.353867pt;}
._12_c01087{width:29.764080pt;}
._f_c01087{width:34.500427pt;}
._1_c01087{width:413.105280pt;}
.fs2_c01087{font-size:37.194667pt;}
.fs1_c01087{font-size:42.506667pt;}
.fs3_c01087{font-size:53.136000pt;}
.fs0_c01087{font-size:63.760000pt;}
.y0_c01087{bottom:0.000000pt;}
.y25_c01087{bottom:92.286667pt;}
.y24_c01087{bottom:113.048000pt;}
.y23_c01087{bottom:136.830667pt;}
.y22_c01087{bottom:160.734667pt;}
.y21_c01087{bottom:184.637333pt;}
.y20_c01087{bottom:208.540000pt;}
.y1f_c01087{bottom:232.442667pt;}
.y1e_c01087{bottom:256.346667pt;}
.y1d_c01087{bottom:280.249333pt;}
.y1c_c01087{bottom:304.152000pt;}
.y1b_c01087{bottom:343.994667pt;}
.y1a_c01087{bottom:367.898667pt;}
.y19_c01087{bottom:391.801333pt;}
.y18_c01087{bottom:415.704000pt;}
.y17_c01087{bottom:439.606667pt;}
.y16_c01087{bottom:463.510667pt;}
.y15_c01087{bottom:487.413333pt;}
.y14_c01087{bottom:511.316000pt;}
.y13_c01087{bottom:535.218667pt;}
.y12_c01087{bottom:575.062667pt;}
.y11_c01087{bottom:598.965333pt;}
.y10_c01087{bottom:622.868000pt;}
.yf_c01087{bottom:646.770667pt;}
.ye_c01087{bottom:670.674667pt;}
.yd_c01087{bottom:694.577333pt;}
.yc_c01087{bottom:718.480000pt;}
.yb_c01087{bottom:742.382667pt;}
.ya_c01087{bottom:766.286667pt;}
.y9_c01087{bottom:790.189333pt;}
.y8_c01087{bottom:814.092000pt;}
.y7_c01087{bottom:837.994667pt;}
.y6_c01087{bottom:861.898667pt;}
.y5_c01087{bottom:901.741333pt;}
.y4_c01087{bottom:925.644000pt;}
.y3_c01087{bottom:949.546667pt;}
.y2_c01087{bottom:973.450667pt;}
.y1_c01087{bottom:1032.964000pt;}
.h4_c01087{height:25.143595pt;}
.h5_c01087{height:39.852000pt;}
.h2_c01087{height:47.820000pt;}
.h3_c01087{height:51.870507pt;}
.h1_c01087{height:1123.333333pt;}
.h0_c01087{height:1123.653333pt;}
.w0_c01087{width:794.550667pt;}
.w1_c01087{width:794.666667pt;}
.x0_c01087{left:0.000000pt;}
.x1_c01087{left:113.385333pt;}
.x3_c01087{left:126.042667pt;}
.x2_c01087{left:142.078667pt;}
}





/* 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_1980cca7bf23ffdc1d403332.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.001000;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_65f319887387458c7ab92240.woff2')format("woff");}.ff2_c01088{font-family:ff2_c01088;line-height:1.001000;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_c01088;src:url('chunks/assets/font_f939422e3552e62524fa9525.woff2')format("woff");}.ff3_c01088{font-family:ff3_c01088;line-height:1.001000;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_c01088;src:url('chunks/assets/font_7e8cb46d9695056164dd62f4.woff2')format("woff");}.ff4_c01088{font-family:ff4_c01088;line-height:0.697000;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_c01088;src:url('chunks/assets/font_d2950675838b63bbcf1c3179.woff2')format("woff");}.ff5_c01088{font-family:ff5_c01088;line-height:1.000000;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_c01088;src:url('chunks/assets/font_0de5472631385fe0e243929a.woff2')format("woff");}.ff6_c01088{font-family:ff6_c01088;line-height:0.696000;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_c01088;src:url('chunks/assets/font_abd56b022326f2237fe0a75b.woff2')format("woff");}.ff7_c01088{font-family:ff7_c01088;line-height:1.000000;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);}
.v3_c01088{vertical-align:-21.690000px;}
.v0_c01088{vertical-align:0.000000px;}
.v1_c01088{vertical-align:18.132000px;}
.v2_c01088{vertical-align:26.028000px;}
.ls0_c01088{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01088{word-spacing:-0.071730px;}
.ws1d_c01088{word-spacing:-0.047820px;}
.ws26_c01088{word-spacing:-0.041844px;}
.ws28_c01088{word-spacing:0.000000px;}
.ws1b_c01088{word-spacing:17.143470px;}
.ws1c_c01088{word-spacing:17.215200px;}
.wsf_c01088{word-spacing:18.864990px;}
.ws5_c01088{word-spacing:19.725750px;}
.ws3_c01088{word-spacing:19.797480px;}
.ws27_c01088{word-spacing:19.846296px;}
.ws1a_c01088{word-spacing:20.299590px;}
.ws19_c01088{word-spacing:20.443050px;}
.ws18_c01088{word-spacing:20.463510px;}
.ws11_c01088{word-spacing:21.016890px;}
.ws4_c01088{word-spacing:21.734190px;}
.ws1e_c01088{word-spacing:22.021110px;}
.wsb_c01088{word-spacing:22.379760px;}
.wsa_c01088{word-spacing:23.168790px;}
.ws9_c01088{word-spacing:23.312250px;}
.ws14_c01088{word-spacing:23.383980px;}
.wsc_c01088{word-spacing:23.455710px;}
.ws2_c01088{word-spacing:24.129300px;}
.ws15_c01088{word-spacing:24.531660px;}
.wsd_c01088{word-spacing:24.962040px;}
.ws23_c01088{word-spacing:25.392420px;}
.ws8_c01088{word-spacing:26.253180px;}
.ws6_c01088{word-spacing:26.324910px;}
.ws12_c01088{word-spacing:26.611830px;}
.ws0_c01088{word-spacing:26.827020px;}
.ws24_c01088{word-spacing:27.042210px;}
.ws7_c01088{word-spacing:27.759510px;}
.ws10_c01088{word-spacing:27.974700px;}
.ws22_c01088{word-spacing:28.189890px;}
.wse_c01088{word-spacing:28.405080px;}
.ws13_c01088{word-spacing:29.409300px;}
.ws25_c01088{word-spacing:29.624490px;}
.ws20_c01088{word-spacing:30.556980px;}
.ws21_c01088{word-spacing:32.206770px;}
.ws1f_c01088{word-spacing:32.493690px;}
.ws16_c01088{word-spacing:34.143480px;}
.ws17_c01088{word-spacing:40.088550px;}
._0_c01088{margin-left:-40.527450px;}
._f_c01088{margin-left:-37.084410px;}
._2_c01088{margin-left:-35.865000px;}
._13_c01088{margin-left:-34.717320px;}
._d_c01088{margin-left:-33.713100px;}
._12_c01088{margin-left:-32.278500px;}
._b_c01088{margin-left:-27.400860px;}
._a_c01088{margin-left:-7.818570px;}
._6_c01088{margin-left:-5.810130px;}
._9_c01088{margin-left:-4.705890px;}
._3_c01088{margin-left:-3.514770px;}
._10_c01088{margin-left:-2.295360px;}
._7_c01088{margin-left:-1.291140px;}
._8_c01088{width:1.864980px;}
._4_c01088{width:3.992580px;}
._14_c01088{width:21.561030px;}
._11_c01088{width:23.455710px;}
._e_c01088{width:24.459930px;}
._5_c01088{width:25.762590px;}
._c_c01088{width:31.663170px;}
._15_c01088{width:79.333380px;}
._1_c01088{width:464.743440px;}
.fc0_c01088{color:rgb(0,0,0);}
.fs2_c01088{font-size:41.844000px;}
.fs1_c01088{font-size:47.820000px;}
.fs3_c01088{font-size:59.778000px;}
.fs0_c01088{font-size:71.730000px;}
.y0_c01088{bottom:0.000000px;}
.y24_c01088{bottom:107.992500px;}
.y23_c01088{bottom:134.749500px;}
.y22_c01088{bottom:161.640000px;}
.y21_c01088{bottom:196.251000px;}
.y20_c01088{bottom:252.540000px;}
.y1f_c01088{bottom:279.432000px;}
.y1e_c01088{bottom:306.322500px;}
.y1d_c01088{bottom:333.213000px;}
.y1c_c01088{bottom:360.103500px;}
.y1b_c01088{bottom:386.994000px;}
.y1a_c01088{bottom:413.886000px;}
.y19_c01088{bottom:440.776500px;}
.y18_c01088{bottom:467.667000px;}
.y17_c01088{bottom:494.557500px;}
.y16_c01088{bottom:521.449500px;}
.y15_c01088{bottom:566.272500px;}
.y14_c01088{bottom:593.163000px;}
.y13_c01088{bottom:620.055000px;}
.y12_c01088{bottom:646.945500px;}
.y11_c01088{bottom:673.836000px;}
.y10_c01088{bottom:700.726500px;}
.yf_c01088{bottom:727.617000px;}
.ye_c01088{bottom:754.509000px;}
.yd_c01088{bottom:781.399500px;}
.yc_c01088{bottom:808.290000px;}
.yb_c01088{bottom:835.180500px;}
.ya_c01088{bottom:862.072500px;}
.y9_c01088{bottom:888.963000px;}
.y8_c01088{bottom:915.853500px;}
.y7_c01088{bottom:942.744000px;}
.y6_c01088{bottom:969.636000px;}
.y5_c01088{bottom:996.526500px;}
.y4_c01088{bottom:1041.349500px;}
.y3_c01088{bottom:1068.240000px;}
.y2_c01088{bottom:1095.132000px;}
.y1_c01088{bottom:1162.084500px;}
.h5_c01088{height:28.286544px;}
.h2_c01088{height:53.797500px;}
.h4_c01088{height:58.354320px;}
.h3_c01088{height:71.929500px;}
.h1_c01088{height:1263.750000px;}
.h0_c01088{height:1264.110000px;}
.w0_c01088{width:893.869500px;}
.w1_c01088{width:894.000000px;}
.x0_c01088{left:0.000000px;}
.x1_c01088{left:127.558500px;}
.x4_c01088{left:141.798000px;}
.x2_c01088{left:159.838500px;}
.x3_c01088{left:312.379500px;}
@media print{
.v3_c01088{vertical-align:-19.280000pt;}
.v0_c01088{vertical-align:0.000000pt;}
.v1_c01088{vertical-align:16.117333pt;}
.v2_c01088{vertical-align:23.136000pt;}
.ls0_c01088{letter-spacing:0.000000pt;}
.ws1_c01088{word-spacing:-0.063760pt;}
.ws1d_c01088{word-spacing:-0.042507pt;}
.ws26_c01088{word-spacing:-0.037195pt;}
.ws28_c01088{word-spacing:0.000000pt;}
.ws1b_c01088{word-spacing:15.238640pt;}
.ws1c_c01088{word-spacing:15.302400pt;}
.wsf_c01088{word-spacing:16.768880pt;}
.ws5_c01088{word-spacing:17.534000pt;}
.ws3_c01088{word-spacing:17.597760pt;}
.ws27_c01088{word-spacing:17.641152pt;}
.ws1a_c01088{word-spacing:18.044080pt;}
.ws19_c01088{word-spacing:18.171600pt;}
.ws18_c01088{word-spacing:18.189787pt;}
.ws11_c01088{word-spacing:18.681680pt;}
.ws4_c01088{word-spacing:19.319280pt;}
.ws1e_c01088{word-spacing:19.574320pt;}
.wsb_c01088{word-spacing:19.893120pt;}
.wsa_c01088{word-spacing:20.594480pt;}
.ws9_c01088{word-spacing:20.722000pt;}
.ws14_c01088{word-spacing:20.785760pt;}
.wsc_c01088{word-spacing:20.849520pt;}
.ws2_c01088{word-spacing:21.448267pt;}
.ws15_c01088{word-spacing:21.805920pt;}
.wsd_c01088{word-spacing:22.188480pt;}
.ws23_c01088{word-spacing:22.571040pt;}
.ws8_c01088{word-spacing:23.336160pt;}
.ws6_c01088{word-spacing:23.399920pt;}
.ws12_c01088{word-spacing:23.654960pt;}
.ws0_c01088{word-spacing:23.846240pt;}
.ws24_c01088{word-spacing:24.037520pt;}
.ws7_c01088{word-spacing:24.675120pt;}
.ws10_c01088{word-spacing:24.866400pt;}
.ws22_c01088{word-spacing:25.057680pt;}
.wse_c01088{word-spacing:25.248960pt;}
.ws13_c01088{word-spacing:26.141600pt;}
.ws25_c01088{word-spacing:26.332880pt;}
.ws20_c01088{word-spacing:27.161760pt;}
.ws21_c01088{word-spacing:28.628240pt;}
.ws1f_c01088{word-spacing:28.883280pt;}
.ws16_c01088{word-spacing:30.349760pt;}
.ws17_c01088{word-spacing:35.634267pt;}
._0_c01088{margin-left:-36.024400pt;}
._f_c01088{margin-left:-32.963920pt;}
._2_c01088{margin-left:-31.880000pt;}
._13_c01088{margin-left:-30.859840pt;}
._d_c01088{margin-left:-29.967200pt;}
._12_c01088{margin-left:-28.692000pt;}
._b_c01088{margin-left:-24.356320pt;}
._a_c01088{margin-left:-6.949840pt;}
._6_c01088{margin-left:-5.164560pt;}
._9_c01088{margin-left:-4.183013pt;}
._3_c01088{margin-left:-3.124240pt;}
._10_c01088{margin-left:-2.040320pt;}
._7_c01088{margin-left:-1.147680pt;}
._8_c01088{width:1.657760pt;}
._4_c01088{width:3.548960pt;}
._14_c01088{width:19.165360pt;}
._11_c01088{width:20.849520pt;}
._e_c01088{width:21.742160pt;}
._5_c01088{width:22.900080pt;}
._c_c01088{width:28.145040pt;}
._15_c01088{width:70.518560pt;}
._1_c01088{width:413.105280pt;}
.fs2_c01088{font-size:37.194667pt;}
.fs1_c01088{font-size:42.506667pt;}
.fs3_c01088{font-size:53.136000pt;}
.fs0_c01088{font-size:63.760000pt;}
.y0_c01088{bottom:0.000000pt;}
.y24_c01088{bottom:95.993333pt;}
.y23_c01088{bottom:119.777333pt;}
.y22_c01088{bottom:143.680000pt;}
.y21_c01088{bottom:174.445333pt;}
.y20_c01088{bottom:224.480000pt;}
.y1f_c01088{bottom:248.384000pt;}
.y1e_c01088{bottom:272.286667pt;}
.y1d_c01088{bottom:296.189333pt;}
.y1c_c01088{bottom:320.092000pt;}
.y1b_c01088{bottom:343.994667pt;}
.y1a_c01088{bottom:367.898667pt;}
.y19_c01088{bottom:391.801333pt;}
.y18_c01088{bottom:415.704000pt;}
.y17_c01088{bottom:439.606667pt;}
.y16_c01088{bottom:463.510667pt;}
.y15_c01088{bottom:503.353333pt;}
.y14_c01088{bottom:527.256000pt;}
.y13_c01088{bottom:551.160000pt;}
.y12_c01088{bottom:575.062667pt;}
.y11_c01088{bottom:598.965333pt;}
.y10_c01088{bottom:622.868000pt;}
.yf_c01088{bottom:646.770667pt;}
.ye_c01088{bottom:670.674667pt;}
.yd_c01088{bottom:694.577333pt;}
.yc_c01088{bottom:718.480000pt;}
.yb_c01088{bottom:742.382667pt;}
.ya_c01088{bottom:766.286667pt;}
.y9_c01088{bottom:790.189333pt;}
.y8_c01088{bottom:814.092000pt;}
.y7_c01088{bottom:837.994667pt;}
.y6_c01088{bottom:861.898667pt;}
.y5_c01088{bottom:885.801333pt;}
.y4_c01088{bottom:925.644000pt;}
.y3_c01088{bottom:949.546667pt;}
.y2_c01088{bottom:973.450667pt;}
.y1_c01088{bottom:1032.964000pt;}
.h5_c01088{height:25.143595pt;}
.h2_c01088{height:47.820000pt;}
.h4_c01088{height:51.870507pt;}
.h3_c01088{height:63.937333pt;}
.h1_c01088{height:1123.333333pt;}
.h0_c01088{height:1123.653333pt;}
.w0_c01088{width:794.550667pt;}
.w1_c01088{width:794.666667pt;}
.x0_c01088{left:0.000000pt;}
.x1_c01088{left:113.385333pt;}
.x4_c01088{left:126.042667pt;}
.x2_c01088{left:142.078667pt;}
.x3_c01088{left:277.670667pt;}
}





/* 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_e1d14f77e983d57a0ccfbc6c.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.001000;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_f6780f3ba94f565106737b61.woff2')format("woff");}.ff2_c01089{font-family:ff2_c01089;line-height:1.001000;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_c01089;src:url('chunks/assets/font_9a64be6c02c2a165d5e63cd4.woff2')format("woff");}.ff3_c01089{font-family:ff3_c01089;line-height:1.001000;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_c01089;src:url('chunks/assets/font_96cb19d089f614be8bb6fc76.woff2')format("woff");}.ff4_c01089{font-family:ff4_c01089;line-height:0.697000;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_c01089;src:url('chunks/assets/font_34663d8d972c40c961c85670.woff2')format("woff");}.ff5_c01089{font-family:ff5_c01089;line-height:1.000000;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_c01089;src:url('chunks/assets/font_17deb671a20e9106aae83936.woff2')format("woff");}.ff6_c01089{font-family:ff6_c01089;line-height:0.696000;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_c01089;src:url('chunks/assets/font_f77fa3f52171f5a70e3dc4e2.woff2')format("woff");}.ff7_c01089{font-family:ff7_c01089;line-height:1.000000;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_c01089;src:url('chunks/assets/font_974924b8e7da7165344bb90c.woff2')format("woff");}.ff8_c01089{font-family:ff8_c01089;line-height:1.000000;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);}
.v2_c01089{vertical-align:-21.696000px;}
.v0_c01089{vertical-align:0.000000px;}
.v3_c01089{vertical-align:15.108000px;}
.v1_c01089{vertical-align:26.034000px;}
.ls0_c01089{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01089{word-spacing:-0.071730px;}
.ws1f_c01089{word-spacing:-0.059778px;}
.wsc_c01089{word-spacing:-0.047820px;}
.ws1e_c01089{word-spacing:-0.041844px;}
.ws23_c01089{word-spacing:0.000000px;}
.ws13_c01089{word-spacing:16.426170px;}
.ws3_c01089{word-spacing:17.573850px;}
.ws18_c01089{word-spacing:17.717310px;}
.ws2_c01089{word-spacing:19.725750px;}
.ws22_c01089{word-spacing:19.846296px;}
.ws4_c01089{word-spacing:20.227860px;}
.ws20_c01089{word-spacing:20.982078px;}
.ws21_c01089{word-spacing:21.280968px;}
.ws14_c01089{word-spacing:21.303810px;}
.ws6_c01089{word-spacing:22.092840px;}
.ws15_c01089{word-spacing:22.451490px;}
.ws1c_c01089{word-spacing:22.666680px;}
.ws8_c01089{word-spacing:23.312250px;}
.ws1a_c01089{word-spacing:23.455710px;}
.ws10_c01089{word-spacing:24.316470px;}
.ws12_c01089{word-spacing:24.675120px;}
.wsb_c01089{word-spacing:25.033770px;}
.wsf_c01089{word-spacing:25.177230px;}
.ws17_c01089{word-spacing:25.751070px;}
.ws7_c01089{word-spacing:25.822800px;}
.ws1d_c01089{word-spacing:26.683560px;}
.ws0_c01089{word-spacing:26.827020px;}
.ws19_c01089{word-spacing:27.042210px;}
.ws16_c01089{word-spacing:27.257400px;}
.wsd_c01089{word-spacing:29.481030px;}
.ws5_c01089{word-spacing:29.624490px;}
.wsa_c01089{word-spacing:30.843900px;}
.wse_c01089{word-spacing:31.059090px;}
.ws9_c01089{word-spacing:32.206770px;}
.ws1b_c01089{word-spacing:34.215210px;}
.ws11_c01089{word-spacing:37.945170px;}
._0_c01089{margin-left:-40.527450px;}
._11_c01089{margin-left:-37.371330px;}
._6_c01089{margin-left:-36.367110px;}
._5_c01089{margin-left:-35.362890px;}
._3_c01089{margin-left:-33.210990px;}
._16_c01089{margin-left:-30.331746px;}
._9_c01089{margin-left:-28.261620px;}
._d_c01089{margin-left:-26.970480px;}
._a_c01089{margin-left:-7.890300px;}
._7_c01089{margin-left:-6.097050px;}
._13_c01089{margin-left:-4.877640px;}
._8_c01089{margin-left:-3.873420px;}
._2_c01089{margin-left:-1.936710px;}
._4_c01089{width:1.793250px;}
._c_c01089{width:3.011160px;}
._14_c01089{width:4.016880px;}
._b_c01089{width:5.588550px;}
._15_c01089{width:7.446408px;}
._10_c01089{width:20.371320px;}
._f_c01089{width:23.240520px;}
._e_c01089{width:25.392420px;}
._12_c01089{width:79.333380px;}
._1_c01089{width:464.743440px;}
.fc0_c01089{color:rgb(0,0,0);}
.fs2_c01089{font-size:41.844000px;}
.fs1_c01089{font-size:47.820000px;}
.fs3_c01089{font-size:59.778000px;}
.fs0_c01089{font-size:71.730000px;}
.y0_c01089{bottom:0.000000px;}
.y25_c01089{bottom:106.936500px;}
.y24_c01089{bottom:124.869000px;}
.y23_c01089{bottom:130.293000px;}
.y22_c01089{bottom:158.650500px;}
.y21_c01089{bottom:185.541000px;}
.y20_c01089{bottom:212.433000px;}
.y1f_c01089{bottom:239.323500px;}
.y1e_c01089{bottom:266.214000px;}
.y1d_c01089{bottom:293.104500px;}
.y1c_c01089{bottom:327.717000px;}
.y1b_c01089{bottom:384.006000px;}
.y1a_c01089{bottom:410.896500px;}
.y19_c01089{bottom:437.787000px;}
.y18_c01089{bottom:464.679000px;}
.y17_c01089{bottom:491.569500px;}
.y16_c01089{bottom:518.460000px;}
.y15_c01089{bottom:545.350500px;}
.y14_c01089{bottom:572.242500px;}
.y13_c01089{bottom:599.133000px;}
.y12_c01089{bottom:626.023500px;}
.y11_c01089{bottom:652.914000px;}
.y10_c01089{bottom:679.806000px;}
.yf_c01089{bottom:706.696500px;}
.ye_c01089{bottom:733.587000px;}
.yd_c01089{bottom:760.477500px;}
.yc_c01089{bottom:787.368000px;}
.yb_c01089{bottom:814.260000px;}
.ya_c01089{bottom:860.577000px;}
.y9_c01089{bottom:887.469000px;}
.y8_c01089{bottom:914.359500px;}
.y7_c01089{bottom:960.678000px;}
.y6_c01089{bottom:987.568500px;}
.y5_c01089{bottom:1014.459000px;}
.y4_c01089{bottom:1041.349500px;}
.y3_c01089{bottom:1068.240000px;}
.y2_c01089{bottom:1095.132000px;}
.y1_c01089{bottom:1162.084500px;}
.h4_c01089{height:38.245500px;}
.h5_c01089{height:44.833500px;}
.h2_c01089{height:53.797500px;}
.h3_c01089{height:58.360320px;}
.h1_c01089{height:1263.750000px;}
.h0_c01089{height:1264.110000px;}
.w0_c01089{width:893.869500px;}
.w1_c01089{width:894.000000px;}
.x0_c01089{left:0.000000px;}
.x1_c01089{left:127.558500px;}
.x5_c01089{left:141.798000px;}
.x2_c01089{left:159.838500px;}
.x4_c01089{left:171.456000px;}
.x6_c01089{left:196.591500px;}
.x3_c01089{left:197.794500px;}
@media print{
.v2_c01089{vertical-align:-19.285333pt;}
.v0_c01089{vertical-align:0.000000pt;}
.v3_c01089{vertical-align:13.429333pt;}
.v1_c01089{vertical-align:23.141333pt;}
.ls0_c01089{letter-spacing:0.000000pt;}
.ws1_c01089{word-spacing:-0.063760pt;}
.ws1f_c01089{word-spacing:-0.053136pt;}
.wsc_c01089{word-spacing:-0.042507pt;}
.ws1e_c01089{word-spacing:-0.037195pt;}
.ws23_c01089{word-spacing:0.000000pt;}
.ws13_c01089{word-spacing:14.601040pt;}
.ws3_c01089{word-spacing:15.621200pt;}
.ws18_c01089{word-spacing:15.748720pt;}
.ws2_c01089{word-spacing:17.534000pt;}
.ws22_c01089{word-spacing:17.641152pt;}
.ws4_c01089{word-spacing:17.980320pt;}
.ws20_c01089{word-spacing:18.650736pt;}
.ws21_c01089{word-spacing:18.916416pt;}
.ws14_c01089{word-spacing:18.936720pt;}
.ws6_c01089{word-spacing:19.638080pt;}
.ws15_c01089{word-spacing:19.956880pt;}
.ws1c_c01089{word-spacing:20.148160pt;}
.ws8_c01089{word-spacing:20.722000pt;}
.ws1a_c01089{word-spacing:20.849520pt;}
.ws10_c01089{word-spacing:21.614640pt;}
.ws12_c01089{word-spacing:21.933440pt;}
.wsb_c01089{word-spacing:22.252240pt;}
.wsf_c01089{word-spacing:22.379760pt;}
.ws17_c01089{word-spacing:22.889840pt;}
.ws7_c01089{word-spacing:22.953600pt;}
.ws1d_c01089{word-spacing:23.718720pt;}
.ws0_c01089{word-spacing:23.846240pt;}
.ws19_c01089{word-spacing:24.037520pt;}
.ws16_c01089{word-spacing:24.228800pt;}
.wsd_c01089{word-spacing:26.205360pt;}
.ws5_c01089{word-spacing:26.332880pt;}
.wsa_c01089{word-spacing:27.416800pt;}
.wse_c01089{word-spacing:27.608080pt;}
.ws9_c01089{word-spacing:28.628240pt;}
.ws1b_c01089{word-spacing:30.413520pt;}
.ws11_c01089{word-spacing:33.729040pt;}
._0_c01089{margin-left:-36.024400pt;}
._11_c01089{margin-left:-33.218960pt;}
._6_c01089{margin-left:-32.326320pt;}
._5_c01089{margin-left:-31.433680pt;}
._3_c01089{margin-left:-29.520880pt;}
._16_c01089{margin-left:-26.961552pt;}
._9_c01089{margin-left:-25.121440pt;}
._d_c01089{margin-left:-23.973760pt;}
._a_c01089{margin-left:-7.013600pt;}
._7_c01089{margin-left:-5.419600pt;}
._13_c01089{margin-left:-4.335680pt;}
._8_c01089{margin-left:-3.443040pt;}
._2_c01089{margin-left:-1.721520pt;}
._4_c01089{width:1.594000pt;}
._c_c01089{width:2.676587pt;}
._14_c01089{width:3.570560pt;}
._b_c01089{width:4.967600pt;}
._15_c01089{width:6.619029pt;}
._10_c01089{width:18.107840pt;}
._f_c01089{width:20.658240pt;}
._e_c01089{width:22.571040pt;}
._12_c01089{width:70.518560pt;}
._1_c01089{width:413.105280pt;}
.fs2_c01089{font-size:37.194667pt;}
.fs1_c01089{font-size:42.506667pt;}
.fs3_c01089{font-size:53.136000pt;}
.fs0_c01089{font-size:63.760000pt;}
.y0_c01089{bottom:0.000000pt;}
.y25_c01089{bottom:95.054667pt;}
.y24_c01089{bottom:110.994667pt;}
.y23_c01089{bottom:115.816000pt;}
.y22_c01089{bottom:141.022667pt;}
.y21_c01089{bottom:164.925333pt;}
.y20_c01089{bottom:188.829333pt;}
.y1f_c01089{bottom:212.732000pt;}
.y1e_c01089{bottom:236.634667pt;}
.y1d_c01089{bottom:260.537333pt;}
.y1c_c01089{bottom:291.304000pt;}
.y1b_c01089{bottom:341.338667pt;}
.y1a_c01089{bottom:365.241333pt;}
.y19_c01089{bottom:389.144000pt;}
.y18_c01089{bottom:413.048000pt;}
.y17_c01089{bottom:436.950667pt;}
.y16_c01089{bottom:460.853333pt;}
.y15_c01089{bottom:484.756000pt;}
.y14_c01089{bottom:508.660000pt;}
.y13_c01089{bottom:532.562667pt;}
.y12_c01089{bottom:556.465333pt;}
.y11_c01089{bottom:580.368000pt;}
.y10_c01089{bottom:604.272000pt;}
.yf_c01089{bottom:628.174667pt;}
.ye_c01089{bottom:652.077333pt;}
.yd_c01089{bottom:675.980000pt;}
.yc_c01089{bottom:699.882667pt;}
.yb_c01089{bottom:723.786667pt;}
.ya_c01089{bottom:764.957333pt;}
.y9_c01089{bottom:788.861333pt;}
.y8_c01089{bottom:812.764000pt;}
.y7_c01089{bottom:853.936000pt;}
.y6_c01089{bottom:877.838667pt;}
.y5_c01089{bottom:901.741333pt;}
.y4_c01089{bottom:925.644000pt;}
.y3_c01089{bottom:949.546667pt;}
.y2_c01089{bottom:973.450667pt;}
.y1_c01089{bottom:1032.964000pt;}
.h4_c01089{height:33.996000pt;}
.h5_c01089{height:39.852000pt;}
.h2_c01089{height:47.820000pt;}
.h3_c01089{height:51.875840pt;}
.h1_c01089{height:1123.333333pt;}
.h0_c01089{height:1123.653333pt;}
.w0_c01089{width:794.550667pt;}
.w1_c01089{width:794.666667pt;}
.x0_c01089{left:0.000000pt;}
.x1_c01089{left:113.385333pt;}
.x5_c01089{left:126.042667pt;}
.x2_c01089{left:142.078667pt;}
.x4_c01089{left:152.405333pt;}
.x6_c01089{left:174.748000pt;}
.x3_c01089{left:175.817333pt;}
}





/* 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_9db37aa203866c3e8dfe814f.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.001000;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_92fbf1fb3e4a4ff29b2a5397.woff2')format("woff");}.ff2_c01090{font-family:ff2_c01090;line-height:1.001000;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_c01090;src:url('chunks/assets/font_fb9e1c13db056f67f3731786.woff2')format("woff");}.ff3_c01090{font-family:ff3_c01090;line-height:0.462000;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_c01090;src:url('chunks/assets/font_838f8170995ab81d912299ac.woff2')format("woff");}.ff4_c01090{font-family:ff4_c01090;line-height:0.697000;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_c01090;src:url('chunks/assets/font_b40956fb51d9dbff3a27c529.woff2')format("woff");}.ff5_c01090{font-family:ff5_c01090;line-height:1.000000;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_c01090;src:url('chunks/assets/font_7d5d29944059c55799e49cc8.woff2')format("woff");}.ff6_c01090{font-family:ff6_c01090;line-height:1.001000;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_c01090;src:url('chunks/assets/font_74ee28a5871deaa24cb4f071.woff2')format("woff");}.ff7_c01090{font-family:ff7_c01090;line-height:0.696000;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_c01090;src:url('chunks/assets/font_8f8ecafc63b8395346acaa8c.woff2')format("woff");}.ff8_c01090{font-family:ff8_c01090;line-height:1.000000;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_c01090;src:url('chunks/assets/font_f126faa71bee681b16654b0c.woff2')format("woff");}.ff9_c01090{font-family:ff9_c01090;line-height:1.000000;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);}
.v2_c01090{vertical-align:-21.690000px;}
.v0_c01090{vertical-align:0.000000px;}
.v3_c01090{vertical-align:15.108000px;}
.v1_c01090{vertical-align:26.028000px;}
.ls2_c01090{letter-spacing:0.000000px;}
.ls1_c01090{letter-spacing:18.710514px;}
.ls0_c01090{letter-spacing:37.292340px;}
.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;}
}
.ws28_c01090{word-spacing:-18.770292px;}
.ws1_c01090{word-spacing:-0.071730px;}
.ws1f_c01090{word-spacing:-0.059778px;}
.ws8_c01090{word-spacing:-0.047820px;}
.ws1e_c01090{word-spacing:-0.041844px;}
.ws29_c01090{word-spacing:0.000000px;}
.wsb_c01090{word-spacing:16.641360px;}
.wsf_c01090{word-spacing:17.502120px;}
.ws9_c01090{word-spacing:17.573850px;}
.ws26_c01090{word-spacing:18.650736px;}
.ws16_c01090{word-spacing:18.793260px;}
.ws1d_c01090{word-spacing:19.725750px;}
.ws20_c01090{word-spacing:19.846296px;}
.ws27_c01090{word-spacing:20.204964px;}
.ws4_c01090{word-spacing:20.514780px;}
.ws21_c01090{word-spacing:21.280968px;}
.ws25_c01090{word-spacing:21.340746px;}
.ws1c_c01090{word-spacing:22.666680px;}
.ws14_c01090{word-spacing:22.810140px;}
.ws1a_c01090{word-spacing:22.881870px;}
.ws7_c01090{word-spacing:23.312250px;}
.ws12_c01090{word-spacing:24.603390px;}
.ws15_c01090{word-spacing:25.894530px;}
.ws18_c01090{word-spacing:26.396640px;}
.ws22_c01090{word-spacing:26.481654px;}
.ws11_c01090{word-spacing:26.755290px;}
.ws0_c01090{word-spacing:26.827020px;}
.wsc_c01090{word-spacing:27.042210px;}
.ws10_c01090{word-spacing:27.831240px;}
.wsd_c01090{word-spacing:28.046430px;}
.ws23_c01090{word-spacing:29.111886px;}
.ws19_c01090{word-spacing:29.471340px;}
.ws3_c01090{word-spacing:29.481030px;}
.ws6_c01090{word-spacing:29.767950px;}
.ws24_c01090{word-spacing:29.889000px;}
.ws1b_c01090{word-spacing:31.130820px;}
.ws13_c01090{word-spacing:31.202550px;}
.ws17_c01090{word-spacing:31.848120px;}
.wsa_c01090{word-spacing:32.924070px;}
.ws2_c01090{word-spacing:33.569640px;}
.ws5_c01090{word-spacing:34.215210px;}
.wse_c01090{word-spacing:34.860780px;}
._0_c01090{margin-left:-40.527450px;}
._9_c01090{margin-left:-38.447280px;}
._3_c01090{margin-left:-37.156140px;}
._5_c01090{margin-left:-35.147700px;}
._a_c01090{margin-left:-32.995800px;}
._f_c01090{margin-left:-30.378888px;}
._8_c01090{margin-left:-27.400860px;}
._10_c01090{margin-left:-18.335154px;}
._7_c01090{margin-left:-7.818570px;}
._e_c01090{margin-left:-5.953590px;}
._b_c01090{margin-left:-3.945150px;}
._4_c01090{margin-left:-2.008440px;}
._2_c01090{width:1.936710px;}
._6_c01090{width:3.371310px;}
._d_c01090{width:36.869220px;}
._c_c01090{width:79.333380px;}
._1_c01090{width:464.743440px;}
.fc0_c01090{color:rgb(0,0,0);}
.fs2_c01090{font-size:41.844000px;}
.fs1_c01090{font-size:47.820000px;}
.fs3_c01090{font-size:59.778000px;}
.fs0_c01090{font-size:71.730000px;}
.y0_c01090{bottom:0.000000px;}
.y28_c01090{bottom:99.954000px;}
.y27_c01090{bottom:123.310500px;}
.y26_c01090{bottom:135.820500px;}
.y25_c01090{bottom:153.753000px;}
.y24_c01090{bottom:177.108000px;}
.y23_c01090{bottom:189.618000px;}
.y22_c01090{bottom:195.040500px;}
.y21_c01090{bottom:224.395500px;}
.y20_c01090{bottom:251.287500px;}
.y1f_c01090{bottom:278.178000px;}
.y1e_c01090{bottom:305.068500px;}
.y1d_c01090{bottom:331.959000px;}
.y1c_c01090{bottom:358.849500px;}
.y1b_c01090{bottom:385.741500px;}
.y1a_c01090{bottom:412.632000px;}
.y19_c01090{bottom:439.522500px;}
.y18_c01090{bottom:466.413000px;}
.y17_c01090{bottom:493.305000px;}
.y16_c01090{bottom:520.195500px;}
.y15_c01090{bottom:547.086000px;}
.y14_c01090{bottom:573.976500px;}
.y13_c01090{bottom:600.868500px;}
.y12_c01090{bottom:627.759000px;}
.y11_c01090{bottom:654.649500px;}
.y10_c01090{bottom:681.540000px;}
.yf_c01090{bottom:708.432000px;}
.ye_c01090{bottom:735.322500px;}
.yd_c01090{bottom:762.213000px;}
.yc_c01090{bottom:789.103500px;}
.yb_c01090{bottom:815.994000px;}
.ya_c01090{bottom:850.606500px;}
.y9_c01090{bottom:906.895500px;}
.y8_c01090{bottom:933.786000px;}
.y7_c01090{bottom:960.678000px;}
.y6_c01090{bottom:987.568500px;}
.y5_c01090{bottom:1014.459000px;}
.y4_c01090{bottom:1041.349500px;}
.y3_c01090{bottom:1068.240000px;}
.y2_c01090{bottom:1095.132000px;}
.y1_c01090{bottom:1162.084500px;}
.h7_c01090{height:28.286544px;}
.h5_c01090{height:38.251500px;}
.h6_c01090{height:44.833500px;}
.h2_c01090{height:53.797500px;}
.h3_c01090{height:58.354320px;}
.h4_c01090{height:58.360320px;}
.h1_c01090{height:1263.750000px;}
.h0_c01090{height:1264.110000px;}
.w0_c01090{width:893.869500px;}
.w1_c01090{width:894.000000px;}
.x0_c01090{left:0.000000px;}
.x1_c01090{left:127.558500px;}
.x3_c01090{left:141.798000px;}
.x2_c01090{left:159.838500px;}
.x4_c01090{left:198.771000px;}
@media print{
.v2_c01090{vertical-align:-19.280000pt;}
.v0_c01090{vertical-align:0.000000pt;}
.v3_c01090{vertical-align:13.429333pt;}
.v1_c01090{vertical-align:23.136000pt;}
.ls2_c01090{letter-spacing:0.000000pt;}
.ls1_c01090{letter-spacing:16.631568pt;}
.ls0_c01090{letter-spacing:33.148747pt;}
.ws28_c01090{word-spacing:-16.684704pt;}
.ws1_c01090{word-spacing:-0.063760pt;}
.ws1f_c01090{word-spacing:-0.053136pt;}
.ws8_c01090{word-spacing:-0.042507pt;}
.ws1e_c01090{word-spacing:-0.037195pt;}
.ws29_c01090{word-spacing:0.000000pt;}
.wsb_c01090{word-spacing:14.792320pt;}
.wsf_c01090{word-spacing:15.557440pt;}
.ws9_c01090{word-spacing:15.621200pt;}
.ws26_c01090{word-spacing:16.578432pt;}
.ws16_c01090{word-spacing:16.705120pt;}
.ws1d_c01090{word-spacing:17.534000pt;}
.ws20_c01090{word-spacing:17.641152pt;}
.ws27_c01090{word-spacing:17.959968pt;}
.ws4_c01090{word-spacing:18.235360pt;}
.ws21_c01090{word-spacing:18.916416pt;}
.ws25_c01090{word-spacing:18.969552pt;}
.ws1c_c01090{word-spacing:20.148160pt;}
.ws14_c01090{word-spacing:20.275680pt;}
.ws1a_c01090{word-spacing:20.339440pt;}
.ws7_c01090{word-spacing:20.722000pt;}
.ws12_c01090{word-spacing:21.869680pt;}
.ws15_c01090{word-spacing:23.017360pt;}
.ws18_c01090{word-spacing:23.463680pt;}
.ws22_c01090{word-spacing:23.539248pt;}
.ws11_c01090{word-spacing:23.782480pt;}
.ws0_c01090{word-spacing:23.846240pt;}
.wsc_c01090{word-spacing:24.037520pt;}
.ws10_c01090{word-spacing:24.738880pt;}
.wsd_c01090{word-spacing:24.930160pt;}
.ws23_c01090{word-spacing:25.877232pt;}
.ws19_c01090{word-spacing:26.196747pt;}
.ws3_c01090{word-spacing:26.205360pt;}
.ws6_c01090{word-spacing:26.460400pt;}
.ws24_c01090{word-spacing:26.568000pt;}
.ws1b_c01090{word-spacing:27.671840pt;}
.ws13_c01090{word-spacing:27.735600pt;}
.ws17_c01090{word-spacing:28.309440pt;}
.wsa_c01090{word-spacing:29.265840pt;}
.ws2_c01090{word-spacing:29.839680pt;}
.ws5_c01090{word-spacing:30.413520pt;}
.wse_c01090{word-spacing:30.987360pt;}
._0_c01090{margin-left:-36.024400pt;}
._9_c01090{margin-left:-34.175360pt;}
._3_c01090{margin-left:-33.027680pt;}
._5_c01090{margin-left:-31.242400pt;}
._a_c01090{margin-left:-29.329600pt;}
._f_c01090{margin-left:-27.003456pt;}
._8_c01090{margin-left:-24.356320pt;}
._10_c01090{margin-left:-16.297915pt;}
._7_c01090{margin-left:-6.949840pt;}
._e_c01090{margin-left:-5.292080pt;}
._b_c01090{margin-left:-3.506800pt;}
._4_c01090{margin-left:-1.785280pt;}
._2_c01090{width:1.721520pt;}
._6_c01090{width:2.996720pt;}
._d_c01090{width:32.772640pt;}
._c_c01090{width:70.518560pt;}
._1_c01090{width:413.105280pt;}
.fs2_c01090{font-size:37.194667pt;}
.fs1_c01090{font-size:42.506667pt;}
.fs3_c01090{font-size:53.136000pt;}
.fs0_c01090{font-size:63.760000pt;}
.y0_c01090{bottom:0.000000pt;}
.y28_c01090{bottom:88.848000pt;}
.y27_c01090{bottom:109.609333pt;}
.y26_c01090{bottom:120.729333pt;}
.y25_c01090{bottom:136.669333pt;}
.y24_c01090{bottom:157.429333pt;}
.y23_c01090{bottom:168.549333pt;}
.y22_c01090{bottom:173.369333pt;}
.y21_c01090{bottom:199.462667pt;}
.y20_c01090{bottom:223.366667pt;}
.y1f_c01090{bottom:247.269333pt;}
.y1e_c01090{bottom:271.172000pt;}
.y1d_c01090{bottom:295.074667pt;}
.y1c_c01090{bottom:318.977333pt;}
.y1b_c01090{bottom:342.881333pt;}
.y1a_c01090{bottom:366.784000pt;}
.y19_c01090{bottom:390.686667pt;}
.y18_c01090{bottom:414.589333pt;}
.y17_c01090{bottom:438.493333pt;}
.y16_c01090{bottom:462.396000pt;}
.y15_c01090{bottom:486.298667pt;}
.y14_c01090{bottom:510.201333pt;}
.y13_c01090{bottom:534.105333pt;}
.y12_c01090{bottom:558.008000pt;}
.y11_c01090{bottom:581.910667pt;}
.y10_c01090{bottom:605.813333pt;}
.yf_c01090{bottom:629.717333pt;}
.ye_c01090{bottom:653.620000pt;}
.yd_c01090{bottom:677.522667pt;}
.yc_c01090{bottom:701.425333pt;}
.yb_c01090{bottom:725.328000pt;}
.ya_c01090{bottom:756.094667pt;}
.y9_c01090{bottom:806.129333pt;}
.y8_c01090{bottom:830.032000pt;}
.y7_c01090{bottom:853.936000pt;}
.y6_c01090{bottom:877.838667pt;}
.y5_c01090{bottom:901.741333pt;}
.y4_c01090{bottom:925.644000pt;}
.y3_c01090{bottom:949.546667pt;}
.y2_c01090{bottom:973.450667pt;}
.y1_c01090{bottom:1032.964000pt;}
.h7_c01090{height:25.143595pt;}
.h5_c01090{height:34.001333pt;}
.h6_c01090{height:39.852000pt;}
.h2_c01090{height:47.820000pt;}
.h3_c01090{height:51.870507pt;}
.h4_c01090{height:51.875840pt;}
.h1_c01090{height:1123.333333pt;}
.h0_c01090{height:1123.653333pt;}
.w0_c01090{width:794.550667pt;}
.w1_c01090{width:794.666667pt;}
.x0_c01090{left:0.000000pt;}
.x1_c01090{left:113.385333pt;}
.x3_c01090{left:126.042667pt;}
.x2_c01090{left:142.078667pt;}
.x4_c01090{left:176.685333pt;}
}





/* 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_1135ff8cbc38eb3a3be373fc.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.001000;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_3af34df64dccc761c14f5687.woff2')format("woff");}.ff2_c01091{font-family:ff2_c01091;line-height:1.001000;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_c01091;src:url('chunks/assets/font_5cf50efd97b0e8ba1b68102b.woff2')format("woff");}.ff3_c01091{font-family:ff3_c01091;line-height:0.462000;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_c01091;src:url('chunks/assets/font_f755a57a7b6b93e7ad3e9e6c.woff2')format("woff");}.ff4_c01091{font-family:ff4_c01091;line-height:1.001000;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_c01091;src:url('chunks/assets/font_db7c108069438226972330e9.woff2')format("woff");}.ff5_c01091{font-family:ff5_c01091;line-height:0.697000;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_c01091;src:url('chunks/assets/font_08b9525def952722162c3dea.woff2')format("woff");}.ff6_c01091{font-family:ff6_c01091;line-height:0.696000;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_c01091;src:url('chunks/assets/font_a58ff65c87ab966058f4bfa1.woff2')format("woff");}.ff7_c01091{font-family:ff7_c01091;line-height:1.000000;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_c01091;src:url('chunks/assets/font_8ecbf7a3693af9276cc4a42e.woff2')format("woff");}.ff8_c01091{font-family:ff8_c01091;line-height:1.000000;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);}
.v2_c01091{vertical-align:-21.690000px;}
.v0_c01091{vertical-align:0.000000px;}
.v1_c01091{vertical-align:26.028000px;}
.ls1_c01091{letter-spacing:0.000000px;}
.ls0_c01091{letter-spacing:25.124340px;}
.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;}
}
.ws1_c01091{word-spacing:-0.071730px;}
.ws27_c01091{word-spacing:-0.047820px;}
.ws2a_c01091{word-spacing:-0.041844px;}
.ws2e_c01091{word-spacing:0.000000px;}
.ws19_c01091{word-spacing:18.434610px;}
.ws3_c01091{word-spacing:19.223640px;}
.ws2d_c01091{word-spacing:19.846296px;}
.ws24_c01091{word-spacing:20.084400px;}
.ws6_c01091{word-spacing:21.088620px;}
.ws2c_c01091{word-spacing:21.280968px;}
.ws28_c01091{word-spacing:21.303810px;}
.ws17_c01091{word-spacing:21.447270px;}
.ws16_c01091{word-spacing:21.455190px;}
.ws2_c01091{word-spacing:22.021110px;}
.ws5_c01091{word-spacing:22.308030px;}
.ws25_c01091{word-spacing:22.738410px;}
.ws23_c01091{word-spacing:23.168790px;}
.ws4_c01091{word-spacing:23.312250px;}
.wsf_c01091{word-spacing:23.383980px;}
.wsa_c01091{word-spacing:24.603390px;}
.ws29_c01091{word-spacing:24.675120px;}
.ws1e_c01091{word-spacing:24.890310px;}
.ws7_c01091{word-spacing:24.962040px;}
.ws26_c01091{word-spacing:25.033770px;}
.ws1a_c01091{word-spacing:25.822800px;}
.wsb_c01091{word-spacing:26.181450px;}
.ws2b_c01091{word-spacing:26.601210px;}
.ws0_c01091{word-spacing:26.827020px;}
.ws22_c01091{word-spacing:28.704060px;}
.ws9_c01091{word-spacing:28.835460px;}
.ws18_c01091{word-spacing:28.907190px;}
.wse_c01091{word-spacing:29.267520px;}
.ws8_c01091{word-spacing:29.624490px;}
.ws1d_c01091{word-spacing:30.266310px;}
.ws1f_c01091{word-spacing:30.866550px;}
.ws1c_c01091{word-spacing:31.274280px;}
.ws1b_c01091{word-spacing:31.919850px;}
.wsc_c01091{word-spacing:32.350230px;}
.ws15_c01091{word-spacing:32.637150px;}
.ws10_c01091{word-spacing:32.852340px;}
.wsd_c01091{word-spacing:33.282720px;}
.ws14_c01091{word-spacing:33.569640px;}
.ws21_c01091{word-spacing:33.856560px;}
.ws20_c01091{word-spacing:33.928290px;}
.ws11_c01091{word-spacing:34.645590px;}
.ws13_c01091{word-spacing:34.717320px;}
.ws12_c01091{word-spacing:35.506350px;}
._0_c01091{margin-left:-40.527450px;}
._7_c01091{margin-left:-37.227870px;}
._6_c01091{margin-left:-35.434620px;}
._b_c01091{margin-left:-32.924070px;}
._14_c01091{margin-left:-30.642426px;}
._11_c01091{margin-left:-28.627080px;}
._5_c01091{margin-left:-27.329130px;}
._4_c01091{margin-left:-7.381380px;}
._c_c01091{margin-left:-5.810130px;}
._9_c01091{margin-left:-4.016880px;}
._3_c01091{margin-left:-2.223630px;}
._e_c01091{margin-left:-1.206720px;}
._13_c01091{width:1.027980px;}
._2_c01091{width:2.151900px;}
._f_c01091{width:3.586500px;}
._12_c01091{width:5.597760px;}
._8_c01091{width:20.156130px;}
._a_c01091{width:30.532050px;}
._d_c01091{width:37.321440px;}
._10_c01091{width:39.876630px;}
._1_c01091{width:464.743440px;}
.fc0_c01091{color:rgb(0,0,0);}
.fs2_c01091{font-size:41.844000px;}
.fs1_c01091{font-size:47.820000px;}
.fs3_c01091{font-size:59.778000px;}
.fs0_c01091{font-size:71.730000px;}
.y0_c01091{bottom:0.000000px;}
.y25_c01091{bottom:100.834500px;}
.y24_c01091{bottom:124.189500px;}
.y23_c01091{bottom:150.946500px;}
.y22_c01091{bottom:177.837000px;}
.y21_c01091{bottom:224.155500px;}
.y20_c01091{bottom:251.046000px;}
.y1f_c01091{bottom:277.936500px;}
.y1e_c01091{bottom:304.828500px;}
.y1d_c01091{bottom:351.145500px;}
.y1c_c01091{bottom:378.036000px;}
.y1b_c01091{bottom:404.928000px;}
.y1a_c01091{bottom:431.818500px;}
.y19_c01091{bottom:458.709000px;}
.y18_c01091{bottom:485.599500px;}
.y17_c01091{bottom:512.491500px;}
.y16_c01091{bottom:539.382000px;}
.y15_c01091{bottom:566.272500px;}
.y14_c01091{bottom:593.163000px;}
.y13_c01091{bottom:620.055000px;}
.y12_c01091{bottom:646.945500px;}
.y11_c01091{bottom:673.836000px;}
.y10_c01091{bottom:700.726500px;}
.yf_c01091{bottom:727.617000px;}
.ye_c01091{bottom:754.509000px;}
.yd_c01091{bottom:781.399500px;}
.yc_c01091{bottom:808.290000px;}
.yb_c01091{bottom:835.180500px;}
.ya_c01091{bottom:862.072500px;}
.y9_c01091{bottom:888.963000px;}
.y8_c01091{bottom:915.853500px;}
.y7_c01091{bottom:942.744000px;}
.y6_c01091{bottom:969.636000px;}
.y5_c01091{bottom:996.526500px;}
.y4_c01091{bottom:1023.417000px;}
.y3_c01091{bottom:1068.240000px;}
.y2_c01091{bottom:1095.132000px;}
.y1_c01091{bottom:1162.084500px;}
.h4_c01091{height:28.286544px;}
.h5_c01091{height:44.833500px;}
.h2_c01091{height:53.797500px;}
.h3_c01091{height:58.354320px;}
.h1_c01091{height:1263.750000px;}
.h0_c01091{height:1264.110000px;}
.w0_c01091{width:893.869500px;}
.w1_c01091{width:894.000000px;}
.x0_c01091{left:0.000000px;}
.x1_c01091{left:127.558500px;}
.x5_c01091{left:141.798000px;}
.x2_c01091{left:159.838500px;}
.x4_c01091{left:171.456000px;}
.x3_c01091{left:197.794500px;}
@media print{
.v2_c01091{vertical-align:-19.280000pt;}
.v0_c01091{vertical-align:0.000000pt;}
.v1_c01091{vertical-align:23.136000pt;}
.ls1_c01091{letter-spacing:0.000000pt;}
.ls0_c01091{letter-spacing:22.332747pt;}
.ws1_c01091{word-spacing:-0.063760pt;}
.ws27_c01091{word-spacing:-0.042507pt;}
.ws2a_c01091{word-spacing:-0.037195pt;}
.ws2e_c01091{word-spacing:0.000000pt;}
.ws19_c01091{word-spacing:16.386320pt;}
.ws3_c01091{word-spacing:17.087680pt;}
.ws2d_c01091{word-spacing:17.641152pt;}
.ws24_c01091{word-spacing:17.852800pt;}
.ws6_c01091{word-spacing:18.745440pt;}
.ws2c_c01091{word-spacing:18.916416pt;}
.ws28_c01091{word-spacing:18.936720pt;}
.ws17_c01091{word-spacing:19.064240pt;}
.ws16_c01091{word-spacing:19.071280pt;}
.ws2_c01091{word-spacing:19.574320pt;}
.ws5_c01091{word-spacing:19.829360pt;}
.ws25_c01091{word-spacing:20.211920pt;}
.ws23_c01091{word-spacing:20.594480pt;}
.ws4_c01091{word-spacing:20.722000pt;}
.wsf_c01091{word-spacing:20.785760pt;}
.wsa_c01091{word-spacing:21.869680pt;}
.ws29_c01091{word-spacing:21.933440pt;}
.ws1e_c01091{word-spacing:22.124720pt;}
.ws7_c01091{word-spacing:22.188480pt;}
.ws26_c01091{word-spacing:22.252240pt;}
.ws1a_c01091{word-spacing:22.953600pt;}
.wsb_c01091{word-spacing:23.272400pt;}
.ws2b_c01091{word-spacing:23.645520pt;}
.ws0_c01091{word-spacing:23.846240pt;}
.ws22_c01091{word-spacing:25.514720pt;}
.ws9_c01091{word-spacing:25.631520pt;}
.ws18_c01091{word-spacing:25.695280pt;}
.wse_c01091{word-spacing:26.015573pt;}
.ws8_c01091{word-spacing:26.332880pt;}
.ws1d_c01091{word-spacing:26.903387pt;}
.ws1f_c01091{word-spacing:27.436933pt;}
.ws1c_c01091{word-spacing:27.799360pt;}
.ws1b_c01091{word-spacing:28.373200pt;}
.wsc_c01091{word-spacing:28.755760pt;}
.ws15_c01091{word-spacing:29.010800pt;}
.ws10_c01091{word-spacing:29.202080pt;}
.wsd_c01091{word-spacing:29.584640pt;}
.ws14_c01091{word-spacing:29.839680pt;}
.ws21_c01091{word-spacing:30.094720pt;}
.ws20_c01091{word-spacing:30.158480pt;}
.ws11_c01091{word-spacing:30.796080pt;}
.ws13_c01091{word-spacing:30.859840pt;}
.ws12_c01091{word-spacing:31.561200pt;}
._0_c01091{margin-left:-36.024400pt;}
._7_c01091{margin-left:-33.091440pt;}
._6_c01091{margin-left:-31.497440pt;}
._b_c01091{margin-left:-29.265840pt;}
._14_c01091{margin-left:-27.237712pt;}
._11_c01091{margin-left:-25.446293pt;}
._5_c01091{margin-left:-24.292560pt;}
._4_c01091{margin-left:-6.561227pt;}
._c_c01091{margin-left:-5.164560pt;}
._9_c01091{margin-left:-3.570560pt;}
._3_c01091{margin-left:-1.976560pt;}
._e_c01091{margin-left:-1.072640pt;}
._13_c01091{width:0.913760pt;}
._2_c01091{width:1.912800pt;}
._f_c01091{width:3.188000pt;}
._12_c01091{width:4.975787pt;}
._8_c01091{width:17.916560pt;}
._a_c01091{width:27.139600pt;}
._d_c01091{width:33.174613pt;}
._10_c01091{width:35.445893pt;}
._1_c01091{width:413.105280pt;}
.fs2_c01091{font-size:37.194667pt;}
.fs1_c01091{font-size:42.506667pt;}
.fs3_c01091{font-size:53.136000pt;}
.fs0_c01091{font-size:63.760000pt;}
.y0_c01091{bottom:0.000000pt;}
.y25_c01091{bottom:89.630667pt;}
.y24_c01091{bottom:110.390667pt;}
.y23_c01091{bottom:134.174667pt;}
.y22_c01091{bottom:158.077333pt;}
.y21_c01091{bottom:199.249333pt;}
.y20_c01091{bottom:223.152000pt;}
.y1f_c01091{bottom:247.054667pt;}
.y1e_c01091{bottom:270.958667pt;}
.y1d_c01091{bottom:312.129333pt;}
.y1c_c01091{bottom:336.032000pt;}
.y1b_c01091{bottom:359.936000pt;}
.y1a_c01091{bottom:383.838667pt;}
.y19_c01091{bottom:407.741333pt;}
.y18_c01091{bottom:431.644000pt;}
.y17_c01091{bottom:455.548000pt;}
.y16_c01091{bottom:479.450667pt;}
.y15_c01091{bottom:503.353333pt;}
.y14_c01091{bottom:527.256000pt;}
.y13_c01091{bottom:551.160000pt;}
.y12_c01091{bottom:575.062667pt;}
.y11_c01091{bottom:598.965333pt;}
.y10_c01091{bottom:622.868000pt;}
.yf_c01091{bottom:646.770667pt;}
.ye_c01091{bottom:670.674667pt;}
.yd_c01091{bottom:694.577333pt;}
.yc_c01091{bottom:718.480000pt;}
.yb_c01091{bottom:742.382667pt;}
.ya_c01091{bottom:766.286667pt;}
.y9_c01091{bottom:790.189333pt;}
.y8_c01091{bottom:814.092000pt;}
.y7_c01091{bottom:837.994667pt;}
.y6_c01091{bottom:861.898667pt;}
.y5_c01091{bottom:885.801333pt;}
.y4_c01091{bottom:909.704000pt;}
.y3_c01091{bottom:949.546667pt;}
.y2_c01091{bottom:973.450667pt;}
.y1_c01091{bottom:1032.964000pt;}
.h4_c01091{height:25.143595pt;}
.h5_c01091{height:39.852000pt;}
.h2_c01091{height:47.820000pt;}
.h3_c01091{height:51.870507pt;}
.h1_c01091{height:1123.333333pt;}
.h0_c01091{height:1123.653333pt;}
.w0_c01091{width:794.550667pt;}
.w1_c01091{width:794.666667pt;}
.x0_c01091{left:0.000000pt;}
.x1_c01091{left:113.385333pt;}
.x5_c01091{left:126.042667pt;}
.x2_c01091{left:142.078667pt;}
.x4_c01091{left:152.405333pt;}
.x3_c01091{left:175.817333pt;}
}





/* 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_99022b463ef86ec25ce2c6bb.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.001000;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_c01092;src:url('chunks/assets/font_c682b94fb976b02ae5614d15.woff2')format("woff");}.ff2_c01092{font-family:ff2_c01092;line-height:1.001000;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_c01092;src:url('chunks/assets/font_d60fdea3354a4ec8c578eb3a.woff2')format("woff");}.ff3_c01092{font-family:ff3_c01092;line-height:1.001000;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_c01092;src:url('chunks/assets/font_57ef8f264d7234a8516578ab.woff2')format("woff");}.ff4_c01092{font-family:ff4_c01092;line-height:1.000000;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_c01092;src:url('chunks/assets/font_116b03007476765f05859136.woff2')format("woff");}.ff5_c01092{font-family:ff5_c01092;line-height:0.462000;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;}
.v1_c01092{vertical-align:26.028000px;}
.ls1_c01092{letter-spacing:0.000000px;}
.ls0_c01092{letter-spacing:29.864340px;}
.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;}
}
.ws1_c01092{word-spacing:-0.071730px;}
.ws29_c01092{word-spacing:0.000000px;}
.ws21_c01092{word-spacing:15.493680px;}
.ws22_c01092{word-spacing:17.071740px;}
.ws13_c01092{word-spacing:17.286930px;}
.ws10_c01092{word-spacing:17.502120px;}
.ws16_c01092{word-spacing:18.434610px;}
.ws18_c01092{word-spacing:18.578070px;}
.ws17_c01092{word-spacing:19.295370px;}
.ws23_c01092{word-spacing:19.367100px;}
.wsd_c01092{word-spacing:21.519000px;}
.wsb_c01092{word-spacing:21.556830px;}
.ws11_c01092{word-spacing:21.877650px;}
.ws25_c01092{word-spacing:21.949380px;}
.ws1e_c01092{word-spacing:22.236300px;}
.ws9_c01092{word-spacing:22.308030px;}
.wse_c01092{word-spacing:23.312250px;}
.wsc_c01092{word-spacing:23.383980px;}
.ws27_c01092{word-spacing:23.455710px;}
.ws1d_c01092{word-spacing:23.527440px;}
.ws26_c01092{word-spacing:23.742630px;}
.ws24_c01092{word-spacing:23.931060px;}
.ws19_c01092{word-spacing:24.029550px;}
.wsa_c01092{word-spacing:24.101280px;}
.ws1b_c01092{word-spacing:24.244740px;}
.ws12_c01092{word-spacing:24.459930px;}
.ws5_c01092{word-spacing:24.531660px;}
.ws7_c01092{word-spacing:24.603390px;}
.wsf_c01092{word-spacing:25.033770px;}
.ws28_c01092{word-spacing:25.248960px;}
.ws4_c01092{word-spacing:26.611830px;}
.ws2_c01092{word-spacing:26.683560px;}
.ws0_c01092{word-spacing:26.827020px;}
.ws1a_c01092{word-spacing:27.042210px;}
.ws15_c01092{word-spacing:27.400860px;}
.ws1f_c01092{word-spacing:27.687780px;}
.ws14_c01092{word-spacing:27.759510px;}
.ws8_c01092{word-spacing:28.405080px;}
.ws1c_c01092{word-spacing:28.835460px;}
.ws6_c01092{word-spacing:29.936310px;}
.ws20_c01092{word-spacing:31.848120px;}
.ws3_c01092{word-spacing:32.010060px;}
._0_c01092{margin-left:-40.527450px;}
._3_c01092{margin-left:-37.084410px;}
._4_c01092{margin-left:-35.004240px;}
._7_c01092{margin-left:-33.711000px;}
._f_c01092{margin-left:-32.639250px;}
._d_c01092{margin-left:-27.329130px;}
._c_c01092{margin-left:-7.818570px;}
._9_c01092{margin-left:-5.379750px;}
._a_c01092{margin-left:-3.586500px;}
._e_c01092{margin-left:-2.508450px;}
._5_c01092{margin-left:-1.508430px;}
._2_c01092{width:1.793250px;}
._8_c01092{width:3.801690px;}
._11_c01092{width:22.361880px;}
._b_c01092{width:27.931770px;}
._6_c01092{width:29.985240px;}
._10_c01092{width:79.333380px;}
._1_c01092{width:464.743440px;}
.fc0_c01092{color:rgb(0,0,0);}
.fs1_c01092{font-size:47.820000px;}
.fs0_c01092{font-size:71.730000px;}
.y0_c01092{bottom:0.000000px;}
.y24_c01092{bottom:125.790000px;}
.y23_c01092{bottom:152.682000px;}
.y22_c01092{bottom:179.572500px;}
.y21_c01092{bottom:206.463000px;}
.y20_c01092{bottom:233.353500px;}
.y1f_c01092{bottom:260.245500px;}
.y1e_c01092{bottom:287.136000px;}
.y1d_c01092{bottom:314.026500px;}
.y1c_c01092{bottom:340.917000px;}
.y1b_c01092{bottom:367.809000px;}
.y1a_c01092{bottom:394.699500px;}
.y19_c01092{bottom:421.590000px;}
.y18_c01092{bottom:456.202500px;}
.y17_c01092{bottom:512.491500px;}
.y16_c01092{bottom:539.382000px;}
.y15_c01092{bottom:566.272500px;}
.y14_c01092{bottom:593.163000px;}
.y13_c01092{bottom:620.055000px;}
.y12_c01092{bottom:646.945500px;}
.y11_c01092{bottom:673.836000px;}
.y10_c01092{bottom:700.726500px;}
.yf_c01092{bottom:727.617000px;}
.ye_c01092{bottom:754.509000px;}
.yd_c01092{bottom:781.399500px;}
.yc_c01092{bottom:808.290000px;}
.yb_c01092{bottom:835.180500px;}
.ya_c01092{bottom:862.072500px;}
.y9_c01092{bottom:888.963000px;}
.y8_c01092{bottom:933.786000px;}
.y7_c01092{bottom:960.678000px;}
.y6_c01092{bottom:987.568500px;}
.y5_c01092{bottom:1014.459000px;}
.y4_c01092{bottom:1041.349500px;}
.y3_c01092{bottom:1068.240000px;}
.y2_c01092{bottom:1095.132000px;}
.y1_c01092{bottom:1162.084500px;}
.h2_c01092{height:53.797500px;}
.h1_c01092{height:1263.750000px;}
.h0_c01092{height:1264.110000px;}
.w0_c01092{width:893.869500px;}
.w1_c01092{width:894.000000px;}
.x0_c01092{left:0.000000px;}
.x1_c01092{left:127.558500px;}
.x2_c01092{left:159.838500px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.v1_c01092{vertical-align:23.136000pt;}
.ls1_c01092{letter-spacing:0.000000pt;}
.ls0_c01092{letter-spacing:26.546080pt;}
.ws1_c01092{word-spacing:-0.063760pt;}
.ws29_c01092{word-spacing:0.000000pt;}
.ws21_c01092{word-spacing:13.772160pt;}
.ws22_c01092{word-spacing:15.174880pt;}
.ws13_c01092{word-spacing:15.366160pt;}
.ws10_c01092{word-spacing:15.557440pt;}
.ws16_c01092{word-spacing:16.386320pt;}
.ws18_c01092{word-spacing:16.513840pt;}
.ws17_c01092{word-spacing:17.151440pt;}
.ws23_c01092{word-spacing:17.215200pt;}
.wsd_c01092{word-spacing:19.128000pt;}
.wsb_c01092{word-spacing:19.161627pt;}
.ws11_c01092{word-spacing:19.446800pt;}
.ws25_c01092{word-spacing:19.510560pt;}
.ws1e_c01092{word-spacing:19.765600pt;}
.ws9_c01092{word-spacing:19.829360pt;}
.wse_c01092{word-spacing:20.722000pt;}
.wsc_c01092{word-spacing:20.785760pt;}
.ws27_c01092{word-spacing:20.849520pt;}
.ws1d_c01092{word-spacing:20.913280pt;}
.ws26_c01092{word-spacing:21.104560pt;}
.ws24_c01092{word-spacing:21.272053pt;}
.ws19_c01092{word-spacing:21.359600pt;}
.wsa_c01092{word-spacing:21.423360pt;}
.ws1b_c01092{word-spacing:21.550880pt;}
.ws12_c01092{word-spacing:21.742160pt;}
.ws5_c01092{word-spacing:21.805920pt;}
.ws7_c01092{word-spacing:21.869680pt;}
.wsf_c01092{word-spacing:22.252240pt;}
.ws28_c01092{word-spacing:22.443520pt;}
.ws4_c01092{word-spacing:23.654960pt;}
.ws2_c01092{word-spacing:23.718720pt;}
.ws0_c01092{word-spacing:23.846240pt;}
.ws1a_c01092{word-spacing:24.037520pt;}
.ws15_c01092{word-spacing:24.356320pt;}
.ws1f_c01092{word-spacing:24.611360pt;}
.ws14_c01092{word-spacing:24.675120pt;}
.ws8_c01092{word-spacing:25.248960pt;}
.ws1c_c01092{word-spacing:25.631520pt;}
.ws6_c01092{word-spacing:26.610053pt;}
.ws20_c01092{word-spacing:28.309440pt;}
.ws3_c01092{word-spacing:28.453387pt;}
._0_c01092{margin-left:-36.024400pt;}
._3_c01092{margin-left:-32.963920pt;}
._4_c01092{margin-left:-31.114880pt;}
._7_c01092{margin-left:-29.965333pt;}
._f_c01092{margin-left:-29.012667pt;}
._d_c01092{margin-left:-24.292560pt;}
._c_c01092{margin-left:-6.949840pt;}
._9_c01092{margin-left:-4.782000pt;}
._a_c01092{margin-left:-3.188000pt;}
._e_c01092{margin-left:-2.229733pt;}
._5_c01092{margin-left:-1.340827pt;}
._2_c01092{width:1.594000pt;}
._8_c01092{width:3.379280pt;}
._11_c01092{width:19.877227pt;}
._b_c01092{width:24.828240pt;}
._6_c01092{width:26.653547pt;}
._10_c01092{width:70.518560pt;}
._1_c01092{width:413.105280pt;}
.fs1_c01092{font-size:42.506667pt;}
.fs0_c01092{font-size:63.760000pt;}
.y0_c01092{bottom:0.000000pt;}
.y24_c01092{bottom:111.813333pt;}
.y23_c01092{bottom:135.717333pt;}
.y22_c01092{bottom:159.620000pt;}
.y21_c01092{bottom:183.522667pt;}
.y20_c01092{bottom:207.425333pt;}
.y1f_c01092{bottom:231.329333pt;}
.y1e_c01092{bottom:255.232000pt;}
.y1d_c01092{bottom:279.134667pt;}
.y1c_c01092{bottom:303.037333pt;}
.y1b_c01092{bottom:326.941333pt;}
.y1a_c01092{bottom:350.844000pt;}
.y19_c01092{bottom:374.746667pt;}
.y18_c01092{bottom:405.513333pt;}
.y17_c01092{bottom:455.548000pt;}
.y16_c01092{bottom:479.450667pt;}
.y15_c01092{bottom:503.353333pt;}
.y14_c01092{bottom:527.256000pt;}
.y13_c01092{bottom:551.160000pt;}
.y12_c01092{bottom:575.062667pt;}
.y11_c01092{bottom:598.965333pt;}
.y10_c01092{bottom:622.868000pt;}
.yf_c01092{bottom:646.770667pt;}
.ye_c01092{bottom:670.674667pt;}
.yd_c01092{bottom:694.577333pt;}
.yc_c01092{bottom:718.480000pt;}
.yb_c01092{bottom:742.382667pt;}
.ya_c01092{bottom:766.286667pt;}
.y9_c01092{bottom:790.189333pt;}
.y8_c01092{bottom:830.032000pt;}
.y7_c01092{bottom:853.936000pt;}
.y6_c01092{bottom:877.838667pt;}
.y5_c01092{bottom:901.741333pt;}
.y4_c01092{bottom:925.644000pt;}
.y3_c01092{bottom:949.546667pt;}
.y2_c01092{bottom:973.450667pt;}
.y1_c01092{bottom:1032.964000pt;}
.h2_c01092{height:47.820000pt;}
.h1_c01092{height:1123.333333pt;}
.h0_c01092{height:1123.653333pt;}
.w0_c01092{width:794.550667pt;}
.w1_c01092{width:794.666667pt;}
.x0_c01092{left:0.000000pt;}
.x1_c01092{left:113.385333pt;}
.x2_c01092{left:142.078667pt;}
}





/* 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_7b5bd0a68d8c6730a69a4626.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.001000;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_d1ad600c0638b39d46ad866e.woff2')format("woff");}.ff2_c01093{font-family:ff2_c01093;line-height:1.001000;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;}
.ls0_c01093{letter-spacing:0.000000px;}
.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;}
}
.ws1_c01093{word-spacing:-0.071730px;}
.ws5_c01093{word-spacing:15.637140px;}
.ws3_c01093{word-spacing:16.139250px;}
.ws6_c01093{word-spacing:23.312250px;}
.ws0_c01093{word-spacing:26.827020px;}
.ws4_c01093{word-spacing:27.185670px;}
.ws2_c01093{word-spacing:27.974700px;}
._0_c01093{margin-left:-40.527450px;}
._5_c01093{margin-left:-37.084410px;}
._b_c01093{margin-left:-34.789050px;}
._3_c01093{margin-left:-33.210990px;}
._a_c01093{margin-left:-27.329130px;}
._9_c01093{margin-left:-7.675110px;}
._6_c01093{margin-left:-4.016880px;}
._8_c01093{margin-left:-2.151900px;}
._7_c01093{width:1.793250px;}
._c_c01093{width:17.430390px;}
._2_c01093{width:26.037990px;}
._4_c01093{width:29.983140px;}
._1_c01093{width:464.743440px;}
.fc0_c01093{color:rgb(0,0,0);}
.fs0_c01093{font-size:71.730000px;}
.y0_c01093{bottom:0.000000px;}
.y6_c01093{bottom:987.568500px;}
.y5_c01093{bottom:1014.459000px;}
.y4_c01093{bottom:1041.349500px;}
.y3_c01093{bottom:1068.240000px;}
.y2_c01093{bottom:1095.132000px;}
.y1_c01093{bottom:1162.084500px;}
.h2_c01093{height:53.797500px;}
.h1_c01093{height:1263.750000px;}
.h0_c01093{height:1264.110000px;}
.w0_c01093{width:893.869500px;}
.w1_c01093{width:894.000000px;}
.x0_c01093{left:0.000000px;}
.x1_c01093{left:127.558500px;}
.x2_c01093{left:159.838500px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.ls0_c01093{letter-spacing:0.000000pt;}
.ws1_c01093{word-spacing:-0.063760pt;}
.ws5_c01093{word-spacing:13.899680pt;}
.ws3_c01093{word-spacing:14.346000pt;}
.ws6_c01093{word-spacing:20.722000pt;}
.ws0_c01093{word-spacing:23.846240pt;}
.ws4_c01093{word-spacing:24.165040pt;}
.ws2_c01093{word-spacing:24.866400pt;}
._0_c01093{margin-left:-36.024400pt;}
._5_c01093{margin-left:-32.963920pt;}
._b_c01093{margin-left:-30.923600pt;}
._3_c01093{margin-left:-29.520880pt;}
._a_c01093{margin-left:-24.292560pt;}
._9_c01093{margin-left:-6.822320pt;}
._6_c01093{margin-left:-3.570560pt;}
._8_c01093{margin-left:-1.912800pt;}
._7_c01093{width:1.594000pt;}
._c_c01093{width:15.493680pt;}
._2_c01093{width:23.144880pt;}
._4_c01093{width:26.651680pt;}
._1_c01093{width:413.105280pt;}
.fs0_c01093{font-size:63.760000pt;}
.y0_c01093{bottom:0.000000pt;}
.y6_c01093{bottom:877.838667pt;}
.y5_c01093{bottom:901.741333pt;}
.y4_c01093{bottom:925.644000pt;}
.y3_c01093{bottom:949.546667pt;}
.y2_c01093{bottom:973.450667pt;}
.y1_c01093{bottom:1032.964000pt;}
.h2_c01093{height:47.820000pt;}
.h1_c01093{height:1123.333333pt;}
.h0_c01093{height:1123.653333pt;}
.w0_c01093{width:794.550667pt;}
.w1_c01093{width:794.666667pt;}
.x0_c01093{left:0.000000pt;}
.x1_c01093{left:113.385333pt;}
.x2_c01093{left:142.078667pt;}
}





/* 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_2eb7bb1385b97568664b13a9.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.001000;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_07fcb7b42446fb56a842b975.woff2')format("woff");}.ff2_c01094{font-family:ff2_c01094;line-height:1.000000;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_c01094;src:url('chunks/assets/font_f780e3a7a53501f18e898f25.woff2')format("woff");}.ff3_c01094{font-family:ff3_c01094;line-height:1.001000;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_c01094;src:url('chunks/assets/font_298b8515c278f39df63d1191.woff2')format("woff");}.ff4_c01094{font-family:ff4_c01094;line-height:0.697000;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_c01094;src:url('chunks/assets/font_a8ea77e9aed18ab302e9f8c7.woff2')format("woff");}.ff5_c01094{font-family:ff5_c01094;line-height:0.462000;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_c01094;src:url('chunks/assets/font_baaaf8df73f37b5adb792540.woff2')format("woff");}.ff6_c01094{font-family:ff6_c01094;line-height:0.696000;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_c01094;src:url('chunks/assets/font_72ab366096d38a860b76ab12.woff2')format("woff");}.ff7_c01094{font-family:ff7_c01094;line-height:1.000000;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_c01094;src:url('chunks/assets/font_b01a4c289a27452addcd14d6.woff2')format("woff");}.ff8_c01094{font-family:ff8_c01094;line-height:1.000000;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);}
.v2_c01094{vertical-align:-21.696000px;}
.v0_c01094{vertical-align:0.000000px;}
.v3_c01094{vertical-align:15.108000px;}
.v1_c01094{vertical-align:26.028000px;}
.ls4_c01094{letter-spacing:0.000000px;}
.ls1_c01094{letter-spacing:2.999580px;}
.ls3_c01094{letter-spacing:3.004764px;}
.ls0_c01094{letter-spacing:3.005580px;}
.ls2_c01094{letter-spacing:31.244340px;}
.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;}
}
.ws3_c01094{word-spacing:-0.086076px;}
.ws8_c01094{word-spacing:-0.071730px;}
.ws19_c01094{word-spacing:-0.059778px;}
.ws1b_c01094{word-spacing:0.000000px;}
.ws14_c01094{word-spacing:19.069182px;}
.wsa_c01094{word-spacing:19.295370px;}
.ws16_c01094{word-spacing:19.666962px;}
.ws1a_c01094{word-spacing:19.846296px;}
.ws13_c01094{word-spacing:19.906074px;}
.ws7_c01094{word-spacing:22.953600px;}
.wsb_c01094{word-spacing:23.168790px;}
.ws5_c01094{word-spacing:23.742630px;}
.ws12_c01094{word-spacing:23.911200px;}
.ws9_c01094{word-spacing:24.244740px;}
.ws10_c01094{word-spacing:24.531660px;}
.wsf_c01094{word-spacing:24.721470px;}
.wsd_c01094{word-spacing:25.177230px;}
.ws6_c01094{word-spacing:25.607610px;}
.wsc_c01094{word-spacing:26.755290px;}
.ws15_c01094{word-spacing:27.198990px;}
.wse_c01094{word-spacing:28.189890px;}
.ws11_c01094{word-spacing:28.573884px;}
.ws17_c01094{word-spacing:29.410776px;}
.ws18_c01094{word-spacing:30.128112px;}
.ws4_c01094{word-spacing:30.413520px;}
.ws2_c01094{word-spacing:32.106348px;}
.ws0_c01094{word-spacing:55.473306px;}
.ws1_c01094{word-spacing:55.622028px;}
._4_c01094{margin-left:-83.879208px;}
._1_c01094{margin-left:-65.140236px;}
._e_c01094{margin-left:-38.096808px;}
._9_c01094{margin-left:-37.012680px;}
._7_c01094{margin-left:-35.262468px;}
._f_c01094{margin-left:-29.948778px;}
._b_c01094{margin-left:-27.400860px;}
._11_c01094{margin-left:-23.253642px;}
._0_c01094{margin-left:-18.738972px;}
._a_c01094{margin-left:-8.019414px;}
._10_c01094{margin-left:-6.934248px;}
._c_c01094{margin-left:-5.810130px;}
._2_c01094{margin-left:-4.759104px;}
._d_c01094{margin-left:-3.686922px;}
._6_c01094{margin-left:-1.807596px;}
._8_c01094{width:1.936710px;}
._3_c01094{width:4.610382px;}
._12_c01094{width:6.839262px;}
._5_c01094{width:95.200056px;}
.fc0_c01094{color:rgb(0,0,0);}
.fs4_c01094{font-size:41.844000px;}
.fs3_c01094{font-size:47.820000px;}
.fs5_c01094{font-size:59.778000px;}
.fs2_c01094{font-size:71.730000px;}
.fs1_c01094{font-size:86.076000px;}
.fs0_c01094{font-size:148.722000px;}
.y0_c01094{bottom:0.000000px;}
.y1b_c01094{bottom:61.552500px;}
.y1a_c01094{bottom:103.666500px;}
.y19_c01094{bottom:121.599000px;}
.y18_c01094{bottom:139.531500px;}
.y17_c01094{bottom:157.464000px;}
.y16_c01094{bottom:180.820500px;}
.y15_c01094{bottom:193.330500px;}
.y14_c01094{bottom:211.263000px;}
.y13_c01094{bottom:234.619500px;}
.y12_c01094{bottom:262.371000px;}
.y11_c01094{bottom:289.263000px;}
.y10_c01094{bottom:316.153500px;}
.yf_c01094{bottom:343.044000px;}
.ye_c01094{bottom:369.934500px;}
.yd_c01094{bottom:396.825000px;}
.yc_c01094{bottom:423.717000px;}
.yb_c01094{bottom:450.607500px;}
.ya_c01094{bottom:477.498000px;}
.y9_c01094{bottom:504.388500px;}
.y8_c01094{bottom:531.280500px;}
.y7_c01094{bottom:565.891500px;}
.y6_c01094{bottom:592.791000px;}
.y5_c01094{bottom:712.342500px;}
.y4_c01094{bottom:767.979000px;}
.y3_c01094{bottom:823.615500px;}
.y2_c01094{bottom:879.252000px;}
.y1_c01094{bottom:964.776000px;}
.h6_c01094{height:28.286544px;}
.h7_c01094{height:44.833500px;}
.h4_c01094{height:53.797500px;}
.h5_c01094{height:58.354320px;}
.h8_c01094{height:59.941500px;}
.h3_c01094{height:64.557000px;}
.h2_c01094{height:111.541500px;}
.h1_c01094{height:1263.750000px;}
.h0_c01094{height:1264.110000px;}
.w0_c01094{width:893.869500px;}
.w1_c01094{width:894.000000px;}
.x0_c01094{left:0.000000px;}
.x1_c01094{left:127.558500px;}
.x4_c01094{left:147.754500px;}
.x3_c01094{left:159.838500px;}
.x2_c01094{left:200.784000px;}
.x5_c01094{left:230.284500px;}
.x6_c01094{left:433.765500px;}
@media print{
.v2_c01094{vertical-align:-19.285333pt;}
.v0_c01094{vertical-align:0.000000pt;}
.v3_c01094{vertical-align:13.429333pt;}
.v1_c01094{vertical-align:23.136000pt;}
.ls4_c01094{letter-spacing:0.000000pt;}
.ls1_c01094{letter-spacing:2.666293pt;}
.ls3_c01094{letter-spacing:2.670901pt;}
.ls0_c01094{letter-spacing:2.671627pt;}
.ls2_c01094{letter-spacing:27.772747pt;}
.ws3_c01094{word-spacing:-0.076512pt;}
.ws8_c01094{word-spacing:-0.063760pt;}
.ws19_c01094{word-spacing:-0.053136pt;}
.ws1b_c01094{word-spacing:0.000000pt;}
.ws14_c01094{word-spacing:16.950384pt;}
.wsa_c01094{word-spacing:17.151440pt;}
.ws16_c01094{word-spacing:17.481744pt;}
.ws1a_c01094{word-spacing:17.641152pt;}
.ws13_c01094{word-spacing:17.694288pt;}
.ws7_c01094{word-spacing:20.403200pt;}
.wsb_c01094{word-spacing:20.594480pt;}
.ws5_c01094{word-spacing:21.104560pt;}
.ws12_c01094{word-spacing:21.254400pt;}
.ws9_c01094{word-spacing:21.550880pt;}
.ws10_c01094{word-spacing:21.805920pt;}
.wsf_c01094{word-spacing:21.974640pt;}
.wsd_c01094{word-spacing:22.379760pt;}
.ws6_c01094{word-spacing:22.762320pt;}
.wsc_c01094{word-spacing:23.782480pt;}
.ws15_c01094{word-spacing:24.176880pt;}
.wse_c01094{word-spacing:25.057680pt;}
.ws11_c01094{word-spacing:25.399008pt;}
.ws17_c01094{word-spacing:26.142912pt;}
.ws18_c01094{word-spacing:26.780544pt;}
.ws4_c01094{word-spacing:27.034240pt;}
.ws2_c01094{word-spacing:28.538976pt;}
.ws0_c01094{word-spacing:49.309605pt;}
.ws1_c01094{word-spacing:49.441803pt;}
._4_c01094{margin-left:-74.559296pt;}
._1_c01094{margin-left:-57.902432pt;}
._e_c01094{margin-left:-33.863829pt;}
._9_c01094{margin-left:-32.900160pt;}
._7_c01094{margin-left:-31.344416pt;}
._f_c01094{margin-left:-26.621136pt;}
._b_c01094{margin-left:-24.356320pt;}
._11_c01094{margin-left:-20.669904pt;}
._0_c01094{margin-left:-16.656864pt;}
._a_c01094{margin-left:-7.128368pt;}
._10_c01094{margin-left:-6.163776pt;}
._c_c01094{margin-left:-5.164560pt;}
._2_c01094{margin-left:-4.230315pt;}
._d_c01094{margin-left:-3.277264pt;}
._6_c01094{margin-left:-1.606752pt;}
._8_c01094{width:1.721520pt;}
._3_c01094{width:4.098117pt;}
._12_c01094{width:6.079344pt;}
._5_c01094{width:84.622272pt;}
.fs4_c01094{font-size:37.194667pt;}
.fs3_c01094{font-size:42.506667pt;}
.fs5_c01094{font-size:53.136000pt;}
.fs2_c01094{font-size:63.760000pt;}
.fs1_c01094{font-size:76.512000pt;}
.fs0_c01094{font-size:132.197333pt;}
.y0_c01094{bottom:0.000000pt;}
.y1b_c01094{bottom:54.713333pt;}
.y1a_c01094{bottom:92.148000pt;}
.y19_c01094{bottom:108.088000pt;}
.y18_c01094{bottom:124.028000pt;}
.y17_c01094{bottom:139.968000pt;}
.y16_c01094{bottom:160.729333pt;}
.y15_c01094{bottom:171.849333pt;}
.y14_c01094{bottom:187.789333pt;}
.y13_c01094{bottom:208.550667pt;}
.y12_c01094{bottom:233.218667pt;}
.y11_c01094{bottom:257.122667pt;}
.y10_c01094{bottom:281.025333pt;}
.yf_c01094{bottom:304.928000pt;}
.ye_c01094{bottom:328.830667pt;}
.yd_c01094{bottom:352.733333pt;}
.yc_c01094{bottom:376.637333pt;}
.yb_c01094{bottom:400.540000pt;}
.ya_c01094{bottom:424.442667pt;}
.y9_c01094{bottom:448.345333pt;}
.y8_c01094{bottom:472.249333pt;}
.y7_c01094{bottom:503.014667pt;}
.y6_c01094{bottom:526.925333pt;}
.y5_c01094{bottom:633.193333pt;}
.y4_c01094{bottom:682.648000pt;}
.y3_c01094{bottom:732.102667pt;}
.y2_c01094{bottom:781.557333pt;}
.y1_c01094{bottom:857.578667pt;}
.h6_c01094{height:25.143595pt;}
.h7_c01094{height:39.852000pt;}
.h4_c01094{height:47.820000pt;}
.h5_c01094{height:51.870507pt;}
.h8_c01094{height:53.281333pt;}
.h3_c01094{height:57.384000pt;}
.h2_c01094{height:99.148000pt;}
.h1_c01094{height:1123.333333pt;}
.h0_c01094{height:1123.653333pt;}
.w0_c01094{width:794.550667pt;}
.w1_c01094{width:794.666667pt;}
.x0_c01094{left:0.000000pt;}
.x1_c01094{left:113.385333pt;}
.x4_c01094{left:131.337333pt;}
.x3_c01094{left:142.078667pt;}
.x2_c01094{left:178.474667pt;}
.x5_c01094{left:204.697333pt;}
.x6_c01094{left:385.569333pt;}
}





/* 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_8d7d5a212267091c4e3030e4.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:1.001000;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_b9759f19661ece4594affeff.woff2')format("woff");}.ff2_c01095{font-family:ff2_c01095;line-height:1.001000;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_c01095;src:url('chunks/assets/font_b1b2f88fd054cd62cff34620.woff2')format("woff");}.ff3_c01095{font-family:ff3_c01095;line-height:0.697000;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_c01095;src:url('chunks/assets/font_2d1fa2489300fd10211db5e7.woff2')format("woff");}.ff4_c01095{font-family:ff4_c01095;line-height:0.696000;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_c01095;src:url('chunks/assets/font_234db51dc0b11667b3d92a37.woff2')format("woff");}.ff5_c01095{font-family:ff5_c01095;line-height:1.000000;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);}
.v2_c01095{vertical-align:-21.690000px;}
.v0_c01095{vertical-align:0.000000px;}
.v3_c01095{vertical-align:15.108000px;}
.v1_c01095{vertical-align:26.028000px;}
.ls3_c01095{letter-spacing:0.000000px;}
.ls2_c01095{letter-spacing:3.004764px;}
.ls1_c01095{letter-spacing:3.005580px;}
.ls0_c01095{letter-spacing:26.411580px;}
.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;}
}
.ws2_c01095{word-spacing:-0.071730px;}
.ws24_c01095{word-spacing:0.000000px;}
.ws18_c01095{word-spacing:14.645610px;}
.wsf_c01095{word-spacing:15.565410px;}
.ws15_c01095{word-spacing:16.856550px;}
.ws14_c01095{word-spacing:16.928280px;}
.ws23_c01095{word-spacing:17.754066px;}
.ws17_c01095{word-spacing:17.993178px;}
.ws9_c01095{word-spacing:19.223640px;}
.ws1c_c01095{word-spacing:19.846296px;}
.ws12_c01095{word-spacing:20.084400px;}
.ws19_c01095{word-spacing:20.085408px;}
.ws1b_c01095{word-spacing:20.503854px;}
.ws13_c01095{word-spacing:20.801700px;}
.wsd_c01095{word-spacing:21.232080px;}
.ws6_c01095{word-spacing:21.877650px;}
.ws8_c01095{word-spacing:22.092840px;}
.ws21_c01095{word-spacing:22.177638px;}
.wsa_c01095{word-spacing:22.594950px;}
.wsb_c01095{word-spacing:22.881870px;}
.wse_c01095{word-spacing:22.953600px;}
.ws16_c01095{word-spacing:23.097060px;}
.ws10_c01095{word-spacing:23.168790px;}
.ws4_c01095{word-spacing:23.312250px;}
.ws3_c01095{word-spacing:23.383980px;}
.ws22_c01095{word-spacing:23.492754px;}
.ws1d_c01095{word-spacing:23.791644px;}
.wsc_c01095{word-spacing:24.101280px;}
.ws11_c01095{word-spacing:24.603390px;}
.ws1e_c01095{word-spacing:24.807870px;}
.ws1f_c01095{word-spacing:24.867648px;}
.ws1a_c01095{word-spacing:24.987204px;}
.ws5_c01095{word-spacing:26.037990px;}
.ws20_c01095{word-spacing:26.122986px;}
.ws1_c01095{word-spacing:26.755290px;}
.ws0_c01095{word-spacing:26.827020px;}
.ws7_c01095{word-spacing:32.637150px;}
._2_c01095{margin-left:-40.527450px;}
._9_c01095{margin-left:-37.156140px;}
._8_c01095{margin-left:-35.075970px;}
._b_c01095{margin-left:-32.421960px;}
._f_c01095{margin-left:-30.223512px;}
._12_c01095{margin-left:-29.159892px;}
._5_c01095{margin-left:-27.329130px;}
._11_c01095{margin-left:-22.548798px;}
._4_c01095{margin-left:-7.101270px;}
._14_c01095{margin-left:-5.918472px;}
._6_c01095{margin-left:-4.518990px;}
._a_c01095{margin-left:-3.514770px;}
._0_c01095{margin-left:-2.367090px;}
._c_c01095{margin-left:-1.219410px;}
._d_c01095{width:1.219410px;}
._1_c01095{width:2.295360px;}
._7_c01095{width:3.801690px;}
._10_c01095{width:21.185262px;}
._e_c01095{width:24.388200px;}
._13_c01095{width:32.349090px;}
._3_c01095{width:1347.237630px;}
.fc0_c01095{color:rgb(0,0,0);}
.fs2_c01095{font-size:41.844000px;}
.fs1_c01095{font-size:47.820000px;}
.fs3_c01095{font-size:59.778000px;}
.fs0_c01095{font-size:71.730000px;}
.y0_c01095{bottom:0.000000px;}
.y2a_c01095{bottom:109.743000px;}
.y29_c01095{bottom:127.675500px;}
.y28_c01095{bottom:145.608000px;}
.y27_c01095{bottom:163.540500px;}
.y26_c01095{bottom:181.473000px;}
.y25_c01095{bottom:199.407000px;}
.y24_c01095{bottom:222.762000px;}
.y23_c01095{bottom:235.272000px;}
.y22_c01095{bottom:253.204500px;}
.y21_c01095{bottom:271.137000px;}
.y20_c01095{bottom:289.071000px;}
.y1f_c01095{bottom:307.003500px;}
.y1e_c01095{bottom:330.358500px;}
.y1d_c01095{bottom:357.115500px;}
.y1c_c01095{bottom:384.006000px;}
.y1b_c01095{bottom:410.896500px;}
.y1a_c01095{bottom:437.787000px;}
.y19_c01095{bottom:464.679000px;}
.y18_c01095{bottom:491.569500px;}
.y17_c01095{bottom:518.460000px;}
.y16_c01095{bottom:545.350500px;}
.y15_c01095{bottom:572.242500px;}
.y14_c01095{bottom:618.559500px;}
.y13_c01095{bottom:645.450000px;}
.y12_c01095{bottom:672.342000px;}
.y11_c01095{bottom:699.232500px;}
.y10_c01095{bottom:726.123000px;}
.yf_c01095{bottom:753.013500px;}
.ye_c01095{bottom:779.905500px;}
.yd_c01095{bottom:806.796000px;}
.yc_c01095{bottom:833.686500px;}
.yb_c01095{bottom:860.577000px;}
.ya_c01095{bottom:887.469000px;}
.y9_c01095{bottom:914.359500px;}
.y8_c01095{bottom:941.250000px;}
.y7_c01095{bottom:968.140500px;}
.y6_c01095{bottom:995.032500px;}
.y5_c01095{bottom:1021.923000px;}
.y4_c01095{bottom:1048.813500px;}
.y3_c01095{bottom:1095.132000px;}
.y2_c01095{bottom:1144.948500px;}
.y1_c01095{bottom:1166.617500px;}
.h4_c01095{height:28.286544px;}
.h5_c01095{height:44.833500px;}
.h2_c01095{height:53.797500px;}
.h3_c01095{height:58.354320px;}
.h6_c01095{height:59.941500px;}
.h1_c01095{height:1263.750000px;}
.h0_c01095{height:1264.110000px;}
.w0_c01095{width:893.869500px;}
.w1_c01095{width:894.000000px;}
.x0_c01095{left:0.000000px;}
.x1_c01095{left:127.558500px;}
.x5_c01095{left:147.754500px;}
.x4_c01095{left:159.838500px;}
.x3_c01095{left:171.456000px;}
.x2_c01095{left:197.794500px;}
.x6_c01095{left:396.508500px;}
@media print{
.v2_c01095{vertical-align:-19.280000pt;}
.v0_c01095{vertical-align:0.000000pt;}
.v3_c01095{vertical-align:13.429333pt;}
.v1_c01095{vertical-align:23.136000pt;}
.ls3_c01095{letter-spacing:0.000000pt;}
.ls2_c01095{letter-spacing:2.670901pt;}
.ls1_c01095{letter-spacing:2.671627pt;}
.ls0_c01095{letter-spacing:23.476960pt;}
.ws2_c01095{word-spacing:-0.063760pt;}
.ws24_c01095{word-spacing:0.000000pt;}
.ws18_c01095{word-spacing:13.018320pt;}
.wsf_c01095{word-spacing:13.835920pt;}
.ws15_c01095{word-spacing:14.983600pt;}
.ws14_c01095{word-spacing:15.047360pt;}
.ws23_c01095{word-spacing:15.781392pt;}
.ws17_c01095{word-spacing:15.993936pt;}
.ws9_c01095{word-spacing:17.087680pt;}
.ws1c_c01095{word-spacing:17.641152pt;}
.ws12_c01095{word-spacing:17.852800pt;}
.ws19_c01095{word-spacing:17.853696pt;}
.ws1b_c01095{word-spacing:18.225648pt;}
.ws13_c01095{word-spacing:18.490400pt;}
.wsd_c01095{word-spacing:18.872960pt;}
.ws6_c01095{word-spacing:19.446800pt;}
.ws8_c01095{word-spacing:19.638080pt;}
.ws21_c01095{word-spacing:19.713456pt;}
.wsa_c01095{word-spacing:20.084400pt;}
.wsb_c01095{word-spacing:20.339440pt;}
.wse_c01095{word-spacing:20.403200pt;}
.ws16_c01095{word-spacing:20.530720pt;}
.ws10_c01095{word-spacing:20.594480pt;}
.ws4_c01095{word-spacing:20.722000pt;}
.ws3_c01095{word-spacing:20.785760pt;}
.ws22_c01095{word-spacing:20.882448pt;}
.ws1d_c01095{word-spacing:21.148128pt;}
.wsc_c01095{word-spacing:21.423360pt;}
.ws11_c01095{word-spacing:21.869680pt;}
.ws1e_c01095{word-spacing:22.051440pt;}
.ws1f_c01095{word-spacing:22.104576pt;}
.ws1a_c01095{word-spacing:22.210848pt;}
.ws5_c01095{word-spacing:23.144880pt;}
.ws20_c01095{word-spacing:23.220432pt;}
.ws1_c01095{word-spacing:23.782480pt;}
.ws0_c01095{word-spacing:23.846240pt;}
.ws7_c01095{word-spacing:29.010800pt;}
._2_c01095{margin-left:-36.024400pt;}
._9_c01095{margin-left:-33.027680pt;}
._8_c01095{margin-left:-31.178640pt;}
._b_c01095{margin-left:-28.819520pt;}
._f_c01095{margin-left:-26.865344pt;}
._12_c01095{margin-left:-25.919904pt;}
._5_c01095{margin-left:-24.292560pt;}
._11_c01095{margin-left:-20.043376pt;}
._4_c01095{margin-left:-6.312240pt;}
._14_c01095{margin-left:-5.260864pt;}
._6_c01095{margin-left:-4.016880pt;}
._a_c01095{margin-left:-3.124240pt;}
._0_c01095{margin-left:-2.104080pt;}
._c_c01095{margin-left:-1.083920pt;}
._d_c01095{width:1.083920pt;}
._1_c01095{width:2.040320pt;}
._7_c01095{width:3.379280pt;}
._10_c01095{width:18.831344pt;}
._e_c01095{width:21.678400pt;}
._13_c01095{width:28.754747pt;}
._3_c01095{width:1197.544560pt;}
.fs2_c01095{font-size:37.194667pt;}
.fs1_c01095{font-size:42.506667pt;}
.fs3_c01095{font-size:53.136000pt;}
.fs0_c01095{font-size:63.760000pt;}
.y0_c01095{bottom:0.000000pt;}
.y2a_c01095{bottom:97.549333pt;}
.y29_c01095{bottom:113.489333pt;}
.y28_c01095{bottom:129.429333pt;}
.y27_c01095{bottom:145.369333pt;}
.y26_c01095{bottom:161.309333pt;}
.y25_c01095{bottom:177.250667pt;}
.y24_c01095{bottom:198.010667pt;}
.y23_c01095{bottom:209.130667pt;}
.y22_c01095{bottom:225.070667pt;}
.y21_c01095{bottom:241.010667pt;}
.y20_c01095{bottom:256.952000pt;}
.y1f_c01095{bottom:272.892000pt;}
.y1e_c01095{bottom:293.652000pt;}
.y1d_c01095{bottom:317.436000pt;}
.y1c_c01095{bottom:341.338667pt;}
.y1b_c01095{bottom:365.241333pt;}
.y1a_c01095{bottom:389.144000pt;}
.y19_c01095{bottom:413.048000pt;}
.y18_c01095{bottom:436.950667pt;}
.y17_c01095{bottom:460.853333pt;}
.y16_c01095{bottom:484.756000pt;}
.y15_c01095{bottom:508.660000pt;}
.y14_c01095{bottom:549.830667pt;}
.y13_c01095{bottom:573.733333pt;}
.y12_c01095{bottom:597.637333pt;}
.y11_c01095{bottom:621.540000pt;}
.y10_c01095{bottom:645.442667pt;}
.yf_c01095{bottom:669.345333pt;}
.ye_c01095{bottom:693.249333pt;}
.yd_c01095{bottom:717.152000pt;}
.yc_c01095{bottom:741.054667pt;}
.yb_c01095{bottom:764.957333pt;}
.ya_c01095{bottom:788.861333pt;}
.y9_c01095{bottom:812.764000pt;}
.y8_c01095{bottom:836.666667pt;}
.y7_c01095{bottom:860.569333pt;}
.y6_c01095{bottom:884.473333pt;}
.y5_c01095{bottom:908.376000pt;}
.y4_c01095{bottom:932.278667pt;}
.y3_c01095{bottom:973.450667pt;}
.y2_c01095{bottom:1017.732000pt;}
.y1_c01095{bottom:1036.993333pt;}
.h4_c01095{height:25.143595pt;}
.h5_c01095{height:39.852000pt;}
.h2_c01095{height:47.820000pt;}
.h3_c01095{height:51.870507pt;}
.h6_c01095{height:53.281333pt;}
.h1_c01095{height:1123.333333pt;}
.h0_c01095{height:1123.653333pt;}
.w0_c01095{width:794.550667pt;}
.w1_c01095{width:794.666667pt;}
.x0_c01095{left:0.000000pt;}
.x1_c01095{left:113.385333pt;}
.x5_c01095{left:131.337333pt;}
.x4_c01095{left:142.078667pt;}
.x3_c01095{left:152.405333pt;}
.x2_c01095{left:175.817333pt;}
.x6_c01095{left:352.452000pt;}
}





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

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





.ff0_c01096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01096;src:url('chunks/assets/font_89d9eabcf6e2a1984513b52c.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:1.001000;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_c01096;src:url('chunks/assets/font_e94ccf2fd5c558496df59214.woff2')format("woff");}.ff2_c01096{font-family:ff2_c01096;line-height:1.001000;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_c01096;src:url('chunks/assets/font_bb16efe6ee092d6cd8aeb7fb.woff2')format("woff");}.ff3_c01096{font-family:ff3_c01096;line-height:1.001000;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_c01096{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_c01096{vertical-align:0.000000px;}
.ls0_c01096{letter-spacing:0.000000px;}
.sc__c01096{text-shadow:none;}
.sc0_c01096{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__c01096{-webkit-text-stroke:0px transparent;}
.sc0_c01096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01096{word-spacing:-0.071730px;}
.wsa_c01096{word-spacing:15.852330px;}
.ws4_c01096{word-spacing:16.354440px;}
.wsf_c01096{word-spacing:17.071740px;}
.wsc_c01096{word-spacing:18.864990px;}
.wse_c01096{word-spacing:18.936720px;}
.ws9_c01096{word-spacing:19.295370px;}
.ws17_c01096{word-spacing:19.869210px;}
.wsd_c01096{word-spacing:20.945160px;}
.ws18_c01096{word-spacing:21.016890px;}
.ws11_c01096{word-spacing:22.164570px;}
.ws7_c01096{word-spacing:23.312250px;}
.wsb_c01096{word-spacing:23.383980px;}
.ws20_c01096{word-spacing:23.527440px;}
.ws24_c01096{word-spacing:23.670900px;}
.ws19_c01096{word-spacing:23.814360px;}
.ws12_c01096{word-spacing:23.957820px;}
.ws3_c01096{word-spacing:24.101280px;}
.ws23_c01096{word-spacing:24.746850px;}
.ws16_c01096{word-spacing:24.962040px;}
.ws22_c01096{word-spacing:26.540100px;}
.ws1c_c01096{word-spacing:26.683560px;}
.ws1_c01096{word-spacing:26.755290px;}
.ws0_c01096{word-spacing:26.827020px;}
.ws8_c01096{word-spacing:26.898750px;}
.ws1a_c01096{word-spacing:27.185670px;}
.ws5_c01096{word-spacing:27.329130px;}
.ws6_c01096{word-spacing:27.687780px;}
.ws10_c01096{word-spacing:28.692000px;}
.ws25_c01096{word-spacing:28.835460px;}
.ws14_c01096{word-spacing:29.194110px;}
.ws15_c01096{word-spacing:30.413520px;}
.ws1b_c01096{word-spacing:30.987360px;}
.ws21_c01096{word-spacing:31.130820px;}
.ws13_c01096{word-spacing:32.350230px;}
.ws1d_c01096{word-spacing:34.000020px;}
.ws1f_c01096{word-spacing:34.071750px;}
.ws1e_c01096{word-spacing:34.860780px;}
._2_c01096{margin-left:-40.527450px;}
._f_c01096{margin-left:-36.367110px;}
._4_c01096{margin-left:-35.075970px;}
._8_c01096{margin-left:-32.708880px;}
._7_c01096{margin-left:-27.329130px;}
._6_c01096{margin-left:-7.890300px;}
._e_c01096{margin-left:-5.881860px;}
._10_c01096{margin-left:-4.561200px;}
._0_c01096{margin-left:-2.367090px;}
._5_c01096{margin-left:-1.219410px;}
._b_c01096{width:1.219410px;}
._1_c01096{width:2.295360px;}
._9_c01096{width:4.160340px;}
._c_c01096{width:17.286930px;}
._a_c01096{width:27.519510px;}
._d_c01096{width:33.426180px;}
._3_c01096{width:1347.237630px;}
.fc0_c01096{color:rgb(0,0,0);}
.fs0_c01096{font-size:71.730000px;}
.y0_c01096{bottom:0.000000px;}
.y27_c01096{bottom:91.992000px;}
.y26_c01096{bottom:118.882500px;}
.y25_c01096{bottom:145.774500px;}
.y24_c01096{bottom:172.665000px;}
.y23_c01096{bottom:199.555500px;}
.y22_c01096{bottom:226.446000px;}
.y21_c01096{bottom:253.338000px;}
.y20_c01096{bottom:280.228500px;}
.y1f_c01096{bottom:307.119000px;}
.y1e_c01096{bottom:334.009500px;}
.y1d_c01096{bottom:360.901500px;}
.y1c_c01096{bottom:387.792000px;}
.y1b_c01096{bottom:414.682500px;}
.y1a_c01096{bottom:441.573000px;}
.y19_c01096{bottom:468.465000px;}
.y18_c01096{bottom:495.355500px;}
.y17_c01096{bottom:522.246000px;}
.y16_c01096{bottom:549.136500px;}
.y15_c01096{bottom:576.027000px;}
.y14_c01096{bottom:602.919000px;}
.y13_c01096{bottom:629.809500px;}
.y12_c01096{bottom:656.700000px;}
.y11_c01096{bottom:683.590500px;}
.y10_c01096{bottom:710.482500px;}
.yf_c01096{bottom:737.373000px;}
.ye_c01096{bottom:764.263500px;}
.yd_c01096{bottom:809.088000px;}
.yc_c01096{bottom:835.978500px;}
.yb_c01096{bottom:862.869000px;}
.ya_c01096{bottom:889.759500px;}
.y9_c01096{bottom:916.650000px;}
.y8_c01096{bottom:943.542000px;}
.y7_c01096{bottom:970.432500px;}
.y6_c01096{bottom:997.323000px;}
.y5_c01096{bottom:1024.213500px;}
.y4_c01096{bottom:1051.105500px;}
.y3_c01096{bottom:1077.996000px;}
.y2_c01096{bottom:1144.948500px;}
.y1_c01096{bottom:1166.617500px;}
.h2_c01096{height:53.797500px;}
.h1_c01096{height:1263.750000px;}
.h0_c01096{height:1264.110000px;}
.w0_c01096{width:893.869500px;}
.w1_c01096{width:894.000000px;}
.x0_c01096{left:0.000000px;}
.x1_c01096{left:127.558500px;}
.x2_c01096{left:159.838500px;}
@media print{
.v0_c01096{vertical-align:0.000000pt;}
.ls0_c01096{letter-spacing:0.000000pt;}
.ws2_c01096{word-spacing:-0.063760pt;}
.wsa_c01096{word-spacing:14.090960pt;}
.ws4_c01096{word-spacing:14.537280pt;}
.wsf_c01096{word-spacing:15.174880pt;}
.wsc_c01096{word-spacing:16.768880pt;}
.wse_c01096{word-spacing:16.832640pt;}
.ws9_c01096{word-spacing:17.151440pt;}
.ws17_c01096{word-spacing:17.661520pt;}
.wsd_c01096{word-spacing:18.617920pt;}
.ws18_c01096{word-spacing:18.681680pt;}
.ws11_c01096{word-spacing:19.701840pt;}
.ws7_c01096{word-spacing:20.722000pt;}
.wsb_c01096{word-spacing:20.785760pt;}
.ws20_c01096{word-spacing:20.913280pt;}
.ws24_c01096{word-spacing:21.040800pt;}
.ws19_c01096{word-spacing:21.168320pt;}
.ws12_c01096{word-spacing:21.295840pt;}
.ws3_c01096{word-spacing:21.423360pt;}
.ws23_c01096{word-spacing:21.997200pt;}
.ws16_c01096{word-spacing:22.188480pt;}
.ws22_c01096{word-spacing:23.591200pt;}
.ws1c_c01096{word-spacing:23.718720pt;}
.ws1_c01096{word-spacing:23.782480pt;}
.ws0_c01096{word-spacing:23.846240pt;}
.ws8_c01096{word-spacing:23.910000pt;}
.ws1a_c01096{word-spacing:24.165040pt;}
.ws5_c01096{word-spacing:24.292560pt;}
.ws6_c01096{word-spacing:24.611360pt;}
.ws10_c01096{word-spacing:25.504000pt;}
.ws25_c01096{word-spacing:25.631520pt;}
.ws14_c01096{word-spacing:25.950320pt;}
.ws15_c01096{word-spacing:27.034240pt;}
.ws1b_c01096{word-spacing:27.544320pt;}
.ws21_c01096{word-spacing:27.671840pt;}
.ws13_c01096{word-spacing:28.755760pt;}
.ws1d_c01096{word-spacing:30.222240pt;}
.ws1f_c01096{word-spacing:30.286000pt;}
.ws1e_c01096{word-spacing:30.987360pt;}
._2_c01096{margin-left:-36.024400pt;}
._f_c01096{margin-left:-32.326320pt;}
._4_c01096{margin-left:-31.178640pt;}
._8_c01096{margin-left:-29.074560pt;}
._7_c01096{margin-left:-24.292560pt;}
._6_c01096{margin-left:-7.013600pt;}
._e_c01096{margin-left:-5.228320pt;}
._10_c01096{margin-left:-4.054400pt;}
._0_c01096{margin-left:-2.104080pt;}
._5_c01096{margin-left:-1.083920pt;}
._b_c01096{width:1.083920pt;}
._1_c01096{width:2.040320pt;}
._9_c01096{width:3.698080pt;}
._c_c01096{width:15.366160pt;}
._a_c01096{width:24.461787pt;}
._d_c01096{width:29.712160pt;}
._3_c01096{width:1197.544560pt;}
.fs0_c01096{font-size:63.760000pt;}
.y0_c01096{bottom:0.000000pt;}
.y27_c01096{bottom:81.770667pt;}
.y26_c01096{bottom:105.673333pt;}
.y25_c01096{bottom:129.577333pt;}
.y24_c01096{bottom:153.480000pt;}
.y23_c01096{bottom:177.382667pt;}
.y22_c01096{bottom:201.285333pt;}
.y21_c01096{bottom:225.189333pt;}
.y20_c01096{bottom:249.092000pt;}
.y1f_c01096{bottom:272.994667pt;}
.y1e_c01096{bottom:296.897333pt;}
.y1d_c01096{bottom:320.801333pt;}
.y1c_c01096{bottom:344.704000pt;}
.y1b_c01096{bottom:368.606667pt;}
.y1a_c01096{bottom:392.509333pt;}
.y19_c01096{bottom:416.413333pt;}
.y18_c01096{bottom:440.316000pt;}
.y17_c01096{bottom:464.218667pt;}
.y16_c01096{bottom:488.121333pt;}
.y15_c01096{bottom:512.024000pt;}
.y14_c01096{bottom:535.928000pt;}
.y13_c01096{bottom:559.830667pt;}
.y12_c01096{bottom:583.733333pt;}
.y11_c01096{bottom:607.636000pt;}
.y10_c01096{bottom:631.540000pt;}
.yf_c01096{bottom:655.442667pt;}
.ye_c01096{bottom:679.345333pt;}
.yd_c01096{bottom:719.189333pt;}
.yc_c01096{bottom:743.092000pt;}
.yb_c01096{bottom:766.994667pt;}
.ya_c01096{bottom:790.897333pt;}
.y9_c01096{bottom:814.800000pt;}
.y8_c01096{bottom:838.704000pt;}
.y7_c01096{bottom:862.606667pt;}
.y6_c01096{bottom:886.509333pt;}
.y5_c01096{bottom:910.412000pt;}
.y4_c01096{bottom:934.316000pt;}
.y3_c01096{bottom:958.218667pt;}
.y2_c01096{bottom:1017.732000pt;}
.y1_c01096{bottom:1036.993333pt;}
.h2_c01096{height:47.820000pt;}
.h1_c01096{height:1123.333333pt;}
.h0_c01096{height:1123.653333pt;}
.w0_c01096{width:794.550667pt;}
.w1_c01096{width:794.666667pt;}
.x0_c01096{left:0.000000pt;}
.x1_c01096{left:113.385333pt;}
.x2_c01096{left:142.078667pt;}
}





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

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





.ff0_c01097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01097;src:url('chunks/assets/font_d6c906d42927b175e4f9a5ad.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:1.001000;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_c01097;src:url('chunks/assets/font_f60944ff39fdf74b391a3509.woff2')format("woff");}.ff2_c01097{font-family:ff2_c01097;line-height:1.001000;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_c01097;src:url('chunks/assets/font_b1c8337eb352f2281bb60575.woff2')format("woff");}.ff3_c01097{font-family:ff3_c01097;line-height:1.001000;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_c01097;src:url('chunks/assets/font_1ddbcc3feb4c43f4b6d423a6.woff2')format("woff");}.ff4_c01097{font-family:ff4_c01097;line-height:0.697000;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_c01097;src:url('chunks/assets/font_38b1eed5b0c4ac928e51a6df.woff2')format("woff");}.ff5_c01097{font-family:ff5_c01097;line-height:0.696000;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_c01097;src:url('chunks/assets/font_e3858c3ba00e56c287318b2b.woff2')format("woff");}.ff6_c01097{font-family:ff6_c01097;line-height:1.000000;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_c01097{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);}
.v3_c01097{vertical-align:-21.690000px;}
.v0_c01097{vertical-align:0.000000px;}
.v2_c01097{vertical-align:18.132000px;}
.v1_c01097{vertical-align:26.034000px;}
.ls2_c01097{letter-spacing:0.000000px;}
.ls0_c01097{letter-spacing:2.999580px;}
.ls1_c01097{letter-spacing:3.004764px;}
.sc__c01097{text-shadow:none;}
.sc0_c01097{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__c01097{-webkit-text-stroke:0px transparent;}
.sc0_c01097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01097{word-spacing:-0.071730px;}
.ws2a_c01097{word-spacing:0.000000px;}
.ws13_c01097{word-spacing:15.565410px;}
.ws7_c01097{word-spacing:15.995790px;}
.ws20_c01097{word-spacing:17.143470px;}
.ws10_c01097{word-spacing:18.075960px;}
.ws29_c01097{word-spacing:18.172512px;}
.ws23_c01097{word-spacing:18.721530px;}
.ws24_c01097{word-spacing:18.936720px;}
.ws21_c01097{word-spacing:19.367100px;}
.ws9_c01097{word-spacing:19.654020px;}
.ws28_c01097{word-spacing:20.204964px;}
.ws16_c01097{word-spacing:20.299590px;}
.ws12_c01097{word-spacing:21.375540px;}
.wsc_c01097{word-spacing:21.877650px;}
.ws17_c01097{word-spacing:22.236300px;}
.ws1b_c01097{word-spacing:22.523220px;}
.ws22_c01097{word-spacing:22.594950px;}
.ws1f_c01097{word-spacing:22.666680px;}
.ws1d_c01097{word-spacing:22.738410px;}
.ws1a_c01097{word-spacing:22.881870px;}
.ws25_c01097{word-spacing:23.168790px;}
.wse_c01097{word-spacing:23.312250px;}
.ws3_c01097{word-spacing:23.383980px;}
.ws27_c01097{word-spacing:23.742630px;}
.ws1c_c01097{word-spacing:24.244740px;}
.ws6_c01097{word-spacing:24.388200px;}
.ws18_c01097{word-spacing:24.459930px;}
.ws15_c01097{word-spacing:24.818580px;}
.ws26_c01097{word-spacing:24.890310px;}
.ws1_c01097{word-spacing:26.755290px;}
.ws0_c01097{word-spacing:26.827020px;}
.ws8_c01097{word-spacing:27.759510px;}
.ws1e_c01097{word-spacing:28.079310px;}
.wsa_c01097{word-spacing:28.620270px;}
.wsd_c01097{word-spacing:29.194110px;}
.wsb_c01097{word-spacing:29.911410px;}
.ws19_c01097{word-spacing:30.198330px;}
.ws4_c01097{word-spacing:30.270060px;}
.ws5_c01097{word-spacing:31.417740px;}
.ws14_c01097{word-spacing:32.421960px;}
.wsf_c01097{word-spacing:33.784830px;}
.ws11_c01097{word-spacing:33.928290px;}
._2_c01097{margin-left:-40.527450px;}
._d_c01097{margin-left:-37.945170px;}
._4_c01097{margin-left:-35.219430px;}
._5_c01097{margin-left:-32.924070px;}
._13_c01097{margin-left:-30.628710px;}
._12_c01097{margin-left:-29.268846px;}
._8_c01097{margin-left:-27.329130px;}
._7_c01097{margin-left:-8.607600px;}
._a_c01097{margin-left:-7.173000px;}
._e_c01097{margin-left:-5.738400px;}
._6_c01097{margin-left:-3.543390px;}
._0_c01097{margin-left:-2.367090px;}
._b_c01097{margin-left:-1.362870px;}
._1_c01097{width:2.295360px;}
._9_c01097{width:4.590720px;}
._11_c01097{width:5.982390px;}
._10_c01097{width:23.957820px;}
._c_c01097{width:27.192330px;}
._f_c01097{width:31.302900px;}
._3_c01097{width:1347.237630px;}
.fc0_c01097{color:rgb(0,0,0);}
.fs2_c01097{font-size:41.844000px;}
.fs1_c01097{font-size:47.820000px;}
.fs3_c01097{font-size:59.778000px;}
.fs0_c01097{font-size:71.730000px;}
.y0_c01097{bottom:0.000000px;}
.y28_c01097{bottom:77.730000px;}
.y27_c01097{bottom:95.662500px;}
.y26_c01097{bottom:119.017500px;}
.y25_c01097{bottom:145.774500px;}
.y24_c01097{bottom:172.665000px;}
.y23_c01097{bottom:199.555500px;}
.y22_c01097{bottom:226.446000px;}
.y21_c01097{bottom:271.270500px;}
.y20_c01097{bottom:298.161000px;}
.y1f_c01097{bottom:325.051500px;}
.y1e_c01097{bottom:351.943500px;}
.y1d_c01097{bottom:378.834000px;}
.y1c_c01097{bottom:405.724500px;}
.y1b_c01097{bottom:432.615000px;}
.y1a_c01097{bottom:459.505500px;}
.y19_c01097{bottom:486.397500px;}
.y18_c01097{bottom:513.288000px;}
.y17_c01097{bottom:540.178500px;}
.y16_c01097{bottom:567.069000px;}
.y15_c01097{bottom:593.961000px;}
.y14_c01097{bottom:620.851500px;}
.y13_c01097{bottom:647.742000px;}
.y12_c01097{bottom:674.632500px;}
.y11_c01097{bottom:701.524500px;}
.y10_c01097{bottom:728.415000px;}
.yf_c01097{bottom:755.305500px;}
.ye_c01097{bottom:782.196000px;}
.yd_c01097{bottom:809.088000px;}
.yc_c01097{bottom:835.978500px;}
.yb_c01097{bottom:862.869000px;}
.ya_c01097{bottom:889.759500px;}
.y9_c01097{bottom:916.650000px;}
.y8_c01097{bottom:943.542000px;}
.y7_c01097{bottom:970.432500px;}
.y6_c01097{bottom:997.323000px;}
.y5_c01097{bottom:1024.213500px;}
.y4_c01097{bottom:1051.105500px;}
.y3_c01097{bottom:1077.996000px;}
.y2_c01097{bottom:1144.948500px;}
.y1_c01097{bottom:1166.617500px;}
.h5_c01097{height:28.286544px;}
.h6_c01097{height:44.833500px;}
.h2_c01097{height:53.797500px;}
.h3_c01097{height:58.360320px;}
.h4_c01097{height:71.929500px;}
.h1_c01097{height:1263.750000px;}
.h0_c01097{height:1264.110000px;}
.w0_c01097{width:893.869500px;}
.w1_c01097{width:894.000000px;}
.x0_c01097{left:0.000000px;}
.x1_c01097{left:127.558500px;}
.x4_c01097{left:147.754500px;}
.x2_c01097{left:159.838500px;}
.x3_c01097{left:666.177000px;}
@media print{
.v3_c01097{vertical-align:-19.280000pt;}
.v0_c01097{vertical-align:0.000000pt;}
.v2_c01097{vertical-align:16.117333pt;}
.v1_c01097{vertical-align:23.141333pt;}
.ls2_c01097{letter-spacing:0.000000pt;}
.ls0_c01097{letter-spacing:2.666293pt;}
.ls1_c01097{letter-spacing:2.670901pt;}
.ws2_c01097{word-spacing:-0.063760pt;}
.ws2a_c01097{word-spacing:0.000000pt;}
.ws13_c01097{word-spacing:13.835920pt;}
.ws7_c01097{word-spacing:14.218480pt;}
.ws20_c01097{word-spacing:15.238640pt;}
.ws10_c01097{word-spacing:16.067520pt;}
.ws29_c01097{word-spacing:16.153344pt;}
.ws23_c01097{word-spacing:16.641360pt;}
.ws24_c01097{word-spacing:16.832640pt;}
.ws21_c01097{word-spacing:17.215200pt;}
.ws9_c01097{word-spacing:17.470240pt;}
.ws28_c01097{word-spacing:17.959968pt;}
.ws16_c01097{word-spacing:18.044080pt;}
.ws12_c01097{word-spacing:19.000480pt;}
.wsc_c01097{word-spacing:19.446800pt;}
.ws17_c01097{word-spacing:19.765600pt;}
.ws1b_c01097{word-spacing:20.020640pt;}
.ws22_c01097{word-spacing:20.084400pt;}
.ws1f_c01097{word-spacing:20.148160pt;}
.ws1d_c01097{word-spacing:20.211920pt;}
.ws1a_c01097{word-spacing:20.339440pt;}
.ws25_c01097{word-spacing:20.594480pt;}
.wse_c01097{word-spacing:20.722000pt;}
.ws3_c01097{word-spacing:20.785760pt;}
.ws27_c01097{word-spacing:21.104560pt;}
.ws1c_c01097{word-spacing:21.550880pt;}
.ws6_c01097{word-spacing:21.678400pt;}
.ws18_c01097{word-spacing:21.742160pt;}
.ws15_c01097{word-spacing:22.060960pt;}
.ws26_c01097{word-spacing:22.124720pt;}
.ws1_c01097{word-spacing:23.782480pt;}
.ws0_c01097{word-spacing:23.846240pt;}
.ws8_c01097{word-spacing:24.675120pt;}
.ws1e_c01097{word-spacing:24.959387pt;}
.wsa_c01097{word-spacing:25.440240pt;}
.wsd_c01097{word-spacing:25.950320pt;}
.wsb_c01097{word-spacing:26.587920pt;}
.ws19_c01097{word-spacing:26.842960pt;}
.ws4_c01097{word-spacing:26.906720pt;}
.ws5_c01097{word-spacing:27.926880pt;}
.ws14_c01097{word-spacing:28.819520pt;}
.wsf_c01097{word-spacing:30.030960pt;}
.ws11_c01097{word-spacing:30.158480pt;}
._2_c01097{margin-left:-36.024400pt;}
._d_c01097{margin-left:-33.729040pt;}
._4_c01097{margin-left:-31.306160pt;}
._5_c01097{margin-left:-29.265840pt;}
._13_c01097{margin-left:-27.225520pt;}
._12_c01097{margin-left:-26.016752pt;}
._8_c01097{margin-left:-24.292560pt;}
._7_c01097{margin-left:-7.651200pt;}
._a_c01097{margin-left:-6.376000pt;}
._e_c01097{margin-left:-5.100800pt;}
._6_c01097{margin-left:-3.149680pt;}
._0_c01097{margin-left:-2.104080pt;}
._b_c01097{margin-left:-1.211440pt;}
._1_c01097{width:2.040320pt;}
._9_c01097{width:4.080640pt;}
._11_c01097{width:5.317680pt;}
._10_c01097{width:21.295840pt;}
._c_c01097{width:24.170960pt;}
._f_c01097{width:27.824800pt;}
._3_c01097{width:1197.544560pt;}
.fs2_c01097{font-size:37.194667pt;}
.fs1_c01097{font-size:42.506667pt;}
.fs3_c01097{font-size:53.136000pt;}
.fs0_c01097{font-size:63.760000pt;}
.y0_c01097{bottom:0.000000pt;}
.y28_c01097{bottom:69.093333pt;}
.y27_c01097{bottom:85.033333pt;}
.y26_c01097{bottom:105.793333pt;}
.y25_c01097{bottom:129.577333pt;}
.y24_c01097{bottom:153.480000pt;}
.y23_c01097{bottom:177.382667pt;}
.y22_c01097{bottom:201.285333pt;}
.y21_c01097{bottom:241.129333pt;}
.y20_c01097{bottom:265.032000pt;}
.y1f_c01097{bottom:288.934667pt;}
.y1e_c01097{bottom:312.838667pt;}
.y1d_c01097{bottom:336.741333pt;}
.y1c_c01097{bottom:360.644000pt;}
.y1b_c01097{bottom:384.546667pt;}
.y1a_c01097{bottom:408.449333pt;}
.y19_c01097{bottom:432.353333pt;}
.y18_c01097{bottom:456.256000pt;}
.y17_c01097{bottom:480.158667pt;}
.y16_c01097{bottom:504.061333pt;}
.y15_c01097{bottom:527.965333pt;}
.y14_c01097{bottom:551.868000pt;}
.y13_c01097{bottom:575.770667pt;}
.y12_c01097{bottom:599.673333pt;}
.y11_c01097{bottom:623.577333pt;}
.y10_c01097{bottom:647.480000pt;}
.yf_c01097{bottom:671.382667pt;}
.ye_c01097{bottom:695.285333pt;}
.yd_c01097{bottom:719.189333pt;}
.yc_c01097{bottom:743.092000pt;}
.yb_c01097{bottom:766.994667pt;}
.ya_c01097{bottom:790.897333pt;}
.y9_c01097{bottom:814.800000pt;}
.y8_c01097{bottom:838.704000pt;}
.y7_c01097{bottom:862.606667pt;}
.y6_c01097{bottom:886.509333pt;}
.y5_c01097{bottom:910.412000pt;}
.y4_c01097{bottom:934.316000pt;}
.y3_c01097{bottom:958.218667pt;}
.y2_c01097{bottom:1017.732000pt;}
.y1_c01097{bottom:1036.993333pt;}
.h5_c01097{height:25.143595pt;}
.h6_c01097{height:39.852000pt;}
.h2_c01097{height:47.820000pt;}
.h3_c01097{height:51.875840pt;}
.h4_c01097{height:63.937333pt;}
.h1_c01097{height:1123.333333pt;}
.h0_c01097{height:1123.653333pt;}
.w0_c01097{width:794.550667pt;}
.w1_c01097{width:794.666667pt;}
.x0_c01097{left:0.000000pt;}
.x1_c01097{left:113.385333pt;}
.x4_c01097{left:131.337333pt;}
.x2_c01097{left:142.078667pt;}
.x3_c01097{left:592.157333pt;}
}





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

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





.ff0_c01098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01098;src:url('chunks/assets/font_79cea780950777fa364a61ed.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:1.001000;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_c01098;src:url('chunks/assets/font_9ce8f8af518298abee9cacb8.woff2')format("woff");}.ff2_c01098{font-family:ff2_c01098;line-height:1.001000;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_c01098;src:url('chunks/assets/font_d4f72f34c2d3b303e8af4394.woff2')format("woff");}.ff3_c01098{font-family:ff3_c01098;line-height:1.001000;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_c01098;src:url('chunks/assets/font_6df072c67b9ba9d6f39545ca.woff2')format("woff");}.ff4_c01098{font-family:ff4_c01098;line-height:1.000000;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_c01098{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_c01098{vertical-align:0.000000px;}
.ls0_c01098{letter-spacing:0.000000px;}
.sc__c01098{text-shadow:none;}
.sc0_c01098{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__c01098{-webkit-text-stroke:0px transparent;}
.sc0_c01098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01098{word-spacing:-0.071730px;}
.ws24_c01098{word-spacing:0.000000px;}
.ws16_c01098{word-spacing:15.493680px;}
.ws6_c01098{word-spacing:17.000010px;}
.ws4_c01098{word-spacing:17.071740px;}
.ws22_c01098{word-spacing:19.151910px;}
.ws5_c01098{word-spacing:19.295370px;}
.ws1a_c01098{word-spacing:19.438830px;}
.ws23_c01098{word-spacing:19.869210px;}
.ws19_c01098{word-spacing:21.232080px;}
.ws14_c01098{word-spacing:21.447270px;}
.ws21_c01098{word-spacing:21.877650px;}
.wsc_c01098{word-spacing:22.021110px;}
.wsa_c01098{word-spacing:22.092840px;}
.ws12_c01098{word-spacing:22.236300px;}
.wsb_c01098{word-spacing:22.523220px;}
.ws13_c01098{word-spacing:22.810140px;}
.ws15_c01098{word-spacing:23.240520px;}
.ws3_c01098{word-spacing:23.312250px;}
.ws1d_c01098{word-spacing:23.383980px;}
.ws1c_c01098{word-spacing:23.742630px;}
.ws17_c01098{word-spacing:24.890310px;}
.ws20_c01098{word-spacing:25.894530px;}
.ws7_c01098{word-spacing:26.611830px;}
.ws1_c01098{word-spacing:26.755290px;}
.ws0_c01098{word-spacing:26.827020px;}
.ws11_c01098{word-spacing:27.042210px;}
.ws8_c01098{word-spacing:27.185670px;}
.ws1b_c01098{word-spacing:27.687780px;}
.ws1f_c01098{word-spacing:28.907190px;}
.ws10_c01098{word-spacing:29.122380px;}
.wsd_c01098{word-spacing:30.126600px;}
.wse_c01098{word-spacing:30.198330px;}
.wsf_c01098{word-spacing:31.417740px;}
.ws1e_c01098{word-spacing:32.450652px;}
.ws9_c01098{word-spacing:33.497910px;}
.ws18_c01098{word-spacing:33.569640px;}
._2_c01098{margin-left:-40.527450px;}
._7_c01098{margin-left:-36.492000px;}
._4_c01098{margin-left:-35.219430px;}
._12_c01098{margin-left:-34.196640px;}
._b_c01098{margin-left:-32.924070px;}
._e_c01098{margin-left:-27.329130px;}
._10_c01098{margin-left:-8.481720px;}
._d_c01098{margin-left:-7.441350px;}
._a_c01098{margin-left:-5.738400px;}
._5_c01098{margin-left:-3.497190px;}
._0_c01098{margin-left:-2.367090px;}
._8_c01098{margin-left:-1.362870px;}
._6_c01098{width:1.057380px;}
._1_c01098{width:2.295360px;}
._c_c01098{width:3.481230px;}
._9_c01098{width:24.406770px;}
._f_c01098{width:28.782300px;}
._11_c01098{width:95.200056px;}
._3_c01098{width:1347.237630px;}
.fc0_c01098{color:rgb(0,0,0);}
.fs0_c01098{font-size:71.730000px;}
.fs1_c01098{font-size:86.076000px;}
.y0_c01098{bottom:0.000000px;}
.y26_c01098{bottom:88.489500px;}
.y25_c01098{bottom:115.380000px;}
.y24_c01098{bottom:142.270500px;}
.y23_c01098{bottom:169.161000px;}
.y22_c01098{bottom:196.053000px;}
.y21_c01098{bottom:222.943500px;}
.y20_c01098{bottom:249.834000px;}
.y1f_c01098{bottom:284.446500px;}
.y1e_c01098{bottom:351.943500px;}
.y1d_c01098{bottom:378.834000px;}
.y1c_c01098{bottom:405.724500px;}
.y1b_c01098{bottom:432.615000px;}
.y1a_c01098{bottom:459.505500px;}
.y19_c01098{bottom:486.397500px;}
.y18_c01098{bottom:513.288000px;}
.y17_c01098{bottom:540.178500px;}
.y16_c01098{bottom:567.069000px;}
.y15_c01098{bottom:593.961000px;}
.y14_c01098{bottom:620.851500px;}
.y13_c01098{bottom:647.742000px;}
.y12_c01098{bottom:674.632500px;}
.y11_c01098{bottom:701.524500px;}
.y10_c01098{bottom:728.415000px;}
.yf_c01098{bottom:755.305500px;}
.ye_c01098{bottom:782.196000px;}
.yd_c01098{bottom:809.088000px;}
.yc_c01098{bottom:835.978500px;}
.yb_c01098{bottom:862.869000px;}
.ya_c01098{bottom:889.759500px;}
.y9_c01098{bottom:916.650000px;}
.y8_c01098{bottom:943.542000px;}
.y7_c01098{bottom:970.432500px;}
.y6_c01098{bottom:997.323000px;}
.y5_c01098{bottom:1024.213500px;}
.y4_c01098{bottom:1051.105500px;}
.y3_c01098{bottom:1077.996000px;}
.y2_c01098{bottom:1144.948500px;}
.y1_c01098{bottom:1166.617500px;}
.h2_c01098{height:53.797500px;}
.h3_c01098{height:64.557000px;}
.h1_c01098{height:1263.750000px;}
.h0_c01098{height:1264.110000px;}
.w0_c01098{width:893.869500px;}
.w1_c01098{width:894.000000px;}
.x0_c01098{left:0.000000px;}
.x1_c01098{left:127.558500px;}
.x2_c01098{left:159.838500px;}
@media print{
.v0_c01098{vertical-align:0.000000pt;}
.ls0_c01098{letter-spacing:0.000000pt;}
.ws2_c01098{word-spacing:-0.063760pt;}
.ws24_c01098{word-spacing:0.000000pt;}
.ws16_c01098{word-spacing:13.772160pt;}
.ws6_c01098{word-spacing:15.111120pt;}
.ws4_c01098{word-spacing:15.174880pt;}
.ws22_c01098{word-spacing:17.023920pt;}
.ws5_c01098{word-spacing:17.151440pt;}
.ws1a_c01098{word-spacing:17.278960pt;}
.ws23_c01098{word-spacing:17.661520pt;}
.ws19_c01098{word-spacing:18.872960pt;}
.ws14_c01098{word-spacing:19.064240pt;}
.ws21_c01098{word-spacing:19.446800pt;}
.wsc_c01098{word-spacing:19.574320pt;}
.wsa_c01098{word-spacing:19.638080pt;}
.ws12_c01098{word-spacing:19.765600pt;}
.wsb_c01098{word-spacing:20.020640pt;}
.ws13_c01098{word-spacing:20.275680pt;}
.ws15_c01098{word-spacing:20.658240pt;}
.ws3_c01098{word-spacing:20.722000pt;}
.ws1d_c01098{word-spacing:20.785760pt;}
.ws1c_c01098{word-spacing:21.104560pt;}
.ws17_c01098{word-spacing:22.124720pt;}
.ws20_c01098{word-spacing:23.017360pt;}
.ws7_c01098{word-spacing:23.654960pt;}
.ws1_c01098{word-spacing:23.782480pt;}
.ws0_c01098{word-spacing:23.846240pt;}
.ws11_c01098{word-spacing:24.037520pt;}
.ws8_c01098{word-spacing:24.165040pt;}
.ws1b_c01098{word-spacing:24.611360pt;}
.ws1f_c01098{word-spacing:25.695280pt;}
.ws10_c01098{word-spacing:25.886560pt;}
.wsd_c01098{word-spacing:26.779200pt;}
.wse_c01098{word-spacing:26.842960pt;}
.wsf_c01098{word-spacing:27.926880pt;}
.ws1e_c01098{word-spacing:28.845024pt;}
.ws9_c01098{word-spacing:29.775920pt;}
.ws18_c01098{word-spacing:29.839680pt;}
._2_c01098{margin-left:-36.024400pt;}
._7_c01098{margin-left:-32.437333pt;}
._4_c01098{margin-left:-31.306160pt;}
._12_c01098{margin-left:-30.397013pt;}
._b_c01098{margin-left:-29.265840pt;}
._e_c01098{margin-left:-24.292560pt;}
._10_c01098{margin-left:-7.539307pt;}
._d_c01098{margin-left:-6.614533pt;}
._a_c01098{margin-left:-5.100800pt;}
._5_c01098{margin-left:-3.108613pt;}
._0_c01098{margin-left:-2.104080pt;}
._8_c01098{margin-left:-1.211440pt;}
._6_c01098{width:0.939893pt;}
._1_c01098{width:2.040320pt;}
._c_c01098{width:3.094427pt;}
._9_c01098{width:21.694907pt;}
._f_c01098{width:25.584267pt;}
._11_c01098{width:84.622272pt;}
._3_c01098{width:1197.544560pt;}
.fs0_c01098{font-size:63.760000pt;}
.fs1_c01098{font-size:76.512000pt;}
.y0_c01098{bottom:0.000000pt;}
.y26_c01098{bottom:78.657333pt;}
.y25_c01098{bottom:102.560000pt;}
.y24_c01098{bottom:126.462667pt;}
.y23_c01098{bottom:150.365333pt;}
.y22_c01098{bottom:174.269333pt;}
.y21_c01098{bottom:198.172000pt;}
.y20_c01098{bottom:222.074667pt;}
.y1f_c01098{bottom:252.841333pt;}
.y1e_c01098{bottom:312.838667pt;}
.y1d_c01098{bottom:336.741333pt;}
.y1c_c01098{bottom:360.644000pt;}
.y1b_c01098{bottom:384.546667pt;}
.y1a_c01098{bottom:408.449333pt;}
.y19_c01098{bottom:432.353333pt;}
.y18_c01098{bottom:456.256000pt;}
.y17_c01098{bottom:480.158667pt;}
.y16_c01098{bottom:504.061333pt;}
.y15_c01098{bottom:527.965333pt;}
.y14_c01098{bottom:551.868000pt;}
.y13_c01098{bottom:575.770667pt;}
.y12_c01098{bottom:599.673333pt;}
.y11_c01098{bottom:623.577333pt;}
.y10_c01098{bottom:647.480000pt;}
.yf_c01098{bottom:671.382667pt;}
.ye_c01098{bottom:695.285333pt;}
.yd_c01098{bottom:719.189333pt;}
.yc_c01098{bottom:743.092000pt;}
.yb_c01098{bottom:766.994667pt;}
.ya_c01098{bottom:790.897333pt;}
.y9_c01098{bottom:814.800000pt;}
.y8_c01098{bottom:838.704000pt;}
.y7_c01098{bottom:862.606667pt;}
.y6_c01098{bottom:886.509333pt;}
.y5_c01098{bottom:910.412000pt;}
.y4_c01098{bottom:934.316000pt;}
.y3_c01098{bottom:958.218667pt;}
.y2_c01098{bottom:1017.732000pt;}
.y1_c01098{bottom:1036.993333pt;}
.h2_c01098{height:47.820000pt;}
.h3_c01098{height:57.384000pt;}
.h1_c01098{height:1123.333333pt;}
.h0_c01098{height:1123.653333pt;}
.w0_c01098{width:794.550667pt;}
.w1_c01098{width:794.666667pt;}
.x0_c01098{left:0.000000pt;}
.x1_c01098{left:113.385333pt;}
.x2_c01098{left:142.078667pt;}
}





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

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





.ff0_c01099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01099;src:url('chunks/assets/font_0cd9be481dcf0ddb85a504d9.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:1.001000;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_c01099;src:url('chunks/assets/font_32657be95202795fd4b18541.woff2')format("woff");}.ff2_c01099{font-family:ff2_c01099;line-height:1.001000;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_c01099;src:url('chunks/assets/font_86faca1858b7851b1941e118.woff2')format("woff");}.ff3_c01099{font-family:ff3_c01099;line-height:1.001000;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_c01099{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_c01099{vertical-align:0.000000px;}
.ls0_c01099{letter-spacing:0.000000px;}
.sc__c01099{text-shadow:none;}
.sc0_c01099{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__c01099{-webkit-text-stroke:0px transparent;}
.sc0_c01099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01099{word-spacing:-0.071730px;}
.ws4_c01099{word-spacing:16.139250px;}
.ws8_c01099{word-spacing:19.582290px;}
.ws12_c01099{word-spacing:22.308030px;}
.wsb_c01099{word-spacing:22.523220px;}
.ws7_c01099{word-spacing:22.881870px;}
.ws3_c01099{word-spacing:23.312250px;}
.ws6_c01099{word-spacing:23.383980px;}
.wsf_c01099{word-spacing:24.244740px;}
.wsd_c01099{word-spacing:24.316470px;}
.ws5_c01099{word-spacing:25.679340px;}
.wsc_c01099{word-spacing:25.751070px;}
.wse_c01099{word-spacing:25.894530px;}
.ws11_c01099{word-spacing:26.324910px;}
.ws1_c01099{word-spacing:26.755290px;}
.ws0_c01099{word-spacing:26.827020px;}
.ws9_c01099{word-spacing:27.113940px;}
.wsa_c01099{word-spacing:29.050650px;}
.ws10_c01099{word-spacing:29.624490px;}
.ws15_c01099{word-spacing:29.911410px;}
.ws13_c01099{word-spacing:30.054870px;}
.ws14_c01099{word-spacing:32.637150px;}
._2_c01099{margin-left:-40.527450px;}
._7_c01099{margin-left:-37.371330px;}
._6_c01099{margin-left:-35.506350px;}
._d_c01099{margin-left:-34.358670px;}
._f_c01099{margin-left:-32.780610px;}
._5_c01099{margin-left:-27.329130px;}
._4_c01099{margin-left:-8.177220px;}
._c_c01099{margin-left:-7.173000px;}
._10_c01099{margin-left:-5.810130px;}
._9_c01099{margin-left:-3.514770px;}
._0_c01099{margin-left:-2.367090px;}
._b_c01099{margin-left:-1.362870px;}
._a_c01099{width:1.004220px;}
._1_c01099{width:2.295360px;}
._8_c01099{width:4.375530px;}
._e_c01099{width:5.835120px;}
._3_c01099{width:1347.237630px;}
.fc0_c01099{color:rgb(0,0,0);}
.fs0_c01099{font-size:71.730000px;}
.y0_c01099{bottom:0.000000px;}
.y18_c01099{bottom:513.288000px;}
.y17_c01099{bottom:540.178500px;}
.y16_c01099{bottom:567.069000px;}
.y15_c01099{bottom:593.961000px;}
.y14_c01099{bottom:620.851500px;}
.y13_c01099{bottom:647.742000px;}
.y12_c01099{bottom:674.632500px;}
.y11_c01099{bottom:701.524500px;}
.y10_c01099{bottom:728.415000px;}
.yf_c01099{bottom:755.305500px;}
.ye_c01099{bottom:782.196000px;}
.yd_c01099{bottom:809.088000px;}
.yc_c01099{bottom:835.978500px;}
.yb_c01099{bottom:862.869000px;}
.ya_c01099{bottom:889.759500px;}
.y9_c01099{bottom:916.650000px;}
.y8_c01099{bottom:943.542000px;}
.y7_c01099{bottom:970.432500px;}
.y6_c01099{bottom:997.323000px;}
.y5_c01099{bottom:1024.213500px;}
.y4_c01099{bottom:1051.105500px;}
.y3_c01099{bottom:1077.996000px;}
.y2_c01099{bottom:1144.948500px;}
.y1_c01099{bottom:1166.617500px;}
.h2_c01099{height:53.797500px;}
.h1_c01099{height:1263.750000px;}
.h0_c01099{height:1264.110000px;}
.w0_c01099{width:893.869500px;}
.w1_c01099{width:894.000000px;}
.x0_c01099{left:0.000000px;}
.x1_c01099{left:127.558500px;}
.x2_c01099{left:159.838500px;}
@media print{
.v0_c01099{vertical-align:0.000000pt;}
.ls0_c01099{letter-spacing:0.000000pt;}
.ws2_c01099{word-spacing:-0.063760pt;}
.ws4_c01099{word-spacing:14.346000pt;}
.ws8_c01099{word-spacing:17.406480pt;}
.ws12_c01099{word-spacing:19.829360pt;}
.wsb_c01099{word-spacing:20.020640pt;}
.ws7_c01099{word-spacing:20.339440pt;}
.ws3_c01099{word-spacing:20.722000pt;}
.ws6_c01099{word-spacing:20.785760pt;}
.wsf_c01099{word-spacing:21.550880pt;}
.wsd_c01099{word-spacing:21.614640pt;}
.ws5_c01099{word-spacing:22.826080pt;}
.wsc_c01099{word-spacing:22.889840pt;}
.wse_c01099{word-spacing:23.017360pt;}
.ws11_c01099{word-spacing:23.399920pt;}
.ws1_c01099{word-spacing:23.782480pt;}
.ws0_c01099{word-spacing:23.846240pt;}
.ws9_c01099{word-spacing:24.101280pt;}
.wsa_c01099{word-spacing:25.822800pt;}
.ws10_c01099{word-spacing:26.332880pt;}
.ws15_c01099{word-spacing:26.587920pt;}
.ws13_c01099{word-spacing:26.715440pt;}
.ws14_c01099{word-spacing:29.010800pt;}
._2_c01099{margin-left:-36.024400pt;}
._7_c01099{margin-left:-33.218960pt;}
._6_c01099{margin-left:-31.561200pt;}
._d_c01099{margin-left:-30.541040pt;}
._f_c01099{margin-left:-29.138320pt;}
._5_c01099{margin-left:-24.292560pt;}
._4_c01099{margin-left:-7.268640pt;}
._c_c01099{margin-left:-6.376000pt;}
._10_c01099{margin-left:-5.164560pt;}
._9_c01099{margin-left:-3.124240pt;}
._0_c01099{margin-left:-2.104080pt;}
._b_c01099{margin-left:-1.211440pt;}
._a_c01099{width:0.892640pt;}
._1_c01099{width:2.040320pt;}
._8_c01099{width:3.889360pt;}
._e_c01099{width:5.186773pt;}
._3_c01099{width:1197.544560pt;}
.fs0_c01099{font-size:63.760000pt;}
.y0_c01099{bottom:0.000000pt;}
.y18_c01099{bottom:456.256000pt;}
.y17_c01099{bottom:480.158667pt;}
.y16_c01099{bottom:504.061333pt;}
.y15_c01099{bottom:527.965333pt;}
.y14_c01099{bottom:551.868000pt;}
.y13_c01099{bottom:575.770667pt;}
.y12_c01099{bottom:599.673333pt;}
.y11_c01099{bottom:623.577333pt;}
.y10_c01099{bottom:647.480000pt;}
.yf_c01099{bottom:671.382667pt;}
.ye_c01099{bottom:695.285333pt;}
.yd_c01099{bottom:719.189333pt;}
.yc_c01099{bottom:743.092000pt;}
.yb_c01099{bottom:766.994667pt;}
.ya_c01099{bottom:790.897333pt;}
.y9_c01099{bottom:814.800000pt;}
.y8_c01099{bottom:838.704000pt;}
.y7_c01099{bottom:862.606667pt;}
.y6_c01099{bottom:886.509333pt;}
.y5_c01099{bottom:910.412000pt;}
.y4_c01099{bottom:934.316000pt;}
.y3_c01099{bottom:958.218667pt;}
.y2_c01099{bottom:1017.732000pt;}
.y1_c01099{bottom:1036.993333pt;}
.h2_c01099{height:47.820000pt;}
.h1_c01099{height:1123.333333pt;}
.h0_c01099{height:1123.653333pt;}
.w0_c01099{width:794.550667pt;}
.w1_c01099{width:794.666667pt;}
.x0_c01099{left:0.000000pt;}
.x1_c01099{left:113.385333pt;}
.x2_c01099{left:142.078667pt;}
}





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

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





.ff0_c01100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01100;src:url('chunks/assets/font_b55d0a6bc87183ba5c94ef90.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:1.001000;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_c01100;src:url('chunks/assets/font_978dc562e4196c0817679995.woff2')format("woff");}.ff2_c01100{font-family:ff2_c01100;line-height:1.000000;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_c01100;src:url('chunks/assets/font_12e8b3122b7e88418e757237.woff2')format("woff");}.ff3_c01100{font-family:ff3_c01100;line-height:1.001000;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_c01100;src:url('chunks/assets/font_067b9a02d0baa5c265803247.woff2')format("woff");}.ff4_c01100{font-family:ff4_c01100;line-height:1.001000;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_c01100{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_c01100{vertical-align:0.000000px;}
.v2_c01100{vertical-align:7.170000px;}
.v1_c01100{vertical-align:35.940000px;}
.ls0_c01100{letter-spacing:0.000000px;}
.sc__c01100{text-shadow:none;}
.sc0_c01100{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__c01100{-webkit-text-stroke:0px transparent;}
.sc0_c01100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01100{word-spacing:-0.148722px;}
.ws13_c01100{word-spacing:-0.071730px;}
.ws14_c01100{word-spacing:0.000000px;}
.wsc_c01100{word-spacing:16.139250px;}
.ws8_c01100{word-spacing:17.860770px;}
.wsd_c01100{word-spacing:18.434610px;}
.wsb_c01100{word-spacing:19.438830px;}
.ws9_c01100{word-spacing:20.156130px;}
.ws6_c01100{word-spacing:23.312250px;}
.ws10_c01100{word-spacing:23.383980px;}
.ws7_c01100{word-spacing:25.392420px;}
.wsf_c01100{word-spacing:27.113940px;}
.ws12_c01100{word-spacing:28.907190px;}
.ws5_c01100{word-spacing:31.346010px;}
.wsa_c01100{word-spacing:32.450652px;}
.ws4_c01100{word-spacing:33.139260px;}
.ws11_c01100{word-spacing:33.856560px;}
.wse_c01100{word-spacing:36.876270px;}
.ws0_c01100{word-spacing:55.473306px;}
.ws1_c01100{word-spacing:55.622028px;}
.ws3_c01100{word-spacing:95.113980px;}
._6_c01100{margin-left:-83.730486px;}
._1_c01100{margin-left:-65.140236px;}
._c_c01100{margin-left:-37.084410px;}
._a_c01100{margin-left:-35.219430px;}
._13_c01100{margin-left:-33.254028px;}
._10_c01100{margin-left:-27.400860px;}
._0_c01100{margin-left:-18.738972px;}
._12_c01100{margin-left:-10.773540px;}
._4_c01100{margin-left:-9.369486px;}
._f_c01100{margin-left:-7.933338px;}
._7_c01100{margin-left:-5.767092px;}
._3_c01100{margin-left:-4.759104px;}
._e_c01100{margin-left:-3.575922px;}
._8_c01100{margin-left:-1.893672px;}
._d_c01100{width:1.864980px;}
._9_c01100{width:3.588408px;}
._5_c01100{width:4.610382px;}
._2_c01100{width:21.311766px;}
._b_c01100{width:33.210990px;}
._11_c01100{width:95.200056px;}
.fc0_c01100{color:rgb(0,0,0);}
.fs2_c01100{font-size:71.730000px;}
.fs1_c01100{font-size:86.076000px;}
.fs0_c01100{font-size:148.722000px;}
.y0_c01100{bottom:0.000000px;}
.y17_c01100{bottom:44.416500px;}
.y16_c01100{bottom:118.099500px;}
.y15_c01100{bottom:144.990000px;}
.y14_c01100{bottom:171.880500px;}
.y13_c01100{bottom:198.771000px;}
.y12_c01100{bottom:225.661500px;}
.y11_c01100{bottom:252.553500px;}
.y10_c01100{bottom:279.444000px;}
.yf_c01100{bottom:306.334500px;}
.ye_c01100{bottom:333.225000px;}
.yd_c01100{bottom:360.117000px;}
.yc_c01100{bottom:394.728000px;}
.yb_c01100{bottom:462.225000px;}
.ya_c01100{bottom:489.115500px;}
.y9_c01100{bottom:516.007500px;}
.y8_c01100{bottom:542.898000px;}
.y7_c01100{bottom:569.788500px;}
.y6_c01100{bottom:596.679000px;}
.y5_c01100{bottom:631.291500px;}
.y4_c01100{bottom:750.843000px;}
.y3_c01100{bottom:806.479500px;}
.y2_c01100{bottom:862.116000px;}
.y1_c01100{bottom:947.640000px;}
.h6_c01100{height:53.797500px;}
.h5_c01100{height:64.557000px;}
.h4_c01100{height:71.727000px;}
.h7_c01100{height:71.733000px;}
.h2_c01100{height:111.541500px;}
.h3_c01100{height:147.481500px;}
.h1_c01100{height:1263.750000px;}
.h0_c01100{height:1264.110000px;}
.w0_c01100{width:893.869500px;}
.w1_c01100{width:894.000000px;}
.x0_c01100{left:0.000000px;}
.x1_c01100{left:127.558500px;}
.x3_c01100{left:159.838500px;}
.x4_c01100{left:319.402500px;}
.x2_c01100{left:320.778000px;}
.x5_c01100{left:433.765500px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.v2_c01100{vertical-align:6.373333pt;}
.v1_c01100{vertical-align:31.946667pt;}
.ls0_c01100{letter-spacing:0.000000pt;}
.ws2_c01100{word-spacing:-0.132197pt;}
.ws13_c01100{word-spacing:-0.063760pt;}
.ws14_c01100{word-spacing:0.000000pt;}
.wsc_c01100{word-spacing:14.346000pt;}
.ws8_c01100{word-spacing:15.876240pt;}
.wsd_c01100{word-spacing:16.386320pt;}
.wsb_c01100{word-spacing:17.278960pt;}
.ws9_c01100{word-spacing:17.916560pt;}
.ws6_c01100{word-spacing:20.722000pt;}
.ws10_c01100{word-spacing:20.785760pt;}
.ws7_c01100{word-spacing:22.571040pt;}
.wsf_c01100{word-spacing:24.101280pt;}
.ws12_c01100{word-spacing:25.695280pt;}
.ws5_c01100{word-spacing:27.863120pt;}
.wsa_c01100{word-spacing:28.845024pt;}
.ws4_c01100{word-spacing:29.457120pt;}
.ws11_c01100{word-spacing:30.094720pt;}
.wse_c01100{word-spacing:32.778907pt;}
.ws0_c01100{word-spacing:49.309605pt;}
.ws1_c01100{word-spacing:49.441803pt;}
.ws3_c01100{word-spacing:84.545760pt;}
._6_c01100{margin-left:-74.427099pt;}
._1_c01100{margin-left:-57.902432pt;}
._c_c01100{margin-left:-32.963920pt;}
._a_c01100{margin-left:-31.306160pt;}
._13_c01100{margin-left:-29.559136pt;}
._10_c01100{margin-left:-24.356320pt;}
._0_c01100{margin-left:-16.656864pt;}
._12_c01100{margin-left:-9.576480pt;}
._4_c01100{margin-left:-8.328432pt;}
._f_c01100{margin-left:-7.051856pt;}
._7_c01100{margin-left:-5.126304pt;}
._3_c01100{margin-left:-4.230315pt;}
._e_c01100{margin-left:-3.178597pt;}
._8_c01100{margin-left:-1.683264pt;}
._d_c01100{width:1.657760pt;}
._9_c01100{width:3.189696pt;}
._5_c01100{width:4.098117pt;}
._2_c01100{width:18.943792pt;}
._b_c01100{width:29.520880pt;}
._11_c01100{width:84.622272pt;}
.fs2_c01100{font-size:63.760000pt;}
.fs1_c01100{font-size:76.512000pt;}
.fs0_c01100{font-size:132.197333pt;}
.y0_c01100{bottom:0.000000pt;}
.y17_c01100{bottom:39.481333pt;}
.y16_c01100{bottom:104.977333pt;}
.y15_c01100{bottom:128.880000pt;}
.y14_c01100{bottom:152.782667pt;}
.y13_c01100{bottom:176.685333pt;}
.y12_c01100{bottom:200.588000pt;}
.y11_c01100{bottom:224.492000pt;}
.y10_c01100{bottom:248.394667pt;}
.yf_c01100{bottom:272.297333pt;}
.ye_c01100{bottom:296.200000pt;}
.yd_c01100{bottom:320.104000pt;}
.yc_c01100{bottom:350.869333pt;}
.yb_c01100{bottom:410.866667pt;}
.ya_c01100{bottom:434.769333pt;}
.y9_c01100{bottom:458.673333pt;}
.y8_c01100{bottom:482.576000pt;}
.y7_c01100{bottom:506.478667pt;}
.y6_c01100{bottom:530.381333pt;}
.y5_c01100{bottom:561.148000pt;}
.y4_c01100{bottom:667.416000pt;}
.y3_c01100{bottom:716.870667pt;}
.y2_c01100{bottom:766.325333pt;}
.y1_c01100{bottom:842.346667pt;}
.h6_c01100{height:47.820000pt;}
.h5_c01100{height:57.384000pt;}
.h4_c01100{height:63.757333pt;}
.h7_c01100{height:63.762667pt;}
.h2_c01100{height:99.148000pt;}
.h3_c01100{height:131.094667pt;}
.h1_c01100{height:1123.333333pt;}
.h0_c01100{height:1123.653333pt;}
.w0_c01100{width:794.550667pt;}
.w1_c01100{width:794.666667pt;}
.x0_c01100{left:0.000000pt;}
.x1_c01100{left:113.385333pt;}
.x3_c01100{left:142.078667pt;}
.x4_c01100{left:283.913333pt;}
.x2_c01100{left:285.136000pt;}
.x5_c01100{left:385.569333pt;}
}





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

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





.ff0_c01101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01101;src:url('chunks/assets/font_3995f7aaae2b3a74ac604af7.woff2')format("woff");}.ff1_c01101{font-family:ff1_c01101;line-height:1.001000;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_c01101;src:url('chunks/assets/font_ee57a4a8d9e63baf57212556.woff2')format("woff");}.ff2_c01101{font-family:ff2_c01101;line-height:1.001000;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_c01101;src:url('chunks/assets/font_2632fa344c3551283bae8a9b.woff2')format("woff");}.ff3_c01101{font-family:ff3_c01101;line-height:1.000000;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_c01101;src:url('chunks/assets/font_ef53939ff815b55bdbdd3e94.woff2')format("woff");}.ff4_c01101{font-family:ff4_c01101;line-height:1.001000;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_c01101;src:url('chunks/assets/font_3dba260541d1df86c4a46a86.woff2')format("woff");}.ff5_c01101{font-family:ff5_c01101;line-height:0.697000;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_c01101;src:url('chunks/assets/font_6e27ded4edb8360c6e3b084d.woff2')format("woff");}.ff6_c01101{font-family:ff6_c01101;line-height:0.696000;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_c01101;src:url('chunks/assets/font_803fbe220d22cb2f104c5e79.woff2')format("woff");}.ff7_c01101{font-family:ff7_c01101;line-height:1.000000;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_c01101;src:url('chunks/assets/font_652562230884f3cccf717301.woff2')format("woff");}.ff8_c01101{font-family:ff8_c01101;line-height:1.000000;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_c01101{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);}
.v4_c01101{vertical-align:-21.696000px;}
.v0_c01101{vertical-align:0.000000px;}
.v2_c01101{vertical-align:7.176000px;}
.v5_c01101{vertical-align:15.108000px;}
.v1_c01101{vertical-align:17.334000px;}
.v3_c01101{vertical-align:26.034000px;}
.ls2_c01101{letter-spacing:0.000000px;}
.ls1_c01101{letter-spacing:3.004764px;}
.ls0_c01101{letter-spacing:3.005580px;}
.sc__c01101{text-shadow:none;}
.sc0_c01101{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__c01101{-webkit-text-stroke:0px transparent;}
.sc0_c01101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01101{word-spacing:-0.071730px;}
.ws1a_c01101{word-spacing:-0.059778px;}
.ws1e_c01101{word-spacing:0.000000px;}
.ws18_c01101{word-spacing:18.506340px;}
.wsa_c01101{word-spacing:19.223640px;}
.ws19_c01101{word-spacing:19.725750px;}
.ws1d_c01101{word-spacing:19.846296px;}
.ws14_c01101{word-spacing:20.084400px;}
.wsb_c01101{word-spacing:20.729970px;}
.ws10_c01101{word-spacing:21.805920px;}
.ws9_c01101{word-spacing:23.312250px;}
.ws11_c01101{word-spacing:23.383980px;}
.ws4_c01101{word-spacing:23.957820px;}
.ws17_c01101{word-spacing:24.388200px;}
.ws16_c01101{word-spacing:24.459930px;}
.ws1b_c01101{word-spacing:24.927426px;}
.wse_c01101{word-spacing:25.033770px;}
.ws6_c01101{word-spacing:25.105500px;}
.ws13_c01101{word-spacing:25.535880px;}
.ws1c_c01101{word-spacing:26.003430px;}
.ws0_c01101{word-spacing:26.827020px;}
.wsd_c01101{word-spacing:27.544320px;}
.ws15_c01101{word-spacing:27.616050px;}
.wsc_c01101{word-spacing:27.759510px;}
.ws3_c01101{word-spacing:28.548540px;}
.ws12_c01101{word-spacing:29.050650px;}
.wsf_c01101{word-spacing:29.122380px;}
.ws7_c01101{word-spacing:30.915630px;}
.ws2_c01101{word-spacing:32.450652px;}
.ws5_c01101{word-spacing:32.852340px;}
.ws8_c01101{word-spacing:34.358670px;}
._4_c01101{margin-left:-40.455720px;}
._b_c01101{margin-left:-37.084410px;}
._8_c01101{margin-left:-35.506350px;}
._c_c01101{margin-left:-34.358670px;}
._e_c01101{margin-left:-32.206770px;}
._15_c01101{margin-left:-29.889000px;}
._9_c01101{margin-left:-27.558666px;}
._7_c01101{margin-left:-7.660764px;}
._14_c01101{margin-left:-6.025320px;}
._2_c01101{margin-left:-4.447260px;}
._1_c01101{margin-left:-2.295360px;}
._12_c01101{margin-left:-1.291140px;}
._f_c01101{width:1.219410px;}
._3_c01101{width:2.223630px;}
._d_c01101{width:3.801690px;}
._11_c01101{width:5.286600px;}
._0_c01101{width:10.394160px;}
._10_c01101{width:11.490180px;}
._13_c01101{width:25.535880px;}
._a_c01101{width:30.772170px;}
._6_c01101{width:95.200056px;}
._5_c01101{width:1063.904130px;}
.fc0_c01101{color:rgb(0,0,0);}
.fs3_c01101{font-size:41.844000px;}
.fs2_c01101{font-size:47.820000px;}
.fs4_c01101{font-size:59.778000px;}
.fs0_c01101{font-size:71.730000px;}
.fs1_c01101{font-size:86.076000px;}
.y0_c01101{bottom:0.000000px;}
.y24_c01101{bottom:147.610500px;}
.y23_c01101{bottom:160.120500px;}
.y22_c01101{bottom:178.053000px;}
.y21_c01101{bottom:183.477000px;}
.y20_c01101{bottom:211.834500px;}
.y1f_c01101{bottom:238.725000px;}
.y1e_c01101{bottom:265.617000px;}
.y1d_c01101{bottom:292.507500px;}
.y1c_c01101{bottom:338.826000px;}
.y1b_c01101{bottom:365.716500px;}
.y1a_c01101{bottom:392.607000px;}
.y19_c01101{bottom:419.497500px;}
.y18_c01101{bottom:446.389500px;}
.y17_c01101{bottom:492.706500px;}
.y16_c01101{bottom:519.597000px;}
.y15_c01101{bottom:546.489000px;}
.y14_c01101{bottom:573.379500px;}
.y13_c01101{bottom:600.270000px;}
.y12_c01101{bottom:627.160500px;}
.y11_c01101{bottom:654.052500px;}
.y10_c01101{bottom:700.369500px;}
.yf_c01101{bottom:727.261500px;}
.ye_c01101{bottom:773.578500px;}
.yd_c01101{bottom:800.469000px;}
.yc_c01101{bottom:827.361000px;}
.yb_c01101{bottom:854.251500px;}
.ya_c01101{bottom:881.142000px;}
.y9_c01101{bottom:908.032500px;}
.y8_c01101{bottom:934.924500px;}
.y7_c01101{bottom:961.815000px;}
.y6_c01101{bottom:988.705500px;}
.y5_c01101{bottom:1015.596000px;}
.y4_c01101{bottom:1042.488000px;}
.y3_c01101{bottom:1077.099000px;}
.y2_c01101{bottom:1140.615000px;}
.y1_c01101{bottom:1162.284000px;}
.ha_c01101{height:28.286544px;}
.h8_c01101{height:38.245500px;}
.h9_c01101{height:44.833500px;}
.h3_c01101{height:53.797500px;}
.h7_c01101{height:58.354320px;}
.h6_c01101{height:58.360320px;}
.h5_c01101{height:64.557000px;}
.h2_c01101{height:71.131500px;}
.h4_c01101{height:71.733000px;}
.h1_c01101{height:1263.750000px;}
.h0_c01101{height:1264.110000px;}
.w0_c01101{width:893.869500px;}
.w1_c01101{width:894.000000px;}
.x0_c01101{left:0.000000px;}
.x1_c01101{left:127.558500px;}
.x7_c01101{left:147.754500px;}
.x4_c01101{left:159.838500px;}
.x6_c01101{left:171.456000px;}
.x5_c01101{left:197.794500px;}
.x8_c01101{left:201.366000px;}
.x2_c01101{left:253.254000px;}
.x3_c01101{left:353.367000px;}
@media print{
.v4_c01101{vertical-align:-19.285333pt;}
.v0_c01101{vertical-align:0.000000pt;}
.v2_c01101{vertical-align:6.378667pt;}
.v5_c01101{vertical-align:13.429333pt;}
.v1_c01101{vertical-align:15.408000pt;}
.v3_c01101{vertical-align:23.141333pt;}
.ls2_c01101{letter-spacing:0.000000pt;}
.ls1_c01101{letter-spacing:2.670901pt;}
.ls0_c01101{letter-spacing:2.671627pt;}
.ws1_c01101{word-spacing:-0.063760pt;}
.ws1a_c01101{word-spacing:-0.053136pt;}
.ws1e_c01101{word-spacing:0.000000pt;}
.ws18_c01101{word-spacing:16.450080pt;}
.wsa_c01101{word-spacing:17.087680pt;}
.ws19_c01101{word-spacing:17.534000pt;}
.ws1d_c01101{word-spacing:17.641152pt;}
.ws14_c01101{word-spacing:17.852800pt;}
.wsb_c01101{word-spacing:18.426640pt;}
.ws10_c01101{word-spacing:19.383040pt;}
.ws9_c01101{word-spacing:20.722000pt;}
.ws11_c01101{word-spacing:20.785760pt;}
.ws4_c01101{word-spacing:21.295840pt;}
.ws17_c01101{word-spacing:21.678400pt;}
.ws16_c01101{word-spacing:21.742160pt;}
.ws1b_c01101{word-spacing:22.157712pt;}
.wse_c01101{word-spacing:22.252240pt;}
.ws6_c01101{word-spacing:22.316000pt;}
.ws13_c01101{word-spacing:22.698560pt;}
.ws1c_c01101{word-spacing:23.114160pt;}
.ws0_c01101{word-spacing:23.846240pt;}
.wsd_c01101{word-spacing:24.483840pt;}
.ws15_c01101{word-spacing:24.547600pt;}
.wsc_c01101{word-spacing:24.675120pt;}
.ws3_c01101{word-spacing:25.376480pt;}
.ws12_c01101{word-spacing:25.822800pt;}
.wsf_c01101{word-spacing:25.886560pt;}
.ws7_c01101{word-spacing:27.480560pt;}
.ws2_c01101{word-spacing:28.845024pt;}
.ws5_c01101{word-spacing:29.202080pt;}
.ws8_c01101{word-spacing:30.541040pt;}
._4_c01101{margin-left:-35.960640pt;}
._b_c01101{margin-left:-32.963920pt;}
._8_c01101{margin-left:-31.561200pt;}
._c_c01101{margin-left:-30.541040pt;}
._e_c01101{margin-left:-28.628240pt;}
._15_c01101{margin-left:-26.568000pt;}
._9_c01101{margin-left:-24.496592pt;}
._7_c01101{margin-left:-6.809568pt;}
._14_c01101{margin-left:-5.355840pt;}
._2_c01101{margin-left:-3.953120pt;}
._1_c01101{margin-left:-2.040320pt;}
._12_c01101{margin-left:-1.147680pt;}
._f_c01101{width:1.083920pt;}
._3_c01101{width:1.976560pt;}
._d_c01101{width:3.379280pt;}
._11_c01101{width:4.699200pt;}
._0_c01101{width:9.239253pt;}
._10_c01101{width:10.213493pt;}
._13_c01101{width:22.698560pt;}
._a_c01101{width:27.353040pt;}
._6_c01101{width:84.622272pt;}
._5_c01101{width:945.692560pt;}
.fs3_c01101{font-size:37.194667pt;}
.fs2_c01101{font-size:42.506667pt;}
.fs4_c01101{font-size:53.136000pt;}
.fs0_c01101{font-size:63.760000pt;}
.fs1_c01101{font-size:76.512000pt;}
.y0_c01101{bottom:0.000000pt;}
.y24_c01101{bottom:131.209333pt;}
.y23_c01101{bottom:142.329333pt;}
.y22_c01101{bottom:158.269333pt;}
.y21_c01101{bottom:163.090667pt;}
.y20_c01101{bottom:188.297333pt;}
.y1f_c01101{bottom:212.200000pt;}
.y1e_c01101{bottom:236.104000pt;}
.y1d_c01101{bottom:260.006667pt;}
.y1c_c01101{bottom:301.178667pt;}
.y1b_c01101{bottom:325.081333pt;}
.y1a_c01101{bottom:348.984000pt;}
.y19_c01101{bottom:372.886667pt;}
.y18_c01101{bottom:396.790667pt;}
.y17_c01101{bottom:437.961333pt;}
.y16_c01101{bottom:461.864000pt;}
.y15_c01101{bottom:485.768000pt;}
.y14_c01101{bottom:509.670667pt;}
.y13_c01101{bottom:533.573333pt;}
.y12_c01101{bottom:557.476000pt;}
.y11_c01101{bottom:581.380000pt;}
.y10_c01101{bottom:622.550667pt;}
.yf_c01101{bottom:646.454667pt;}
.ye_c01101{bottom:687.625333pt;}
.yd_c01101{bottom:711.528000pt;}
.yc_c01101{bottom:735.432000pt;}
.yb_c01101{bottom:759.334667pt;}
.ya_c01101{bottom:783.237333pt;}
.y9_c01101{bottom:807.140000pt;}
.y8_c01101{bottom:831.044000pt;}
.y7_c01101{bottom:854.946667pt;}
.y6_c01101{bottom:878.849333pt;}
.y5_c01101{bottom:902.752000pt;}
.y4_c01101{bottom:926.656000pt;}
.y3_c01101{bottom:957.421333pt;}
.y2_c01101{bottom:1013.880000pt;}
.y1_c01101{bottom:1033.141333pt;}
.ha_c01101{height:25.143595pt;}
.h8_c01101{height:33.996000pt;}
.h9_c01101{height:39.852000pt;}
.h3_c01101{height:47.820000pt;}
.h7_c01101{height:51.870507pt;}
.h6_c01101{height:51.875840pt;}
.h5_c01101{height:57.384000pt;}
.h2_c01101{height:63.228000pt;}
.h4_c01101{height:63.762667pt;}
.h1_c01101{height:1123.333333pt;}
.h0_c01101{height:1123.653333pt;}
.w0_c01101{width:794.550667pt;}
.w1_c01101{width:794.666667pt;}
.x0_c01101{left:0.000000pt;}
.x1_c01101{left:113.385333pt;}
.x7_c01101{left:131.337333pt;}
.x4_c01101{left:142.078667pt;}
.x6_c01101{left:152.405333pt;}
.x5_c01101{left:175.817333pt;}
.x8_c01101{left:178.992000pt;}
.x2_c01101{left:225.114667pt;}
.x3_c01101{left:314.104000pt;}
}





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

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





.ff0_c01102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01102;src:url('chunks/assets/font_a11382aff460f530fc985ed2.woff2')format("woff");}.ff1_c01102{font-family:ff1_c01102;line-height:1.001000;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_c01102;src:url('chunks/assets/font_5073db7bbafbbd50a1bccaa3.woff2')format("woff");}.ff2_c01102{font-family:ff2_c01102;line-height:1.001000;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_c01102;src:url('chunks/assets/font_6709ecfd84017239d352eb69.woff2')format("woff");}.ff3_c01102{font-family:ff3_c01102;line-height:1.001000;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_c01102;src:url('chunks/assets/font_7baf3c4f2760c1aeafa009fb.woff2')format("woff");}.ff4_c01102{font-family:ff4_c01102;line-height:0.697000;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_c01102;src:url('chunks/assets/font_54a6132d49e350e04b2cba6f.woff2')format("woff");}.ff5_c01102{font-family:ff5_c01102;line-height:0.696000;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_c01102;src:url('chunks/assets/font_d1d4b1b6be53c24130e1331f.woff2')format("woff");}.ff6_c01102{font-family:ff6_c01102;line-height:1.000000;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_c01102;src:url('chunks/assets/font_a97b0fad8435ce9ad35e59f2.woff2')format("woff");}.ff7_c01102{font-family:ff7_c01102;line-height:1.000000;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_c01102{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);}
.v3_c01102{vertical-align:-21.690000px;}
.v0_c01102{vertical-align:0.000000px;}
.v1_c01102{vertical-align:17.334000px;}
.v2_c01102{vertical-align:26.034000px;}
.ls3_c01102{letter-spacing:0.000000px;}
.ls0_c01102{letter-spacing:2.999580px;}
.ls2_c01102{letter-spacing:3.004764px;}
.ls1_c01102{letter-spacing:29.263590px;}
.sc__c01102{text-shadow:none;}
.sc0_c01102{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__c01102{-webkit-text-stroke:0px transparent;}
.sc0_c01102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01102{word-spacing:-0.071730px;}
.ws28_c01102{word-spacing:0.000000px;}
.ws26_c01102{word-spacing:18.052956px;}
.ws27_c01102{word-spacing:19.666962px;}
.ws21_c01102{word-spacing:19.725750px;}
.wsb_c01102{word-spacing:19.797480px;}
.ws25_c01102{word-spacing:19.846296px;}
.wsd_c01102{word-spacing:20.371320px;}
.ws1d_c01102{word-spacing:20.729970px;}
.ws13_c01102{word-spacing:21.303810px;}
.wsa_c01102{word-spacing:22.092840px;}
.wsc_c01102{word-spacing:22.451490px;}
.ws12_c01102{word-spacing:22.738410px;}
.wsf_c01102{word-spacing:22.810140px;}
.ws20_c01102{word-spacing:22.881870px;}
.ws10_c01102{word-spacing:23.312250px;}
.ws8_c01102{word-spacing:23.383980px;}
.ws1a_c01102{word-spacing:23.599170px;}
.ws1e_c01102{word-spacing:24.603390px;}
.ws4_c01102{word-spacing:25.033770px;}
.ws11_c01102{word-spacing:25.105500px;}
.ws19_c01102{word-spacing:25.248960px;}
.ws17_c01102{word-spacing:25.508430px;}
.ws15_c01102{word-spacing:25.523490px;}
.ws3_c01102{word-spacing:25.607610px;}
.ws14_c01102{word-spacing:25.683270px;}
.ws23_c01102{word-spacing:26.780544px;}
.ws0_c01102{word-spacing:26.827020px;}
.ws18_c01102{word-spacing:26.970480px;}
.ws16_c01102{word-spacing:27.042210px;}
.ws6_c01102{word-spacing:27.185670px;}
.ws7_c01102{word-spacing:27.257400px;}
.ws24_c01102{word-spacing:27.736992px;}
.ws1b_c01102{word-spacing:29.050650px;}
.wse_c01102{word-spacing:29.194110px;}
.ws22_c01102{word-spacing:29.911410px;}
.ws1c_c01102{word-spacing:30.270060px;}
.ws9_c01102{word-spacing:30.628710px;}
.ws1f_c01102{word-spacing:31.346010px;}
.ws2_c01102{word-spacing:32.421960px;}
.ws5_c01102{word-spacing:35.865000px;}
._4_c01102{margin-left:-40.455720px;}
._8_c01102{margin-left:-37.299600px;}
._6_c01102{margin-left:-35.649810px;}
._13_c01102{margin-left:-34.430400px;}
._10_c01102{margin-left:-32.995800px;}
._e_c01102{margin-left:-29.194110px;}
._b_c01102{margin-left:-27.400860px;}
._a_c01102{margin-left:-7.675110px;}
._c_c01102{margin-left:-5.810130px;}
._2_c01102{margin-left:-4.447260px;}
._7_c01102{margin-left:-3.299580px;}
._1_c01102{margin-left:-2.295360px;}
._f_c01102{margin-left:-1.291140px;}
._3_c01102{width:2.223630px;}
._14_c01102{width:3.514770px;}
._9_c01102{width:4.998180px;}
._0_c01102{width:10.394160px;}
._d_c01102{width:11.490180px;}
._11_c01102{width:18.147690px;}
._18_c01102{width:23.957820px;}
._17_c01102{width:25.679340px;}
._15_c01102{width:28.249860px;}
._12_c01102{width:30.305820px;}
._16_c01102{width:34.565640px;}
._5_c01102{width:1063.904130px;}
.fc0_c01102{color:rgb(0,0,0);}
.fs2_c01102{font-size:41.844000px;}
.fs1_c01102{font-size:47.820000px;}
.fs3_c01102{font-size:59.778000px;}
.fs0_c01102{font-size:71.730000px;}
.y0_c01102{bottom:0.000000px;}
.y26_c01102{bottom:76.359000px;}
.y25_c01102{bottom:99.715500px;}
.y24_c01102{bottom:112.225500px;}
.y23_c01102{bottom:135.580500px;}
.y22_c01102{bottom:162.337500px;}
.y21_c01102{bottom:189.228000px;}
.y20_c01102{bottom:216.118500px;}
.y1f_c01102{bottom:243.009000px;}
.y1e_c01102{bottom:269.901000px;}
.y1d_c01102{bottom:316.218000px;}
.y1c_c01102{bottom:343.108500px;}
.y1b_c01102{bottom:370.000500px;}
.y1a_c01102{bottom:396.891000px;}
.y19_c01102{bottom:423.781500px;}
.y18_c01102{bottom:450.672000px;}
.y17_c01102{bottom:477.564000px;}
.y16_c01102{bottom:504.454500px;}
.y15_c01102{bottom:531.345000px;}
.y14_c01102{bottom:558.235500px;}
.y13_c01102{bottom:585.127500px;}
.y12_c01102{bottom:612.018000px;}
.y11_c01102{bottom:638.908500px;}
.y10_c01102{bottom:665.799000px;}
.yf_c01102{bottom:692.691000px;}
.ye_c01102{bottom:719.581500px;}
.yd_c01102{bottom:746.472000px;}
.yc_c01102{bottom:773.362500px;}
.yb_c01102{bottom:819.681000px;}
.ya_c01102{bottom:846.571500px;}
.y9_c01102{bottom:873.462000px;}
.y8_c01102{bottom:900.354000px;}
.y7_c01102{bottom:946.671000px;}
.y6_c01102{bottom:973.563000px;}
.y5_c01102{bottom:1019.880000px;}
.y4_c01102{bottom:1046.770500px;}
.y3_c01102{bottom:1073.662500px;}
.y2_c01102{bottom:1140.615000px;}
.y1_c01102{bottom:1162.284000px;}
.h6_c01102{height:28.286544px;}
.h7_c01102{height:44.833500px;}
.h3_c01102{height:53.797500px;}
.h5_c01102{height:58.354320px;}
.h4_c01102{height:58.360320px;}
.h2_c01102{height:71.131500px;}
.h1_c01102{height:1263.750000px;}
.h0_c01102{height:1264.110000px;}
.w0_c01102{width:893.869500px;}
.w1_c01102{width:894.000000px;}
.x0_c01102{left:0.000000px;}
.x1_c01102{left:127.558500px;}
.x6_c01102{left:147.754500px;}
.x5_c01102{left:159.838500px;}
.x4_c01102{left:171.456000px;}
.x3_c01102{left:197.794500px;}
.x2_c01102{left:253.254000px;}
@media print{
.v3_c01102{vertical-align:-19.280000pt;}
.v0_c01102{vertical-align:0.000000pt;}
.v1_c01102{vertical-align:15.408000pt;}
.v2_c01102{vertical-align:23.141333pt;}
.ls3_c01102{letter-spacing:0.000000pt;}
.ls0_c01102{letter-spacing:2.666293pt;}
.ls2_c01102{letter-spacing:2.670901pt;}
.ls1_c01102{letter-spacing:26.012080pt;}
.ws1_c01102{word-spacing:-0.063760pt;}
.ws28_c01102{word-spacing:0.000000pt;}
.ws26_c01102{word-spacing:16.047072pt;}
.ws27_c01102{word-spacing:17.481744pt;}
.ws21_c01102{word-spacing:17.534000pt;}
.wsb_c01102{word-spacing:17.597760pt;}
.ws25_c01102{word-spacing:17.641152pt;}
.wsd_c01102{word-spacing:18.107840pt;}
.ws1d_c01102{word-spacing:18.426640pt;}
.ws13_c01102{word-spacing:18.936720pt;}
.wsa_c01102{word-spacing:19.638080pt;}
.wsc_c01102{word-spacing:19.956880pt;}
.ws12_c01102{word-spacing:20.211920pt;}
.wsf_c01102{word-spacing:20.275680pt;}
.ws20_c01102{word-spacing:20.339440pt;}
.ws10_c01102{word-spacing:20.722000pt;}
.ws8_c01102{word-spacing:20.785760pt;}
.ws1a_c01102{word-spacing:20.977040pt;}
.ws1e_c01102{word-spacing:21.869680pt;}
.ws4_c01102{word-spacing:22.252240pt;}
.ws11_c01102{word-spacing:22.316000pt;}
.ws19_c01102{word-spacing:22.443520pt;}
.ws17_c01102{word-spacing:22.674160pt;}
.ws15_c01102{word-spacing:22.687547pt;}
.ws3_c01102{word-spacing:22.762320pt;}
.ws14_c01102{word-spacing:22.829573pt;}
.ws23_c01102{word-spacing:23.804928pt;}
.ws0_c01102{word-spacing:23.846240pt;}
.ws18_c01102{word-spacing:23.973760pt;}
.ws16_c01102{word-spacing:24.037520pt;}
.ws6_c01102{word-spacing:24.165040pt;}
.ws7_c01102{word-spacing:24.228800pt;}
.ws24_c01102{word-spacing:24.655104pt;}
.ws1b_c01102{word-spacing:25.822800pt;}
.wse_c01102{word-spacing:25.950320pt;}
.ws22_c01102{word-spacing:26.587920pt;}
.ws1c_c01102{word-spacing:26.906720pt;}
.ws9_c01102{word-spacing:27.225520pt;}
.ws1f_c01102{word-spacing:27.863120pt;}
.ws2_c01102{word-spacing:28.819520pt;}
.ws5_c01102{word-spacing:31.880000pt;}
._4_c01102{margin-left:-35.960640pt;}
._8_c01102{margin-left:-33.155200pt;}
._6_c01102{margin-left:-31.688720pt;}
._13_c01102{margin-left:-30.604800pt;}
._10_c01102{margin-left:-29.329600pt;}
._e_c01102{margin-left:-25.950320pt;}
._b_c01102{margin-left:-24.356320pt;}
._a_c01102{margin-left:-6.822320pt;}
._c_c01102{margin-left:-5.164560pt;}
._2_c01102{margin-left:-3.953120pt;}
._7_c01102{margin-left:-2.932960pt;}
._1_c01102{margin-left:-2.040320pt;}
._f_c01102{margin-left:-1.147680pt;}
._3_c01102{width:1.976560pt;}
._14_c01102{width:3.124240pt;}
._9_c01102{width:4.442827pt;}
._0_c01102{width:9.239253pt;}
._d_c01102{width:10.213493pt;}
._11_c01102{width:16.131280pt;}
._18_c01102{width:21.295840pt;}
._17_c01102{width:22.826080pt;}
._15_c01102{width:25.110987pt;}
._12_c01102{width:26.938507pt;}
._16_c01102{width:30.725013pt;}
._5_c01102{width:945.692560pt;}
.fs2_c01102{font-size:37.194667pt;}
.fs1_c01102{font-size:42.506667pt;}
.fs3_c01102{font-size:53.136000pt;}
.fs0_c01102{font-size:63.760000pt;}
.y0_c01102{bottom:0.000000pt;}
.y26_c01102{bottom:67.874667pt;}
.y25_c01102{bottom:88.636000pt;}
.y24_c01102{bottom:99.756000pt;}
.y23_c01102{bottom:120.516000pt;}
.y22_c01102{bottom:144.300000pt;}
.y21_c01102{bottom:168.202667pt;}
.y20_c01102{bottom:192.105333pt;}
.y1f_c01102{bottom:216.008000pt;}
.y1e_c01102{bottom:239.912000pt;}
.y1d_c01102{bottom:281.082667pt;}
.y1c_c01102{bottom:304.985333pt;}
.y1b_c01102{bottom:328.889333pt;}
.y1a_c01102{bottom:352.792000pt;}
.y19_c01102{bottom:376.694667pt;}
.y18_c01102{bottom:400.597333pt;}
.y17_c01102{bottom:424.501333pt;}
.y16_c01102{bottom:448.404000pt;}
.y15_c01102{bottom:472.306667pt;}
.y14_c01102{bottom:496.209333pt;}
.y13_c01102{bottom:520.113333pt;}
.y12_c01102{bottom:544.016000pt;}
.y11_c01102{bottom:567.918667pt;}
.y10_c01102{bottom:591.821333pt;}
.yf_c01102{bottom:615.725333pt;}
.ye_c01102{bottom:639.628000pt;}
.yd_c01102{bottom:663.530667pt;}
.yc_c01102{bottom:687.433333pt;}
.yb_c01102{bottom:728.605333pt;}
.ya_c01102{bottom:752.508000pt;}
.y9_c01102{bottom:776.410667pt;}
.y8_c01102{bottom:800.314667pt;}
.y7_c01102{bottom:841.485333pt;}
.y6_c01102{bottom:865.389333pt;}
.y5_c01102{bottom:906.560000pt;}
.y4_c01102{bottom:930.462667pt;}
.y3_c01102{bottom:954.366667pt;}
.y2_c01102{bottom:1013.880000pt;}
.y1_c01102{bottom:1033.141333pt;}
.h6_c01102{height:25.143595pt;}
.h7_c01102{height:39.852000pt;}
.h3_c01102{height:47.820000pt;}
.h5_c01102{height:51.870507pt;}
.h4_c01102{height:51.875840pt;}
.h2_c01102{height:63.228000pt;}
.h1_c01102{height:1123.333333pt;}
.h0_c01102{height:1123.653333pt;}
.w0_c01102{width:794.550667pt;}
.w1_c01102{width:794.666667pt;}
.x0_c01102{left:0.000000pt;}
.x1_c01102{left:113.385333pt;}
.x6_c01102{left:131.337333pt;}
.x5_c01102{left:142.078667pt;}
.x4_c01102{left:152.405333pt;}
.x3_c01102{left:175.817333pt;}
.x2_c01102{left:225.114667pt;}
}





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

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





.ff0_c01103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01103;src:url('chunks/assets/font_ff0460815d7fb4940b27954c.woff2')format("woff");}.ff1_c01103{font-family:ff1_c01103;line-height:1.001000;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_c01103;src:url('chunks/assets/font_e47ad48c1c0de66b9bc1690a.woff2')format("woff");}.ff2_c01103{font-family:ff2_c01103;line-height:1.001000;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_c01103;src:url('chunks/assets/font_a2299c834f652c44320fd1fa.woff2')format("woff");}.ff3_c01103{font-family:ff3_c01103;line-height:1.001000;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_c01103;src:url('chunks/assets/font_abad70f43c3992f7b60d094e.woff2')format("woff");}.ff4_c01103{font-family:ff4_c01103;line-height:0.697000;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_c01103;src:url('chunks/assets/font_d980769ce693e242627b235d.woff2')format("woff");}.ff5_c01103{font-family:ff5_c01103;line-height:1.000000;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_c01103;src:url('chunks/assets/font_7b493925d39ff1b50518b325.woff2')format("woff");}.ff6_c01103{font-family:ff6_c01103;line-height:0.696000;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_c01103;src:url('chunks/assets/font_787a3e6ff2db065ffcd0cf89.woff2')format("woff");}.ff7_c01103{font-family:ff7_c01103;line-height:1.000000;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_c01103;src:url('chunks/assets/font_dd0481e6ffa92546a3e87c3b.woff2')format("woff");}.ff8_c01103{font-family:ff8_c01103;line-height:1.000000;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_c01103{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);}
.v4_c01103{vertical-align:-21.690000px;}
.v0_c01103{vertical-align:0.000000px;}
.v3_c01103{vertical-align:7.176000px;}
.v1_c01103{vertical-align:17.334000px;}
.v2_c01103{vertical-align:26.028000px;}
.ls2_c01103{letter-spacing:0.000000px;}
.ls0_c01103{letter-spacing:2.999580px;}
.ls1_c01103{letter-spacing:3.004764px;}
.sc__c01103{text-shadow:none;}
.sc0_c01103{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__c01103{-webkit-text-stroke:0px transparent;}
.sc0_c01103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01103{word-spacing:-0.071730px;}
.ws1d_c01103{word-spacing:-0.059778px;}
.ws1f_c01103{word-spacing:0.000000px;}
.wsc_c01103{word-spacing:19.367100px;}
.ws1e_c01103{word-spacing:19.846296px;}
.ws1a_c01103{word-spacing:20.084400px;}
.ws2_c01103{word-spacing:20.371320px;}
.ws19_c01103{word-spacing:20.443050px;}
.ws4_c01103{word-spacing:20.586510px;}
.ws8_c01103{word-spacing:20.945160px;}
.ws10_c01103{word-spacing:21.303810px;}
.ws6_c01103{word-spacing:21.662460px;}
.ws15_c01103{word-spacing:21.805920px;}
.ws5_c01103{word-spacing:22.092840px;}
.ws13_c01103{word-spacing:23.097060px;}
.ws9_c01103{word-spacing:23.312250px;}
.wse_c01103{word-spacing:23.455710px;}
.ws12_c01103{word-spacing:24.603390px;}
.ws16_c01103{word-spacing:24.818580px;}
.ws7_c01103{word-spacing:25.033770px;}
.wsb_c01103{word-spacing:25.966260px;}
.wsf_c01103{word-spacing:26.324910px;}
.ws0_c01103{word-spacing:26.827020px;}
.ws1b_c01103{word-spacing:28.394550px;}
.wsa_c01103{word-spacing:28.907190px;}
.ws1c_c01103{word-spacing:29.171664px;}
.ws14_c01103{word-spacing:29.265840px;}
.ws3_c01103{word-spacing:29.337570px;}
.ws11_c01103{word-spacing:32.350230px;}
.ws18_c01103{word-spacing:32.450652px;}
.ws17_c01103{word-spacing:32.924070px;}
.wsd_c01103{word-spacing:35.004240px;}
._4_c01103{margin-left:-40.455720px;}
._f_c01103{margin-left:-36.223650px;}
._6_c01103{margin-left:-34.932510px;}
._c_c01103{margin-left:-33.569640px;}
._12_c01103{margin-left:-31.241454px;}
._13_c01103{margin-left:-29.817612px;}
._8_c01103{margin-left:-28.692000px;}
._11_c01103{margin-left:-10.761312px;}
._7_c01103{margin-left:-6.599160px;}
._2_c01103{margin-left:-4.447260px;}
._b_c01103{margin-left:-3.443040px;}
._1_c01103{margin-left:-2.295360px;}
._a_c01103{margin-left:-1.004220px;}
._e_c01103{width:1.075950px;}
._3_c01103{width:2.223630px;}
._9_c01103{width:3.586500px;}
._0_c01103{width:10.394160px;}
._d_c01103{width:20.658240px;}
._10_c01103{width:95.200056px;}
._5_c01103{width:1063.904130px;}
.fc0_c01103{color:rgb(0,0,0);}
.fs3_c01103{font-size:41.844000px;}
.fs1_c01103{font-size:47.820000px;}
.fs4_c01103{font-size:59.778000px;}
.fs0_c01103{font-size:71.730000px;}
.fs2_c01103{font-size:86.076000px;}
.y0_c01103{bottom:0.000000px;}
.y25_c01103{bottom:71.973000px;}
.y24_c01103{bottom:95.328000px;}
.y23_c01103{bottom:120.903000px;}
.y22_c01103{bottom:147.795000px;}
.y21_c01103{bottom:182.406000px;}
.y20_c01103{bottom:249.720000px;}
.y1f_c01103{bottom:276.610500px;}
.y1e_c01103{bottom:303.501000px;}
.y1d_c01103{bottom:345.094500px;}
.y1c_c01103{bottom:371.986500px;}
.y1b_c01103{bottom:398.877000px;}
.y1a_c01103{bottom:425.767500px;}
.y19_c01103{bottom:452.658000px;}
.y18_c01103{bottom:479.550000px;}
.y17_c01103{bottom:506.440500px;}
.y16_c01103{bottom:533.331000px;}
.y15_c01103{bottom:574.924500px;}
.y14_c01103{bottom:601.815000px;}
.y13_c01103{bottom:628.705500px;}
.y12_c01103{bottom:655.597500px;}
.y11_c01103{bottom:682.488000px;}
.y10_c01103{bottom:709.378500px;}
.yf_c01103{bottom:736.269000px;}
.ye_c01103{bottom:763.159500px;}
.yd_c01103{bottom:790.051500px;}
.yc_c01103{bottom:816.942000px;}
.yb_c01103{bottom:843.832500px;}
.ya_c01103{bottom:870.723000px;}
.y9_c01103{bottom:912.316500px;}
.y8_c01103{bottom:939.207000px;}
.y7_c01103{bottom:966.099000px;}
.y6_c01103{bottom:992.989500px;}
.y5_c01103{bottom:1019.880000px;}
.y4_c01103{bottom:1046.770500px;}
.y3_c01103{bottom:1073.662500px;}
.y2_c01103{bottom:1140.615000px;}
.y1_c01103{bottom:1162.284000px;}
.h7_c01103{height:28.286544px;}
.h8_c01103{height:44.833500px;}
.h3_c01103{height:53.797500px;}
.h4_c01103{height:58.354320px;}
.h6_c01103{height:64.557000px;}
.h2_c01103{height:71.131500px;}
.h5_c01103{height:71.733000px;}
.h1_c01103{height:1263.750000px;}
.h0_c01103{height:1264.110000px;}
.w0_c01103{width:893.869500px;}
.w1_c01103{width:894.000000px;}
.x0_c01103{left:0.000000px;}
.x1_c01103{left:127.558500px;}
.x8_c01103{left:147.754500px;}
.x5_c01103{left:159.838500px;}
.x4_c01103{left:171.456000px;}
.x3_c01103{left:197.794500px;}
.x2_c01103{left:253.254000px;}
.x6_c01103{left:265.543500px;}
.x7_c01103{left:531.796500px;}
@media print{
.v4_c01103{vertical-align:-19.280000pt;}
.v0_c01103{vertical-align:0.000000pt;}
.v3_c01103{vertical-align:6.378667pt;}
.v1_c01103{vertical-align:15.408000pt;}
.v2_c01103{vertical-align:23.136000pt;}
.ls2_c01103{letter-spacing:0.000000pt;}
.ls0_c01103{letter-spacing:2.666293pt;}
.ls1_c01103{letter-spacing:2.670901pt;}
.ws1_c01103{word-spacing:-0.063760pt;}
.ws1d_c01103{word-spacing:-0.053136pt;}
.ws1f_c01103{word-spacing:0.000000pt;}
.wsc_c01103{word-spacing:17.215200pt;}
.ws1e_c01103{word-spacing:17.641152pt;}
.ws1a_c01103{word-spacing:17.852800pt;}
.ws2_c01103{word-spacing:18.107840pt;}
.ws19_c01103{word-spacing:18.171600pt;}
.ws4_c01103{word-spacing:18.299120pt;}
.ws8_c01103{word-spacing:18.617920pt;}
.ws10_c01103{word-spacing:18.936720pt;}
.ws6_c01103{word-spacing:19.255520pt;}
.ws15_c01103{word-spacing:19.383040pt;}
.ws5_c01103{word-spacing:19.638080pt;}
.ws13_c01103{word-spacing:20.530720pt;}
.ws9_c01103{word-spacing:20.722000pt;}
.wse_c01103{word-spacing:20.849520pt;}
.ws12_c01103{word-spacing:21.869680pt;}
.ws16_c01103{word-spacing:22.060960pt;}
.ws7_c01103{word-spacing:22.252240pt;}
.wsb_c01103{word-spacing:23.081120pt;}
.wsf_c01103{word-spacing:23.399920pt;}
.ws0_c01103{word-spacing:23.846240pt;}
.ws1b_c01103{word-spacing:25.239600pt;}
.wsa_c01103{word-spacing:25.695280pt;}
.ws1c_c01103{word-spacing:25.930368pt;}
.ws14_c01103{word-spacing:26.014080pt;}
.ws3_c01103{word-spacing:26.077840pt;}
.ws11_c01103{word-spacing:28.755760pt;}
.ws18_c01103{word-spacing:28.845024pt;}
.ws17_c01103{word-spacing:29.265840pt;}
.wsd_c01103{word-spacing:31.114880pt;}
._4_c01103{margin-left:-35.960640pt;}
._f_c01103{margin-left:-32.198800pt;}
._6_c01103{margin-left:-31.051120pt;}
._c_c01103{margin-left:-29.839680pt;}
._12_c01103{margin-left:-27.770181pt;}
._13_c01103{margin-left:-26.504544pt;}
._8_c01103{margin-left:-25.504000pt;}
._11_c01103{margin-left:-9.565611pt;}
._7_c01103{margin-left:-5.865920pt;}
._2_c01103{margin-left:-3.953120pt;}
._b_c01103{margin-left:-3.060480pt;}
._1_c01103{margin-left:-2.040320pt;}
._a_c01103{margin-left:-0.892640pt;}
._e_c01103{width:0.956400pt;}
._3_c01103{width:1.976560pt;}
._9_c01103{width:3.188000pt;}
._0_c01103{width:9.239253pt;}
._d_c01103{width:18.362880pt;}
._10_c01103{width:84.622272pt;}
._5_c01103{width:945.692560pt;}
.fs3_c01103{font-size:37.194667pt;}
.fs1_c01103{font-size:42.506667pt;}
.fs4_c01103{font-size:53.136000pt;}
.fs0_c01103{font-size:63.760000pt;}
.fs2_c01103{font-size:76.512000pt;}
.y0_c01103{bottom:0.000000pt;}
.y25_c01103{bottom:63.976000pt;}
.y24_c01103{bottom:84.736000pt;}
.y23_c01103{bottom:107.469333pt;}
.y22_c01103{bottom:131.373333pt;}
.y21_c01103{bottom:162.138667pt;}
.y20_c01103{bottom:221.973333pt;}
.y1f_c01103{bottom:245.876000pt;}
.y1e_c01103{bottom:269.778667pt;}
.y1d_c01103{bottom:306.750667pt;}
.y1c_c01103{bottom:330.654667pt;}
.y1b_c01103{bottom:354.557333pt;}
.y1a_c01103{bottom:378.460000pt;}
.y19_c01103{bottom:402.362667pt;}
.y18_c01103{bottom:426.266667pt;}
.y17_c01103{bottom:450.169333pt;}
.y16_c01103{bottom:474.072000pt;}
.y15_c01103{bottom:511.044000pt;}
.y14_c01103{bottom:534.946667pt;}
.y13_c01103{bottom:558.849333pt;}
.y12_c01103{bottom:582.753333pt;}
.y11_c01103{bottom:606.656000pt;}
.y10_c01103{bottom:630.558667pt;}
.yf_c01103{bottom:654.461333pt;}
.ye_c01103{bottom:678.364000pt;}
.yd_c01103{bottom:702.268000pt;}
.yc_c01103{bottom:726.170667pt;}
.yb_c01103{bottom:750.073333pt;}
.ya_c01103{bottom:773.976000pt;}
.y9_c01103{bottom:810.948000pt;}
.y8_c01103{bottom:834.850667pt;}
.y7_c01103{bottom:858.754667pt;}
.y6_c01103{bottom:882.657333pt;}
.y5_c01103{bottom:906.560000pt;}
.y4_c01103{bottom:930.462667pt;}
.y3_c01103{bottom:954.366667pt;}
.y2_c01103{bottom:1013.880000pt;}
.y1_c01103{bottom:1033.141333pt;}
.h7_c01103{height:25.143595pt;}
.h8_c01103{height:39.852000pt;}
.h3_c01103{height:47.820000pt;}
.h4_c01103{height:51.870507pt;}
.h6_c01103{height:57.384000pt;}
.h2_c01103{height:63.228000pt;}
.h5_c01103{height:63.762667pt;}
.h1_c01103{height:1123.333333pt;}
.h0_c01103{height:1123.653333pt;}
.w0_c01103{width:794.550667pt;}
.w1_c01103{width:794.666667pt;}
.x0_c01103{left:0.000000pt;}
.x1_c01103{left:113.385333pt;}
.x8_c01103{left:131.337333pt;}
.x5_c01103{left:142.078667pt;}
.x4_c01103{left:152.405333pt;}
.x3_c01103{left:175.817333pt;}
.x2_c01103{left:225.114667pt;}
.x6_c01103{left:236.038667pt;}
.x7_c01103{left:472.708000pt;}
}





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

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





.ff0_c01104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01104;src:url('chunks/assets/font_ff0460815d7fb4940b27954c.woff2')format("woff");}.ff1_c01104{font-family:ff1_c01104;line-height:1.001000;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_c01104;src:url('chunks/assets/font_9056fa7cb7ffaf095074de19.woff2')format("woff");}.ff2_c01104{font-family:ff2_c01104;line-height:1.001000;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_c01104;src:url('chunks/assets/font_667c46b9675d3cfe2361ec26.woff2')format("woff");}.ff3_c01104{font-family:ff3_c01104;line-height:1.001000;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_c01104;src:url('chunks/assets/font_abad70f43c3992f7b60d094e.woff2')format("woff");}.ff4_c01104{font-family:ff4_c01104;line-height:0.697000;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_c01104;src:url('chunks/assets/font_7b493925d39ff1b50518b325.woff2')format("woff");}.ff5_c01104{font-family:ff5_c01104;line-height:0.696000;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_c01104;src:url('chunks/assets/font_a95f2fa486a4e31eb252bd0d.woff2')format("woff");}.ff6_c01104{font-family:ff6_c01104;line-height:1.000000;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_c01104;src:url('chunks/assets/font_c0cfcab6acffa2d6218d7f1c.woff2')format("woff");}.ff7_c01104{font-family:ff7_c01104;line-height:1.000000;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_c01104{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);}
.v3_c01104{vertical-align:-21.696000px;}
.v0_c01104{vertical-align:0.000000px;}
.v1_c01104{vertical-align:17.334000px;}
.v2_c01104{vertical-align:26.028000px;}
.ls2_c01104{letter-spacing:0.000000px;}
.ls0_c01104{letter-spacing:2.999580px;}
.ls1_c01104{letter-spacing:3.004764px;}
.sc__c01104{text-shadow:none;}
.sc0_c01104{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__c01104{-webkit-text-stroke:0px transparent;}
.sc0_c01104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01104{word-spacing:-0.071730px;}
.ws20_c01104{word-spacing:0.000000px;}
.ws1c_c01104{word-spacing:19.188738px;}
.ws4_c01104{word-spacing:19.725750px;}
.ws1f_c01104{word-spacing:19.846296px;}
.wsb_c01104{word-spacing:19.940940px;}
.ws13_c01104{word-spacing:20.012670px;}
.wsc_c01104{word-spacing:20.443050px;}
.ws1d_c01104{word-spacing:20.742966px;}
.ws9_c01104{word-spacing:21.232080px;}
.ws1e_c01104{word-spacing:21.340746px;}
.ws1b_c01104{word-spacing:22.236300px;}
.ws2_c01104{word-spacing:22.451490px;}
.ws3_c01104{word-spacing:23.168790px;}
.wsd_c01104{word-spacing:23.312250px;}
.ws6_c01104{word-spacing:23.383980px;}
.ws5_c01104{word-spacing:23.527440px;}
.ws19_c01104{word-spacing:23.957820px;}
.wse_c01104{word-spacing:24.316470px;}
.wsf_c01104{word-spacing:25.105500px;}
.ws18_c01104{word-spacing:25.392420px;}
.ws12_c01104{word-spacing:25.822800px;}
.ws0_c01104{word-spacing:26.827020px;}
.ws17_c01104{word-spacing:27.042210px;}
.ws11_c01104{word-spacing:27.329130px;}
.ws10_c01104{word-spacing:27.687780px;}
.ws16_c01104{word-spacing:28.118160px;}
.ws14_c01104{word-spacing:28.189890px;}
.ws7_c01104{word-spacing:29.337570px;}
.ws15_c01104{word-spacing:29.481030px;}
.ws1a_c01104{word-spacing:32.278500px;}
.wsa_c01104{word-spacing:33.210990px;}
.ws8_c01104{word-spacing:33.784830px;}
._4_c01104{margin-left:-40.455720px;}
._a_c01104{margin-left:-37.586520px;}
._6_c01104{margin-left:-35.793270px;}
._12_c01104{margin-left:-34.573860px;}
._11_c01104{margin-left:-33.210990px;}
._15_c01104{margin-left:-30.616854px;}
._d_c01104{margin-left:-29.265840px;}
._9_c01104{margin-left:-27.329130px;}
._8_c01104{margin-left:-7.531650px;}
._c_c01104{margin-left:-5.666670px;}
._2_c01104{margin-left:-4.447260px;}
._e_c01104{margin-left:-3.299580px;}
._1_c01104{margin-left:-2.295360px;}
._10_c01104{margin-left:-1.075950px;}
._7_c01104{width:1.004220px;}
._3_c01104{width:2.223630px;}
._b_c01104{width:3.586500px;}
._f_c01104{width:5.557770px;}
._0_c01104{width:10.394160px;}
._13_c01104{width:25.822800px;}
._14_c01104{width:33.851880px;}
._5_c01104{width:1063.904130px;}
.fc0_c01104{color:rgb(0,0,0);}
.fs2_c01104{font-size:41.844000px;}
.fs1_c01104{font-size:47.820000px;}
.fs3_c01104{font-size:59.778000px;}
.fs0_c01104{font-size:71.730000px;}
.y0_c01104{bottom:0.000000px;}
.y24_c01104{bottom:97.281000px;}
.y23_c01104{bottom:120.637500px;}
.y22_c01104{bottom:147.393000px;}
.y21_c01104{bottom:174.283500px;}
.y20_c01104{bottom:201.174000px;}
.y1f_c01104{bottom:228.066000px;}
.y1e_c01104{bottom:272.889000px;}
.y1d_c01104{bottom:299.779500px;}
.y1c_c01104{bottom:326.671500px;}
.y1b_c01104{bottom:353.562000px;}
.y1a_c01104{bottom:380.452500px;}
.y19_c01104{bottom:407.343000px;}
.y18_c01104{bottom:434.235000px;}
.y17_c01104{bottom:461.125500px;}
.y16_c01104{bottom:488.016000px;}
.y15_c01104{bottom:514.906500px;}
.y14_c01104{bottom:559.731000px;}
.y13_c01104{bottom:586.621500px;}
.y12_c01104{bottom:613.512000px;}
.y11_c01104{bottom:640.402500px;}
.y10_c01104{bottom:667.294500px;}
.yf_c01104{bottom:694.185000px;}
.ye_c01104{bottom:721.075500px;}
.yd_c01104{bottom:767.394000px;}
.yc_c01104{bottom:794.284500px;}
.yb_c01104{bottom:821.175000px;}
.ya_c01104{bottom:848.065500px;}
.y9_c01104{bottom:874.957500px;}
.y8_c01104{bottom:921.274500px;}
.y7_c01104{bottom:948.166500px;}
.y6_c01104{bottom:975.057000px;}
.y5_c01104{bottom:1001.947500px;}
.y4_c01104{bottom:1046.770500px;}
.y3_c01104{bottom:1073.662500px;}
.y2_c01104{bottom:1140.615000px;}
.y1_c01104{bottom:1162.284000px;}
.h5_c01104{height:28.286544px;}
.h6_c01104{height:44.833500px;}
.h3_c01104{height:53.797500px;}
.h4_c01104{height:58.354320px;}
.h2_c01104{height:71.131500px;}
.h1_c01104{height:1263.750000px;}
.h0_c01104{height:1264.110000px;}
.w0_c01104{width:893.869500px;}
.w1_c01104{width:894.000000px;}
.x0_c01104{left:0.000000px;}
.x1_c01104{left:127.558500px;}
.x6_c01104{left:147.754500px;}
.x3_c01104{left:159.838500px;}
.x5_c01104{left:171.456000px;}
.x4_c01104{left:197.794500px;}
.x2_c01104{left:253.254000px;}
@media print{
.v3_c01104{vertical-align:-19.285333pt;}
.v0_c01104{vertical-align:0.000000pt;}
.v1_c01104{vertical-align:15.408000pt;}
.v2_c01104{vertical-align:23.136000pt;}
.ls2_c01104{letter-spacing:0.000000pt;}
.ls0_c01104{letter-spacing:2.666293pt;}
.ls1_c01104{letter-spacing:2.670901pt;}
.ws1_c01104{word-spacing:-0.063760pt;}
.ws20_c01104{word-spacing:0.000000pt;}
.ws1c_c01104{word-spacing:17.056656pt;}
.ws4_c01104{word-spacing:17.534000pt;}
.ws1f_c01104{word-spacing:17.641152pt;}
.wsb_c01104{word-spacing:17.725280pt;}
.ws13_c01104{word-spacing:17.789040pt;}
.wsc_c01104{word-spacing:18.171600pt;}
.ws1d_c01104{word-spacing:18.438192pt;}
.ws9_c01104{word-spacing:18.872960pt;}
.ws1e_c01104{word-spacing:18.969552pt;}
.ws1b_c01104{word-spacing:19.765600pt;}
.ws2_c01104{word-spacing:19.956880pt;}
.ws3_c01104{word-spacing:20.594480pt;}
.wsd_c01104{word-spacing:20.722000pt;}
.ws6_c01104{word-spacing:20.785760pt;}
.ws5_c01104{word-spacing:20.913280pt;}
.ws19_c01104{word-spacing:21.295840pt;}
.wse_c01104{word-spacing:21.614640pt;}
.wsf_c01104{word-spacing:22.316000pt;}
.ws18_c01104{word-spacing:22.571040pt;}
.ws12_c01104{word-spacing:22.953600pt;}
.ws0_c01104{word-spacing:23.846240pt;}
.ws17_c01104{word-spacing:24.037520pt;}
.ws11_c01104{word-spacing:24.292560pt;}
.ws10_c01104{word-spacing:24.611360pt;}
.ws16_c01104{word-spacing:24.993920pt;}
.ws14_c01104{word-spacing:25.057680pt;}
.ws7_c01104{word-spacing:26.077840pt;}
.ws15_c01104{word-spacing:26.205360pt;}
.ws1a_c01104{word-spacing:28.692000pt;}
.wsa_c01104{word-spacing:29.520880pt;}
.ws8_c01104{word-spacing:30.030960pt;}
._4_c01104{margin-left:-35.960640pt;}
._a_c01104{margin-left:-33.410240pt;}
._6_c01104{margin-left:-31.816240pt;}
._12_c01104{margin-left:-30.732320pt;}
._11_c01104{margin-left:-29.520880pt;}
._15_c01104{margin-left:-27.214981pt;}
._d_c01104{margin-left:-26.014080pt;}
._9_c01104{margin-left:-24.292560pt;}
._8_c01104{margin-left:-6.694800pt;}
._c_c01104{margin-left:-5.037040pt;}
._2_c01104{margin-left:-3.953120pt;}
._e_c01104{margin-left:-2.932960pt;}
._1_c01104{margin-left:-2.040320pt;}
._10_c01104{margin-left:-0.956400pt;}
._7_c01104{width:0.892640pt;}
._3_c01104{width:1.976560pt;}
._b_c01104{width:3.188000pt;}
._f_c01104{width:4.940240pt;}
._0_c01104{width:9.239253pt;}
._13_c01104{width:22.953600pt;}
._14_c01104{width:30.090560pt;}
._5_c01104{width:945.692560pt;}
.fs2_c01104{font-size:37.194667pt;}
.fs1_c01104{font-size:42.506667pt;}
.fs3_c01104{font-size:53.136000pt;}
.fs0_c01104{font-size:63.760000pt;}
.y0_c01104{bottom:0.000000pt;}
.y24_c01104{bottom:86.472000pt;}
.y23_c01104{bottom:107.233333pt;}
.y22_c01104{bottom:131.016000pt;}
.y21_c01104{bottom:154.918667pt;}
.y20_c01104{bottom:178.821333pt;}
.y1f_c01104{bottom:202.725333pt;}
.y1e_c01104{bottom:242.568000pt;}
.y1d_c01104{bottom:266.470667pt;}
.y1c_c01104{bottom:290.374667pt;}
.y1b_c01104{bottom:314.277333pt;}
.y1a_c01104{bottom:338.180000pt;}
.y19_c01104{bottom:362.082667pt;}
.y18_c01104{bottom:385.986667pt;}
.y17_c01104{bottom:409.889333pt;}
.y16_c01104{bottom:433.792000pt;}
.y15_c01104{bottom:457.694667pt;}
.y14_c01104{bottom:497.538667pt;}
.y13_c01104{bottom:521.441333pt;}
.y12_c01104{bottom:545.344000pt;}
.y11_c01104{bottom:569.246667pt;}
.y10_c01104{bottom:593.150667pt;}
.yf_c01104{bottom:617.053333pt;}
.ye_c01104{bottom:640.956000pt;}
.yd_c01104{bottom:682.128000pt;}
.yc_c01104{bottom:706.030667pt;}
.yb_c01104{bottom:729.933333pt;}
.ya_c01104{bottom:753.836000pt;}
.y9_c01104{bottom:777.740000pt;}
.y8_c01104{bottom:818.910667pt;}
.y7_c01104{bottom:842.814667pt;}
.y6_c01104{bottom:866.717333pt;}
.y5_c01104{bottom:890.620000pt;}
.y4_c01104{bottom:930.462667pt;}
.y3_c01104{bottom:954.366667pt;}
.y2_c01104{bottom:1013.880000pt;}
.y1_c01104{bottom:1033.141333pt;}
.h5_c01104{height:25.143595pt;}
.h6_c01104{height:39.852000pt;}
.h3_c01104{height:47.820000pt;}
.h4_c01104{height:51.870507pt;}
.h2_c01104{height:63.228000pt;}
.h1_c01104{height:1123.333333pt;}
.h0_c01104{height:1123.653333pt;}
.w0_c01104{width:794.550667pt;}
.w1_c01104{width:794.666667pt;}
.x0_c01104{left:0.000000pt;}
.x1_c01104{left:113.385333pt;}
.x6_c01104{left:131.337333pt;}
.x3_c01104{left:142.078667pt;}
.x5_c01104{left:152.405333pt;}
.x4_c01104{left:175.817333pt;}
.x2_c01104{left:225.114667pt;}
}





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

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





.ff0_c01105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01105;src:url('chunks/assets/font_1bcc760685c3adbce4417315.woff2')format("woff");}.ff1_c01105{font-family:ff1_c01105;line-height:1.001000;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_c01105;src:url('chunks/assets/font_3bd3ebee19ad3bece3c3b1b7.woff2')format("woff");}.ff2_c01105{font-family:ff2_c01105;line-height:1.001000;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_c01105;src:url('chunks/assets/font_9e65e61bbce78ce8e617e393.woff2')format("woff");}.ff3_c01105{font-family:ff3_c01105;line-height:1.000000;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_c01105{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_c01105{vertical-align:0.000000px;}
.v1_c01105{vertical-align:17.334000px;}
.ls0_c01105{letter-spacing:0.000000px;}
.sc__c01105{text-shadow:none;}
.sc0_c01105{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__c01105{-webkit-text-stroke:0px transparent;}
.sc0_c01105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01105{word-spacing:-0.071730px;}
.ws11_c01105{word-spacing:0.000000px;}
.ws5_c01105{word-spacing:19.510560px;}
.ws8_c01105{word-spacing:20.729970px;}
.wsf_c01105{word-spacing:21.949380px;}
.ws9_c01105{word-spacing:23.312250px;}
.wsb_c01105{word-spacing:24.746850px;}
.ws10_c01105{word-spacing:25.177230px;}
.wse_c01105{word-spacing:25.679340px;}
.wsd_c01105{word-spacing:26.683560px;}
.ws0_c01105{word-spacing:26.827020px;}
.ws6_c01105{word-spacing:28.189890px;}
.ws7_c01105{word-spacing:28.907190px;}
.wsc_c01105{word-spacing:30.054870px;}
.wsa_c01105{word-spacing:30.413520px;}
.ws3_c01105{word-spacing:32.278500px;}
.ws2_c01105{word-spacing:32.450652px;}
.ws4_c01105{word-spacing:33.497910px;}
._4_c01105{margin-left:-40.455720px;}
._a_c01105{margin-left:-37.371330px;}
._9_c01105{margin-left:-35.291160px;}
._d_c01105{margin-left:-33.210990px;}
._8_c01105{margin-left:-27.400860px;}
._7_c01105{margin-left:-7.244730px;}
._2_c01105{margin-left:-4.447260px;}
._1_c01105{margin-left:-2.295360px;}
._b_c01105{margin-left:-1.004220px;}
._3_c01105{width:2.223630px;}
._c_c01105{width:3.729960px;}
._0_c01105{width:10.394160px;}
._6_c01105{width:95.200056px;}
._5_c01105{width:1063.904130px;}
.fc0_c01105{color:rgb(0,0,0);}
.fs0_c01105{font-size:71.730000px;}
.fs1_c01105{font-size:86.076000px;}
.y0_c01105{bottom:0.000000px;}
.y12_c01105{bottom:661.681500px;}
.y11_c01105{bottom:688.572000px;}
.y10_c01105{bottom:715.464000px;}
.yf_c01105{bottom:742.354500px;}
.ye_c01105{bottom:769.245000px;}
.yd_c01105{bottom:796.135500px;}
.yc_c01105{bottom:823.026000px;}
.yb_c01105{bottom:849.918000px;}
.ya_c01105{bottom:876.808500px;}
.y9_c01105{bottom:903.699000px;}
.y8_c01105{bottom:930.589500px;}
.y7_c01105{bottom:957.481500px;}
.y6_c01105{bottom:984.372000px;}
.y5_c01105{bottom:1011.262500px;}
.y4_c01105{bottom:1038.153000px;}
.y3_c01105{bottom:1072.765500px;}
.y2_c01105{bottom:1140.615000px;}
.y1_c01105{bottom:1162.284000px;}
.h3_c01105{height:53.797500px;}
.h4_c01105{height:64.557000px;}
.h2_c01105{height:71.131500px;}
.h1_c01105{height:1263.750000px;}
.h0_c01105{height:1264.110000px;}
.w0_c01105{width:893.869500px;}
.w1_c01105{width:894.000000px;}
.x0_c01105{left:0.000000px;}
.x1_c01105{left:127.558500px;}
.x3_c01105{left:159.838500px;}
.x2_c01105{left:253.254000px;}
@media print{
.v0_c01105{vertical-align:0.000000pt;}
.v1_c01105{vertical-align:15.408000pt;}
.ls0_c01105{letter-spacing:0.000000pt;}
.ws1_c01105{word-spacing:-0.063760pt;}
.ws11_c01105{word-spacing:0.000000pt;}
.ws5_c01105{word-spacing:17.342720pt;}
.ws8_c01105{word-spacing:18.426640pt;}
.wsf_c01105{word-spacing:19.510560pt;}
.ws9_c01105{word-spacing:20.722000pt;}
.wsb_c01105{word-spacing:21.997200pt;}
.ws10_c01105{word-spacing:22.379760pt;}
.wse_c01105{word-spacing:22.826080pt;}
.wsd_c01105{word-spacing:23.718720pt;}
.ws0_c01105{word-spacing:23.846240pt;}
.ws6_c01105{word-spacing:25.057680pt;}
.ws7_c01105{word-spacing:25.695280pt;}
.wsc_c01105{word-spacing:26.715440pt;}
.wsa_c01105{word-spacing:27.034240pt;}
.ws3_c01105{word-spacing:28.692000pt;}
.ws2_c01105{word-spacing:28.845024pt;}
.ws4_c01105{word-spacing:29.775920pt;}
._4_c01105{margin-left:-35.960640pt;}
._a_c01105{margin-left:-33.218960pt;}
._9_c01105{margin-left:-31.369920pt;}
._d_c01105{margin-left:-29.520880pt;}
._8_c01105{margin-left:-24.356320pt;}
._7_c01105{margin-left:-6.439760pt;}
._2_c01105{margin-left:-3.953120pt;}
._1_c01105{margin-left:-2.040320pt;}
._b_c01105{margin-left:-0.892640pt;}
._3_c01105{width:1.976560pt;}
._c_c01105{width:3.315520pt;}
._0_c01105{width:9.239253pt;}
._6_c01105{width:84.622272pt;}
._5_c01105{width:945.692560pt;}
.fs0_c01105{font-size:63.760000pt;}
.fs1_c01105{font-size:76.512000pt;}
.y0_c01105{bottom:0.000000pt;}
.y12_c01105{bottom:588.161333pt;}
.y11_c01105{bottom:612.064000pt;}
.y10_c01105{bottom:635.968000pt;}
.yf_c01105{bottom:659.870667pt;}
.ye_c01105{bottom:683.773333pt;}
.yd_c01105{bottom:707.676000pt;}
.yc_c01105{bottom:731.578667pt;}
.yb_c01105{bottom:755.482667pt;}
.ya_c01105{bottom:779.385333pt;}
.y9_c01105{bottom:803.288000pt;}
.y8_c01105{bottom:827.190667pt;}
.y7_c01105{bottom:851.094667pt;}
.y6_c01105{bottom:874.997333pt;}
.y5_c01105{bottom:898.900000pt;}
.y4_c01105{bottom:922.802667pt;}
.y3_c01105{bottom:953.569333pt;}
.y2_c01105{bottom:1013.880000pt;}
.y1_c01105{bottom:1033.141333pt;}
.h3_c01105{height:47.820000pt;}
.h4_c01105{height:57.384000pt;}
.h2_c01105{height:63.228000pt;}
.h1_c01105{height:1123.333333pt;}
.h0_c01105{height:1123.653333pt;}
.w0_c01105{width:794.550667pt;}
.w1_c01105{width:794.666667pt;}
.x0_c01105{left:0.000000pt;}
.x1_c01105{left:113.385333pt;}
.x3_c01105{left:142.078667pt;}
.x2_c01105{left:225.114667pt;}
}





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

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





.ff0_c01106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01106;src:url('chunks/assets/font_94693fd7a208c336797f9aeb.woff2')format("woff");}.ff1_c01106{font-family:ff1_c01106;line-height:1.001000;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_c01106;src:url('chunks/assets/font_5bdf3d981ec260ab0869239c.woff2')format("woff");}.ff2_c01106{font-family:ff2_c01106;line-height:1.000000;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_c01106;src:url('chunks/assets/font_d5e07bc8ec8a041f1b7a3f97.woff2')format("woff");}.ff3_c01106{font-family:ff3_c01106;line-height:1.001000;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_c01106{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_c01106{vertical-align:0.000000px;}
.v1_c01106{vertical-align:5.976000px;}
.ls0_c01106{letter-spacing:0.000000px;}
.sc__c01106{text-shadow:none;}
.sc0_c01106{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__c01106{-webkit-text-stroke:0px transparent;}
.sc0_c01106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c01106{word-spacing:-0.071730px;}
.ws13_c01106{word-spacing:0.000000px;}
.wsf_c01106{word-spacing:19.725750px;}
.ws10_c01106{word-spacing:19.869210px;}
.wsd_c01106{word-spacing:21.590730px;}
.ws4_c01106{word-spacing:23.312250px;}
.ws9_c01106{word-spacing:23.383980px;}
.wse_c01106{word-spacing:23.599170px;}
.ws11_c01106{word-spacing:24.459930px;}
.ws3_c01106{word-spacing:26.970480px;}
.wsb_c01106{word-spacing:27.042210px;}
.wsc_c01106{word-spacing:27.974700px;}
.ws8_c01106{word-spacing:28.620270px;}
.ws12_c01106{word-spacing:28.835460px;}
.ws6_c01106{word-spacing:29.194110px;}
.ws2_c01106{word-spacing:32.450652px;}
.ws5_c01106{word-spacing:32.493690px;}
.ws0_c01106{word-spacing:55.473306px;}
.ws1_c01106{word-spacing:55.622028px;}
.wsa_c01106{word-spacing:79.261650px;}
._3_c01106{margin-left:-82.540710px;}
._1_c01106{margin-left:-65.140236px;}
._b_c01106{margin-left:-37.012680px;}
._8_c01106{margin-left:-35.219430px;}
._10_c01106{margin-left:-34.187514px;}
._f_c01106{margin-left:-32.623302px;}
._a_c01106{margin-left:-27.400860px;}
._0_c01106{margin-left:-18.738972px;}
._9_c01106{margin-left:-8.563566px;}
._5_c01106{margin-left:-7.488612px;}
._c_c01106{margin-left:-6.240510px;}
._e_c01106{margin-left:-2.681706px;}
._2_c01106{margin-left:-1.635942px;}
._7_c01106{width:1.864980px;}
._d_c01106{width:3.873420px;}
._6_c01106{width:79.333380px;}
._4_c01106{width:95.200056px;}
.fc0_c01106{color:rgb(0,0,0);}
.fs2_c01106{font-size:71.730000px;}
.fs1_c01106{font-size:86.076000px;}
.fs0_c01106{font-size:148.722000px;}
.y0_c01106{bottom:0.000000px;}
.y18_c01106{bottom:40.083000px;}
.y17_c01106{bottom:94.366500px;}
.y16_c01106{bottom:121.257000px;}
.y15_c01106{bottom:148.147500px;}
.y14_c01106{bottom:175.038000px;}
.y13_c01106{bottom:201.930000px;}
.y12_c01106{bottom:228.820500px;}
.y11_c01106{bottom:255.711000px;}
.y10_c01106{bottom:282.601500px;}
.yf_c01106{bottom:309.492000px;}
.ye_c01106{bottom:344.104500px;}
.yd_c01106{bottom:400.393500px;}
.yc_c01106{bottom:427.284000px;}
.yb_c01106{bottom:454.176000px;}
.ya_c01106{bottom:481.066500px;}
.y9_c01106{bottom:507.957000px;}
.y8_c01106{bottom:534.847500px;}
.y7_c01106{bottom:561.738000px;}
.y6_c01106{bottom:588.630000px;}
.y5_c01106{bottom:623.241000px;}
.y4_c01106{bottom:682.594500px;}
.y3_c01106{bottom:802.146000px;}
.y2_c01106{bottom:857.782500px;}
.y1_c01106{bottom:943.306500px;}
.h4_c01106{height:53.797500px;}
.h5_c01106{height:59.773500px;}
.h3_c01106{height:64.557000px;}
.h2_c01106{height:111.541500px;}
.h1_c01106{height:1263.750000px;}
.h0_c01106{height:1264.110000px;}
.w0_c01106{width:893.869500px;}
.w1_c01106{width:894.000000px;}
.x0_c01106{left:0.000000px;}
.x1_c01106{left:127.558500px;}
.x2_c01106{left:159.838500px;}
.x3_c01106{left:275.742000px;}
.x4_c01106{left:433.765500px;}
@media print{
.v0_c01106{vertical-align:0.000000pt;}
.v1_c01106{vertical-align:5.312000pt;}
.ls0_c01106{letter-spacing:0.000000pt;}
.ws7_c01106{word-spacing:-0.063760pt;}
.ws13_c01106{word-spacing:0.000000pt;}
.wsf_c01106{word-spacing:17.534000pt;}
.ws10_c01106{word-spacing:17.661520pt;}
.wsd_c01106{word-spacing:19.191760pt;}
.ws4_c01106{word-spacing:20.722000pt;}
.ws9_c01106{word-spacing:20.785760pt;}
.wse_c01106{word-spacing:20.977040pt;}
.ws11_c01106{word-spacing:21.742160pt;}
.ws3_c01106{word-spacing:23.973760pt;}
.wsb_c01106{word-spacing:24.037520pt;}
.wsc_c01106{word-spacing:24.866400pt;}
.ws8_c01106{word-spacing:25.440240pt;}
.ws12_c01106{word-spacing:25.631520pt;}
.ws6_c01106{word-spacing:25.950320pt;}
.ws2_c01106{word-spacing:28.845024pt;}
.ws5_c01106{word-spacing:28.883280pt;}
.ws0_c01106{word-spacing:49.309605pt;}
.ws1_c01106{word-spacing:49.441803pt;}
.wsa_c01106{word-spacing:70.454800pt;}
._3_c01106{margin-left:-73.369520pt;}
._1_c01106{margin-left:-57.902432pt;}
._b_c01106{margin-left:-32.900160pt;}
._8_c01106{margin-left:-31.306160pt;}
._10_c01106{margin-left:-30.388901pt;}
._f_c01106{margin-left:-28.998491pt;}
._a_c01106{margin-left:-24.356320pt;}
._0_c01106{margin-left:-16.656864pt;}
._9_c01106{margin-left:-7.612059pt;}
._5_c01106{margin-left:-6.656544pt;}
._c_c01106{margin-left:-5.547120pt;}
._e_c01106{margin-left:-2.383739pt;}
._2_c01106{margin-left:-1.454171pt;}
._7_c01106{width:1.657760pt;}
._d_c01106{width:3.443040pt;}
._6_c01106{width:70.518560pt;}
._4_c01106{width:84.622272pt;}
.fs2_c01106{font-size:63.760000pt;}
.fs1_c01106{font-size:76.512000pt;}
.fs0_c01106{font-size:132.197333pt;}
.y0_c01106{bottom:0.000000pt;}
.y18_c01106{bottom:35.629333pt;}
.y17_c01106{bottom:83.881333pt;}
.y16_c01106{bottom:107.784000pt;}
.y15_c01106{bottom:131.686667pt;}
.y14_c01106{bottom:155.589333pt;}
.y13_c01106{bottom:179.493333pt;}
.y12_c01106{bottom:203.396000pt;}
.y11_c01106{bottom:227.298667pt;}
.y10_c01106{bottom:251.201333pt;}
.yf_c01106{bottom:275.104000pt;}
.ye_c01106{bottom:305.870667pt;}
.yd_c01106{bottom:355.905333pt;}
.yc_c01106{bottom:379.808000pt;}
.yb_c01106{bottom:403.712000pt;}
.ya_c01106{bottom:427.614667pt;}
.y9_c01106{bottom:451.517333pt;}
.y8_c01106{bottom:475.420000pt;}
.y7_c01106{bottom:499.322667pt;}
.y6_c01106{bottom:523.226667pt;}
.y5_c01106{bottom:553.992000pt;}
.y4_c01106{bottom:606.750667pt;}
.y3_c01106{bottom:713.018667pt;}
.y2_c01106{bottom:762.473333pt;}
.y1_c01106{bottom:838.494667pt;}
.h4_c01106{height:47.820000pt;}
.h5_c01106{height:53.132000pt;}
.h3_c01106{height:57.384000pt;}
.h2_c01106{height:99.148000pt;}
.h1_c01106{height:1123.333333pt;}
.h0_c01106{height:1123.653333pt;}
.w0_c01106{width:794.550667pt;}
.w1_c01106{width:794.666667pt;}
.x0_c01106{left:0.000000pt;}
.x1_c01106{left:113.385333pt;}
.x2_c01106{left:142.078667pt;}
.x3_c01106{left:245.104000pt;}
.x4_c01106{left:385.569333pt;}
}





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

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





.ff0_c01107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01107;src:url('chunks/assets/font_0c91a37df154dd3e9f5941ed.woff2')format("woff");}.ff1_c01107{font-family:ff1_c01107;line-height:1.001000;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_c01107;src:url('chunks/assets/font_dccff7b2e422944e960ebb64.woff2')format("woff");}.ff2_c01107{font-family:ff2_c01107;line-height:1.001000;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_c01107;src:url('chunks/assets/font_bd1ea7dacfbb30dcef682df5.woff2')format("woff");}.ff3_c01107{font-family:ff3_c01107;line-height:1.001000;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_c01107;src:url('chunks/assets/font_ef8aeb5dea5433d6e2f3648e.woff2')format("woff");}.ff4_c01107{font-family:ff4_c01107;line-height:0.697000;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_c01107;src:url('chunks/assets/font_f816122d9a1f142ad64e8f27.woff2')format("woff");}.ff5_c01107{font-family:ff5_c01107;line-height:0.696000;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_c01107;src:url('chunks/assets/font_70598a72c42215039f24d6ac.woff2')format("woff");}.ff6_c01107{font-family:ff6_c01107;line-height:1.000000;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_c01107;src:url('chunks/assets/font_9e1ba44eb68ef625c7c3af1f.woff2')format("woff");}.ff7_c01107{font-family:ff7_c01107;line-height:1.000000;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_c01107{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);}
.v3_c01107{vertical-align:-21.696000px;}
.v0_c01107{vertical-align:0.000000px;}
.v4_c01107{vertical-align:15.108000px;}
.v2_c01107{vertical-align:18.132000px;}
.v1_c01107{vertical-align:26.034000px;}
.ls6_c01107{letter-spacing:0.000000px;}
.ls1_c01107{letter-spacing:2.999580px;}
.ls4_c01107{letter-spacing:3.004764px;}
.ls5_c01107{letter-spacing:7.456716px;}
.ls0_c01107{letter-spacing:25.109580px;}
.ls3_c01107{letter-spacing:26.411580px;}
.ls2_c01107{letter-spacing:36.863580px;}
.sc__c01107{text-shadow:none;}
.sc0_c01107{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__c01107{-webkit-text-stroke:0px transparent;}
.sc0_c01107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01107{word-spacing:-0.071730px;}
.ws20_c01107{word-spacing:-0.059778px;}
.ws23_c01107{word-spacing:0.000000px;}
.ws10_c01107{word-spacing:17.789040px;}
.ws1a_c01107{word-spacing:18.004230px;}
.ws1e_c01107{word-spacing:19.846296px;}
.ws1f_c01107{word-spacing:21.280968px;}
.ws1c_c01107{word-spacing:21.805920px;}
.ws4_c01107{word-spacing:22.021110px;}
.wsd_c01107{word-spacing:22.308030px;}
.ws18_c01107{word-spacing:22.523220px;}
.ws6_c01107{word-spacing:23.312250px;}
.ws22_c01107{word-spacing:23.373198px;}
.ws21_c01107{word-spacing:23.432976px;}
.ws5_c01107{word-spacing:23.814360px;}
.ws16_c01107{word-spacing:24.029550px;}
.ws3_c01107{word-spacing:24.388200px;}
.ws14_c01107{word-spacing:24.818580px;}
.wsc_c01107{word-spacing:25.033770px;}
.ws17_c01107{word-spacing:25.751070px;}
.ws8_c01107{word-spacing:26.181450px;}
.ws9_c01107{word-spacing:26.540100px;}
.ws1d_c01107{word-spacing:26.755290px;}
.ws0_c01107{word-spacing:26.827020px;}
.wsf_c01107{word-spacing:26.898750px;}
.ws7_c01107{word-spacing:27.042210px;}
.ws19_c01107{word-spacing:27.329130px;}
.ws1b_c01107{word-spacing:27.974700px;}
.ws13_c01107{word-spacing:29.122380px;}
.ws2_c01107{word-spacing:29.911410px;}
.wsa_c01107{word-spacing:30.687120px;}
.ws15_c01107{word-spacing:31.632930px;}
.wsb_c01107{word-spacing:31.776390px;}
.wse_c01107{word-spacing:32.135040px;}
.ws12_c01107{word-spacing:33.784830px;}
.ws11_c01107{word-spacing:34.645590px;}
._0_c01107{margin-left:-40.670910px;}
._7_c01107{margin-left:-37.449990px;}
._d_c01107{margin-left:-36.080190px;}
._4_c01107{margin-left:-34.932510px;}
._e_c01107{margin-left:-32.278500px;}
._11_c01107{margin-left:-31.001682px;}
._10_c01107{margin-left:-29.948778px;}
._f_c01107{margin-left:-28.754100px;}
._6_c01107{margin-left:-27.329130px;}
._5_c01107{margin-left:-7.890300px;}
._c_c01107{margin-left:-6.527430px;}
._8_c01107{margin-left:-3.514770px;}
._2_c01107{margin-left:-1.936710px;}
._3_c01107{width:1.793250px;}
._b_c01107{width:2.869200px;}
._9_c01107{width:4.563510px;}
._12_c01107{width:8.287716px;}
._a_c01107{width:32.017740px;}
._1_c01107{width:424.502910px;}
.fc0_c01107{color:rgb(0,0,0);}
.fs2_c01107{font-size:41.844000px;}
.fs1_c01107{font-size:47.820000px;}
.fs3_c01107{font-size:59.778000px;}
.fs0_c01107{font-size:71.730000px;}
.y0_c01107{bottom:0.000000px;}
.y28_c01107{bottom:82.173000px;}
.y27_c01107{bottom:94.683000px;}
.y26_c01107{bottom:112.615500px;}
.y25_c01107{bottom:118.038000px;}
.y24_c01107{bottom:137.572500px;}
.y23_c01107{bottom:155.506500px;}
.y22_c01107{bottom:173.439000px;}
.y21_c01107{bottom:201.192000px;}
.y20_c01107{bottom:228.082500px;}
.y1f_c01107{bottom:254.973000px;}
.y1e_c01107{bottom:281.863500px;}
.y1d_c01107{bottom:308.754000px;}
.y1c_c01107{bottom:335.646000px;}
.y1b_c01107{bottom:362.536500px;}
.y1a_c01107{bottom:408.855000px;}
.y19_c01107{bottom:435.745500px;}
.y18_c01107{bottom:462.636000px;}
.y17_c01107{bottom:508.954500px;}
.y16_c01107{bottom:535.845000px;}
.y15_c01107{bottom:562.735500px;}
.y14_c01107{bottom:589.626000px;}
.y13_c01107{bottom:616.518000px;}
.y12_c01107{bottom:643.408500px;}
.y11_c01107{bottom:670.299000px;}
.y10_c01107{bottom:697.189500px;}
.yf_c01107{bottom:724.081500px;}
.ye_c01107{bottom:750.972000px;}
.yd_c01107{bottom:777.862500px;}
.yc_c01107{bottom:804.753000px;}
.yb_c01107{bottom:831.645000px;}
.ya_c01107{bottom:858.535500px;}
.y9_c01107{bottom:885.426000px;}
.y8_c01107{bottom:912.316500px;}
.y7_c01107{bottom:939.207000px;}
.y6_c01107{bottom:966.099000px;}
.y5_c01107{bottom:992.989500px;}
.y4_c01107{bottom:1019.880000px;}
.y3_c01107{bottom:1046.770500px;}
.y2_c01107{bottom:1073.662500px;}
.y1_c01107{bottom:1140.615000px;}
.h6_c01107{height:28.286544px;}
.h7_c01107{height:38.251500px;}
.h9_c01107{height:44.833500px;}
.h2_c01107{height:53.797500px;}
.h5_c01107{height:58.354320px;}
.h3_c01107{height:58.360320px;}
.h8_c01107{height:59.941500px;}
.h4_c01107{height:71.929500px;}
.h1_c01107{height:1263.750000px;}
.h0_c01107{height:1264.110000px;}
.w0_c01107{width:893.869500px;}
.w1_c01107{width:894.000000px;}
.x0_c01107{left:0.000000px;}
.x1_c01107{left:127.558500px;}
.x6_c01107{left:147.754500px;}
.x3_c01107{left:159.838500px;}
.x5_c01107{left:171.456000px;}
.x7_c01107{left:188.497500px;}
.x4_c01107{left:197.794500px;}
.x8_c01107{left:200.121000px;}
.x9_c01107{left:278.623500px;}
.x2_c01107{left:279.736500px;}
@media print{
.v3_c01107{vertical-align:-19.285333pt;}
.v0_c01107{vertical-align:0.000000pt;}
.v4_c01107{vertical-align:13.429333pt;}
.v2_c01107{vertical-align:16.117333pt;}
.v1_c01107{vertical-align:23.141333pt;}
.ls6_c01107{letter-spacing:0.000000pt;}
.ls1_c01107{letter-spacing:2.666293pt;}
.ls4_c01107{letter-spacing:2.670901pt;}
.ls5_c01107{letter-spacing:6.628192pt;}
.ls0_c01107{letter-spacing:22.319627pt;}
.ls3_c01107{letter-spacing:23.476960pt;}
.ls2_c01107{letter-spacing:32.767627pt;}
.ws1_c01107{word-spacing:-0.063760pt;}
.ws20_c01107{word-spacing:-0.053136pt;}
.ws23_c01107{word-spacing:0.000000pt;}
.ws10_c01107{word-spacing:15.812480pt;}
.ws1a_c01107{word-spacing:16.003760pt;}
.ws1e_c01107{word-spacing:17.641152pt;}
.ws1f_c01107{word-spacing:18.916416pt;}
.ws1c_c01107{word-spacing:19.383040pt;}
.ws4_c01107{word-spacing:19.574320pt;}
.wsd_c01107{word-spacing:19.829360pt;}
.ws18_c01107{word-spacing:20.020640pt;}
.ws6_c01107{word-spacing:20.722000pt;}
.ws22_c01107{word-spacing:20.776176pt;}
.ws21_c01107{word-spacing:20.829312pt;}
.ws5_c01107{word-spacing:21.168320pt;}
.ws16_c01107{word-spacing:21.359600pt;}
.ws3_c01107{word-spacing:21.678400pt;}
.ws14_c01107{word-spacing:22.060960pt;}
.wsc_c01107{word-spacing:22.252240pt;}
.ws17_c01107{word-spacing:22.889840pt;}
.ws8_c01107{word-spacing:23.272400pt;}
.ws9_c01107{word-spacing:23.591200pt;}
.ws1d_c01107{word-spacing:23.782480pt;}
.ws0_c01107{word-spacing:23.846240pt;}
.wsf_c01107{word-spacing:23.910000pt;}
.ws7_c01107{word-spacing:24.037520pt;}
.ws19_c01107{word-spacing:24.292560pt;}
.ws1b_c01107{word-spacing:24.866400pt;}
.ws13_c01107{word-spacing:25.886560pt;}
.ws2_c01107{word-spacing:26.587920pt;}
.wsa_c01107{word-spacing:27.277440pt;}
.ws15_c01107{word-spacing:28.118160pt;}
.wsb_c01107{word-spacing:28.245680pt;}
.wse_c01107{word-spacing:28.564480pt;}
.ws12_c01107{word-spacing:30.030960pt;}
.ws11_c01107{word-spacing:30.796080pt;}
._0_c01107{margin-left:-36.151920pt;}
._7_c01107{margin-left:-33.288880pt;}
._d_c01107{margin-left:-32.071280pt;}
._4_c01107{margin-left:-31.051120pt;}
._e_c01107{margin-left:-28.692000pt;}
._11_c01107{margin-left:-27.557051pt;}
._10_c01107{margin-left:-26.621136pt;}
._f_c01107{margin-left:-25.559200pt;}
._6_c01107{margin-left:-24.292560pt;}
._5_c01107{margin-left:-7.013600pt;}
._c_c01107{margin-left:-5.802160pt;}
._8_c01107{margin-left:-3.124240pt;}
._2_c01107{margin-left:-1.721520pt;}
._3_c01107{width:1.594000pt;}
._b_c01107{width:2.550400pt;}
._9_c01107{width:4.056453pt;}
._12_c01107{width:7.366859pt;}
._a_c01107{width:28.460213pt;}
._1_c01107{width:377.335920pt;}
.fs2_c01107{font-size:37.194667pt;}
.fs1_c01107{font-size:42.506667pt;}
.fs3_c01107{font-size:53.136000pt;}
.fs0_c01107{font-size:63.760000pt;}
.y0_c01107{bottom:0.000000pt;}
.y28_c01107{bottom:73.042667pt;}
.y27_c01107{bottom:84.162667pt;}
.y26_c01107{bottom:100.102667pt;}
.y25_c01107{bottom:104.922667pt;}
.y24_c01107{bottom:122.286667pt;}
.y23_c01107{bottom:138.228000pt;}
.y22_c01107{bottom:154.168000pt;}
.y21_c01107{bottom:178.837333pt;}
.y20_c01107{bottom:202.740000pt;}
.y1f_c01107{bottom:226.642667pt;}
.y1e_c01107{bottom:250.545333pt;}
.y1d_c01107{bottom:274.448000pt;}
.y1c_c01107{bottom:298.352000pt;}
.y1b_c01107{bottom:322.254667pt;}
.y1a_c01107{bottom:363.426667pt;}
.y19_c01107{bottom:387.329333pt;}
.y18_c01107{bottom:411.232000pt;}
.y17_c01107{bottom:452.404000pt;}
.y16_c01107{bottom:476.306667pt;}
.y15_c01107{bottom:500.209333pt;}
.y14_c01107{bottom:524.112000pt;}
.y13_c01107{bottom:548.016000pt;}
.y12_c01107{bottom:571.918667pt;}
.y11_c01107{bottom:595.821333pt;}
.y10_c01107{bottom:619.724000pt;}
.yf_c01107{bottom:643.628000pt;}
.ye_c01107{bottom:667.530667pt;}
.yd_c01107{bottom:691.433333pt;}
.yc_c01107{bottom:715.336000pt;}
.yb_c01107{bottom:739.240000pt;}
.ya_c01107{bottom:763.142667pt;}
.y9_c01107{bottom:787.045333pt;}
.y8_c01107{bottom:810.948000pt;}
.y7_c01107{bottom:834.850667pt;}
.y6_c01107{bottom:858.754667pt;}
.y5_c01107{bottom:882.657333pt;}
.y4_c01107{bottom:906.560000pt;}
.y3_c01107{bottom:930.462667pt;}
.y2_c01107{bottom:954.366667pt;}
.y1_c01107{bottom:1013.880000pt;}
.h6_c01107{height:25.143595pt;}
.h7_c01107{height:34.001333pt;}
.h9_c01107{height:39.852000pt;}
.h2_c01107{height:47.820000pt;}
.h5_c01107{height:51.870507pt;}
.h3_c01107{height:51.875840pt;}
.h8_c01107{height:53.281333pt;}
.h4_c01107{height:63.937333pt;}
.h1_c01107{height:1123.333333pt;}
.h0_c01107{height:1123.653333pt;}
.w0_c01107{width:794.550667pt;}
.w1_c01107{width:794.666667pt;}
.x0_c01107{left:0.000000pt;}
.x1_c01107{left:113.385333pt;}
.x6_c01107{left:131.337333pt;}
.x3_c01107{left:142.078667pt;}
.x5_c01107{left:152.405333pt;}
.x7_c01107{left:167.553333pt;}
.x4_c01107{left:175.817333pt;}
.x8_c01107{left:177.885333pt;}
.x9_c01107{left:247.665333pt;}
.x2_c01107{left:248.654667pt;}
}





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

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





.ff0_c01108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01108;src:url('chunks/assets/font_727ad52a040219fc8449c057.woff2')format("woff");}.ff1_c01108{font-family:ff1_c01108;line-height:1.001000;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_c01108;src:url('chunks/assets/font_ea1bb4736c30da5a28cb96fe.woff2')format("woff");}.ff2_c01108{font-family:ff2_c01108;line-height:1.001000;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_c01108;src:url('chunks/assets/font_4ca7167e4733ba66eac0afef.woff2')format("woff");}.ff3_c01108{font-family:ff3_c01108;line-height:1.001000;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_c01108;src:url('chunks/assets/font_22e404c71be178131a7f91d1.woff2')format("woff");}.ff4_c01108{font-family:ff4_c01108;line-height:0.697000;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_c01108;src:url('chunks/assets/font_d1b0fcfbd04996fd2e75ad87.woff2')format("woff");}.ff5_c01108{font-family:ff5_c01108;line-height:0.696000;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_c01108;src:url('chunks/assets/font_2e866a813298a81af14a2aa0.woff2')format("woff");}.ff6_c01108{font-family:ff6_c01108;line-height:1.000000;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_c01108;src:url('chunks/assets/font_4c1a185ba19b42de39ff550d.woff2')format("woff");}.ff7_c01108{font-family:ff7_c01108;line-height:1.000000;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_c01108{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_c01108{vertical-align:-21.690000px;}
.v0_c01108{vertical-align:0.000000px;}
.v1_c01108{vertical-align:26.028000px;}
.ls6_c01108{letter-spacing:0.000000px;}
.ls2_c01108{letter-spacing:2.999580px;}
.ls5_c01108{letter-spacing:3.004764px;}
.ls1_c01108{letter-spacing:3.005580px;}
.ls4_c01108{letter-spacing:23.382300px;}
.ls3_c01108{letter-spacing:23.407440px;}
.ls0_c01108{letter-spacing:31.555440px;}
.sc__c01108{text-shadow:none;}
.sc0_c01108{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__c01108{-webkit-text-stroke:0px transparent;}
.sc0_c01108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01108{word-spacing:-0.071730px;}
.ws27_c01108{word-spacing:0.000000px;}
.ws22_c01108{word-spacing:17.932500px;}
.ws2_c01108{word-spacing:18.291150px;}
.ws24_c01108{word-spacing:19.846296px;}
.ws1e_c01108{word-spacing:20.658240px;}
.ws3_c01108{word-spacing:20.873430px;}
.ws25_c01108{word-spacing:21.280968px;}
.ws26_c01108{word-spacing:21.340746px;}
.ws9_c01108{word-spacing:21.805920px;}
.wsd_c01108{word-spacing:21.877650px;}
.ws18_c01108{word-spacing:22.092840px;}
.ws8_c01108{word-spacing:22.881870px;}
.ws10_c01108{word-spacing:23.097060px;}
.ws1f_c01108{word-spacing:23.168790px;}
.ws4_c01108{word-spacing:23.312250px;}
.wsa_c01108{word-spacing:23.383980px;}
.ws19_c01108{word-spacing:23.455710px;}
.wse_c01108{word-spacing:23.742630px;}
.ws14_c01108{word-spacing:23.814360px;}
.wsf_c01108{word-spacing:24.818580px;}
.wsc_c01108{word-spacing:25.033770px;}
.ws21_c01108{word-spacing:25.535880px;}
.ws1d_c01108{word-spacing:25.966260px;}
.ws17_c01108{word-spacing:26.324910px;}
.ws20_c01108{word-spacing:26.755290px;}
.ws0_c01108{word-spacing:26.827020px;}
.ws13_c01108{word-spacing:26.970480px;}
.wsb_c01108{word-spacing:27.687780px;}
.ws16_c01108{word-spacing:28.189890px;}
.ws23_c01108{word-spacing:28.692000px;}
.ws15_c01108{word-spacing:29.050650px;}
.ws7_c01108{word-spacing:29.265840px;}
.ws1a_c01108{word-spacing:30.700440px;}
.ws1c_c01108{word-spacing:30.772170px;}
.ws6_c01108{word-spacing:31.489470px;}
.ws11_c01108{word-spacing:31.776390px;}
.ws1b_c01108{word-spacing:31.848120px;}
.ws5_c01108{word-spacing:32.493690px;}
.ws12_c01108{word-spacing:32.852340px;}
._0_c01108{margin-left:-40.670910px;}
._6_c01108{margin-left:-37.084410px;}
._4_c01108{margin-left:-35.147700px;}
._11_c01108{margin-left:-33.210990px;}
._15_c01108{margin-left:-30.643224px;}
._a_c01108{margin-left:-27.329130px;}
._9_c01108{margin-left:-8.033760px;}
._12_c01108{margin-left:-6.408840px;}
._7_c01108{margin-left:-5.354880px;}
._3_c01108{margin-left:-3.873420px;}
._2_c01108{margin-left:-2.367090px;}
._c_c01108{margin-left:-1.362870px;}
._13_c01108{width:1.362870px;}
._5_c01108{width:2.367090px;}
._8_c01108{width:3.774450px;}
._f_c01108{width:5.027190px;}
._e_c01108{width:10.759500px;}
._10_c01108{width:21.659670px;}
._d_c01108{width:24.388200px;}
._b_c01108{width:28.333350px;}
._14_c01108{width:30.237960px;}
._1_c01108{width:424.502910px;}
.fc0_c01108{color:rgb(0,0,0);}
.fs2_c01108{font-size:41.844000px;}
.fs1_c01108{font-size:47.820000px;}
.fs3_c01108{font-size:59.778000px;}
.fs0_c01108{font-size:71.730000px;}
.y0_c01108{bottom:0.000000px;}
.y26_c01108{bottom:77.395500px;}
.y25_c01108{bottom:95.328000px;}
.y24_c01108{bottom:121.911000px;}
.y23_c01108{bottom:148.801500px;}
.y22_c01108{bottom:175.692000px;}
.y21_c01108{bottom:202.584000px;}
.y20_c01108{bottom:229.474500px;}
.y1f_c01108{bottom:256.365000px;}
.y1e_c01108{bottom:283.255500px;}
.y1d_c01108{bottom:310.146000px;}
.y1c_c01108{bottom:337.038000px;}
.y1b_c01108{bottom:363.928500px;}
.y1a_c01108{bottom:390.819000px;}
.y19_c01108{bottom:417.709500px;}
.y18_c01108{bottom:444.601500px;}
.y17_c01108{bottom:471.492000px;}
.y16_c01108{bottom:498.382500px;}
.y15_c01108{bottom:525.273000px;}
.y14_c01108{bottom:552.165000px;}
.y13_c01108{bottom:579.055500px;}
.y12_c01108{bottom:605.946000px;}
.y11_c01108{bottom:632.836500px;}
.y10_c01108{bottom:659.728500px;}
.yf_c01108{bottom:686.619000px;}
.ye_c01108{bottom:713.509500px;}
.yd_c01108{bottom:759.132000px;}
.yc_c01108{bottom:786.022500px;}
.yb_c01108{bottom:831.645000px;}
.ya_c01108{bottom:858.535500px;}
.y9_c01108{bottom:885.426000px;}
.y8_c01108{bottom:912.316500px;}
.y7_c01108{bottom:939.207000px;}
.y6_c01108{bottom:966.099000px;}
.y5_c01108{bottom:992.989500px;}
.y4_c01108{bottom:1019.880000px;}
.y3_c01108{bottom:1046.770500px;}
.y2_c01108{bottom:1073.662500px;}
.y1_c01108{bottom:1140.615000px;}
.h4_c01108{height:28.286544px;}
.h2_c01108{height:53.797500px;}
.h3_c01108{height:58.354320px;}
.h1_c01108{height:1263.750000px;}
.h0_c01108{height:1264.110000px;}
.w0_c01108{width:893.869500px;}
.w1_c01108{width:894.000000px;}
.x0_c01108{left:0.000000px;}
.x1_c01108{left:127.558500px;}
.x5_c01108{left:147.754500px;}
.x2_c01108{left:159.838500px;}
.x4_c01108{left:171.456000px;}
.x3_c01108{left:197.794500px;}
@media print{
.v2_c01108{vertical-align:-19.280000pt;}
.v0_c01108{vertical-align:0.000000pt;}
.v1_c01108{vertical-align:23.136000pt;}
.ls6_c01108{letter-spacing:0.000000pt;}
.ls2_c01108{letter-spacing:2.666293pt;}
.ls5_c01108{letter-spacing:2.670901pt;}
.ls1_c01108{letter-spacing:2.671627pt;}
.ls4_c01108{letter-spacing:20.784267pt;}
.ls3_c01108{letter-spacing:20.806613pt;}
.ls0_c01108{letter-spacing:28.049280pt;}
.ws1_c01108{word-spacing:-0.063760pt;}
.ws27_c01108{word-spacing:0.000000pt;}
.ws22_c01108{word-spacing:15.940000pt;}
.ws2_c01108{word-spacing:16.258800pt;}
.ws24_c01108{word-spacing:17.641152pt;}
.ws1e_c01108{word-spacing:18.362880pt;}
.ws3_c01108{word-spacing:18.554160pt;}
.ws25_c01108{word-spacing:18.916416pt;}
.ws26_c01108{word-spacing:18.969552pt;}
.ws9_c01108{word-spacing:19.383040pt;}
.wsd_c01108{word-spacing:19.446800pt;}
.ws18_c01108{word-spacing:19.638080pt;}
.ws8_c01108{word-spacing:20.339440pt;}
.ws10_c01108{word-spacing:20.530720pt;}
.ws1f_c01108{word-spacing:20.594480pt;}
.ws4_c01108{word-spacing:20.722000pt;}
.wsa_c01108{word-spacing:20.785760pt;}
.ws19_c01108{word-spacing:20.849520pt;}
.wse_c01108{word-spacing:21.104560pt;}
.ws14_c01108{word-spacing:21.168320pt;}
.wsf_c01108{word-spacing:22.060960pt;}
.wsc_c01108{word-spacing:22.252240pt;}
.ws21_c01108{word-spacing:22.698560pt;}
.ws1d_c01108{word-spacing:23.081120pt;}
.ws17_c01108{word-spacing:23.399920pt;}
.ws20_c01108{word-spacing:23.782480pt;}
.ws0_c01108{word-spacing:23.846240pt;}
.ws13_c01108{word-spacing:23.973760pt;}
.wsb_c01108{word-spacing:24.611360pt;}
.ws16_c01108{word-spacing:25.057680pt;}
.ws23_c01108{word-spacing:25.504000pt;}
.ws15_c01108{word-spacing:25.822800pt;}
.ws7_c01108{word-spacing:26.014080pt;}
.ws1a_c01108{word-spacing:27.289280pt;}
.ws1c_c01108{word-spacing:27.353040pt;}
.ws6_c01108{word-spacing:27.990640pt;}
.ws11_c01108{word-spacing:28.245680pt;}
.ws1b_c01108{word-spacing:28.309440pt;}
.ws5_c01108{word-spacing:28.883280pt;}
.ws12_c01108{word-spacing:29.202080pt;}
._0_c01108{margin-left:-36.151920pt;}
._6_c01108{margin-left:-32.963920pt;}
._4_c01108{margin-left:-31.242400pt;}
._11_c01108{margin-left:-29.520880pt;}
._15_c01108{margin-left:-27.238421pt;}
._a_c01108{margin-left:-24.292560pt;}
._9_c01108{margin-left:-7.141120pt;}
._12_c01108{margin-left:-5.696747pt;}
._7_c01108{margin-left:-4.759893pt;}
._3_c01108{margin-left:-3.443040pt;}
._2_c01108{margin-left:-2.104080pt;}
._c_c01108{margin-left:-1.211440pt;}
._13_c01108{width:1.211440pt;}
._5_c01108{width:2.104080pt;}
._8_c01108{width:3.355067pt;}
._f_c01108{width:4.468613pt;}
._e_c01108{width:9.564000pt;}
._10_c01108{width:19.253040pt;}
._d_c01108{width:21.678400pt;}
._b_c01108{width:25.185200pt;}
._14_c01108{width:26.878187pt;}
._1_c01108{width:377.335920pt;}
.fs2_c01108{font-size:37.194667pt;}
.fs1_c01108{font-size:42.506667pt;}
.fs3_c01108{font-size:53.136000pt;}
.fs0_c01108{font-size:63.760000pt;}
.y0_c01108{bottom:0.000000pt;}
.y26_c01108{bottom:68.796000pt;}
.y25_c01108{bottom:84.736000pt;}
.y24_c01108{bottom:108.365333pt;}
.y23_c01108{bottom:132.268000pt;}
.y22_c01108{bottom:156.170667pt;}
.y21_c01108{bottom:180.074667pt;}
.y20_c01108{bottom:203.977333pt;}
.y1f_c01108{bottom:227.880000pt;}
.y1e_c01108{bottom:251.782667pt;}
.y1d_c01108{bottom:275.685333pt;}
.y1c_c01108{bottom:299.589333pt;}
.y1b_c01108{bottom:323.492000pt;}
.y1a_c01108{bottom:347.394667pt;}
.y19_c01108{bottom:371.297333pt;}
.y18_c01108{bottom:395.201333pt;}
.y17_c01108{bottom:419.104000pt;}
.y16_c01108{bottom:443.006667pt;}
.y15_c01108{bottom:466.909333pt;}
.y14_c01108{bottom:490.813333pt;}
.y13_c01108{bottom:514.716000pt;}
.y12_c01108{bottom:538.618667pt;}
.y11_c01108{bottom:562.521333pt;}
.y10_c01108{bottom:586.425333pt;}
.yf_c01108{bottom:610.328000pt;}
.ye_c01108{bottom:634.230667pt;}
.yd_c01108{bottom:674.784000pt;}
.yc_c01108{bottom:698.686667pt;}
.yb_c01108{bottom:739.240000pt;}
.ya_c01108{bottom:763.142667pt;}
.y9_c01108{bottom:787.045333pt;}
.y8_c01108{bottom:810.948000pt;}
.y7_c01108{bottom:834.850667pt;}
.y6_c01108{bottom:858.754667pt;}
.y5_c01108{bottom:882.657333pt;}
.y4_c01108{bottom:906.560000pt;}
.y3_c01108{bottom:930.462667pt;}
.y2_c01108{bottom:954.366667pt;}
.y1_c01108{bottom:1013.880000pt;}
.h4_c01108{height:25.143595pt;}
.h2_c01108{height:47.820000pt;}
.h3_c01108{height:51.870507pt;}
.h1_c01108{height:1123.333333pt;}
.h0_c01108{height:1123.653333pt;}
.w0_c01108{width:794.550667pt;}
.w1_c01108{width:794.666667pt;}
.x0_c01108{left:0.000000pt;}
.x1_c01108{left:113.385333pt;}
.x5_c01108{left:131.337333pt;}
.x2_c01108{left:142.078667pt;}
.x4_c01108{left:152.405333pt;}
.x3_c01108{left:175.817333pt;}
}





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

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





.ff0_c01109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01109;src:url('chunks/assets/font_7f64d0ad30a067d4a005853b.woff2')format("woff");}.ff1_c01109{font-family:ff1_c01109;line-height:1.001000;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_c01109;src:url('chunks/assets/font_d42ae97416b9bb48227ba0f2.woff2')format("woff");}.ff2_c01109{font-family:ff2_c01109;line-height:1.001000;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_c01109;src:url('chunks/assets/font_80a6859dc1d6932f1b5a698f.woff2')format("woff");}.ff3_c01109{font-family:ff3_c01109;line-height:1.000000;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_c01109;src:url('chunks/assets/font_023cfe1c956d012fcf68d677.woff2')format("woff");}.ff4_c01109{font-family:ff4_c01109;line-height:1.001000;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_c01109;src:url('chunks/assets/font_99b84d8288a25894362c26fe.woff2')format("woff");}.ff5_c01109{font-family:ff5_c01109;line-height:0.697000;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_c01109;src:url('chunks/assets/font_ed52bf0fe1dae14e20216a92.woff2')format("woff");}.ff6_c01109{font-family:ff6_c01109;line-height:0.696000;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_c01109;src:url('chunks/assets/font_79da7ab7b0d8787338dae5ba.woff2')format("woff");}.ff7_c01109{font-family:ff7_c01109;line-height:1.000000;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_c01109;src:url('chunks/assets/font_e4b02234762539d949431cfc.woff2')format("woff");}.ff8_c01109{font-family:ff8_c01109;line-height:1.000000;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_c01109{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);}
.v3_c01109{vertical-align:-21.690000px;}
.v0_c01109{vertical-align:0.000000px;}
.v1_c01109{vertical-align:5.976000px;}
.v4_c01109{vertical-align:15.108000px;}
.v2_c01109{vertical-align:26.028000px;}
.ls2_c01109{letter-spacing:0.000000px;}
.ls0_c01109{letter-spacing:2.999580px;}
.ls1_c01109{letter-spacing:3.004764px;}
.sc__c01109{text-shadow:none;}
.sc0_c01109{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__c01109{-webkit-text-stroke:0px transparent;}
.sc0_c01109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01109{word-spacing:-0.071730px;}
.ws20_c01109{word-spacing:-0.059778px;}
.ws23_c01109{word-spacing:0.000000px;}
.ws12_c01109{word-spacing:15.780600px;}
.ws16_c01109{word-spacing:18.793260px;}
.ws1d_c01109{word-spacing:19.151910px;}
.ws1e_c01109{word-spacing:19.223640px;}
.ws18_c01109{word-spacing:19.582290px;}
.ws1a_c01109{word-spacing:19.725750px;}
.ws21_c01109{word-spacing:19.846296px;}
.ws22_c01109{word-spacing:21.340746px;}
.ws1f_c01109{word-spacing:21.734190px;}
.ws11_c01109{word-spacing:21.805920px;}
.ws4_c01109{word-spacing:23.312250px;}
.wsb_c01109{word-spacing:23.383980px;}
.ws8_c01109{word-spacing:24.459930px;}
.ws3_c01109{word-spacing:25.033770px;}
.ws19_c01109{word-spacing:25.035270px;}
.ws13_c01109{word-spacing:25.464150px;}
.wsf_c01109{word-spacing:25.679340px;}
.wse_c01109{word-spacing:25.751070px;}
.ws17_c01109{word-spacing:26.253180px;}
.ws15_c01109{word-spacing:26.611830px;}
.ws6_c01109{word-spacing:26.683560px;}
.ws0_c01109{word-spacing:26.827020px;}
.ws5_c01109{word-spacing:26.970480px;}
.ws1c_c01109{word-spacing:27.042210px;}
.ws10_c01109{word-spacing:27.400860px;}
.ws7_c01109{word-spacing:27.616050px;}
.ws14_c01109{word-spacing:28.333350px;}
.ws9_c01109{word-spacing:29.481030px;}
.ws2_c01109{word-spacing:30.054870px;}
.wsa_c01109{word-spacing:30.198330px;}
.wsc_c01109{word-spacing:31.059090px;}
.wsd_c01109{word-spacing:31.202550px;}
.ws1b_c01109{word-spacing:32.364576px;}
._0_c01109{margin-left:-40.670910px;}
._9_c01109{margin-left:-36.295380px;}
._5_c01109{margin-left:-35.147700px;}
._d_c01109{margin-left:-32.206770px;}
._b_c01109{margin-left:-26.755290px;}
._13_c01109{margin-left:-24.571422px;}
._7_c01109{margin-left:-8.392410px;}
._c_c01109{margin-left:-6.025320px;}
._3_c01109{margin-left:-4.160340px;}
._8_c01109{margin-left:-3.012660px;}
._2_c01109{margin-left:-1.936710px;}
._4_c01109{width:1.864980px;}
._11_c01109{width:3.479130px;}
._a_c01109{width:5.180880px;}
._12_c01109{width:7.436040px;}
._f_c01109{width:15.637140px;}
._e_c01109{width:17.717310px;}
._6_c01109{width:79.333380px;}
._10_c01109{width:95.200056px;}
._1_c01109{width:424.502910px;}
.fc0_c01109{color:rgb(0,0,0);}
.fs3_c01109{font-size:41.844000px;}
.fs1_c01109{font-size:47.820000px;}
.fs4_c01109{font-size:59.778000px;}
.fs0_c01109{font-size:71.730000px;}
.fs2_c01109{font-size:86.076000px;}
.y0_c01109{bottom:0.000000px;}
.y23_c01109{bottom:74.151000px;}
.y22_c01109{bottom:79.573500px;}
.y21_c01109{bottom:107.932500px;}
.y20_c01109{bottom:134.823000px;}
.y1f_c01109{bottom:169.435500px;}
.y1e_c01109{bottom:191.104500px;}
.y1d_c01109{bottom:250.456500px;}
.y1c_c01109{bottom:317.953500px;}
.y1b_c01109{bottom:344.844000px;}
.y1a_c01109{bottom:371.734500px;}
.y19_c01109{bottom:398.626500px;}
.y18_c01109{bottom:425.517000px;}
.y17_c01109{bottom:452.407500px;}
.y16_c01109{bottom:479.298000px;}
.y15_c01109{bottom:506.190000px;}
.y14_c01109{bottom:533.080500px;}
.y13_c01109{bottom:559.971000px;}
.y12_c01109{bottom:586.861500px;}
.y11_c01109{bottom:613.753500px;}
.y10_c01109{bottom:640.644000px;}
.yf_c01109{bottom:667.534500px;}
.ye_c01109{bottom:694.425000px;}
.yd_c01109{bottom:721.317000px;}
.yc_c01109{bottom:748.207500px;}
.yb_c01109{bottom:775.098000px;}
.ya_c01109{bottom:801.988500px;}
.y9_c01109{bottom:848.307000px;}
.y8_c01109{bottom:875.197500px;}
.y7_c01109{bottom:902.088000px;}
.y6_c01109{bottom:928.980000px;}
.y5_c01109{bottom:963.591000px;}
.y4_c01109{bottom:1019.880000px;}
.y3_c01109{bottom:1046.770500px;}
.y2_c01109{bottom:1073.662500px;}
.y1_c01109{bottom:1140.615000px;}
.h6_c01109{height:38.251500px;}
.h7_c01109{height:44.833500px;}
.h2_c01109{height:53.797500px;}
.h4_c01109{height:58.354320px;}
.h3_c01109{height:59.773500px;}
.h5_c01109{height:64.557000px;}
.h1_c01109{height:1263.750000px;}
.h0_c01109{height:1264.110000px;}
.w0_c01109{width:893.869500px;}
.w1_c01109{width:894.000000px;}
.x0_c01109{left:0.000000px;}
.x1_c01109{left:127.558500px;}
.x9_c01109{left:147.754500px;}
.x2_c01109{left:159.838500px;}
.x5_c01109{left:171.456000px;}
.xa_c01109{left:196.591500px;}
.x4_c01109{left:197.794500px;}
.x6_c01109{left:204.220500px;}
.x7_c01109{left:366.081000px;}
.x3_c01109{left:406.291500px;}
.x8_c01109{left:507.180000px;}
@media print{
.v3_c01109{vertical-align:-19.280000pt;}
.v0_c01109{vertical-align:0.000000pt;}
.v1_c01109{vertical-align:5.312000pt;}
.v4_c01109{vertical-align:13.429333pt;}
.v2_c01109{vertical-align:23.136000pt;}
.ls2_c01109{letter-spacing:0.000000pt;}
.ls0_c01109{letter-spacing:2.666293pt;}
.ls1_c01109{letter-spacing:2.670901pt;}
.ws1_c01109{word-spacing:-0.063760pt;}
.ws20_c01109{word-spacing:-0.053136pt;}
.ws23_c01109{word-spacing:0.000000pt;}
.ws12_c01109{word-spacing:14.027200pt;}
.ws16_c01109{word-spacing:16.705120pt;}
.ws1d_c01109{word-spacing:17.023920pt;}
.ws1e_c01109{word-spacing:17.087680pt;}
.ws18_c01109{word-spacing:17.406480pt;}
.ws1a_c01109{word-spacing:17.534000pt;}
.ws21_c01109{word-spacing:17.641152pt;}
.ws22_c01109{word-spacing:18.969552pt;}
.ws1f_c01109{word-spacing:19.319280pt;}
.ws11_c01109{word-spacing:19.383040pt;}
.ws4_c01109{word-spacing:20.722000pt;}
.wsb_c01109{word-spacing:20.785760pt;}
.ws8_c01109{word-spacing:21.742160pt;}
.ws3_c01109{word-spacing:22.252240pt;}
.ws19_c01109{word-spacing:22.253573pt;}
.ws13_c01109{word-spacing:22.634800pt;}
.wsf_c01109{word-spacing:22.826080pt;}
.wse_c01109{word-spacing:22.889840pt;}
.ws17_c01109{word-spacing:23.336160pt;}
.ws15_c01109{word-spacing:23.654960pt;}
.ws6_c01109{word-spacing:23.718720pt;}
.ws0_c01109{word-spacing:23.846240pt;}
.ws5_c01109{word-spacing:23.973760pt;}
.ws1c_c01109{word-spacing:24.037520pt;}
.ws10_c01109{word-spacing:24.356320pt;}
.ws7_c01109{word-spacing:24.547600pt;}
.ws14_c01109{word-spacing:25.185200pt;}
.ws9_c01109{word-spacing:26.205360pt;}
.ws2_c01109{word-spacing:26.715440pt;}
.wsa_c01109{word-spacing:26.842960pt;}
.wsc_c01109{word-spacing:27.608080pt;}
.wsd_c01109{word-spacing:27.735600pt;}
.ws1b_c01109{word-spacing:28.768512pt;}
._0_c01109{margin-left:-36.151920pt;}
._9_c01109{margin-left:-32.262560pt;}
._5_c01109{margin-left:-31.242400pt;}
._d_c01109{margin-left:-28.628240pt;}
._b_c01109{margin-left:-23.782480pt;}
._13_c01109{margin-left:-21.841264pt;}
._7_c01109{margin-left:-7.459920pt;}
._c_c01109{margin-left:-5.355840pt;}
._3_c01109{margin-left:-3.698080pt;}
._8_c01109{margin-left:-2.677920pt;}
._2_c01109{margin-left:-1.721520pt;}
._4_c01109{width:1.657760pt;}
._11_c01109{width:3.092560pt;}
._a_c01109{width:4.605227pt;}
._12_c01109{width:6.609813pt;}
._f_c01109{width:13.899680pt;}
._e_c01109{width:15.748720pt;}
._6_c01109{width:70.518560pt;}
._10_c01109{width:84.622272pt;}
._1_c01109{width:377.335920pt;}
.fs3_c01109{font-size:37.194667pt;}
.fs1_c01109{font-size:42.506667pt;}
.fs4_c01109{font-size:53.136000pt;}
.fs0_c01109{font-size:63.760000pt;}
.fs2_c01109{font-size:76.512000pt;}
.y0_c01109{bottom:0.000000pt;}
.y23_c01109{bottom:65.912000pt;}
.y22_c01109{bottom:70.732000pt;}
.y21_c01109{bottom:95.940000pt;}
.y20_c01109{bottom:119.842667pt;}
.y1f_c01109{bottom:150.609333pt;}
.y1e_c01109{bottom:169.870667pt;}
.y1d_c01109{bottom:222.628000pt;}
.y1c_c01109{bottom:282.625333pt;}
.y1b_c01109{bottom:306.528000pt;}
.y1a_c01109{bottom:330.430667pt;}
.y19_c01109{bottom:354.334667pt;}
.y18_c01109{bottom:378.237333pt;}
.y17_c01109{bottom:402.140000pt;}
.y16_c01109{bottom:426.042667pt;}
.y15_c01109{bottom:449.946667pt;}
.y14_c01109{bottom:473.849333pt;}
.y13_c01109{bottom:497.752000pt;}
.y12_c01109{bottom:521.654667pt;}
.y11_c01109{bottom:545.558667pt;}
.y10_c01109{bottom:569.461333pt;}
.yf_c01109{bottom:593.364000pt;}
.ye_c01109{bottom:617.266667pt;}
.yd_c01109{bottom:641.170667pt;}
.yc_c01109{bottom:665.073333pt;}
.yb_c01109{bottom:688.976000pt;}
.ya_c01109{bottom:712.878667pt;}
.y9_c01109{bottom:754.050667pt;}
.y8_c01109{bottom:777.953333pt;}
.y7_c01109{bottom:801.856000pt;}
.y6_c01109{bottom:825.760000pt;}
.y5_c01109{bottom:856.525333pt;}
.y4_c01109{bottom:906.560000pt;}
.y3_c01109{bottom:930.462667pt;}
.y2_c01109{bottom:954.366667pt;}
.y1_c01109{bottom:1013.880000pt;}
.h6_c01109{height:34.001333pt;}
.h7_c01109{height:39.852000pt;}
.h2_c01109{height:47.820000pt;}
.h4_c01109{height:51.870507pt;}
.h3_c01109{height:53.132000pt;}
.h5_c01109{height:57.384000pt;}
.h1_c01109{height:1123.333333pt;}
.h0_c01109{height:1123.653333pt;}
.w0_c01109{width:794.550667pt;}
.w1_c01109{width:794.666667pt;}
.x0_c01109{left:0.000000pt;}
.x1_c01109{left:113.385333pt;}
.x9_c01109{left:131.337333pt;}
.x2_c01109{left:142.078667pt;}
.x5_c01109{left:152.405333pt;}
.xa_c01109{left:174.748000pt;}
.x4_c01109{left:175.817333pt;}
.x6_c01109{left:181.529333pt;}
.x7_c01109{left:325.405333pt;}
.x3_c01109{left:361.148000pt;}
.x8_c01109{left:450.826667pt;}
}





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

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





.ff0_c01110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01110;src:url('chunks/assets/font_f18e832dbeca5f9348c48da5.woff2')format("woff");}.ff1_c01110{font-family:ff1_c01110;line-height:1.001000;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_c01110;src:url('chunks/assets/font_5f3083f7db10ff361a961ce2.woff2')format("woff");}.ff2_c01110{font-family:ff2_c01110;line-height:1.001000;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_c01110;src:url('chunks/assets/font_479198d571ff86fbda1dd755.woff2')format("woff");}.ff3_c01110{font-family:ff3_c01110;line-height:1.000000;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_c01110;src:url('chunks/assets/font_3db4ff3ab4119555da08a4b3.woff2')format("woff");}.ff4_c01110{font-family:ff4_c01110;line-height:1.001000;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_c01110{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_c01110{vertical-align:0.000000px;}
.v1_c01110{vertical-align:5.976000px;}
.ls0_c01110{letter-spacing:0.000000px;}
.sc__c01110{text-shadow:none;}
.sc0_c01110{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__c01110{-webkit-text-stroke:0px transparent;}
.sc0_c01110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01110{word-spacing:-0.071730px;}
.ws1f_c01110{word-spacing:0.000000px;}
.wsa_c01110{word-spacing:18.004230px;}
.wsb_c01110{word-spacing:20.227860px;}
.ws1d_c01110{word-spacing:20.443050px;}
.ws12_c01110{word-spacing:21.303810px;}
.ws10_c01110{word-spacing:21.590730px;}
.ws2_c01110{word-spacing:22.308030px;}
.ws3_c01110{word-spacing:22.379760px;}
.ws16_c01110{word-spacing:23.168790px;}
.wsc_c01110{word-spacing:23.240520px;}
.ws4_c01110{word-spacing:23.312250px;}
.ws1b_c01110{word-spacing:25.033770px;}
.ws8_c01110{word-spacing:25.105500px;}
.ws15_c01110{word-spacing:26.037990px;}
.wsf_c01110{word-spacing:26.611830px;}
.ws0_c01110{word-spacing:26.827020px;}
.ws9_c01110{word-spacing:27.042210px;}
.ws7_c01110{word-spacing:27.831240px;}
.ws1c_c01110{word-spacing:28.046430px;}
.ws11_c01110{word-spacing:28.907190px;}
.ws19_c01110{word-spacing:29.398110px;}
.ws17_c01110{word-spacing:29.409300px;}
.ws13_c01110{word-spacing:29.624490px;}
.ws5_c01110{word-spacing:29.696220px;}
.ws1e_c01110{word-spacing:30.485250px;}
.ws18_c01110{word-spacing:30.628710px;}
.wse_c01110{word-spacing:30.987360px;}
.wsd_c01110{word-spacing:31.202550px;}
.ws6_c01110{word-spacing:32.278500px;}
.ws14_c01110{word-spacing:32.565420px;}
.ws1a_c01110{word-spacing:33.761550px;}
._0_c01110{margin-left:-40.670910px;}
._7_c01110{margin-left:-36.582300px;}
._4_c01110{margin-left:-34.717320px;}
._f_c01110{margin-left:-33.713100px;}
._12_c01110{margin-left:-29.667510px;}
._6_c01110{margin-left:-27.329130px;}
._b_c01110{margin-left:-9.702570px;}
._5_c01110{margin-left:-7.890300px;}
._8_c01110{margin-left:-5.810130px;}
._9_c01110{margin-left:-4.016880px;}
._3_c01110{margin-left:-1.936710px;}
._2_c01110{width:1.506330px;}
._e_c01110{width:2.797470px;}
._d_c01110{width:3.873420px;}
._c_c01110{width:22.379760px;}
._13_c01110{width:27.848760px;}
._10_c01110{width:30.556980px;}
._11_c01110{width:35.751570px;}
._a_c01110{width:79.333380px;}
._1_c01110{width:424.502910px;}
.fc0_c01110{color:rgb(0,0,0);}
.fs0_c01110{font-size:71.730000px;}
.y0_c01110{bottom:0.000000px;}
.y24_c01110{bottom:122.254500px;}
.y23_c01110{bottom:149.145000px;}
.y22_c01110{bottom:176.035500px;}
.y21_c01110{bottom:202.926000px;}
.y20_c01110{bottom:229.818000px;}
.y1f_c01110{bottom:256.708500px;}
.y1e_c01110{bottom:283.599000px;}
.y1d_c01110{bottom:310.489500px;}
.y1c_c01110{bottom:337.380000px;}
.y1b_c01110{bottom:364.272000px;}
.y1a_c01110{bottom:391.162500px;}
.y19_c01110{bottom:418.053000px;}
.y18_c01110{bottom:444.943500px;}
.y17_c01110{bottom:471.835500px;}
.y16_c01110{bottom:498.726000px;}
.y15_c01110{bottom:525.616500px;}
.y14_c01110{bottom:552.507000px;}
.y13_c01110{bottom:579.399000px;}
.y12_c01110{bottom:606.289500px;}
.y11_c01110{bottom:633.180000px;}
.y10_c01110{bottom:660.070500px;}
.yf_c01110{bottom:686.962500px;}
.ye_c01110{bottom:713.853000px;}
.yd_c01110{bottom:740.743500px;}
.yc_c01110{bottom:767.634000px;}
.yb_c01110{bottom:802.246500px;}
.ya_c01110{bottom:858.535500px;}
.y9_c01110{bottom:885.426000px;}
.y8_c01110{bottom:912.316500px;}
.y7_c01110{bottom:939.207000px;}
.y6_c01110{bottom:966.099000px;}
.y5_c01110{bottom:992.989500px;}
.y4_c01110{bottom:1019.880000px;}
.y3_c01110{bottom:1046.770500px;}
.y2_c01110{bottom:1073.662500px;}
.y1_c01110{bottom:1140.615000px;}
.h2_c01110{height:53.797500px;}
.h3_c01110{height:59.773500px;}
.h1_c01110{height:1263.750000px;}
.h0_c01110{height:1264.110000px;}
.w0_c01110{width:893.869500px;}
.w1_c01110{width:894.000000px;}
.x0_c01110{left:0.000000px;}
.x1_c01110{left:127.558500px;}
.x2_c01110{left:159.838500px;}
.x3_c01110{left:333.763500px;}
@media print{
.v0_c01110{vertical-align:0.000000pt;}
.v1_c01110{vertical-align:5.312000pt;}
.ls0_c01110{letter-spacing:0.000000pt;}
.ws1_c01110{word-spacing:-0.063760pt;}
.ws1f_c01110{word-spacing:0.000000pt;}
.wsa_c01110{word-spacing:16.003760pt;}
.wsb_c01110{word-spacing:17.980320pt;}
.ws1d_c01110{word-spacing:18.171600pt;}
.ws12_c01110{word-spacing:18.936720pt;}
.ws10_c01110{word-spacing:19.191760pt;}
.ws2_c01110{word-spacing:19.829360pt;}
.ws3_c01110{word-spacing:19.893120pt;}
.ws16_c01110{word-spacing:20.594480pt;}
.wsc_c01110{word-spacing:20.658240pt;}
.ws4_c01110{word-spacing:20.722000pt;}
.ws1b_c01110{word-spacing:22.252240pt;}
.ws8_c01110{word-spacing:22.316000pt;}
.ws15_c01110{word-spacing:23.144880pt;}
.wsf_c01110{word-spacing:23.654960pt;}
.ws0_c01110{word-spacing:23.846240pt;}
.ws9_c01110{word-spacing:24.037520pt;}
.ws7_c01110{word-spacing:24.738880pt;}
.ws1c_c01110{word-spacing:24.930160pt;}
.ws11_c01110{word-spacing:25.695280pt;}
.ws19_c01110{word-spacing:26.131653pt;}
.ws17_c01110{word-spacing:26.141600pt;}
.ws13_c01110{word-spacing:26.332880pt;}
.ws5_c01110{word-spacing:26.396640pt;}
.ws1e_c01110{word-spacing:27.098000pt;}
.ws18_c01110{word-spacing:27.225520pt;}
.wse_c01110{word-spacing:27.544320pt;}
.wsd_c01110{word-spacing:27.735600pt;}
.ws6_c01110{word-spacing:28.692000pt;}
.ws14_c01110{word-spacing:28.947040pt;}
.ws1a_c01110{word-spacing:30.010267pt;}
._0_c01110{margin-left:-36.151920pt;}
._7_c01110{margin-left:-32.517600pt;}
._4_c01110{margin-left:-30.859840pt;}
._f_c01110{margin-left:-29.967200pt;}
._12_c01110{margin-left:-26.371120pt;}
._6_c01110{margin-left:-24.292560pt;}
._b_c01110{margin-left:-8.624507pt;}
._5_c01110{margin-left:-7.013600pt;}
._8_c01110{margin-left:-5.164560pt;}
._9_c01110{margin-left:-3.570560pt;}
._3_c01110{margin-left:-1.721520pt;}
._2_c01110{width:1.338960pt;}
._e_c01110{width:2.486640pt;}
._d_c01110{width:3.443040pt;}
._c_c01110{width:19.893120pt;}
._13_c01110{width:24.754453pt;}
._10_c01110{width:27.161760pt;}
._11_c01110{width:31.779173pt;}
._a_c01110{width:70.518560pt;}
._1_c01110{width:377.335920pt;}
.fs0_c01110{font-size:63.760000pt;}
.y0_c01110{bottom:0.000000pt;}
.y24_c01110{bottom:108.670667pt;}
.y23_c01110{bottom:132.573333pt;}
.y22_c01110{bottom:156.476000pt;}
.y21_c01110{bottom:180.378667pt;}
.y20_c01110{bottom:204.282667pt;}
.y1f_c01110{bottom:228.185333pt;}
.y1e_c01110{bottom:252.088000pt;}
.y1d_c01110{bottom:275.990667pt;}
.y1c_c01110{bottom:299.893333pt;}
.y1b_c01110{bottom:323.797333pt;}
.y1a_c01110{bottom:347.700000pt;}
.y19_c01110{bottom:371.602667pt;}
.y18_c01110{bottom:395.505333pt;}
.y17_c01110{bottom:419.409333pt;}
.y16_c01110{bottom:443.312000pt;}
.y15_c01110{bottom:467.214667pt;}
.y14_c01110{bottom:491.117333pt;}
.y13_c01110{bottom:515.021333pt;}
.y12_c01110{bottom:538.924000pt;}
.y11_c01110{bottom:562.826667pt;}
.y10_c01110{bottom:586.729333pt;}
.yf_c01110{bottom:610.633333pt;}
.ye_c01110{bottom:634.536000pt;}
.yd_c01110{bottom:658.438667pt;}
.yc_c01110{bottom:682.341333pt;}
.yb_c01110{bottom:713.108000pt;}
.ya_c01110{bottom:763.142667pt;}
.y9_c01110{bottom:787.045333pt;}
.y8_c01110{bottom:810.948000pt;}
.y7_c01110{bottom:834.850667pt;}
.y6_c01110{bottom:858.754667pt;}
.y5_c01110{bottom:882.657333pt;}
.y4_c01110{bottom:906.560000pt;}
.y3_c01110{bottom:930.462667pt;}
.y2_c01110{bottom:954.366667pt;}
.y1_c01110{bottom:1013.880000pt;}
.h2_c01110{height:47.820000pt;}
.h3_c01110{height:53.132000pt;}
.h1_c01110{height:1123.333333pt;}
.h0_c01110{height:1123.653333pt;}
.w0_c01110{width:794.550667pt;}
.w1_c01110{width:794.666667pt;}
.x0_c01110{left:0.000000pt;}
.x1_c01110{left:113.385333pt;}
.x2_c01110{left:142.078667pt;}
.x3_c01110{left:296.678667pt;}
}





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

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





.ff0_c01111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01111;src:url('chunks/assets/font_f18e832dbeca5f9348c48da5.woff2')format("woff");}.ff1_c01111{font-family:ff1_c01111;line-height:1.001000;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_c01111;src:url('chunks/assets/font_603a3995219a58d11325f463.woff2')format("woff");}.ff2_c01111{font-family:ff2_c01111;line-height:1.001000;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_c01111;src:url('chunks/assets/font_1f17f3f6fb1d5c122ae6c3d4.woff2')format("woff");}.ff3_c01111{font-family:ff3_c01111;line-height:0.697000;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_c01111;src:url('chunks/assets/font_231b02cef053041985835801.woff2')format("woff");}.ff4_c01111{font-family:ff4_c01111;line-height:1.000000;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_c01111;src:url('chunks/assets/font_496a1f235e1d4ca3d46c1350.woff2')format("woff");}.ff5_c01111{font-family:ff5_c01111;line-height:0.696000;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_c01111;src:url('chunks/assets/font_d45ad0b66786ac0a5044cc6d.woff2')format("woff");}.ff6_c01111{font-family:ff6_c01111;line-height:1.000000;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_c01111{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);}
.v4_c01111{vertical-align:-21.696000px;}
.v0_c01111{vertical-align:0.000000px;}
.v3_c01111{vertical-align:5.982000px;}
.v2_c01111{vertical-align:21.756000px;}
.v1_c01111{vertical-align:26.028000px;}
.ls2_c01111{letter-spacing:0.000000px;}
.ls1_c01111{letter-spacing:3.004764px;}
.ls0_c01111{letter-spacing:27.875580px;}
.sc__c01111{text-shadow:none;}
.sc0_c01111{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__c01111{-webkit-text-stroke:0px transparent;}
.sc0_c01111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01111{word-spacing:-0.071730px;}
.ws1c_c01111{word-spacing:-0.059778px;}
.ws10_c01111{word-spacing:-0.047820px;}
.ws1a_c01111{word-spacing:-0.041844px;}
.ws1d_c01111{word-spacing:0.000000px;}
.ws16_c01111{word-spacing:15.422724px;}
.wse_c01111{word-spacing:15.565410px;}
.ws12_c01111{word-spacing:18.004230px;}
.ws6_c01111{word-spacing:19.367100px;}
.ws19_c01111{word-spacing:19.846296px;}
.ws9_c01111{word-spacing:21.088620px;}
.wsd_c01111{word-spacing:21.232080px;}
.ws8_c01111{word-spacing:21.662460px;}
.ws17_c01111{word-spacing:21.759192px;}
.ws4_c01111{word-spacing:23.312250px;}
.ws18_c01111{word-spacing:23.911200px;}
.ws2_c01111{word-spacing:24.818580px;}
.ws11_c01111{word-spacing:25.033770px;}
.ws15_c01111{word-spacing:25.535880px;}
.wsf_c01111{word-spacing:25.822800px;}
.ws14_c01111{word-spacing:26.109720px;}
.ws3_c01111{word-spacing:26.611830px;}
.ws0_c01111{word-spacing:26.827020px;}
.wsc_c01111{word-spacing:26.970480px;}
.ws13_c01111{word-spacing:27.042210px;}
.ws7_c01111{word-spacing:27.400860px;}
.wsb_c01111{word-spacing:32.364576px;}
.wsa_c01111{word-spacing:32.450652px;}
.ws5_c01111{word-spacing:79.261650px;}
.ws1b_c01111{word-spacing:105.508170px;}
._0_c01111{margin-left:-40.670910px;}
._5_c01111{margin-left:-37.084410px;}
._8_c01111{margin-left:-35.362890px;}
._9_c01111{margin-left:-33.497910px;}
._12_c01111{margin-left:-29.889000px;}
._3_c01111{margin-left:-27.329130px;}
._d_c01111{margin-left:-8.994480px;}
._2_c01111{margin-left:-7.818570px;}
._7_c01111{margin-left:-6.025320px;}
._e_c01111{margin-left:-4.734180px;}
._a_c01111{margin-left:-3.514770px;}
._6_c01111{margin-left:-1.936710px;}
._4_c01111{width:1.793250px;}
._10_c01111{width:2.943210px;}
._f_c01111{width:3.945150px;}
._c_c01111{width:8.135580px;}
._11_c01111{width:79.333380px;}
._b_c01111{width:95.200056px;}
._1_c01111{width:424.502910px;}
.fc0_c01111{color:rgb(0,0,0);}
.fs3_c01111{font-size:41.844000px;}
.fs1_c01111{font-size:47.820000px;}
.fs4_c01111{font-size:59.778000px;}
.fs0_c01111{font-size:71.730000px;}
.fs2_c01111{font-size:86.076000px;}
.y0_c01111{bottom:0.000000px;}
.y22_c01111{bottom:79.696500px;}
.y21_c01111{bottom:103.053000px;}
.y20_c01111{bottom:115.563000px;}
.y1f_c01111{bottom:133.495500px;}
.y1e_c01111{bottom:151.428000px;}
.y1d_c01111{bottom:174.784500px;}
.y1c_c01111{bottom:201.540000px;}
.y1b_c01111{bottom:228.430500px;}
.y1a_c01111{bottom:255.322500px;}
.y19_c01111{bottom:289.933500px;}
.y18_c01111{bottom:346.222500px;}
.y17_c01111{bottom:373.113000px;}
.y16_c01111{bottom:400.005000px;}
.y15_c01111{bottom:426.895500px;}
.y14_c01111{bottom:453.786000px;}
.y13_c01111{bottom:480.676500px;}
.y12_c01111{bottom:507.568500px;}
.y11_c01111{bottom:552.391500px;}
.y10_c01111{bottom:579.282000px;}
.yf_c01111{bottom:606.172500px;}
.ye_c01111{bottom:633.064500px;}
.yd_c01111{bottom:659.955000px;}
.yc_c01111{bottom:694.566000px;}
.yb_c01111{bottom:753.919500px;}
.ya_c01111{bottom:821.416500px;}
.y9_c01111{bottom:848.307000px;}
.y8_c01111{bottom:875.197500px;}
.y7_c01111{bottom:902.088000px;}
.y6_c01111{bottom:928.980000px;}
.y5_c01111{bottom:963.591000px;}
.y4_c01111{bottom:1019.880000px;}
.y3_c01111{bottom:1046.770500px;}
.y2_c01111{bottom:1073.662500px;}
.y1_c01111{bottom:1140.615000px;}
.h8_c01111{height:28.286544px;}
.h9_c01111{height:44.833500px;}
.h2_c01111{height:53.797500px;}
.h3_c01111{height:58.354320px;}
.h7_c01111{height:59.773500px;}
.h6_c01111{height:59.779500px;}
.h5_c01111{height:64.557000px;}
.h4_c01111{height:86.313000px;}
.h1_c01111{height:1263.750000px;}
.h0_c01111{height:1264.110000px;}
.w0_c01111{width:893.869500px;}
.w1_c01111{width:894.000000px;}
.x0_c01111{left:0.000000px;}
.x1_c01111{left:127.558500px;}
.x7_c01111{left:141.798000px;}
.x6_c01111{left:147.754500px;}
.x2_c01111{left:159.838500px;}
.x4_c01111{left:277.759500px;}
.x3_c01111{left:284.541000px;}
.x5_c01111{left:485.833500px;}
@media print{
.v4_c01111{vertical-align:-19.285333pt;}
.v0_c01111{vertical-align:0.000000pt;}
.v3_c01111{vertical-align:5.317333pt;}
.v2_c01111{vertical-align:19.338667pt;}
.v1_c01111{vertical-align:23.136000pt;}
.ls2_c01111{letter-spacing:0.000000pt;}
.ls1_c01111{letter-spacing:2.670901pt;}
.ls0_c01111{letter-spacing:24.778293pt;}
.ws1_c01111{word-spacing:-0.063760pt;}
.ws1c_c01111{word-spacing:-0.053136pt;}
.ws10_c01111{word-spacing:-0.042507pt;}
.ws1a_c01111{word-spacing:-0.037195pt;}
.ws1d_c01111{word-spacing:0.000000pt;}
.ws16_c01111{word-spacing:13.709088pt;}
.wse_c01111{word-spacing:13.835920pt;}
.ws12_c01111{word-spacing:16.003760pt;}
.ws6_c01111{word-spacing:17.215200pt;}
.ws19_c01111{word-spacing:17.641152pt;}
.ws9_c01111{word-spacing:18.745440pt;}
.wsd_c01111{word-spacing:18.872960pt;}
.ws8_c01111{word-spacing:19.255520pt;}
.ws17_c01111{word-spacing:19.341504pt;}
.ws4_c01111{word-spacing:20.722000pt;}
.ws18_c01111{word-spacing:21.254400pt;}
.ws2_c01111{word-spacing:22.060960pt;}
.ws11_c01111{word-spacing:22.252240pt;}
.ws15_c01111{word-spacing:22.698560pt;}
.wsf_c01111{word-spacing:22.953600pt;}
.ws14_c01111{word-spacing:23.208640pt;}
.ws3_c01111{word-spacing:23.654960pt;}
.ws0_c01111{word-spacing:23.846240pt;}
.wsc_c01111{word-spacing:23.973760pt;}
.ws13_c01111{word-spacing:24.037520pt;}
.ws7_c01111{word-spacing:24.356320pt;}
.wsb_c01111{word-spacing:28.768512pt;}
.wsa_c01111{word-spacing:28.845024pt;}
.ws5_c01111{word-spacing:70.454800pt;}
.ws1b_c01111{word-spacing:93.785040pt;}
._0_c01111{margin-left:-36.151920pt;}
._5_c01111{margin-left:-32.963920pt;}
._8_c01111{margin-left:-31.433680pt;}
._9_c01111{margin-left:-29.775920pt;}
._12_c01111{margin-left:-26.568000pt;}
._3_c01111{margin-left:-24.292560pt;}
._d_c01111{margin-left:-7.995093pt;}
._2_c01111{margin-left:-6.949840pt;}
._7_c01111{margin-left:-5.355840pt;}
._e_c01111{margin-left:-4.208160pt;}
._a_c01111{margin-left:-3.124240pt;}
._6_c01111{margin-left:-1.721520pt;}
._4_c01111{width:1.594000pt;}
._10_c01111{width:2.616187pt;}
._f_c01111{width:3.506800pt;}
._c_c01111{width:7.231627pt;}
._11_c01111{width:70.518560pt;}
._b_c01111{width:84.622272pt;}
._1_c01111{width:377.335920pt;}
.fs3_c01111{font-size:37.194667pt;}
.fs1_c01111{font-size:42.506667pt;}
.fs4_c01111{font-size:53.136000pt;}
.fs0_c01111{font-size:63.760000pt;}
.fs2_c01111{font-size:76.512000pt;}
.y0_c01111{bottom:0.000000pt;}
.y22_c01111{bottom:70.841333pt;}
.y21_c01111{bottom:91.602667pt;}
.y20_c01111{bottom:102.722667pt;}
.y1f_c01111{bottom:118.662667pt;}
.y1e_c01111{bottom:134.602667pt;}
.y1d_c01111{bottom:155.364000pt;}
.y1c_c01111{bottom:179.146667pt;}
.y1b_c01111{bottom:203.049333pt;}
.y1a_c01111{bottom:226.953333pt;}
.y19_c01111{bottom:257.718667pt;}
.y18_c01111{bottom:307.753333pt;}
.y17_c01111{bottom:331.656000pt;}
.y16_c01111{bottom:355.560000pt;}
.y15_c01111{bottom:379.462667pt;}
.y14_c01111{bottom:403.365333pt;}
.y13_c01111{bottom:427.268000pt;}
.y12_c01111{bottom:451.172000pt;}
.y11_c01111{bottom:491.014667pt;}
.y10_c01111{bottom:514.917333pt;}
.yf_c01111{bottom:538.820000pt;}
.ye_c01111{bottom:562.724000pt;}
.yd_c01111{bottom:586.626667pt;}
.yc_c01111{bottom:617.392000pt;}
.yb_c01111{bottom:670.150667pt;}
.ya_c01111{bottom:730.148000pt;}
.y9_c01111{bottom:754.050667pt;}
.y8_c01111{bottom:777.953333pt;}
.y7_c01111{bottom:801.856000pt;}
.y6_c01111{bottom:825.760000pt;}
.y5_c01111{bottom:856.525333pt;}
.y4_c01111{bottom:906.560000pt;}
.y3_c01111{bottom:930.462667pt;}
.y2_c01111{bottom:954.366667pt;}
.y1_c01111{bottom:1013.880000pt;}
.h8_c01111{height:25.143595pt;}
.h9_c01111{height:39.852000pt;}
.h2_c01111{height:47.820000pt;}
.h3_c01111{height:51.870507pt;}
.h7_c01111{height:53.132000pt;}
.h6_c01111{height:53.137333pt;}
.h5_c01111{height:57.384000pt;}
.h4_c01111{height:76.722667pt;}
.h1_c01111{height:1123.333333pt;}
.h0_c01111{height:1123.653333pt;}
.w0_c01111{width:794.550667pt;}
.w1_c01111{width:794.666667pt;}
.x0_c01111{left:0.000000pt;}
.x1_c01111{left:113.385333pt;}
.x7_c01111{left:126.042667pt;}
.x6_c01111{left:131.337333pt;}
.x2_c01111{left:142.078667pt;}
.x4_c01111{left:246.897333pt;}
.x3_c01111{left:252.925333pt;}
.x5_c01111{left:431.852000pt;}
}





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

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





.ff0_c01112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01112;src:url('chunks/assets/font_e1d57d0af70fc3b02f399442.woff2')format("woff");}.ff1_c01112{font-family:ff1_c01112;line-height:1.001000;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_c01112;src:url('chunks/assets/font_092e16d8f37f31dc6119741e.woff2')format("woff");}.ff2_c01112{font-family:ff2_c01112;line-height:1.001000;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_c01112;src:url('chunks/assets/font_2f99ac44e498a39bcba827bc.woff2')format("woff");}.ff3_c01112{font-family:ff3_c01112;line-height:1.001000;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_c01112;src:url('chunks/assets/font_8a4f93926d30a181e6b5a42e.woff2')format("woff");}.ff4_c01112{font-family:ff4_c01112;line-height:0.697000;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_c01112;src:url('chunks/assets/font_9b47c68d944c342cabb14169.woff2')format("woff");}.ff5_c01112{font-family:ff5_c01112;line-height:1.000000;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_c01112;src:url('chunks/assets/font_662471eb65e6de18421814fd.woff2')format("woff");}.ff6_c01112{font-family:ff6_c01112;line-height:0.696000;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_c01112;src:url('chunks/assets/font_260faeb46f223d91f767d748.woff2')format("woff");}.ff7_c01112{font-family:ff7_c01112;line-height:1.000000;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_c01112;src:url('chunks/assets/font_14033dc8371bbbdabd4f07d1.woff2')format("woff");}.ff8_c01112{font-family:ff8_c01112;line-height:1.000000;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_c01112{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);}
.v3_c01112{vertical-align:-21.696000px;}
.v0_c01112{vertical-align:0.000000px;}
.v2_c01112{vertical-align:18.132000px;}
.v1_c01112{vertical-align:26.028000px;}
.ls1_c01112{letter-spacing:0.000000px;}
.ls0_c01112{letter-spacing:32.701590px;}
.sc__c01112{text-shadow:none;}
.sc0_c01112{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__c01112{-webkit-text-stroke:0px transparent;}
.sc0_c01112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01112{word-spacing:-0.071730px;}
.ws9_c01112{word-spacing:-0.047820px;}
.ws22_c01112{word-spacing:-0.041844px;}
.ws26_c01112{word-spacing:0.000000px;}
.ws23_c01112{word-spacing:15.900948px;}
.ws16_c01112{word-spacing:16.210980px;}
.wsa_c01112{word-spacing:17.143470px;}
.ws24_c01112{word-spacing:17.694288px;}
.ws17_c01112{word-spacing:17.860770px;}
.ws15_c01112{word-spacing:18.075960px;}
.wse_c01112{word-spacing:18.434610px;}
.ws25_c01112{word-spacing:19.846296px;}
.wsf_c01112{word-spacing:20.801700px;}
.ws11_c01112{word-spacing:21.805920px;}
.ws14_c01112{word-spacing:21.877650px;}
.ws4_c01112{word-spacing:23.312250px;}
.ws1f_c01112{word-spacing:23.383980px;}
.ws8_c01112{word-spacing:25.033770px;}
.ws20_c01112{word-spacing:25.105500px;}
.ws1d_c01112{word-spacing:25.320690px;}
.ws18_c01112{word-spacing:25.535880px;}
.wsb_c01112{word-spacing:26.755290px;}
.ws0_c01112{word-spacing:26.827020px;}
.wsd_c01112{word-spacing:27.042210px;}
.ws13_c01112{word-spacing:27.197310px;}
.ws10_c01112{word-spacing:29.050650px;}
.ws1e_c01112{word-spacing:29.552760px;}
.ws3_c01112{word-spacing:31.561200px;}
.ws1c_c01112{word-spacing:31.632930px;}
.ws21_c01112{word-spacing:31.848120px;}
.ws19_c01112{word-spacing:32.637150px;}
.ws1b_c01112{word-spacing:33.569640px;}
.wsc_c01112{word-spacing:33.713100px;}
.ws2_c01112{word-spacing:34.071750px;}
.ws5_c01112{word-spacing:34.717320px;}
.ws6_c01112{word-spacing:35.004240px;}
.ws7_c01112{word-spacing:35.793270px;}
.ws12_c01112{word-spacing:36.284820px;}
.ws1a_c01112{word-spacing:38.570040px;}
._0_c01112{margin-left:-40.670910px;}
._c_c01112{margin-left:-36.940950px;}
._4_c01112{margin-left:-35.147700px;}
._8_c01112{margin-left:-32.995800px;}
._11_c01112{margin-left:-30.013044px;}
._3_c01112{margin-left:-27.329130px;}
._2_c01112{margin-left:-7.818570px;}
._7_c01112{margin-left:-6.025320px;}
._9_c01112{margin-left:-4.303800px;}
._a_c01112{margin-left:-3.227850px;}
._6_c01112{margin-left:-1.936710px;}
._5_c01112{width:1.793250px;}
._d_c01112{width:3.348720px;}
._e_c01112{width:4.770690px;}
._f_c01112{width:27.616050px;}
._b_c01112{width:39.280860px;}
._10_c01112{width:79.333380px;}
._1_c01112{width:424.502910px;}
.fc0_c01112{color:rgb(0,0,0);}
.fs2_c01112{font-size:41.844000px;}
.fs1_c01112{font-size:47.820000px;}
.fs3_c01112{font-size:59.778000px;}
.fs0_c01112{font-size:71.730000px;}
.y0_c01112{bottom:0.000000px;}
.y23_c01112{bottom:96.027000px;}
.y22_c01112{bottom:119.383500px;}
.y21_c01112{bottom:146.139000px;}
.y20_c01112{bottom:173.029500px;}
.y1f_c01112{bottom:199.921500px;}
.y1e_c01112{bottom:226.812000px;}
.y1d_c01112{bottom:261.424500px;}
.y1c_c01112{bottom:317.712000px;}
.y1b_c01112{bottom:344.604000px;}
.y1a_c01112{bottom:371.494500px;}
.y19_c01112{bottom:398.385000px;}
.y18_c01112{bottom:425.275500px;}
.y17_c01112{bottom:452.167500px;}
.y16_c01112{bottom:479.058000px;}
.y15_c01112{bottom:505.948500px;}
.y14_c01112{bottom:532.839000px;}
.y13_c01112{bottom:559.731000px;}
.y12_c01112{bottom:586.621500px;}
.y11_c01112{bottom:613.512000px;}
.y10_c01112{bottom:640.402500px;}
.yf_c01112{bottom:667.294500px;}
.ye_c01112{bottom:694.185000px;}
.yd_c01112{bottom:739.008000px;}
.yc_c01112{bottom:765.898500px;}
.yb_c01112{bottom:792.790500px;}
.ya_c01112{bottom:819.681000px;}
.y9_c01112{bottom:846.571500px;}
.y8_c01112{bottom:873.462000px;}
.y7_c01112{bottom:919.780500px;}
.y6_c01112{bottom:946.671000px;}
.y5_c01112{bottom:973.563000px;}
.y4_c01112{bottom:1019.880000px;}
.y3_c01112{bottom:1046.770500px;}
.y2_c01112{bottom:1073.662500px;}
.y1_c01112{bottom:1140.615000px;}
.h5_c01112{height:28.286544px;}
.h6_c01112{height:44.833500px;}
.h2_c01112{height:53.797500px;}
.h3_c01112{height:58.354320px;}
.h4_c01112{height:71.929500px;}
.h1_c01112{height:1263.750000px;}
.h0_c01112{height:1264.110000px;}
.w0_c01112{width:893.869500px;}
.w1_c01112{width:894.000000px;}
.x0_c01112{left:0.000000px;}
.x1_c01112{left:127.558500px;}
.x6_c01112{left:141.798000px;}
.x2_c01112{left:159.838500px;}
.x4_c01112{left:171.456000px;}
.x3_c01112{left:197.794500px;}
.x5_c01112{left:461.316000px;}
@media print{
.v3_c01112{vertical-align:-19.285333pt;}
.v0_c01112{vertical-align:0.000000pt;}
.v2_c01112{vertical-align:16.117333pt;}
.v1_c01112{vertical-align:23.136000pt;}
.ls1_c01112{letter-spacing:0.000000pt;}
.ls0_c01112{letter-spacing:29.068080pt;}
.ws1_c01112{word-spacing:-0.063760pt;}
.ws9_c01112{word-spacing:-0.042507pt;}
.ws22_c01112{word-spacing:-0.037195pt;}
.ws26_c01112{word-spacing:0.000000pt;}
.ws23_c01112{word-spacing:14.134176pt;}
.ws16_c01112{word-spacing:14.409760pt;}
.wsa_c01112{word-spacing:15.238640pt;}
.ws24_c01112{word-spacing:15.728256pt;}
.ws17_c01112{word-spacing:15.876240pt;}
.ws15_c01112{word-spacing:16.067520pt;}
.wse_c01112{word-spacing:16.386320pt;}
.ws25_c01112{word-spacing:17.641152pt;}
.wsf_c01112{word-spacing:18.490400pt;}
.ws11_c01112{word-spacing:19.383040pt;}
.ws14_c01112{word-spacing:19.446800pt;}
.ws4_c01112{word-spacing:20.722000pt;}
.ws1f_c01112{word-spacing:20.785760pt;}
.ws8_c01112{word-spacing:22.252240pt;}
.ws20_c01112{word-spacing:22.316000pt;}
.ws1d_c01112{word-spacing:22.507280pt;}
.ws18_c01112{word-spacing:22.698560pt;}
.wsb_c01112{word-spacing:23.782480pt;}
.ws0_c01112{word-spacing:23.846240pt;}
.wsd_c01112{word-spacing:24.037520pt;}
.ws13_c01112{word-spacing:24.175387pt;}
.ws10_c01112{word-spacing:25.822800pt;}
.ws1e_c01112{word-spacing:26.269120pt;}
.ws3_c01112{word-spacing:28.054400pt;}
.ws1c_c01112{word-spacing:28.118160pt;}
.ws21_c01112{word-spacing:28.309440pt;}
.ws19_c01112{word-spacing:29.010800pt;}
.ws1b_c01112{word-spacing:29.839680pt;}
.wsc_c01112{word-spacing:29.967200pt;}
.ws2_c01112{word-spacing:30.286000pt;}
.ws5_c01112{word-spacing:30.859840pt;}
.ws6_c01112{word-spacing:31.114880pt;}
.ws7_c01112{word-spacing:31.816240pt;}
.ws12_c01112{word-spacing:32.253173pt;}
.ws1a_c01112{word-spacing:34.284480pt;}
._0_c01112{margin-left:-36.151920pt;}
._c_c01112{margin-left:-32.836400pt;}
._4_c01112{margin-left:-31.242400pt;}
._8_c01112{margin-left:-29.329600pt;}
._11_c01112{margin-left:-26.678261pt;}
._3_c01112{margin-left:-24.292560pt;}
._2_c01112{margin-left:-6.949840pt;}
._7_c01112{margin-left:-5.355840pt;}
._9_c01112{margin-left:-3.825600pt;}
._a_c01112{margin-left:-2.869200pt;}
._6_c01112{margin-left:-1.721520pt;}
._5_c01112{width:1.594000pt;}
._d_c01112{width:2.976640pt;}
._e_c01112{width:4.240613pt;}
._f_c01112{width:24.547600pt;}
._b_c01112{width:34.916320pt;}
._10_c01112{width:70.518560pt;}
._1_c01112{width:377.335920pt;}
.fs2_c01112{font-size:37.194667pt;}
.fs1_c01112{font-size:42.506667pt;}
.fs3_c01112{font-size:53.136000pt;}
.fs0_c01112{font-size:63.760000pt;}
.y0_c01112{bottom:0.000000pt;}
.y23_c01112{bottom:85.357333pt;}
.y22_c01112{bottom:106.118667pt;}
.y21_c01112{bottom:129.901333pt;}
.y20_c01112{bottom:153.804000pt;}
.y1f_c01112{bottom:177.708000pt;}
.y1e_c01112{bottom:201.610667pt;}
.y1d_c01112{bottom:232.377333pt;}
.y1c_c01112{bottom:282.410667pt;}
.y1b_c01112{bottom:306.314667pt;}
.y1a_c01112{bottom:330.217333pt;}
.y19_c01112{bottom:354.120000pt;}
.y18_c01112{bottom:378.022667pt;}
.y17_c01112{bottom:401.926667pt;}
.y16_c01112{bottom:425.829333pt;}
.y15_c01112{bottom:449.732000pt;}
.y14_c01112{bottom:473.634667pt;}
.y13_c01112{bottom:497.538667pt;}
.y12_c01112{bottom:521.441333pt;}
.y11_c01112{bottom:545.344000pt;}
.y10_c01112{bottom:569.246667pt;}
.yf_c01112{bottom:593.150667pt;}
.ye_c01112{bottom:617.053333pt;}
.yd_c01112{bottom:656.896000pt;}
.yc_c01112{bottom:680.798667pt;}
.yb_c01112{bottom:704.702667pt;}
.ya_c01112{bottom:728.605333pt;}
.y9_c01112{bottom:752.508000pt;}
.y8_c01112{bottom:776.410667pt;}
.y7_c01112{bottom:817.582667pt;}
.y6_c01112{bottom:841.485333pt;}
.y5_c01112{bottom:865.389333pt;}
.y4_c01112{bottom:906.560000pt;}
.y3_c01112{bottom:930.462667pt;}
.y2_c01112{bottom:954.366667pt;}
.y1_c01112{bottom:1013.880000pt;}
.h5_c01112{height:25.143595pt;}
.h6_c01112{height:39.852000pt;}
.h2_c01112{height:47.820000pt;}
.h3_c01112{height:51.870507pt;}
.h4_c01112{height:63.937333pt;}
.h1_c01112{height:1123.333333pt;}
.h0_c01112{height:1123.653333pt;}
.w0_c01112{width:794.550667pt;}
.w1_c01112{width:794.666667pt;}
.x0_c01112{left:0.000000pt;}
.x1_c01112{left:113.385333pt;}
.x6_c01112{left:126.042667pt;}
.x2_c01112{left:142.078667pt;}
.x4_c01112{left:152.405333pt;}
.x3_c01112{left:175.817333pt;}
.x5_c01112{left:410.058667pt;}
}





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

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





.ff0_c01113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01113;src:url('chunks/assets/font_013579607de3d0bea0e2ac23.woff2')format("woff");}.ff1_c01113{font-family:ff1_c01113;line-height:1.001000;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_c01113;src:url('chunks/assets/font_b7e5788a2683e13303cebefb.woff2')format("woff");}.ff2_c01113{font-family:ff2_c01113;line-height:1.001000;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_c01113;src:url('chunks/assets/font_f26257cfe5c2b98d0a9114bb.woff2')format("woff");}.ff3_c01113{font-family:ff3_c01113;line-height:1.000000;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_c01113;src:url('chunks/assets/font_4c18d7e9a898f06a416a7ce9.woff2')format("woff");}.ff4_c01113{font-family:ff4_c01113;line-height:0.697000;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_c01113;src:url('chunks/assets/font_e3c5366e6a42e0eed8e423a7.woff2')format("woff");}.ff5_c01113{font-family:ff5_c01113;line-height:1.001000;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_c01113;src:url('chunks/assets/font_f04e6ac3046b32ff63af9053.woff2')format("woff");}.ff6_c01113{font-family:ff6_c01113;line-height:0.696000;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_c01113;src:url('chunks/assets/font_7a9e6da21a26b7412cde4996.woff2')format("woff");}.ff7_c01113{font-family:ff7_c01113;line-height:1.000000;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_c01113{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);}
.v4_c01113{vertical-align:-21.690000px;}
.v0_c01113{vertical-align:0.000000px;}
.v1_c01113{vertical-align:5.976000px;}
.v3_c01113{vertical-align:18.132000px;}
.v2_c01113{vertical-align:26.028000px;}
.ls0_c01113{letter-spacing:0.000000px;}
.sc__c01113{text-shadow:none;}
.sc0_c01113{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__c01113{-webkit-text-stroke:0px transparent;}
.sc0_c01113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01113{word-spacing:-0.071730px;}
.ws24_c01113{word-spacing:-0.059778px;}
.ws8_c01113{word-spacing:-0.047820px;}
.ws22_c01113{word-spacing:-0.041844px;}
.ws25_c01113{word-spacing:0.000000px;}
.ws1a_c01113{word-spacing:16.354440px;}
.ws20_c01113{word-spacing:17.215200px;}
.ws21_c01113{word-spacing:18.219420px;}
.ws1b_c01113{word-spacing:18.578070px;}
.ws19_c01113{word-spacing:18.793260px;}
.wse_c01113{word-spacing:19.223640px;}
.wsc_c01113{word-spacing:19.654020px;}
.ws1f_c01113{word-spacing:20.586510px;}
.ws11_c01113{word-spacing:21.016890px;}
.wsd_c01113{word-spacing:21.088620px;}
.ws6_c01113{word-spacing:21.232080px;}
.ws18_c01113{word-spacing:22.738410px;}
.ws12_c01113{word-spacing:22.881870px;}
.ws7_c01113{word-spacing:23.312250px;}
.ws1d_c01113{word-spacing:23.383980px;}
.wsb_c01113{word-spacing:24.029550px;}
.ws1c_c01113{word-spacing:24.388200px;}
.ws10_c01113{word-spacing:24.641310px;}
.ws15_c01113{word-spacing:24.675120px;}
.ws14_c01113{word-spacing:25.464150px;}
.ws16_c01113{word-spacing:26.253180px;}
.ws1e_c01113{word-spacing:26.540100px;}
.ws0_c01113{word-spacing:26.827020px;}
.ws5_c01113{word-spacing:26.970480px;}
.ws4_c01113{word-spacing:27.042210px;}
.ws17_c01113{word-spacing:28.118160px;}
.ws9_c01113{word-spacing:28.333350px;}
.ws13_c01113{word-spacing:30.795780px;}
.wsa_c01113{word-spacing:32.350230px;}
.ws2_c01113{word-spacing:32.450652px;}
.wsf_c01113{word-spacing:33.938820px;}
.ws3_c01113{word-spacing:79.261650px;}
.ws23_c01113{word-spacing:86.618322px;}
._0_c01113{margin-left:-40.670910px;}
._c_c01113{margin-left:-36.797490px;}
._f_c01113{margin-left:-35.147700px;}
._9_c01113{margin-left:-33.713100px;}
._14_c01113{margin-left:-32.637150px;}
._8_c01113{margin-left:-27.573012px;}
._4_c01113{margin-left:-8.994480px;}
._3_c01113{margin-left:-7.574688px;}
._7_c01113{margin-left:-5.881860px;}
._5_c01113{margin-left:-4.662450px;}
._11_c01113{margin-left:-3.586500px;}
._b_c01113{margin-left:-2.438820px;}
._6_c01113{margin-left:-1.434600px;}
._a_c01113{width:1.936710px;}
._d_c01113{width:3.801690px;}
._10_c01113{width:20.729970px;}
._13_c01113{width:21.822840px;}
._12_c01113{width:31.359900px;}
._e_c01113{width:79.333380px;}
._2_c01113{width:95.200056px;}
._1_c01113{width:424.502910px;}
.fc0_c01113{color:rgb(0,0,0);}
.fs3_c01113{font-size:41.844000px;}
.fs2_c01113{font-size:47.820000px;}
.fs4_c01113{font-size:59.778000px;}
.fs0_c01113{font-size:71.730000px;}
.fs1_c01113{font-size:86.076000px;}
.y0_c01113{bottom:0.000000px;}
.y23_c01113{bottom:78.103500px;}
.y22_c01113{bottom:101.458500px;}
.y21_c01113{bottom:124.728000px;}
.y20_c01113{bottom:151.618500px;}
.y1f_c01113{bottom:178.510500px;}
.y1e_c01113{bottom:213.121500px;}
.y1d_c01113{bottom:269.410500px;}
.y1c_c01113{bottom:296.301000px;}
.y1b_c01113{bottom:323.193000px;}
.y1a_c01113{bottom:350.083500px;}
.y19_c01113{bottom:376.974000px;}
.y18_c01113{bottom:403.864500px;}
.y17_c01113{bottom:430.756500px;}
.y16_c01113{bottom:457.647000px;}
.y15_c01113{bottom:484.537500px;}
.y14_c01113{bottom:511.428000px;}
.y13_c01113{bottom:538.318500px;}
.y12_c01113{bottom:565.210500px;}
.y11_c01113{bottom:592.101000px;}
.y10_c01113{bottom:618.991500px;}
.yf_c01113{bottom:645.882000px;}
.ye_c01113{bottom:672.774000px;}
.yd_c01113{bottom:699.664500px;}
.yc_c01113{bottom:726.555000px;}
.yb_c01113{bottom:753.445500px;}
.ya_c01113{bottom:780.337500px;}
.y9_c01113{bottom:814.948500px;}
.y8_c01113{bottom:871.237500px;}
.y7_c01113{bottom:898.128000px;}
.y6_c01113{bottom:925.020000px;}
.y5_c01113{bottom:951.910500px;}
.y4_c01113{bottom:978.801000px;}
.y3_c01113{bottom:1013.413500px;}
.y2_c01113{bottom:1072.765500px;}
.y1_c01113{bottom:1140.615000px;}
.h7_c01113{height:28.286544px;}
.h8_c01113{height:44.833500px;}
.h2_c01113{height:53.797500px;}
.h5_c01113{height:58.354320px;}
.h4_c01113{height:59.773500px;}
.h3_c01113{height:64.557000px;}
.h6_c01113{height:71.929500px;}
.h1_c01113{height:1263.750000px;}
.h0_c01113{height:1264.110000px;}
.w0_c01113{width:893.869500px;}
.w1_c01113{width:894.000000px;}
.x0_c01113{left:0.000000px;}
.x1_c01113{left:127.558500px;}
.x7_c01113{left:141.798000px;}
.x4_c01113{left:159.838500px;}
.x2_c01113{left:277.759500px;}
.x5_c01113{left:464.602500px;}
.x3_c01113{left:488.328000px;}
.x6_c01113{left:676.639500px;}
@media print{
.v4_c01113{vertical-align:-19.280000pt;}
.v0_c01113{vertical-align:0.000000pt;}
.v1_c01113{vertical-align:5.312000pt;}
.v3_c01113{vertical-align:16.117333pt;}
.v2_c01113{vertical-align:23.136000pt;}
.ls0_c01113{letter-spacing:0.000000pt;}
.ws1_c01113{word-spacing:-0.063760pt;}
.ws24_c01113{word-spacing:-0.053136pt;}
.ws8_c01113{word-spacing:-0.042507pt;}
.ws22_c01113{word-spacing:-0.037195pt;}
.ws25_c01113{word-spacing:0.000000pt;}
.ws1a_c01113{word-spacing:14.537280pt;}
.ws20_c01113{word-spacing:15.302400pt;}
.ws21_c01113{word-spacing:16.195040pt;}
.ws1b_c01113{word-spacing:16.513840pt;}
.ws19_c01113{word-spacing:16.705120pt;}
.wse_c01113{word-spacing:17.087680pt;}
.wsc_c01113{word-spacing:17.470240pt;}
.ws1f_c01113{word-spacing:18.299120pt;}
.ws11_c01113{word-spacing:18.681680pt;}
.wsd_c01113{word-spacing:18.745440pt;}
.ws6_c01113{word-spacing:18.872960pt;}
.ws18_c01113{word-spacing:20.211920pt;}
.ws12_c01113{word-spacing:20.339440pt;}
.ws7_c01113{word-spacing:20.722000pt;}
.ws1d_c01113{word-spacing:20.785760pt;}
.wsb_c01113{word-spacing:21.359600pt;}
.ws1c_c01113{word-spacing:21.678400pt;}
.ws10_c01113{word-spacing:21.903387pt;}
.ws15_c01113{word-spacing:21.933440pt;}
.ws14_c01113{word-spacing:22.634800pt;}
.ws16_c01113{word-spacing:23.336160pt;}
.ws1e_c01113{word-spacing:23.591200pt;}
.ws0_c01113{word-spacing:23.846240pt;}
.ws5_c01113{word-spacing:23.973760pt;}
.ws4_c01113{word-spacing:24.037520pt;}
.ws17_c01113{word-spacing:24.993920pt;}
.ws9_c01113{word-spacing:25.185200pt;}
.ws13_c01113{word-spacing:27.374027pt;}
.wsa_c01113{word-spacing:28.755760pt;}
.ws2_c01113{word-spacing:28.845024pt;}
.wsf_c01113{word-spacing:30.167840pt;}
.ws3_c01113{word-spacing:70.454800pt;}
.ws23_c01113{word-spacing:76.994064pt;}
._0_c01113{margin-left:-36.151920pt;}
._c_c01113{margin-left:-32.708880pt;}
._f_c01113{margin-left:-31.242400pt;}
._9_c01113{margin-left:-29.967200pt;}
._14_c01113{margin-left:-29.010800pt;}
._8_c01113{margin-left:-24.509344pt;}
._4_c01113{margin-left:-7.995093pt;}
._3_c01113{margin-left:-6.733056pt;}
._7_c01113{margin-left:-5.228320pt;}
._5_c01113{margin-left:-4.144400pt;}
._11_c01113{margin-left:-3.188000pt;}
._b_c01113{margin-left:-2.167840pt;}
._6_c01113{margin-left:-1.275200pt;}
._a_c01113{width:1.721520pt;}
._d_c01113{width:3.379280pt;}
._10_c01113{width:18.426640pt;}
._13_c01113{width:19.398080pt;}
._12_c01113{width:27.875467pt;}
._e_c01113{width:70.518560pt;}
._2_c01113{width:84.622272pt;}
._1_c01113{width:377.335920pt;}
.fs3_c01113{font-size:37.194667pt;}
.fs2_c01113{font-size:42.506667pt;}
.fs4_c01113{font-size:53.136000pt;}
.fs0_c01113{font-size:63.760000pt;}
.fs1_c01113{font-size:76.512000pt;}
.y0_c01113{bottom:0.000000pt;}
.y23_c01113{bottom:69.425333pt;}
.y22_c01113{bottom:90.185333pt;}
.y21_c01113{bottom:110.869333pt;}
.y20_c01113{bottom:134.772000pt;}
.y1f_c01113{bottom:158.676000pt;}
.y1e_c01113{bottom:189.441333pt;}
.y1d_c01113{bottom:239.476000pt;}
.y1c_c01113{bottom:263.378667pt;}
.y1b_c01113{bottom:287.282667pt;}
.y1a_c01113{bottom:311.185333pt;}
.y19_c01113{bottom:335.088000pt;}
.y18_c01113{bottom:358.990667pt;}
.y17_c01113{bottom:382.894667pt;}
.y16_c01113{bottom:406.797333pt;}
.y15_c01113{bottom:430.700000pt;}
.y14_c01113{bottom:454.602667pt;}
.y13_c01113{bottom:478.505333pt;}
.y12_c01113{bottom:502.409333pt;}
.y11_c01113{bottom:526.312000pt;}
.y10_c01113{bottom:550.214667pt;}
.yf_c01113{bottom:574.117333pt;}
.ye_c01113{bottom:598.021333pt;}
.yd_c01113{bottom:621.924000pt;}
.yc_c01113{bottom:645.826667pt;}
.yb_c01113{bottom:669.729333pt;}
.ya_c01113{bottom:693.633333pt;}
.y9_c01113{bottom:724.398667pt;}
.y8_c01113{bottom:774.433333pt;}
.y7_c01113{bottom:798.336000pt;}
.y6_c01113{bottom:822.240000pt;}
.y5_c01113{bottom:846.142667pt;}
.y4_c01113{bottom:870.045333pt;}
.y3_c01113{bottom:900.812000pt;}
.y2_c01113{bottom:953.569333pt;}
.y1_c01113{bottom:1013.880000pt;}
.h7_c01113{height:25.143595pt;}
.h8_c01113{height:39.852000pt;}
.h2_c01113{height:47.820000pt;}
.h5_c01113{height:51.870507pt;}
.h4_c01113{height:53.132000pt;}
.h3_c01113{height:57.384000pt;}
.h6_c01113{height:63.937333pt;}
.h1_c01113{height:1123.333333pt;}
.h0_c01113{height:1123.653333pt;}
.w0_c01113{width:794.550667pt;}
.w1_c01113{width:794.666667pt;}
.x0_c01113{left:0.000000pt;}
.x1_c01113{left:113.385333pt;}
.x7_c01113{left:126.042667pt;}
.x4_c01113{left:142.078667pt;}
.x2_c01113{left:246.897333pt;}
.x5_c01113{left:412.980000pt;}
.x3_c01113{left:434.069333pt;}
.x6_c01113{left:601.457333pt;}
}





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

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





.ff0_c01114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01114;src:url('chunks/assets/font_5a8a874247276f6008e260be.woff2')format("woff");}.ff1_c01114{font-family:ff1_c01114;line-height:1.001000;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_c01114;src:url('chunks/assets/font_b811f52121f0b82c5c58950c.woff2')format("woff");}.ff2_c01114{font-family:ff2_c01114;line-height:1.001000;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_c01114;src:url('chunks/assets/font_ab7ac3cf0ae3fea90f7335ca.woff2')format("woff");}.ff3_c01114{font-family:ff3_c01114;line-height:1.000000;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_c01114;src:url('chunks/assets/font_51c09ab8a62fd6193e379b41.woff2')format("woff");}.ff4_c01114{font-family:ff4_c01114;line-height:0.697000;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_c01114;src:url('chunks/assets/font_6847dcfec3ade9290025f105.woff2')format("woff");}.ff5_c01114{font-family:ff5_c01114;line-height:1.001000;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_c01114;src:url('chunks/assets/font_2dbddf05d981b0f9aa6526b8.woff2')format("woff");}.ff6_c01114{font-family:ff6_c01114;line-height:0.696000;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_c01114;src:url('chunks/assets/font_3e74bc8aedf7514ee11dcb41.woff2')format("woff");}.ff7_c01114{font-family:ff7_c01114;line-height:1.000000;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_c01114;src:url('chunks/assets/font_eb9ec846b9b9846b8b7b2542.woff2')format("woff");}.ff8_c01114{font-family:ff8_c01114;line-height:1.000000;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_c01114{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);}
.v3_c01114{vertical-align:-21.690000px;}
.v0_c01114{vertical-align:0.000000px;}
.v1_c01114{vertical-align:7.176000px;}
.v2_c01114{vertical-align:26.028000px;}
.ls0_c01114{letter-spacing:0.000000px;}
.sc__c01114{text-shadow:none;}
.sc0_c01114{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__c01114{-webkit-text-stroke:0px transparent;}
.sc0_c01114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01114{word-spacing:-0.071730px;}
.ws8_c01114{word-spacing:-0.047820px;}
.ws1a_c01114{word-spacing:-0.041844px;}
.ws1e_c01114{word-spacing:0.000000px;}
.wsa_c01114{word-spacing:15.995790px;}
.ws1b_c01114{word-spacing:17.096508px;}
.wsc_c01114{word-spacing:17.430390px;}
.ws1c_c01114{word-spacing:18.770292px;}
.ws1d_c01114{word-spacing:20.563632px;}
.wse_c01114{word-spacing:20.801700px;}
.wsf_c01114{word-spacing:21.016890px;}
.ws10_c01114{word-spacing:22.523220px;}
.wsb_c01114{word-spacing:23.025330px;}
.ws3_c01114{word-spacing:23.312250px;}
.ws15_c01114{word-spacing:23.383980px;}
.ws17_c01114{word-spacing:24.029550px;}
.ws18_c01114{word-spacing:24.459930px;}
.ws14_c01114{word-spacing:24.962040px;}
.wsd_c01114{word-spacing:25.105500px;}
.ws11_c01114{word-spacing:25.177230px;}
.ws16_c01114{word-spacing:25.679340px;}
.ws19_c01114{word-spacing:26.109720px;}
.ws12_c01114{word-spacing:26.755290px;}
.ws0_c01114{word-spacing:26.827020px;}
.ws6_c01114{word-spacing:27.042210px;}
.ws7_c01114{word-spacing:27.544320px;}
.ws13_c01114{word-spacing:29.983140px;}
.ws5_c01114{word-spacing:32.450652px;}
.ws9_c01114{word-spacing:34.000020px;}
.ws2_c01114{word-spacing:34.717320px;}
.ws4_c01114{word-spacing:95.113980px;}
._0_c01114{margin-left:-40.670910px;}
._a_c01114{margin-left:-37.084410px;}
._6_c01114{margin-left:-35.147700px;}
._7_c01114{margin-left:-33.569640px;}
._12_c01114{margin-left:-31.626180px;}
._11_c01114{margin-left:-29.871330px;}
._4_c01114{margin-left:-27.400860px;}
._3_c01114{margin-left:-7.890300px;}
._b_c01114{margin-left:-5.881860px;}
._9_c01114{margin-left:-4.805910px;}
._e_c01114{margin-left:-3.729960px;}
._5_c01114{margin-left:-1.864980px;}
._2_c01114{width:1.936710px;}
._c_c01114{width:3.015720px;}
._f_c01114{width:21.160350px;}
._10_c01114{width:23.889900px;}
._d_c01114{width:36.008460px;}
._8_c01114{width:79.333380px;}
._1_c01114{width:424.502910px;}
.fc0_c01114{color:rgb(0,0,0);}
.fs3_c01114{font-size:41.844000px;}
.fs2_c01114{font-size:47.820000px;}
.fs4_c01114{font-size:59.778000px;}
.fs0_c01114{font-size:71.730000px;}
.fs1_c01114{font-size:86.076000px;}
.y0_c01114{bottom:0.000000px;}
.y22_c01114{bottom:71.973000px;}
.y21_c01114{bottom:89.905500px;}
.y20_c01114{bottom:113.260500px;}
.y1f_c01114{bottom:139.701000px;}
.y1e_c01114{bottom:166.591500px;}
.y1d_c01114{bottom:211.641000px;}
.y1c_c01114{bottom:238.531500px;}
.y1b_c01114{bottom:265.422000px;}
.y1a_c01114{bottom:310.471500px;}
.y19_c01114{bottom:337.363500px;}
.y18_c01114{bottom:364.254000px;}
.y17_c01114{bottom:391.144500px;}
.y16_c01114{bottom:418.035000px;}
.y15_c01114{bottom:444.927000px;}
.y14_c01114{bottom:471.817500px;}
.y13_c01114{bottom:498.708000px;}
.y12_c01114{bottom:525.598500px;}
.y11_c01114{bottom:552.489000px;}
.y10_c01114{bottom:579.381000px;}
.yf_c01114{bottom:606.271500px;}
.ye_c01114{bottom:633.162000px;}
.yd_c01114{bottom:660.052500px;}
.yc_c01114{bottom:686.944500px;}
.yb_c01114{bottom:721.555500px;}
.ya_c01114{bottom:777.795000px;}
.y9_c01114{bottom:804.687000px;}
.y8_c01114{bottom:831.577500px;}
.y7_c01114{bottom:858.468000px;}
.y6_c01114{bottom:885.358500px;}
.y5_c01114{bottom:919.971000px;}
.y4_c01114{bottom:979.323000px;}
.y3_c01114{bottom:1046.770500px;}
.y2_c01114{bottom:1073.662500px;}
.y1_c01114{bottom:1140.615000px;}
.h6_c01114{height:28.286544px;}
.h7_c01114{height:44.833500px;}
.h2_c01114{height:53.797500px;}
.h5_c01114{height:58.354320px;}
.h4_c01114{height:64.557000px;}
.h3_c01114{height:71.733000px;}
.h1_c01114{height:1263.750000px;}
.h0_c01114{height:1264.110000px;}
.w0_c01114{width:893.869500px;}
.w1_c01114{width:894.000000px;}
.x0_c01114{left:0.000000px;}
.x1_c01114{left:127.558500px;}
.x6_c01114{left:141.798000px;}
.x2_c01114{left:159.838500px;}
.x5_c01114{left:171.456000px;}
.x4_c01114{left:197.794500px;}
.x3_c01114{left:234.831000px;}
@media print{
.v3_c01114{vertical-align:-19.280000pt;}
.v0_c01114{vertical-align:0.000000pt;}
.v1_c01114{vertical-align:6.378667pt;}
.v2_c01114{vertical-align:23.136000pt;}
.ls0_c01114{letter-spacing:0.000000pt;}
.ws1_c01114{word-spacing:-0.063760pt;}
.ws8_c01114{word-spacing:-0.042507pt;}
.ws1a_c01114{word-spacing:-0.037195pt;}
.ws1e_c01114{word-spacing:0.000000pt;}
.wsa_c01114{word-spacing:14.218480pt;}
.ws1b_c01114{word-spacing:15.196896pt;}
.wsc_c01114{word-spacing:15.493680pt;}
.ws1c_c01114{word-spacing:16.684704pt;}
.ws1d_c01114{word-spacing:18.278784pt;}
.wse_c01114{word-spacing:18.490400pt;}
.wsf_c01114{word-spacing:18.681680pt;}
.ws10_c01114{word-spacing:20.020640pt;}
.wsb_c01114{word-spacing:20.466960pt;}
.ws3_c01114{word-spacing:20.722000pt;}
.ws15_c01114{word-spacing:20.785760pt;}
.ws17_c01114{word-spacing:21.359600pt;}
.ws18_c01114{word-spacing:21.742160pt;}
.ws14_c01114{word-spacing:22.188480pt;}
.wsd_c01114{word-spacing:22.316000pt;}
.ws11_c01114{word-spacing:22.379760pt;}
.ws16_c01114{word-spacing:22.826080pt;}
.ws19_c01114{word-spacing:23.208640pt;}
.ws12_c01114{word-spacing:23.782480pt;}
.ws0_c01114{word-spacing:23.846240pt;}
.ws6_c01114{word-spacing:24.037520pt;}
.ws7_c01114{word-spacing:24.483840pt;}
.ws13_c01114{word-spacing:26.651680pt;}
.ws5_c01114{word-spacing:28.845024pt;}
.ws9_c01114{word-spacing:30.222240pt;}
.ws2_c01114{word-spacing:30.859840pt;}
.ws4_c01114{word-spacing:84.545760pt;}
._0_c01114{margin-left:-36.151920pt;}
._a_c01114{margin-left:-32.963920pt;}
._6_c01114{margin-left:-31.242400pt;}
._7_c01114{margin-left:-29.839680pt;}
._12_c01114{margin-left:-28.112160pt;}
._11_c01114{margin-left:-26.552293pt;}
._4_c01114{margin-left:-24.356320pt;}
._3_c01114{margin-left:-7.013600pt;}
._b_c01114{margin-left:-5.228320pt;}
._9_c01114{margin-left:-4.271920pt;}
._e_c01114{margin-left:-3.315520pt;}
._5_c01114{margin-left:-1.657760pt;}
._2_c01114{width:1.721520pt;}
._c_c01114{width:2.680640pt;}
._f_c01114{width:18.809200pt;}
._10_c01114{width:21.235467pt;}
._d_c01114{width:32.007520pt;}
._8_c01114{width:70.518560pt;}
._1_c01114{width:377.335920pt;}
.fs3_c01114{font-size:37.194667pt;}
.fs2_c01114{font-size:42.506667pt;}
.fs4_c01114{font-size:53.136000pt;}
.fs0_c01114{font-size:63.760000pt;}
.fs1_c01114{font-size:76.512000pt;}
.y0_c01114{bottom:0.000000pt;}
.y22_c01114{bottom:63.976000pt;}
.y21_c01114{bottom:79.916000pt;}
.y20_c01114{bottom:100.676000pt;}
.y1f_c01114{bottom:124.178667pt;}
.y1e_c01114{bottom:148.081333pt;}
.y1d_c01114{bottom:188.125333pt;}
.y1c_c01114{bottom:212.028000pt;}
.y1b_c01114{bottom:235.930667pt;}
.y1a_c01114{bottom:275.974667pt;}
.y19_c01114{bottom:299.878667pt;}
.y18_c01114{bottom:323.781333pt;}
.y17_c01114{bottom:347.684000pt;}
.y16_c01114{bottom:371.586667pt;}
.y15_c01114{bottom:395.490667pt;}
.y14_c01114{bottom:419.393333pt;}
.y13_c01114{bottom:443.296000pt;}
.y12_c01114{bottom:467.198667pt;}
.y11_c01114{bottom:491.101333pt;}
.y10_c01114{bottom:515.005333pt;}
.yf_c01114{bottom:538.908000pt;}
.ye_c01114{bottom:562.810667pt;}
.yd_c01114{bottom:586.713333pt;}
.yc_c01114{bottom:610.617333pt;}
.yb_c01114{bottom:641.382667pt;}
.ya_c01114{bottom:691.373333pt;}
.y9_c01114{bottom:715.277333pt;}
.y8_c01114{bottom:739.180000pt;}
.y7_c01114{bottom:763.082667pt;}
.y6_c01114{bottom:786.985333pt;}
.y5_c01114{bottom:817.752000pt;}
.y4_c01114{bottom:870.509333pt;}
.y3_c01114{bottom:930.462667pt;}
.y2_c01114{bottom:954.366667pt;}
.y1_c01114{bottom:1013.880000pt;}
.h6_c01114{height:25.143595pt;}
.h7_c01114{height:39.852000pt;}
.h2_c01114{height:47.820000pt;}
.h5_c01114{height:51.870507pt;}
.h4_c01114{height:57.384000pt;}
.h3_c01114{height:63.762667pt;}
.h1_c01114{height:1123.333333pt;}
.h0_c01114{height:1123.653333pt;}
.w0_c01114{width:794.550667pt;}
.w1_c01114{width:794.666667pt;}
.x0_c01114{left:0.000000pt;}
.x1_c01114{left:113.385333pt;}
.x6_c01114{left:126.042667pt;}
.x2_c01114{left:142.078667pt;}
.x5_c01114{left:152.405333pt;}
.x4_c01114{left:175.817333pt;}
.x3_c01114{left:208.738667pt;}
}





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

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





.ff0_c01115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01115;src:url('chunks/assets/font_539a19512eb7fc8cb961a907.woff2')format("woff");}.ff1_c01115{font-family:ff1_c01115;line-height:1.001000;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_c01115;src:url('chunks/assets/font_8b549462335aeef8bd9345c0.woff2')format("woff");}.ff2_c01115{font-family:ff2_c01115;line-height:1.001000;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_c01115;src:url('chunks/assets/font_931fd4a75688a61d5399ced8.woff2')format("woff");}.ff3_c01115{font-family:ff3_c01115;line-height:1.001000;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_c01115;src:url('chunks/assets/font_a4637a6a08a24f1f99d589d5.woff2')format("woff");}.ff4_c01115{font-family:ff4_c01115;line-height:0.697000;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_c01115;src:url('chunks/assets/font_7361266308d7c84d8fab6f75.woff2')format("woff");}.ff5_c01115{font-family:ff5_c01115;line-height:1.000000;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_c01115;src:url('chunks/assets/font_03100797892d072d804f1629.woff2')format("woff");}.ff6_c01115{font-family:ff6_c01115;line-height:0.696000;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_c01115;src:url('chunks/assets/font_4f56c43d1353c675bda9c06b.woff2')format("woff");}.ff7_c01115{font-family:ff7_c01115;line-height:1.000000;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_c01115;src:url('chunks/assets/font_f798a9074a48ae57c2b7521f.woff2')format("woff");}.ff8_c01115{font-family:ff8_c01115;line-height:1.000000;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_c01115{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_c01115{vertical-align:-21.690000px;}
.v0_c01115{vertical-align:0.000000px;}
.v1_c01115{vertical-align:26.034000px;}
.ls0_c01115{letter-spacing:0.000000px;}
.sc__c01115{text-shadow:none;}
.sc0_c01115{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__c01115{-webkit-text-stroke:0px transparent;}
.sc0_c01115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01115{word-spacing:-0.071730px;}
.wsb_c01115{word-spacing:-0.047820px;}
.ws19_c01115{word-spacing:-0.041844px;}
.ws1c_c01115{word-spacing:0.000000px;}
.ws12_c01115{word-spacing:16.139250px;}
.ws8_c01115{word-spacing:16.928280px;}
.ws10_c01115{word-spacing:18.147690px;}
.ws16_c01115{word-spacing:18.434610px;}
.ws7_c01115{word-spacing:18.506340px;}
.ws17_c01115{word-spacing:19.008450px;}
.ws1a_c01115{word-spacing:19.846296px;}
.ws9_c01115{word-spacing:20.586510px;}
.ws1b_c01115{word-spacing:21.280968px;}
.wsf_c01115{word-spacing:21.447270px;}
.ws6_c01115{word-spacing:21.519000px;}
.ws3_c01115{word-spacing:21.877650px;}
.ws4_c01115{word-spacing:22.594950px;}
.ws13_c01115{word-spacing:23.097060px;}
.ws2_c01115{word-spacing:23.312250px;}
.ws18_c01115{word-spacing:23.383980px;}
.ws11_c01115{word-spacing:24.675120px;}
.wsa_c01115{word-spacing:25.033770px;}
.wsd_c01115{word-spacing:25.392420px;}
.ws0_c01115{word-spacing:26.827020px;}
.ws15_c01115{word-spacing:27.042210px;}
.ws5_c01115{word-spacing:27.400860px;}
.wsc_c01115{word-spacing:32.063310px;}
.ws14_c01115{word-spacing:32.450652px;}
.wse_c01115{word-spacing:79.261650px;}
._0_c01115{margin-left:-40.670910px;}
._5_c01115{margin-left:-37.084410px;}
._2_c01115{margin-left:-35.147700px;}
._a_c01115{margin-left:-32.995800px;}
._11_c01115{margin-left:-31.330140px;}
._9_c01115{margin-left:-27.329130px;}
._8_c01115{margin-left:-7.890300px;}
._10_c01115{margin-left:-5.594940px;}
._7_c01115{margin-left:-3.873420px;}
._3_c01115{margin-left:-1.936710px;}
._6_c01115{width:1.864980px;}
._c_c01115{width:3.327150px;}
._b_c01115{width:4.375530px;}
._4_c01115{width:23.670900px;}
._d_c01115{width:34.071750px;}
._f_c01115{width:79.333380px;}
._e_c01115{width:95.200056px;}
._1_c01115{width:424.502910px;}
.fc0_c01115{color:rgb(0,0,0);}
.fs3_c01115{font-size:41.844000px;}
.fs1_c01115{font-size:47.820000px;}
.fs4_c01115{font-size:59.778000px;}
.fs0_c01115{font-size:71.730000px;}
.fs2_c01115{font-size:86.076000px;}
.y0_c01115{bottom:0.000000px;}
.y21_c01115{bottom:83.418000px;}
.y20_c01115{bottom:110.175000px;}
.y1f_c01115{bottom:137.065500px;}
.y1e_c01115{bottom:163.956000px;}
.y1d_c01115{bottom:190.846500px;}
.y1c_c01115{bottom:217.737000px;}
.y1b_c01115{bottom:252.349500px;}
.y1a_c01115{bottom:311.701500px;}
.y19_c01115{bottom:379.198500px;}
.y18_c01115{bottom:406.090500px;}
.y17_c01115{bottom:432.981000px;}
.y16_c01115{bottom:459.871500px;}
.y15_c01115{bottom:486.762000px;}
.y14_c01115{bottom:513.652500px;}
.y13_c01115{bottom:540.544500px;}
.y12_c01115{bottom:575.155500px;}
.y11_c01115{bottom:631.444500px;}
.y10_c01115{bottom:658.335000px;}
.yf_c01115{bottom:685.227000px;}
.ye_c01115{bottom:731.544000px;}
.yd_c01115{bottom:777.862500px;}
.yc_c01115{bottom:804.753000px;}
.yb_c01115{bottom:831.645000px;}
.ya_c01115{bottom:858.535500px;}
.y9_c01115{bottom:885.426000px;}
.y8_c01115{bottom:912.316500px;}
.y7_c01115{bottom:939.207000px;}
.y6_c01115{bottom:966.099000px;}
.y5_c01115{bottom:992.989500px;}
.y4_c01115{bottom:1019.880000px;}
.y3_c01115{bottom:1046.770500px;}
.y2_c01115{bottom:1073.662500px;}
.y1_c01115{bottom:1140.615000px;}
.h5_c01115{height:28.286544px;}
.h2_c01115{height:53.797500px;}
.h3_c01115{height:58.360320px;}
.h4_c01115{height:64.557000px;}
.h1_c01115{height:1263.750000px;}
.h0_c01115{height:1264.110000px;}
.w0_c01115{width:893.869500px;}
.w1_c01115{width:894.000000px;}
.x0_c01115{left:0.000000px;}
.x1_c01115{left:127.558500px;}
.x4_c01115{left:141.798000px;}
.x2_c01115{left:159.838500px;}
.x3_c01115{left:197.794500px;}
@media print{
.v2_c01115{vertical-align:-19.280000pt;}
.v0_c01115{vertical-align:0.000000pt;}
.v1_c01115{vertical-align:23.141333pt;}
.ls0_c01115{letter-spacing:0.000000pt;}
.ws1_c01115{word-spacing:-0.063760pt;}
.wsb_c01115{word-spacing:-0.042507pt;}
.ws19_c01115{word-spacing:-0.037195pt;}
.ws1c_c01115{word-spacing:0.000000pt;}
.ws12_c01115{word-spacing:14.346000pt;}
.ws8_c01115{word-spacing:15.047360pt;}
.ws10_c01115{word-spacing:16.131280pt;}
.ws16_c01115{word-spacing:16.386320pt;}
.ws7_c01115{word-spacing:16.450080pt;}
.ws17_c01115{word-spacing:16.896400pt;}
.ws1a_c01115{word-spacing:17.641152pt;}
.ws9_c01115{word-spacing:18.299120pt;}
.ws1b_c01115{word-spacing:18.916416pt;}
.wsf_c01115{word-spacing:19.064240pt;}
.ws6_c01115{word-spacing:19.128000pt;}
.ws3_c01115{word-spacing:19.446800pt;}
.ws4_c01115{word-spacing:20.084400pt;}
.ws13_c01115{word-spacing:20.530720pt;}
.ws2_c01115{word-spacing:20.722000pt;}
.ws18_c01115{word-spacing:20.785760pt;}
.ws11_c01115{word-spacing:21.933440pt;}
.wsa_c01115{word-spacing:22.252240pt;}
.wsd_c01115{word-spacing:22.571040pt;}
.ws0_c01115{word-spacing:23.846240pt;}
.ws15_c01115{word-spacing:24.037520pt;}
.ws5_c01115{word-spacing:24.356320pt;}
.wsc_c01115{word-spacing:28.500720pt;}
.ws14_c01115{word-spacing:28.845024pt;}
.wse_c01115{word-spacing:70.454800pt;}
._0_c01115{margin-left:-36.151920pt;}
._5_c01115{margin-left:-32.963920pt;}
._2_c01115{margin-left:-31.242400pt;}
._a_c01115{margin-left:-29.329600pt;}
._11_c01115{margin-left:-27.849013pt;}
._9_c01115{margin-left:-24.292560pt;}
._8_c01115{margin-left:-7.013600pt;}
._10_c01115{margin-left:-4.973280pt;}
._7_c01115{margin-left:-3.443040pt;}
._3_c01115{margin-left:-1.721520pt;}
._6_c01115{width:1.657760pt;}
._c_c01115{width:2.957467pt;}
._b_c01115{width:3.889360pt;}
._4_c01115{width:21.040800pt;}
._d_c01115{width:30.286000pt;}
._f_c01115{width:70.518560pt;}
._e_c01115{width:84.622272pt;}
._1_c01115{width:377.335920pt;}
.fs3_c01115{font-size:37.194667pt;}
.fs1_c01115{font-size:42.506667pt;}
.fs4_c01115{font-size:53.136000pt;}
.fs0_c01115{font-size:63.760000pt;}
.fs2_c01115{font-size:76.512000pt;}
.y0_c01115{bottom:0.000000pt;}
.y21_c01115{bottom:74.149333pt;}
.y20_c01115{bottom:97.933333pt;}
.y1f_c01115{bottom:121.836000pt;}
.y1e_c01115{bottom:145.738667pt;}
.y1d_c01115{bottom:169.641333pt;}
.y1c_c01115{bottom:193.544000pt;}
.y1b_c01115{bottom:224.310667pt;}
.y1a_c01115{bottom:277.068000pt;}
.y19_c01115{bottom:337.065333pt;}
.y18_c01115{bottom:360.969333pt;}
.y17_c01115{bottom:384.872000pt;}
.y16_c01115{bottom:408.774667pt;}
.y15_c01115{bottom:432.677333pt;}
.y14_c01115{bottom:456.580000pt;}
.y13_c01115{bottom:480.484000pt;}
.y12_c01115{bottom:511.249333pt;}
.y11_c01115{bottom:561.284000pt;}
.y10_c01115{bottom:585.186667pt;}
.yf_c01115{bottom:609.090667pt;}
.ye_c01115{bottom:650.261333pt;}
.yd_c01115{bottom:691.433333pt;}
.yc_c01115{bottom:715.336000pt;}
.yb_c01115{bottom:739.240000pt;}
.ya_c01115{bottom:763.142667pt;}
.y9_c01115{bottom:787.045333pt;}
.y8_c01115{bottom:810.948000pt;}
.y7_c01115{bottom:834.850667pt;}
.y6_c01115{bottom:858.754667pt;}
.y5_c01115{bottom:882.657333pt;}
.y4_c01115{bottom:906.560000pt;}
.y3_c01115{bottom:930.462667pt;}
.y2_c01115{bottom:954.366667pt;}
.y1_c01115{bottom:1013.880000pt;}
.h5_c01115{height:25.143595pt;}
.h2_c01115{height:47.820000pt;}
.h3_c01115{height:51.875840pt;}
.h4_c01115{height:57.384000pt;}
.h1_c01115{height:1123.333333pt;}
.h0_c01115{height:1123.653333pt;}
.w0_c01115{width:794.550667pt;}
.w1_c01115{width:794.666667pt;}
.x0_c01115{left:0.000000pt;}
.x1_c01115{left:113.385333pt;}
.x4_c01115{left:126.042667pt;}
.x2_c01115{left:142.078667pt;}
.x3_c01115{left:175.817333pt;}
}





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

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





.ff0_c01116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01116;src:url('chunks/assets/font_51735938904798384109da6d.woff2')format("woff");}.ff1_c01116{font-family:ff1_c01116;line-height:1.001000;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_c01116;src:url('chunks/assets/font_4390fdb761b82d524d648605.woff2')format("woff");}.ff2_c01116{font-family:ff2_c01116;line-height:1.001000;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_c01116;src:url('chunks/assets/font_5b8d566d90f08a4e257818e0.woff2')format("woff");}.ff3_c01116{font-family:ff3_c01116;line-height:1.000000;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_c01116;src:url('chunks/assets/font_958e748087e41dbbfcc68872.woff2')format("woff");}.ff4_c01116{font-family:ff4_c01116;line-height:1.001000;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_c01116;src:url('chunks/assets/font_9ab5a2ad05eb07a92514ad7d.woff2')format("woff");}.ff5_c01116{font-family:ff5_c01116;line-height:0.697000;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_c01116;src:url('chunks/assets/font_3520408795508dee2fd3de2f.woff2')format("woff");}.ff6_c01116{font-family:ff6_c01116;line-height:0.696000;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_c01116;src:url('chunks/assets/font_64876181119c0c6265ec6cf0.woff2')format("woff");}.ff7_c01116{font-family:ff7_c01116;line-height:1.000000;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_c01116;src:url('chunks/assets/font_5c7c84befaeab3396a008a72.woff2')format("woff");}.ff8_c01116{font-family:ff8_c01116;line-height:1.000000;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_c01116{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);}
.v3_c01116{vertical-align:-21.690000px;}
.v0_c01116{vertical-align:0.000000px;}
.v1_c01116{vertical-align:5.976000px;}
.v2_c01116{vertical-align:26.034000px;}
.ls2_c01116{letter-spacing:0.000000px;}
.ls1_c01116{letter-spacing:17.310300px;}
.ls0_c01116{letter-spacing:17.335440px;}
.sc__c01116{text-shadow:none;}
.sc0_c01116{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__c01116{-webkit-text-stroke:0px transparent;}
.sc0_c01116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01116{word-spacing:-0.071730px;}
.ws9_c01116{word-spacing:-0.047820px;}
.ws21_c01116{word-spacing:-0.041844px;}
.ws25_c01116{word-spacing:0.000000px;}
.ws1c_c01116{word-spacing:16.928280px;}
.ws1a_c01116{word-spacing:17.286930px;}
.ws1d_c01116{word-spacing:18.506340px;}
.ws5_c01116{word-spacing:18.793260px;}
.ws18_c01116{word-spacing:19.438830px;}
.ws14_c01116{word-spacing:19.654020px;}
.ws13_c01116{word-spacing:19.725750px;}
.ws24_c01116{word-spacing:19.906074px;}
.wsd_c01116{word-spacing:19.940940px;}
.ws10_c01116{word-spacing:20.227860px;}
.ws8_c01116{word-spacing:21.160350px;}
.ws12_c01116{word-spacing:21.734190px;}
.ws4_c01116{word-spacing:22.953600px;}
.ws11_c01116{word-spacing:23.240520px;}
.ws6_c01116{word-spacing:23.312250px;}
.ws15_c01116{word-spacing:23.670900px;}
.ws3_c01116{word-spacing:24.746850px;}
.ws1f_c01116{word-spacing:24.890310px;}
.ws19_c01116{word-spacing:24.945570px;}
.ws1e_c01116{word-spacing:25.033770px;}
.ws23_c01116{word-spacing:25.405650px;}
.wsc_c01116{word-spacing:26.109720px;}
.ws22_c01116{word-spacing:26.421876px;}
.ws16_c01116{word-spacing:26.755290px;}
.ws0_c01116{word-spacing:26.827020px;}
.ws2_c01116{word-spacing:26.970480px;}
.ws17_c01116{word-spacing:27.329130px;}
.ws20_c01116{word-spacing:27.687780px;}
.ws1b_c01116{word-spacing:28.763730px;}
.wse_c01116{word-spacing:29.481030px;}
.ws7_c01116{word-spacing:30.700440px;}
.wsb_c01116{word-spacing:31.561200px;}
.wsa_c01116{word-spacing:31.919850px;}
.wsf_c01116{word-spacing:34.358670px;}
._0_c01116{margin-left:-40.670910px;}
._8_c01116{margin-left:-37.156140px;}
._3_c01116{margin-left:-35.865000px;}
._a_c01116{margin-left:-34.430400px;}
._f_c01116{margin-left:-33.354450px;}
._15_c01116{margin-left:-30.293634px;}
._13_c01116{margin-left:-29.246550px;}
._d_c01116{margin-left:-27.329130px;}
._c_c01116{margin-left:-7.890300px;}
._10_c01116{margin-left:-6.527430px;}
._14_c01116{margin-left:-4.722462px;}
._4_c01116{margin-left:-3.586500px;}
._9_c01116{margin-left:-1.864980px;}
._7_c01116{width:2.008440px;}
._5_c01116{width:3.586500px;}
._e_c01116{width:4.732500px;}
._12_c01116{width:19.582290px;}
._b_c01116{width:20.873430px;}
._6_c01116{width:27.785670px;}
._11_c01116{width:29.839680px;}
._2_c01116{width:79.333380px;}
._1_c01116{width:424.502910px;}
.fc0_c01116{color:rgb(0,0,0);}
.fs2_c01116{font-size:41.844000px;}
.fs1_c01116{font-size:47.820000px;}
.fs3_c01116{font-size:59.778000px;}
.fs0_c01116{font-size:71.730000px;}
.y0_c01116{bottom:0.000000px;}
.y25_c01116{bottom:89.577000px;}
.y24_c01116{bottom:112.932000px;}
.y23_c01116{bottom:139.689000px;}
.y22_c01116{bottom:166.579500px;}
.y21_c01116{bottom:193.470000px;}
.y20_c01116{bottom:220.360500px;}
.y1f_c01116{bottom:247.252500px;}
.y1e_c01116{bottom:274.143000px;}
.y1d_c01116{bottom:301.033500px;}
.y1c_c01116{bottom:327.924000px;}
.y1b_c01116{bottom:354.816000px;}
.y1a_c01116{bottom:381.706500px;}
.y19_c01116{bottom:408.597000px;}
.y18_c01116{bottom:435.487500px;}
.y17_c01116{bottom:462.379500px;}
.y16_c01116{bottom:489.270000px;}
.y15_c01116{bottom:516.160500px;}
.y14_c01116{bottom:543.051000px;}
.y13_c01116{bottom:569.941500px;}
.y12_c01116{bottom:596.833500px;}
.y11_c01116{bottom:623.724000px;}
.y10_c01116{bottom:650.614500px;}
.yf_c01116{bottom:677.505000px;}
.ye_c01116{bottom:704.397000px;}
.yd_c01116{bottom:731.287500px;}
.yc_c01116{bottom:758.178000px;}
.yb_c01116{bottom:785.068500px;}
.ya_c01116{bottom:811.960500px;}
.y9_c01116{bottom:838.851000px;}
.y8_c01116{bottom:885.168000px;}
.y7_c01116{bottom:912.060000px;}
.y6_c01116{bottom:938.950500px;}
.y5_c01116{bottom:985.269000px;}
.y4_c01116{bottom:1012.159500px;}
.y3_c01116{bottom:1039.050000px;}
.y2_c01116{bottom:1073.662500px;}
.y1_c01116{bottom:1140.615000px;}
.h5_c01116{height:28.286544px;}
.h6_c01116{height:44.833500px;}
.h2_c01116{height:53.797500px;}
.h4_c01116{height:58.360320px;}
.h3_c01116{height:59.773500px;}
.h1_c01116{height:1263.750000px;}
.h0_c01116{height:1264.110000px;}
.w0_c01116{width:893.869500px;}
.w1_c01116{width:894.000000px;}
.x0_c01116{left:0.000000px;}
.x1_c01116{left:127.558500px;}
.x6_c01116{left:141.798000px;}
.x3_c01116{left:159.838500px;}
.x5_c01116{left:171.456000px;}
.x4_c01116{left:197.794500px;}
.x2_c01116{left:365.017500px;}
@media print{
.v3_c01116{vertical-align:-19.280000pt;}
.v0_c01116{vertical-align:0.000000pt;}
.v1_c01116{vertical-align:5.312000pt;}
.v2_c01116{vertical-align:23.141333pt;}
.ls2_c01116{letter-spacing:0.000000pt;}
.ls1_c01116{letter-spacing:15.386933pt;}
.ls0_c01116{letter-spacing:15.409280pt;}
.ws1_c01116{word-spacing:-0.063760pt;}
.ws9_c01116{word-spacing:-0.042507pt;}
.ws21_c01116{word-spacing:-0.037195pt;}
.ws25_c01116{word-spacing:0.000000pt;}
.ws1c_c01116{word-spacing:15.047360pt;}
.ws1a_c01116{word-spacing:15.366160pt;}
.ws1d_c01116{word-spacing:16.450080pt;}
.ws5_c01116{word-spacing:16.705120pt;}
.ws18_c01116{word-spacing:17.278960pt;}
.ws14_c01116{word-spacing:17.470240pt;}
.ws13_c01116{word-spacing:17.534000pt;}
.ws24_c01116{word-spacing:17.694288pt;}
.wsd_c01116{word-spacing:17.725280pt;}
.ws10_c01116{word-spacing:17.980320pt;}
.ws8_c01116{word-spacing:18.809200pt;}
.ws12_c01116{word-spacing:19.319280pt;}
.ws4_c01116{word-spacing:20.403200pt;}
.ws11_c01116{word-spacing:20.658240pt;}
.ws6_c01116{word-spacing:20.722000pt;}
.ws15_c01116{word-spacing:21.040800pt;}
.ws3_c01116{word-spacing:21.997200pt;}
.ws1f_c01116{word-spacing:22.124720pt;}
.ws19_c01116{word-spacing:22.173840pt;}
.ws1e_c01116{word-spacing:22.252240pt;}
.ws23_c01116{word-spacing:22.582800pt;}
.wsc_c01116{word-spacing:23.208640pt;}
.ws22_c01116{word-spacing:23.486112pt;}
.ws16_c01116{word-spacing:23.782480pt;}
.ws0_c01116{word-spacing:23.846240pt;}
.ws2_c01116{word-spacing:23.973760pt;}
.ws17_c01116{word-spacing:24.292560pt;}
.ws20_c01116{word-spacing:24.611360pt;}
.ws1b_c01116{word-spacing:25.567760pt;}
.wse_c01116{word-spacing:26.205360pt;}
.ws7_c01116{word-spacing:27.289280pt;}
.wsb_c01116{word-spacing:28.054400pt;}
.wsa_c01116{word-spacing:28.373200pt;}
.wsf_c01116{word-spacing:30.541040pt;}
._0_c01116{margin-left:-36.151920pt;}
._8_c01116{margin-left:-33.027680pt;}
._3_c01116{margin-left:-31.880000pt;}
._a_c01116{margin-left:-30.604800pt;}
._f_c01116{margin-left:-29.648400pt;}
._15_c01116{margin-left:-26.927675pt;}
._13_c01116{margin-left:-25.996933pt;}
._d_c01116{margin-left:-24.292560pt;}
._c_c01116{margin-left:-7.013600pt;}
._10_c01116{margin-left:-5.802160pt;}
._14_c01116{margin-left:-4.197744pt;}
._4_c01116{margin-left:-3.188000pt;}
._9_c01116{margin-left:-1.657760pt;}
._7_c01116{width:1.785280pt;}
._5_c01116{width:3.188000pt;}
._e_c01116{width:4.206667pt;}
._12_c01116{width:17.406480pt;}
._b_c01116{width:18.554160pt;}
._6_c01116{width:24.698373pt;}
._11_c01116{width:26.524160pt;}
._2_c01116{width:70.518560pt;}
._1_c01116{width:377.335920pt;}
.fs2_c01116{font-size:37.194667pt;}
.fs1_c01116{font-size:42.506667pt;}
.fs3_c01116{font-size:53.136000pt;}
.fs0_c01116{font-size:63.760000pt;}
.y0_c01116{bottom:0.000000pt;}
.y25_c01116{bottom:79.624000pt;}
.y24_c01116{bottom:100.384000pt;}
.y23_c01116{bottom:124.168000pt;}
.y22_c01116{bottom:148.070667pt;}
.y21_c01116{bottom:171.973333pt;}
.y20_c01116{bottom:195.876000pt;}
.y1f_c01116{bottom:219.780000pt;}
.y1e_c01116{bottom:243.682667pt;}
.y1d_c01116{bottom:267.585333pt;}
.y1c_c01116{bottom:291.488000pt;}
.y1b_c01116{bottom:315.392000pt;}
.y1a_c01116{bottom:339.294667pt;}
.y19_c01116{bottom:363.197333pt;}
.y18_c01116{bottom:387.100000pt;}
.y17_c01116{bottom:411.004000pt;}
.y16_c01116{bottom:434.906667pt;}
.y15_c01116{bottom:458.809333pt;}
.y14_c01116{bottom:482.712000pt;}
.y13_c01116{bottom:506.614667pt;}
.y12_c01116{bottom:530.518667pt;}
.y11_c01116{bottom:554.421333pt;}
.y10_c01116{bottom:578.324000pt;}
.yf_c01116{bottom:602.226667pt;}
.ye_c01116{bottom:626.130667pt;}
.yd_c01116{bottom:650.033333pt;}
.yc_c01116{bottom:673.936000pt;}
.yb_c01116{bottom:697.838667pt;}
.ya_c01116{bottom:721.742667pt;}
.y9_c01116{bottom:745.645333pt;}
.y8_c01116{bottom:786.816000pt;}
.y7_c01116{bottom:810.720000pt;}
.y6_c01116{bottom:834.622667pt;}
.y5_c01116{bottom:875.794667pt;}
.y4_c01116{bottom:899.697333pt;}
.y3_c01116{bottom:923.600000pt;}
.y2_c01116{bottom:954.366667pt;}
.y1_c01116{bottom:1013.880000pt;}
.h5_c01116{height:25.143595pt;}
.h6_c01116{height:39.852000pt;}
.h2_c01116{height:47.820000pt;}
.h4_c01116{height:51.875840pt;}
.h3_c01116{height:53.132000pt;}
.h1_c01116{height:1123.333333pt;}
.h0_c01116{height:1123.653333pt;}
.w0_c01116{width:794.550667pt;}
.w1_c01116{width:794.666667pt;}
.x0_c01116{left:0.000000pt;}
.x1_c01116{left:113.385333pt;}
.x6_c01116{left:126.042667pt;}
.x3_c01116{left:142.078667pt;}
.x5_c01116{left:152.405333pt;}
.x4_c01116{left:175.817333pt;}
.x2_c01116{left:324.460000pt;}
}





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

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





.ff0_c01117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01117;src:url('chunks/assets/font_67d4c3f0ff29c0c16933b4f0.woff2')format("woff");}.ff1_c01117{font-family:ff1_c01117;line-height:1.001000;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_c01117;src:url('chunks/assets/font_8a74c0f6b51095dd0a96f8e9.woff2')format("woff");}.ff2_c01117{font-family:ff2_c01117;line-height:1.001000;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_c01117;src:url('chunks/assets/font_3fb0ae8ad2b2ea798f3e0662.woff2')format("woff");}.ff3_c01117{font-family:ff3_c01117;line-height:1.001000;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_c01117;src:url('chunks/assets/font_df3bbbf51d699785e7b41d96.woff2')format("woff");}.ff4_c01117{font-family:ff4_c01117;line-height:0.697000;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_c01117;src:url('chunks/assets/font_608b0a0f8db2b59f938a1291.woff2')format("woff");}.ff5_c01117{font-family:ff5_c01117;line-height:1.000000;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_c01117;src:url('chunks/assets/font_472bf7246b3ff621266b0c28.woff2')format("woff");}.ff6_c01117{font-family:ff6_c01117;line-height:0.696000;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_c01117;src:url('chunks/assets/font_9f909ed05cec7cb4a47746de.woff2')format("woff");}.ff7_c01117{font-family:ff7_c01117;line-height:1.000000;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_c01117{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);}
.v3_c01117{vertical-align:-21.690000px;}
.v0_c01117{vertical-align:0.000000px;}
.v2_c01117{vertical-align:21.762000px;}
.v1_c01117{vertical-align:26.034000px;}
.ls1_c01117{letter-spacing:0.000000px;}
.ls0_c01117{letter-spacing:32.485440px;}
.sc__c01117{text-shadow:none;}
.sc0_c01117{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__c01117{-webkit-text-stroke:0px transparent;}
.sc0_c01117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01117{word-spacing:-0.071730px;}
.ws5_c01117{word-spacing:-0.047820px;}
.ws1e_c01117{word-spacing:-0.041844px;}
.ws20_c01117{word-spacing:0.000000px;}
.wsf_c01117{word-spacing:17.717310px;}
.ws18_c01117{word-spacing:18.936720px;}
.ws19_c01117{word-spacing:19.151910px;}
.ws1f_c01117{word-spacing:19.846296px;}
.wse_c01117{word-spacing:19.869210px;}
.ws1b_c01117{word-spacing:20.227860px;}
.ws14_c01117{word-spacing:21.160350px;}
.ws6_c01117{word-spacing:21.519000px;}
.ws12_c01117{word-spacing:22.810140px;}
.ws9_c01117{word-spacing:23.312250px;}
.ws7_c01117{word-spacing:23.383980px;}
.ws8_c01117{word-spacing:23.814360px;}
.ws17_c01117{word-spacing:24.173010px;}
.ws4_c01117{word-spacing:25.033770px;}
.wsb_c01117{word-spacing:26.037990px;}
.ws0_c01117{word-spacing:26.827020px;}
.ws3_c01117{word-spacing:26.898750px;}
.ws16_c01117{word-spacing:27.042210px;}
.ws1a_c01117{word-spacing:27.544320px;}
.ws13_c01117{word-spacing:29.409300px;}
.wsa_c01117{word-spacing:30.054870px;}
.ws2_c01117{word-spacing:30.341790px;}
.ws1d_c01117{word-spacing:32.135040px;}
.ws15_c01117{word-spacing:32.450652px;}
.wsd_c01117{word-spacing:32.978790px;}
.ws1c_c01117{word-spacing:33.067530px;}
.wsc_c01117{word-spacing:33.354450px;}
.ws11_c01117{word-spacing:33.784830px;}
.ws10_c01117{word-spacing:79.261650px;}
._0_c01117{margin-left:-40.670910px;}
._8_c01117{margin-left:-37.084410px;}
._2_c01117{margin-left:-35.865000px;}
._f_c01117{margin-left:-34.430400px;}
._e_c01117{margin-left:-33.282720px;}
._d_c01117{margin-left:-27.400860px;}
._c_c01117{margin-left:-7.818570px;}
._a_c01117{margin-left:-5.810130px;}
._14_c01117{margin-left:-4.734180px;}
._3_c01117{margin-left:-3.586500px;}
._6_c01117{margin-left:-2.008440px;}
._9_c01117{width:1.936710px;}
._5_c01117{width:3.011160px;}
._4_c01117{width:4.670520px;}
._12_c01117{width:12.617754px;}
._7_c01117{width:23.438490px;}
._b_c01117{width:31.130820px;}
._10_c01117{width:37.909800px;}
._13_c01117{width:79.333380px;}
._11_c01117{width:95.200056px;}
._1_c01117{width:424.502910px;}
.fc0_c01117{color:rgb(0,0,0);}
.fs3_c01117{font-size:41.844000px;}
.fs1_c01117{font-size:47.820000px;}
.fs4_c01117{font-size:59.778000px;}
.fs0_c01117{font-size:71.730000px;}
.fs2_c01117{font-size:86.076000px;}
.y0_c01117{bottom:0.000000px;}
.y21_c01117{bottom:102.844500px;}
.y20_c01117{bottom:129.601500px;}
.y1f_c01117{bottom:156.492000px;}
.y1e_c01117{bottom:183.382500px;}
.y1d_c01117{bottom:210.274500px;}
.y1c_c01117{bottom:237.165000px;}
.y1b_c01117{bottom:264.055500px;}
.y1a_c01117{bottom:290.946000px;}
.y19_c01117{bottom:317.838000px;}
.y18_c01117{bottom:344.728500px;}
.y17_c01117{bottom:371.619000px;}
.y16_c01117{bottom:398.509500px;}
.y15_c01117{bottom:433.122000px;}
.y14_c01117{bottom:492.474000px;}
.y13_c01117{bottom:559.971000px;}
.y12_c01117{bottom:586.861500px;}
.y11_c01117{bottom:613.753500px;}
.y10_c01117{bottom:640.644000px;}
.yf_c01117{bottom:667.534500px;}
.ye_c01117{bottom:702.147000px;}
.yd_c01117{bottom:758.436000px;}
.yc_c01117{bottom:785.326500px;}
.yb_c01117{bottom:812.217000px;}
.ya_c01117{bottom:839.107500px;}
.y9_c01117{bottom:865.999500px;}
.y8_c01117{bottom:892.890000px;}
.y7_c01117{bottom:919.780500px;}
.y6_c01117{bottom:946.671000px;}
.y5_c01117{bottom:973.563000px;}
.y4_c01117{bottom:1019.880000px;}
.y3_c01117{bottom:1046.770500px;}
.y2_c01117{bottom:1073.662500px;}
.y1_c01117{bottom:1140.615000px;}
.h6_c01117{height:28.286544px;}
.h2_c01117{height:53.797500px;}
.h3_c01117{height:58.360320px;}
.h5_c01117{height:64.557000px;}
.h4_c01117{height:86.319000px;}
.h1_c01117{height:1263.750000px;}
.h0_c01117{height:1264.110000px;}
.w0_c01117{width:893.869500px;}
.w1_c01117{width:894.000000px;}
.x0_c01117{left:0.000000px;}
.x1_c01117{left:127.558500px;}
.x6_c01117{left:141.798000px;}
.x4_c01117{left:159.838500px;}
.x3_c01117{left:171.456000px;}
.x2_c01117{left:197.794500px;}
.x5_c01117{left:318.201000px;}
@media print{
.v3_c01117{vertical-align:-19.280000pt;}
.v0_c01117{vertical-align:0.000000pt;}
.v2_c01117{vertical-align:19.344000pt;}
.v1_c01117{vertical-align:23.141333pt;}
.ls1_c01117{letter-spacing:0.000000pt;}
.ls0_c01117{letter-spacing:28.875947pt;}
.ws1_c01117{word-spacing:-0.063760pt;}
.ws5_c01117{word-spacing:-0.042507pt;}
.ws1e_c01117{word-spacing:-0.037195pt;}
.ws20_c01117{word-spacing:0.000000pt;}
.wsf_c01117{word-spacing:15.748720pt;}
.ws18_c01117{word-spacing:16.832640pt;}
.ws19_c01117{word-spacing:17.023920pt;}
.ws1f_c01117{word-spacing:17.641152pt;}
.wse_c01117{word-spacing:17.661520pt;}
.ws1b_c01117{word-spacing:17.980320pt;}
.ws14_c01117{word-spacing:18.809200pt;}
.ws6_c01117{word-spacing:19.128000pt;}
.ws12_c01117{word-spacing:20.275680pt;}
.ws9_c01117{word-spacing:20.722000pt;}
.ws7_c01117{word-spacing:20.785760pt;}
.ws8_c01117{word-spacing:21.168320pt;}
.ws17_c01117{word-spacing:21.487120pt;}
.ws4_c01117{word-spacing:22.252240pt;}
.wsb_c01117{word-spacing:23.144880pt;}
.ws0_c01117{word-spacing:23.846240pt;}
.ws3_c01117{word-spacing:23.910000pt;}
.ws16_c01117{word-spacing:24.037520pt;}
.ws1a_c01117{word-spacing:24.483840pt;}
.ws13_c01117{word-spacing:26.141600pt;}
.wsa_c01117{word-spacing:26.715440pt;}
.ws2_c01117{word-spacing:26.970480pt;}
.ws1d_c01117{word-spacing:28.564480pt;}
.ws15_c01117{word-spacing:28.845024pt;}
.wsd_c01117{word-spacing:29.314480pt;}
.ws1c_c01117{word-spacing:29.393360pt;}
.wsc_c01117{word-spacing:29.648400pt;}
.ws11_c01117{word-spacing:30.030960pt;}
.ws10_c01117{word-spacing:70.454800pt;}
._0_c01117{margin-left:-36.151920pt;}
._8_c01117{margin-left:-32.963920pt;}
._2_c01117{margin-left:-31.880000pt;}
._f_c01117{margin-left:-30.604800pt;}
._e_c01117{margin-left:-29.584640pt;}
._d_c01117{margin-left:-24.356320pt;}
._c_c01117{margin-left:-6.949840pt;}
._a_c01117{margin-left:-5.164560pt;}
._14_c01117{margin-left:-4.208160pt;}
._3_c01117{margin-left:-3.188000pt;}
._6_c01117{margin-left:-1.785280pt;}
._9_c01117{width:1.721520pt;}
._5_c01117{width:2.676587pt;}
._4_c01117{width:4.151573pt;}
._12_c01117{width:11.215781pt;}
._7_c01117{width:20.834213pt;}
._b_c01117{width:27.671840pt;}
._10_c01117{width:33.697600pt;}
._13_c01117{width:70.518560pt;}
._11_c01117{width:84.622272pt;}
._1_c01117{width:377.335920pt;}
.fs3_c01117{font-size:37.194667pt;}
.fs1_c01117{font-size:42.506667pt;}
.fs4_c01117{font-size:53.136000pt;}
.fs0_c01117{font-size:63.760000pt;}
.fs2_c01117{font-size:76.512000pt;}
.y0_c01117{bottom:0.000000pt;}
.y21_c01117{bottom:91.417333pt;}
.y20_c01117{bottom:115.201333pt;}
.y1f_c01117{bottom:139.104000pt;}
.y1e_c01117{bottom:163.006667pt;}
.y1d_c01117{bottom:186.910667pt;}
.y1c_c01117{bottom:210.813333pt;}
.y1b_c01117{bottom:234.716000pt;}
.y1a_c01117{bottom:258.618667pt;}
.y19_c01117{bottom:282.522667pt;}
.y18_c01117{bottom:306.425333pt;}
.y17_c01117{bottom:330.328000pt;}
.y16_c01117{bottom:354.230667pt;}
.y15_c01117{bottom:384.997333pt;}
.y14_c01117{bottom:437.754667pt;}
.y13_c01117{bottom:497.752000pt;}
.y12_c01117{bottom:521.654667pt;}
.y11_c01117{bottom:545.558667pt;}
.y10_c01117{bottom:569.461333pt;}
.yf_c01117{bottom:593.364000pt;}
.ye_c01117{bottom:624.130667pt;}
.yd_c01117{bottom:674.165333pt;}
.yc_c01117{bottom:698.068000pt;}
.yb_c01117{bottom:721.970667pt;}
.ya_c01117{bottom:745.873333pt;}
.y9_c01117{bottom:769.777333pt;}
.y8_c01117{bottom:793.680000pt;}
.y7_c01117{bottom:817.582667pt;}
.y6_c01117{bottom:841.485333pt;}
.y5_c01117{bottom:865.389333pt;}
.y4_c01117{bottom:906.560000pt;}
.y3_c01117{bottom:930.462667pt;}
.y2_c01117{bottom:954.366667pt;}
.y1_c01117{bottom:1013.880000pt;}
.h6_c01117{height:25.143595pt;}
.h2_c01117{height:47.820000pt;}
.h3_c01117{height:51.875840pt;}
.h5_c01117{height:57.384000pt;}
.h4_c01117{height:76.728000pt;}
.h1_c01117{height:1123.333333pt;}
.h0_c01117{height:1123.653333pt;}
.w0_c01117{width:794.550667pt;}
.w1_c01117{width:794.666667pt;}
.x0_c01117{left:0.000000pt;}
.x1_c01117{left:113.385333pt;}
.x6_c01117{left:126.042667pt;}
.x4_c01117{left:142.078667pt;}
.x3_c01117{left:152.405333pt;}
.x2_c01117{left:175.817333pt;}
.x5_c01117{left:282.845333pt;}
}





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

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





.ff0_c01118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01118;src:url('chunks/assets/font_8ecf2e28b9b5ea5413d646ff.woff2')format("woff");}.ff1_c01118{font-family:ff1_c01118;line-height:1.001000;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_c01118;src:url('chunks/assets/font_6e4b8f95e2907c0ec79f27df.woff2')format("woff");}.ff2_c01118{font-family:ff2_c01118;line-height:1.001000;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_c01118;src:url('chunks/assets/font_42c0eafdd52895c7d5e1e8a5.woff2')format("woff");}.ff3_c01118{font-family:ff3_c01118;line-height:1.001000;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_c01118;src:url('chunks/assets/font_ff215532330ad6dca7e2a82a.woff2')format("woff");}.ff4_c01118{font-family:ff4_c01118;line-height:0.697000;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_c01118;src:url('chunks/assets/font_e109bae8f6f5e33f19513ee3.woff2')format("woff");}.ff5_c01118{font-family:ff5_c01118;line-height:1.000000;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_c01118;src:url('chunks/assets/font_302e026b9bb1933853e927ed.woff2')format("woff");}.ff6_c01118{font-family:ff6_c01118;line-height:0.696000;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_c01118;src:url('chunks/assets/font_95df8ab3b4be52664c951c7a.woff2')format("woff");}.ff7_c01118{font-family:ff7_c01118;line-height:1.000000;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_c01118;src:url('chunks/assets/font_8fdb753182b2f54dbeb8ed40.woff2')format("woff");}.ff8_c01118{font-family:ff8_c01118;line-height:1.000000;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_c01118{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);}
.v4_c01118{vertical-align:-21.690000px;}
.v0_c01118{vertical-align:0.000000px;}
.v3_c01118{vertical-align:5.976000px;}
.v5_c01118{vertical-align:15.108000px;}
.v2_c01118{vertical-align:18.132000px;}
.v1_c01118{vertical-align:26.028000px;}
.ls3_c01118{letter-spacing:0.000000px;}
.ls2_c01118{letter-spacing:7.456716px;}
.ls1_c01118{letter-spacing:23.382300px;}
.ls0_c01118{letter-spacing:23.527440px;}
.sc__c01118{text-shadow:none;}
.sc0_c01118{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__c01118{-webkit-text-stroke:0px transparent;}
.sc0_c01118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01118{word-spacing:-0.071730px;}
.ws26_c01118{word-spacing:-0.059778px;}
.ws8_c01118{word-spacing:-0.047820px;}
.ws23_c01118{word-spacing:-0.041844px;}
.ws2a_c01118{word-spacing:0.000000px;}
.ws17_c01118{word-spacing:17.860770px;}
.ws5_c01118{word-spacing:18.075960px;}
.ws1e_c01118{word-spacing:18.649800px;}
.ws28_c01118{word-spacing:19.128960px;}
.ws27_c01118{word-spacing:19.188738px;}
.ws25_c01118{word-spacing:19.846296px;}
.ws29_c01118{word-spacing:20.683188px;}
.ws11_c01118{word-spacing:21.016890px;}
.ws24_c01118{word-spacing:21.340746px;}
.ws10_c01118{word-spacing:21.949380px;}
.wsc_c01118{word-spacing:22.594950px;}
.wsb_c01118{word-spacing:23.312250px;}
.ws6_c01118{word-spacing:24.388200px;}
.ws7_c01118{word-spacing:25.033770px;}
.ws16_c01118{word-spacing:26.755290px;}
.ws0_c01118{word-spacing:26.827020px;}
.ws1d_c01118{word-spacing:26.970480px;}
.wsf_c01118{word-spacing:27.042210px;}
.wse_c01118{word-spacing:27.113940px;}
.wsd_c01118{word-spacing:27.329130px;}
.ws20_c01118{word-spacing:27.724560px;}
.ws14_c01118{word-spacing:27.759510px;}
.ws12_c01118{word-spacing:28.241520px;}
.ws1a_c01118{word-spacing:28.466700px;}
.ws18_c01118{word-spacing:28.476810px;}
.ws1c_c01118{word-spacing:28.548540px;}
.ws9_c01118{word-spacing:28.692000px;}
.ws1f_c01118{word-spacing:29.122380px;}
.ws1b_c01118{word-spacing:29.839680px;}
.ws15_c01118{word-spacing:31.632930px;}
.ws13_c01118{word-spacing:32.206770px;}
.ws21_c01118{word-spacing:32.278500px;}
.wsa_c01118{word-spacing:32.350230px;}
.ws3_c01118{word-spacing:32.637150px;}
.ws2_c01118{word-spacing:32.653770px;}
.ws4_c01118{word-spacing:33.569640px;}
.ws22_c01118{word-spacing:34.071750px;}
.ws19_c01118{word-spacing:34.482300px;}
._0_c01118{margin-left:-40.670910px;}
._c_c01118{margin-left:-36.869220px;}
._6_c01118{margin-left:-35.147700px;}
._9_c01118{margin-left:-34.071750px;}
._d_c01118{margin-left:-32.924070px;}
._17_c01118{margin-left:-30.895074px;}
._18_c01118{margin-left:-29.818854px;}
._4_c01118{margin-left:-28.692000px;}
._e_c01118{margin-left:-27.113940px;}
._12_c01118{margin-left:-9.020550px;}
._3_c01118{margin-left:-7.173000px;}
._11_c01118{margin-left:-4.734180px;}
._2_c01118{margin-left:-3.586500px;}
._7_c01118{margin-left:-2.151900px;}
._15_c01118{margin-left:-1.075950px;}
._5_c01118{width:1.793250px;}
._b_c01118{width:3.011160px;}
._a_c01118{width:4.586550px;}
._19_c01118{width:8.298084px;}
._13_c01118{width:10.759500px;}
._8_c01118{width:15.565410px;}
._14_c01118{width:34.864140px;}
._f_c01118{width:36.051420px;}
._16_c01118{width:41.354670px;}
._10_c01118{width:79.333380px;}
._1_c01118{width:424.502910px;}
.fc0_c01118{color:rgb(0,0,0);}
.fs2_c01118{font-size:41.844000px;}
.fs1_c01118{font-size:47.820000px;}
.fs3_c01118{font-size:59.778000px;}
.fs0_c01118{font-size:71.730000px;}
.y0_c01118{bottom:0.000000px;}
.y26_c01118{bottom:71.973000px;}
.y25_c01118{bottom:89.905500px;}
.y24_c01118{bottom:95.328000px;}
.y23_c01118{bottom:114.864000px;}
.y22_c01118{bottom:132.796500px;}
.y21_c01118{bottom:158.419500px;}
.y20_c01118{bottom:185.310000px;}
.y1f_c01118{bottom:212.200500px;}
.y1e_c01118{bottom:239.092500px;}
.y1d_c01118{bottom:265.983000px;}
.y1c_c01118{bottom:292.873500px;}
.y1b_c01118{bottom:319.764000px;}
.y1a_c01118{bottom:346.654500px;}
.y19_c01118{bottom:373.546500px;}
.y18_c01118{bottom:415.330500px;}
.y17_c01118{bottom:442.222500px;}
.y16_c01118{bottom:484.006500px;}
.y15_c01118{bottom:510.898500px;}
.y14_c01118{bottom:537.789000px;}
.y13_c01118{bottom:564.679500px;}
.y12_c01118{bottom:591.570000px;}
.y11_c01118{bottom:618.462000px;}
.y10_c01118{bottom:645.352500px;}
.yf_c01118{bottom:672.243000px;}
.ye_c01118{bottom:699.133500px;}
.yd_c01118{bottom:726.025500px;}
.yc_c01118{bottom:760.636500px;}
.yb_c01118{bottom:816.750000px;}
.ya_c01118{bottom:843.640500px;}
.y9_c01118{bottom:870.532500px;}
.y8_c01118{bottom:897.423000px;}
.y7_c01118{bottom:924.313500px;}
.y6_c01118{bottom:951.204000px;}
.y5_c01118{bottom:992.989500px;}
.y4_c01118{bottom:1019.880000px;}
.y3_c01118{bottom:1046.770500px;}
.y2_c01118{bottom:1073.662500px;}
.y1_c01118{bottom:1140.615000px;}
.h7_c01118{height:28.286544px;}
.h8_c01118{height:38.251500px;}
.ha_c01118{height:44.833500px;}
.h2_c01118{height:53.797500px;}
.h3_c01118{height:58.354320px;}
.h6_c01118{height:58.360320px;}
.h5_c01118{height:59.773500px;}
.h9_c01118{height:59.941500px;}
.h4_c01118{height:71.929500px;}
.h1_c01118{height:1263.750000px;}
.h0_c01118{height:1264.110000px;}
.w0_c01118{width:893.869500px;}
.w1_c01118{width:894.000000px;}
.x0_c01118{left:0.000000px;}
.x1_c01118{left:127.558500px;}
.xa_c01118{left:141.798000px;}
.x4_c01118{left:159.838500px;}
.x3_c01118{left:171.456000px;}
.x9_c01118{left:184.500000px;}
.xb_c01118{left:188.497500px;}
.x2_c01118{left:197.794500px;}
.xc_c01118{left:200.121000px;}
.xd_c01118{left:277.566000px;}
.x6_c01118{left:357.714000px;}
.x5_c01118{left:542.272500px;}
.x7_c01118{left:549.712500px;}
.x8_c01118{left:717.913500px;}
@media print{
.v4_c01118{vertical-align:-19.280000pt;}
.v0_c01118{vertical-align:0.000000pt;}
.v3_c01118{vertical-align:5.312000pt;}
.v5_c01118{vertical-align:13.429333pt;}
.v2_c01118{vertical-align:16.117333pt;}
.v1_c01118{vertical-align:23.136000pt;}
.ls3_c01118{letter-spacing:0.000000pt;}
.ls2_c01118{letter-spacing:6.628192pt;}
.ls1_c01118{letter-spacing:20.784267pt;}
.ls0_c01118{letter-spacing:20.913280pt;}
.ws1_c01118{word-spacing:-0.063760pt;}
.ws26_c01118{word-spacing:-0.053136pt;}
.ws8_c01118{word-spacing:-0.042507pt;}
.ws23_c01118{word-spacing:-0.037195pt;}
.ws2a_c01118{word-spacing:0.000000pt;}
.ws17_c01118{word-spacing:15.876240pt;}
.ws5_c01118{word-spacing:16.067520pt;}
.ws1e_c01118{word-spacing:16.577600pt;}
.ws28_c01118{word-spacing:17.003520pt;}
.ws27_c01118{word-spacing:17.056656pt;}
.ws25_c01118{word-spacing:17.641152pt;}
.ws29_c01118{word-spacing:18.385056pt;}
.ws11_c01118{word-spacing:18.681680pt;}
.ws24_c01118{word-spacing:18.969552pt;}
.ws10_c01118{word-spacing:19.510560pt;}
.wsc_c01118{word-spacing:20.084400pt;}
.wsb_c01118{word-spacing:20.722000pt;}
.ws6_c01118{word-spacing:21.678400pt;}
.ws7_c01118{word-spacing:22.252240pt;}
.ws16_c01118{word-spacing:23.782480pt;}
.ws0_c01118{word-spacing:23.846240pt;}
.ws1d_c01118{word-spacing:23.973760pt;}
.wsf_c01118{word-spacing:24.037520pt;}
.wse_c01118{word-spacing:24.101280pt;}
.wsd_c01118{word-spacing:24.292560pt;}
.ws20_c01118{word-spacing:24.644053pt;}
.ws14_c01118{word-spacing:24.675120pt;}
.ws12_c01118{word-spacing:25.103573pt;}
.ws1a_c01118{word-spacing:25.303733pt;}
.ws18_c01118{word-spacing:25.312720pt;}
.ws1c_c01118{word-spacing:25.376480pt;}
.ws9_c01118{word-spacing:25.504000pt;}
.ws1f_c01118{word-spacing:25.886560pt;}
.ws1b_c01118{word-spacing:26.524160pt;}
.ws15_c01118{word-spacing:28.118160pt;}
.ws13_c01118{word-spacing:28.628240pt;}
.ws21_c01118{word-spacing:28.692000pt;}
.wsa_c01118{word-spacing:28.755760pt;}
.ws3_c01118{word-spacing:29.010800pt;}
.ws2_c01118{word-spacing:29.025573pt;}
.ws4_c01118{word-spacing:29.839680pt;}
.ws22_c01118{word-spacing:30.286000pt;}
.ws19_c01118{word-spacing:30.650933pt;}
._0_c01118{margin-left:-36.151920pt;}
._c_c01118{margin-left:-32.772640pt;}
._6_c01118{margin-left:-31.242400pt;}
._9_c01118{margin-left:-30.286000pt;}
._d_c01118{margin-left:-29.265840pt;}
._17_c01118{margin-left:-27.462288pt;}
._18_c01118{margin-left:-26.505648pt;}
._4_c01118{margin-left:-25.504000pt;}
._e_c01118{margin-left:-24.101280pt;}
._12_c01118{margin-left:-8.018267pt;}
._3_c01118{margin-left:-6.376000pt;}
._11_c01118{margin-left:-4.208160pt;}
._2_c01118{margin-left:-3.188000pt;}
._7_c01118{margin-left:-1.912800pt;}
._15_c01118{margin-left:-0.956400pt;}
._5_c01118{width:1.594000pt;}
._b_c01118{width:2.676587pt;}
._a_c01118{width:4.076933pt;}
._19_c01118{width:7.376075pt;}
._13_c01118{width:9.564000pt;}
._8_c01118{width:13.835920pt;}
._14_c01118{width:30.990347pt;}
._f_c01118{width:32.045707pt;}
._16_c01118{width:36.759707pt;}
._10_c01118{width:70.518560pt;}
._1_c01118{width:377.335920pt;}
.fs2_c01118{font-size:37.194667pt;}
.fs1_c01118{font-size:42.506667pt;}
.fs3_c01118{font-size:53.136000pt;}
.fs0_c01118{font-size:63.760000pt;}
.y0_c01118{bottom:0.000000pt;}
.y26_c01118{bottom:63.976000pt;}
.y25_c01118{bottom:79.916000pt;}
.y24_c01118{bottom:84.736000pt;}
.y23_c01118{bottom:102.101333pt;}
.y22_c01118{bottom:118.041333pt;}
.y21_c01118{bottom:140.817333pt;}
.y20_c01118{bottom:164.720000pt;}
.y1f_c01118{bottom:188.622667pt;}
.y1e_c01118{bottom:212.526667pt;}
.y1d_c01118{bottom:236.429333pt;}
.y1c_c01118{bottom:260.332000pt;}
.y1b_c01118{bottom:284.234667pt;}
.y1a_c01118{bottom:308.137333pt;}
.y19_c01118{bottom:332.041333pt;}
.y18_c01118{bottom:369.182667pt;}
.y17_c01118{bottom:393.086667pt;}
.y16_c01118{bottom:430.228000pt;}
.y15_c01118{bottom:454.132000pt;}
.y14_c01118{bottom:478.034667pt;}
.y13_c01118{bottom:501.937333pt;}
.y12_c01118{bottom:525.840000pt;}
.y11_c01118{bottom:549.744000pt;}
.y10_c01118{bottom:573.646667pt;}
.yf_c01118{bottom:597.549333pt;}
.ye_c01118{bottom:621.452000pt;}
.yd_c01118{bottom:645.356000pt;}
.yc_c01118{bottom:676.121333pt;}
.yb_c01118{bottom:726.000000pt;}
.ya_c01118{bottom:749.902667pt;}
.y9_c01118{bottom:773.806667pt;}
.y8_c01118{bottom:797.709333pt;}
.y7_c01118{bottom:821.612000pt;}
.y6_c01118{bottom:845.514667pt;}
.y5_c01118{bottom:882.657333pt;}
.y4_c01118{bottom:906.560000pt;}
.y3_c01118{bottom:930.462667pt;}
.y2_c01118{bottom:954.366667pt;}
.y1_c01118{bottom:1013.880000pt;}
.h7_c01118{height:25.143595pt;}
.h8_c01118{height:34.001333pt;}
.ha_c01118{height:39.852000pt;}
.h2_c01118{height:47.820000pt;}
.h3_c01118{height:51.870507pt;}
.h6_c01118{height:51.875840pt;}
.h5_c01118{height:53.132000pt;}
.h9_c01118{height:53.281333pt;}
.h4_c01118{height:63.937333pt;}
.h1_c01118{height:1123.333333pt;}
.h0_c01118{height:1123.653333pt;}
.w0_c01118{width:794.550667pt;}
.w1_c01118{width:794.666667pt;}
.x0_c01118{left:0.000000pt;}
.x1_c01118{left:113.385333pt;}
.xa_c01118{left:126.042667pt;}
.x4_c01118{left:142.078667pt;}
.x3_c01118{left:152.405333pt;}
.x9_c01118{left:164.000000pt;}
.xb_c01118{left:167.553333pt;}
.x2_c01118{left:175.817333pt;}
.xc_c01118{left:177.885333pt;}
.xd_c01118{left:246.725333pt;}
.x6_c01118{left:317.968000pt;}
.x5_c01118{left:482.020000pt;}
.x7_c01118{left:488.633333pt;}
.x8_c01118{left:638.145333pt;}
}





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

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





.ff0_c01119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01119;src:url('chunks/assets/font_7c924139ce276c2d0edc74a4.woff2')format("woff");}.ff1_c01119{font-family:ff1_c01119;line-height:1.001000;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_c01119;src:url('chunks/assets/font_28fe706fd27f15564aed548d.woff2')format("woff");}.ff2_c01119{font-family:ff2_c01119;line-height:1.001000;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_c01119;src:url('chunks/assets/font_d7d32a5063fbcfc2ebca4ad8.woff2')format("woff");}.ff3_c01119{font-family:ff3_c01119;line-height:1.001000;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_c01119;src:url('chunks/assets/font_17b953d2888a4652df9fe9d6.woff2')format("woff");}.ff4_c01119{font-family:ff4_c01119;line-height:0.697000;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_c01119;src:url('chunks/assets/font_c589529da53ef6d9b663db74.woff2')format("woff");}.ff5_c01119{font-family:ff5_c01119;line-height:0.696000;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_c01119;src:url('chunks/assets/font_bd07efaacc03299faf16fe60.woff2')format("woff");}.ff6_c01119{font-family:ff6_c01119;line-height:1.000000;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_c01119;src:url('chunks/assets/font_efc98515a1e67c66c2fd7ab6.woff2')format("woff");}.ff7_c01119{font-family:ff7_c01119;line-height:1.000000;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_c01119{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);}
.v3_c01119{vertical-align:-21.690000px;}
.v0_c01119{vertical-align:0.000000px;}
.v4_c01119{vertical-align:15.108000px;}
.v1_c01119{vertical-align:18.132000px;}
.v2_c01119{vertical-align:26.028000px;}
.ls0_c01119{letter-spacing:0.000000px;}
.sc__c01119{text-shadow:none;}
.sc0_c01119{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__c01119{-webkit-text-stroke:0px transparent;}
.sc0_c01119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01119{word-spacing:-0.071730px;}
.ws1d_c01119{word-spacing:-0.059778px;}
.ws10_c01119{word-spacing:-0.047820px;}
.ws1c_c01119{word-spacing:-0.041844px;}
.ws26_c01119{word-spacing:0.000000px;}
.ws1e_c01119{word-spacing:15.064056px;}
.ws11_c01119{word-spacing:16.354440px;}
.ws22_c01119{word-spacing:16.379172px;}
.ws1f_c01119{word-spacing:16.857396px;}
.ws8_c01119{word-spacing:18.793260px;}
.ws12_c01119{word-spacing:19.379340px;}
.ws21_c01119{word-spacing:19.786518px;}
.ws13_c01119{word-spacing:19.797480px;}
.ws20_c01119{word-spacing:19.846296px;}
.ws24_c01119{word-spacing:20.563632px;}
.ws25_c01119{word-spacing:21.340746px;}
.ws1b_c01119{word-spacing:22.379760px;}
.ws17_c01119{word-spacing:22.953600px;}
.ws6_c01119{word-spacing:23.312250px;}
.ws18_c01119{word-spacing:23.383980px;}
.wsc_c01119{word-spacing:25.033770px;}
.wsb_c01119{word-spacing:25.320690px;}
.ws7_c01119{word-spacing:26.755290px;}
.ws0_c01119{word-spacing:26.827020px;}
.ws15_c01119{word-spacing:27.113940px;}
.ws23_c01119{word-spacing:27.856548px;}
.wsd_c01119{word-spacing:29.122380px;}
.ws5_c01119{word-spacing:29.337570px;}
.ws4_c01119{word-spacing:29.481030px;}
.ws2_c01119{word-spacing:30.198330px;}
.ws1a_c01119{word-spacing:30.915630px;}
.ws9_c01119{word-spacing:31.130820px;}
.wse_c01119{word-spacing:31.489470px;}
.wsa_c01119{word-spacing:31.991580px;}
.wsf_c01119{word-spacing:32.063310px;}
.ws3_c01119{word-spacing:32.350230px;}
.ws14_c01119{word-spacing:32.565420px;}
.ws16_c01119{word-spacing:34.215210px;}
.ws19_c01119{word-spacing:34.573860px;}
._0_c01119{margin-left:-40.670910px;}
._d_c01119{margin-left:-36.797490px;}
._9_c01119{margin-left:-35.291160px;}
._b_c01119{margin-left:-33.282720px;}
._10_c01119{margin-left:-32.278500px;}
._14_c01119{margin-left:-30.424080px;}
._f_c01119{margin-left:-28.692000px;}
._5_c01119{margin-left:-27.329130px;}
._15_c01119{margin-left:-22.385850px;}
._4_c01119{margin-left:-7.890300px;}
._e_c01119{margin-left:-6.742620px;}
._12_c01119{margin-left:-4.949370px;}
._6_c01119{margin-left:-3.945150px;}
._a_c01119{margin-left:-2.869200px;}
._3_c01119{margin-left:-1.864980px;}
._7_c01119{width:1.864980px;}
._2_c01119{width:3.873420px;}
._13_c01119{width:5.393070px;}
._11_c01119{width:22.594950px;}
._c_c01119{width:29.194110px;}
._8_c01119{width:38.105190px;}
._1_c01119{width:424.502910px;}
.fc0_c01119{color:rgb(0,0,0);}
.fs2_c01119{font-size:41.844000px;}
.fs1_c01119{font-size:47.820000px;}
.fs3_c01119{font-size:59.778000px;}
.fs0_c01119{font-size:71.730000px;}
.y0_c01119{bottom:0.000000px;}
.y29_c01119{bottom:71.973000px;}
.y28_c01119{bottom:89.905500px;}
.y27_c01119{bottom:113.260500px;}
.y26_c01119{bottom:125.770500px;}
.y25_c01119{bottom:143.703000px;}
.y24_c01119{bottom:167.059500px;}
.y23_c01119{bottom:179.569500px;}
.y22_c01119{bottom:197.502000px;}
.y21_c01119{bottom:202.924500px;}
.y20_c01119{bottom:229.543500px;}
.y1f_c01119{bottom:256.434000px;}
.y1e_c01119{bottom:283.324500px;}
.y1d_c01119{bottom:310.215000px;}
.y1c_c01119{bottom:337.107000px;}
.y1b_c01119{bottom:376.461000px;}
.y1a_c01119{bottom:403.353000px;}
.y19_c01119{bottom:430.243500px;}
.y18_c01119{bottom:457.134000px;}
.y17_c01119{bottom:484.024500px;}
.y16_c01119{bottom:510.916500px;}
.y15_c01119{bottom:537.807000px;}
.y14_c01119{bottom:564.697500px;}
.y13_c01119{bottom:591.588000px;}
.y12_c01119{bottom:618.480000px;}
.y11_c01119{bottom:645.370500px;}
.y10_c01119{bottom:684.726000px;}
.yf_c01119{bottom:711.616500px;}
.ye_c01119{bottom:738.507000px;}
.yd_c01119{bottom:765.397500px;}
.yc_c01119{bottom:792.289500px;}
.yb_c01119{bottom:819.180000px;}
.ya_c01119{bottom:846.070500px;}
.y9_c01119{bottom:872.961000px;}
.y8_c01119{bottom:912.316500px;}
.y7_c01119{bottom:939.207000px;}
.y6_c01119{bottom:966.099000px;}
.y5_c01119{bottom:992.989500px;}
.y4_c01119{bottom:1019.880000px;}
.y3_c01119{bottom:1046.770500px;}
.y2_c01119{bottom:1073.662500px;}
.y1_c01119{bottom:1140.615000px;}
.h8_c01119{height:28.286544px;}
.h5_c01119{height:38.251500px;}
.h7_c01119{height:44.833500px;}
.h2_c01119{height:53.797500px;}
.h4_c01119{height:58.354320px;}
.h6_c01119{height:59.941500px;}
.h3_c01119{height:71.929500px;}
.h1_c01119{height:1263.750000px;}
.h0_c01119{height:1264.110000px;}
.w0_c01119{width:893.869500px;}
.w1_c01119{width:894.000000px;}
.x0_c01119{left:0.000000px;}
.x1_c01119{left:127.558500px;}
.x6_c01119{left:141.798000px;}
.x3_c01119{left:159.838500px;}
.x5_c01119{left:171.456000px;}
.x4_c01119{left:197.794500px;}
.x7_c01119{left:199.083000px;}
.x8_c01119{left:294.813000px;}
.x2_c01119{left:324.922500px;}
@media print{
.v3_c01119{vertical-align:-19.280000pt;}
.v0_c01119{vertical-align:0.000000pt;}
.v4_c01119{vertical-align:13.429333pt;}
.v1_c01119{vertical-align:16.117333pt;}
.v2_c01119{vertical-align:23.136000pt;}
.ls0_c01119{letter-spacing:0.000000pt;}
.ws1_c01119{word-spacing:-0.063760pt;}
.ws1d_c01119{word-spacing:-0.053136pt;}
.ws10_c01119{word-spacing:-0.042507pt;}
.ws1c_c01119{word-spacing:-0.037195pt;}
.ws26_c01119{word-spacing:0.000000pt;}
.ws1e_c01119{word-spacing:13.390272pt;}
.ws11_c01119{word-spacing:14.537280pt;}
.ws22_c01119{word-spacing:14.559264pt;}
.ws1f_c01119{word-spacing:14.984352pt;}
.ws8_c01119{word-spacing:16.705120pt;}
.ws12_c01119{word-spacing:17.226080pt;}
.ws21_c01119{word-spacing:17.588016pt;}
.ws13_c01119{word-spacing:17.597760pt;}
.ws20_c01119{word-spacing:17.641152pt;}
.ws24_c01119{word-spacing:18.278784pt;}
.ws25_c01119{word-spacing:18.969552pt;}
.ws1b_c01119{word-spacing:19.893120pt;}
.ws17_c01119{word-spacing:20.403200pt;}
.ws6_c01119{word-spacing:20.722000pt;}
.ws18_c01119{word-spacing:20.785760pt;}
.wsc_c01119{word-spacing:22.252240pt;}
.wsb_c01119{word-spacing:22.507280pt;}
.ws7_c01119{word-spacing:23.782480pt;}
.ws0_c01119{word-spacing:23.846240pt;}
.ws15_c01119{word-spacing:24.101280pt;}
.ws23_c01119{word-spacing:24.761376pt;}
.wsd_c01119{word-spacing:25.886560pt;}
.ws5_c01119{word-spacing:26.077840pt;}
.ws4_c01119{word-spacing:26.205360pt;}
.ws2_c01119{word-spacing:26.842960pt;}
.ws1a_c01119{word-spacing:27.480560pt;}
.ws9_c01119{word-spacing:27.671840pt;}
.wse_c01119{word-spacing:27.990640pt;}
.wsa_c01119{word-spacing:28.436960pt;}
.wsf_c01119{word-spacing:28.500720pt;}
.ws3_c01119{word-spacing:28.755760pt;}
.ws14_c01119{word-spacing:28.947040pt;}
.ws16_c01119{word-spacing:30.413520pt;}
.ws19_c01119{word-spacing:30.732320pt;}
._0_c01119{margin-left:-36.151920pt;}
._d_c01119{margin-left:-32.708880pt;}
._9_c01119{margin-left:-31.369920pt;}
._b_c01119{margin-left:-29.584640pt;}
._10_c01119{margin-left:-28.692000pt;}
._14_c01119{margin-left:-27.043627pt;}
._f_c01119{margin-left:-25.504000pt;}
._5_c01119{margin-left:-24.292560pt;}
._15_c01119{margin-left:-19.898533pt;}
._4_c01119{margin-left:-7.013600pt;}
._e_c01119{margin-left:-5.993440pt;}
._12_c01119{margin-left:-4.399440pt;}
._6_c01119{margin-left:-3.506800pt;}
._a_c01119{margin-left:-2.550400pt;}
._3_c01119{margin-left:-1.657760pt;}
._7_c01119{width:1.657760pt;}
._2_c01119{width:3.443040pt;}
._13_c01119{width:4.793840pt;}
._11_c01119{width:20.084400pt;}
._c_c01119{width:25.950320pt;}
._8_c01119{width:33.871280pt;}
._1_c01119{width:377.335920pt;}
.fs2_c01119{font-size:37.194667pt;}
.fs1_c01119{font-size:42.506667pt;}
.fs3_c01119{font-size:53.136000pt;}
.fs0_c01119{font-size:63.760000pt;}
.y0_c01119{bottom:0.000000pt;}
.y29_c01119{bottom:63.976000pt;}
.y28_c01119{bottom:79.916000pt;}
.y27_c01119{bottom:100.676000pt;}
.y26_c01119{bottom:111.796000pt;}
.y25_c01119{bottom:127.736000pt;}
.y24_c01119{bottom:148.497333pt;}
.y23_c01119{bottom:159.617333pt;}
.y22_c01119{bottom:175.557333pt;}
.y21_c01119{bottom:180.377333pt;}
.y20_c01119{bottom:204.038667pt;}
.y1f_c01119{bottom:227.941333pt;}
.y1e_c01119{bottom:251.844000pt;}
.y1d_c01119{bottom:275.746667pt;}
.y1c_c01119{bottom:299.650667pt;}
.y1b_c01119{bottom:334.632000pt;}
.y1a_c01119{bottom:358.536000pt;}
.y19_c01119{bottom:382.438667pt;}
.y18_c01119{bottom:406.341333pt;}
.y17_c01119{bottom:430.244000pt;}
.y16_c01119{bottom:454.148000pt;}
.y15_c01119{bottom:478.050667pt;}
.y14_c01119{bottom:501.953333pt;}
.y13_c01119{bottom:525.856000pt;}
.y12_c01119{bottom:549.760000pt;}
.y11_c01119{bottom:573.662667pt;}
.y10_c01119{bottom:608.645333pt;}
.yf_c01119{bottom:632.548000pt;}
.ye_c01119{bottom:656.450667pt;}
.yd_c01119{bottom:680.353333pt;}
.yc_c01119{bottom:704.257333pt;}
.yb_c01119{bottom:728.160000pt;}
.ya_c01119{bottom:752.062667pt;}
.y9_c01119{bottom:775.965333pt;}
.y8_c01119{bottom:810.948000pt;}
.y7_c01119{bottom:834.850667pt;}
.y6_c01119{bottom:858.754667pt;}
.y5_c01119{bottom:882.657333pt;}
.y4_c01119{bottom:906.560000pt;}
.y3_c01119{bottom:930.462667pt;}
.y2_c01119{bottom:954.366667pt;}
.y1_c01119{bottom:1013.880000pt;}
.h8_c01119{height:25.143595pt;}
.h5_c01119{height:34.001333pt;}
.h7_c01119{height:39.852000pt;}
.h2_c01119{height:47.820000pt;}
.h4_c01119{height:51.870507pt;}
.h6_c01119{height:53.281333pt;}
.h3_c01119{height:63.937333pt;}
.h1_c01119{height:1123.333333pt;}
.h0_c01119{height:1123.653333pt;}
.w0_c01119{width:794.550667pt;}
.w1_c01119{width:794.666667pt;}
.x0_c01119{left:0.000000pt;}
.x1_c01119{left:113.385333pt;}
.x6_c01119{left:126.042667pt;}
.x3_c01119{left:142.078667pt;}
.x5_c01119{left:152.405333pt;}
.x4_c01119{left:175.817333pt;}
.x7_c01119{left:176.962667pt;}
.x8_c01119{left:262.056000pt;}
.x2_c01119{left:288.820000pt;}
}





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

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





.ff0_c01120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01120;src:url('chunks/assets/font_9d09cd491d4194433115194e.woff2')format("woff");}.ff1_c01120{font-family:ff1_c01120;line-height:1.001000;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_c01120;src:url('chunks/assets/font_15e6f76a8c1a918597348daf.woff2')format("woff");}.ff2_c01120{font-family:ff2_c01120;line-height:1.001000;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_c01120;src:url('chunks/assets/font_6ddea26106925ec9911c0dc2.woff2')format("woff");}.ff3_c01120{font-family:ff3_c01120;line-height:1.001000;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_c01120;src:url('chunks/assets/font_d35b4ea2643f8131012c56c4.woff2')format("woff");}.ff4_c01120{font-family:ff4_c01120;line-height:1.000000;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_c01120{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_c01120{vertical-align:0.000000px;}
.v2_c01120{vertical-align:5.976000px;}
.v1_c01120{vertical-align:7.176000px;}
.ls0_c01120{letter-spacing:0.000000px;}
.sc__c01120{text-shadow:none;}
.sc0_c01120{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__c01120{-webkit-text-stroke:0px transparent;}
.sc0_c01120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01120{word-spacing:-0.071730px;}
.ws22_c01120{word-spacing:0.000000px;}
.ws2_c01120{word-spacing:16.497900px;}
.ws1c_c01120{word-spacing:16.928280px;}
.ws14_c01120{word-spacing:19.008450px;}
.ws12_c01120{word-spacing:19.016970px;}
.ws3_c01120{word-spacing:20.084400px;}
.wsf_c01120{word-spacing:20.801700px;}
.ws6_c01120{word-spacing:20.945160px;}
.ws13_c01120{word-spacing:21.088620px;}
.ws1b_c01120{word-spacing:21.805920px;}
.ws7_c01120{word-spacing:23.312250px;}
.ws11_c01120{word-spacing:23.383980px;}
.ws16_c01120{word-spacing:23.957820px;}
.ws1d_c01120{word-spacing:24.101280px;}
.ws5_c01120{word-spacing:24.388200px;}
.wsb_c01120{word-spacing:26.058810px;}
.ws9_c01120{word-spacing:26.109720px;}
.ws0_c01120{word-spacing:26.827020px;}
.ws10_c01120{word-spacing:26.970480px;}
.ws17_c01120{word-spacing:27.042210px;}
.ws4_c01120{word-spacing:27.329130px;}
.wsc_c01120{word-spacing:27.616050px;}
.ws8_c01120{word-spacing:28.692000px;}
.ws15_c01120{word-spacing:30.556980px;}
.ws21_c01120{word-spacing:30.772170px;}
.wse_c01120{word-spacing:32.135040px;}
.ws1f_c01120{word-spacing:32.450652px;}
.ws1a_c01120{word-spacing:32.995800px;}
.wsd_c01120{word-spacing:33.067530px;}
.wsa_c01120{word-spacing:33.543270px;}
.ws18_c01120{word-spacing:34.215210px;}
.ws19_c01120{word-spacing:35.004240px;}
.ws20_c01120{word-spacing:79.261650px;}
.ws1e_c01120{word-spacing:95.113980px;}
._0_c01120{margin-left:-40.670910px;}
._8_c01120{margin-left:-36.725760px;}
._3_c01120{margin-left:-35.291160px;}
._7_c01120{margin-left:-33.354450px;}
._6_c01120{margin-left:-27.329130px;}
._f_c01120{margin-left:-8.994480px;}
._5_c01120{margin-left:-7.890300px;}
._b_c01120{margin-left:-5.810130px;}
._a_c01120{margin-left:-3.873420px;}
._2_c01120{margin-left:-1.936710px;}
._4_c01120{width:1.793250px;}
._e_c01120{width:3.658230px;}
._9_c01120{width:18.219420px;}
._c_c01120{width:24.926640px;}
._d_c01120{width:79.333380px;}
._1_c01120{width:424.502910px;}
.fc0_c01120{color:rgb(0,0,0);}
.fs0_c01120{font-size:71.730000px;}
.fs1_c01120{font-size:86.076000px;}
.y0_c01120{bottom:0.000000px;}
.y22_c01120{bottom:95.247000px;}
.y21_c01120{bottom:122.137500px;}
.y20_c01120{bottom:156.750000px;}
.y1f_c01120{bottom:216.102000px;}
.y1e_c01120{bottom:283.599000px;}
.y1d_c01120{bottom:310.489500px;}
.y1c_c01120{bottom:337.380000px;}
.y1b_c01120{bottom:364.272000px;}
.y1a_c01120{bottom:391.162500px;}
.y19_c01120{bottom:418.053000px;}
.y18_c01120{bottom:444.943500px;}
.y17_c01120{bottom:471.835500px;}
.y16_c01120{bottom:506.446500px;}
.y15_c01120{bottom:562.735500px;}
.y14_c01120{bottom:589.626000px;}
.y13_c01120{bottom:616.518000px;}
.y12_c01120{bottom:643.408500px;}
.y11_c01120{bottom:670.299000px;}
.y10_c01120{bottom:697.189500px;}
.yf_c01120{bottom:724.081500px;}
.ye_c01120{bottom:750.972000px;}
.yd_c01120{bottom:777.862500px;}
.yc_c01120{bottom:804.753000px;}
.yb_c01120{bottom:831.645000px;}
.ya_c01120{bottom:858.535500px;}
.y9_c01120{bottom:885.426000px;}
.y8_c01120{bottom:912.316500px;}
.y7_c01120{bottom:939.207000px;}
.y6_c01120{bottom:966.099000px;}
.y5_c01120{bottom:992.989500px;}
.y4_c01120{bottom:1019.880000px;}
.y3_c01120{bottom:1046.770500px;}
.y2_c01120{bottom:1073.662500px;}
.y1_c01120{bottom:1140.615000px;}
.h2_c01120{height:53.797500px;}
.h5_c01120{height:59.773500px;}
.h4_c01120{height:64.557000px;}
.h3_c01120{height:71.733000px;}
.h1_c01120{height:1263.750000px;}
.h0_c01120{height:1264.110000px;}
.w0_c01120{width:893.869500px;}
.w1_c01120{width:894.000000px;}
.x0_c01120{left:0.000000px;}
.x1_c01120{left:127.558500px;}
.x2_c01120{left:159.838500px;}
.x3_c01120{left:234.831000px;}
.x4_c01120{left:277.759500px;}
.x5_c01120{left:332.155500px;}
@media print{
.v0_c01120{vertical-align:0.000000pt;}
.v2_c01120{vertical-align:5.312000pt;}
.v1_c01120{vertical-align:6.378667pt;}
.ls0_c01120{letter-spacing:0.000000pt;}
.ws1_c01120{word-spacing:-0.063760pt;}
.ws22_c01120{word-spacing:0.000000pt;}
.ws2_c01120{word-spacing:14.664800pt;}
.ws1c_c01120{word-spacing:15.047360pt;}
.ws14_c01120{word-spacing:16.896400pt;}
.ws12_c01120{word-spacing:16.903973pt;}
.ws3_c01120{word-spacing:17.852800pt;}
.wsf_c01120{word-spacing:18.490400pt;}
.ws6_c01120{word-spacing:18.617920pt;}
.ws13_c01120{word-spacing:18.745440pt;}
.ws1b_c01120{word-spacing:19.383040pt;}
.ws7_c01120{word-spacing:20.722000pt;}
.ws11_c01120{word-spacing:20.785760pt;}
.ws16_c01120{word-spacing:21.295840pt;}
.ws1d_c01120{word-spacing:21.423360pt;}
.ws5_c01120{word-spacing:21.678400pt;}
.wsb_c01120{word-spacing:23.163387pt;}
.ws9_c01120{word-spacing:23.208640pt;}
.ws0_c01120{word-spacing:23.846240pt;}
.ws10_c01120{word-spacing:23.973760pt;}
.ws17_c01120{word-spacing:24.037520pt;}
.ws4_c01120{word-spacing:24.292560pt;}
.wsc_c01120{word-spacing:24.547600pt;}
.ws8_c01120{word-spacing:25.504000pt;}
.ws15_c01120{word-spacing:27.161760pt;}
.ws21_c01120{word-spacing:27.353040pt;}
.wse_c01120{word-spacing:28.564480pt;}
.ws1f_c01120{word-spacing:28.845024pt;}
.ws1a_c01120{word-spacing:29.329600pt;}
.wsd_c01120{word-spacing:29.393360pt;}
.wsa_c01120{word-spacing:29.816240pt;}
.ws18_c01120{word-spacing:30.413520pt;}
.ws19_c01120{word-spacing:31.114880pt;}
.ws20_c01120{word-spacing:70.454800pt;}
.ws1e_c01120{word-spacing:84.545760pt;}
._0_c01120{margin-left:-36.151920pt;}
._8_c01120{margin-left:-32.645120pt;}
._3_c01120{margin-left:-31.369920pt;}
._7_c01120{margin-left:-29.648400pt;}
._6_c01120{margin-left:-24.292560pt;}
._f_c01120{margin-left:-7.995093pt;}
._5_c01120{margin-left:-7.013600pt;}
._b_c01120{margin-left:-5.164560pt;}
._a_c01120{margin-left:-3.443040pt;}
._2_c01120{margin-left:-1.721520pt;}
._4_c01120{width:1.594000pt;}
._e_c01120{width:3.251760pt;}
._9_c01120{width:16.195040pt;}
._c_c01120{width:22.157013pt;}
._d_c01120{width:70.518560pt;}
._1_c01120{width:377.335920pt;}
.fs0_c01120{font-size:63.760000pt;}
.fs1_c01120{font-size:76.512000pt;}
.y0_c01120{bottom:0.000000pt;}
.y22_c01120{bottom:84.664000pt;}
.y21_c01120{bottom:108.566667pt;}
.y20_c01120{bottom:139.333333pt;}
.y1f_c01120{bottom:192.090667pt;}
.y1e_c01120{bottom:252.088000pt;}
.y1d_c01120{bottom:275.990667pt;}
.y1c_c01120{bottom:299.893333pt;}
.y1b_c01120{bottom:323.797333pt;}
.y1a_c01120{bottom:347.700000pt;}
.y19_c01120{bottom:371.602667pt;}
.y18_c01120{bottom:395.505333pt;}
.y17_c01120{bottom:419.409333pt;}
.y16_c01120{bottom:450.174667pt;}
.y15_c01120{bottom:500.209333pt;}
.y14_c01120{bottom:524.112000pt;}
.y13_c01120{bottom:548.016000pt;}
.y12_c01120{bottom:571.918667pt;}
.y11_c01120{bottom:595.821333pt;}
.y10_c01120{bottom:619.724000pt;}
.yf_c01120{bottom:643.628000pt;}
.ye_c01120{bottom:667.530667pt;}
.yd_c01120{bottom:691.433333pt;}
.yc_c01120{bottom:715.336000pt;}
.yb_c01120{bottom:739.240000pt;}
.ya_c01120{bottom:763.142667pt;}
.y9_c01120{bottom:787.045333pt;}
.y8_c01120{bottom:810.948000pt;}
.y7_c01120{bottom:834.850667pt;}
.y6_c01120{bottom:858.754667pt;}
.y5_c01120{bottom:882.657333pt;}
.y4_c01120{bottom:906.560000pt;}
.y3_c01120{bottom:930.462667pt;}
.y2_c01120{bottom:954.366667pt;}
.y1_c01120{bottom:1013.880000pt;}
.h2_c01120{height:47.820000pt;}
.h5_c01120{height:53.132000pt;}
.h4_c01120{height:57.384000pt;}
.h3_c01120{height:63.762667pt;}
.h1_c01120{height:1123.333333pt;}
.h0_c01120{height:1123.653333pt;}
.w0_c01120{width:794.550667pt;}
.w1_c01120{width:794.666667pt;}
.x0_c01120{left:0.000000pt;}
.x1_c01120{left:113.385333pt;}
.x2_c01120{left:142.078667pt;}
.x3_c01120{left:208.738667pt;}
.x4_c01120{left:246.897333pt;}
.x5_c01120{left:295.249333pt;}
}





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

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





.ff0_c01121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01121;src:url('chunks/assets/font_41bdb138e2ee065cbe055b07.woff2')format("woff");}.ff1_c01121{font-family:ff1_c01121;line-height:1.001000;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_c01121;src:url('chunks/assets/font_0ee0687a2d2b788a1cd569f4.woff2')format("woff");}.ff2_c01121{font-family:ff2_c01121;line-height:1.001000;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_c01121;src:url('chunks/assets/font_cb8ea482b27b82c5b15c34d1.woff2')format("woff");}.ff3_c01121{font-family:ff3_c01121;line-height:1.000000;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_c01121;src:url('chunks/assets/font_85134a9147b446555634dd00.woff2')format("woff");}.ff4_c01121{font-family:ff4_c01121;line-height:1.001000;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_c01121;src:url('chunks/assets/font_e50bbbe4c4176447470152cb.woff2')format("woff");}.ff5_c01121{font-family:ff5_c01121;line-height:0.451000;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_c01121;src:url('chunks/assets/font_4877b8afa5de1bad9c1427fa.woff2')format("woff");}.ff6_c01121{font-family:ff6_c01121;line-height:0.697000;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_c01121;src:url('chunks/assets/font_2193d4bee8bca10b2144d230.woff2')format("woff");}.ff7_c01121{font-family:ff7_c01121;line-height:0.696000;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_c01121;src:url('chunks/assets/font_4ee8cbc5d4daee4764c98038.woff2')format("woff");}.ff8_c01121{font-family:ff8_c01121;line-height:1.000000;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_c01121;src:url('chunks/assets/font_c9aed7e13baf8d0461ed0f52.woff2')format("woff");}.ff9_c01121{font-family:ff9_c01121;line-height:1.000000;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_c01121{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);}
.v3_c01121{vertical-align:-21.690000px;}
.v0_c01121{vertical-align:0.000000px;}
.v1_c01121{vertical-align:5.976000px;}
.v2_c01121{vertical-align:26.034000px;}
.ls7_c01121{letter-spacing:0.000000px;}
.ls1_c01121{letter-spacing:0.003000px;}
.ls6_c01121{letter-spacing:20.850300px;}
.ls5_c01121{letter-spacing:20.875440px;}
.ls4_c01121{letter-spacing:22.002300px;}
.ls2_c01121{letter-spacing:22.027440px;}
.ls3_c01121{letter-spacing:22.033440px;}
.ls0_c01121{letter-spacing:26.804820px;}
.sc__c01121{text-shadow:none;}
.sc0_c01121{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__c01121{-webkit-text-stroke:0px transparent;}
.sc0_c01121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01121{word-spacing:-0.071730px;}
.ws23_c01121{word-spacing:-0.047820px;}
.ws25_c01121{word-spacing:-0.041844px;}
.ws28_c01121{word-spacing:0.000000px;}
.ws19_c01121{word-spacing:16.641360px;}
.ws21_c01121{word-spacing:17.789040px;}
.ws9_c01121{word-spacing:17.932500px;}
.ws3_c01121{word-spacing:18.864990px;}
.ws1e_c01121{word-spacing:19.151910px;}
.ws26_c01121{word-spacing:19.846296px;}
.ws22_c01121{word-spacing:19.940940px;}
.wsa_c01121{word-spacing:20.227860px;}
.ws15_c01121{word-spacing:20.801700px;}
.ws27_c01121{word-spacing:21.340746px;}
.ws12_c01121{word-spacing:21.914640px;}
.ws14_c01121{word-spacing:21.949380px;}
.wse_c01121{word-spacing:22.092840px;}
.ws17_c01121{word-spacing:22.666680px;}
.ws10_c01121{word-spacing:22.953600px;}
.ws4_c01121{word-spacing:23.312250px;}
.ws5_c01121{word-spacing:23.383980px;}
.ws20_c01121{word-spacing:23.455710px;}
.ws13_c01121{word-spacing:23.814360px;}
.ws18_c01121{word-spacing:24.316470px;}
.wsf_c01121{word-spacing:25.033770px;}
.ws1d_c01121{word-spacing:25.248960px;}
.ws11_c01121{word-spacing:25.392420px;}
.ws16_c01121{word-spacing:26.174790px;}
.wsc_c01121{word-spacing:26.540100px;}
.ws8_c01121{word-spacing:26.755290px;}
.ws0_c01121{word-spacing:26.827020px;}
.ws7_c01121{word-spacing:27.042210px;}
.ws6_c01121{word-spacing:27.113940px;}
.ws2_c01121{word-spacing:27.759510px;}
.ws24_c01121{word-spacing:27.902970px;}
.ws1f_c01121{word-spacing:28.835460px;}
.ws1c_c01121{word-spacing:29.265840px;}
.wsd_c01121{word-spacing:29.481030px;}
.ws1a_c01121{word-spacing:31.991580px;}
.ws1b_c01121{word-spacing:33.139260px;}
.wsb_c01121{word-spacing:33.282720px;}
._0_c01121{margin-left:-40.670910px;}
._7_c01121{margin-left:-37.084410px;}
._5_c01121{margin-left:-35.147700px;}
._8_c01121{margin-left:-33.139260px;}
._4_c01121{margin-left:-27.329130px;}
._3_c01121{margin-left:-7.962030px;}
._9_c01121{margin-left:-5.881860px;}
._d_c01121{margin-left:-3.586500px;}
._2_c01121{margin-left:-2.008440px;}
._6_c01121{width:1.936710px;}
._a_c01121{width:3.514770px;}
._f_c01121{width:4.721640px;}
._e_c01121{width:25.867260px;}
._c_c01121{width:28.620270px;}
._b_c01121{width:79.333380px;}
._1_c01121{width:424.502910px;}
.fc0_c01121{color:rgb(0,0,0);}
.fs2_c01121{font-size:41.844000px;}
.fs1_c01121{font-size:47.820000px;}
.fs3_c01121{font-size:59.778000px;}
.fs0_c01121{font-size:71.730000px;}
.y0_c01121{bottom:0.000000px;}
.y25_c01121{bottom:95.497500px;}
.y24_c01121{bottom:122.254500px;}
.y23_c01121{bottom:149.145000px;}
.y22_c01121{bottom:176.035500px;}
.y21_c01121{bottom:202.926000px;}
.y20_c01121{bottom:229.818000px;}
.y1f_c01121{bottom:256.708500px;}
.y1e_c01121{bottom:283.599000px;}
.y1d_c01121{bottom:310.489500px;}
.y1c_c01121{bottom:337.380000px;}
.y1b_c01121{bottom:364.272000px;}
.y1a_c01121{bottom:391.162500px;}
.y19_c01121{bottom:418.053000px;}
.y18_c01121{bottom:444.943500px;}
.y17_c01121{bottom:471.835500px;}
.y16_c01121{bottom:498.726000px;}
.y15_c01121{bottom:525.616500px;}
.y14_c01121{bottom:552.507000px;}
.y13_c01121{bottom:579.399000px;}
.y12_c01121{bottom:606.289500px;}
.y11_c01121{bottom:633.180000px;}
.y10_c01121{bottom:660.070500px;}
.yf_c01121{bottom:686.962500px;}
.ye_c01121{bottom:713.853000px;}
.yd_c01121{bottom:740.743500px;}
.yc_c01121{bottom:767.634000px;}
.yb_c01121{bottom:794.524500px;}
.ya_c01121{bottom:821.416500px;}
.y9_c01121{bottom:848.307000px;}
.y8_c01121{bottom:875.197500px;}
.y7_c01121{bottom:902.088000px;}
.y6_c01121{bottom:936.700500px;}
.y5_c01121{bottom:992.989500px;}
.y4_c01121{bottom:1019.880000px;}
.y3_c01121{bottom:1046.770500px;}
.y2_c01121{bottom:1073.662500px;}
.y1_c01121{bottom:1140.615000px;}
.h5_c01121{height:28.286544px;}
.h2_c01121{height:53.797500px;}
.h4_c01121{height:58.354320px;}
.h3_c01121{height:59.773500px;}
.h1_c01121{height:1263.750000px;}
.h0_c01121{height:1264.110000px;}
.w0_c01121{width:893.869500px;}
.w1_c01121{width:894.000000px;}
.x0_c01121{left:0.000000px;}
.x1_c01121{left:127.558500px;}
.x4_c01121{left:141.798000px;}
.x2_c01121{left:159.838500px;}
.x3_c01121{left:343.846500px;}
@media print{
.v3_c01121{vertical-align:-19.280000pt;}
.v0_c01121{vertical-align:0.000000pt;}
.v1_c01121{vertical-align:5.312000pt;}
.v2_c01121{vertical-align:23.141333pt;}
.ls7_c01121{letter-spacing:0.000000pt;}
.ls1_c01121{letter-spacing:0.002667pt;}
.ls6_c01121{letter-spacing:18.533600pt;}
.ls5_c01121{letter-spacing:18.555947pt;}
.ls4_c01121{letter-spacing:19.557600pt;}
.ls2_c01121{letter-spacing:19.579947pt;}
.ls3_c01121{letter-spacing:19.585280pt;}
.ls0_c01121{letter-spacing:23.826507pt;}
.ws1_c01121{word-spacing:-0.063760pt;}
.ws23_c01121{word-spacing:-0.042507pt;}
.ws25_c01121{word-spacing:-0.037195pt;}
.ws28_c01121{word-spacing:0.000000pt;}
.ws19_c01121{word-spacing:14.792320pt;}
.ws21_c01121{word-spacing:15.812480pt;}
.ws9_c01121{word-spacing:15.940000pt;}
.ws3_c01121{word-spacing:16.768880pt;}
.ws1e_c01121{word-spacing:17.023920pt;}
.ws26_c01121{word-spacing:17.641152pt;}
.ws22_c01121{word-spacing:17.725280pt;}
.wsa_c01121{word-spacing:17.980320pt;}
.ws15_c01121{word-spacing:18.490400pt;}
.ws27_c01121{word-spacing:18.969552pt;}
.ws12_c01121{word-spacing:19.479680pt;}
.ws14_c01121{word-spacing:19.510560pt;}
.wse_c01121{word-spacing:19.638080pt;}
.ws17_c01121{word-spacing:20.148160pt;}
.ws10_c01121{word-spacing:20.403200pt;}
.ws4_c01121{word-spacing:20.722000pt;}
.ws5_c01121{word-spacing:20.785760pt;}
.ws20_c01121{word-spacing:20.849520pt;}
.ws13_c01121{word-spacing:21.168320pt;}
.ws18_c01121{word-spacing:21.614640pt;}
.wsf_c01121{word-spacing:22.252240pt;}
.ws1d_c01121{word-spacing:22.443520pt;}
.ws11_c01121{word-spacing:22.571040pt;}
.ws16_c01121{word-spacing:23.266480pt;}
.wsc_c01121{word-spacing:23.591200pt;}
.ws8_c01121{word-spacing:23.782480pt;}
.ws0_c01121{word-spacing:23.846240pt;}
.ws7_c01121{word-spacing:24.037520pt;}
.ws6_c01121{word-spacing:24.101280pt;}
.ws2_c01121{word-spacing:24.675120pt;}
.ws24_c01121{word-spacing:24.802640pt;}
.ws1f_c01121{word-spacing:25.631520pt;}
.ws1c_c01121{word-spacing:26.014080pt;}
.wsd_c01121{word-spacing:26.205360pt;}
.ws1a_c01121{word-spacing:28.436960pt;}
.ws1b_c01121{word-spacing:29.457120pt;}
.wsb_c01121{word-spacing:29.584640pt;}
._0_c01121{margin-left:-36.151920pt;}
._7_c01121{margin-left:-32.963920pt;}
._5_c01121{margin-left:-31.242400pt;}
._8_c01121{margin-left:-29.457120pt;}
._4_c01121{margin-left:-24.292560pt;}
._3_c01121{margin-left:-7.077360pt;}
._9_c01121{margin-left:-5.228320pt;}
._d_c01121{margin-left:-3.188000pt;}
._2_c01121{margin-left:-1.785280pt;}
._6_c01121{width:1.721520pt;}
._a_c01121{width:3.124240pt;}
._f_c01121{width:4.197013pt;}
._e_c01121{width:22.993120pt;}
._c_c01121{width:25.440240pt;}
._b_c01121{width:70.518560pt;}
._1_c01121{width:377.335920pt;}
.fs2_c01121{font-size:37.194667pt;}
.fs1_c01121{font-size:42.506667pt;}
.fs3_c01121{font-size:53.136000pt;}
.fs0_c01121{font-size:63.760000pt;}
.y0_c01121{bottom:0.000000pt;}
.y25_c01121{bottom:84.886667pt;}
.y24_c01121{bottom:108.670667pt;}
.y23_c01121{bottom:132.573333pt;}
.y22_c01121{bottom:156.476000pt;}
.y21_c01121{bottom:180.378667pt;}
.y20_c01121{bottom:204.282667pt;}
.y1f_c01121{bottom:228.185333pt;}
.y1e_c01121{bottom:252.088000pt;}
.y1d_c01121{bottom:275.990667pt;}
.y1c_c01121{bottom:299.893333pt;}
.y1b_c01121{bottom:323.797333pt;}
.y1a_c01121{bottom:347.700000pt;}
.y19_c01121{bottom:371.602667pt;}
.y18_c01121{bottom:395.505333pt;}
.y17_c01121{bottom:419.409333pt;}
.y16_c01121{bottom:443.312000pt;}
.y15_c01121{bottom:467.214667pt;}
.y14_c01121{bottom:491.117333pt;}
.y13_c01121{bottom:515.021333pt;}
.y12_c01121{bottom:538.924000pt;}
.y11_c01121{bottom:562.826667pt;}
.y10_c01121{bottom:586.729333pt;}
.yf_c01121{bottom:610.633333pt;}
.ye_c01121{bottom:634.536000pt;}
.yd_c01121{bottom:658.438667pt;}
.yc_c01121{bottom:682.341333pt;}
.yb_c01121{bottom:706.244000pt;}
.ya_c01121{bottom:730.148000pt;}
.y9_c01121{bottom:754.050667pt;}
.y8_c01121{bottom:777.953333pt;}
.y7_c01121{bottom:801.856000pt;}
.y6_c01121{bottom:832.622667pt;}
.y5_c01121{bottom:882.657333pt;}
.y4_c01121{bottom:906.560000pt;}
.y3_c01121{bottom:930.462667pt;}
.y2_c01121{bottom:954.366667pt;}
.y1_c01121{bottom:1013.880000pt;}
.h5_c01121{height:25.143595pt;}
.h2_c01121{height:47.820000pt;}
.h4_c01121{height:51.870507pt;}
.h3_c01121{height:53.132000pt;}
.h1_c01121{height:1123.333333pt;}
.h0_c01121{height:1123.653333pt;}
.w0_c01121{width:794.550667pt;}
.w1_c01121{width:794.666667pt;}
.x0_c01121{left:0.000000pt;}
.x1_c01121{left:113.385333pt;}
.x4_c01121{left:126.042667pt;}
.x2_c01121{left:142.078667pt;}
.x3_c01121{left:305.641333pt;}
}





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

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





.ff0_c01122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01122;src:url('chunks/assets/font_0ba8181959c306f791ce8529.woff2')format("woff");}.ff1_c01122{font-family:ff1_c01122;line-height:1.001000;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_c01122;src:url('chunks/assets/font_1ce8585ad5b0718cec242c1f.woff2')format("woff");}.ff2_c01122{font-family:ff2_c01122;line-height:1.001000;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_c01122;src:url('chunks/assets/font_bed35660c6c6329761499a53.woff2')format("woff");}.ff3_c01122{font-family:ff3_c01122;line-height:1.001000;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_c01122;src:url('chunks/assets/font_6a5aa1ad558a2e15dcb85830.woff2')format("woff");}.ff4_c01122{font-family:ff4_c01122;line-height:0.697000;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_c01122;src:url('chunks/assets/font_395b4b995ec2f69e2932932b.woff2')format("woff");}.ff5_c01122{font-family:ff5_c01122;line-height:0.696000;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_c01122;src:url('chunks/assets/font_ae17a78919a642f1d091d689.woff2')format("woff");}.ff6_c01122{font-family:ff6_c01122;line-height:1.000000;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_c01122;src:url('chunks/assets/font_28904d5667a63090d58f75e6.woff2')format("woff");}.ff7_c01122{font-family:ff7_c01122;line-height:1.000000;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_c01122{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);}
.v3_c01122{vertical-align:-21.690000px;}
.v0_c01122{vertical-align:0.000000px;}
.v2_c01122{vertical-align:18.132000px;}
.v1_c01122{vertical-align:26.034000px;}
.ls0_c01122{letter-spacing:0.000000px;}
.sc__c01122{text-shadow:none;}
.sc0_c01122{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__c01122{-webkit-text-stroke:0px transparent;}
.sc0_c01122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01122{word-spacing:-0.071730px;}
.ws1a_c01122{word-spacing:-0.047820px;}
.ws25_c01122{word-spacing:-0.041844px;}
.ws28_c01122{word-spacing:0.000000px;}
.ws14_c01122{word-spacing:15.565410px;}
.ws15_c01122{word-spacing:16.282710px;}
.ws20_c01122{word-spacing:17.645580px;}
.ws12_c01122{word-spacing:18.004230px;}
.ws1b_c01122{word-spacing:18.506340px;}
.ws26_c01122{word-spacing:19.846296px;}
.ws18_c01122{word-spacing:19.940940px;}
.ws16_c01122{word-spacing:20.156130px;}
.ws27_c01122{word-spacing:21.280968px;}
.ws1f_c01122{word-spacing:21.949380px;}
.ws17_c01122{word-spacing:22.236300px;}
.ws6_c01122{word-spacing:22.342770px;}
.ws8_c01122{word-spacing:22.379760px;}
.ws4_c01122{word-spacing:22.382010px;}
.ws3_c01122{word-spacing:22.523220px;}
.ws1c_c01122{word-spacing:23.025330px;}
.wsb_c01122{word-spacing:23.312250px;}
.ws13_c01122{word-spacing:23.383980px;}
.ws7_c01122{word-spacing:24.101280px;}
.ws5_c01122{word-spacing:24.173010px;}
.wsd_c01122{word-spacing:24.388200px;}
.ws19_c01122{word-spacing:25.033770px;}
.wse_c01122{word-spacing:25.177230px;}
.ws10_c01122{word-spacing:25.751070px;}
.ws0_c01122{word-spacing:26.827020px;}
.wsa_c01122{word-spacing:27.257400px;}
.ws1d_c01122{word-spacing:28.692000px;}
.ws21_c01122{word-spacing:28.978920px;}
.ws23_c01122{word-spacing:29.006670px;}
.ws11_c01122{word-spacing:29.481030px;}
.wsc_c01122{word-spacing:29.911410px;}
.ws22_c01122{word-spacing:30.270060px;}
.wsf_c01122{word-spacing:30.700440px;}
.ws2_c01122{word-spacing:31.059090px;}
.ws1e_c01122{word-spacing:31.274280px;}
.ws24_c01122{word-spacing:33.282720px;}
.ws9_c01122{word-spacing:34.358670px;}
._0_c01122{margin-left:-40.670910px;}
._a_c01122{margin-left:-37.156140px;}
._5_c01122{margin-left:-35.936730px;}
._e_c01122{margin-left:-34.789050px;}
._3_c01122{margin-left:-33.210990px;}
._15_c01122{margin-left:-31.135488px;}
._c_c01122{margin-left:-27.400860px;}
._b_c01122{margin-left:-7.818570px;}
._6_c01122{margin-left:-5.810130px;}
._7_c01122{margin-left:-3.658230px;}
._11_c01122{margin-left:-2.654010px;}
._2_c01122{margin-left:-1.649790px;}
._4_c01122{width:1.936710px;}
._f_c01122{width:3.371310px;}
._13_c01122{width:20.371320px;}
._d_c01122{width:22.953600px;}
._10_c01122{width:24.531660px;}
._8_c01122{width:26.827530px;}
._9_c01122{width:28.449270px;}
._12_c01122{width:31.398270px;}
._14_c01122{width:34.494240px;}
._1_c01122{width:424.502910px;}
.fc0_c01122{color:rgb(0,0,0);}
.fs2_c01122{font-size:41.844000px;}
.fs1_c01122{font-size:47.820000px;}
.fs3_c01122{font-size:59.778000px;}
.fs0_c01122{font-size:71.730000px;}
.y0_c01122{bottom:0.000000px;}
.y25_c01122{bottom:92.766000px;}
.y24_c01122{bottom:120.519000px;}
.y23_c01122{bottom:147.409500px;}
.y22_c01122{bottom:174.300000px;}
.y21_c01122{bottom:201.192000px;}
.y20_c01122{bottom:228.082500px;}
.y1f_c01122{bottom:254.973000px;}
.y1e_c01122{bottom:281.863500px;}
.y1d_c01122{bottom:308.754000px;}
.y1c_c01122{bottom:335.646000px;}
.y1b_c01122{bottom:381.963000px;}
.y1a_c01122{bottom:408.855000px;}
.y19_c01122{bottom:435.745500px;}
.y18_c01122{bottom:462.636000px;}
.y17_c01122{bottom:489.526500px;}
.y16_c01122{bottom:535.845000px;}
.y15_c01122{bottom:562.735500px;}
.y14_c01122{bottom:589.626000px;}
.y13_c01122{bottom:616.518000px;}
.y12_c01122{bottom:643.408500px;}
.y11_c01122{bottom:670.299000px;}
.y10_c01122{bottom:697.189500px;}
.yf_c01122{bottom:724.081500px;}
.ye_c01122{bottom:750.972000px;}
.yd_c01122{bottom:777.862500px;}
.yc_c01122{bottom:804.753000px;}
.yb_c01122{bottom:831.645000px;}
.ya_c01122{bottom:858.535500px;}
.y9_c01122{bottom:885.426000px;}
.y8_c01122{bottom:912.316500px;}
.y7_c01122{bottom:939.207000px;}
.y6_c01122{bottom:966.099000px;}
.y5_c01122{bottom:992.989500px;}
.y4_c01122{bottom:1019.880000px;}
.y3_c01122{bottom:1046.770500px;}
.y2_c01122{bottom:1073.662500px;}
.y1_c01122{bottom:1140.615000px;}
.h5_c01122{height:28.286544px;}
.h2_c01122{height:53.797500px;}
.h3_c01122{height:58.360320px;}
.h4_c01122{height:71.929500px;}
.h1_c01122{height:1263.750000px;}
.h0_c01122{height:1264.110000px;}
.w0_c01122{width:893.869500px;}
.w1_c01122{width:894.000000px;}
.x0_c01122{left:0.000000px;}
.x1_c01122{left:127.558500px;}
.x6_c01122{left:141.798000px;}
.x2_c01122{left:159.838500px;}
.x4_c01122{left:171.456000px;}
.x3_c01122{left:197.794500px;}
.x5_c01122{left:430.914000px;}
@media print{
.v3_c01122{vertical-align:-19.280000pt;}
.v0_c01122{vertical-align:0.000000pt;}
.v2_c01122{vertical-align:16.117333pt;}
.v1_c01122{vertical-align:23.141333pt;}
.ls0_c01122{letter-spacing:0.000000pt;}
.ws1_c01122{word-spacing:-0.063760pt;}
.ws1a_c01122{word-spacing:-0.042507pt;}
.ws25_c01122{word-spacing:-0.037195pt;}
.ws28_c01122{word-spacing:0.000000pt;}
.ws14_c01122{word-spacing:13.835920pt;}
.ws15_c01122{word-spacing:14.473520pt;}
.ws20_c01122{word-spacing:15.684960pt;}
.ws12_c01122{word-spacing:16.003760pt;}
.ws1b_c01122{word-spacing:16.450080pt;}
.ws26_c01122{word-spacing:17.641152pt;}
.ws18_c01122{word-spacing:17.725280pt;}
.ws16_c01122{word-spacing:17.916560pt;}
.ws27_c01122{word-spacing:18.916416pt;}
.ws1f_c01122{word-spacing:19.510560pt;}
.ws17_c01122{word-spacing:19.765600pt;}
.ws6_c01122{word-spacing:19.860240pt;}
.ws8_c01122{word-spacing:19.893120pt;}
.ws4_c01122{word-spacing:19.895120pt;}
.ws3_c01122{word-spacing:20.020640pt;}
.ws1c_c01122{word-spacing:20.466960pt;}
.wsb_c01122{word-spacing:20.722000pt;}
.ws13_c01122{word-spacing:20.785760pt;}
.ws7_c01122{word-spacing:21.423360pt;}
.ws5_c01122{word-spacing:21.487120pt;}
.wsd_c01122{word-spacing:21.678400pt;}
.ws19_c01122{word-spacing:22.252240pt;}
.wse_c01122{word-spacing:22.379760pt;}
.ws10_c01122{word-spacing:22.889840pt;}
.ws0_c01122{word-spacing:23.846240pt;}
.wsa_c01122{word-spacing:24.228800pt;}
.ws1d_c01122{word-spacing:25.504000pt;}
.ws21_c01122{word-spacing:25.759040pt;}
.ws23_c01122{word-spacing:25.783707pt;}
.ws11_c01122{word-spacing:26.205360pt;}
.wsc_c01122{word-spacing:26.587920pt;}
.ws22_c01122{word-spacing:26.906720pt;}
.wsf_c01122{word-spacing:27.289280pt;}
.ws2_c01122{word-spacing:27.608080pt;}
.ws1e_c01122{word-spacing:27.799360pt;}
.ws24_c01122{word-spacing:29.584640pt;}
.ws9_c01122{word-spacing:30.541040pt;}
._0_c01122{margin-left:-36.151920pt;}
._a_c01122{margin-left:-33.027680pt;}
._5_c01122{margin-left:-31.943760pt;}
._e_c01122{margin-left:-30.923600pt;}
._3_c01122{margin-left:-29.520880pt;}
._15_c01122{margin-left:-27.675989pt;}
._c_c01122{margin-left:-24.356320pt;}
._b_c01122{margin-left:-6.949840pt;}
._6_c01122{margin-left:-5.164560pt;}
._7_c01122{margin-left:-3.251760pt;}
._11_c01122{margin-left:-2.359120pt;}
._2_c01122{margin-left:-1.466480pt;}
._4_c01122{width:1.721520pt;}
._f_c01122{width:2.996720pt;}
._13_c01122{width:18.107840pt;}
._d_c01122{width:20.403200pt;}
._10_c01122{width:21.805920pt;}
._8_c01122{width:23.846693pt;}
._9_c01122{width:25.288240pt;}
._12_c01122{width:27.909573pt;}
._14_c01122{width:30.661547pt;}
._1_c01122{width:377.335920pt;}
.fs2_c01122{font-size:37.194667pt;}
.fs1_c01122{font-size:42.506667pt;}
.fs3_c01122{font-size:53.136000pt;}
.fs0_c01122{font-size:63.760000pt;}
.y0_c01122{bottom:0.000000pt;}
.y25_c01122{bottom:82.458667pt;}
.y24_c01122{bottom:107.128000pt;}
.y23_c01122{bottom:131.030667pt;}
.y22_c01122{bottom:154.933333pt;}
.y21_c01122{bottom:178.837333pt;}
.y20_c01122{bottom:202.740000pt;}
.y1f_c01122{bottom:226.642667pt;}
.y1e_c01122{bottom:250.545333pt;}
.y1d_c01122{bottom:274.448000pt;}
.y1c_c01122{bottom:298.352000pt;}
.y1b_c01122{bottom:339.522667pt;}
.y1a_c01122{bottom:363.426667pt;}
.y19_c01122{bottom:387.329333pt;}
.y18_c01122{bottom:411.232000pt;}
.y17_c01122{bottom:435.134667pt;}
.y16_c01122{bottom:476.306667pt;}
.y15_c01122{bottom:500.209333pt;}
.y14_c01122{bottom:524.112000pt;}
.y13_c01122{bottom:548.016000pt;}
.y12_c01122{bottom:571.918667pt;}
.y11_c01122{bottom:595.821333pt;}
.y10_c01122{bottom:619.724000pt;}
.yf_c01122{bottom:643.628000pt;}
.ye_c01122{bottom:667.530667pt;}
.yd_c01122{bottom:691.433333pt;}
.yc_c01122{bottom:715.336000pt;}
.yb_c01122{bottom:739.240000pt;}
.ya_c01122{bottom:763.142667pt;}
.y9_c01122{bottom:787.045333pt;}
.y8_c01122{bottom:810.948000pt;}
.y7_c01122{bottom:834.850667pt;}
.y6_c01122{bottom:858.754667pt;}
.y5_c01122{bottom:882.657333pt;}
.y4_c01122{bottom:906.560000pt;}
.y3_c01122{bottom:930.462667pt;}
.y2_c01122{bottom:954.366667pt;}
.y1_c01122{bottom:1013.880000pt;}
.h5_c01122{height:25.143595pt;}
.h2_c01122{height:47.820000pt;}
.h3_c01122{height:51.875840pt;}
.h4_c01122{height:63.937333pt;}
.h1_c01122{height:1123.333333pt;}
.h0_c01122{height:1123.653333pt;}
.w0_c01122{width:794.550667pt;}
.w1_c01122{width:794.666667pt;}
.x0_c01122{left:0.000000pt;}
.x1_c01122{left:113.385333pt;}
.x6_c01122{left:126.042667pt;}
.x2_c01122{left:142.078667pt;}
.x4_c01122{left:152.405333pt;}
.x3_c01122{left:175.817333pt;}
.x5_c01122{left:383.034667pt;}
}





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

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





.ff0_c01123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01123;src:url('chunks/assets/font_a4549cdfd04df53962e83b67.woff2')format("woff");}.ff1_c01123{font-family:ff1_c01123;line-height:1.001000;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_c01123;src:url('chunks/assets/font_8744c7a7239c7966acf2c6b4.woff2')format("woff");}.ff2_c01123{font-family:ff2_c01123;line-height:1.001000;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_c01123;src:url('chunks/assets/font_4bfa2ced32b79ed3fa07cf47.woff2')format("woff");}.ff3_c01123{font-family:ff3_c01123;line-height:1.000000;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_c01123;src:url('chunks/assets/font_00a5bf590640c1f870264f04.woff2')format("woff");}.ff4_c01123{font-family:ff4_c01123;line-height:1.001000;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_c01123{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_c01123{vertical-align:0.000000px;}
.v3_c01123{vertical-align:5.976000px;}
.v2_c01123{vertical-align:7.170000px;}
.v1_c01123{vertical-align:18.132000px;}
.ls0_c01123{letter-spacing:0.000000px;}
.sc__c01123{text-shadow:none;}
.sc0_c01123{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__c01123{-webkit-text-stroke:0px transparent;}
.sc0_c01123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01123{word-spacing:-0.071730px;}
.ws1c_c01123{word-spacing:0.000000px;}
.ws5_c01123{word-spacing:15.995790px;}
.ws10_c01123{word-spacing:16.139250px;}
.ws6_c01123{word-spacing:16.641360px;}
.wsf_c01123{word-spacing:18.506340px;}
.wsb_c01123{word-spacing:19.008450px;}
.wsa_c01123{word-spacing:19.080180px;}
.ws16_c01123{word-spacing:19.151910px;}
.ws3_c01123{word-spacing:20.299590px;}
.ws14_c01123{word-spacing:20.586510px;}
.ws12_c01123{word-spacing:22.953600px;}
.ws9_c01123{word-spacing:23.312250px;}
.ws15_c01123{word-spacing:23.383980px;}
.ws19_c01123{word-spacing:24.173010px;}
.ws7_c01123{word-spacing:26.324910px;}
.ws0_c01123{word-spacing:26.827020px;}
.wse_c01123{word-spacing:27.042210px;}
.ws1a_c01123{word-spacing:27.831240px;}
.ws11_c01123{word-spacing:28.620270px;}
.ws2_c01123{word-spacing:29.552760px;}
.ws13_c01123{word-spacing:29.767950px;}
.ws1b_c01123{word-spacing:31.274280px;}
.ws17_c01123{word-spacing:32.135040px;}
.ws8_c01123{word-spacing:32.421960px;}
.wsd_c01123{word-spacing:32.450652px;}
.ws18_c01123{word-spacing:33.139260px;}
.ws4_c01123{word-spacing:79.261650px;}
.wsc_c01123{word-spacing:95.113980px;}
._0_c01123{margin-left:-40.670910px;}
._8_c01123{margin-left:-37.227870px;}
._5_c01123{margin-left:-35.219430px;}
._a_c01123{margin-left:-33.067530px;}
._3_c01123{margin-left:-27.329130px;}
._b_c01123{margin-left:-8.994480px;}
._2_c01123{margin-left:-7.746840px;}
._c_c01123{margin-left:-5.236290px;}
._6_c01123{margin-left:-4.160340px;}
._12_c01123{margin-left:-3.030600px;}
._4_c01123{margin-left:-1.936710px;}
._7_c01123{width:1.864980px;}
._f_c01123{width:2.897430px;}
._11_c01123{width:8.574150px;}
._e_c01123{width:26.827020px;}
._d_c01123{width:30.485250px;}
._9_c01123{width:35.738190px;}
._10_c01123{width:79.333380px;}
._1_c01123{width:424.502910px;}
.fc0_c01123{color:rgb(0,0,0);}
.fs0_c01123{font-size:71.730000px;}
.fs1_c01123{font-size:86.076000px;}
.y0_c01123{bottom:0.000000px;}
.y21_c01123{bottom:85.018500px;}
.y20_c01123{bottom:111.909000px;}
.y1f_c01123{bottom:138.801000px;}
.y1e_c01123{bottom:165.691500px;}
.y1d_c01123{bottom:192.582000px;}
.y1c_c01123{bottom:219.472500px;}
.y1b_c01123{bottom:246.364500px;}
.y1a_c01123{bottom:273.255000px;}
.y19_c01123{bottom:307.866000px;}
.y18_c01123{bottom:364.155000px;}
.y17_c01123{bottom:391.047000px;}
.y16_c01123{bottom:417.937500px;}
.y15_c01123{bottom:444.828000px;}
.y14_c01123{bottom:471.718500px;}
.y13_c01123{bottom:498.609000px;}
.y12_c01123{bottom:525.501000px;}
.y11_c01123{bottom:552.391500px;}
.y10_c01123{bottom:587.004000px;}
.yf_c01123{bottom:646.356000px;}
.ye_c01123{bottom:713.853000px;}
.yd_c01123{bottom:740.743500px;}
.yc_c01123{bottom:767.634000px;}
.yb_c01123{bottom:794.524500px;}
.ya_c01123{bottom:821.416500px;}
.y9_c01123{bottom:848.307000px;}
.y8_c01123{bottom:875.197500px;}
.y7_c01123{bottom:902.088000px;}
.y6_c01123{bottom:928.980000px;}
.y5_c01123{bottom:963.591000px;}
.y4_c01123{bottom:1019.880000px;}
.y3_c01123{bottom:1046.770500px;}
.y2_c01123{bottom:1073.662500px;}
.y1_c01123{bottom:1140.615000px;}
.h2_c01123{height:53.797500px;}
.h6_c01123{height:59.773500px;}
.h5_c01123{height:64.557000px;}
.h4_c01123{height:71.727000px;}
.h3_c01123{height:71.929500px;}
.h1_c01123{height:1263.750000px;}
.h0_c01123{height:1264.110000px;}
.w0_c01123{width:893.869500px;}
.w1_c01123{width:894.000000px;}
.x0_c01123{left:0.000000px;}
.x1_c01123{left:127.558500px;}
.x2_c01123{left:159.838500px;}
.x4_c01123{left:218.626500px;}
.x5_c01123{left:277.759500px;}
.x6_c01123{left:576.631500px;}
.x3_c01123{left:717.054000px;}
@media print{
.v0_c01123{vertical-align:0.000000pt;}
.v3_c01123{vertical-align:5.312000pt;}
.v2_c01123{vertical-align:6.373333pt;}
.v1_c01123{vertical-align:16.117333pt;}
.ls0_c01123{letter-spacing:0.000000pt;}
.ws1_c01123{word-spacing:-0.063760pt;}
.ws1c_c01123{word-spacing:0.000000pt;}
.ws5_c01123{word-spacing:14.218480pt;}
.ws10_c01123{word-spacing:14.346000pt;}
.ws6_c01123{word-spacing:14.792320pt;}
.wsf_c01123{word-spacing:16.450080pt;}
.wsb_c01123{word-spacing:16.896400pt;}
.wsa_c01123{word-spacing:16.960160pt;}
.ws16_c01123{word-spacing:17.023920pt;}
.ws3_c01123{word-spacing:18.044080pt;}
.ws14_c01123{word-spacing:18.299120pt;}
.ws12_c01123{word-spacing:20.403200pt;}
.ws9_c01123{word-spacing:20.722000pt;}
.ws15_c01123{word-spacing:20.785760pt;}
.ws19_c01123{word-spacing:21.487120pt;}
.ws7_c01123{word-spacing:23.399920pt;}
.ws0_c01123{word-spacing:23.846240pt;}
.wse_c01123{word-spacing:24.037520pt;}
.ws1a_c01123{word-spacing:24.738880pt;}
.ws11_c01123{word-spacing:25.440240pt;}
.ws2_c01123{word-spacing:26.269120pt;}
.ws13_c01123{word-spacing:26.460400pt;}
.ws1b_c01123{word-spacing:27.799360pt;}
.ws17_c01123{word-spacing:28.564480pt;}
.ws8_c01123{word-spacing:28.819520pt;}
.wsd_c01123{word-spacing:28.845024pt;}
.ws18_c01123{word-spacing:29.457120pt;}
.ws4_c01123{word-spacing:70.454800pt;}
.wsc_c01123{word-spacing:84.545760pt;}
._0_c01123{margin-left:-36.151920pt;}
._8_c01123{margin-left:-33.091440pt;}
._5_c01123{margin-left:-31.306160pt;}
._a_c01123{margin-left:-29.393360pt;}
._3_c01123{margin-left:-24.292560pt;}
._b_c01123{margin-left:-7.995093pt;}
._2_c01123{margin-left:-6.886080pt;}
._c_c01123{margin-left:-4.654480pt;}
._6_c01123{margin-left:-3.698080pt;}
._12_c01123{margin-left:-2.693867pt;}
._4_c01123{margin-left:-1.721520pt;}
._7_c01123{width:1.657760pt;}
._f_c01123{width:2.575493pt;}
._11_c01123{width:7.621467pt;}
._e_c01123{width:23.846240pt;}
._d_c01123{width:27.098000pt;}
._9_c01123{width:31.767280pt;}
._10_c01123{width:70.518560pt;}
._1_c01123{width:377.335920pt;}
.fs0_c01123{font-size:63.760000pt;}
.fs1_c01123{font-size:76.512000pt;}
.y0_c01123{bottom:0.000000pt;}
.y21_c01123{bottom:75.572000pt;}
.y20_c01123{bottom:99.474667pt;}
.y1f_c01123{bottom:123.378667pt;}
.y1e_c01123{bottom:147.281333pt;}
.y1d_c01123{bottom:171.184000pt;}
.y1c_c01123{bottom:195.086667pt;}
.y1b_c01123{bottom:218.990667pt;}
.y1a_c01123{bottom:242.893333pt;}
.y19_c01123{bottom:273.658667pt;}
.y18_c01123{bottom:323.693333pt;}
.y17_c01123{bottom:347.597333pt;}
.y16_c01123{bottom:371.500000pt;}
.y15_c01123{bottom:395.402667pt;}
.y14_c01123{bottom:419.305333pt;}
.y13_c01123{bottom:443.208000pt;}
.y12_c01123{bottom:467.112000pt;}
.y11_c01123{bottom:491.014667pt;}
.y10_c01123{bottom:521.781333pt;}
.yf_c01123{bottom:574.538667pt;}
.ye_c01123{bottom:634.536000pt;}
.yd_c01123{bottom:658.438667pt;}
.yc_c01123{bottom:682.341333pt;}
.yb_c01123{bottom:706.244000pt;}
.ya_c01123{bottom:730.148000pt;}
.y9_c01123{bottom:754.050667pt;}
.y8_c01123{bottom:777.953333pt;}
.y7_c01123{bottom:801.856000pt;}
.y6_c01123{bottom:825.760000pt;}
.y5_c01123{bottom:856.525333pt;}
.y4_c01123{bottom:906.560000pt;}
.y3_c01123{bottom:930.462667pt;}
.y2_c01123{bottom:954.366667pt;}
.y1_c01123{bottom:1013.880000pt;}
.h2_c01123{height:47.820000pt;}
.h6_c01123{height:53.132000pt;}
.h5_c01123{height:57.384000pt;}
.h4_c01123{height:63.757333pt;}
.h3_c01123{height:63.937333pt;}
.h1_c01123{height:1123.333333pt;}
.h0_c01123{height:1123.653333pt;}
.w0_c01123{width:794.550667pt;}
.w1_c01123{width:794.666667pt;}
.x0_c01123{left:0.000000pt;}
.x1_c01123{left:113.385333pt;}
.x2_c01123{left:142.078667pt;}
.x4_c01123{left:194.334667pt;}
.x5_c01123{left:246.897333pt;}
.x6_c01123{left:512.561333pt;}
.x3_c01123{left:637.381333pt;}
}





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

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





.ff0_c01124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01124;src:url('chunks/assets/font_5360378b64aa01da0b5c2675.woff2')format("woff");}.ff1_c01124{font-family:ff1_c01124;line-height:1.001000;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_c01124;src:url('chunks/assets/font_a9bdf1a14300b3e53ab5dddd.woff2')format("woff");}.ff2_c01124{font-family:ff2_c01124;line-height:1.001000;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_c01124;src:url('chunks/assets/font_bd93c93cb8f6ecbd6682154a.woff2')format("woff");}.ff3_c01124{font-family:ff3_c01124;line-height:1.001000;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_c01124;src:url('chunks/assets/font_fda7cec0fc386188a8b047e7.woff2')format("woff");}.ff4_c01124{font-family:ff4_c01124;line-height:0.697000;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_c01124;src:url('chunks/assets/font_d5e16d859ea99eeafd690825.woff2')format("woff");}.ff5_c01124{font-family:ff5_c01124;line-height:0.696000;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_c01124;src:url('chunks/assets/font_b2a2ff5debff8f2e163be823.woff2')format("woff");}.ff6_c01124{font-family:ff6_c01124;line-height:1.000000;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_c01124;src:url('chunks/assets/font_abf5f25ee46818ff6c56d963.woff2')format("woff");}.ff7_c01124{font-family:ff7_c01124;line-height:1.000000;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_c01124{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_c01124{vertical-align:-21.690000px;}
.v0_c01124{vertical-align:0.000000px;}
.v3_c01124{vertical-align:15.108000px;}
.v1_c01124{vertical-align:26.034000px;}
.ls3_c01124{letter-spacing:0.000000px;}
.ls2_c01124{letter-spacing:5.371182px;}
.ls0_c01124{letter-spacing:22.375440px;}
.ls1_c01124{letter-spacing:22.376880px;}
.sc__c01124{text-shadow:none;}
.sc0_c01124{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__c01124{-webkit-text-stroke:0px transparent;}
.sc0_c01124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01124{word-spacing:-0.071730px;}
.ws2d_c01124{word-spacing:-0.059778px;}
.ws15_c01124{word-spacing:-0.047820px;}
.ws2a_c01124{word-spacing:-0.041844px;}
.ws2f_c01124{word-spacing:0.000000px;}
.wsb_c01124{word-spacing:17.860770px;}
.ws2e_c01124{word-spacing:19.846296px;}
.ws7_c01124{word-spacing:20.729970px;}
.wsc_c01124{word-spacing:21.016890px;}
.wsd_c01124{word-spacing:22.308030px;}
.ws10_c01124{word-spacing:22.953600px;}
.ws9_c01124{word-spacing:23.312250px;}
.ws26_c01124{word-spacing:23.383980px;}
.wse_c01124{word-spacing:24.101280px;}
.ws1b_c01124{word-spacing:24.244740px;}
.ws8_c01124{word-spacing:24.388200px;}
.wsa_c01124{word-spacing:24.531660px;}
.ws2b_c01124{word-spacing:24.628536px;}
.ws1c_c01124{word-spacing:24.818580px;}
.ws11_c01124{word-spacing:24.890310px;}
.ws14_c01124{word-spacing:25.033770px;}
.ws25_c01124{word-spacing:25.248960px;}
.ws2c_c01124{word-spacing:25.686102px;}
.ws13_c01124{word-spacing:26.037990px;}
.ws4_c01124{word-spacing:26.540100px;}
.ws0_c01124{word-spacing:26.827020px;}
.ws22_c01124{word-spacing:26.898750px;}
.ws20_c01124{word-spacing:26.970480px;}
.ws23_c01124{word-spacing:27.113940px;}
.ws12_c01124{word-spacing:27.544320px;}
.ws5_c01124{word-spacing:27.902970px;}
.ws3_c01124{word-spacing:27.974700px;}
.ws29_c01124{word-spacing:28.046430px;}
.wsf_c01124{word-spacing:28.242270px;}
.ws21_c01124{word-spacing:28.333350px;}
.ws16_c01124{word-spacing:28.476810px;}
.ws17_c01124{word-spacing:29.275020px;}
.ws28_c01124{word-spacing:29.337570px;}
.ws18_c01124{word-spacing:29.409300px;}
.ws2_c01124{word-spacing:29.839680px;}
.ws24_c01124{word-spacing:30.126600px;}
.ws27_c01124{word-spacing:30.198330px;}
.ws19_c01124{word-spacing:30.628710px;}
.ws1a_c01124{word-spacing:32.278500px;}
.ws1d_c01124{word-spacing:32.708880px;}
.ws1f_c01124{word-spacing:32.780610px;}
.ws6_c01124{word-spacing:34.358670px;}
.ws1e_c01124{word-spacing:38.143020px;}
._0_c01124{margin-left:-40.670910px;}
._8_c01124{margin-left:-37.299600px;}
._4_c01124{margin-left:-35.147700px;}
._11_c01124{margin-left:-33.282720px;}
._16_c01124{margin-left:-30.839898px;}
._15_c01124{margin-left:-29.732004px;}
._c_c01124{margin-left:-28.333350px;}
._6_c01124{margin-left:-27.329130px;}
._14_c01124{margin-left:-23.301810px;}
._d_c01124{margin-left:-7.962030px;}
._5_c01124{margin-left:-6.886080px;}
._f_c01124{margin-left:-5.354550px;}
._7_c01124{margin-left:-3.945150px;}
._2_c01124{margin-left:-1.936710px;}
._9_c01124{width:1.004220px;}
._3_c01124{width:2.008440px;}
._12_c01124{width:3.174690px;}
._b_c01124{width:4.518990px;}
._e_c01124{width:13.198320px;}
._a_c01124{width:25.607610px;}
._10_c01124{width:28.529070px;}
._13_c01124{width:32.278500px;}
._1_c01124{width:424.502910px;}
.fc0_c01124{color:rgb(0,0,0);}
.fs2_c01124{font-size:41.844000px;}
.fs1_c01124{font-size:47.820000px;}
.fs3_c01124{font-size:59.778000px;}
.fs0_c01124{font-size:71.730000px;}
.y0_c01124{bottom:0.000000px;}
.y27_c01124{bottom:71.973000px;}
.y26_c01124{bottom:89.905500px;}
.y25_c01124{bottom:95.328000px;}
.y24_c01124{bottom:121.768500px;}
.y23_c01124{bottom:148.659000px;}
.y22_c01124{bottom:175.551000px;}
.y21_c01124{bottom:202.441500px;}
.y20_c01124{bottom:229.332000px;}
.y1f_c01124{bottom:256.222500px;}
.y1e_c01124{bottom:283.114500px;}
.y1d_c01124{bottom:310.005000px;}
.y1c_c01124{bottom:336.895500px;}
.y1b_c01124{bottom:363.786000px;}
.y1a_c01124{bottom:390.676500px;}
.y19_c01124{bottom:417.568500px;}
.y18_c01124{bottom:444.459000px;}
.y17_c01124{bottom:471.349500px;}
.y16_c01124{bottom:498.240000px;}
.y15_c01124{bottom:550.981500px;}
.y14_c01124{bottom:577.872000px;}
.y13_c01124{bottom:604.764000px;}
.y12_c01124{bottom:643.408500px;}
.y11_c01124{bottom:670.299000px;}
.y10_c01124{bottom:697.189500px;}
.yf_c01124{bottom:724.081500px;}
.ye_c01124{bottom:750.972000px;}
.yd_c01124{bottom:777.862500px;}
.yc_c01124{bottom:804.753000px;}
.yb_c01124{bottom:831.645000px;}
.ya_c01124{bottom:858.535500px;}
.y9_c01124{bottom:885.426000px;}
.y8_c01124{bottom:912.316500px;}
.y7_c01124{bottom:939.207000px;}
.y6_c01124{bottom:966.099000px;}
.y5_c01124{bottom:992.989500px;}
.y4_c01124{bottom:1019.880000px;}
.y3_c01124{bottom:1046.770500px;}
.y2_c01124{bottom:1073.662500px;}
.y1_c01124{bottom:1140.615000px;}
.h4_c01124{height:38.251500px;}
.h6_c01124{height:44.833500px;}
.h2_c01124{height:53.797500px;}
.h3_c01124{height:58.360320px;}
.h5_c01124{height:59.941500px;}
.h1_c01124{height:1263.750000px;}
.h0_c01124{height:1264.110000px;}
.w0_c01124{width:893.869500px;}
.w1_c01124{width:894.000000px;}
.x0_c01124{left:0.000000px;}
.x1_c01124{left:127.558500px;}
.x5_c01124{left:141.798000px;}
.x2_c01124{left:159.838500px;}
.x6_c01124{left:164.628000px;}
.x4_c01124{left:171.456000px;}
.x3_c01124{left:197.794500px;}
.x7_c01124{left:667.963500px;}
@media print{
.v2_c01124{vertical-align:-19.280000pt;}
.v0_c01124{vertical-align:0.000000pt;}
.v3_c01124{vertical-align:13.429333pt;}
.v1_c01124{vertical-align:23.141333pt;}
.ls3_c01124{letter-spacing:0.000000pt;}
.ls2_c01124{letter-spacing:4.774384pt;}
.ls0_c01124{letter-spacing:19.889280pt;}
.ls1_c01124{letter-spacing:19.890560pt;}
.ws1_c01124{word-spacing:-0.063760pt;}
.ws2d_c01124{word-spacing:-0.053136pt;}
.ws15_c01124{word-spacing:-0.042507pt;}
.ws2a_c01124{word-spacing:-0.037195pt;}
.ws2f_c01124{word-spacing:0.000000pt;}
.wsb_c01124{word-spacing:15.876240pt;}
.ws2e_c01124{word-spacing:17.641152pt;}
.ws7_c01124{word-spacing:18.426640pt;}
.wsc_c01124{word-spacing:18.681680pt;}
.wsd_c01124{word-spacing:19.829360pt;}
.ws10_c01124{word-spacing:20.403200pt;}
.ws9_c01124{word-spacing:20.722000pt;}
.ws26_c01124{word-spacing:20.785760pt;}
.wse_c01124{word-spacing:21.423360pt;}
.ws1b_c01124{word-spacing:21.550880pt;}
.ws8_c01124{word-spacing:21.678400pt;}
.wsa_c01124{word-spacing:21.805920pt;}
.ws2b_c01124{word-spacing:21.892032pt;}
.ws1c_c01124{word-spacing:22.060960pt;}
.ws11_c01124{word-spacing:22.124720pt;}
.ws14_c01124{word-spacing:22.252240pt;}
.ws25_c01124{word-spacing:22.443520pt;}
.ws2c_c01124{word-spacing:22.832091pt;}
.ws13_c01124{word-spacing:23.144880pt;}
.ws4_c01124{word-spacing:23.591200pt;}
.ws0_c01124{word-spacing:23.846240pt;}
.ws22_c01124{word-spacing:23.910000pt;}
.ws20_c01124{word-spacing:23.973760pt;}
.ws23_c01124{word-spacing:24.101280pt;}
.ws12_c01124{word-spacing:24.483840pt;}
.ws5_c01124{word-spacing:24.802640pt;}
.ws3_c01124{word-spacing:24.866400pt;}
.ws29_c01124{word-spacing:24.930160pt;}
.wsf_c01124{word-spacing:25.104240pt;}
.ws21_c01124{word-spacing:25.185200pt;}
.ws16_c01124{word-spacing:25.312720pt;}
.ws17_c01124{word-spacing:26.022240pt;}
.ws28_c01124{word-spacing:26.077840pt;}
.ws18_c01124{word-spacing:26.141600pt;}
.ws2_c01124{word-spacing:26.524160pt;}
.ws24_c01124{word-spacing:26.779200pt;}
.ws27_c01124{word-spacing:26.842960pt;}
.ws19_c01124{word-spacing:27.225520pt;}
.ws1a_c01124{word-spacing:28.692000pt;}
.ws1d_c01124{word-spacing:29.074560pt;}
.ws1f_c01124{word-spacing:29.138320pt;}
.ws6_c01124{word-spacing:30.541040pt;}
.ws1e_c01124{word-spacing:33.904907pt;}
._0_c01124{margin-left:-36.151920pt;}
._8_c01124{margin-left:-33.155200pt;}
._4_c01124{margin-left:-31.242400pt;}
._11_c01124{margin-left:-29.584640pt;}
._16_c01124{margin-left:-27.413243pt;}
._15_c01124{margin-left:-26.428448pt;}
._c_c01124{margin-left:-25.185200pt;}
._6_c01124{margin-left:-24.292560pt;}
._14_c01124{margin-left:-20.712720pt;}
._d_c01124{margin-left:-7.077360pt;}
._5_c01124{margin-left:-6.120960pt;}
._f_c01124{margin-left:-4.759600pt;}
._7_c01124{margin-left:-3.506800pt;}
._2_c01124{margin-left:-1.721520pt;}
._9_c01124{width:0.892640pt;}
._3_c01124{width:1.785280pt;}
._12_c01124{width:2.821947pt;}
._b_c01124{width:4.016880pt;}
._e_c01124{width:11.731840pt;}
._a_c01124{width:22.762320pt;}
._10_c01124{width:25.359173pt;}
._13_c01124{width:28.692000pt;}
._1_c01124{width:377.335920pt;}
.fs2_c01124{font-size:37.194667pt;}
.fs1_c01124{font-size:42.506667pt;}
.fs3_c01124{font-size:53.136000pt;}
.fs0_c01124{font-size:63.760000pt;}
.y0_c01124{bottom:0.000000pt;}
.y27_c01124{bottom:63.976000pt;}
.y26_c01124{bottom:79.916000pt;}
.y25_c01124{bottom:84.736000pt;}
.y24_c01124{bottom:108.238667pt;}
.y23_c01124{bottom:132.141333pt;}
.y22_c01124{bottom:156.045333pt;}
.y21_c01124{bottom:179.948000pt;}
.y20_c01124{bottom:203.850667pt;}
.y1f_c01124{bottom:227.753333pt;}
.y1e_c01124{bottom:251.657333pt;}
.y1d_c01124{bottom:275.560000pt;}
.y1c_c01124{bottom:299.462667pt;}
.y1b_c01124{bottom:323.365333pt;}
.y1a_c01124{bottom:347.268000pt;}
.y19_c01124{bottom:371.172000pt;}
.y18_c01124{bottom:395.074667pt;}
.y17_c01124{bottom:418.977333pt;}
.y16_c01124{bottom:442.880000pt;}
.y15_c01124{bottom:489.761333pt;}
.y14_c01124{bottom:513.664000pt;}
.y13_c01124{bottom:537.568000pt;}
.y12_c01124{bottom:571.918667pt;}
.y11_c01124{bottom:595.821333pt;}
.y10_c01124{bottom:619.724000pt;}
.yf_c01124{bottom:643.628000pt;}
.ye_c01124{bottom:667.530667pt;}
.yd_c01124{bottom:691.433333pt;}
.yc_c01124{bottom:715.336000pt;}
.yb_c01124{bottom:739.240000pt;}
.ya_c01124{bottom:763.142667pt;}
.y9_c01124{bottom:787.045333pt;}
.y8_c01124{bottom:810.948000pt;}
.y7_c01124{bottom:834.850667pt;}
.y6_c01124{bottom:858.754667pt;}
.y5_c01124{bottom:882.657333pt;}
.y4_c01124{bottom:906.560000pt;}
.y3_c01124{bottom:930.462667pt;}
.y2_c01124{bottom:954.366667pt;}
.y1_c01124{bottom:1013.880000pt;}
.h4_c01124{height:34.001333pt;}
.h6_c01124{height:39.852000pt;}
.h2_c01124{height:47.820000pt;}
.h3_c01124{height:51.875840pt;}
.h5_c01124{height:53.281333pt;}
.h1_c01124{height:1123.333333pt;}
.h0_c01124{height:1123.653333pt;}
.w0_c01124{width:794.550667pt;}
.w1_c01124{width:794.666667pt;}
.x0_c01124{left:0.000000pt;}
.x1_c01124{left:113.385333pt;}
.x5_c01124{left:126.042667pt;}
.x2_c01124{left:142.078667pt;}
.x6_c01124{left:146.336000pt;}
.x4_c01124{left:152.405333pt;}
.x3_c01124{left:175.817333pt;}
.x7_c01124{left:593.745333pt;}
}





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

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





.ff0_c01125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01125;src:url('chunks/assets/font_eb07491e903b1bd74902883d.woff2')format("woff");}.ff1_c01125{font-family:ff1_c01125;line-height:1.001000;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_c01125;src:url('chunks/assets/font_8754b778595cebc873ae7d9a.woff2')format("woff");}.ff2_c01125{font-family:ff2_c01125;line-height:1.001000;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_c01125;src:url('chunks/assets/font_c81a47bd9864933397e40534.woff2')format("woff");}.ff3_c01125{font-family:ff3_c01125;line-height:1.000000;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_c01125;src:url('chunks/assets/font_48c3ba5d0e482c082c3b1086.woff2')format("woff");}.ff4_c01125{font-family:ff4_c01125;line-height:1.001000;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_c01125{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_c01125{vertical-align:0.000000px;}
.v2_c01125{vertical-align:5.976000px;}
.v1_c01125{vertical-align:7.176000px;}
.ls3_c01125{letter-spacing:0.000000px;}
.ls1_c01125{letter-spacing:24.835590px;}
.ls0_c01125{letter-spacing:25.099440px;}
.ls2_c01125{letter-spacing:33.751590px;}
.sc__c01125{text-shadow:none;}
.sc0_c01125{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__c01125{-webkit-text-stroke:0px transparent;}
.sc0_c01125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01125{word-spacing:-0.071730px;}
.ws21_c01125{word-spacing:0.000000px;}
.ws7_c01125{word-spacing:16.282710px;}
.ws2_c01125{word-spacing:18.075960px;}
.wsf_c01125{word-spacing:20.084400px;}
.ws9_c01125{word-spacing:20.873430px;}
.ws15_c01125{word-spacing:21.232080px;}
.ws3_c01125{word-spacing:22.379760px;}
.ws4_c01125{word-spacing:23.097060px;}
.ws1f_c01125{word-spacing:23.240520px;}
.wsa_c01125{word-spacing:23.312250px;}
.ws6_c01125{word-spacing:24.531660px;}
.ws1a_c01125{word-spacing:24.746850px;}
.ws14_c01125{word-spacing:24.890310px;}
.ws16_c01125{word-spacing:25.033770px;}
.ws11_c01125{word-spacing:25.248960px;}
.wse_c01125{word-spacing:25.679340px;}
.ws19_c01125{word-spacing:26.324910px;}
.ws17_c01125{word-spacing:26.611830px;}
.ws0_c01125{word-spacing:26.827020px;}
.wsd_c01125{word-spacing:26.970480px;}
.ws12_c01125{word-spacing:27.042210px;}
.ws20_c01125{word-spacing:28.610040px;}
.ws18_c01125{word-spacing:30.115530px;}
.ws10_c01125{word-spacing:32.135040px;}
.wsc_c01125{word-spacing:32.450652px;}
.ws13_c01125{word-spacing:33.067530px;}
.ws8_c01125{word-spacing:33.426180px;}
.ws1e_c01125{word-spacing:33.641370px;}
.ws1b_c01125{word-spacing:33.708600px;}
.ws1d_c01125{word-spacing:34.573860px;}
.ws1c_c01125{word-spacing:39.081900px;}
.ws5_c01125{word-spacing:79.261650px;}
.wsb_c01125{word-spacing:95.113980px;}
._0_c01125{margin-left:-40.670910px;}
._3_c01125{margin-left:-37.084410px;}
._9_c01125{margin-left:-34.860780px;}
._5_c01125{margin-left:-33.210990px;}
._7_c01125{margin-left:-27.329130px;}
._b_c01125{margin-left:-9.007170px;}
._6_c01125{margin-left:-7.818570px;}
._c_c01125{margin-left:-5.881860px;}
._a_c01125{margin-left:-4.375530px;}
._8_c01125{margin-left:-2.295360px;}
._e_c01125{margin-left:-1.147680px;}
._2_c01125{width:1.936710px;}
._d_c01125{width:3.514770px;}
._f_c01125{width:6.296070px;}
._4_c01125{width:16.139250px;}
._1_c01125{width:424.502910px;}
.fc0_c01125{color:rgb(0,0,0);}
.fs0_c01125{font-size:71.730000px;}
.fs1_c01125{font-size:86.076000px;}
.y0_c01125{bottom:0.000000px;}
.y20_c01125{bottom:93.976500px;}
.y1f_c01125{bottom:120.867000px;}
.y1e_c01125{bottom:147.759000px;}
.y1d_c01125{bottom:174.649500px;}
.y1c_c01125{bottom:201.540000px;}
.y1b_c01125{bottom:228.430500px;}
.y1a_c01125{bottom:255.322500px;}
.y19_c01125{bottom:282.213000px;}
.y18_c01125{bottom:316.824000px;}
.y17_c01125{bottom:373.113000px;}
.y16_c01125{bottom:400.005000px;}
.y15_c01125{bottom:426.895500px;}
.y14_c01125{bottom:471.718500px;}
.y13_c01125{bottom:498.609000px;}
.y12_c01125{bottom:525.501000px;}
.y11_c01125{bottom:552.391500px;}
.y10_c01125{bottom:579.282000px;}
.yf_c01125{bottom:606.172500px;}
.ye_c01125{bottom:640.785000px;}
.yd_c01125{bottom:700.137000px;}
.yc_c01125{bottom:767.634000px;}
.yb_c01125{bottom:794.524500px;}
.ya_c01125{bottom:821.416500px;}
.y9_c01125{bottom:848.307000px;}
.y8_c01125{bottom:875.197500px;}
.y7_c01125{bottom:902.088000px;}
.y6_c01125{bottom:936.700500px;}
.y5_c01125{bottom:992.989500px;}
.y4_c01125{bottom:1019.880000px;}
.y3_c01125{bottom:1046.770500px;}
.y2_c01125{bottom:1073.662500px;}
.y1_c01125{bottom:1140.615000px;}
.h2_c01125{height:53.797500px;}
.h5_c01125{height:59.773500px;}
.h6_c01125{height:59.779500px;}
.h4_c01125{height:64.557000px;}
.h3_c01125{height:71.733000px;}
.h1_c01125{height:1263.750000px;}
.h0_c01125{height:1264.110000px;}
.w0_c01125{width:893.869500px;}
.w1_c01125{width:894.000000px;}
.x0_c01125{left:0.000000px;}
.x1_c01125{left:127.558500px;}
.x2_c01125{left:159.838500px;}
.x6_c01125{left:239.727000px;}
.x3_c01125{left:248.400000px;}
.x4_c01125{left:287.673000px;}
.x7_c01125{left:367.129500px;}
.x5_c01125{left:484.015500px;}
@media print{
.v0_c01125{vertical-align:0.000000pt;}
.v2_c01125{vertical-align:5.312000pt;}
.v1_c01125{vertical-align:6.378667pt;}
.ls3_c01125{letter-spacing:0.000000pt;}
.ls1_c01125{letter-spacing:22.076080pt;}
.ls0_c01125{letter-spacing:22.310613pt;}
.ls2_c01125{letter-spacing:30.001413pt;}
.ws1_c01125{word-spacing:-0.063760pt;}
.ws21_c01125{word-spacing:0.000000pt;}
.ws7_c01125{word-spacing:14.473520pt;}
.ws2_c01125{word-spacing:16.067520pt;}
.wsf_c01125{word-spacing:17.852800pt;}
.ws9_c01125{word-spacing:18.554160pt;}
.ws15_c01125{word-spacing:18.872960pt;}
.ws3_c01125{word-spacing:19.893120pt;}
.ws4_c01125{word-spacing:20.530720pt;}
.ws1f_c01125{word-spacing:20.658240pt;}
.wsa_c01125{word-spacing:20.722000pt;}
.ws6_c01125{word-spacing:21.805920pt;}
.ws1a_c01125{word-spacing:21.997200pt;}
.ws14_c01125{word-spacing:22.124720pt;}
.ws16_c01125{word-spacing:22.252240pt;}
.ws11_c01125{word-spacing:22.443520pt;}
.wse_c01125{word-spacing:22.826080pt;}
.ws19_c01125{word-spacing:23.399920pt;}
.ws17_c01125{word-spacing:23.654960pt;}
.ws0_c01125{word-spacing:23.846240pt;}
.wsd_c01125{word-spacing:23.973760pt;}
.ws12_c01125{word-spacing:24.037520pt;}
.ws20_c01125{word-spacing:25.431147pt;}
.ws18_c01125{word-spacing:26.769360pt;}
.ws10_c01125{word-spacing:28.564480pt;}
.wsc_c01125{word-spacing:28.845024pt;}
.ws13_c01125{word-spacing:29.393360pt;}
.ws8_c01125{word-spacing:29.712160pt;}
.ws1e_c01125{word-spacing:29.903440pt;}
.ws1b_c01125{word-spacing:29.963200pt;}
.ws1d_c01125{word-spacing:30.732320pt;}
.ws1c_c01125{word-spacing:34.739467pt;}
.ws5_c01125{word-spacing:70.454800pt;}
.wsb_c01125{word-spacing:84.545760pt;}
._0_c01125{margin-left:-36.151920pt;}
._3_c01125{margin-left:-32.963920pt;}
._9_c01125{margin-left:-30.987360pt;}
._5_c01125{margin-left:-29.520880pt;}
._7_c01125{margin-left:-24.292560pt;}
._b_c01125{margin-left:-8.006373pt;}
._6_c01125{margin-left:-6.949840pt;}
._c_c01125{margin-left:-5.228320pt;}
._a_c01125{margin-left:-3.889360pt;}
._8_c01125{margin-left:-2.040320pt;}
._e_c01125{margin-left:-1.020160pt;}
._2_c01125{width:1.721520pt;}
._d_c01125{width:3.124240pt;}
._f_c01125{width:5.596507pt;}
._4_c01125{width:14.346000pt;}
._1_c01125{width:377.335920pt;}
.fs0_c01125{font-size:63.760000pt;}
.fs1_c01125{font-size:76.512000pt;}
.y0_c01125{bottom:0.000000pt;}
.y20_c01125{bottom:83.534667pt;}
.y1f_c01125{bottom:107.437333pt;}
.y1e_c01125{bottom:131.341333pt;}
.y1d_c01125{bottom:155.244000pt;}
.y1c_c01125{bottom:179.146667pt;}
.y1b_c01125{bottom:203.049333pt;}
.y1a_c01125{bottom:226.953333pt;}
.y19_c01125{bottom:250.856000pt;}
.y18_c01125{bottom:281.621333pt;}
.y17_c01125{bottom:331.656000pt;}
.y16_c01125{bottom:355.560000pt;}
.y15_c01125{bottom:379.462667pt;}
.y14_c01125{bottom:419.305333pt;}
.y13_c01125{bottom:443.208000pt;}
.y12_c01125{bottom:467.112000pt;}
.y11_c01125{bottom:491.014667pt;}
.y10_c01125{bottom:514.917333pt;}
.yf_c01125{bottom:538.820000pt;}
.ye_c01125{bottom:569.586667pt;}
.yd_c01125{bottom:622.344000pt;}
.yc_c01125{bottom:682.341333pt;}
.yb_c01125{bottom:706.244000pt;}
.ya_c01125{bottom:730.148000pt;}
.y9_c01125{bottom:754.050667pt;}
.y8_c01125{bottom:777.953333pt;}
.y7_c01125{bottom:801.856000pt;}
.y6_c01125{bottom:832.622667pt;}
.y5_c01125{bottom:882.657333pt;}
.y4_c01125{bottom:906.560000pt;}
.y3_c01125{bottom:930.462667pt;}
.y2_c01125{bottom:954.366667pt;}
.y1_c01125{bottom:1013.880000pt;}
.h2_c01125{height:47.820000pt;}
.h5_c01125{height:53.132000pt;}
.h6_c01125{height:53.137333pt;}
.h4_c01125{height:57.384000pt;}
.h3_c01125{height:63.762667pt;}
.h1_c01125{height:1123.333333pt;}
.h0_c01125{height:1123.653333pt;}
.w0_c01125{width:794.550667pt;}
.w1_c01125{width:794.666667pt;}
.x0_c01125{left:0.000000pt;}
.x1_c01125{left:113.385333pt;}
.x2_c01125{left:142.078667pt;}
.x6_c01125{left:213.090667pt;}
.x3_c01125{left:220.800000pt;}
.x4_c01125{left:255.709333pt;}
.x7_c01125{left:326.337333pt;}
.x5_c01125{left:430.236000pt;}
}





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

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





.ff0_c01126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01126;src:url('chunks/assets/font_b41bd2edbf4cf4dc50f5db4b.woff2')format("woff");}.ff1_c01126{font-family:ff1_c01126;line-height:1.001000;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_c01126;src:url('chunks/assets/font_567ebbd93f1a91207176685b.woff2')format("woff");}.ff2_c01126{font-family:ff2_c01126;line-height:1.001000;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_c01126;src:url('chunks/assets/font_bc11e204c91f7da6359f26f7.woff2')format("woff");}.ff3_c01126{font-family:ff3_c01126;line-height:1.000000;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_c01126;src:url('chunks/assets/font_232fbe364b8e600a5df051aa.woff2')format("woff");}.ff4_c01126{font-family:ff4_c01126;line-height:1.001000;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_c01126{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_c01126{vertical-align:0.000000px;}
.v1_c01126{vertical-align:5.976000px;}
.ls0_c01126{letter-spacing:0.000000px;}
.sc__c01126{text-shadow:none;}
.sc0_c01126{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__c01126{-webkit-text-stroke:0px transparent;}
.sc0_c01126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01126{word-spacing:-0.071730px;}
.ws20_c01126{word-spacing:0.000000px;}
.ws15_c01126{word-spacing:16.210980px;}
.wsc_c01126{word-spacing:16.641360px;}
.ws9_c01126{word-spacing:17.860770px;}
.ws5_c01126{word-spacing:18.219420px;}
.ws1c_c01126{word-spacing:20.156130px;}
.ws2_c01126{word-spacing:20.299590px;}
.ws17_c01126{word-spacing:21.734190px;}
.ws7_c01126{word-spacing:22.164570px;}
.ws16_c01126{word-spacing:22.236300px;}
.ws1d_c01126{word-spacing:22.451490px;}
.wsd_c01126{word-spacing:22.810140px;}
.ws10_c01126{word-spacing:23.240520px;}
.ws8_c01126{word-spacing:23.312250px;}
.ws4_c01126{word-spacing:23.383980px;}
.ws1a_c01126{word-spacing:23.742630px;}
.ws19_c01126{word-spacing:24.962040px;}
.wsb_c01126{word-spacing:25.033770px;}
.ws11_c01126{word-spacing:25.248960px;}
.ws3_c01126{word-spacing:26.611830px;}
.ws1b_c01126{word-spacing:26.755290px;}
.ws0_c01126{word-spacing:26.827020px;}
.wsf_c01126{word-spacing:27.042210px;}
.ws14_c01126{word-spacing:27.687780px;}
.ws6_c01126{word-spacing:27.974700px;}
.wsa_c01126{word-spacing:28.476810px;}
.ws1f_c01126{word-spacing:28.620270px;}
.ws1e_c01126{word-spacing:30.054870px;}
.ws13_c01126{word-spacing:30.341790px;}
.ws18_c01126{word-spacing:30.485250px;}
.ws12_c01126{word-spacing:31.776390px;}
.wse_c01126{word-spacing:79.261650px;}
._0_c01126{margin-left:-40.670910px;}
._6_c01126{margin-left:-36.940950px;}
._4_c01126{margin-left:-35.147700px;}
._3_c01126{margin-left:-33.282720px;}
._b_c01126{margin-left:-27.329130px;}
._a_c01126{margin-left:-7.746840px;}
._c_c01126{margin-left:-5.953590px;}
._8_c01126{margin-left:-4.805910px;}
._2_c01126{margin-left:-1.936710px;}
._5_c01126{width:1.793250px;}
._9_c01126{width:2.797470px;}
._7_c01126{width:4.232070px;}
._1_c01126{width:424.502910px;}
.fc0_c01126{color:rgb(0,0,0);}
.fs0_c01126{font-size:71.730000px;}
.y0_c01126{bottom:0.000000px;}
.y24_c01126{bottom:98.086500px;}
.y23_c01126{bottom:124.977000px;}
.y22_c01126{bottom:151.867500px;}
.y21_c01126{bottom:178.759500px;}
.y20_c01126{bottom:205.650000px;}
.y1f_c01126{bottom:232.540500px;}
.y1e_c01126{bottom:259.431000px;}
.y1d_c01126{bottom:286.321500px;}
.y1c_c01126{bottom:313.213500px;}
.y1b_c01126{bottom:340.104000px;}
.y1a_c01126{bottom:366.994500px;}
.y19_c01126{bottom:393.885000px;}
.y18_c01126{bottom:420.777000px;}
.y17_c01126{bottom:447.667500px;}
.y16_c01126{bottom:474.558000px;}
.y15_c01126{bottom:501.448500px;}
.y14_c01126{bottom:528.340500px;}
.y13_c01126{bottom:555.231000px;}
.y12_c01126{bottom:582.121500px;}
.y11_c01126{bottom:609.012000px;}
.y10_c01126{bottom:643.624500px;}
.yf_c01126{bottom:694.683000px;}
.ye_c01126{bottom:750.972000px;}
.yd_c01126{bottom:777.862500px;}
.yc_c01126{bottom:804.753000px;}
.yb_c01126{bottom:831.645000px;}
.ya_c01126{bottom:858.535500px;}
.y9_c01126{bottom:885.426000px;}
.y8_c01126{bottom:912.316500px;}
.y7_c01126{bottom:939.207000px;}
.y6_c01126{bottom:966.099000px;}
.y5_c01126{bottom:992.989500px;}
.y4_c01126{bottom:1019.880000px;}
.y3_c01126{bottom:1046.770500px;}
.y2_c01126{bottom:1073.662500px;}
.y1_c01126{bottom:1140.615000px;}
.h2_c01126{height:53.797500px;}
.h3_c01126{height:59.773500px;}
.h1_c01126{height:1263.750000px;}
.h0_c01126{height:1264.110000px;}
.w0_c01126{width:893.869500px;}
.w1_c01126{width:894.000000px;}
.x0_c01126{left:0.000000px;}
.x1_c01126{left:127.558500px;}
.x2_c01126{left:159.838500px;}
.x3_c01126{left:296.842500px;}
.x4_c01126{left:424.642500px;}
@media print{
.v0_c01126{vertical-align:0.000000pt;}
.v1_c01126{vertical-align:5.312000pt;}
.ls0_c01126{letter-spacing:0.000000pt;}
.ws1_c01126{word-spacing:-0.063760pt;}
.ws20_c01126{word-spacing:0.000000pt;}
.ws15_c01126{word-spacing:14.409760pt;}
.wsc_c01126{word-spacing:14.792320pt;}
.ws9_c01126{word-spacing:15.876240pt;}
.ws5_c01126{word-spacing:16.195040pt;}
.ws1c_c01126{word-spacing:17.916560pt;}
.ws2_c01126{word-spacing:18.044080pt;}
.ws17_c01126{word-spacing:19.319280pt;}
.ws7_c01126{word-spacing:19.701840pt;}
.ws16_c01126{word-spacing:19.765600pt;}
.ws1d_c01126{word-spacing:19.956880pt;}
.wsd_c01126{word-spacing:20.275680pt;}
.ws10_c01126{word-spacing:20.658240pt;}
.ws8_c01126{word-spacing:20.722000pt;}
.ws4_c01126{word-spacing:20.785760pt;}
.ws1a_c01126{word-spacing:21.104560pt;}
.ws19_c01126{word-spacing:22.188480pt;}
.wsb_c01126{word-spacing:22.252240pt;}
.ws11_c01126{word-spacing:22.443520pt;}
.ws3_c01126{word-spacing:23.654960pt;}
.ws1b_c01126{word-spacing:23.782480pt;}
.ws0_c01126{word-spacing:23.846240pt;}
.wsf_c01126{word-spacing:24.037520pt;}
.ws14_c01126{word-spacing:24.611360pt;}
.ws6_c01126{word-spacing:24.866400pt;}
.wsa_c01126{word-spacing:25.312720pt;}
.ws1f_c01126{word-spacing:25.440240pt;}
.ws1e_c01126{word-spacing:26.715440pt;}
.ws13_c01126{word-spacing:26.970480pt;}
.ws18_c01126{word-spacing:27.098000pt;}
.ws12_c01126{word-spacing:28.245680pt;}
.wse_c01126{word-spacing:70.454800pt;}
._0_c01126{margin-left:-36.151920pt;}
._6_c01126{margin-left:-32.836400pt;}
._4_c01126{margin-left:-31.242400pt;}
._3_c01126{margin-left:-29.584640pt;}
._b_c01126{margin-left:-24.292560pt;}
._a_c01126{margin-left:-6.886080pt;}
._c_c01126{margin-left:-5.292080pt;}
._8_c01126{margin-left:-4.271920pt;}
._2_c01126{margin-left:-1.721520pt;}
._5_c01126{width:1.594000pt;}
._9_c01126{width:2.486640pt;}
._7_c01126{width:3.761840pt;}
._1_c01126{width:377.335920pt;}
.fs0_c01126{font-size:63.760000pt;}
.y0_c01126{bottom:0.000000pt;}
.y24_c01126{bottom:87.188000pt;}
.y23_c01126{bottom:111.090667pt;}
.y22_c01126{bottom:134.993333pt;}
.y21_c01126{bottom:158.897333pt;}
.y20_c01126{bottom:182.800000pt;}
.y1f_c01126{bottom:206.702667pt;}
.y1e_c01126{bottom:230.605333pt;}
.y1d_c01126{bottom:254.508000pt;}
.y1c_c01126{bottom:278.412000pt;}
.y1b_c01126{bottom:302.314667pt;}
.y1a_c01126{bottom:326.217333pt;}
.y19_c01126{bottom:350.120000pt;}
.y18_c01126{bottom:374.024000pt;}
.y17_c01126{bottom:397.926667pt;}
.y16_c01126{bottom:421.829333pt;}
.y15_c01126{bottom:445.732000pt;}
.y14_c01126{bottom:469.636000pt;}
.y13_c01126{bottom:493.538667pt;}
.y12_c01126{bottom:517.441333pt;}
.y11_c01126{bottom:541.344000pt;}
.y10_c01126{bottom:572.110667pt;}
.yf_c01126{bottom:617.496000pt;}
.ye_c01126{bottom:667.530667pt;}
.yd_c01126{bottom:691.433333pt;}
.yc_c01126{bottom:715.336000pt;}
.yb_c01126{bottom:739.240000pt;}
.ya_c01126{bottom:763.142667pt;}
.y9_c01126{bottom:787.045333pt;}
.y8_c01126{bottom:810.948000pt;}
.y7_c01126{bottom:834.850667pt;}
.y6_c01126{bottom:858.754667pt;}
.y5_c01126{bottom:882.657333pt;}
.y4_c01126{bottom:906.560000pt;}
.y3_c01126{bottom:930.462667pt;}
.y2_c01126{bottom:954.366667pt;}
.y1_c01126{bottom:1013.880000pt;}
.h2_c01126{height:47.820000pt;}
.h3_c01126{height:53.132000pt;}
.h1_c01126{height:1123.333333pt;}
.h0_c01126{height:1123.653333pt;}
.w0_c01126{width:794.550667pt;}
.w1_c01126{width:794.666667pt;}
.x0_c01126{left:0.000000pt;}
.x1_c01126{left:113.385333pt;}
.x2_c01126{left:142.078667pt;}
.x3_c01126{left:263.860000pt;}
.x4_c01126{left:377.460000pt;}
}





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

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





.ff0_c01127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01127;src:url('chunks/assets/font_6248601ec284e944c794c0c3.woff2')format("woff");}.ff1_c01127{font-family:ff1_c01127;line-height:1.001000;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_c01127;src:url('chunks/assets/font_2dc9ea30ba1e13576d005980.woff2')format("woff");}.ff2_c01127{font-family:ff2_c01127;line-height:1.001000;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_c01127;src:url('chunks/assets/font_8b7716c3f295f52613a9aea7.woff2')format("woff");}.ff3_c01127{font-family:ff3_c01127;line-height:1.001000;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_c01127;src:url('chunks/assets/font_6d6f41c3e76e4f7f89a06eba.woff2')format("woff");}.ff4_c01127{font-family:ff4_c01127;line-height:1.000000;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_c01127;src:url('chunks/assets/font_9725470a67c6ead35d1ccce1.woff2')format("woff");}.ff5_c01127{font-family:ff5_c01127;line-height:0.697000;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_c01127;src:url('chunks/assets/font_b3531c6900e6cfbc9e0df657.woff2')format("woff");}.ff6_c01127{font-family:ff6_c01127;line-height:0.696000;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_c01127;src:url('chunks/assets/font_bb85c090cda89a664bdb1a24.woff2')format("woff");}.ff7_c01127{font-family:ff7_c01127;line-height:1.000000;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_c01127;src:url('chunks/assets/font_d9ba3ecab4e88621279a2032.woff2')format("woff");}.ff8_c01127{font-family:ff8_c01127;line-height:1.000000;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_c01127{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_c01127{vertical-align:-21.690000px;}
.v0_c01127{vertical-align:0.000000px;}
.v1_c01127{vertical-align:26.034000px;}
.ls0_c01127{letter-spacing:0.000000px;}
.sc__c01127{text-shadow:none;}
.sc0_c01127{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__c01127{-webkit-text-stroke:0px transparent;}
.sc0_c01127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01127{word-spacing:-0.071730px;}
.ws1c_c01127{word-spacing:-0.047820px;}
.ws20_c01127{word-spacing:-0.041844px;}
.ws23_c01127{word-spacing:0.000000px;}
.ws1d_c01127{word-spacing:16.067520px;}
.wsb_c01127{word-spacing:17.717310px;}
.ws19_c01127{word-spacing:19.151910px;}
.ws2_c01127{word-spacing:19.367100px;}
.ws21_c01127{word-spacing:19.846296px;}
.ws5_c01127{word-spacing:20.371320px;}
.ws11_c01127{word-spacing:20.443050px;}
.ws13_c01127{word-spacing:20.945160px;}
.ws22_c01127{word-spacing:21.280968px;}
.wsc_c01127{word-spacing:21.303810px;}
.ws1a_c01127{word-spacing:22.092840px;}
.wsf_c01127{word-spacing:22.451490px;}
.ws14_c01127{word-spacing:23.168790px;}
.ws3_c01127{word-spacing:23.312250px;}
.ws1e_c01127{word-spacing:23.670900px;}
.ws9_c01127{word-spacing:23.814360px;}
.ws12_c01127{word-spacing:24.173010px;}
.ws10_c01127{word-spacing:25.177230px;}
.wsd_c01127{word-spacing:25.822800px;}
.ws18_c01127{word-spacing:26.109720px;}
.ws0_c01127{word-spacing:26.827020px;}
.ws4_c01127{word-spacing:27.042210px;}
.ws15_c01127{word-spacing:29.122380px;}
.ws16_c01127{word-spacing:29.194110px;}
.ws1f_c01127{word-spacing:29.337570px;}
.wsa_c01127{word-spacing:29.552760px;}
.ws17_c01127{word-spacing:30.485250px;}
.wse_c01127{word-spacing:32.278500px;}
.ws1b_c01127{word-spacing:32.924070px;}
.ws7_c01127{word-spacing:34.573860px;}
.ws8_c01127{word-spacing:34.932510px;}
.ws6_c01127{word-spacing:40.494780px;}
._0_c01127{margin-left:-40.670910px;}
._d_c01127{margin-left:-37.084410px;}
._5_c01127{margin-left:-35.219430px;}
._a_c01127{margin-left:-33.210990px;}
._13_c01127{margin-left:-29.936592px;}
._e_c01127{margin-left:-28.620270px;}
._3_c01127{margin-left:-27.329130px;}
._2_c01127{margin-left:-7.890300px;}
._f_c01127{margin-left:-6.814350px;}
._6_c01127{margin-left:-5.810130px;}
._12_c01127{margin-left:-4.725816px;}
._8_c01127{margin-left:-3.586500px;}
._4_c01127{margin-left:-2.008440px;}
._11_c01127{margin-left:-1.004220px;}
._7_c01127{width:1.936710px;}
._b_c01127{width:3.514770px;}
._10_c01127{width:4.728000px;}
._c_c01127{width:22.738410px;}
._9_c01127{width:27.687780px;}
._1_c01127{width:424.502910px;}
.fc0_c01127{color:rgb(0,0,0);}
.fs2_c01127{font-size:41.844000px;}
.fs1_c01127{font-size:47.820000px;}
.fs3_c01127{font-size:59.778000px;}
.fs0_c01127{font-size:71.730000px;}
.y0_c01127{bottom:0.000000px;}
.y23_c01127{bottom:83.766000px;}
.y22_c01127{bottom:110.523000px;}
.y21_c01127{bottom:137.413500px;}
.y20_c01127{bottom:164.304000px;}
.y1f_c01127{bottom:191.196000px;}
.y1e_c01127{bottom:237.513000px;}
.y1d_c01127{bottom:264.405000px;}
.y1c_c01127{bottom:291.295500px;}
.y1b_c01127{bottom:318.186000px;}
.y1a_c01127{bottom:364.504500px;}
.y19_c01127{bottom:391.395000px;}
.y18_c01127{bottom:418.285500px;}
.y17_c01127{bottom:452.898000px;}
.y16_c01127{bottom:503.956500px;}
.y15_c01127{bottom:530.847000px;}
.y14_c01127{bottom:557.737500px;}
.y13_c01127{bottom:584.629500px;}
.y12_c01127{bottom:611.520000px;}
.y11_c01127{bottom:638.410500px;}
.y10_c01127{bottom:665.301000px;}
.yf_c01127{bottom:692.191500px;}
.ye_c01127{bottom:719.083500px;}
.yd_c01127{bottom:745.974000px;}
.yc_c01127{bottom:772.864500px;}
.yb_c01127{bottom:799.755000px;}
.ya_c01127{bottom:826.647000px;}
.y9_c01127{bottom:853.537500px;}
.y8_c01127{bottom:880.428000px;}
.y7_c01127{bottom:907.318500px;}
.y6_c01127{bottom:934.210500px;}
.y5_c01127{bottom:961.101000px;}
.y4_c01127{bottom:995.712000px;}
.y3_c01127{bottom:1046.770500px;}
.y2_c01127{bottom:1073.662500px;}
.y1_c01127{bottom:1140.615000px;}
.h4_c01127{height:28.286544px;}
.h2_c01127{height:53.797500px;}
.h3_c01127{height:58.360320px;}
.h1_c01127{height:1263.750000px;}
.h0_c01127{height:1264.110000px;}
.w0_c01127{width:893.869500px;}
.w1_c01127{width:894.000000px;}
.x0_c01127{left:0.000000px;}
.x1_c01127{left:127.558500px;}
.x5_c01127{left:141.798000px;}
.x2_c01127{left:159.838500px;}
.x4_c01127{left:171.456000px;}
.x3_c01127{left:197.794500px;}
@media print{
.v2_c01127{vertical-align:-19.280000pt;}
.v0_c01127{vertical-align:0.000000pt;}
.v1_c01127{vertical-align:23.141333pt;}
.ls0_c01127{letter-spacing:0.000000pt;}
.ws1_c01127{word-spacing:-0.063760pt;}
.ws1c_c01127{word-spacing:-0.042507pt;}
.ws20_c01127{word-spacing:-0.037195pt;}
.ws23_c01127{word-spacing:0.000000pt;}
.ws1d_c01127{word-spacing:14.282240pt;}
.wsb_c01127{word-spacing:15.748720pt;}
.ws19_c01127{word-spacing:17.023920pt;}
.ws2_c01127{word-spacing:17.215200pt;}
.ws21_c01127{word-spacing:17.641152pt;}
.ws5_c01127{word-spacing:18.107840pt;}
.ws11_c01127{word-spacing:18.171600pt;}
.ws13_c01127{word-spacing:18.617920pt;}
.ws22_c01127{word-spacing:18.916416pt;}
.wsc_c01127{word-spacing:18.936720pt;}
.ws1a_c01127{word-spacing:19.638080pt;}
.wsf_c01127{word-spacing:19.956880pt;}
.ws14_c01127{word-spacing:20.594480pt;}
.ws3_c01127{word-spacing:20.722000pt;}
.ws1e_c01127{word-spacing:21.040800pt;}
.ws9_c01127{word-spacing:21.168320pt;}
.ws12_c01127{word-spacing:21.487120pt;}
.ws10_c01127{word-spacing:22.379760pt;}
.wsd_c01127{word-spacing:22.953600pt;}
.ws18_c01127{word-spacing:23.208640pt;}
.ws0_c01127{word-spacing:23.846240pt;}
.ws4_c01127{word-spacing:24.037520pt;}
.ws15_c01127{word-spacing:25.886560pt;}
.ws16_c01127{word-spacing:25.950320pt;}
.ws1f_c01127{word-spacing:26.077840pt;}
.wsa_c01127{word-spacing:26.269120pt;}
.ws17_c01127{word-spacing:27.098000pt;}
.wse_c01127{word-spacing:28.692000pt;}
.ws1b_c01127{word-spacing:29.265840pt;}
.ws7_c01127{word-spacing:30.732320pt;}
.ws8_c01127{word-spacing:31.051120pt;}
.ws6_c01127{word-spacing:35.995360pt;}
._0_c01127{margin-left:-36.151920pt;}
._d_c01127{margin-left:-32.963920pt;}
._5_c01127{margin-left:-31.306160pt;}
._a_c01127{margin-left:-29.520880pt;}
._13_c01127{margin-left:-26.610304pt;}
._e_c01127{margin-left:-25.440240pt;}
._3_c01127{margin-left:-24.292560pt;}
._2_c01127{margin-left:-7.013600pt;}
._f_c01127{margin-left:-6.057200pt;}
._6_c01127{margin-left:-5.164560pt;}
._12_c01127{margin-left:-4.200725pt;}
._8_c01127{margin-left:-3.188000pt;}
._4_c01127{margin-left:-1.785280pt;}
._11_c01127{margin-left:-0.892640pt;}
._7_c01127{width:1.721520pt;}
._b_c01127{width:3.124240pt;}
._10_c01127{width:4.202667pt;}
._c_c01127{width:20.211920pt;}
._9_c01127{width:24.611360pt;}
._1_c01127{width:377.335920pt;}
.fs2_c01127{font-size:37.194667pt;}
.fs1_c01127{font-size:42.506667pt;}
.fs3_c01127{font-size:53.136000pt;}
.fs0_c01127{font-size:63.760000pt;}
.y0_c01127{bottom:0.000000pt;}
.y23_c01127{bottom:74.458667pt;}
.y22_c01127{bottom:98.242667pt;}
.y21_c01127{bottom:122.145333pt;}
.y20_c01127{bottom:146.048000pt;}
.y1f_c01127{bottom:169.952000pt;}
.y1e_c01127{bottom:211.122667pt;}
.y1d_c01127{bottom:235.026667pt;}
.y1c_c01127{bottom:258.929333pt;}
.y1b_c01127{bottom:282.832000pt;}
.y1a_c01127{bottom:324.004000pt;}
.y19_c01127{bottom:347.906667pt;}
.y18_c01127{bottom:371.809333pt;}
.y17_c01127{bottom:402.576000pt;}
.y16_c01127{bottom:447.961333pt;}
.y15_c01127{bottom:471.864000pt;}
.y14_c01127{bottom:495.766667pt;}
.y13_c01127{bottom:519.670667pt;}
.y12_c01127{bottom:543.573333pt;}
.y11_c01127{bottom:567.476000pt;}
.y10_c01127{bottom:591.378667pt;}
.yf_c01127{bottom:615.281333pt;}
.ye_c01127{bottom:639.185333pt;}
.yd_c01127{bottom:663.088000pt;}
.yc_c01127{bottom:686.990667pt;}
.yb_c01127{bottom:710.893333pt;}
.ya_c01127{bottom:734.797333pt;}
.y9_c01127{bottom:758.700000pt;}
.y8_c01127{bottom:782.602667pt;}
.y7_c01127{bottom:806.505333pt;}
.y6_c01127{bottom:830.409333pt;}
.y5_c01127{bottom:854.312000pt;}
.y4_c01127{bottom:885.077333pt;}
.y3_c01127{bottom:930.462667pt;}
.y2_c01127{bottom:954.366667pt;}
.y1_c01127{bottom:1013.880000pt;}
.h4_c01127{height:25.143595pt;}
.h2_c01127{height:47.820000pt;}
.h3_c01127{height:51.875840pt;}
.h1_c01127{height:1123.333333pt;}
.h0_c01127{height:1123.653333pt;}
.w0_c01127{width:794.550667pt;}
.w1_c01127{width:794.666667pt;}
.x0_c01127{left:0.000000pt;}
.x1_c01127{left:113.385333pt;}
.x5_c01127{left:126.042667pt;}
.x2_c01127{left:142.078667pt;}
.x4_c01127{left:152.405333pt;}
.x3_c01127{left:175.817333pt;}
}





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

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





.ff0_c01128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01128;src:url('chunks/assets/font_4271f158e1be957dd8dafe44.woff2')format("woff");}.ff1_c01128{font-family:ff1_c01128;line-height:1.001000;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_c01128;src:url('chunks/assets/font_796328c97d6dc702d939fa07.woff2')format("woff");}.ff2_c01128{font-family:ff2_c01128;line-height:1.001000;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_c01128;src:url('chunks/assets/font_547ded2935711d9e4c08d287.woff2')format("woff");}.ff3_c01128{font-family:ff3_c01128;line-height:1.001000;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_c01128;src:url('chunks/assets/font_2746689cb0d08940bf486360.woff2')format("woff");}.ff4_c01128{font-family:ff4_c01128;line-height:1.000000;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_c01128{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_c01128{vertical-align:0.000000px;}
.ls0_c01128{letter-spacing:0.000000px;}
.sc__c01128{text-shadow:none;}
.sc0_c01128{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__c01128{-webkit-text-stroke:0px transparent;}
.sc0_c01128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01128{word-spacing:-0.071730px;}
.ws22_c01128{word-spacing:0.000000px;}
.ws1f_c01128{word-spacing:17.573850px;}
.ws1c_c01128{word-spacing:17.860770px;}
.wsd_c01128{word-spacing:19.438830px;}
.wsf_c01128{word-spacing:19.510560px;}
.ws20_c01128{word-spacing:20.227860px;}
.ws15_c01128{word-spacing:20.729970px;}
.ws1d_c01128{word-spacing:21.088620px;}
.wse_c01128{word-spacing:21.447270px;}
.ws1a_c01128{word-spacing:22.021110px;}
.ws16_c01128{word-spacing:22.881870px;}
.wsa_c01128{word-spacing:23.025330px;}
.ws14_c01128{word-spacing:23.312250px;}
.ws5_c01128{word-spacing:23.383980px;}
.ws1e_c01128{word-spacing:23.455710px;}
.ws4_c01128{word-spacing:24.818580px;}
.ws3_c01128{word-spacing:24.962040px;}
.ws10_c01128{word-spacing:25.033770px;}
.ws1b_c01128{word-spacing:25.535880px;}
.wsc_c01128{word-spacing:25.679340px;}
.ws8_c01128{word-spacing:26.324910px;}
.ws21_c01128{word-spacing:26.540100px;}
.ws17_c01128{word-spacing:26.611830px;}
.ws19_c01128{word-spacing:26.683560px;}
.ws6_c01128{word-spacing:26.755290px;}
.ws0_c01128{word-spacing:26.827020px;}
.ws11_c01128{word-spacing:27.042210px;}
.ws7_c01128{word-spacing:27.113940px;}
.wsb_c01128{word-spacing:27.472590px;}
.ws18_c01128{word-spacing:28.118160px;}
.ws12_c01128{word-spacing:28.692000px;}
.ws2_c01128{word-spacing:30.885540px;}
.ws9_c01128{word-spacing:33.354450px;}
.ws13_c01128{word-spacing:34.131900px;}
._0_c01128{margin-left:-40.670910px;}
._6_c01128{margin-left:-37.156140px;}
._5_c01128{margin-left:-35.291160px;}
._c_c01128{margin-left:-33.009000px;}
._a_c01128{margin-left:-27.329130px;}
._9_c01128{margin-left:-7.603380px;}
._8_c01128{margin-left:-6.097050px;}
._2_c01128{margin-left:-3.586500px;}
._4_c01128{margin-left:-2.008440px;}
._3_c01128{width:1.864980px;}
._f_c01128{width:3.801690px;}
._b_c01128{width:24.420090px;}
._d_c01128{width:28.763730px;}
._e_c01128{width:31.093530px;}
._7_c01128{width:35.362890px;}
._1_c01128{width:424.502910px;}
.fc0_c01128{color:rgb(0,0,0);}
.fs0_c01128{font-size:71.730000px;}
.y0_c01128{bottom:0.000000px;}
.y24_c01128{bottom:95.595000px;}
.y23_c01128{bottom:122.487000px;}
.y22_c01128{bottom:149.377500px;}
.y21_c01128{bottom:176.268000px;}
.y20_c01128{bottom:203.158500px;}
.y1f_c01128{bottom:230.050500px;}
.y1e_c01128{bottom:256.941000px;}
.y1d_c01128{bottom:283.831500px;}
.y1c_c01128{bottom:310.722000px;}
.y1b_c01128{bottom:337.612500px;}
.y1a_c01128{bottom:364.504500px;}
.y19_c01128{bottom:391.395000px;}
.y18_c01128{bottom:418.285500px;}
.y17_c01128{bottom:445.176000px;}
.y16_c01128{bottom:472.068000px;}
.y15_c01128{bottom:506.679000px;}
.y14_c01128{bottom:557.737500px;}
.y13_c01128{bottom:584.629500px;}
.y12_c01128{bottom:611.520000px;}
.y11_c01128{bottom:638.410500px;}
.y10_c01128{bottom:665.301000px;}
.yf_c01128{bottom:699.913500px;}
.ye_c01128{bottom:750.972000px;}
.yd_c01128{bottom:777.862500px;}
.yc_c01128{bottom:804.753000px;}
.yb_c01128{bottom:831.645000px;}
.ya_c01128{bottom:858.535500px;}
.y9_c01128{bottom:885.426000px;}
.y8_c01128{bottom:912.316500px;}
.y7_c01128{bottom:939.207000px;}
.y6_c01128{bottom:966.099000px;}
.y5_c01128{bottom:992.989500px;}
.y4_c01128{bottom:1019.880000px;}
.y3_c01128{bottom:1046.770500px;}
.y2_c01128{bottom:1073.662500px;}
.y1_c01128{bottom:1140.615000px;}
.h2_c01128{height:53.797500px;}
.h1_c01128{height:1263.750000px;}
.h0_c01128{height:1264.110000px;}
.w0_c01128{width:893.869500px;}
.w1_c01128{width:894.000000px;}
.x0_c01128{left:0.000000px;}
.x1_c01128{left:127.558500px;}
.x2_c01128{left:159.838500px;}
@media print{
.v0_c01128{vertical-align:0.000000pt;}
.ls0_c01128{letter-spacing:0.000000pt;}
.ws1_c01128{word-spacing:-0.063760pt;}
.ws22_c01128{word-spacing:0.000000pt;}
.ws1f_c01128{word-spacing:15.621200pt;}
.ws1c_c01128{word-spacing:15.876240pt;}
.wsd_c01128{word-spacing:17.278960pt;}
.wsf_c01128{word-spacing:17.342720pt;}
.ws20_c01128{word-spacing:17.980320pt;}
.ws15_c01128{word-spacing:18.426640pt;}
.ws1d_c01128{word-spacing:18.745440pt;}
.wse_c01128{word-spacing:19.064240pt;}
.ws1a_c01128{word-spacing:19.574320pt;}
.ws16_c01128{word-spacing:20.339440pt;}
.wsa_c01128{word-spacing:20.466960pt;}
.ws14_c01128{word-spacing:20.722000pt;}
.ws5_c01128{word-spacing:20.785760pt;}
.ws1e_c01128{word-spacing:20.849520pt;}
.ws4_c01128{word-spacing:22.060960pt;}
.ws3_c01128{word-spacing:22.188480pt;}
.ws10_c01128{word-spacing:22.252240pt;}
.ws1b_c01128{word-spacing:22.698560pt;}
.wsc_c01128{word-spacing:22.826080pt;}
.ws8_c01128{word-spacing:23.399920pt;}
.ws21_c01128{word-spacing:23.591200pt;}
.ws17_c01128{word-spacing:23.654960pt;}
.ws19_c01128{word-spacing:23.718720pt;}
.ws6_c01128{word-spacing:23.782480pt;}
.ws0_c01128{word-spacing:23.846240pt;}
.ws11_c01128{word-spacing:24.037520pt;}
.ws7_c01128{word-spacing:24.101280pt;}
.wsb_c01128{word-spacing:24.420080pt;}
.ws18_c01128{word-spacing:24.993920pt;}
.ws12_c01128{word-spacing:25.504000pt;}
.ws2_c01128{word-spacing:27.453813pt;}
.ws9_c01128{word-spacing:29.648400pt;}
.ws13_c01128{word-spacing:30.339467pt;}
._0_c01128{margin-left:-36.151920pt;}
._6_c01128{margin-left:-33.027680pt;}
._5_c01128{margin-left:-31.369920pt;}
._c_c01128{margin-left:-29.341333pt;}
._a_c01128{margin-left:-24.292560pt;}
._9_c01128{margin-left:-6.758560pt;}
._8_c01128{margin-left:-5.419600pt;}
._2_c01128{margin-left:-3.188000pt;}
._4_c01128{margin-left:-1.785280pt;}
._3_c01128{width:1.657760pt;}
._f_c01128{width:3.379280pt;}
._b_c01128{width:21.706747pt;}
._d_c01128{width:25.567760pt;}
._e_c01128{width:27.638693pt;}
._7_c01128{width:31.433680pt;}
._1_c01128{width:377.335920pt;}
.fs0_c01128{font-size:63.760000pt;}
.y0_c01128{bottom:0.000000pt;}
.y24_c01128{bottom:84.973333pt;}
.y23_c01128{bottom:108.877333pt;}
.y22_c01128{bottom:132.780000pt;}
.y21_c01128{bottom:156.682667pt;}
.y20_c01128{bottom:180.585333pt;}
.y1f_c01128{bottom:204.489333pt;}
.y1e_c01128{bottom:228.392000pt;}
.y1d_c01128{bottom:252.294667pt;}
.y1c_c01128{bottom:276.197333pt;}
.y1b_c01128{bottom:300.100000pt;}
.y1a_c01128{bottom:324.004000pt;}
.y19_c01128{bottom:347.906667pt;}
.y18_c01128{bottom:371.809333pt;}
.y17_c01128{bottom:395.712000pt;}
.y16_c01128{bottom:419.616000pt;}
.y15_c01128{bottom:450.381333pt;}
.y14_c01128{bottom:495.766667pt;}
.y13_c01128{bottom:519.670667pt;}
.y12_c01128{bottom:543.573333pt;}
.y11_c01128{bottom:567.476000pt;}
.y10_c01128{bottom:591.378667pt;}
.yf_c01128{bottom:622.145333pt;}
.ye_c01128{bottom:667.530667pt;}
.yd_c01128{bottom:691.433333pt;}
.yc_c01128{bottom:715.336000pt;}
.yb_c01128{bottom:739.240000pt;}
.ya_c01128{bottom:763.142667pt;}
.y9_c01128{bottom:787.045333pt;}
.y8_c01128{bottom:810.948000pt;}
.y7_c01128{bottom:834.850667pt;}
.y6_c01128{bottom:858.754667pt;}
.y5_c01128{bottom:882.657333pt;}
.y4_c01128{bottom:906.560000pt;}
.y3_c01128{bottom:930.462667pt;}
.y2_c01128{bottom:954.366667pt;}
.y1_c01128{bottom:1013.880000pt;}
.h2_c01128{height:47.820000pt;}
.h1_c01128{height:1123.333333pt;}
.h0_c01128{height:1123.653333pt;}
.w0_c01128{width:794.550667pt;}
.w1_c01128{width:794.666667pt;}
.x0_c01128{left:0.000000pt;}
.x1_c01128{left:113.385333pt;}
.x2_c01128{left:142.078667pt;}
}





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

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





.ff0_c01129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01129;src:url('chunks/assets/font_c2ea96b3aaf458e3d4e2235b.woff2')format("woff");}.ff1_c01129{font-family:ff1_c01129;line-height:1.001000;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_c01129;src:url('chunks/assets/font_f7c9beeb113109ebf2d7c7f4.woff2')format("woff");}.ff2_c01129{font-family:ff2_c01129;line-height:1.001000;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_c01129;src:url('chunks/assets/font_9143fc3e4c3c8a979880c763.woff2')format("woff");}.ff3_c01129{font-family:ff3_c01129;line-height:1.001000;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_c01129;src:url('chunks/assets/font_d3235b6b062d0291bbaf47ae.woff2')format("woff");}.ff4_c01129{font-family:ff4_c01129;line-height:1.000000;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_c01129{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_c01129{vertical-align:0.000000px;}
.ls1_c01129{letter-spacing:0.000000px;}
.ls0_c01129{letter-spacing:23.395590px;}
.sc__c01129{text-shadow:none;}
.sc0_c01129{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__c01129{-webkit-text-stroke:0px transparent;}
.sc0_c01129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01129{word-spacing:-0.071730px;}
.ws24_c01129{word-spacing:0.000000px;}
.ws1b_c01129{word-spacing:15.780600px;}
.ws21_c01129{word-spacing:16.784820px;}
.ws1c_c01129{word-spacing:17.000010px;}
.wsf_c01129{word-spacing:17.215200px;}
.ws1d_c01129{word-spacing:17.430390px;}
.ws11_c01129{word-spacing:18.362880px;}
.wsc_c01129{word-spacing:19.654020px;}
.ws23_c01129{word-spacing:19.725750px;}
.ws22_c01129{word-spacing:20.729970px;}
.ws10_c01129{word-spacing:21.662460px;}
.ws9_c01129{word-spacing:22.378440px;}
.wsb_c01129{word-spacing:22.379760px;}
.ws3_c01129{word-spacing:23.240520px;}
.ws4_c01129{word-spacing:23.312250px;}
.ws13_c01129{word-spacing:23.322900px;}
.ws18_c01129{word-spacing:23.383980px;}
.ws15_c01129{word-spacing:23.727240px;}
.ws16_c01129{word-spacing:23.742630px;}
.ws12_c01129{word-spacing:23.782800px;}
.wsd_c01129{word-spacing:23.886090px;}
.ws17_c01129{word-spacing:24.531660px;}
.ws5_c01129{word-spacing:25.033770px;}
.ws1e_c01129{word-spacing:25.607610px;}
.ws20_c01129{word-spacing:26.755290px;}
.ws0_c01129{word-spacing:26.827020px;}
.ws6_c01129{word-spacing:27.042210px;}
.ws14_c01129{word-spacing:27.699300px;}
.wsa_c01129{word-spacing:27.790800px;}
.ws19_c01129{word-spacing:28.763730px;}
.wse_c01129{word-spacing:29.194110px;}
.ws8_c01129{word-spacing:29.624490px;}
.ws1a_c01129{word-spacing:30.126600px;}
.ws7_c01129{word-spacing:31.059090px;}
.ws2_c01129{word-spacing:31.776390px;}
.ws1f_c01129{word-spacing:32.565420px;}
._0_c01129{margin-left:-40.670910px;}
._e_c01129{margin-left:-38.016900px;}
._b_c01129{margin-left:-36.940950px;}
._8_c01129{margin-left:-34.932510px;}
._9_c01129{margin-left:-33.139260px;}
._6_c01129{margin-left:-27.400860px;}
._5_c01129{margin-left:-7.818570px;}
._2_c01129{margin-left:-5.881860px;}
._a_c01129{margin-left:-3.586500px;}
._3_c01129{margin-left:-2.008440px;}
._4_c01129{width:1.793250px;}
._7_c01129{width:3.801690px;}
._d_c01129{width:17.932500px;}
._c_c01129{width:25.694730px;}
._1_c01129{width:424.502910px;}
.fc0_c01129{color:rgb(0,0,0);}
.fs0_c01129{font-size:71.730000px;}
.y0_c01129{bottom:0.000000px;}
.y23_c01129{bottom:90.597000px;}
.y22_c01129{bottom:117.489000px;}
.y21_c01129{bottom:144.379500px;}
.y20_c01129{bottom:171.270000px;}
.y1f_c01129{bottom:198.160500px;}
.y1e_c01129{bottom:225.052500px;}
.y1d_c01129{bottom:251.943000px;}
.y1c_c01129{bottom:278.833500px;}
.y1b_c01129{bottom:305.724000px;}
.y1a_c01129{bottom:332.616000px;}
.y19_c01129{bottom:359.506500px;}
.y18_c01129{bottom:394.117500px;}
.y17_c01129{bottom:445.176000px;}
.y16_c01129{bottom:472.068000px;}
.y15_c01129{bottom:498.958500px;}
.y14_c01129{bottom:525.849000px;}
.y13_c01129{bottom:552.739500px;}
.y12_c01129{bottom:579.631500px;}
.y11_c01129{bottom:606.522000px;}
.y10_c01129{bottom:633.412500px;}
.yf_c01129{bottom:660.303000px;}
.ye_c01129{bottom:694.915500px;}
.yd_c01129{bottom:745.974000px;}
.yc_c01129{bottom:772.864500px;}
.yb_c01129{bottom:799.755000px;}
.ya_c01129{bottom:826.647000px;}
.y9_c01129{bottom:853.537500px;}
.y8_c01129{bottom:880.428000px;}
.y7_c01129{bottom:907.318500px;}
.y6_c01129{bottom:934.210500px;}
.y5_c01129{bottom:968.821500px;}
.y4_c01129{bottom:1019.880000px;}
.y3_c01129{bottom:1046.770500px;}
.y2_c01129{bottom:1073.662500px;}
.y1_c01129{bottom:1140.615000px;}
.h2_c01129{height:53.797500px;}
.h1_c01129{height:1263.750000px;}
.h0_c01129{height:1264.110000px;}
.w0_c01129{width:893.869500px;}
.w1_c01129{width:894.000000px;}
.x0_c01129{left:0.000000px;}
.x1_c01129{left:127.558500px;}
.x2_c01129{left:159.838500px;}
@media print{
.v0_c01129{vertical-align:0.000000pt;}
.ls1_c01129{letter-spacing:0.000000pt;}
.ls0_c01129{letter-spacing:20.796080pt;}
.ws1_c01129{word-spacing:-0.063760pt;}
.ws24_c01129{word-spacing:0.000000pt;}
.ws1b_c01129{word-spacing:14.027200pt;}
.ws21_c01129{word-spacing:14.919840pt;}
.ws1c_c01129{word-spacing:15.111120pt;}
.wsf_c01129{word-spacing:15.302400pt;}
.ws1d_c01129{word-spacing:15.493680pt;}
.ws11_c01129{word-spacing:16.322560pt;}
.wsc_c01129{word-spacing:17.470240pt;}
.ws23_c01129{word-spacing:17.534000pt;}
.ws22_c01129{word-spacing:18.426640pt;}
.ws10_c01129{word-spacing:19.255520pt;}
.ws9_c01129{word-spacing:19.891947pt;}
.wsb_c01129{word-spacing:19.893120pt;}
.ws3_c01129{word-spacing:20.658240pt;}
.ws4_c01129{word-spacing:20.722000pt;}
.ws13_c01129{word-spacing:20.731467pt;}
.ws18_c01129{word-spacing:20.785760pt;}
.ws15_c01129{word-spacing:21.090880pt;}
.ws16_c01129{word-spacing:21.104560pt;}
.ws12_c01129{word-spacing:21.140267pt;}
.wsd_c01129{word-spacing:21.232080pt;}
.ws17_c01129{word-spacing:21.805920pt;}
.ws5_c01129{word-spacing:22.252240pt;}
.ws1e_c01129{word-spacing:22.762320pt;}
.ws20_c01129{word-spacing:23.782480pt;}
.ws0_c01129{word-spacing:23.846240pt;}
.ws6_c01129{word-spacing:24.037520pt;}
.ws14_c01129{word-spacing:24.621600pt;}
.wsa_c01129{word-spacing:24.702933pt;}
.ws19_c01129{word-spacing:25.567760pt;}
.wse_c01129{word-spacing:25.950320pt;}
.ws8_c01129{word-spacing:26.332880pt;}
.ws1a_c01129{word-spacing:26.779200pt;}
.ws7_c01129{word-spacing:27.608080pt;}
.ws2_c01129{word-spacing:28.245680pt;}
.ws1f_c01129{word-spacing:28.947040pt;}
._0_c01129{margin-left:-36.151920pt;}
._e_c01129{margin-left:-33.792800pt;}
._b_c01129{margin-left:-32.836400pt;}
._8_c01129{margin-left:-31.051120pt;}
._9_c01129{margin-left:-29.457120pt;}
._6_c01129{margin-left:-24.356320pt;}
._5_c01129{margin-left:-6.949840pt;}
._2_c01129{margin-left:-5.228320pt;}
._a_c01129{margin-left:-3.188000pt;}
._3_c01129{margin-left:-1.785280pt;}
._4_c01129{width:1.594000pt;}
._7_c01129{width:3.379280pt;}
._d_c01129{width:15.940000pt;}
._c_c01129{width:22.839760pt;}
._1_c01129{width:377.335920pt;}
.fs0_c01129{font-size:63.760000pt;}
.y0_c01129{bottom:0.000000pt;}
.y23_c01129{bottom:80.530667pt;}
.y22_c01129{bottom:104.434667pt;}
.y21_c01129{bottom:128.337333pt;}
.y20_c01129{bottom:152.240000pt;}
.y1f_c01129{bottom:176.142667pt;}
.y1e_c01129{bottom:200.046667pt;}
.y1d_c01129{bottom:223.949333pt;}
.y1c_c01129{bottom:247.852000pt;}
.y1b_c01129{bottom:271.754667pt;}
.y1a_c01129{bottom:295.658667pt;}
.y19_c01129{bottom:319.561333pt;}
.y18_c01129{bottom:350.326667pt;}
.y17_c01129{bottom:395.712000pt;}
.y16_c01129{bottom:419.616000pt;}
.y15_c01129{bottom:443.518667pt;}
.y14_c01129{bottom:467.421333pt;}
.y13_c01129{bottom:491.324000pt;}
.y12_c01129{bottom:515.228000pt;}
.y11_c01129{bottom:539.130667pt;}
.y10_c01129{bottom:563.033333pt;}
.yf_c01129{bottom:586.936000pt;}
.ye_c01129{bottom:617.702667pt;}
.yd_c01129{bottom:663.088000pt;}
.yc_c01129{bottom:686.990667pt;}
.yb_c01129{bottom:710.893333pt;}
.ya_c01129{bottom:734.797333pt;}
.y9_c01129{bottom:758.700000pt;}
.y8_c01129{bottom:782.602667pt;}
.y7_c01129{bottom:806.505333pt;}
.y6_c01129{bottom:830.409333pt;}
.y5_c01129{bottom:861.174667pt;}
.y4_c01129{bottom:906.560000pt;}
.y3_c01129{bottom:930.462667pt;}
.y2_c01129{bottom:954.366667pt;}
.y1_c01129{bottom:1013.880000pt;}
.h2_c01129{height:47.820000pt;}
.h1_c01129{height:1123.333333pt;}
.h0_c01129{height:1123.653333pt;}
.w0_c01129{width:794.550667pt;}
.w1_c01129{width:794.666667pt;}
.x0_c01129{left:0.000000pt;}
.x1_c01129{left:113.385333pt;}
.x2_c01129{left:142.078667pt;}
}





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

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





.ff0_c01130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01130;src:url('chunks/assets/font_875108ac9485c0e61499d782.woff2')format("woff");}.ff1_c01130{font-family:ff1_c01130;line-height:1.001000;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_c01130;src:url('chunks/assets/font_b63cff6a9a20eddabd0fda84.woff2')format("woff");}.ff2_c01130{font-family:ff2_c01130;line-height:1.001000;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_c01130;src:url('chunks/assets/font_e705e8ac42acbd13364912a6.woff2')format("woff");}.ff3_c01130{font-family:ff3_c01130;line-height:1.001000;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_c01130;src:url('chunks/assets/font_fc66d4f76789cd4f168bc9f8.woff2')format("woff");}.ff4_c01130{font-family:ff4_c01130;line-height:1.000000;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_c01130{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_c01130{vertical-align:0.000000px;}
.ls1_c01130{letter-spacing:0.000000px;}
.ls0_c01130{letter-spacing:20.647590px;}
.sc__c01130{text-shadow:none;}
.sc0_c01130{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__c01130{-webkit-text-stroke:0px transparent;}
.sc0_c01130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01130{word-spacing:-0.071730px;}
.ws1e_c01130{word-spacing:0.000000px;}
.ws12_c01130{word-spacing:16.784820px;}
.ws17_c01130{word-spacing:17.286930px;}
.ws2_c01130{word-spacing:17.502120px;}
.ws5_c01130{word-spacing:20.156130px;}
.ws10_c01130{word-spacing:20.299590px;}
.ws1c_c01130{word-spacing:20.514780px;}
.ws1a_c01130{word-spacing:20.586510px;}
.ws16_c01130{word-spacing:21.375540px;}
.ws19_c01130{word-spacing:21.877650px;}
.ws14_c01130{word-spacing:22.738410px;}
.ws9_c01130{word-spacing:23.312250px;}
.ws3_c01130{word-spacing:23.383980px;}
.ws11_c01130{word-spacing:24.029550px;}
.ws13_c01130{word-spacing:24.818580px;}
.wsd_c01130{word-spacing:25.105500px;}
.ws18_c01130{word-spacing:25.679340px;}
.wsb_c01130{word-spacing:26.037990px;}
.wsf_c01130{word-spacing:26.324910px;}
.ws1b_c01130{word-spacing:26.527770px;}
.ws0_c01130{word-spacing:26.827020px;}
.ws6_c01130{word-spacing:27.472590px;}
.ws4_c01130{word-spacing:27.687780px;}
.ws7_c01130{word-spacing:29.624490px;}
.ws15_c01130{word-spacing:30.556980px;}
.wsc_c01130{word-spacing:33.354450px;}
.wsa_c01130{word-spacing:33.426180px;}
.ws1d_c01130{word-spacing:33.928290px;}
.ws8_c01130{word-spacing:34.071750px;}
.wse_c01130{word-spacing:79.261650px;}
._0_c01130{margin-left:-40.670910px;}
._5_c01130{margin-left:-37.156140px;}
._4_c01130{margin-left:-35.147700px;}
._6_c01130{margin-left:-33.426180px;}
._8_c01130{margin-left:-27.329130px;}
._7_c01130{margin-left:-8.033760px;}
._9_c01130{margin-left:-5.810130px;}
._a_c01130{margin-left:-3.945150px;}
._2_c01130{margin-left:-1.936710px;}
._3_c01130{width:1.721520px;}
._d_c01130{width:3.873420px;}
._b_c01130{width:13.987350px;}
._c_c01130{width:22.810140px;}
._1_c01130{width:424.502910px;}
.fc0_c01130{color:rgb(0,0,0);}
.fs0_c01130{font-size:71.730000px;}
.y0_c01130{bottom:0.000000px;}
.y21_c01130{bottom:202.926000px;}
.y20_c01130{bottom:229.818000px;}
.y1f_c01130{bottom:256.708500px;}
.y1e_c01130{bottom:283.599000px;}
.y1d_c01130{bottom:310.489500px;}
.y1c_c01130{bottom:337.380000px;}
.y1b_c01130{bottom:364.272000px;}
.y1a_c01130{bottom:391.162500px;}
.y19_c01130{bottom:418.053000px;}
.y18_c01130{bottom:444.943500px;}
.y17_c01130{bottom:471.835500px;}
.y16_c01130{bottom:498.726000px;}
.y15_c01130{bottom:525.616500px;}
.y14_c01130{bottom:552.507000px;}
.y13_c01130{bottom:579.399000px;}
.y12_c01130{bottom:606.289500px;}
.y11_c01130{bottom:633.180000px;}
.y10_c01130{bottom:667.792500px;}
.yf_c01130{bottom:724.081500px;}
.ye_c01130{bottom:750.972000px;}
.yd_c01130{bottom:777.862500px;}
.yc_c01130{bottom:804.753000px;}
.yb_c01130{bottom:831.645000px;}
.ya_c01130{bottom:858.535500px;}
.y9_c01130{bottom:885.426000px;}
.y8_c01130{bottom:912.316500px;}
.y7_c01130{bottom:939.207000px;}
.y6_c01130{bottom:966.099000px;}
.y5_c01130{bottom:992.989500px;}
.y4_c01130{bottom:1019.880000px;}
.y3_c01130{bottom:1046.770500px;}
.y2_c01130{bottom:1073.662500px;}
.y1_c01130{bottom:1140.615000px;}
.h2_c01130{height:53.797500px;}
.h1_c01130{height:1263.750000px;}
.h0_c01130{height:1264.110000px;}
.w0_c01130{width:893.869500px;}
.w1_c01130{width:894.000000px;}
.x0_c01130{left:0.000000px;}
.x1_c01130{left:127.558500px;}
.x2_c01130{left:159.838500px;}
@media print{
.v0_c01130{vertical-align:0.000000pt;}
.ls1_c01130{letter-spacing:0.000000pt;}
.ls0_c01130{letter-spacing:18.353413pt;}
.ws1_c01130{word-spacing:-0.063760pt;}
.ws1e_c01130{word-spacing:0.000000pt;}
.ws12_c01130{word-spacing:14.919840pt;}
.ws17_c01130{word-spacing:15.366160pt;}
.ws2_c01130{word-spacing:15.557440pt;}
.ws5_c01130{word-spacing:17.916560pt;}
.ws10_c01130{word-spacing:18.044080pt;}
.ws1c_c01130{word-spacing:18.235360pt;}
.ws1a_c01130{word-spacing:18.299120pt;}
.ws16_c01130{word-spacing:19.000480pt;}
.ws19_c01130{word-spacing:19.446800pt;}
.ws14_c01130{word-spacing:20.211920pt;}
.ws9_c01130{word-spacing:20.722000pt;}
.ws3_c01130{word-spacing:20.785760pt;}
.ws11_c01130{word-spacing:21.359600pt;}
.ws13_c01130{word-spacing:22.060960pt;}
.wsd_c01130{word-spacing:22.316000pt;}
.ws18_c01130{word-spacing:22.826080pt;}
.wsb_c01130{word-spacing:23.144880pt;}
.wsf_c01130{word-spacing:23.399920pt;}
.ws1b_c01130{word-spacing:23.580240pt;}
.ws0_c01130{word-spacing:23.846240pt;}
.ws6_c01130{word-spacing:24.420080pt;}
.ws4_c01130{word-spacing:24.611360pt;}
.ws7_c01130{word-spacing:26.332880pt;}
.ws15_c01130{word-spacing:27.161760pt;}
.wsc_c01130{word-spacing:29.648400pt;}
.wsa_c01130{word-spacing:29.712160pt;}
.ws1d_c01130{word-spacing:30.158480pt;}
.ws8_c01130{word-spacing:30.286000pt;}
.wse_c01130{word-spacing:70.454800pt;}
._0_c01130{margin-left:-36.151920pt;}
._5_c01130{margin-left:-33.027680pt;}
._4_c01130{margin-left:-31.242400pt;}
._6_c01130{margin-left:-29.712160pt;}
._8_c01130{margin-left:-24.292560pt;}
._7_c01130{margin-left:-7.141120pt;}
._9_c01130{margin-left:-5.164560pt;}
._a_c01130{margin-left:-3.506800pt;}
._2_c01130{margin-left:-1.721520pt;}
._3_c01130{width:1.530240pt;}
._d_c01130{width:3.443040pt;}
._b_c01130{width:12.433200pt;}
._c_c01130{width:20.275680pt;}
._1_c01130{width:377.335920pt;}
.fs0_c01130{font-size:63.760000pt;}
.y0_c01130{bottom:0.000000pt;}
.y21_c01130{bottom:180.378667pt;}
.y20_c01130{bottom:204.282667pt;}
.y1f_c01130{bottom:228.185333pt;}
.y1e_c01130{bottom:252.088000pt;}
.y1d_c01130{bottom:275.990667pt;}
.y1c_c01130{bottom:299.893333pt;}
.y1b_c01130{bottom:323.797333pt;}
.y1a_c01130{bottom:347.700000pt;}
.y19_c01130{bottom:371.602667pt;}
.y18_c01130{bottom:395.505333pt;}
.y17_c01130{bottom:419.409333pt;}
.y16_c01130{bottom:443.312000pt;}
.y15_c01130{bottom:467.214667pt;}
.y14_c01130{bottom:491.117333pt;}
.y13_c01130{bottom:515.021333pt;}
.y12_c01130{bottom:538.924000pt;}
.y11_c01130{bottom:562.826667pt;}
.y10_c01130{bottom:593.593333pt;}
.yf_c01130{bottom:643.628000pt;}
.ye_c01130{bottom:667.530667pt;}
.yd_c01130{bottom:691.433333pt;}
.yc_c01130{bottom:715.336000pt;}
.yb_c01130{bottom:739.240000pt;}
.ya_c01130{bottom:763.142667pt;}
.y9_c01130{bottom:787.045333pt;}
.y8_c01130{bottom:810.948000pt;}
.y7_c01130{bottom:834.850667pt;}
.y6_c01130{bottom:858.754667pt;}
.y5_c01130{bottom:882.657333pt;}
.y4_c01130{bottom:906.560000pt;}
.y3_c01130{bottom:930.462667pt;}
.y2_c01130{bottom:954.366667pt;}
.y1_c01130{bottom:1013.880000pt;}
.h2_c01130{height:47.820000pt;}
.h1_c01130{height:1123.333333pt;}
.h0_c01130{height:1123.653333pt;}
.w0_c01130{width:794.550667pt;}
.w1_c01130{width:794.666667pt;}
.x0_c01130{left:0.000000pt;}
.x1_c01130{left:113.385333pt;}
.x2_c01130{left:142.078667pt;}
}





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

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





.ff0_c01131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01131;src:url('chunks/assets/font_98d11830f23858ca5845ce13.woff2')format("woff");}.ff1_c01131{font-family:ff1_c01131;line-height:1.001000;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_c01131;src:url('chunks/assets/font_b846200c2fe3a1dcfb958a96.woff2')format("woff");}.ff2_c01131{font-family:ff2_c01131;line-height:1.001000;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_c01131;src:url('chunks/assets/font_db5bae1f15626bc7b8fb119b.woff2')format("woff");}.ff3_c01131{font-family:ff3_c01131;line-height:1.000000;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_c01131;src:url('chunks/assets/font_600350650710edf72ec50962.woff2')format("woff");}.ff4_c01131{font-family:ff4_c01131;line-height:1.001000;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_c01131;src:url('chunks/assets/font_86683839b3f8eae2f3ae8d5a.woff2')format("woff");}.ff5_c01131{font-family:ff5_c01131;line-height:0.697000;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_c01131;src:url('chunks/assets/font_dc8e8f9b9f685f58adcd7b75.woff2')format("woff");}.ff6_c01131{font-family:ff6_c01131;line-height:0.696000;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_c01131;src:url('chunks/assets/font_3a94c805c6582fdcfa8b17a3.woff2')format("woff");}.ff7_c01131{font-family:ff7_c01131;line-height:1.000000;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_c01131;src:url('chunks/assets/font_bd9e5dd2592f1e1a3e0f9d72.woff2')format("woff");}.ff8_c01131{font-family:ff8_c01131;line-height:1.000000;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_c01131{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);}
.v3_c01131{vertical-align:-21.690000px;}
.v0_c01131{vertical-align:0.000000px;}
.v1_c01131{vertical-align:5.976000px;}
.v2_c01131{vertical-align:26.034000px;}
.ls0_c01131{letter-spacing:0.000000px;}
.sc__c01131{text-shadow:none;}
.sc0_c01131{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__c01131{-webkit-text-stroke:0px transparent;}
.sc0_c01131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01131{word-spacing:-0.071730px;}
.ws1b_c01131{word-spacing:-0.047820px;}
.ws22_c01131{word-spacing:-0.041844px;}
.ws25_c01131{word-spacing:0.000000px;}
.ws5_c01131{word-spacing:15.852330px;}
.ws11_c01131{word-spacing:15.995790px;}
.ws12_c01131{word-spacing:18.362880px;}
.ws21_c01131{word-spacing:20.012670px;}
.ws19_c01131{word-spacing:20.084400px;}
.ws23_c01131{word-spacing:20.384298px;}
.ws14_c01131{word-spacing:20.658240px;}
.wsa_c01131{word-spacing:21.160350px;}
.ws1c_c01131{word-spacing:21.232080px;}
.ws8_c01131{word-spacing:21.447270px;}
.ws24_c01131{word-spacing:21.818970px;}
.ws1a_c01131{word-spacing:22.092840px;}
.wsb_c01131{word-spacing:22.236300px;}
.ws15_c01131{word-spacing:23.025330px;}
.ws4_c01131{word-spacing:23.312250px;}
.ws1f_c01131{word-spacing:23.383980px;}
.ws1e_c01131{word-spacing:24.962040px;}
.ws9_c01131{word-spacing:25.320690px;}
.ws17_c01131{word-spacing:25.607610px;}
.ws1d_c01131{word-spacing:25.966260px;}
.ws13_c01131{word-spacing:26.109720px;}
.ws6_c01131{word-spacing:26.540100px;}
.ws20_c01131{word-spacing:26.755290px;}
.ws0_c01131{word-spacing:26.827020px;}
.ws3_c01131{word-spacing:27.042210px;}
.ws16_c01131{word-spacing:27.113940px;}
.wsc_c01131{word-spacing:28.763730px;}
.ws10_c01131{word-spacing:29.767950px;}
.wsd_c01131{word-spacing:29.911410px;}
.wsf_c01131{word-spacing:30.485250px;}
.ws7_c01131{word-spacing:30.772170px;}
.ws2_c01131{word-spacing:32.450652px;}
.wse_c01131{word-spacing:32.924070px;}
.ws18_c01131{word-spacing:34.932510px;}
._0_c01131{margin-left:-40.670910px;}
._a_c01131{margin-left:-37.084410px;}
._b_c01131{margin-left:-35.147700px;}
._f_c01131{margin-left:-32.995800px;}
._d_c01131{margin-left:-27.086940px;}
._4_c01131{margin-left:-10.070892px;}
._8_c01131{margin-left:-8.993250px;}
._3_c01131{margin-left:-7.574688px;}
._6_c01131{margin-left:-4.734180px;}
._16_c01131{margin-left:-3.658230px;}
._e_c01131{margin-left:-2.582280px;}
._7_c01131{margin-left:-1.578060px;}
._9_c01131{width:1.936710px;}
._12_c01131{width:3.801690px;}
._13_c01131{width:22.810140px;}
._10_c01131{width:27.042210px;}
._14_c01131{width:30.298290px;}
._11_c01131{width:31.561200px;}
._c_c01131{width:32.852340px;}
._15_c01131{width:37.514790px;}
._5_c01131{width:79.333380px;}
._2_c01131{width:95.200056px;}
._1_c01131{width:424.502910px;}
.fc0_c01131{color:rgb(0,0,0);}
.fs3_c01131{font-size:41.844000px;}
.fs2_c01131{font-size:47.820000px;}
.fs4_c01131{font-size:59.778000px;}
.fs0_c01131{font-size:71.730000px;}
.fs1_c01131{font-size:86.076000px;}
.y0_c01131{bottom:0.000000px;}
.y24_c01131{bottom:84.844500px;}
.y23_c01131{bottom:108.199500px;}
.y22_c01131{bottom:134.956500px;}
.y21_c01131{bottom:161.847000px;}
.y20_c01131{bottom:188.737500px;}
.y1f_c01131{bottom:215.629500px;}
.y1e_c01131{bottom:242.520000px;}
.y1d_c01131{bottom:269.410500px;}
.y1c_c01131{bottom:296.301000px;}
.y1b_c01131{bottom:323.193000px;}
.y1a_c01131{bottom:350.083500px;}
.y19_c01131{bottom:376.974000px;}
.y18_c01131{bottom:403.864500px;}
.y17_c01131{bottom:430.756500px;}
.y16_c01131{bottom:457.647000px;}
.y15_c01131{bottom:484.537500px;}
.y14_c01131{bottom:511.428000px;}
.y13_c01131{bottom:538.318500px;}
.y12_c01131{bottom:565.210500px;}
.y11_c01131{bottom:592.101000px;}
.y10_c01131{bottom:618.991500px;}
.yf_c01131{bottom:645.882000px;}
.ye_c01131{bottom:672.774000px;}
.yd_c01131{bottom:699.664500px;}
.yc_c01131{bottom:726.555000px;}
.yb_c01131{bottom:753.445500px;}
.ya_c01131{bottom:788.058000px;}
.y9_c01131{bottom:844.347000px;}
.y8_c01131{bottom:871.237500px;}
.y7_c01131{bottom:898.128000px;}
.y6_c01131{bottom:925.020000px;}
.y5_c01131{bottom:951.910500px;}
.y4_c01131{bottom:978.801000px;}
.y3_c01131{bottom:1013.413500px;}
.y2_c01131{bottom:1072.765500px;}
.y1_c01131{bottom:1140.615000px;}
.h6_c01131{height:28.286544px;}
.h7_c01131{height:44.833500px;}
.h2_c01131{height:53.797500px;}
.h5_c01131{height:58.360320px;}
.h4_c01131{height:59.773500px;}
.h3_c01131{height:64.557000px;}
.h1_c01131{height:1263.750000px;}
.h0_c01131{height:1264.110000px;}
.w0_c01131{width:893.869500px;}
.w1_c01131{width:894.000000px;}
.x0_c01131{left:0.000000px;}
.x1_c01131{left:127.558500px;}
.x5_c01131{left:141.798000px;}
.x3_c01131{left:159.838500px;}
.x4_c01131{left:374.929500px;}
.x2_c01131{left:501.001500px;}
@media print{
.v3_c01131{vertical-align:-19.280000pt;}
.v0_c01131{vertical-align:0.000000pt;}
.v1_c01131{vertical-align:5.312000pt;}
.v2_c01131{vertical-align:23.141333pt;}
.ls0_c01131{letter-spacing:0.000000pt;}
.ws1_c01131{word-spacing:-0.063760pt;}
.ws1b_c01131{word-spacing:-0.042507pt;}
.ws22_c01131{word-spacing:-0.037195pt;}
.ws25_c01131{word-spacing:0.000000pt;}
.ws5_c01131{word-spacing:14.090960pt;}
.ws11_c01131{word-spacing:14.218480pt;}
.ws12_c01131{word-spacing:16.322560pt;}
.ws21_c01131{word-spacing:17.789040pt;}
.ws19_c01131{word-spacing:17.852800pt;}
.ws23_c01131{word-spacing:18.119376pt;}
.ws14_c01131{word-spacing:18.362880pt;}
.wsa_c01131{word-spacing:18.809200pt;}
.ws1c_c01131{word-spacing:18.872960pt;}
.ws8_c01131{word-spacing:19.064240pt;}
.ws24_c01131{word-spacing:19.394640pt;}
.ws1a_c01131{word-spacing:19.638080pt;}
.wsb_c01131{word-spacing:19.765600pt;}
.ws15_c01131{word-spacing:20.466960pt;}
.ws4_c01131{word-spacing:20.722000pt;}
.ws1f_c01131{word-spacing:20.785760pt;}
.ws1e_c01131{word-spacing:22.188480pt;}
.ws9_c01131{word-spacing:22.507280pt;}
.ws17_c01131{word-spacing:22.762320pt;}
.ws1d_c01131{word-spacing:23.081120pt;}
.ws13_c01131{word-spacing:23.208640pt;}
.ws6_c01131{word-spacing:23.591200pt;}
.ws20_c01131{word-spacing:23.782480pt;}
.ws0_c01131{word-spacing:23.846240pt;}
.ws3_c01131{word-spacing:24.037520pt;}
.ws16_c01131{word-spacing:24.101280pt;}
.wsc_c01131{word-spacing:25.567760pt;}
.ws10_c01131{word-spacing:26.460400pt;}
.wsd_c01131{word-spacing:26.587920pt;}
.wsf_c01131{word-spacing:27.098000pt;}
.ws7_c01131{word-spacing:27.353040pt;}
.ws2_c01131{word-spacing:28.845024pt;}
.wse_c01131{word-spacing:29.265840pt;}
.ws18_c01131{word-spacing:31.051120pt;}
._0_c01131{margin-left:-36.151920pt;}
._a_c01131{margin-left:-32.963920pt;}
._b_c01131{margin-left:-31.242400pt;}
._f_c01131{margin-left:-29.329600pt;}
._d_c01131{margin-left:-24.077280pt;}
._4_c01131{margin-left:-8.951904pt;}
._8_c01131{margin-left:-7.994000pt;}
._3_c01131{margin-left:-6.733056pt;}
._6_c01131{margin-left:-4.208160pt;}
._16_c01131{margin-left:-3.251760pt;}
._e_c01131{margin-left:-2.295360pt;}
._7_c01131{margin-left:-1.402720pt;}
._9_c01131{width:1.721520pt;}
._12_c01131{width:3.379280pt;}
._13_c01131{width:20.275680pt;}
._10_c01131{width:24.037520pt;}
._14_c01131{width:26.931813pt;}
._11_c01131{width:28.054400pt;}
._c_c01131{width:29.202080pt;}
._15_c01131{width:33.346480pt;}
._5_c01131{width:70.518560pt;}
._2_c01131{width:84.622272pt;}
._1_c01131{width:377.335920pt;}
.fs3_c01131{font-size:37.194667pt;}
.fs2_c01131{font-size:42.506667pt;}
.fs4_c01131{font-size:53.136000pt;}
.fs0_c01131{font-size:63.760000pt;}
.fs1_c01131{font-size:76.512000pt;}
.y0_c01131{bottom:0.000000pt;}
.y24_c01131{bottom:75.417333pt;}
.y23_c01131{bottom:96.177333pt;}
.y22_c01131{bottom:119.961333pt;}
.y21_c01131{bottom:143.864000pt;}
.y20_c01131{bottom:167.766667pt;}
.y1f_c01131{bottom:191.670667pt;}
.y1e_c01131{bottom:215.573333pt;}
.y1d_c01131{bottom:239.476000pt;}
.y1c_c01131{bottom:263.378667pt;}
.y1b_c01131{bottom:287.282667pt;}
.y1a_c01131{bottom:311.185333pt;}
.y19_c01131{bottom:335.088000pt;}
.y18_c01131{bottom:358.990667pt;}
.y17_c01131{bottom:382.894667pt;}
.y16_c01131{bottom:406.797333pt;}
.y15_c01131{bottom:430.700000pt;}
.y14_c01131{bottom:454.602667pt;}
.y13_c01131{bottom:478.505333pt;}
.y12_c01131{bottom:502.409333pt;}
.y11_c01131{bottom:526.312000pt;}
.y10_c01131{bottom:550.214667pt;}
.yf_c01131{bottom:574.117333pt;}
.ye_c01131{bottom:598.021333pt;}
.yd_c01131{bottom:621.924000pt;}
.yc_c01131{bottom:645.826667pt;}
.yb_c01131{bottom:669.729333pt;}
.ya_c01131{bottom:700.496000pt;}
.y9_c01131{bottom:750.530667pt;}
.y8_c01131{bottom:774.433333pt;}
.y7_c01131{bottom:798.336000pt;}
.y6_c01131{bottom:822.240000pt;}
.y5_c01131{bottom:846.142667pt;}
.y4_c01131{bottom:870.045333pt;}
.y3_c01131{bottom:900.812000pt;}
.y2_c01131{bottom:953.569333pt;}
.y1_c01131{bottom:1013.880000pt;}
.h6_c01131{height:25.143595pt;}
.h7_c01131{height:39.852000pt;}
.h2_c01131{height:47.820000pt;}
.h5_c01131{height:51.875840pt;}
.h4_c01131{height:53.132000pt;}
.h3_c01131{height:57.384000pt;}
.h1_c01131{height:1123.333333pt;}
.h0_c01131{height:1123.653333pt;}
.w0_c01131{width:794.550667pt;}
.w1_c01131{width:794.666667pt;}
.x0_c01131{left:0.000000pt;}
.x1_c01131{left:113.385333pt;}
.x5_c01131{left:126.042667pt;}
.x3_c01131{left:142.078667pt;}
.x4_c01131{left:333.270667pt;}
.x2_c01131{left:445.334667pt;}
}





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

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





.ff0_c01132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01132;src:url('chunks/assets/font_64037626b0e557d8f699e052.woff2')format("woff");}.ff1_c01132{font-family:ff1_c01132;line-height:1.001000;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_c01132;src:url('chunks/assets/font_587773f2a8227a8117dccc14.woff2')format("woff");}.ff2_c01132{font-family:ff2_c01132;line-height:1.001000;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_c01132;src:url('chunks/assets/font_c23323f5e71ef70c2191e3ae.woff2')format("woff");}.ff3_c01132{font-family:ff3_c01132;line-height:1.001000;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_c01132;src:url('chunks/assets/font_e70609c61cf46a381f4ede2a.woff2')format("woff");}.ff4_c01132{font-family:ff4_c01132;line-height:0.697000;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_c01132;src:url('chunks/assets/font_44b4093f279bb6f4a6cb2c87.woff2')format("woff");}.ff5_c01132{font-family:ff5_c01132;line-height:0.696000;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_c01132;src:url('chunks/assets/font_c5e058988615e7b9a81558f5.woff2')format("woff");}.ff6_c01132{font-family:ff6_c01132;line-height:1.000000;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_c01132;src:url('chunks/assets/font_ec0474443c8c574ee50b73db.woff2')format("woff");}.ff7_c01132{font-family:ff7_c01132;line-height:1.000000;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_c01132{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_c01132{vertical-align:-21.690000px;}
.v0_c01132{vertical-align:0.000000px;}
.v1_c01132{vertical-align:26.028000px;}
.ls0_c01132{letter-spacing:0.000000px;}
.sc__c01132{text-shadow:none;}
.sc0_c01132{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__c01132{-webkit-text-stroke:0px transparent;}
.sc0_c01132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01132{word-spacing:-0.071730px;}
.ws19_c01132{word-spacing:-0.047820px;}
.ws1d_c01132{word-spacing:-0.041844px;}
.ws21_c01132{word-spacing:0.000000px;}
.ws1e_c01132{word-spacing:16.379172px;}
.ws12_c01132{word-spacing:18.291150px;}
.ws20_c01132{word-spacing:19.846296px;}
.ws3_c01132{word-spacing:20.012670px;}
.wsc_c01132{word-spacing:20.443050px;}
.ws14_c01132{word-spacing:20.801700px;}
.wsb_c01132{word-spacing:21.088620px;}
.ws1a_c01132{word-spacing:21.232080px;}
.ws13_c01132{word-spacing:21.303810px;}
.ws1f_c01132{word-spacing:21.340746px;}
.ws16_c01132{word-spacing:21.519000px;}
.ws17_c01132{word-spacing:22.881870px;}
.ws6_c01132{word-spacing:23.312250px;}
.wsd_c01132{word-spacing:23.383980px;}
.wsa_c01132{word-spacing:23.599170px;}
.ws1c_c01132{word-spacing:23.742630px;}
.ws4_c01132{word-spacing:23.957820px;}
.ws5_c01132{word-spacing:24.388200px;}
.ws11_c01132{word-spacing:24.675120px;}
.ws18_c01132{word-spacing:25.033770px;}
.ws1b_c01132{word-spacing:25.751070px;}
.ws8_c01132{word-spacing:26.181450px;}
.ws2_c01132{word-spacing:26.468370px;}
.ws0_c01132{word-spacing:26.827020px;}
.ws15_c01132{word-spacing:27.329130px;}
.ws9_c01132{word-spacing:27.687780px;}
.wsf_c01132{word-spacing:27.759510px;}
.wse_c01132{word-spacing:27.831240px;}
.ws7_c01132{word-spacing:27.974700px;}
.ws10_c01132{word-spacing:31.848120px;}
._0_c01132{margin-left:-40.670910px;}
._b_c01132{margin-left:-37.084410px;}
._5_c01132{margin-left:-35.291160px;}
._3_c01132{margin-left:-33.210990px;}
._13_c01132{margin-left:-30.606336px;}
._f_c01132{margin-left:-28.620270px;}
._8_c01132{margin-left:-27.329130px;}
._12_c01132{margin-left:-23.149896px;}
._7_c01132{margin-left:-7.675110px;}
._c_c01132{margin-left:-5.881860px;}
._a_c01132{margin-left:-3.801690px;}
._6_c01132{margin-left:-2.080170px;}
._4_c01132{width:1.936710px;}
._9_c01132{width:3.729960px;}
._11_c01132{width:5.527530px;}
._10_c01132{width:22.021110px;}
._e_c01132{width:23.240520px;}
._2_c01132{width:24.459930px;}
._d_c01132{width:29.983140px;}
._1_c01132{width:424.502910px;}
.fc0_c01132{color:rgb(0,0,0);}
.fs2_c01132{font-size:41.844000px;}
.fs1_c01132{font-size:47.820000px;}
.fs3_c01132{font-size:59.778000px;}
.fs0_c01132{font-size:71.730000px;}
.y0_c01132{bottom:0.000000px;}
.y26_c01132{bottom:71.973000px;}
.y25_c01132{bottom:95.328000px;}
.y24_c01132{bottom:120.469500px;}
.y23_c01132{bottom:147.360000px;}
.y22_c01132{bottom:174.252000px;}
.y21_c01132{bottom:201.142500px;}
.y20_c01132{bottom:241.000500px;}
.y1f_c01132{bottom:280.860000px;}
.y1e_c01132{bottom:307.750500px;}
.y1d_c01132{bottom:334.641000px;}
.y1c_c01132{bottom:361.531500px;}
.y1b_c01132{bottom:401.391000px;}
.y1a_c01132{bottom:428.281500px;}
.y19_c01132{bottom:455.172000px;}
.y18_c01132{bottom:482.062500px;}
.y17_c01132{bottom:508.954500px;}
.y16_c01132{bottom:535.845000px;}
.y15_c01132{bottom:562.735500px;}
.y14_c01132{bottom:589.626000px;}
.y13_c01132{bottom:616.518000px;}
.y12_c01132{bottom:643.408500px;}
.y11_c01132{bottom:670.299000px;}
.y10_c01132{bottom:697.189500px;}
.yf_c01132{bottom:724.081500px;}
.ye_c01132{bottom:750.972000px;}
.yd_c01132{bottom:777.862500px;}
.yc_c01132{bottom:804.753000px;}
.yb_c01132{bottom:831.645000px;}
.ya_c01132{bottom:858.535500px;}
.y9_c01132{bottom:885.426000px;}
.y8_c01132{bottom:912.316500px;}
.y7_c01132{bottom:939.207000px;}
.y6_c01132{bottom:966.099000px;}
.y5_c01132{bottom:992.989500px;}
.y4_c01132{bottom:1019.880000px;}
.y3_c01132{bottom:1046.770500px;}
.y2_c01132{bottom:1073.662500px;}
.y1_c01132{bottom:1140.615000px;}
.h4_c01132{height:28.286544px;}
.h5_c01132{height:44.833500px;}
.h2_c01132{height:53.797500px;}
.h3_c01132{height:58.354320px;}
.h1_c01132{height:1263.750000px;}
.h0_c01132{height:1264.110000px;}
.w0_c01132{width:893.869500px;}
.w1_c01132{width:894.000000px;}
.x0_c01132{left:0.000000px;}
.x1_c01132{left:127.558500px;}
.x5_c01132{left:141.798000px;}
.x2_c01132{left:159.838500px;}
.x4_c01132{left:171.456000px;}
.x3_c01132{left:197.794500px;}
@media print{
.v2_c01132{vertical-align:-19.280000pt;}
.v0_c01132{vertical-align:0.000000pt;}
.v1_c01132{vertical-align:23.136000pt;}
.ls0_c01132{letter-spacing:0.000000pt;}
.ws1_c01132{word-spacing:-0.063760pt;}
.ws19_c01132{word-spacing:-0.042507pt;}
.ws1d_c01132{word-spacing:-0.037195pt;}
.ws21_c01132{word-spacing:0.000000pt;}
.ws1e_c01132{word-spacing:14.559264pt;}
.ws12_c01132{word-spacing:16.258800pt;}
.ws20_c01132{word-spacing:17.641152pt;}
.ws3_c01132{word-spacing:17.789040pt;}
.wsc_c01132{word-spacing:18.171600pt;}
.ws14_c01132{word-spacing:18.490400pt;}
.wsb_c01132{word-spacing:18.745440pt;}
.ws1a_c01132{word-spacing:18.872960pt;}
.ws13_c01132{word-spacing:18.936720pt;}
.ws1f_c01132{word-spacing:18.969552pt;}
.ws16_c01132{word-spacing:19.128000pt;}
.ws17_c01132{word-spacing:20.339440pt;}
.ws6_c01132{word-spacing:20.722000pt;}
.wsd_c01132{word-spacing:20.785760pt;}
.wsa_c01132{word-spacing:20.977040pt;}
.ws1c_c01132{word-spacing:21.104560pt;}
.ws4_c01132{word-spacing:21.295840pt;}
.ws5_c01132{word-spacing:21.678400pt;}
.ws11_c01132{word-spacing:21.933440pt;}
.ws18_c01132{word-spacing:22.252240pt;}
.ws1b_c01132{word-spacing:22.889840pt;}
.ws8_c01132{word-spacing:23.272400pt;}
.ws2_c01132{word-spacing:23.527440pt;}
.ws0_c01132{word-spacing:23.846240pt;}
.ws15_c01132{word-spacing:24.292560pt;}
.ws9_c01132{word-spacing:24.611360pt;}
.wsf_c01132{word-spacing:24.675120pt;}
.wse_c01132{word-spacing:24.738880pt;}
.ws7_c01132{word-spacing:24.866400pt;}
.ws10_c01132{word-spacing:28.309440pt;}
._0_c01132{margin-left:-36.151920pt;}
._b_c01132{margin-left:-32.963920pt;}
._5_c01132{margin-left:-31.369920pt;}
._3_c01132{margin-left:-29.520880pt;}
._13_c01132{margin-left:-27.205632pt;}
._f_c01132{margin-left:-25.440240pt;}
._8_c01132{margin-left:-24.292560pt;}
._12_c01132{margin-left:-20.577685pt;}
._7_c01132{margin-left:-6.822320pt;}
._c_c01132{margin-left:-5.228320pt;}
._a_c01132{margin-left:-3.379280pt;}
._6_c01132{margin-left:-1.849040pt;}
._4_c01132{width:1.721520pt;}
._9_c01132{width:3.315520pt;}
._11_c01132{width:4.913360pt;}
._10_c01132{width:19.574320pt;}
._e_c01132{width:20.658240pt;}
._2_c01132{width:21.742160pt;}
._d_c01132{width:26.651680pt;}
._1_c01132{width:377.335920pt;}
.fs2_c01132{font-size:37.194667pt;}
.fs1_c01132{font-size:42.506667pt;}
.fs3_c01132{font-size:53.136000pt;}
.fs0_c01132{font-size:63.760000pt;}
.y0_c01132{bottom:0.000000pt;}
.y26_c01132{bottom:63.976000pt;}
.y25_c01132{bottom:84.736000pt;}
.y24_c01132{bottom:107.084000pt;}
.y23_c01132{bottom:130.986667pt;}
.y22_c01132{bottom:154.890667pt;}
.y21_c01132{bottom:178.793333pt;}
.y20_c01132{bottom:214.222667pt;}
.y1f_c01132{bottom:249.653333pt;}
.y1e_c01132{bottom:273.556000pt;}
.y1d_c01132{bottom:297.458667pt;}
.y1c_c01132{bottom:321.361333pt;}
.y1b_c01132{bottom:356.792000pt;}
.y1a_c01132{bottom:380.694667pt;}
.y19_c01132{bottom:404.597333pt;}
.y18_c01132{bottom:428.500000pt;}
.y17_c01132{bottom:452.404000pt;}
.y16_c01132{bottom:476.306667pt;}
.y15_c01132{bottom:500.209333pt;}
.y14_c01132{bottom:524.112000pt;}
.y13_c01132{bottom:548.016000pt;}
.y12_c01132{bottom:571.918667pt;}
.y11_c01132{bottom:595.821333pt;}
.y10_c01132{bottom:619.724000pt;}
.yf_c01132{bottom:643.628000pt;}
.ye_c01132{bottom:667.530667pt;}
.yd_c01132{bottom:691.433333pt;}
.yc_c01132{bottom:715.336000pt;}
.yb_c01132{bottom:739.240000pt;}
.ya_c01132{bottom:763.142667pt;}
.y9_c01132{bottom:787.045333pt;}
.y8_c01132{bottom:810.948000pt;}
.y7_c01132{bottom:834.850667pt;}
.y6_c01132{bottom:858.754667pt;}
.y5_c01132{bottom:882.657333pt;}
.y4_c01132{bottom:906.560000pt;}
.y3_c01132{bottom:930.462667pt;}
.y2_c01132{bottom:954.366667pt;}
.y1_c01132{bottom:1013.880000pt;}
.h4_c01132{height:25.143595pt;}
.h5_c01132{height:39.852000pt;}
.h2_c01132{height:47.820000pt;}
.h3_c01132{height:51.870507pt;}
.h1_c01132{height:1123.333333pt;}
.h0_c01132{height:1123.653333pt;}
.w0_c01132{width:794.550667pt;}
.w1_c01132{width:794.666667pt;}
.x0_c01132{left:0.000000pt;}
.x1_c01132{left:113.385333pt;}
.x5_c01132{left:126.042667pt;}
.x2_c01132{left:142.078667pt;}
.x4_c01132{left:152.405333pt;}
.x3_c01132{left:175.817333pt;}
}





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

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





.ff0_c01133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01133;src:url('chunks/assets/font_15f4163f3d23891a7da7dad9.woff2')format("woff");}.ff1_c01133{font-family:ff1_c01133;line-height:1.001000;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_c01133;src:url('chunks/assets/font_afc379b7d16ae8045243f3ef.woff2')format("woff");}.ff2_c01133{font-family:ff2_c01133;line-height:1.001000;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_c01133;src:url('chunks/assets/font_33e93776f5c04db1b2620b72.woff2')format("woff");}.ff3_c01133{font-family:ff3_c01133;line-height:1.001000;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_c01133;src:url('chunks/assets/font_c90663e8abecb9216f08ee42.woff2')format("woff");}.ff4_c01133{font-family:ff4_c01133;line-height:0.697000;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_c01133;src:url('chunks/assets/font_eb86fecf1ee9004a9b0af7ed.woff2')format("woff");}.ff5_c01133{font-family:ff5_c01133;line-height:1.000000;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_c01133;src:url('chunks/assets/font_1019b675312f695b4a720922.woff2')format("woff");}.ff6_c01133{font-family:ff6_c01133;line-height:0.696000;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_c01133;src:url('chunks/assets/font_a5ae92e5c9a34ca1d170947d.woff2')format("woff");}.ff7_c01133{font-family:ff7_c01133;line-height:1.000000;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_c01133;src:url('chunks/assets/font_5f97e88f632f16f52b0d3f1f.woff2')format("woff");}.ff8_c01133{font-family:ff8_c01133;line-height:1.000000;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_c01133{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);}
.v4_c01133{vertical-align:-21.690000px;}
.v0_c01133{vertical-align:0.000000px;}
.v3_c01133{vertical-align:5.976000px;}
.v2_c01133{vertical-align:7.176000px;}
.v1_c01133{vertical-align:26.028000px;}
.ls1_c01133{letter-spacing:0.000000px;}
.ls0_c01133{letter-spacing:22.930764px;}
.sc__c01133{text-shadow:none;}
.sc0_c01133{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__c01133{-webkit-text-stroke:0px transparent;}
.sc0_c01133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01133{word-spacing:-0.071730px;}
.ws7_c01133{word-spacing:-0.047820px;}
.ws1a_c01133{word-spacing:-0.041844px;}
.ws1f_c01133{word-spacing:0.000000px;}
.wsd_c01133{word-spacing:17.143470px;}
.ws1d_c01133{word-spacing:19.846296px;}
.ws1b_c01133{word-spacing:19.906074px;}
.ws3_c01133{word-spacing:20.227860px;}
.ws1c_c01133{word-spacing:21.280968px;}
.ws1e_c01133{word-spacing:21.340746px;}
.wsc_c01133{word-spacing:21.734190px;}
.ws2_c01133{word-spacing:22.092840px;}
.ws12_c01133{word-spacing:22.379760px;}
.wsf_c01133{word-spacing:22.881870px;}
.wse_c01133{word-spacing:23.312250px;}
.ws19_c01133{word-spacing:23.383980px;}
.ws9_c01133{word-spacing:23.742630px;}
.ws6_c01133{word-spacing:25.033770px;}
.ws11_c01133{word-spacing:25.822800px;}
.ws4_c01133{word-spacing:26.396640px;}
.ws0_c01133{word-spacing:26.827020px;}
.ws8_c01133{word-spacing:26.970480px;}
.ws15_c01133{word-spacing:27.042210px;}
.ws5_c01133{word-spacing:27.185670px;}
.ws17_c01133{word-spacing:28.548540px;}
.ws18_c01133{word-spacing:29.552760px;}
.wsb_c01133{word-spacing:31.130820px;}
.ws14_c01133{word-spacing:32.450652px;}
.ws16_c01133{word-spacing:32.924070px;}
.ws10_c01133{word-spacing:35.004240px;}
.wsa_c01133{word-spacing:79.261650px;}
.ws13_c01133{word-spacing:95.113980px;}
._0_c01133{margin-left:-40.670910px;}
._a_c01133{margin-left:-37.658250px;}
._6_c01133{margin-left:-35.865000px;}
._8_c01133{margin-left:-34.071750px;}
._11_c01133{margin-left:-30.681828px;}
._4_c01133{margin-left:-28.692000px;}
._f_c01133{margin-left:-27.113940px;}
._e_c01133{margin-left:-8.392410px;}
._3_c01133{margin-left:-7.173000px;}
._c_c01133{margin-left:-5.881860px;}
._2_c01133{margin-left:-3.514770px;}
._7_c01133{margin-left:-1.936710px;}
._9_c01133{width:1.147680px;}
._5_c01133{width:3.156120px;}
._b_c01133{width:4.706010px;}
._d_c01133{width:24.818580px;}
._10_c01133{width:79.333380px;}
._1_c01133{width:424.502910px;}
.fc0_c01133{color:rgb(0,0,0);}
.fs3_c01133{font-size:41.844000px;}
.fs1_c01133{font-size:47.820000px;}
.fs4_c01133{font-size:59.778000px;}
.fs0_c01133{font-size:71.730000px;}
.fs2_c01133{font-size:86.076000px;}
.y0_c01133{bottom:0.000000px;}
.y1f_c01133{bottom:174.543000px;}
.y1e_c01133{bottom:192.475500px;}
.y1d_c01133{bottom:210.408000px;}
.y1c_c01133{bottom:237.165000px;}
.y1b_c01133{bottom:264.055500px;}
.y1a_c01133{bottom:290.946000px;}
.y19_c01133{bottom:317.838000px;}
.y18_c01133{bottom:344.728500px;}
.y17_c01133{bottom:371.619000px;}
.y16_c01133{bottom:406.231500px;}
.y15_c01133{bottom:465.583500px;}
.y14_c01133{bottom:533.080500px;}
.y13_c01133{bottom:559.971000px;}
.y12_c01133{bottom:586.861500px;}
.y11_c01133{bottom:613.753500px;}
.y10_c01133{bottom:640.644000px;}
.yf_c01133{bottom:667.534500px;}
.ye_c01133{bottom:694.425000px;}
.yd_c01133{bottom:721.317000px;}
.yc_c01133{bottom:748.207500px;}
.yb_c01133{bottom:775.098000px;}
.ya_c01133{bottom:809.710500px;}
.y9_c01133{bottom:865.999500px;}
.y8_c01133{bottom:892.890000px;}
.y7_c01133{bottom:919.780500px;}
.y6_c01133{bottom:966.099000px;}
.y5_c01133{bottom:992.989500px;}
.y4_c01133{bottom:1019.880000px;}
.y3_c01133{bottom:1046.770500px;}
.y2_c01133{bottom:1073.662500px;}
.y1_c01133{bottom:1140.615000px;}
.h7_c01133{height:28.286544px;}
.h2_c01133{height:53.797500px;}
.h3_c01133{height:58.354320px;}
.h6_c01133{height:59.773500px;}
.h5_c01133{height:64.557000px;}
.h4_c01133{height:71.733000px;}
.h1_c01133{height:1263.750000px;}
.h0_c01133{height:1264.110000px;}
.w0_c01133{width:893.869500px;}
.w1_c01133{width:894.000000px;}
.x0_c01133{left:0.000000px;}
.x1_c01133{left:127.558500px;}
.x7_c01133{left:141.798000px;}
.x3_c01133{left:159.838500px;}
.x2_c01133{left:171.456000px;}
.x4_c01133{left:248.400000px;}
.x5_c01133{left:312.793500px;}
.x6_c01133{left:497.374500px;}
@media print{
.v4_c01133{vertical-align:-19.280000pt;}
.v0_c01133{vertical-align:0.000000pt;}
.v3_c01133{vertical-align:5.312000pt;}
.v2_c01133{vertical-align:6.378667pt;}
.v1_c01133{vertical-align:23.136000pt;}
.ls1_c01133{letter-spacing:0.000000pt;}
.ls0_c01133{letter-spacing:20.382901pt;}
.ws1_c01133{word-spacing:-0.063760pt;}
.ws7_c01133{word-spacing:-0.042507pt;}
.ws1a_c01133{word-spacing:-0.037195pt;}
.ws1f_c01133{word-spacing:0.000000pt;}
.wsd_c01133{word-spacing:15.238640pt;}
.ws1d_c01133{word-spacing:17.641152pt;}
.ws1b_c01133{word-spacing:17.694288pt;}
.ws3_c01133{word-spacing:17.980320pt;}
.ws1c_c01133{word-spacing:18.916416pt;}
.ws1e_c01133{word-spacing:18.969552pt;}
.wsc_c01133{word-spacing:19.319280pt;}
.ws2_c01133{word-spacing:19.638080pt;}
.ws12_c01133{word-spacing:19.893120pt;}
.wsf_c01133{word-spacing:20.339440pt;}
.wse_c01133{word-spacing:20.722000pt;}
.ws19_c01133{word-spacing:20.785760pt;}
.ws9_c01133{word-spacing:21.104560pt;}
.ws6_c01133{word-spacing:22.252240pt;}
.ws11_c01133{word-spacing:22.953600pt;}
.ws4_c01133{word-spacing:23.463680pt;}
.ws0_c01133{word-spacing:23.846240pt;}
.ws8_c01133{word-spacing:23.973760pt;}
.ws15_c01133{word-spacing:24.037520pt;}
.ws5_c01133{word-spacing:24.165040pt;}
.ws17_c01133{word-spacing:25.376480pt;}
.ws18_c01133{word-spacing:26.269120pt;}
.wsb_c01133{word-spacing:27.671840pt;}
.ws14_c01133{word-spacing:28.845024pt;}
.ws16_c01133{word-spacing:29.265840pt;}
.ws10_c01133{word-spacing:31.114880pt;}
.wsa_c01133{word-spacing:70.454800pt;}
.ws13_c01133{word-spacing:84.545760pt;}
._0_c01133{margin-left:-36.151920pt;}
._a_c01133{margin-left:-33.474000pt;}
._6_c01133{margin-left:-31.880000pt;}
._8_c01133{margin-left:-30.286000pt;}
._11_c01133{margin-left:-27.272736pt;}
._4_c01133{margin-left:-25.504000pt;}
._f_c01133{margin-left:-24.101280pt;}
._e_c01133{margin-left:-7.459920pt;}
._3_c01133{margin-left:-6.376000pt;}
._c_c01133{margin-left:-5.228320pt;}
._2_c01133{margin-left:-3.124240pt;}
._7_c01133{margin-left:-1.721520pt;}
._9_c01133{width:1.020160pt;}
._5_c01133{width:2.805440pt;}
._b_c01133{width:4.183120pt;}
._d_c01133{width:22.060960pt;}
._10_c01133{width:70.518560pt;}
._1_c01133{width:377.335920pt;}
.fs3_c01133{font-size:37.194667pt;}
.fs1_c01133{font-size:42.506667pt;}
.fs4_c01133{font-size:53.136000pt;}
.fs0_c01133{font-size:63.760000pt;}
.fs2_c01133{font-size:76.512000pt;}
.y0_c01133{bottom:0.000000pt;}
.y1f_c01133{bottom:155.149333pt;}
.y1e_c01133{bottom:171.089333pt;}
.y1d_c01133{bottom:187.029333pt;}
.y1c_c01133{bottom:210.813333pt;}
.y1b_c01133{bottom:234.716000pt;}
.y1a_c01133{bottom:258.618667pt;}
.y19_c01133{bottom:282.522667pt;}
.y18_c01133{bottom:306.425333pt;}
.y17_c01133{bottom:330.328000pt;}
.y16_c01133{bottom:361.094667pt;}
.y15_c01133{bottom:413.852000pt;}
.y14_c01133{bottom:473.849333pt;}
.y13_c01133{bottom:497.752000pt;}
.y12_c01133{bottom:521.654667pt;}
.y11_c01133{bottom:545.558667pt;}
.y10_c01133{bottom:569.461333pt;}
.yf_c01133{bottom:593.364000pt;}
.ye_c01133{bottom:617.266667pt;}
.yd_c01133{bottom:641.170667pt;}
.yc_c01133{bottom:665.073333pt;}
.yb_c01133{bottom:688.976000pt;}
.ya_c01133{bottom:719.742667pt;}
.y9_c01133{bottom:769.777333pt;}
.y8_c01133{bottom:793.680000pt;}
.y7_c01133{bottom:817.582667pt;}
.y6_c01133{bottom:858.754667pt;}
.y5_c01133{bottom:882.657333pt;}
.y4_c01133{bottom:906.560000pt;}
.y3_c01133{bottom:930.462667pt;}
.y2_c01133{bottom:954.366667pt;}
.y1_c01133{bottom:1013.880000pt;}
.h7_c01133{height:25.143595pt;}
.h2_c01133{height:47.820000pt;}
.h3_c01133{height:51.870507pt;}
.h6_c01133{height:53.132000pt;}
.h5_c01133{height:57.384000pt;}
.h4_c01133{height:63.762667pt;}
.h1_c01133{height:1123.333333pt;}
.h0_c01133{height:1123.653333pt;}
.w0_c01133{width:794.550667pt;}
.w1_c01133{width:794.666667pt;}
.x0_c01133{left:0.000000pt;}
.x1_c01133{left:113.385333pt;}
.x7_c01133{left:126.042667pt;}
.x3_c01133{left:142.078667pt;}
.x2_c01133{left:152.405333pt;}
.x4_c01133{left:220.800000pt;}
.x5_c01133{left:278.038667pt;}
.x6_c01133{left:442.110667pt;}
}





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

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





.ff0_c01134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01134;src:url('chunks/assets/font_b0ec883f7c0387da103da981.woff2')format("woff");}.ff1_c01134{font-family:ff1_c01134;line-height:1.001000;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_c01134;src:url('chunks/assets/font_2418c3b71f4133a937fe22d5.woff2')format("woff");}.ff2_c01134{font-family:ff2_c01134;line-height:1.001000;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_c01134;src:url('chunks/assets/font_6220bc789a10b6142f12da41.woff2')format("woff");}.ff3_c01134{font-family:ff3_c01134;line-height:1.000000;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_c01134;src:url('chunks/assets/font_f4b44ca5c95b0673ebdc53c9.woff2')format("woff");}.ff4_c01134{font-family:ff4_c01134;line-height:1.001000;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_c01134;src:url('chunks/assets/font_cb05c2d6ebd90a84cfd71637.woff2')format("woff");}.ff5_c01134{font-family:ff5_c01134;line-height:0.697000;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_c01134;src:url('chunks/assets/font_4ceea65122858fe0440c5f40.woff2')format("woff");}.ff6_c01134{font-family:ff6_c01134;line-height:0.696000;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_c01134;src:url('chunks/assets/font_ca36625ba36e0bd875777511.woff2')format("woff");}.ff7_c01134{font-family:ff7_c01134;line-height:1.000000;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_c01134;src:url('chunks/assets/font_ead73077d6ad2a1ff34ce344.woff2')format("woff");}.ff8_c01134{font-family:ff8_c01134;line-height:1.000000;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_c01134{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_c01134{vertical-align:-21.690000px;}
.v0_c01134{vertical-align:0.000000px;}
.v3_c01134{vertical-align:15.108000px;}
.v4_c01134{vertical-align:21.690000px;}
.v1_c01134{vertical-align:26.028000px;}
.ls2_c01134{letter-spacing:0.000000px;}
.ls0_c01134{letter-spacing:5.371182px;}
.ls1_c01134{letter-spacing:22.930764px;}
.sc__c01134{text-shadow:none;}
.sc0_c01134{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__c01134{-webkit-text-stroke:0px transparent;}
.sc0_c01134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01134{word-spacing:-0.071730px;}
.ws1b_c01134{word-spacing:-0.059778px;}
.ws5_c01134{word-spacing:-0.047820px;}
.ws19_c01134{word-spacing:-0.041844px;}
.ws20_c01134{word-spacing:0.000000px;}
.ws13_c01134{word-spacing:15.565410px;}
.ws17_c01134{word-spacing:18.936720px;}
.ws15_c01134{word-spacing:19.510560px;}
.ws1a_c01134{word-spacing:19.846296px;}
.ws16_c01134{word-spacing:21.016890px;}
.ws1e_c01134{word-spacing:22.237416px;}
.ws10_c01134{word-spacing:22.308030px;}
.ws6_c01134{word-spacing:22.451490px;}
.ws8_c01134{word-spacing:23.312250px;}
.ws1f_c01134{word-spacing:23.492754px;}
.ws3_c01134{word-spacing:25.248960px;}
.wsa_c01134{word-spacing:25.392420px;}
.wsd_c01134{word-spacing:26.468370px;}
.ws0_c01134{word-spacing:26.827020px;}
.ws2_c01134{word-spacing:27.042210px;}
.ws9_c01134{word-spacing:27.185670px;}
.ws14_c01134{word-spacing:27.329130px;}
.wse_c01134{word-spacing:27.400860px;}
.ws11_c01134{word-spacing:28.548540px;}
.ws1c_c01134{word-spacing:30.128112px;}
.ws1d_c01134{word-spacing:30.785670px;}
.ws4_c01134{word-spacing:31.632930px;}
.ws18_c01134{word-spacing:31.848120px;}
.ws7_c01134{word-spacing:32.421960px;}
.ws12_c01134{word-spacing:32.995800px;}
.wsc_c01134{word-spacing:33.139260px;}
.wsb_c01134{word-spacing:33.497910px;}
.wsf_c01134{word-spacing:35.075970px;}
._0_c01134{margin-left:-40.670910px;}
._e_c01134{margin-left:-37.801710px;}
._6_c01134{margin-left:-35.793270px;}
._5_c01134{margin-left:-34.071750px;}
._10_c01134{margin-left:-32.713380px;}
._13_c01134{margin-left:-30.176562px;}
._8_c01134{margin-left:-28.692000px;}
._c_c01134{margin-left:-27.042210px;}
._d_c01134{margin-left:-8.535870px;}
._7_c01134{margin-left:-7.388190px;}
._f_c01134{margin-left:-5.738400px;}
._3_c01134{margin-left:-3.586500px;}
._4_c01134{margin-left:-1.649790px;}
._b_c01134{width:1.936710px;}
._a_c01134{width:3.017160px;}
._9_c01134{width:4.732500px;}
._14_c01134{width:8.270592px;}
._11_c01134{width:24.448980px;}
._12_c01134{width:30.270060px;}
._2_c01134{width:79.333380px;}
._1_c01134{width:424.502910px;}
.fc0_c01134{color:rgb(0,0,0);}
.fs2_c01134{font-size:41.844000px;}
.fs1_c01134{font-size:47.820000px;}
.fs3_c01134{font-size:59.778000px;}
.fs0_c01134{font-size:71.730000px;}
.y0_c01134{bottom:0.000000px;}
.y27_c01134{bottom:71.973000px;}
.y26_c01134{bottom:95.328000px;}
.y25_c01134{bottom:107.838000px;}
.y24_c01134{bottom:125.770500px;}
.y23_c01134{bottom:131.194500px;}
.y22_c01134{bottom:145.306500px;}
.y21_c01134{bottom:150.729000px;}
.y20_c01134{bottom:174.967500px;}
.y1f_c01134{bottom:201.858000px;}
.y1e_c01134{bottom:228.750000px;}
.y1d_c01134{bottom:255.640500px;}
.y1c_c01134{bottom:299.427000px;}
.y1b_c01134{bottom:326.317500px;}
.y1a_c01134{bottom:353.208000px;}
.y19_c01134{bottom:380.098500px;}
.y18_c01134{bottom:406.990500px;}
.y17_c01134{bottom:433.881000px;}
.y16_c01134{bottom:460.771500px;}
.y15_c01134{bottom:487.662000px;}
.y14_c01134{bottom:531.448500px;}
.y13_c01134{bottom:558.339000px;}
.y12_c01134{bottom:585.229500px;}
.y11_c01134{bottom:629.016000px;}
.y10_c01134{bottom:655.906500px;}
.yf_c01134{bottom:682.798500px;}
.ye_c01134{bottom:709.689000px;}
.yd_c01134{bottom:736.579500px;}
.yc_c01134{bottom:763.470000px;}
.yb_c01134{bottom:807.028500px;}
.ya_c01134{bottom:833.919000px;}
.y9_c01134{bottom:860.809500px;}
.y8_c01134{bottom:887.700000px;}
.y7_c01134{bottom:914.592000px;}
.y6_c01134{bottom:941.482500px;}
.y5_c01134{bottom:985.269000px;}
.y4_c01134{bottom:1012.159500px;}
.y3_c01134{bottom:1039.050000px;}
.y2_c01134{bottom:1073.662500px;}
.y1_c01134{bottom:1140.615000px;}
.h8_c01134{height:28.286544px;}
.h5_c01134{height:38.251500px;}
.h7_c01134{height:44.833500px;}
.h6_c01134{height:49.976544px;}
.h2_c01134{height:53.797500px;}
.h3_c01134{height:58.354320px;}
.h4_c01134{height:58.360320px;}
.h1_c01134{height:1263.750000px;}
.h0_c01134{height:1264.110000px;}
.w0_c01134{width:893.869500px;}
.w1_c01134{width:894.000000px;}
.x0_c01134{left:0.000000px;}
.x1_c01134{left:127.558500px;}
.x5_c01134{left:141.798000px;}
.x4_c01134{left:159.838500px;}
.x6_c01134{left:164.628000px;}
.x3_c01134{left:171.456000px;}
.x2_c01134{left:197.794500px;}
.x7_c01134{left:244.405500px;}
@media print{
.v2_c01134{vertical-align:-19.280000pt;}
.v0_c01134{vertical-align:0.000000pt;}
.v3_c01134{vertical-align:13.429333pt;}
.v4_c01134{vertical-align:19.280000pt;}
.v1_c01134{vertical-align:23.136000pt;}
.ls2_c01134{letter-spacing:0.000000pt;}
.ls0_c01134{letter-spacing:4.774384pt;}
.ls1_c01134{letter-spacing:20.382901pt;}
.ws1_c01134{word-spacing:-0.063760pt;}
.ws1b_c01134{word-spacing:-0.053136pt;}
.ws5_c01134{word-spacing:-0.042507pt;}
.ws19_c01134{word-spacing:-0.037195pt;}
.ws20_c01134{word-spacing:0.000000pt;}
.ws13_c01134{word-spacing:13.835920pt;}
.ws17_c01134{word-spacing:16.832640pt;}
.ws15_c01134{word-spacing:17.342720pt;}
.ws1a_c01134{word-spacing:17.641152pt;}
.ws16_c01134{word-spacing:18.681680pt;}
.ws1e_c01134{word-spacing:19.766592pt;}
.ws10_c01134{word-spacing:19.829360pt;}
.ws6_c01134{word-spacing:19.956880pt;}
.ws8_c01134{word-spacing:20.722000pt;}
.ws1f_c01134{word-spacing:20.882448pt;}
.ws3_c01134{word-spacing:22.443520pt;}
.wsa_c01134{word-spacing:22.571040pt;}
.wsd_c01134{word-spacing:23.527440pt;}
.ws0_c01134{word-spacing:23.846240pt;}
.ws2_c01134{word-spacing:24.037520pt;}
.ws9_c01134{word-spacing:24.165040pt;}
.ws14_c01134{word-spacing:24.292560pt;}
.wse_c01134{word-spacing:24.356320pt;}
.ws11_c01134{word-spacing:25.376480pt;}
.ws1c_c01134{word-spacing:26.780544pt;}
.ws1d_c01134{word-spacing:27.365040pt;}
.ws4_c01134{word-spacing:28.118160pt;}
.ws18_c01134{word-spacing:28.309440pt;}
.ws7_c01134{word-spacing:28.819520pt;}
.ws12_c01134{word-spacing:29.329600pt;}
.wsc_c01134{word-spacing:29.457120pt;}
.wsb_c01134{word-spacing:29.775920pt;}
.wsf_c01134{word-spacing:31.178640pt;}
._0_c01134{margin-left:-36.151920pt;}
._e_c01134{margin-left:-33.601520pt;}
._6_c01134{margin-left:-31.816240pt;}
._5_c01134{margin-left:-30.286000pt;}
._10_c01134{margin-left:-29.078560pt;}
._13_c01134{margin-left:-26.823611pt;}
._8_c01134{margin-left:-25.504000pt;}
._c_c01134{margin-left:-24.037520pt;}
._d_c01134{margin-left:-7.587440pt;}
._7_c01134{margin-left:-6.567280pt;}
._f_c01134{margin-left:-5.100800pt;}
._3_c01134{margin-left:-3.188000pt;}
._4_c01134{margin-left:-1.466480pt;}
._b_c01134{width:1.721520pt;}
._a_c01134{width:2.681920pt;}
._9_c01134{width:4.206667pt;}
._14_c01134{width:7.351637pt;}
._11_c01134{width:21.732427pt;}
._12_c01134{width:26.906720pt;}
._2_c01134{width:70.518560pt;}
._1_c01134{width:377.335920pt;}
.fs2_c01134{font-size:37.194667pt;}
.fs1_c01134{font-size:42.506667pt;}
.fs3_c01134{font-size:53.136000pt;}
.fs0_c01134{font-size:63.760000pt;}
.y0_c01134{bottom:0.000000pt;}
.y27_c01134{bottom:63.976000pt;}
.y26_c01134{bottom:84.736000pt;}
.y25_c01134{bottom:95.856000pt;}
.y24_c01134{bottom:111.796000pt;}
.y23_c01134{bottom:116.617333pt;}
.y22_c01134{bottom:129.161333pt;}
.y21_c01134{bottom:133.981333pt;}
.y20_c01134{bottom:155.526667pt;}
.y1f_c01134{bottom:179.429333pt;}
.y1e_c01134{bottom:203.333333pt;}
.y1d_c01134{bottom:227.236000pt;}
.y1c_c01134{bottom:266.157333pt;}
.y1b_c01134{bottom:290.060000pt;}
.y1a_c01134{bottom:313.962667pt;}
.y19_c01134{bottom:337.865333pt;}
.y18_c01134{bottom:361.769333pt;}
.y17_c01134{bottom:385.672000pt;}
.y16_c01134{bottom:409.574667pt;}
.y15_c01134{bottom:433.477333pt;}
.y14_c01134{bottom:472.398667pt;}
.y13_c01134{bottom:496.301333pt;}
.y12_c01134{bottom:520.204000pt;}
.y11_c01134{bottom:559.125333pt;}
.y10_c01134{bottom:583.028000pt;}
.yf_c01134{bottom:606.932000pt;}
.ye_c01134{bottom:630.834667pt;}
.yd_c01134{bottom:654.737333pt;}
.yc_c01134{bottom:678.640000pt;}
.yb_c01134{bottom:717.358667pt;}
.ya_c01134{bottom:741.261333pt;}
.y9_c01134{bottom:765.164000pt;}
.y8_c01134{bottom:789.066667pt;}
.y7_c01134{bottom:812.970667pt;}
.y6_c01134{bottom:836.873333pt;}
.y5_c01134{bottom:875.794667pt;}
.y4_c01134{bottom:899.697333pt;}
.y3_c01134{bottom:923.600000pt;}
.y2_c01134{bottom:954.366667pt;}
.y1_c01134{bottom:1013.880000pt;}
.h8_c01134{height:25.143595pt;}
.h5_c01134{height:34.001333pt;}
.h7_c01134{height:39.852000pt;}
.h6_c01134{height:44.423595pt;}
.h2_c01134{height:47.820000pt;}
.h3_c01134{height:51.870507pt;}
.h4_c01134{height:51.875840pt;}
.h1_c01134{height:1123.333333pt;}
.h0_c01134{height:1123.653333pt;}
.w0_c01134{width:794.550667pt;}
.w1_c01134{width:794.666667pt;}
.x0_c01134{left:0.000000pt;}
.x1_c01134{left:113.385333pt;}
.x5_c01134{left:126.042667pt;}
.x4_c01134{left:142.078667pt;}
.x6_c01134{left:146.336000pt;}
.x3_c01134{left:152.405333pt;}
.x2_c01134{left:175.817333pt;}
.x7_c01134{left:217.249333pt;}
}





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

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





.ff0_c01135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01135;src:url('chunks/assets/font_4b1f3c453a97cedf1161d444.woff2')format("woff");}.ff1_c01135{font-family:ff1_c01135;line-height:1.001000;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_c01135;src:url('chunks/assets/font_1e47802859471f13359da97f.woff2')format("woff");}.ff2_c01135{font-family:ff2_c01135;line-height:1.001000;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_c01135;src:url('chunks/assets/font_cb05c2d6ebd90a84cfd71637.woff2')format("woff");}.ff3_c01135{font-family:ff3_c01135;line-height:0.697000;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_c01135;src:url('chunks/assets/font_8e1a77362359d3f1c3d843f2.woff2')format("woff");}.ff4_c01135{font-family:ff4_c01135;line-height:1.001000;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_c01135;src:url('chunks/assets/font_4ceea65122858fe0440c5f40.woff2')format("woff");}.ff5_c01135{font-family:ff5_c01135;line-height:0.696000;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_c01135;src:url('chunks/assets/font_1dc5a91ff0a235ae0ea598e6.woff2')format("woff");}.ff6_c01135{font-family:ff6_c01135;line-height:1.000000;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_c01135;src:url('chunks/assets/font_5ec761c06b350a4875fff990.woff2')format("woff");}.ff7_c01135{font-family:ff7_c01135;line-height:1.000000;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_c01135{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_c01135{vertical-align:-21.696000px;}
.v0_c01135{vertical-align:0.000000px;}
.v3_c01135{vertical-align:15.114000px;}
.v1_c01135{vertical-align:26.034000px;}
.ls0_c01135{letter-spacing:0.000000px;}
.sc__c01135{text-shadow:none;}
.sc0_c01135{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__c01135{-webkit-text-stroke:0px transparent;}
.sc0_c01135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01135{word-spacing:-0.071730px;}
.ws20_c01135{word-spacing:-0.059778px;}
.ws8_c01135{word-spacing:-0.047820px;}
.ws1f_c01135{word-spacing:-0.041844px;}
.ws27_c01135{word-spacing:0.000000px;}
.wsf_c01135{word-spacing:17.358660px;}
.ws1a_c01135{word-spacing:17.789040px;}
.wsa_c01135{word-spacing:18.291150px;}
.ws15_c01135{word-spacing:19.367100px;}
.ws25_c01135{word-spacing:19.726740px;}
.ws23_c01135{word-spacing:19.846296px;}
.ws13_c01135{word-spacing:20.227860px;}
.ws24_c01135{word-spacing:20.264742px;}
.ws1b_c01135{word-spacing:20.371320px;}
.ws26_c01135{word-spacing:21.221190px;}
.ws19_c01135{word-spacing:21.232080px;}
.ws1e_c01135{word-spacing:21.519000px;}
.ws14_c01135{word-spacing:22.451490px;}
.ws17_c01135{word-spacing:22.810140px;}
.ws9_c01135{word-spacing:23.312250px;}
.ws4_c01135{word-spacing:23.455710px;}
.ws21_c01135{word-spacing:23.970978px;}
.ws16_c01135{word-spacing:24.459930px;}
.wsb_c01135{word-spacing:24.890310px;}
.ws1d_c01135{word-spacing:25.033770px;}
.ws1c_c01135{word-spacing:25.105500px;}
.ws22_c01135{word-spacing:25.106760px;}
.wse_c01135{word-spacing:25.392420px;}
.ws3_c01135{word-spacing:25.464150px;}
.ws18_c01135{word-spacing:26.181450px;}
.ws0_c01135{word-spacing:26.827020px;}
.ws10_c01135{word-spacing:26.898750px;}
.wsc_c01135{word-spacing:28.046430px;}
.ws12_c01135{word-spacing:28.118160px;}
.ws6_c01135{word-spacing:28.548540px;}
.ws11_c01135{word-spacing:29.409300px;}
.ws5_c01135{word-spacing:31.848120px;}
.ws2_c01135{word-spacing:32.565420px;}
.wsd_c01135{word-spacing:33.210990px;}
.ws7_c01135{word-spacing:34.932510px;}
._0_c01135{margin-left:-40.670910px;}
._9_c01135{margin-left:-37.084410px;}
._7_c01135{margin-left:-36.008460px;}
._6_c01135{margin-left:-34.789050px;}
._a_c01135{margin-left:-33.067530px;}
._16_c01135{margin-left:-30.860466px;}
._5_c01135{margin-left:-27.329130px;}
._15_c01135{margin-left:-23.253642px;}
._e_c01135{margin-left:-8.607600px;}
._4_c01135{margin-left:-7.531650px;}
._14_c01135{margin-left:-6.419448px;}
._10_c01135{margin-left:-5.236290px;}
._11_c01135{margin-left:-4.160340px;}
._d_c01135{margin-left:-3.156120px;}
._3_c01135{margin-left:-2.151900px;}
._b_c01135{margin-left:-1.004220px;}
._2_c01135{width:1.506330px;}
._8_c01135{width:2.654010px;}
._c_c01135{width:3.873420px;}
._12_c01135{width:5.445810px;}
._13_c01135{width:7.803558px;}
._f_c01135{width:18.864990px;}
._17_c01135{width:28.928988px;}
._1_c01135{width:424.502910px;}
.fc0_c01135{color:rgb(0,0,0);}
.fs2_c01135{font-size:41.844000px;}
.fs1_c01135{font-size:47.820000px;}
.fs3_c01135{font-size:59.778000px;}
.fs0_c01135{font-size:71.730000px;}
.y0_c01135{bottom:0.000000px;}
.y28_c01135{bottom:71.973000px;}
.y27_c01135{bottom:89.905500px;}
.y26_c01135{bottom:113.260500px;}
.y25_c01135{bottom:125.770500px;}
.y24_c01135{bottom:143.703000px;}
.y23_c01135{bottom:149.127000px;}
.y22_c01135{bottom:177.132000px;}
.y21_c01135{bottom:222.034500px;}
.y20_c01135{bottom:248.925000px;}
.y1f_c01135{bottom:275.815500px;}
.y1e_c01135{bottom:320.718000px;}
.y1d_c01135{bottom:347.608500px;}
.y1c_c01135{bottom:374.500500px;}
.y1b_c01135{bottom:401.391000px;}
.y1a_c01135{bottom:428.281500px;}
.y19_c01135{bottom:455.172000px;}
.y18_c01135{bottom:482.062500px;}
.y17_c01135{bottom:508.954500px;}
.y16_c01135{bottom:535.845000px;}
.y15_c01135{bottom:562.735500px;}
.y14_c01135{bottom:589.626000px;}
.y13_c01135{bottom:616.518000px;}
.y12_c01135{bottom:643.408500px;}
.y11_c01135{bottom:670.299000px;}
.y10_c01135{bottom:697.189500px;}
.yf_c01135{bottom:724.081500px;}
.ye_c01135{bottom:750.972000px;}
.yd_c01135{bottom:777.862500px;}
.yc_c01135{bottom:804.753000px;}
.yb_c01135{bottom:831.645000px;}
.ya_c01135{bottom:858.535500px;}
.y9_c01135{bottom:885.426000px;}
.y8_c01135{bottom:912.316500px;}
.y7_c01135{bottom:939.207000px;}
.y6_c01135{bottom:966.099000px;}
.y5_c01135{bottom:992.989500px;}
.y4_c01135{bottom:1019.880000px;}
.y3_c01135{bottom:1046.770500px;}
.y2_c01135{bottom:1073.662500px;}
.y1_c01135{bottom:1140.615000px;}
.h7_c01135{height:28.286544px;}
.h5_c01135{height:38.251500px;}
.h6_c01135{height:44.833500px;}
.h2_c01135{height:53.797500px;}
.h4_c01135{height:58.354320px;}
.h3_c01135{height:58.360320px;}
.h1_c01135{height:1263.750000px;}
.h0_c01135{height:1264.110000px;}
.w0_c01135{width:893.869500px;}
.w1_c01135{width:894.000000px;}
.x0_c01135{left:0.000000px;}
.x3_c01135{left:125.608500px;}
.x1_c01135{left:127.558500px;}
.x6_c01135{left:141.798000px;}
.x2_c01135{left:159.838500px;}
.x5_c01135{left:171.456000px;}
.x7_c01135{left:196.591500px;}
.x4_c01135{left:197.794500px;}
@media print{
.v2_c01135{vertical-align:-19.285333pt;}
.v0_c01135{vertical-align:0.000000pt;}
.v3_c01135{vertical-align:13.434667pt;}
.v1_c01135{vertical-align:23.141333pt;}
.ls0_c01135{letter-spacing:0.000000pt;}
.ws1_c01135{word-spacing:-0.063760pt;}
.ws20_c01135{word-spacing:-0.053136pt;}
.ws8_c01135{word-spacing:-0.042507pt;}
.ws1f_c01135{word-spacing:-0.037195pt;}
.ws27_c01135{word-spacing:0.000000pt;}
.wsf_c01135{word-spacing:15.429920pt;}
.ws1a_c01135{word-spacing:15.812480pt;}
.wsa_c01135{word-spacing:16.258800pt;}
.ws15_c01135{word-spacing:17.215200pt;}
.ws25_c01135{word-spacing:17.534880pt;}
.ws23_c01135{word-spacing:17.641152pt;}
.ws13_c01135{word-spacing:17.980320pt;}
.ws24_c01135{word-spacing:18.013104pt;}
.ws1b_c01135{word-spacing:18.107840pt;}
.ws26_c01135{word-spacing:18.863280pt;}
.ws19_c01135{word-spacing:18.872960pt;}
.ws1e_c01135{word-spacing:19.128000pt;}
.ws14_c01135{word-spacing:19.956880pt;}
.ws17_c01135{word-spacing:20.275680pt;}
.ws9_c01135{word-spacing:20.722000pt;}
.ws4_c01135{word-spacing:20.849520pt;}
.ws21_c01135{word-spacing:21.307536pt;}
.ws16_c01135{word-spacing:21.742160pt;}
.wsb_c01135{word-spacing:22.124720pt;}
.ws1d_c01135{word-spacing:22.252240pt;}
.ws1c_c01135{word-spacing:22.316000pt;}
.ws22_c01135{word-spacing:22.317120pt;}
.wse_c01135{word-spacing:22.571040pt;}
.ws3_c01135{word-spacing:22.634800pt;}
.ws18_c01135{word-spacing:23.272400pt;}
.ws0_c01135{word-spacing:23.846240pt;}
.ws10_c01135{word-spacing:23.910000pt;}
.wsc_c01135{word-spacing:24.930160pt;}
.ws12_c01135{word-spacing:24.993920pt;}
.ws6_c01135{word-spacing:25.376480pt;}
.ws11_c01135{word-spacing:26.141600pt;}
.ws5_c01135{word-spacing:28.309440pt;}
.ws2_c01135{word-spacing:28.947040pt;}
.wsd_c01135{word-spacing:29.520880pt;}
.ws7_c01135{word-spacing:31.051120pt;}
._0_c01135{margin-left:-36.151920pt;}
._9_c01135{margin-left:-32.963920pt;}
._7_c01135{margin-left:-32.007520pt;}
._6_c01135{margin-left:-30.923600pt;}
._a_c01135{margin-left:-29.393360pt;}
._16_c01135{margin-left:-27.431525pt;}
._5_c01135{margin-left:-24.292560pt;}
._15_c01135{margin-left:-20.669904pt;}
._e_c01135{margin-left:-7.651200pt;}
._4_c01135{margin-left:-6.694800pt;}
._14_c01135{margin-left:-5.706176pt;}
._10_c01135{margin-left:-4.654480pt;}
._11_c01135{margin-left:-3.698080pt;}
._d_c01135{margin-left:-2.805440pt;}
._3_c01135{margin-left:-1.912800pt;}
._b_c01135{margin-left:-0.892640pt;}
._2_c01135{width:1.338960pt;}
._8_c01135{width:2.359120pt;}
._c_c01135{width:3.443040pt;}
._12_c01135{width:4.840720pt;}
._13_c01135{width:6.936496pt;}
._f_c01135{width:16.768880pt;}
._17_c01135{width:25.714656pt;}
._1_c01135{width:377.335920pt;}
.fs2_c01135{font-size:37.194667pt;}
.fs1_c01135{font-size:42.506667pt;}
.fs3_c01135{font-size:53.136000pt;}
.fs0_c01135{font-size:63.760000pt;}
.y0_c01135{bottom:0.000000pt;}
.y28_c01135{bottom:63.976000pt;}
.y27_c01135{bottom:79.916000pt;}
.y26_c01135{bottom:100.676000pt;}
.y25_c01135{bottom:111.796000pt;}
.y24_c01135{bottom:127.736000pt;}
.y23_c01135{bottom:132.557333pt;}
.y22_c01135{bottom:157.450667pt;}
.y21_c01135{bottom:197.364000pt;}
.y20_c01135{bottom:221.266667pt;}
.y1f_c01135{bottom:245.169333pt;}
.y1e_c01135{bottom:285.082667pt;}
.y1d_c01135{bottom:308.985333pt;}
.y1c_c01135{bottom:332.889333pt;}
.y1b_c01135{bottom:356.792000pt;}
.y1a_c01135{bottom:380.694667pt;}
.y19_c01135{bottom:404.597333pt;}
.y18_c01135{bottom:428.500000pt;}
.y17_c01135{bottom:452.404000pt;}
.y16_c01135{bottom:476.306667pt;}
.y15_c01135{bottom:500.209333pt;}
.y14_c01135{bottom:524.112000pt;}
.y13_c01135{bottom:548.016000pt;}
.y12_c01135{bottom:571.918667pt;}
.y11_c01135{bottom:595.821333pt;}
.y10_c01135{bottom:619.724000pt;}
.yf_c01135{bottom:643.628000pt;}
.ye_c01135{bottom:667.530667pt;}
.yd_c01135{bottom:691.433333pt;}
.yc_c01135{bottom:715.336000pt;}
.yb_c01135{bottom:739.240000pt;}
.ya_c01135{bottom:763.142667pt;}
.y9_c01135{bottom:787.045333pt;}
.y8_c01135{bottom:810.948000pt;}
.y7_c01135{bottom:834.850667pt;}
.y6_c01135{bottom:858.754667pt;}
.y5_c01135{bottom:882.657333pt;}
.y4_c01135{bottom:906.560000pt;}
.y3_c01135{bottom:930.462667pt;}
.y2_c01135{bottom:954.366667pt;}
.y1_c01135{bottom:1013.880000pt;}
.h7_c01135{height:25.143595pt;}
.h5_c01135{height:34.001333pt;}
.h6_c01135{height:39.852000pt;}
.h2_c01135{height:47.820000pt;}
.h4_c01135{height:51.870507pt;}
.h3_c01135{height:51.875840pt;}
.h1_c01135{height:1123.333333pt;}
.h0_c01135{height:1123.653333pt;}
.w0_c01135{width:794.550667pt;}
.w1_c01135{width:794.666667pt;}
.x0_c01135{left:0.000000pt;}
.x3_c01135{left:111.652000pt;}
.x1_c01135{left:113.385333pt;}
.x6_c01135{left:126.042667pt;}
.x2_c01135{left:142.078667pt;}
.x5_c01135{left:152.405333pt;}
.x7_c01135{left:174.748000pt;}
.x4_c01135{left:175.817333pt;}
}





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

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





.ff0_c01136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01136;src:url('chunks/assets/font_b2eb11ae43111173cb6534de.woff2')format("woff");}.ff1_c01136{font-family:ff1_c01136;line-height:1.001000;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_c01136;src:url('chunks/assets/font_1c7140110c534eed9ce36d73.woff2')format("woff");}.ff2_c01136{font-family:ff2_c01136;line-height:1.001000;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_c01136;src:url('chunks/assets/font_955e40eb2435580834b3052b.woff2')format("woff");}.ff3_c01136{font-family:ff3_c01136;line-height:1.001000;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_c01136;src:url('chunks/assets/font_5d60cced48402dabe9b7f53e.woff2')format("woff");}.ff4_c01136{font-family:ff4_c01136;line-height:0.697000;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_c01136;src:url('chunks/assets/font_c1112a306738b78062df172e.woff2')format("woff");}.ff5_c01136{font-family:ff5_c01136;line-height:1.000000;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_c01136;src:url('chunks/assets/font_fc673e3478189deaa9431799.woff2')format("woff");}.ff6_c01136{font-family:ff6_c01136;line-height:0.696000;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_c01136;src:url('chunks/assets/font_b2788fab649aa3587ffd8578.woff2')format("woff");}.ff7_c01136{font-family:ff7_c01136;line-height:1.000000;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_c01136;src:url('chunks/assets/font_aedb166bc22b53610aae42bc.woff2')format("woff");}.ff8_c01136{font-family:ff8_c01136;line-height:1.000000;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_c01136{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);}
.v3_c01136{vertical-align:-21.690000px;}
.v0_c01136{vertical-align:0.000000px;}
.v2_c01136{vertical-align:5.976000px;}
.v4_c01136{vertical-align:15.108000px;}
.v1_c01136{vertical-align:26.028000px;}
.ls0_c01136{letter-spacing:0.000000px;}
.sc__c01136{text-shadow:none;}
.sc0_c01136{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__c01136{-webkit-text-stroke:0px transparent;}
.sc0_c01136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01136{word-spacing:-0.071730px;}
.ws2a_c01136{word-spacing:-0.059778px;}
.wsf_c01136{word-spacing:-0.047820px;}
.ws20_c01136{word-spacing:-0.041844px;}
.ws2f_c01136{word-spacing:0.000000px;}
.ws23_c01136{word-spacing:15.183612px;}
.ws29_c01136{word-spacing:16.797618px;}
.ws28_c01136{word-spacing:18.531180px;}
.ws22_c01136{word-spacing:19.846296px;}
.ws2e_c01136{word-spacing:19.965852px;}
.ws2d_c01136{word-spacing:21.340746px;}
.wsd_c01136{word-spacing:21.375540px;}
.ws13_c01136{word-spacing:21.519000px;}
.ws1c_c01136{word-spacing:21.590730px;}
.ws2b_c01136{word-spacing:21.759192px;}
.ws27_c01136{word-spacing:21.938526px;}
.ws11_c01136{word-spacing:22.092840px;}
.ws2_c01136{word-spacing:22.666680px;}
.ws8_c01136{word-spacing:22.810140px;}
.ws21_c01136{word-spacing:22.835196px;}
.ws2c_c01136{word-spacing:23.074308px;}
.ws26_c01136{word-spacing:23.253642px;}
.ws4_c01136{word-spacing:23.312250px;}
.ws19_c01136{word-spacing:23.383980px;}
.ws12_c01136{word-spacing:24.173010px;}
.ws1d_c01136{word-spacing:24.623340px;}
.wsc_c01136{word-spacing:24.818580px;}
.ws1f_c01136{word-spacing:24.962040px;}
.wse_c01136{word-spacing:25.033770px;}
.ws1e_c01136{word-spacing:25.105500px;}
.ws3_c01136{word-spacing:26.037990px;}
.ws17_c01136{word-spacing:26.324910px;}
.ws15_c01136{word-spacing:26.373510px;}
.ws1b_c01136{word-spacing:26.396640px;}
.wsa_c01136{word-spacing:26.755290px;}
.ws0_c01136{word-spacing:26.827020px;}
.ws10_c01136{word-spacing:27.042210px;}
.ws16_c01136{word-spacing:27.831240px;}
.ws14_c01136{word-spacing:27.902970px;}
.ws1a_c01136{word-spacing:27.974700px;}
.ws24_c01136{word-spacing:28.394550px;}
.ws6_c01136{word-spacing:28.907190px;}
.ws7_c01136{word-spacing:28.978920px;}
.ws25_c01136{word-spacing:29.171664px;}
.wsb_c01136{word-spacing:29.194110px;}
.ws18_c01136{word-spacing:29.409300px;}
.ws9_c01136{word-spacing:30.485250px;}
.ws5_c01136{word-spacing:34.860780px;}
._0_c01136{margin-left:-40.670910px;}
._9_c01136{margin-left:-37.084410px;}
._a_c01136{margin-left:-35.362890px;}
._4_c01136{margin-left:-33.398430px;}
._12_c01136{margin-left:-29.594364px;}
._7_c01136{margin-left:-27.329130px;}
._15_c01136{margin-left:-25.070052px;}
._13_c01136{margin-left:-22.441050px;}
._6_c01136{margin-left:-7.746840px;}
._b_c01136{margin-left:-5.738400px;}
._5_c01136{margin-left:-4.176570px;}
._d_c01136{margin-left:-2.813700px;}
._3_c01136{margin-left:-1.749270px;}
._2_c01136{width:1.936710px;}
._c_c01136{width:3.873420px;}
._14_c01136{width:8.282970px;}
._e_c01136{width:10.759500px;}
._11_c01136{width:26.986710px;}
._16_c01136{width:28.171650px;}
._10_c01136{width:31.801740px;}
._8_c01136{width:36.797490px;}
._f_c01136{width:79.333380px;}
._1_c01136{width:424.502910px;}
.fc0_c01136{color:rgb(0,0,0);}
.fs2_c01136{font-size:41.844000px;}
.fs1_c01136{font-size:47.820000px;}
.fs3_c01136{font-size:59.778000px;}
.fs0_c01136{font-size:71.730000px;}
.y0_c01136{bottom:0.000000px;}
.y29_c01136{bottom:71.973000px;}
.y28_c01136{bottom:89.905500px;}
.y27_c01136{bottom:95.328000px;}
.y26_c01136{bottom:109.440000px;}
.y25_c01136{bottom:127.372500px;}
.y24_c01136{bottom:145.306500px;}
.y23_c01136{bottom:163.239000px;}
.y22_c01136{bottom:181.171500px;}
.y21_c01136{bottom:204.528000px;}
.y20_c01136{bottom:217.036500px;}
.y1f_c01136{bottom:240.393000px;}
.y1e_c01136{bottom:265.518000px;}
.y1d_c01136{bottom:292.408500px;}
.y1c_c01136{bottom:319.299000px;}
.y1b_c01136{bottom:346.189500px;}
.y1a_c01136{bottom:373.081500px;}
.y19_c01136{bottom:399.972000px;}
.y18_c01136{bottom:426.862500px;}
.y17_c01136{bottom:453.753000px;}
.y16_c01136{bottom:480.645000px;}
.y15_c01136{bottom:507.535500px;}
.y14_c01136{bottom:534.426000px;}
.y13_c01136{bottom:561.316500px;}
.y12_c01136{bottom:588.208500px;}
.y11_c01136{bottom:615.099000px;}
.y10_c01136{bottom:641.989500px;}
.yf_c01136{bottom:676.602000px;}
.ye_c01136{bottom:738.070500px;}
.yd_c01136{bottom:764.961000px;}
.yc_c01136{bottom:804.753000px;}
.yb_c01136{bottom:831.645000px;}
.ya_c01136{bottom:858.535500px;}
.y9_c01136{bottom:885.426000px;}
.y8_c01136{bottom:912.316500px;}
.y7_c01136{bottom:939.207000px;}
.y6_c01136{bottom:966.099000px;}
.y5_c01136{bottom:992.989500px;}
.y4_c01136{bottom:1019.880000px;}
.y3_c01136{bottom:1046.770500px;}
.y2_c01136{bottom:1073.662500px;}
.y1_c01136{bottom:1140.615000px;}
.h6_c01136{height:28.286544px;}
.ha_c01136{height:38.251500px;}
.h7_c01136{height:44.833500px;}
.h2_c01136{height:53.797500px;}
.h3_c01136{height:58.354320px;}
.h5_c01136{height:58.360320px;}
.h4_c01136{height:59.773500px;}
.h8_c01136{height:59.941500px;}
.h9_c01136{height:59.947500px;}
.h1_c01136{height:1263.750000px;}
.h0_c01136{height:1264.110000px;}
.w0_c01136{width:893.869500px;}
.w1_c01136{width:894.000000px;}
.x0_c01136{left:0.000000px;}
.x1_c01136{left:127.558500px;}
.x6_c01136{left:141.798000px;}
.x2_c01136{left:159.838500px;}
.x8_c01136{left:166.995000px;}
.x4_c01136{left:171.456000px;}
.x3_c01136{left:197.794500px;}
.x7_c01136{left:383.974500px;}
.x5_c01136{left:411.940500px;}
.x9_c01136{left:607.309500px;}
@media print{
.v3_c01136{vertical-align:-19.280000pt;}
.v0_c01136{vertical-align:0.000000pt;}
.v2_c01136{vertical-align:5.312000pt;}
.v4_c01136{vertical-align:13.429333pt;}
.v1_c01136{vertical-align:23.136000pt;}
.ls0_c01136{letter-spacing:0.000000pt;}
.ws1_c01136{word-spacing:-0.063760pt;}
.ws2a_c01136{word-spacing:-0.053136pt;}
.wsf_c01136{word-spacing:-0.042507pt;}
.ws20_c01136{word-spacing:-0.037195pt;}
.ws2f_c01136{word-spacing:0.000000pt;}
.ws23_c01136{word-spacing:13.496544pt;}
.ws29_c01136{word-spacing:14.931216pt;}
.ws28_c01136{word-spacing:16.472160pt;}
.ws22_c01136{word-spacing:17.641152pt;}
.ws2e_c01136{word-spacing:17.747424pt;}
.ws2d_c01136{word-spacing:18.969552pt;}
.wsd_c01136{word-spacing:19.000480pt;}
.ws13_c01136{word-spacing:19.128000pt;}
.ws1c_c01136{word-spacing:19.191760pt;}
.ws2b_c01136{word-spacing:19.341504pt;}
.ws27_c01136{word-spacing:19.500912pt;}
.ws11_c01136{word-spacing:19.638080pt;}
.ws2_c01136{word-spacing:20.148160pt;}
.ws8_c01136{word-spacing:20.275680pt;}
.ws21_c01136{word-spacing:20.297952pt;}
.ws2c_c01136{word-spacing:20.510496pt;}
.ws26_c01136{word-spacing:20.669904pt;}
.ws4_c01136{word-spacing:20.722000pt;}
.ws19_c01136{word-spacing:20.785760pt;}
.ws12_c01136{word-spacing:21.487120pt;}
.ws1d_c01136{word-spacing:21.887413pt;}
.wsc_c01136{word-spacing:22.060960pt;}
.ws1f_c01136{word-spacing:22.188480pt;}
.wse_c01136{word-spacing:22.252240pt;}
.ws1e_c01136{word-spacing:22.316000pt;}
.ws3_c01136{word-spacing:23.144880pt;}
.ws17_c01136{word-spacing:23.399920pt;}
.ws15_c01136{word-spacing:23.443120pt;}
.ws1b_c01136{word-spacing:23.463680pt;}
.wsa_c01136{word-spacing:23.782480pt;}
.ws0_c01136{word-spacing:23.846240pt;}
.ws10_c01136{word-spacing:24.037520pt;}
.ws16_c01136{word-spacing:24.738880pt;}
.ws14_c01136{word-spacing:24.802640pt;}
.ws1a_c01136{word-spacing:24.866400pt;}
.ws24_c01136{word-spacing:25.239600pt;}
.ws6_c01136{word-spacing:25.695280pt;}
.ws7_c01136{word-spacing:25.759040pt;}
.ws25_c01136{word-spacing:25.930368pt;}
.wsb_c01136{word-spacing:25.950320pt;}
.ws18_c01136{word-spacing:26.141600pt;}
.ws9_c01136{word-spacing:27.098000pt;}
.ws5_c01136{word-spacing:30.987360pt;}
._0_c01136{margin-left:-36.151920pt;}
._9_c01136{margin-left:-32.963920pt;}
._a_c01136{margin-left:-31.433680pt;}
._4_c01136{margin-left:-29.687493pt;}
._12_c01136{margin-left:-26.306101pt;}
._7_c01136{margin-left:-24.292560pt;}
._15_c01136{margin-left:-22.284491pt;}
._13_c01136{margin-left:-19.947600pt;}
._6_c01136{margin-left:-6.886080pt;}
._b_c01136{margin-left:-5.100800pt;}
._5_c01136{margin-left:-3.712507pt;}
._d_c01136{margin-left:-2.501067pt;}
._3_c01136{margin-left:-1.554907pt;}
._2_c01136{width:1.721520pt;}
._c_c01136{width:3.443040pt;}
._14_c01136{width:7.362640pt;}
._e_c01136{width:9.564000pt;}
._11_c01136{width:23.988187pt;}
._16_c01136{width:25.041467pt;}
._10_c01136{width:28.268213pt;}
._8_c01136{width:32.708880pt;}
._f_c01136{width:70.518560pt;}
._1_c01136{width:377.335920pt;}
.fs2_c01136{font-size:37.194667pt;}
.fs1_c01136{font-size:42.506667pt;}
.fs3_c01136{font-size:53.136000pt;}
.fs0_c01136{font-size:63.760000pt;}
.y0_c01136{bottom:0.000000pt;}
.y29_c01136{bottom:63.976000pt;}
.y28_c01136{bottom:79.916000pt;}
.y27_c01136{bottom:84.736000pt;}
.y26_c01136{bottom:97.280000pt;}
.y25_c01136{bottom:113.220000pt;}
.y24_c01136{bottom:129.161333pt;}
.y23_c01136{bottom:145.101333pt;}
.y22_c01136{bottom:161.041333pt;}
.y21_c01136{bottom:181.802667pt;}
.y20_c01136{bottom:192.921333pt;}
.y1f_c01136{bottom:213.682667pt;}
.y1e_c01136{bottom:236.016000pt;}
.y1d_c01136{bottom:259.918667pt;}
.y1c_c01136{bottom:283.821333pt;}
.y1b_c01136{bottom:307.724000pt;}
.y1a_c01136{bottom:331.628000pt;}
.y19_c01136{bottom:355.530667pt;}
.y18_c01136{bottom:379.433333pt;}
.y17_c01136{bottom:403.336000pt;}
.y16_c01136{bottom:427.240000pt;}
.y15_c01136{bottom:451.142667pt;}
.y14_c01136{bottom:475.045333pt;}
.y13_c01136{bottom:498.948000pt;}
.y12_c01136{bottom:522.852000pt;}
.y11_c01136{bottom:546.754667pt;}
.y10_c01136{bottom:570.657333pt;}
.yf_c01136{bottom:601.424000pt;}
.ye_c01136{bottom:656.062667pt;}
.yd_c01136{bottom:679.965333pt;}
.yc_c01136{bottom:715.336000pt;}
.yb_c01136{bottom:739.240000pt;}
.ya_c01136{bottom:763.142667pt;}
.y9_c01136{bottom:787.045333pt;}
.y8_c01136{bottom:810.948000pt;}
.y7_c01136{bottom:834.850667pt;}
.y6_c01136{bottom:858.754667pt;}
.y5_c01136{bottom:882.657333pt;}
.y4_c01136{bottom:906.560000pt;}
.y3_c01136{bottom:930.462667pt;}
.y2_c01136{bottom:954.366667pt;}
.y1_c01136{bottom:1013.880000pt;}
.h6_c01136{height:25.143595pt;}
.ha_c01136{height:34.001333pt;}
.h7_c01136{height:39.852000pt;}
.h2_c01136{height:47.820000pt;}
.h3_c01136{height:51.870507pt;}
.h5_c01136{height:51.875840pt;}
.h4_c01136{height:53.132000pt;}
.h8_c01136{height:53.281333pt;}
.h9_c01136{height:53.286667pt;}
.h1_c01136{height:1123.333333pt;}
.h0_c01136{height:1123.653333pt;}
.w0_c01136{width:794.550667pt;}
.w1_c01136{width:794.666667pt;}
.x0_c01136{left:0.000000pt;}
.x1_c01136{left:113.385333pt;}
.x6_c01136{left:126.042667pt;}
.x2_c01136{left:142.078667pt;}
.x8_c01136{left:148.440000pt;}
.x4_c01136{left:152.405333pt;}
.x3_c01136{left:175.817333pt;}
.x7_c01136{left:341.310667pt;}
.x5_c01136{left:366.169333pt;}
.x9_c01136{left:539.830667pt;}
}





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

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





.ff0_c01137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01137;src:url('chunks/assets/font_3b82c0a1fd5b93c01222fad4.woff2')format("woff");}.ff1_c01137{font-family:ff1_c01137;line-height:1.001000;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_c01137;src:url('chunks/assets/font_eda03e32db494b2622950fd9.woff2')format("woff");}.ff2_c01137{font-family:ff2_c01137;line-height:1.001000;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_c01137;src:url('chunks/assets/font_56dcfabc3a74ef9212cacb71.woff2')format("woff");}.ff3_c01137{font-family:ff3_c01137;line-height:1.001000;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_c01137;src:url('chunks/assets/font_8279997da9c2fe56a10e53a9.woff2')format("woff");}.ff4_c01137{font-family:ff4_c01137;line-height:0.697000;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_c01137;src:url('chunks/assets/font_5607bd16b6afb030c417be26.woff2')format("woff");}.ff5_c01137{font-family:ff5_c01137;line-height:1.000000;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_c01137;src:url('chunks/assets/font_967873fa74d17160678e85c6.woff2')format("woff");}.ff6_c01137{font-family:ff6_c01137;line-height:0.696000;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_c01137;src:url('chunks/assets/font_6ac3a79ed23e81ca6d9cce12.woff2')format("woff");}.ff7_c01137{font-family:ff7_c01137;line-height:1.000000;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_c01137;src:url('chunks/assets/font_7d38bc441b31f1aefc819a2b.woff2')format("woff");}.ff8_c01137{font-family:ff8_c01137;line-height:1.000000;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_c01137{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_c01137{vertical-align:-21.690000px;}
.v0_c01137{vertical-align:0.000000px;}
.v1_c01137{vertical-align:26.028000px;}
.ls0_c01137{letter-spacing:0.000000px;}
.sc__c01137{text-shadow:none;}
.sc0_c01137{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__c01137{-webkit-text-stroke:0px transparent;}
.sc0_c01137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01137{word-spacing:-0.071730px;}
.ws8_c01137{word-spacing:-0.047820px;}
.ws16_c01137{word-spacing:-0.041844px;}
.ws1c_c01137{word-spacing:0.000000px;}
.ws14_c01137{word-spacing:15.565410px;}
.ws17_c01137{word-spacing:15.721614px;}
.ws19_c01137{word-spacing:15.781392px;}
.wsf_c01137{word-spacing:17.286930px;}
.ws18_c01137{word-spacing:17.574732px;}
.ws4_c01137{word-spacing:18.004230px;}
.ws1a_c01137{word-spacing:19.846296px;}
.wsc_c01137{word-spacing:19.940940px;}
.ws13_c01137{word-spacing:20.299590px;}
.ws1b_c01137{word-spacing:21.340746px;}
.ws7_c01137{word-spacing:22.236300px;}
.ws3_c01137{word-spacing:23.312250px;}
.wsd_c01137{word-spacing:23.814360px;}
.ws12_c01137{word-spacing:23.886090px;}
.ws15_c01137{word-spacing:24.962040px;}
.ws10_c01137{word-spacing:25.105500px;}
.wse_c01137{word-spacing:25.535880px;}
.ws2_c01137{word-spacing:26.037990px;}
.ws9_c01137{word-spacing:26.396640px;}
.ws0_c01137{word-spacing:26.827020px;}
.ws11_c01137{word-spacing:27.042210px;}
.ws5_c01137{word-spacing:29.409300px;}
.wsb_c01137{word-spacing:32.063310px;}
.wsa_c01137{word-spacing:33.139260px;}
.ws6_c01137{word-spacing:35.793270px;}
._0_c01137{margin-left:-40.670910px;}
._7_c01137{margin-left:-37.084410px;}
._5_c01137{margin-left:-35.075970px;}
._e_c01137{margin-left:-33.354450px;}
._13_c01137{margin-left:-30.869364px;}
._b_c01137{margin-left:-28.692000px;}
._4_c01137{margin-left:-27.400860px;}
._14_c01137{margin-left:-23.708448px;}
._3_c01137{margin-left:-7.746840px;}
._a_c01137{margin-left:-6.240510px;}
._9_c01137{margin-left:-4.590720px;}
._8_c01137{margin-left:-3.586500px;}
._2_c01137{margin-left:-2.008440px;}
._f_c01137{margin-left:-1.004220px;}
._6_c01137{width:2.008440px;}
._c_c01137{width:3.944970px;}
._11_c01137{width:15.565410px;}
._12_c01137{width:25.392420px;}
._d_c01137{width:28.405080px;}
._10_c01137{width:79.333380px;}
._1_c01137{width:424.502910px;}
.fc0_c01137{color:rgb(0,0,0);}
.fs2_c01137{font-size:41.844000px;}
.fs1_c01137{font-size:47.820000px;}
.fs3_c01137{font-size:59.778000px;}
.fs0_c01137{font-size:71.730000px;}
.y0_c01137{bottom:0.000000px;}
.y1f_c01137{bottom:77.410500px;}
.y1e_c01137{bottom:89.920500px;}
.y1d_c01137{bottom:113.275500px;}
.y1c_c01137{bottom:280.593000px;}
.y1b_c01137{bottom:307.485000px;}
.y1a_c01137{bottom:334.375500px;}
.y19_c01137{bottom:361.266000px;}
.y18_c01137{bottom:388.156500px;}
.y17_c01137{bottom:415.048500px;}
.y16_c01137{bottom:441.939000px;}
.y15_c01137{bottom:476.550000px;}
.y14_c01137{bottom:532.839000px;}
.y13_c01137{bottom:559.731000px;}
.y12_c01137{bottom:586.621500px;}
.y11_c01137{bottom:613.512000px;}
.y10_c01137{bottom:640.402500px;}
.yf_c01137{bottom:685.227000px;}
.ye_c01137{bottom:712.117500px;}
.yd_c01137{bottom:739.008000px;}
.yc_c01137{bottom:765.898500px;}
.yb_c01137{bottom:792.790500px;}
.ya_c01137{bottom:819.681000px;}
.y9_c01137{bottom:846.571500px;}
.y8_c01137{bottom:892.890000px;}
.y7_c01137{bottom:919.780500px;}
.y6_c01137{bottom:946.671000px;}
.y5_c01137{bottom:973.563000px;}
.y4_c01137{bottom:1000.453500px;}
.y3_c01137{bottom:1046.770500px;}
.y2_c01137{bottom:1073.662500px;}
.y1_c01137{bottom:1140.615000px;}
.h4_c01137{height:28.286544px;}
.h5_c01137{height:44.833500px;}
.h2_c01137{height:53.797500px;}
.h3_c01137{height:58.354320px;}
.h1_c01137{height:1263.750000px;}
.h0_c01137{height:1264.110000px;}
.w0_c01137{width:893.869500px;}
.w1_c01137{width:894.000000px;}
.x0_c01137{left:0.000000px;}
.x1_c01137{left:127.558500px;}
.x5_c01137{left:141.798000px;}
.x4_c01137{left:159.838500px;}
.x3_c01137{left:171.456000px;}
.x2_c01137{left:197.794500px;}
@media print{
.v2_c01137{vertical-align:-19.280000pt;}
.v0_c01137{vertical-align:0.000000pt;}
.v1_c01137{vertical-align:23.136000pt;}
.ls0_c01137{letter-spacing:0.000000pt;}
.ws1_c01137{word-spacing:-0.063760pt;}
.ws8_c01137{word-spacing:-0.042507pt;}
.ws16_c01137{word-spacing:-0.037195pt;}
.ws1c_c01137{word-spacing:0.000000pt;}
.ws14_c01137{word-spacing:13.835920pt;}
.ws17_c01137{word-spacing:13.974768pt;}
.ws19_c01137{word-spacing:14.027904pt;}
.wsf_c01137{word-spacing:15.366160pt;}
.ws18_c01137{word-spacing:15.621984pt;}
.ws4_c01137{word-spacing:16.003760pt;}
.ws1a_c01137{word-spacing:17.641152pt;}
.wsc_c01137{word-spacing:17.725280pt;}
.ws13_c01137{word-spacing:18.044080pt;}
.ws1b_c01137{word-spacing:18.969552pt;}
.ws7_c01137{word-spacing:19.765600pt;}
.ws3_c01137{word-spacing:20.722000pt;}
.wsd_c01137{word-spacing:21.168320pt;}
.ws12_c01137{word-spacing:21.232080pt;}
.ws15_c01137{word-spacing:22.188480pt;}
.ws10_c01137{word-spacing:22.316000pt;}
.wse_c01137{word-spacing:22.698560pt;}
.ws2_c01137{word-spacing:23.144880pt;}
.ws9_c01137{word-spacing:23.463680pt;}
.ws0_c01137{word-spacing:23.846240pt;}
.ws11_c01137{word-spacing:24.037520pt;}
.ws5_c01137{word-spacing:26.141600pt;}
.wsb_c01137{word-spacing:28.500720pt;}
.wsa_c01137{word-spacing:29.457120pt;}
.ws6_c01137{word-spacing:31.816240pt;}
._0_c01137{margin-left:-36.151920pt;}
._7_c01137{margin-left:-32.963920pt;}
._5_c01137{margin-left:-31.178640pt;}
._e_c01137{margin-left:-29.648400pt;}
._13_c01137{margin-left:-27.439435pt;}
._b_c01137{margin-left:-25.504000pt;}
._4_c01137{margin-left:-24.356320pt;}
._14_c01137{margin-left:-21.074176pt;}
._3_c01137{margin-left:-6.886080pt;}
._a_c01137{margin-left:-5.547120pt;}
._9_c01137{margin-left:-4.080640pt;}
._8_c01137{margin-left:-3.188000pt;}
._2_c01137{margin-left:-1.785280pt;}
._f_c01137{margin-left:-0.892640pt;}
._6_c01137{width:1.785280pt;}
._c_c01137{width:3.506640pt;}
._11_c01137{width:13.835920pt;}
._12_c01137{width:22.571040pt;}
._d_c01137{width:25.248960pt;}
._10_c01137{width:70.518560pt;}
._1_c01137{width:377.335920pt;}
.fs2_c01137{font-size:37.194667pt;}
.fs1_c01137{font-size:42.506667pt;}
.fs3_c01137{font-size:53.136000pt;}
.fs0_c01137{font-size:63.760000pt;}
.y0_c01137{bottom:0.000000pt;}
.y1f_c01137{bottom:68.809333pt;}
.y1e_c01137{bottom:79.929333pt;}
.y1d_c01137{bottom:100.689333pt;}
.y1c_c01137{bottom:249.416000pt;}
.y1b_c01137{bottom:273.320000pt;}
.y1a_c01137{bottom:297.222667pt;}
.y19_c01137{bottom:321.125333pt;}
.y18_c01137{bottom:345.028000pt;}
.y17_c01137{bottom:368.932000pt;}
.y16_c01137{bottom:392.834667pt;}
.y15_c01137{bottom:423.600000pt;}
.y14_c01137{bottom:473.634667pt;}
.y13_c01137{bottom:497.538667pt;}
.y12_c01137{bottom:521.441333pt;}
.y11_c01137{bottom:545.344000pt;}
.y10_c01137{bottom:569.246667pt;}
.yf_c01137{bottom:609.090667pt;}
.ye_c01137{bottom:632.993333pt;}
.yd_c01137{bottom:656.896000pt;}
.yc_c01137{bottom:680.798667pt;}
.yb_c01137{bottom:704.702667pt;}
.ya_c01137{bottom:728.605333pt;}
.y9_c01137{bottom:752.508000pt;}
.y8_c01137{bottom:793.680000pt;}
.y7_c01137{bottom:817.582667pt;}
.y6_c01137{bottom:841.485333pt;}
.y5_c01137{bottom:865.389333pt;}
.y4_c01137{bottom:889.292000pt;}
.y3_c01137{bottom:930.462667pt;}
.y2_c01137{bottom:954.366667pt;}
.y1_c01137{bottom:1013.880000pt;}
.h4_c01137{height:25.143595pt;}
.h5_c01137{height:39.852000pt;}
.h2_c01137{height:47.820000pt;}
.h3_c01137{height:51.870507pt;}
.h1_c01137{height:1123.333333pt;}
.h0_c01137{height:1123.653333pt;}
.w0_c01137{width:794.550667pt;}
.w1_c01137{width:794.666667pt;}
.x0_c01137{left:0.000000pt;}
.x1_c01137{left:113.385333pt;}
.x5_c01137{left:126.042667pt;}
.x4_c01137{left:142.078667pt;}
.x3_c01137{left:152.405333pt;}
.x2_c01137{left:175.817333pt;}
}





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

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





.ff0_c01138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01138;src:url('chunks/assets/font_3f0561dae69809877022b66e.woff2')format("woff");}.ff1_c01138{font-family:ff1_c01138;line-height:1.001000;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_c01138;src:url('chunks/assets/font_46127dfd37d6a98cde04b2ca.woff2')format("woff");}.ff2_c01138{font-family:ff2_c01138;line-height:1.001000;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_c01138{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_c01138{vertical-align:0.000000px;}
.ls0_c01138{letter-spacing:0.000000px;}
.sc__c01138{text-shadow:none;}
.sc0_c01138{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__c01138{-webkit-text-stroke:0px transparent;}
.sc0_c01138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01138{word-spacing:-0.148722px;}
.ws16_c01138{word-spacing:-0.071730px;}
.ws9_c01138{word-spacing:17.215200px;}
.ws15_c01138{word-spacing:17.645580px;}
.ws5_c01138{word-spacing:20.156130px;}
.wsb_c01138{word-spacing:20.658240px;}
.wsd_c01138{word-spacing:20.873430px;}
.ws13_c01138{word-spacing:21.447270px;}
.ws7_c01138{word-spacing:21.949380px;}
.ws10_c01138{word-spacing:23.312250px;}
.ws6_c01138{word-spacing:23.383980px;}
.ws3_c01138{word-spacing:23.670900px;}
.wsf_c01138{word-spacing:25.033770px;}
.ws14_c01138{word-spacing:25.392420px;}
.ws11_c01138{word-spacing:26.253180px;}
.wse_c01138{word-spacing:26.324910px;}
.ws4_c01138{word-spacing:26.468370px;}
.wsa_c01138{word-spacing:28.046430px;}
.wsc_c01138{word-spacing:28.978920px;}
.ws12_c01138{word-spacing:30.270060px;}
.ws8_c01138{word-spacing:31.274280px;}
.ws0_c01138{word-spacing:55.473306px;}
.ws1_c01138{word-spacing:55.622028px;}
._3_c01138{margin-left:-84.027930px;}
._1_c01138{margin-left:-65.140236px;}
._a_c01138{margin-left:-37.156140px;}
._c_c01138{margin-left:-35.812932px;}
._8_c01138{margin-left:-34.554198px;}
._e_c01138{margin-left:-32.545758px;}
._7_c01138{margin-left:-27.329130px;}
._0_c01138{margin-left:-18.738972px;}
._2_c01138{margin-left:-9.369486px;}
._6_c01138{margin-left:-7.818570px;}
._5_c01138{margin-left:-4.610382px;}
._d_c01138{margin-left:-2.008440px;}
._b_c01138{width:1.936710px;}
._4_c01138{width:4.610382px;}
._f_c01138{width:27.348792px;}
._9_c01138{width:28.548540px;}
.fc0_c01138{color:rgb(0,0,0);}
.fs1_c01138{font-size:71.730000px;}
.fs0_c01138{font-size:148.722000px;}
.y0_c01138{bottom:0.000000px;}
.y1c_c01138{bottom:40.083000px;}
.y1b_c01138{bottom:96.990000px;}
.y1a_c01138{bottom:123.880500px;}
.y19_c01138{bottom:150.771000px;}
.y18_c01138{bottom:177.661500px;}
.y17_c01138{bottom:204.552000px;}
.y16_c01138{bottom:231.444000px;}
.y15_c01138{bottom:258.334500px;}
.y14_c01138{bottom:285.225000px;}
.y13_c01138{bottom:312.115500px;}
.y12_c01138{bottom:339.007500px;}
.y11_c01138{bottom:365.898000px;}
.y10_c01138{bottom:392.788500px;}
.yf_c01138{bottom:419.679000px;}
.ye_c01138{bottom:446.571000px;}
.yd_c01138{bottom:473.461500px;}
.yc_c01138{bottom:500.352000px;}
.yb_c01138{bottom:527.242500px;}
.ya_c01138{bottom:554.134500px;}
.y9_c01138{bottom:581.025000px;}
.y8_c01138{bottom:607.915500px;}
.y7_c01138{bottom:634.806000px;}
.y6_c01138{bottom:661.696500px;}
.y5_c01138{bottom:688.588500px;}
.y4_c01138{bottom:715.479000px;}
.y3_c01138{bottom:802.146000px;}
.y2_c01138{bottom:857.782500px;}
.y1_c01138{bottom:943.306500px;}
.h3_c01138{height:53.797500px;}
.h2_c01138{height:111.541500px;}
.h1_c01138{height:1263.750000px;}
.h0_c01138{height:1264.110000px;}
.w0_c01138{width:893.869500px;}
.w1_c01138{width:894.000000px;}
.x0_c01138{left:0.000000px;}
.x1_c01138{left:127.558500px;}
.x2_c01138{left:159.838500px;}
.x3_c01138{left:433.765500px;}
@media print{
.v0_c01138{vertical-align:0.000000pt;}
.ls0_c01138{letter-spacing:0.000000pt;}
.ws2_c01138{word-spacing:-0.132197pt;}
.ws16_c01138{word-spacing:-0.063760pt;}
.ws9_c01138{word-spacing:15.302400pt;}
.ws15_c01138{word-spacing:15.684960pt;}
.ws5_c01138{word-spacing:17.916560pt;}
.wsb_c01138{word-spacing:18.362880pt;}
.wsd_c01138{word-spacing:18.554160pt;}
.ws13_c01138{word-spacing:19.064240pt;}
.ws7_c01138{word-spacing:19.510560pt;}
.ws10_c01138{word-spacing:20.722000pt;}
.ws6_c01138{word-spacing:20.785760pt;}
.ws3_c01138{word-spacing:21.040800pt;}
.wsf_c01138{word-spacing:22.252240pt;}
.ws14_c01138{word-spacing:22.571040pt;}
.ws11_c01138{word-spacing:23.336160pt;}
.wse_c01138{word-spacing:23.399920pt;}
.ws4_c01138{word-spacing:23.527440pt;}
.wsa_c01138{word-spacing:24.930160pt;}
.wsc_c01138{word-spacing:25.759040pt;}
.ws12_c01138{word-spacing:26.906720pt;}
.ws8_c01138{word-spacing:27.799360pt;}
.ws0_c01138{word-spacing:49.309605pt;}
.ws1_c01138{word-spacing:49.441803pt;}
._3_c01138{margin-left:-74.691493pt;}
._1_c01138{margin-left:-57.902432pt;}
._a_c01138{margin-left:-33.027680pt;}
._c_c01138{margin-left:-31.833717pt;}
._8_c01138{margin-left:-30.714843pt;}
._e_c01138{margin-left:-28.929563pt;}
._7_c01138{margin-left:-24.292560pt;}
._0_c01138{margin-left:-16.656864pt;}
._2_c01138{margin-left:-8.328432pt;}
._6_c01138{margin-left:-6.949840pt;}
._5_c01138{margin-left:-4.098117pt;}
._d_c01138{margin-left:-1.785280pt;}
._b_c01138{width:1.721520pt;}
._4_c01138{width:4.098117pt;}
._f_c01138{width:24.310037pt;}
._9_c01138{width:25.376480pt;}
.fs1_c01138{font-size:63.760000pt;}
.fs0_c01138{font-size:132.197333pt;}
.y0_c01138{bottom:0.000000pt;}
.y1c_c01138{bottom:35.629333pt;}
.y1b_c01138{bottom:86.213333pt;}
.y1a_c01138{bottom:110.116000pt;}
.y19_c01138{bottom:134.018667pt;}
.y18_c01138{bottom:157.921333pt;}
.y17_c01138{bottom:181.824000pt;}
.y16_c01138{bottom:205.728000pt;}
.y15_c01138{bottom:229.630667pt;}
.y14_c01138{bottom:253.533333pt;}
.y13_c01138{bottom:277.436000pt;}
.y12_c01138{bottom:301.340000pt;}
.y11_c01138{bottom:325.242667pt;}
.y10_c01138{bottom:349.145333pt;}
.yf_c01138{bottom:373.048000pt;}
.ye_c01138{bottom:396.952000pt;}
.yd_c01138{bottom:420.854667pt;}
.yc_c01138{bottom:444.757333pt;}
.yb_c01138{bottom:468.660000pt;}
.ya_c01138{bottom:492.564000pt;}
.y9_c01138{bottom:516.466667pt;}
.y8_c01138{bottom:540.369333pt;}
.y7_c01138{bottom:564.272000pt;}
.y6_c01138{bottom:588.174667pt;}
.y5_c01138{bottom:612.078667pt;}
.y4_c01138{bottom:635.981333pt;}
.y3_c01138{bottom:713.018667pt;}
.y2_c01138{bottom:762.473333pt;}
.y1_c01138{bottom:838.494667pt;}
.h3_c01138{height:47.820000pt;}
.h2_c01138{height:99.148000pt;}
.h1_c01138{height:1123.333333pt;}
.h0_c01138{height:1123.653333pt;}
.w0_c01138{width:794.550667pt;}
.w1_c01138{width:794.666667pt;}
.x0_c01138{left:0.000000pt;}
.x1_c01138{left:113.385333pt;}
.x2_c01138{left:142.078667pt;}
.x3_c01138{left:385.569333pt;}
}





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

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





.ff0_c01139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01139;src:url('chunks/assets/font_33386674406393f3349b95b0.woff2')format("woff");}.ff1_c01139{font-family:ff1_c01139;line-height:1.001000;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_c01139;src:url('chunks/assets/font_2e62b8314b5303b7e1cb6b12.woff2')format("woff");}.ff2_c01139{font-family:ff2_c01139;line-height:1.001000;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_c01139{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_c01139{vertical-align:0.000000px;}
.ls0_c01139{letter-spacing:0.000000px;}
.sc__c01139{text-shadow:none;}
.sc0_c01139{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__c01139{-webkit-text-stroke:0px transparent;}
.sc0_c01139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01139{word-spacing:-0.071730px;}
.wsf_c01139{word-spacing:0.000000px;}
.wse_c01139{word-spacing:18.793260px;}
.ws2_c01139{word-spacing:18.936720px;}
.wsc_c01139{word-spacing:20.443050px;}
.wsb_c01139{word-spacing:21.088620px;}
.wsd_c01139{word-spacing:21.232080px;}
.ws7_c01139{word-spacing:21.662460px;}
.ws9_c01139{word-spacing:22.523220px;}
.ws3_c01139{word-spacing:23.168790px;}
.ws5_c01139{word-spacing:23.312250px;}
.ws0_c01139{word-spacing:26.827020px;}
.ws8_c01139{word-spacing:28.189890px;}
.ws6_c01139{word-spacing:28.763730px;}
.ws4_c01139{word-spacing:29.839680px;}
.wsa_c01139{word-spacing:29.983140px;}
._1_c01139{margin-left:-40.455720px;}
._9_c01139{margin-left:-37.084410px;}
._7_c01139{margin-left:-35.291160px;}
._a_c01139{margin-left:-33.067530px;}
._6_c01139{margin-left:-27.329130px;}
._5_c01139{margin-left:-8.607600px;}
._b_c01139{margin-left:-7.531650px;}
._0_c01139{margin-left:-4.662450px;}
._3_c01139{margin-left:-2.295360px;}
._c_c01139{margin-left:-1.291140px;}
._2_c01139{width:2.223630px;}
._e_c01139{width:20.729970px;}
._d_c01139{width:22.738410px;}
._8_c01139{width:30.772170px;}
._4_c01139{width:991.026450px;}
.fc0_c01139{color:rgb(0,0,0);}
.fs0_c01139{font-size:71.730000px;}
.y0_c01139{bottom:0.000000px;}
.y11_c01139{bottom:670.299000px;}
.y10_c01139{bottom:697.189500px;}
.yf_c01139{bottom:724.081500px;}
.ye_c01139{bottom:750.972000px;}
.yd_c01139{bottom:777.862500px;}
.yc_c01139{bottom:804.753000px;}
.yb_c01139{bottom:831.645000px;}
.ya_c01139{bottom:858.535500px;}
.y9_c01139{bottom:885.426000px;}
.y8_c01139{bottom:912.316500px;}
.y7_c01139{bottom:939.207000px;}
.y6_c01139{bottom:966.099000px;}
.y5_c01139{bottom:992.989500px;}
.y4_c01139{bottom:1019.880000px;}
.y3_c01139{bottom:1046.770500px;}
.y2_c01139{bottom:1073.662500px;}
.y1_c01139{bottom:1140.615000px;}
.h2_c01139{height:53.797500px;}
.h1_c01139{height:1263.750000px;}
.h0_c01139{height:1264.110000px;}
.w0_c01139{width:893.869500px;}
.w1_c01139{width:894.000000px;}
.x0_c01139{left:0.000000px;}
.x1_c01139{left:127.558500px;}
.x2_c01139{left:159.838500px;}
@media print{
.v0_c01139{vertical-align:0.000000pt;}
.ls0_c01139{letter-spacing:0.000000pt;}
.ws1_c01139{word-spacing:-0.063760pt;}
.wsf_c01139{word-spacing:0.000000pt;}
.wse_c01139{word-spacing:16.705120pt;}
.ws2_c01139{word-spacing:16.832640pt;}
.wsc_c01139{word-spacing:18.171600pt;}
.wsb_c01139{word-spacing:18.745440pt;}
.wsd_c01139{word-spacing:18.872960pt;}
.ws7_c01139{word-spacing:19.255520pt;}
.ws9_c01139{word-spacing:20.020640pt;}
.ws3_c01139{word-spacing:20.594480pt;}
.ws5_c01139{word-spacing:20.722000pt;}
.ws0_c01139{word-spacing:23.846240pt;}
.ws8_c01139{word-spacing:25.057680pt;}
.ws6_c01139{word-spacing:25.567760pt;}
.ws4_c01139{word-spacing:26.524160pt;}
.wsa_c01139{word-spacing:26.651680pt;}
._1_c01139{margin-left:-35.960640pt;}
._9_c01139{margin-left:-32.963920pt;}
._7_c01139{margin-left:-31.369920pt;}
._a_c01139{margin-left:-29.393360pt;}
._6_c01139{margin-left:-24.292560pt;}
._5_c01139{margin-left:-7.651200pt;}
._b_c01139{margin-left:-6.694800pt;}
._0_c01139{margin-left:-4.144400pt;}
._3_c01139{margin-left:-2.040320pt;}
._c_c01139{margin-left:-1.147680pt;}
._2_c01139{width:1.976560pt;}
._e_c01139{width:18.426640pt;}
._d_c01139{width:20.211920pt;}
._8_c01139{width:27.353040pt;}
._4_c01139{width:880.912400pt;}
.fs0_c01139{font-size:63.760000pt;}
.y0_c01139{bottom:0.000000pt;}
.y11_c01139{bottom:595.821333pt;}
.y10_c01139{bottom:619.724000pt;}
.yf_c01139{bottom:643.628000pt;}
.ye_c01139{bottom:667.530667pt;}
.yd_c01139{bottom:691.433333pt;}
.yc_c01139{bottom:715.336000pt;}
.yb_c01139{bottom:739.240000pt;}
.ya_c01139{bottom:763.142667pt;}
.y9_c01139{bottom:787.045333pt;}
.y8_c01139{bottom:810.948000pt;}
.y7_c01139{bottom:834.850667pt;}
.y6_c01139{bottom:858.754667pt;}
.y5_c01139{bottom:882.657333pt;}
.y4_c01139{bottom:906.560000pt;}
.y3_c01139{bottom:930.462667pt;}
.y2_c01139{bottom:954.366667pt;}
.y1_c01139{bottom:1013.880000pt;}
.h2_c01139{height:47.820000pt;}
.h1_c01139{height:1123.333333pt;}
.h0_c01139{height:1123.653333pt;}
.w0_c01139{width:794.550667pt;}
.w1_c01139{width:794.666667pt;}
.x0_c01139{left:0.000000pt;}
.x1_c01139{left:113.385333pt;}
.x2_c01139{left:142.078667pt;}
}





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

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





.ff0_c01140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01140;src:url('chunks/assets/font_cb5df67ad38e23ffe09c9dad.woff2')format("woff");}.ff1_c01140{font-family:ff1_c01140;line-height:1.001000;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_c01140;src:url('chunks/assets/font_efd7a6daa33afc75d6147065.woff2')format("woff");}.ff2_c01140{font-family:ff2_c01140;line-height:1.001000;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_c01140{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_c01140{vertical-align:0.000000px;}
.ls0_c01140{letter-spacing:0.000000px;}
.sc__c01140{text-shadow:none;}
.sc0_c01140{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__c01140{-webkit-text-stroke:0px transparent;}
.sc0_c01140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01140{word-spacing:-0.148722px;}
.ws2_c01140{word-spacing:-0.071730px;}
.ws0_c01140{word-spacing:55.622028px;}
._0_c01140{margin-left:-4.759104px;}
.fc0_c01140{color:rgb(0,0,0);}
.fs1_c01140{font-size:71.730000px;}
.fs0_c01140{font-size:148.722000px;}
.y0_c01140{bottom:0.000000px;}
.y3_c01140{bottom:40.083000px;}
.y2_c01140{bottom:645.669000px;}
.y1_c01140{bottom:731.193000px;}
.h3_c01140{height:53.797500px;}
.h2_c01140{height:111.541500px;}
.h1_c01140{height:1263.750000px;}
.h0_c01140{height:1264.110000px;}
.w0_c01140{width:893.869500px;}
.w1_c01140{width:894.000000px;}
.x0_c01140{left:0.000000px;}
.x2_c01140{left:279.213000px;}
.x1_c01140{left:366.291000px;}
.x3_c01140{left:433.765500px;}
@media print{
.v0_c01140{vertical-align:0.000000pt;}
.ls0_c01140{letter-spacing:0.000000pt;}
.ws1_c01140{word-spacing:-0.132197pt;}
.ws2_c01140{word-spacing:-0.063760pt;}
.ws0_c01140{word-spacing:49.441803pt;}
._0_c01140{margin-left:-4.230315pt;}
.fs1_c01140{font-size:63.760000pt;}
.fs0_c01140{font-size:132.197333pt;}
.y0_c01140{bottom:0.000000pt;}
.y3_c01140{bottom:35.629333pt;}
.y2_c01140{bottom:573.928000pt;}
.y1_c01140{bottom:649.949333pt;}
.h3_c01140{height:47.820000pt;}
.h2_c01140{height:99.148000pt;}
.h1_c01140{height:1123.333333pt;}
.h0_c01140{height:1123.653333pt;}
.w0_c01140{width:794.550667pt;}
.w1_c01140{width:794.666667pt;}
.x0_c01140{left:0.000000pt;}
.x2_c01140{left:248.189333pt;}
.x1_c01140{left:325.592000pt;}
.x3_c01140{left:385.569333pt;}
}





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

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





.ff0_c01141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01141;src:url('chunks/assets/font_b7ffbaf5bfa3f7db5397308e.woff2')format("woff");}.ff1_c01141{font-family:ff1_c01141;line-height:1.001000;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_c01141{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_c01141{vertical-align:0.000000px;}
.v1_c01141{vertical-align:18.132000px;}
.ls0_c01141{letter-spacing:0.000000px;}
.sc__c01141{text-shadow:none;}
.sc0_c01141{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__c01141{-webkit-text-stroke:0px transparent;}
.sc0_c01141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01141{word-spacing:-0.071730px;}
.ws1e_c01141{word-spacing:0.000000px;}
.wsa_c01141{word-spacing:16.354440px;}
.ws15_c01141{word-spacing:16.856550px;}
.ws10_c01141{word-spacing:17.502120px;}
.ws9_c01141{word-spacing:18.147690px;}
.ws16_c01141{word-spacing:19.725750px;}
.ws2_c01141{word-spacing:20.729970px;}
.ws7_c01141{word-spacing:21.088620px;}
.wse_c01141{word-spacing:21.590730px;}
.ws12_c01141{word-spacing:21.734190px;}
.ws8_c01141{word-spacing:21.805920px;}
.ws1b_c01141{word-spacing:22.021110px;}
.ws1d_c01141{word-spacing:22.092840px;}
.wsb_c01141{word-spacing:22.666680px;}
.ws3_c01141{word-spacing:22.810140px;}
.ws11_c01141{word-spacing:22.881870px;}
.ws6_c01141{word-spacing:23.312250px;}
.ws18_c01141{word-spacing:23.886090px;}
.wsd_c01141{word-spacing:24.101280px;}
.ws14_c01141{word-spacing:24.459930px;}
.ws13_c01141{word-spacing:24.603390px;}
.ws4_c01141{word-spacing:25.392420px;}
.ws5_c01141{word-spacing:25.607610px;}
.wsf_c01141{word-spacing:26.540100px;}
.ws17_c01141{word-spacing:27.257400px;}
.wsc_c01141{word-spacing:27.616050px;}
.ws1a_c01141{word-spacing:27.974700px;}
.ws1_c01141{word-spacing:29.265840px;}
.ws1c_c01141{word-spacing:31.059090px;}
.ws19_c01141{word-spacing:36.780600px;}
._4_c01141{margin-left:-36.940950px;}
._7_c01141{margin-left:-35.147700px;}
._5_c01141{margin-left:-33.210990px;}
._3_c01141{margin-left:-27.329130px;}
._2_c01141{margin-left:-7.603380px;}
._a_c01141{margin-left:-5.881860px;}
._6_c01141{margin-left:-3.729960px;}
._0_c01141{margin-left:-2.080170px;}
._1_c01141{width:1.936710px;}
._9_c01141{width:3.586500px;}
._8_c01141{width:27.257400px;}
.fc0_c01141{color:rgb(0,0,0);}
.fs0_c01141{font-size:71.730000px;}
.y0_c01141{bottom:0.000000px;}
.y24_c01141{bottom:87.642000px;}
.y23_c01141{bottom:114.532500px;}
.y22_c01141{bottom:141.423000px;}
.y21_c01141{bottom:168.315000px;}
.y20_c01141{bottom:213.138000px;}
.y1f_c01141{bottom:240.028500px;}
.y1e_c01141{bottom:266.920500px;}
.y1d_c01141{bottom:311.743500px;}
.y1c_c01141{bottom:338.634000px;}
.y1b_c01141{bottom:365.524500px;}
.y1a_c01141{bottom:392.416500px;}
.y19_c01141{bottom:437.239500px;}
.y18_c01141{bottom:464.130000px;}
.y17_c01141{bottom:491.022000px;}
.y16_c01141{bottom:517.912500px;}
.y15_c01141{bottom:544.803000px;}
.y14_c01141{bottom:571.693500px;}
.y13_c01141{bottom:598.584000px;}
.y12_c01141{bottom:625.476000px;}
.y11_c01141{bottom:652.366500px;}
.y10_c01141{bottom:679.257000px;}
.yf_c01141{bottom:706.147500px;}
.ye_c01141{bottom:733.039500px;}
.yd_c01141{bottom:759.930000px;}
.yc_c01141{bottom:786.820500px;}
.yb_c01141{bottom:813.711000px;}
.ya_c01141{bottom:858.535500px;}
.y9_c01141{bottom:885.426000px;}
.y8_c01141{bottom:912.316500px;}
.y7_c01141{bottom:939.207000px;}
.y6_c01141{bottom:966.099000px;}
.y5_c01141{bottom:992.989500px;}
.y4_c01141{bottom:1019.880000px;}
.y3_c01141{bottom:1046.770500px;}
.y2_c01141{bottom:1073.662500px;}
.y1_c01141{bottom:1140.615000px;}
.h2_c01141{height:53.797500px;}
.h3_c01141{height:71.929500px;}
.h1_c01141{height:1263.750000px;}
.h0_c01141{height:1264.110000px;}
.w0_c01141{width:893.869500px;}
.w1_c01141{width:894.000000px;}
.x0_c01141{left:0.000000px;}
.x3_c01141{left:127.558500px;}
.x4_c01141{left:152.134500px;}
.x2_c01141{left:159.838500px;}
.x1_c01141{left:739.972500px;}
@media print{
.v0_c01141{vertical-align:0.000000pt;}
.v1_c01141{vertical-align:16.117333pt;}
.ls0_c01141{letter-spacing:0.000000pt;}
.ws0_c01141{word-spacing:-0.063760pt;}
.ws1e_c01141{word-spacing:0.000000pt;}
.wsa_c01141{word-spacing:14.537280pt;}
.ws15_c01141{word-spacing:14.983600pt;}
.ws10_c01141{word-spacing:15.557440pt;}
.ws9_c01141{word-spacing:16.131280pt;}
.ws16_c01141{word-spacing:17.534000pt;}
.ws2_c01141{word-spacing:18.426640pt;}
.ws7_c01141{word-spacing:18.745440pt;}
.wse_c01141{word-spacing:19.191760pt;}
.ws12_c01141{word-spacing:19.319280pt;}
.ws8_c01141{word-spacing:19.383040pt;}
.ws1b_c01141{word-spacing:19.574320pt;}
.ws1d_c01141{word-spacing:19.638080pt;}
.wsb_c01141{word-spacing:20.148160pt;}
.ws3_c01141{word-spacing:20.275680pt;}
.ws11_c01141{word-spacing:20.339440pt;}
.ws6_c01141{word-spacing:20.722000pt;}
.ws18_c01141{word-spacing:21.232080pt;}
.wsd_c01141{word-spacing:21.423360pt;}
.ws14_c01141{word-spacing:21.742160pt;}
.ws13_c01141{word-spacing:21.869680pt;}
.ws4_c01141{word-spacing:22.571040pt;}
.ws5_c01141{word-spacing:22.762320pt;}
.wsf_c01141{word-spacing:23.591200pt;}
.ws17_c01141{word-spacing:24.228800pt;}
.wsc_c01141{word-spacing:24.547600pt;}
.ws1a_c01141{word-spacing:24.866400pt;}
.ws1_c01141{word-spacing:26.014080pt;}
.ws1c_c01141{word-spacing:27.608080pt;}
.ws19_c01141{word-spacing:32.693867pt;}
._4_c01141{margin-left:-32.836400pt;}
._7_c01141{margin-left:-31.242400pt;}
._5_c01141{margin-left:-29.520880pt;}
._3_c01141{margin-left:-24.292560pt;}
._2_c01141{margin-left:-6.758560pt;}
._a_c01141{margin-left:-5.228320pt;}
._6_c01141{margin-left:-3.315520pt;}
._0_c01141{margin-left:-1.849040pt;}
._1_c01141{width:1.721520pt;}
._9_c01141{width:3.188000pt;}
._8_c01141{width:24.228800pt;}
.fs0_c01141{font-size:63.760000pt;}
.y0_c01141{bottom:0.000000pt;}
.y24_c01141{bottom:77.904000pt;}
.y23_c01141{bottom:101.806667pt;}
.y22_c01141{bottom:125.709333pt;}
.y21_c01141{bottom:149.613333pt;}
.y20_c01141{bottom:189.456000pt;}
.y1f_c01141{bottom:213.358667pt;}
.y1e_c01141{bottom:237.262667pt;}
.y1d_c01141{bottom:277.105333pt;}
.y1c_c01141{bottom:301.008000pt;}
.y1b_c01141{bottom:324.910667pt;}
.y1a_c01141{bottom:348.814667pt;}
.y19_c01141{bottom:388.657333pt;}
.y18_c01141{bottom:412.560000pt;}
.y17_c01141{bottom:436.464000pt;}
.y16_c01141{bottom:460.366667pt;}
.y15_c01141{bottom:484.269333pt;}
.y14_c01141{bottom:508.172000pt;}
.y13_c01141{bottom:532.074667pt;}
.y12_c01141{bottom:555.978667pt;}
.y11_c01141{bottom:579.881333pt;}
.y10_c01141{bottom:603.784000pt;}
.yf_c01141{bottom:627.686667pt;}
.ye_c01141{bottom:651.590667pt;}
.yd_c01141{bottom:675.493333pt;}
.yc_c01141{bottom:699.396000pt;}
.yb_c01141{bottom:723.298667pt;}
.ya_c01141{bottom:763.142667pt;}
.y9_c01141{bottom:787.045333pt;}
.y8_c01141{bottom:810.948000pt;}
.y7_c01141{bottom:834.850667pt;}
.y6_c01141{bottom:858.754667pt;}
.y5_c01141{bottom:882.657333pt;}
.y4_c01141{bottom:906.560000pt;}
.y3_c01141{bottom:930.462667pt;}
.y2_c01141{bottom:954.366667pt;}
.y1_c01141{bottom:1013.880000pt;}
.h2_c01141{height:47.820000pt;}
.h3_c01141{height:63.937333pt;}
.h1_c01141{height:1123.333333pt;}
.h0_c01141{height:1123.653333pt;}
.w0_c01141{width:794.550667pt;}
.w1_c01141{width:794.666667pt;}
.x0_c01141{left:0.000000pt;}
.x3_c01141{left:113.385333pt;}
.x4_c01141{left:135.230667pt;}
.x2_c01141{left:142.078667pt;}
.x1_c01141{left:657.753333pt;}
}





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

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





.ff0_c01142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01142;src:url('chunks/assets/font_485568efb0dc16719291255d.woff2')format("woff");}.ff1_c01142{font-family:ff1_c01142;line-height:1.001000;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_c01142{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_c01142{vertical-align:0.000000px;}
.ls0_c01142{letter-spacing:0.000000px;}
.sc__c01142{text-shadow:none;}
.sc0_c01142{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__c01142{-webkit-text-stroke:0px transparent;}
.sc0_c01142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01142{word-spacing:-0.071730px;}
.ws7_c01142{word-spacing:16.713090px;}
.ws18_c01142{word-spacing:17.717310px;}
.wse_c01142{word-spacing:18.649800px;}
.ws8_c01142{word-spacing:18.864990px;}
.wsc_c01142{word-spacing:20.514780px;}
.wsf_c01142{word-spacing:21.303810px;}
.ws19_c01142{word-spacing:21.375540px;}
.ws1b_c01142{word-spacing:21.590730px;}
.ws1a_c01142{word-spacing:22.738410px;}
.ws4_c01142{word-spacing:23.097060px;}
.ws2_c01142{word-spacing:23.312250px;}
.ws5_c01142{word-spacing:23.383980px;}
.ws12_c01142{word-spacing:24.890310px;}
.ws3_c01142{word-spacing:25.320690px;}
.ws1_c01142{word-spacing:25.966260px;}
.ws17_c01142{word-spacing:26.468370px;}
.ws13_c01142{word-spacing:27.329130px;}
.wsd_c01142{word-spacing:27.472590px;}
.ws1d_c01142{word-spacing:27.687780px;}
.ws16_c01142{word-spacing:28.835460px;}
.ws1e_c01142{word-spacing:29.050650px;}
.ws6_c01142{word-spacing:29.409300px;}
.ws11_c01142{word-spacing:29.552760px;}
.wsb_c01142{word-spacing:30.485250px;}
.wsa_c01142{word-spacing:31.059090px;}
.ws10_c01142{word-spacing:31.274280px;}
.ws15_c01142{word-spacing:31.704660px;}
.ws9_c01142{word-spacing:32.206770px;}
.ws1c_c01142{word-spacing:33.282720px;}
.ws14_c01142{word-spacing:34.430400px;}
._5_c01142{margin-left:-37.012680px;}
._3_c01142{margin-left:-35.147700px;}
._7_c01142{margin-left:-32.995800px;}
._1_c01142{margin-left:-27.329130px;}
._0_c01142{margin-left:-7.890300px;}
._8_c01142{margin-left:-5.810130px;}
._6_c01142{margin-left:-3.945150px;}
._4_c01142{margin-left:-2.008440px;}
._2_c01142{width:1.793250px;}
._9_c01142{width:3.801690px;}
._a_c01142{width:22.881870px;}
._b_c01142{width:35.219430px;}
.fc0_c01142{color:rgb(0,0,0);}
.fs0_c01142{font-size:71.730000px;}
.y0_c01142{bottom:0.000000px;}
.y25_c01142{bottom:71.973000px;}
.y24_c01142{bottom:98.863500px;}
.y23_c01142{bottom:125.754000px;}
.y22_c01142{bottom:152.644500px;}
.y21_c01142{bottom:194.664000px;}
.y20_c01142{bottom:221.554500px;}
.y1f_c01142{bottom:248.445000px;}
.y1e_c01142{bottom:275.335500px;}
.y1d_c01142{bottom:302.227500px;}
.y1c_c01142{bottom:329.118000px;}
.y1b_c01142{bottom:356.008500px;}
.y1a_c01142{bottom:382.899000px;}
.y19_c01142{bottom:424.917000px;}
.y18_c01142{bottom:451.809000px;}
.y17_c01142{bottom:478.699500px;}
.y16_c01142{bottom:505.590000px;}
.y15_c01142{bottom:532.480500px;}
.y14_c01142{bottom:559.372500px;}
.y13_c01142{bottom:586.263000px;}
.y12_c01142{bottom:628.281000px;}
.y11_c01142{bottom:655.171500px;}
.y10_c01142{bottom:682.062000px;}
.yf_c01142{bottom:708.954000px;}
.ye_c01142{bottom:735.844500px;}
.yd_c01142{bottom:762.735000px;}
.yc_c01142{bottom:789.625500px;}
.yb_c01142{bottom:816.517500px;}
.ya_c01142{bottom:843.408000px;}
.y9_c01142{bottom:870.298500px;}
.y8_c01142{bottom:897.189000px;}
.y7_c01142{bottom:924.081000px;}
.y6_c01142{bottom:966.099000px;}
.y5_c01142{bottom:992.989500px;}
.y4_c01142{bottom:1019.880000px;}
.y3_c01142{bottom:1046.770500px;}
.y2_c01142{bottom:1073.662500px;}
.y1_c01142{bottom:1140.615000px;}
.h2_c01142{height:53.797500px;}
.h1_c01142{height:1263.750000px;}
.h0_c01142{height:1264.110000px;}
.w0_c01142{width:893.869500px;}
.w1_c01142{width:894.000000px;}
.x0_c01142{left:0.000000px;}
.x2_c01142{left:127.558500px;}
.x3_c01142{left:159.838500px;}
.x1_c01142{left:739.972500px;}
@media print{
.v0_c01142{vertical-align:0.000000pt;}
.ls0_c01142{letter-spacing:0.000000pt;}
.ws0_c01142{word-spacing:-0.063760pt;}
.ws7_c01142{word-spacing:14.856080pt;}
.ws18_c01142{word-spacing:15.748720pt;}
.wse_c01142{word-spacing:16.577600pt;}
.ws8_c01142{word-spacing:16.768880pt;}
.wsc_c01142{word-spacing:18.235360pt;}
.wsf_c01142{word-spacing:18.936720pt;}
.ws19_c01142{word-spacing:19.000480pt;}
.ws1b_c01142{word-spacing:19.191760pt;}
.ws1a_c01142{word-spacing:20.211920pt;}
.ws4_c01142{word-spacing:20.530720pt;}
.ws2_c01142{word-spacing:20.722000pt;}
.ws5_c01142{word-spacing:20.785760pt;}
.ws12_c01142{word-spacing:22.124720pt;}
.ws3_c01142{word-spacing:22.507280pt;}
.ws1_c01142{word-spacing:23.081120pt;}
.ws17_c01142{word-spacing:23.527440pt;}
.ws13_c01142{word-spacing:24.292560pt;}
.wsd_c01142{word-spacing:24.420080pt;}
.ws1d_c01142{word-spacing:24.611360pt;}
.ws16_c01142{word-spacing:25.631520pt;}
.ws1e_c01142{word-spacing:25.822800pt;}
.ws6_c01142{word-spacing:26.141600pt;}
.ws11_c01142{word-spacing:26.269120pt;}
.wsb_c01142{word-spacing:27.098000pt;}
.wsa_c01142{word-spacing:27.608080pt;}
.ws10_c01142{word-spacing:27.799360pt;}
.ws15_c01142{word-spacing:28.181920pt;}
.ws9_c01142{word-spacing:28.628240pt;}
.ws1c_c01142{word-spacing:29.584640pt;}
.ws14_c01142{word-spacing:30.604800pt;}
._5_c01142{margin-left:-32.900160pt;}
._3_c01142{margin-left:-31.242400pt;}
._7_c01142{margin-left:-29.329600pt;}
._1_c01142{margin-left:-24.292560pt;}
._0_c01142{margin-left:-7.013600pt;}
._8_c01142{margin-left:-5.164560pt;}
._6_c01142{margin-left:-3.506800pt;}
._4_c01142{margin-left:-1.785280pt;}
._2_c01142{width:1.594000pt;}
._9_c01142{width:3.379280pt;}
._a_c01142{width:20.339440pt;}
._b_c01142{width:31.306160pt;}
.fs0_c01142{font-size:63.760000pt;}
.y0_c01142{bottom:0.000000pt;}
.y25_c01142{bottom:63.976000pt;}
.y24_c01142{bottom:87.878667pt;}
.y23_c01142{bottom:111.781333pt;}
.y22_c01142{bottom:135.684000pt;}
.y21_c01142{bottom:173.034667pt;}
.y20_c01142{bottom:196.937333pt;}
.y1f_c01142{bottom:220.840000pt;}
.y1e_c01142{bottom:244.742667pt;}
.y1d_c01142{bottom:268.646667pt;}
.y1c_c01142{bottom:292.549333pt;}
.y1b_c01142{bottom:316.452000pt;}
.y1a_c01142{bottom:340.354667pt;}
.y19_c01142{bottom:377.704000pt;}
.y18_c01142{bottom:401.608000pt;}
.y17_c01142{bottom:425.510667pt;}
.y16_c01142{bottom:449.413333pt;}
.y15_c01142{bottom:473.316000pt;}
.y14_c01142{bottom:497.220000pt;}
.y13_c01142{bottom:521.122667pt;}
.y12_c01142{bottom:558.472000pt;}
.y11_c01142{bottom:582.374667pt;}
.y10_c01142{bottom:606.277333pt;}
.yf_c01142{bottom:630.181333pt;}
.ye_c01142{bottom:654.084000pt;}
.yd_c01142{bottom:677.986667pt;}
.yc_c01142{bottom:701.889333pt;}
.yb_c01142{bottom:725.793333pt;}
.ya_c01142{bottom:749.696000pt;}
.y9_c01142{bottom:773.598667pt;}
.y8_c01142{bottom:797.501333pt;}
.y7_c01142{bottom:821.405333pt;}
.y6_c01142{bottom:858.754667pt;}
.y5_c01142{bottom:882.657333pt;}
.y4_c01142{bottom:906.560000pt;}
.y3_c01142{bottom:930.462667pt;}
.y2_c01142{bottom:954.366667pt;}
.y1_c01142{bottom:1013.880000pt;}
.h2_c01142{height:47.820000pt;}
.h1_c01142{height:1123.333333pt;}
.h0_c01142{height:1123.653333pt;}
.w0_c01142{width:794.550667pt;}
.w1_c01142{width:794.666667pt;}
.x0_c01142{left:0.000000pt;}
.x2_c01142{left:113.385333pt;}
.x3_c01142{left:142.078667pt;}
.x1_c01142{left:657.753333pt;}
}





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

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





.ff0_c01143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01143;src:url('chunks/assets/font_c276144cb3da6060f0b7b538.woff2')format("woff");}.ff1_c01143{font-family:ff1_c01143;line-height:1.001000;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_c01143{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_c01143{vertical-align:0.000000px;}
.ls0_c01143{letter-spacing:0.000000px;}
.sc__c01143{text-shadow:none;}
.sc0_c01143{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__c01143{-webkit-text-stroke:0px transparent;}
.sc0_c01143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01143{word-spacing:-0.071730px;}
.ws1_c01143{word-spacing:15.637140px;}
.ws5_c01143{word-spacing:16.282710px;}
.ws8_c01143{word-spacing:20.729970px;}
.ws2_c01143{word-spacing:22.164570px;}
.ws6_c01143{word-spacing:22.451490px;}
.ws4_c01143{word-spacing:22.810140px;}
.ws7_c01143{word-spacing:23.312250px;}
.wsb_c01143{word-spacing:23.455710px;}
.ws9_c01143{word-spacing:23.742630px;}
.wsa_c01143{word-spacing:27.113940px;}
.ws3_c01143{word-spacing:31.704660px;}
._7_c01143{margin-left:-36.940950px;}
._4_c01143{margin-left:-35.506350px;}
._6_c01143{margin-left:-27.329130px;}
._5_c01143{margin-left:-8.033760px;}
._3_c01143{margin-left:-4.016880px;}
._0_c01143{margin-left:-1.936710px;}
._1_c01143{width:2.008440px;}
._2_c01143{width:3.873420px;}
.fc0_c01143{color:rgb(0,0,0);}
.fs0_c01143{font-size:71.730000px;}
.y0_c01143{bottom:0.000000px;}
.yd_c01143{bottom:777.862500px;}
.yc_c01143{bottom:804.753000px;}
.yb_c01143{bottom:831.645000px;}
.ya_c01143{bottom:858.535500px;}
.y9_c01143{bottom:885.426000px;}
.y8_c01143{bottom:912.316500px;}
.y7_c01143{bottom:939.207000px;}
.y6_c01143{bottom:966.099000px;}
.y5_c01143{bottom:992.989500px;}
.y4_c01143{bottom:1019.880000px;}
.y3_c01143{bottom:1046.770500px;}
.y2_c01143{bottom:1073.662500px;}
.y1_c01143{bottom:1140.615000px;}
.h2_c01143{height:53.797500px;}
.h1_c01143{height:1263.750000px;}
.h0_c01143{height:1264.110000px;}
.w0_c01143{width:893.869500px;}
.w1_c01143{width:894.000000px;}
.x0_c01143{left:0.000000px;}
.x3_c01143{left:127.558500px;}
.x2_c01143{left:159.838500px;}
.x1_c01143{left:739.972500px;}
@media print{
.v0_c01143{vertical-align:0.000000pt;}
.ls0_c01143{letter-spacing:0.000000pt;}
.ws0_c01143{word-spacing:-0.063760pt;}
.ws1_c01143{word-spacing:13.899680pt;}
.ws5_c01143{word-spacing:14.473520pt;}
.ws8_c01143{word-spacing:18.426640pt;}
.ws2_c01143{word-spacing:19.701840pt;}
.ws6_c01143{word-spacing:19.956880pt;}
.ws4_c01143{word-spacing:20.275680pt;}
.ws7_c01143{word-spacing:20.722000pt;}
.wsb_c01143{word-spacing:20.849520pt;}
.ws9_c01143{word-spacing:21.104560pt;}
.wsa_c01143{word-spacing:24.101280pt;}
.ws3_c01143{word-spacing:28.181920pt;}
._7_c01143{margin-left:-32.836400pt;}
._4_c01143{margin-left:-31.561200pt;}
._6_c01143{margin-left:-24.292560pt;}
._5_c01143{margin-left:-7.141120pt;}
._3_c01143{margin-left:-3.570560pt;}
._0_c01143{margin-left:-1.721520pt;}
._1_c01143{width:1.785280pt;}
._2_c01143{width:3.443040pt;}
.fs0_c01143{font-size:63.760000pt;}
.y0_c01143{bottom:0.000000pt;}
.yd_c01143{bottom:691.433333pt;}
.yc_c01143{bottom:715.336000pt;}
.yb_c01143{bottom:739.240000pt;}
.ya_c01143{bottom:763.142667pt;}
.y9_c01143{bottom:787.045333pt;}
.y8_c01143{bottom:810.948000pt;}
.y7_c01143{bottom:834.850667pt;}
.y6_c01143{bottom:858.754667pt;}
.y5_c01143{bottom:882.657333pt;}
.y4_c01143{bottom:906.560000pt;}
.y3_c01143{bottom:930.462667pt;}
.y2_c01143{bottom:954.366667pt;}
.y1_c01143{bottom:1013.880000pt;}
.h2_c01143{height:47.820000pt;}
.h1_c01143{height:1123.333333pt;}
.h0_c01143{height:1123.653333pt;}
.w0_c01143{width:794.550667pt;}
.w1_c01143{width:794.666667pt;}
.x0_c01143{left:0.000000pt;}
.x3_c01143{left:113.385333pt;}
.x2_c01143{left:142.078667pt;}
.x1_c01143{left:657.753333pt;}
}





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

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





.ff0_c01144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01144;src:url('chunks/assets/font_026c3b5b44a42d2ba55fa64b.woff2')format("woff");}.ff1_c01144{font-family:ff1_c01144;line-height:1.001000;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_c01144;src:url('chunks/assets/font_756f29d868a0bd98ccae829c.woff2')format("woff");}.ff2_c01144{font-family:ff2_c01144;line-height:1.001000;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_c01144{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_c01144{vertical-align:0.000000px;}
.v1_c01144{vertical-align:35.940000px;}
.ls0_c01144{letter-spacing:0.000000px;}
.sc__c01144{text-shadow:none;}
.sc0_c01144{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__c01144{-webkit-text-stroke:0px transparent;}
.sc0_c01144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01144{word-spacing:-0.148722px;}
.ws2_c01144{word-spacing:-0.071730px;}
.ws3_c01144{word-spacing:0.000000px;}
.ws0_c01144{word-spacing:55.622028px;}
._2_c01144{margin-left:-10.758558px;}
._0_c01144{margin-left:-4.759104px;}
._1_c01144{width:4.610382px;}
.fc0_c01144{color:rgb(0,0,0);}
.fs1_c01144{font-size:71.730000px;}
.fs0_c01144{font-size:148.722000px;}
.y0_c01144{bottom:0.000000px;}
.y3_c01144{bottom:40.083000px;}
.y2_c01144{bottom:645.669000px;}
.y1_c01144{bottom:731.193000px;}
.h4_c01144{height:53.797500px;}
.h2_c01144{height:111.541500px;}
.h3_c01144{height:147.481500px;}
.h1_c01144{height:1263.750000px;}
.h0_c01144{height:1264.110000px;}
.w0_c01144{width:893.869500px;}
.w1_c01144{width:894.000000px;}
.x0_c01144{left:0.000000px;}
.x2_c01144{left:288.789000px;}
.x1_c01144{left:357.921000px;}
.x4_c01144{left:433.765500px;}
.x3_c01144{left:557.917500px;}
@media print{
.v0_c01144{vertical-align:0.000000pt;}
.v1_c01144{vertical-align:31.946667pt;}
.ls0_c01144{letter-spacing:0.000000pt;}
.ws1_c01144{word-spacing:-0.132197pt;}
.ws2_c01144{word-spacing:-0.063760pt;}
.ws3_c01144{word-spacing:0.000000pt;}
.ws0_c01144{word-spacing:49.441803pt;}
._2_c01144{margin-left:-9.563163pt;}
._0_c01144{margin-left:-4.230315pt;}
._1_c01144{width:4.098117pt;}
.fs1_c01144{font-size:63.760000pt;}
.fs0_c01144{font-size:132.197333pt;}
.y0_c01144{bottom:0.000000pt;}
.y3_c01144{bottom:35.629333pt;}
.y2_c01144{bottom:573.928000pt;}
.y1_c01144{bottom:649.949333pt;}
.h4_c01144{height:47.820000pt;}
.h2_c01144{height:99.148000pt;}
.h3_c01144{height:131.094667pt;}
.h1_c01144{height:1123.333333pt;}
.h0_c01144{height:1123.653333pt;}
.w0_c01144{width:794.550667pt;}
.w1_c01144{width:794.666667pt;}
.x0_c01144{left:0.000000pt;}
.x2_c01144{left:256.701333pt;}
.x1_c01144{left:318.152000pt;}
.x4_c01144{left:385.569333pt;}
.x3_c01144{left:495.926667pt;}
}





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

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





.ff0_c01145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01145;src:url('chunks/assets/font_900641c3146bc802c81003b5.woff2')format("woff");}.ff1_c01145{font-family:ff1_c01145;line-height:1.001000;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_c01145;src:url('chunks/assets/font_ca1b841f2c1de29c56a9f3e9.woff2')format("woff");}.ff2_c01145{font-family:ff2_c01145;line-height:1.001000;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_c01145;src:url('chunks/assets/font_70e069960c328f12fbfb686e.woff2')format("woff");}.ff3_c01145{font-family:ff3_c01145;line-height:1.001000;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_c01145{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_c01145{vertical-align:0.000000px;}
.v1_c01145{vertical-align:18.132000px;}
.ls0_c01145{letter-spacing:0.000000px;}
.sc__c01145{text-shadow:none;}
.sc0_c01145{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__c01145{-webkit-text-stroke:0px transparent;}
.sc0_c01145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01145{word-spacing:-0.071730px;}
.ws29_c01145{word-spacing:0.000000px;}
.ws19_c01145{word-spacing:15.539310px;}
.ws1b_c01145{word-spacing:15.565410px;}
.ws1a_c01145{word-spacing:17.860770px;}
.ws24_c01145{word-spacing:18.147690px;}
.ws22_c01145{word-spacing:18.155310px;}
.ws28_c01145{word-spacing:18.173310px;}
.ws1e_c01145{word-spacing:18.793260px;}
.ws1c_c01145{word-spacing:18.797310px;}
.ws1f_c01145{word-spacing:19.937310px;}
.ws21_c01145{word-spacing:19.940940px;}
.wsc_c01145{word-spacing:20.207310px;}
.wse_c01145{word-spacing:20.227860px;}
.ws23_c01145{word-spacing:20.299590px;}
.ws1d_c01145{word-spacing:20.873430px;}
.ws3_c01145{word-spacing:21.160350px;}
.ws1_c01145{word-spacing:21.173310px;}
.ws20_c01145{word-spacing:21.877650px;}
.wsd_c01145{word-spacing:22.164570px;}
.ws2_c01145{word-spacing:23.025330px;}
.ws4_c01145{word-spacing:23.312250px;}
.ws18_c01145{word-spacing:23.383980px;}
.ws17_c01145{word-spacing:25.248960px;}
.ws15_c01145{word-spacing:25.277310px;}
.ws16_c01145{word-spacing:26.827020px;}
.ws7_c01145{word-spacing:27.472590px;}
.ws5_c01145{word-spacing:27.509310px;}
.ws27_c01145{word-spacing:28.118160px;}
.ws25_c01145{word-spacing:28.121310px;}
.ws6_c01145{word-spacing:28.907190px;}
.ws26_c01145{word-spacing:29.409300px;}
.ws14_c01145{word-spacing:31.848120px;}
.ws12_c01145{word-spacing:31.889310px;}
.wsf_c01145{word-spacing:32.111310px;}
.ws11_c01145{word-spacing:32.135040px;}
.ws13_c01145{word-spacing:32.852340px;}
.ws10_c01145{word-spacing:33.067530px;}
.ws8_c01145{word-spacing:33.839310px;}
.wsb_c01145{word-spacing:37.443060px;}
.ws9_c01145{word-spacing:37.523310px;}
.wsa_c01145{word-spacing:38.088630px;}
._3_c01145{margin-left:-37.658250px;}
._5_c01145{margin-left:-35.219430px;}
._6_c01145{margin-left:-33.784830px;}
._a_c01145{margin-left:-28.333350px;}
._8_c01145{margin-left:-27.329130px;}
._7_c01145{margin-left:-7.818570px;}
._4_c01145{margin-left:-5.767710px;}
._1_c01145{margin-left:-3.586500px;}
._0_c01145{margin-left:-2.223630px;}
._2_c01145{width:1.793250px;}
._9_c01145{width:2.869200px;}
._b_c01145{width:10.428660px;}
._c_c01145{width:20.299590px;}
.fc0_c01145{color:rgb(0,0,0);}
.fs0_c01145{font-size:71.730000px;}
.y0_c01145{bottom:0.000000px;}
.y1e_c01145{bottom:71.973000px;}
.y1d_c01145{bottom:98.863500px;}
.y1c_c01145{bottom:142.336500px;}
.y1b_c01145{bottom:169.228500px;}
.y1a_c01145{bottom:212.701500px;}
.y19_c01145{bottom:239.593500px;}
.y18_c01145{bottom:283.066500px;}
.y17_c01145{bottom:309.957000px;}
.y16_c01145{bottom:353.431500px;}
.y15_c01145{bottom:380.322000px;}
.y14_c01145{bottom:423.796500px;}
.y13_c01145{bottom:450.687000px;}
.y12_c01145{bottom:494.161500px;}
.y11_c01145{bottom:521.052000px;}
.y10_c01145{bottom:564.525000px;}
.yf_c01145{bottom:591.417000px;}
.ye_c01145{bottom:634.890000px;}
.yd_c01145{bottom:661.782000px;}
.yc_c01145{bottom:705.255000px;}
.yb_c01145{bottom:732.145500px;}
.ya_c01145{bottom:775.620000px;}
.y9_c01145{bottom:802.510500px;}
.y8_c01145{bottom:845.985000px;}
.y7_c01145{bottom:872.875500px;}
.y6_c01145{bottom:916.350000px;}
.y5_c01145{bottom:943.240500px;}
.y4_c01145{bottom:986.713500px;}
.y3_c01145{bottom:1013.605500px;}
.y2_c01145{bottom:1073.662500px;}
.y1_c01145{bottom:1140.615000px;}
.h2_c01145{height:53.797500px;}
.h3_c01145{height:71.929500px;}
.h1_c01145{height:1263.750000px;}
.h0_c01145{height:1264.110000px;}
.w0_c01145{width:893.869500px;}
.w1_c01145{width:894.000000px;}
.x0_c01145{left:0.000000px;}
.x3_c01145{left:127.558500px;}
.x2_c01145{left:159.838500px;}
.x4_c01145{left:232.431000px;}
.x5_c01145{left:317.454000px;}
.x1_c01145{left:739.972500px;}
@media print{
.v0_c01145{vertical-align:0.000000pt;}
.v1_c01145{vertical-align:16.117333pt;}
.ls0_c01145{letter-spacing:0.000000pt;}
.ws0_c01145{word-spacing:-0.063760pt;}
.ws29_c01145{word-spacing:0.000000pt;}
.ws19_c01145{word-spacing:13.812720pt;}
.ws1b_c01145{word-spacing:13.835920pt;}
.ws1a_c01145{word-spacing:15.876240pt;}
.ws24_c01145{word-spacing:16.131280pt;}
.ws22_c01145{word-spacing:16.138053pt;}
.ws28_c01145{word-spacing:16.154053pt;}
.ws1e_c01145{word-spacing:16.705120pt;}
.ws1c_c01145{word-spacing:16.708720pt;}
.ws1f_c01145{word-spacing:17.722053pt;}
.ws21_c01145{word-spacing:17.725280pt;}
.wsc_c01145{word-spacing:17.962053pt;}
.wse_c01145{word-spacing:17.980320pt;}
.ws23_c01145{word-spacing:18.044080pt;}
.ws1d_c01145{word-spacing:18.554160pt;}
.ws3_c01145{word-spacing:18.809200pt;}
.ws1_c01145{word-spacing:18.820720pt;}
.ws20_c01145{word-spacing:19.446800pt;}
.wsd_c01145{word-spacing:19.701840pt;}
.ws2_c01145{word-spacing:20.466960pt;}
.ws4_c01145{word-spacing:20.722000pt;}
.ws18_c01145{word-spacing:20.785760pt;}
.ws17_c01145{word-spacing:22.443520pt;}
.ws15_c01145{word-spacing:22.468720pt;}
.ws16_c01145{word-spacing:23.846240pt;}
.ws7_c01145{word-spacing:24.420080pt;}
.ws5_c01145{word-spacing:24.452720pt;}
.ws27_c01145{word-spacing:24.993920pt;}
.ws25_c01145{word-spacing:24.996720pt;}
.ws6_c01145{word-spacing:25.695280pt;}
.ws26_c01145{word-spacing:26.141600pt;}
.ws14_c01145{word-spacing:28.309440pt;}
.ws12_c01145{word-spacing:28.346053pt;}
.wsf_c01145{word-spacing:28.543387pt;}
.ws11_c01145{word-spacing:28.564480pt;}
.ws13_c01145{word-spacing:29.202080pt;}
.ws10_c01145{word-spacing:29.393360pt;}
.ws8_c01145{word-spacing:30.079387pt;}
.wsb_c01145{word-spacing:33.282720pt;}
.ws9_c01145{word-spacing:33.354053pt;}
.wsa_c01145{word-spacing:33.856560pt;}
._3_c01145{margin-left:-33.474000pt;}
._5_c01145{margin-left:-31.306160pt;}
._6_c01145{margin-left:-30.030960pt;}
._a_c01145{margin-left:-25.185200pt;}
._8_c01145{margin-left:-24.292560pt;}
._7_c01145{margin-left:-6.949840pt;}
._4_c01145{margin-left:-5.126853pt;}
._1_c01145{margin-left:-3.188000pt;}
._0_c01145{margin-left:-1.976560pt;}
._2_c01145{width:1.594000pt;}
._9_c01145{width:2.550400pt;}
._b_c01145{width:9.269920pt;}
._c_c01145{width:18.044080pt;}
.fs0_c01145{font-size:63.760000pt;}
.y0_c01145{bottom:0.000000pt;}
.y1e_c01145{bottom:63.976000pt;}
.y1d_c01145{bottom:87.878667pt;}
.y1c_c01145{bottom:126.521333pt;}
.y1b_c01145{bottom:150.425333pt;}
.y1a_c01145{bottom:189.068000pt;}
.y19_c01145{bottom:212.972000pt;}
.y18_c01145{bottom:251.614667pt;}
.y17_c01145{bottom:275.517333pt;}
.y16_c01145{bottom:314.161333pt;}
.y15_c01145{bottom:338.064000pt;}
.y14_c01145{bottom:376.708000pt;}
.y13_c01145{bottom:400.610667pt;}
.y12_c01145{bottom:439.254667pt;}
.y11_c01145{bottom:463.157333pt;}
.y10_c01145{bottom:501.800000pt;}
.yf_c01145{bottom:525.704000pt;}
.ye_c01145{bottom:564.346667pt;}
.yd_c01145{bottom:588.250667pt;}
.yc_c01145{bottom:626.893333pt;}
.yb_c01145{bottom:650.796000pt;}
.ya_c01145{bottom:689.440000pt;}
.y9_c01145{bottom:713.342667pt;}
.y8_c01145{bottom:751.986667pt;}
.y7_c01145{bottom:775.889333pt;}
.y6_c01145{bottom:814.533333pt;}
.y5_c01145{bottom:838.436000pt;}
.y4_c01145{bottom:877.078667pt;}
.y3_c01145{bottom:900.982667pt;}
.y2_c01145{bottom:954.366667pt;}
.y1_c01145{bottom:1013.880000pt;}
.h2_c01145{height:47.820000pt;}
.h3_c01145{height:63.937333pt;}
.h1_c01145{height:1123.333333pt;}
.h0_c01145{height:1123.653333pt;}
.w0_c01145{width:794.550667pt;}
.w1_c01145{width:794.666667pt;}
.x0_c01145{left:0.000000pt;}
.x3_c01145{left:113.385333pt;}
.x2_c01145{left:142.078667pt;}
.x4_c01145{left:206.605333pt;}
.x5_c01145{left:282.181333pt;}
.x1_c01145{left:657.753333pt;}
}





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

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





.ff0_c01146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01146;src:url('chunks/assets/font_f3d13edeb4830ebbfa9c70f2.woff2')format("woff");}.ff1_c01146{font-family:ff1_c01146;line-height:1.001000;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_c01146;src:url('chunks/assets/font_0690906d74fd57c176676393.woff2')format("woff");}.ff2_c01146{font-family:ff2_c01146;line-height:1.001000;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_c01146{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_c01146{vertical-align:0.000000px;}
.v1_c01146{vertical-align:18.132000px;}
.ls3_c01146{letter-spacing:0.000000px;}
.ls2_c01146{letter-spacing:17.940300px;}
.ls0_c01146{letter-spacing:23.382300px;}
.ls1_c01146{letter-spacing:32.004300px;}
.sc__c01146{text-shadow:none;}
.sc0_c01146{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__c01146{-webkit-text-stroke:0px transparent;}
.sc0_c01146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01146{word-spacing:-0.071730px;}
.ws1f_c01146{word-spacing:0.000000px;}
.ws15_c01146{word-spacing:17.932500px;}
.ws6_c01146{word-spacing:18.935310px;}
.ws8_c01146{word-spacing:18.936720px;}
.wsf_c01146{word-spacing:19.797480px;}
.ws14_c01146{word-spacing:20.012670px;}
.ws7_c01146{word-spacing:21.016890px;}
.wse_c01146{word-spacing:21.805920px;}
.wsc_c01146{word-spacing:23.142300px;}
.wsb_c01146{word-spacing:23.168790px;}
.ws5_c01146{word-spacing:23.312250px;}
.ws9_c01146{word-spacing:23.345310px;}
.ws18_c01146{word-spacing:23.383980px;}
.wsd_c01146{word-spacing:24.890310px;}
.wsa_c01146{word-spacing:25.033770px;}
.ws19_c01146{word-spacing:25.105500px;}
.ws10_c01146{word-spacing:25.320690px;}
.ws1b_c01146{word-spacing:26.540100px;}
.ws1a_c01146{word-spacing:26.683560px;}
.ws4_c01146{word-spacing:26.755290px;}
.ws11_c01146{word-spacing:26.827020px;}
.ws16_c01146{word-spacing:27.687780px;}
.ws1c_c01146{word-spacing:27.974700px;}
.ws3_c01146{word-spacing:28.189890px;}
.ws17_c01146{word-spacing:29.050650px;}
.ws1_c01146{word-spacing:31.427310px;}
.ws13_c01146{word-spacing:31.991580px;}
.ws2_c01146{word-spacing:32.421960px;}
.ws12_c01146{word-spacing:32.924070px;}
.ws1d_c01146{word-spacing:37.945170px;}
.ws1e_c01146{word-spacing:38.447280px;}
._9_c01146{margin-left:-37.658250px;}
._b_c01146{margin-left:-36.037290px;}
._3_c01146{margin-left:-35.018490px;}
._8_c01146{margin-left:-33.605850px;}
._2_c01146{margin-left:-28.692000px;}
._1_c01146{margin-left:-6.957810px;}
._5_c01146{margin-left:-5.738400px;}
._0_c01146{margin-left:-3.586500px;}
._6_c01146{margin-left:-1.793250px;}
._4_c01146{width:1.864980px;}
._a_c01146{width:8.582400px;}
._7_c01146{width:20.026920px;}
.fc0_c01146{color:rgb(0,0,0);}
.fs0_c01146{font-size:71.730000px;}
.y0_c01146{bottom:0.000000px;}
.y1f_c01146{bottom:105.525000px;}
.y1e_c01146{bottom:150.349500px;}
.y1d_c01146{bottom:177.240000px;}
.y1c_c01146{bottom:204.130500px;}
.y1b_c01146{bottom:248.953500px;}
.y1a_c01146{bottom:275.845500px;}
.y19_c01146{bottom:320.668500px;}
.y18_c01146{bottom:347.559000px;}
.y17_c01146{bottom:392.383500px;}
.y16_c01146{bottom:437.206500px;}
.y15_c01146{bottom:482.029500px;}
.y14_c01146{bottom:508.921500px;}
.y13_c01146{bottom:553.744500px;}
.y12_c01146{bottom:580.635000px;}
.y11_c01146{bottom:607.527000px;}
.y10_c01146{bottom:634.417500px;}
.yf_c01146{bottom:661.308000px;}
.ye_c01146{bottom:688.198500px;}
.yd_c01146{bottom:715.090500px;}
.yc_c01146{bottom:741.981000px;}
.yb_c01146{bottom:786.804000px;}
.ya_c01146{bottom:831.628500px;}
.y9_c01146{bottom:858.519000px;}
.y8_c01146{bottom:863.052000px;}
.y7_c01146{bottom:903.342000px;}
.y6_c01146{bottom:948.166500px;}
.y5_c01146{bottom:975.057000px;}
.y4_c01146{bottom:1019.880000px;}
.y3_c01146{bottom:1046.770500px;}
.y2_c01146{bottom:1073.662500px;}
.y1_c01146{bottom:1140.615000px;}
.h2_c01146{height:53.797500px;}
.h3_c01146{height:71.929500px;}
.h1_c01146{height:1263.750000px;}
.h0_c01146{height:1264.110000px;}
.w0_c01146{width:893.869500px;}
.w1_c01146{width:894.000000px;}
.x0_c01146{left:0.000000px;}
.x3_c01146{left:127.558500px;}
.x2_c01146{left:159.838500px;}
.x4_c01146{left:162.030000px;}
.x7_c01146{left:197.869500px;}
.x5_c01146{left:405.826500px;}
.x6_c01146{left:480.388500px;}
.x1_c01146{left:739.972500px;}
@media print{
.v0_c01146{vertical-align:0.000000pt;}
.v1_c01146{vertical-align:16.117333pt;}
.ls3_c01146{letter-spacing:0.000000pt;}
.ls2_c01146{letter-spacing:15.946933pt;}
.ls0_c01146{letter-spacing:20.784267pt;}
.ls1_c01146{letter-spacing:28.448267pt;}
.ws0_c01146{word-spacing:-0.063760pt;}
.ws1f_c01146{word-spacing:0.000000pt;}
.ws15_c01146{word-spacing:15.940000pt;}
.ws6_c01146{word-spacing:16.831387pt;}
.ws8_c01146{word-spacing:16.832640pt;}
.wsf_c01146{word-spacing:17.597760pt;}
.ws14_c01146{word-spacing:17.789040pt;}
.ws7_c01146{word-spacing:18.681680pt;}
.wse_c01146{word-spacing:19.383040pt;}
.wsc_c01146{word-spacing:20.570933pt;}
.wsb_c01146{word-spacing:20.594480pt;}
.ws5_c01146{word-spacing:20.722000pt;}
.ws9_c01146{word-spacing:20.751387pt;}
.ws18_c01146{word-spacing:20.785760pt;}
.wsd_c01146{word-spacing:22.124720pt;}
.wsa_c01146{word-spacing:22.252240pt;}
.ws19_c01146{word-spacing:22.316000pt;}
.ws10_c01146{word-spacing:22.507280pt;}
.ws1b_c01146{word-spacing:23.591200pt;}
.ws1a_c01146{word-spacing:23.718720pt;}
.ws4_c01146{word-spacing:23.782480pt;}
.ws11_c01146{word-spacing:23.846240pt;}
.ws16_c01146{word-spacing:24.611360pt;}
.ws1c_c01146{word-spacing:24.866400pt;}
.ws3_c01146{word-spacing:25.057680pt;}
.ws17_c01146{word-spacing:25.822800pt;}
.ws1_c01146{word-spacing:27.935387pt;}
.ws13_c01146{word-spacing:28.436960pt;}
.ws2_c01146{word-spacing:28.819520pt;}
.ws12_c01146{word-spacing:29.265840pt;}
.ws1d_c01146{word-spacing:33.729040pt;}
.ws1e_c01146{word-spacing:34.175360pt;}
._9_c01146{margin-left:-33.474000pt;}
._b_c01146{margin-left:-32.033147pt;}
._3_c01146{margin-left:-31.127547pt;}
._8_c01146{margin-left:-29.871867pt;}
._2_c01146{margin-left:-25.504000pt;}
._1_c01146{margin-left:-6.184720pt;}
._5_c01146{margin-left:-5.100800pt;}
._0_c01146{margin-left:-3.188000pt;}
._6_c01146{margin-left:-1.594000pt;}
._4_c01146{width:1.657760pt;}
._a_c01146{width:7.628800pt;}
._7_c01146{width:17.801707pt;}
.fs0_c01146{font-size:63.760000pt;}
.y0_c01146{bottom:0.000000pt;}
.y1f_c01146{bottom:93.800000pt;}
.y1e_c01146{bottom:133.644000pt;}
.y1d_c01146{bottom:157.546667pt;}
.y1c_c01146{bottom:181.449333pt;}
.y1b_c01146{bottom:221.292000pt;}
.y1a_c01146{bottom:245.196000pt;}
.y19_c01146{bottom:285.038667pt;}
.y18_c01146{bottom:308.941333pt;}
.y17_c01146{bottom:348.785333pt;}
.y16_c01146{bottom:388.628000pt;}
.y15_c01146{bottom:428.470667pt;}
.y14_c01146{bottom:452.374667pt;}
.y13_c01146{bottom:492.217333pt;}
.y12_c01146{bottom:516.120000pt;}
.y11_c01146{bottom:540.024000pt;}
.y10_c01146{bottom:563.926667pt;}
.yf_c01146{bottom:587.829333pt;}
.ye_c01146{bottom:611.732000pt;}
.yd_c01146{bottom:635.636000pt;}
.yc_c01146{bottom:659.538667pt;}
.yb_c01146{bottom:699.381333pt;}
.ya_c01146{bottom:739.225333pt;}
.y9_c01146{bottom:763.128000pt;}
.y8_c01146{bottom:767.157333pt;}
.y7_c01146{bottom:802.970667pt;}
.y6_c01146{bottom:842.814667pt;}
.y5_c01146{bottom:866.717333pt;}
.y4_c01146{bottom:906.560000pt;}
.y3_c01146{bottom:930.462667pt;}
.y2_c01146{bottom:954.366667pt;}
.y1_c01146{bottom:1013.880000pt;}
.h2_c01146{height:47.820000pt;}
.h3_c01146{height:63.937333pt;}
.h1_c01146{height:1123.333333pt;}
.h0_c01146{height:1123.653333pt;}
.w0_c01146{width:794.550667pt;}
.w1_c01146{width:794.666667pt;}
.x0_c01146{left:0.000000pt;}
.x3_c01146{left:113.385333pt;}
.x2_c01146{left:142.078667pt;}
.x4_c01146{left:144.026667pt;}
.x7_c01146{left:175.884000pt;}
.x5_c01146{left:360.734667pt;}
.x6_c01146{left:427.012000pt;}
.x1_c01146{left:657.753333pt;}
}





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

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





.ff0_c01147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01147;src:url('chunks/assets/font_53358a2acff6af210de38d97.woff2')format("woff");}.ff1_c01147{font-family:ff1_c01147;line-height:1.001000;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_c01147;src:url('chunks/assets/font_9a4d07e33f4b853e99ec109b.woff2')format("woff");}.ff2_c01147{font-family:ff2_c01147;line-height:1.001000;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_c01147;src:url('chunks/assets/font_ab231719534ca47e191b3391.woff2')format("woff");}.ff3_c01147{font-family:ff3_c01147;line-height:0.697000;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_c01147{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_c01147{vertical-align:0.000000px;}
.v1_c01147{vertical-align:18.132000px;}
.v2_c01147{vertical-align:26.034000px;}
.ls4_c01147{letter-spacing:0.000000px;}
.ls2_c01147{letter-spacing:9.756180px;}
.ls1_c01147{letter-spacing:23.382300px;}
.ls3_c01147{letter-spacing:26.411580px;}
.ls0_c01147{letter-spacing:27.372300px;}
.sc__c01147{text-shadow:none;}
.sc0_c01147{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__c01147{-webkit-text-stroke:0px transparent;}
.sc0_c01147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01147{word-spacing:-0.071730px;}
.ws25_c01147{word-spacing:0.000000px;}
.ws23_c01147{word-spacing:19.662150px;}
.ws1f_c01147{word-spacing:20.012670px;}
.ws4_c01147{word-spacing:21.188760px;}
.ws6_c01147{word-spacing:21.232080px;}
.ws8_c01147{word-spacing:21.607590px;}
.ws24_c01147{word-spacing:21.662460px;}
.ws21_c01147{word-spacing:21.805920px;}
.ws20_c01147{word-spacing:21.949380px;}
.ws1d_c01147{word-spacing:22.236300px;}
.ws17_c01147{word-spacing:22.523220px;}
.ws5_c01147{word-spacing:23.097060px;}
.ws7_c01147{word-spacing:23.312250px;}
.ws3_c01147{word-spacing:23.383980px;}
.ws9_c01147{word-spacing:23.455710px;}
.ws22_c01147{word-spacing:23.670900px;}
.ws1e_c01147{word-spacing:24.029550px;}
.wse_c01147{word-spacing:24.101280px;}
.ws16_c01147{word-spacing:24.244740px;}
.ws13_c01147{word-spacing:25.033770px;}
.ws1_c01147{word-spacing:25.679340px;}
.wsf_c01147{word-spacing:25.751070px;}
.ws1b_c01147{word-spacing:26.468370px;}
.ws2_c01147{word-spacing:27.185670px;}
.ws1c_c01147{word-spacing:27.902970px;}
.wsd_c01147{word-spacing:28.692000px;}
.ws14_c01147{word-spacing:29.624490px;}
.ws10_c01147{word-spacing:30.700440px;}
.ws12_c01147{word-spacing:30.772170px;}
.ws15_c01147{word-spacing:30.843900px;}
.ws11_c01147{word-spacing:31.848120px;}
.ws19_c01147{word-spacing:32.633430px;}
.ws18_c01147{word-spacing:32.637150px;}
.wsb_c01147{word-spacing:33.210990px;}
.ws1a_c01147{word-spacing:33.641370px;}
.wsc_c01147{word-spacing:34.143480px;}
.wsa_c01147{word-spacing:42.058950px;}
._b_c01147{margin-left:-37.657590px;}
._1_c01147{margin-left:-35.929920px;}
._8_c01147{margin-left:-33.936990px;}
._c_c01147{margin-left:-32.262060px;}
._7_c01147{margin-left:-28.692000px;}
._6_c01147{margin-left:-7.435920px;}
._4_c01147{margin-left:-5.492160px;}
._0_c01147{margin-left:-3.521580px;}
._2_c01147{margin-left:-1.910820px;}
._3_c01147{width:1.793250px;}
._9_c01147{width:3.951150px;}
._5_c01147{width:6.318540px;}
._a_c01147{width:8.770140px;}
._d_c01147{width:37.808760px;}
.fc0_c01147{color:rgb(0,0,0);}
.fs1_c01147{font-size:47.820000px;}
.fs0_c01147{font-size:71.730000px;}
.y0_c01147{bottom:0.000000px;}
.y20_c01147{bottom:71.973000px;}
.y1f_c01147{bottom:98.863500px;}
.y1e_c01147{bottom:142.002000px;}
.y1d_c01147{bottom:168.892500px;}
.y1c_c01147{bottom:212.029500px;}
.y1b_c01147{bottom:238.921500px;}
.y1a_c01147{bottom:282.058500px;}
.y19_c01147{bottom:308.949000px;}
.y18_c01147{bottom:352.087500px;}
.y17_c01147{bottom:378.978000px;}
.y16_c01147{bottom:422.116500px;}
.y15_c01147{bottom:449.007000px;}
.y14_c01147{bottom:492.144000px;}
.y13_c01147{bottom:519.036000px;}
.y12_c01147{bottom:545.926500px;}
.y11_c01147{bottom:589.063500px;}
.y10_c01147{bottom:615.955500px;}
.yf_c01147{bottom:659.092500px;}
.ye_c01147{bottom:685.983000px;}
.yd_c01147{bottom:729.121500px;}
.yc_c01147{bottom:756.012000px;}
.yb_c01147{bottom:799.150500px;}
.ya_c01147{bottom:826.041000px;}
.y9_c01147{bottom:852.931500px;}
.y8_c01147{bottom:879.823500px;}
.y7_c01147{bottom:922.960500px;}
.y6_c01147{bottom:949.851000px;}
.y5_c01147{bottom:992.989500px;}
.y4_c01147{bottom:1019.880000px;}
.y3_c01147{bottom:1046.770500px;}
.y2_c01147{bottom:1073.662500px;}
.y1_c01147{bottom:1140.615000px;}
.h2_c01147{height:53.797500px;}
.h4_c01147{height:58.360320px;}
.h3_c01147{height:71.929500px;}
.h1_c01147{height:1263.750000px;}
.h0_c01147{height:1264.110000px;}
.w0_c01147{width:893.869500px;}
.w1_c01147{width:894.000000px;}
.x0_c01147{left:0.000000px;}
.x3_c01147{left:127.558500px;}
.x2_c01147{left:159.838500px;}
.x7_c01147{left:196.165500px;}
.x4_c01147{left:199.453500px;}
.x6_c01147{left:211.521000px;}
.x9_c01147{left:223.467000px;}
.x8_c01147{left:241.512000px;}
.x5_c01147{left:259.348500px;}
.xb_c01147{left:390.040500px;}
.xc_c01147{left:403.203000px;}
.xa_c01147{left:435.781500px;}
.x1_c01147{left:739.972500px;}
@media print{
.v0_c01147{vertical-align:0.000000pt;}
.v1_c01147{vertical-align:16.117333pt;}
.v2_c01147{vertical-align:23.141333pt;}
.ls4_c01147{letter-spacing:0.000000pt;}
.ls2_c01147{letter-spacing:8.672160pt;}
.ls1_c01147{letter-spacing:20.784267pt;}
.ls3_c01147{letter-spacing:23.476960pt;}
.ls0_c01147{letter-spacing:24.330933pt;}
.ws0_c01147{word-spacing:-0.063760pt;}
.ws25_c01147{word-spacing:0.000000pt;}
.ws23_c01147{word-spacing:17.477467pt;}
.ws1f_c01147{word-spacing:17.789040pt;}
.ws4_c01147{word-spacing:18.834453pt;}
.ws6_c01147{word-spacing:18.872960pt;}
.ws8_c01147{word-spacing:19.206747pt;}
.ws24_c01147{word-spacing:19.255520pt;}
.ws21_c01147{word-spacing:19.383040pt;}
.ws20_c01147{word-spacing:19.510560pt;}
.ws1d_c01147{word-spacing:19.765600pt;}
.ws17_c01147{word-spacing:20.020640pt;}
.ws5_c01147{word-spacing:20.530720pt;}
.ws7_c01147{word-spacing:20.722000pt;}
.ws3_c01147{word-spacing:20.785760pt;}
.ws9_c01147{word-spacing:20.849520pt;}
.ws22_c01147{word-spacing:21.040800pt;}
.ws1e_c01147{word-spacing:21.359600pt;}
.wse_c01147{word-spacing:21.423360pt;}
.ws16_c01147{word-spacing:21.550880pt;}
.ws13_c01147{word-spacing:22.252240pt;}
.ws1_c01147{word-spacing:22.826080pt;}
.wsf_c01147{word-spacing:22.889840pt;}
.ws1b_c01147{word-spacing:23.527440pt;}
.ws2_c01147{word-spacing:24.165040pt;}
.ws1c_c01147{word-spacing:24.802640pt;}
.wsd_c01147{word-spacing:25.504000pt;}
.ws14_c01147{word-spacing:26.332880pt;}
.ws10_c01147{word-spacing:27.289280pt;}
.ws12_c01147{word-spacing:27.353040pt;}
.ws15_c01147{word-spacing:27.416800pt;}
.ws11_c01147{word-spacing:28.309440pt;}
.ws19_c01147{word-spacing:29.007493pt;}
.ws18_c01147{word-spacing:29.010800pt;}
.wsb_c01147{word-spacing:29.520880pt;}
.ws1a_c01147{word-spacing:29.903440pt;}
.wsc_c01147{word-spacing:30.349760pt;}
.wsa_c01147{word-spacing:37.385733pt;}
._b_c01147{margin-left:-33.473413pt;}
._1_c01147{margin-left:-31.937707pt;}
._8_c01147{margin-left:-30.166213pt;}
._c_c01147{margin-left:-28.677387pt;}
._7_c01147{margin-left:-25.504000pt;}
._6_c01147{margin-left:-6.609707pt;}
._4_c01147{margin-left:-4.881920pt;}
._0_c01147{margin-left:-3.130293pt;}
._2_c01147{margin-left:-1.698507pt;}
._3_c01147{width:1.594000pt;}
._9_c01147{width:3.512133pt;}
._5_c01147{width:5.616480pt;}
._a_c01147{width:7.795680pt;}
._d_c01147{width:33.607787pt;}
.fs1_c01147{font-size:42.506667pt;}
.fs0_c01147{font-size:63.760000pt;}
.y0_c01147{bottom:0.000000pt;}
.y20_c01147{bottom:63.976000pt;}
.y1f_c01147{bottom:87.878667pt;}
.y1e_c01147{bottom:126.224000pt;}
.y1d_c01147{bottom:150.126667pt;}
.y1c_c01147{bottom:188.470667pt;}
.y1b_c01147{bottom:212.374667pt;}
.y1a_c01147{bottom:250.718667pt;}
.y19_c01147{bottom:274.621333pt;}
.y18_c01147{bottom:312.966667pt;}
.y17_c01147{bottom:336.869333pt;}
.y16_c01147{bottom:375.214667pt;}
.y15_c01147{bottom:399.117333pt;}
.y14_c01147{bottom:437.461333pt;}
.y13_c01147{bottom:461.365333pt;}
.y12_c01147{bottom:485.268000pt;}
.y11_c01147{bottom:523.612000pt;}
.y10_c01147{bottom:547.516000pt;}
.yf_c01147{bottom:585.860000pt;}
.ye_c01147{bottom:609.762667pt;}
.yd_c01147{bottom:648.108000pt;}
.yc_c01147{bottom:672.010667pt;}
.yb_c01147{bottom:710.356000pt;}
.ya_c01147{bottom:734.258667pt;}
.y9_c01147{bottom:758.161333pt;}
.y8_c01147{bottom:782.065333pt;}
.y7_c01147{bottom:820.409333pt;}
.y6_c01147{bottom:844.312000pt;}
.y5_c01147{bottom:882.657333pt;}
.y4_c01147{bottom:906.560000pt;}
.y3_c01147{bottom:930.462667pt;}
.y2_c01147{bottom:954.366667pt;}
.y1_c01147{bottom:1013.880000pt;}
.h2_c01147{height:47.820000pt;}
.h4_c01147{height:51.875840pt;}
.h3_c01147{height:63.937333pt;}
.h1_c01147{height:1123.333333pt;}
.h0_c01147{height:1123.653333pt;}
.w0_c01147{width:794.550667pt;}
.w1_c01147{width:794.666667pt;}
.x0_c01147{left:0.000000pt;}
.x3_c01147{left:113.385333pt;}
.x2_c01147{left:142.078667pt;}
.x7_c01147{left:174.369333pt;}
.x4_c01147{left:177.292000pt;}
.x6_c01147{left:188.018667pt;}
.x9_c01147{left:198.637333pt;}
.x8_c01147{left:214.677333pt;}
.x5_c01147{left:230.532000pt;}
.xb_c01147{left:346.702667pt;}
.xc_c01147{left:358.402667pt;}
.xa_c01147{left:387.361333pt;}
.x1_c01147{left:657.753333pt;}
}





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

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





.ff0_c01148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01148;src:url('chunks/assets/font_aa4f850f1dee143a89f4aa56.woff2')format("woff");}.ff1_c01148{font-family:ff1_c01148;line-height:1.001000;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_c01148;src:url('chunks/assets/font_2c8ed6f78ace233d93126234.woff2')format("woff");}.ff2_c01148{font-family:ff2_c01148;line-height:1.001000;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_c01148{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_c01148{vertical-align:0.000000px;}
.v1_c01148{vertical-align:18.132000px;}
.ls5_c01148{letter-spacing:0.000000px;}
.ls1_c01148{letter-spacing:17.430300px;}
.ls4_c01148{letter-spacing:18.948300px;}
.ls0_c01148{letter-spacing:20.904300px;}
.ls3_c01148{letter-spacing:23.382300px;}
.ls2_c01148{letter-spacing:33.216300px;}
.sc__c01148{text-shadow:none;}
.sc0_c01148{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__c01148{-webkit-text-stroke:0px transparent;}
.sc0_c01148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01148{word-spacing:-0.071730px;}
.ws21_c01148{word-spacing:0.000000px;}
.ws10_c01148{word-spacing:15.493680px;}
.ws1c_c01148{word-spacing:17.573850px;}
.ws1b_c01148{word-spacing:17.645580px;}
.ws11_c01148{word-spacing:17.860770px;}
.ws18_c01148{word-spacing:18.936720px;}
.ws14_c01148{word-spacing:19.582290px;}
.ws1d_c01148{word-spacing:19.797480px;}
.ws1e_c01148{word-spacing:20.371320px;}
.ws1f_c01148{word-spacing:20.372820px;}
.wsf_c01148{word-spacing:20.801700px;}
.ws2_c01148{word-spacing:20.873430px;}
.ws17_c01148{word-spacing:20.945160px;}
.ws20_c01148{word-spacing:22.308030px;}
.ws1_c01148{word-spacing:22.738410px;}
.ws3_c01148{word-spacing:23.312250px;}
.wse_c01148{word-spacing:23.383980px;}
.ws9_c01148{word-spacing:23.670900px;}
.ws6_c01148{word-spacing:25.033770px;}
.wsd_c01148{word-spacing:25.248960px;}
.wsb_c01148{word-spacing:25.320690px;}
.wsa_c01148{word-spacing:25.392420px;}
.wsc_c01148{word-spacing:26.827020px;}
.ws12_c01148{word-spacing:27.616050px;}
.ws19_c01148{word-spacing:27.902970px;}
.ws13_c01148{word-spacing:28.978920px;}
.ws1a_c01148{word-spacing:29.265840px;}
.ws16_c01148{word-spacing:33.210990px;}
.ws15_c01148{word-spacing:34.071750px;}
.ws4_c01148{word-spacing:34.143480px;}
.ws7_c01148{word-spacing:34.631250px;}
.ws5_c01148{word-spacing:35.004240px;}
.ws8_c01148{word-spacing:35.434620px;}
._2_c01148{margin-left:-37.658250px;}
._8_c01148{margin-left:-35.147700px;}
._a_c01148{margin-left:-33.990360px;}
._6_c01148{margin-left:-28.075080px;}
._5_c01148{margin-left:-7.818570px;}
._7_c01148{margin-left:-5.953590px;}
._9_c01148{margin-left:-4.875300px;}
._0_c01148{margin-left:-3.586500px;}
._3_c01148{margin-left:-1.936710px;}
._1_c01148{width:1.864980px;}
._c_c01148{width:3.586500px;}
._4_c01148{width:8.808360px;}
._b_c01148{width:16.631700px;}
.fc0_c01148{color:rgb(0,0,0);}
.fs0_c01148{font-size:71.730000px;}
.y0_c01148{bottom:0.000000px;}
.y20_c01148{bottom:87.609000px;}
.y1f_c01148{bottom:114.499500px;}
.y1e_c01148{bottom:159.324000px;}
.y1d_c01148{bottom:186.214500px;}
.y1c_c01148{bottom:231.037500px;}
.y1b_c01148{bottom:257.928000px;}
.y1a_c01148{bottom:302.752500px;}
.y19_c01148{bottom:329.643000px;}
.y18_c01148{bottom:356.533500px;}
.y17_c01148{bottom:383.425500px;}
.y16_c01148{bottom:410.316000px;}
.y15_c01148{bottom:437.206500px;}
.y14_c01148{bottom:464.097000px;}
.y13_c01148{bottom:490.989000px;}
.y12_c01148{bottom:517.879500px;}
.y11_c01148{bottom:562.702500px;}
.y10_c01148{bottom:589.593000px;}
.yf_c01148{bottom:634.417500px;}
.ye_c01148{bottom:661.308000px;}
.yd_c01148{bottom:706.131000px;}
.yc_c01148{bottom:733.023000px;}
.yb_c01148{bottom:777.846000px;}
.ya_c01148{bottom:804.736500px;}
.y9_c01148{bottom:849.561000px;}
.y8_c01148{bottom:876.451500px;}
.y7_c01148{bottom:921.274500px;}
.y6_c01148{bottom:948.166500px;}
.y5_c01148{bottom:975.057000px;}
.y4_c01148{bottom:1001.947500px;}
.y3_c01148{bottom:1046.770500px;}
.y2_c01148{bottom:1073.662500px;}
.y1_c01148{bottom:1140.615000px;}
.h2_c01148{height:53.797500px;}
.h3_c01148{height:71.929500px;}
.h1_c01148{height:1263.750000px;}
.h0_c01148{height:1264.110000px;}
.w0_c01148{width:893.869500px;}
.w1_c01148{width:894.000000px;}
.x0_c01148{left:0.000000px;}
.x3_c01148{left:127.558500px;}
.x2_c01148{left:159.838500px;}
.x4_c01148{left:211.279500px;}
.x7_c01148{left:216.157500px;}
.x8_c01148{left:298.923000px;}
.x5_c01148{left:307.068000px;}
.x6_c01148{left:357.532500px;}
.x1_c01148{left:739.972500px;}
@media print{
.v0_c01148{vertical-align:0.000000pt;}
.v1_c01148{vertical-align:16.117333pt;}
.ls5_c01148{letter-spacing:0.000000pt;}
.ls1_c01148{letter-spacing:15.493600pt;}
.ls4_c01148{letter-spacing:16.842933pt;}
.ls0_c01148{letter-spacing:18.581600pt;}
.ls3_c01148{letter-spacing:20.784267pt;}
.ls2_c01148{letter-spacing:29.525600pt;}
.ws0_c01148{word-spacing:-0.063760pt;}
.ws21_c01148{word-spacing:0.000000pt;}
.ws10_c01148{word-spacing:13.772160pt;}
.ws1c_c01148{word-spacing:15.621200pt;}
.ws1b_c01148{word-spacing:15.684960pt;}
.ws11_c01148{word-spacing:15.876240pt;}
.ws18_c01148{word-spacing:16.832640pt;}
.ws14_c01148{word-spacing:17.406480pt;}
.ws1d_c01148{word-spacing:17.597760pt;}
.ws1e_c01148{word-spacing:18.107840pt;}
.ws1f_c01148{word-spacing:18.109173pt;}
.wsf_c01148{word-spacing:18.490400pt;}
.ws2_c01148{word-spacing:18.554160pt;}
.ws17_c01148{word-spacing:18.617920pt;}
.ws20_c01148{word-spacing:19.829360pt;}
.ws1_c01148{word-spacing:20.211920pt;}
.ws3_c01148{word-spacing:20.722000pt;}
.wse_c01148{word-spacing:20.785760pt;}
.ws9_c01148{word-spacing:21.040800pt;}
.ws6_c01148{word-spacing:22.252240pt;}
.wsd_c01148{word-spacing:22.443520pt;}
.wsb_c01148{word-spacing:22.507280pt;}
.wsa_c01148{word-spacing:22.571040pt;}
.wsc_c01148{word-spacing:23.846240pt;}
.ws12_c01148{word-spacing:24.547600pt;}
.ws19_c01148{word-spacing:24.802640pt;}
.ws13_c01148{word-spacing:25.759040pt;}
.ws1a_c01148{word-spacing:26.014080pt;}
.ws16_c01148{word-spacing:29.520880pt;}
.ws15_c01148{word-spacing:30.286000pt;}
.ws4_c01148{word-spacing:30.349760pt;}
.ws7_c01148{word-spacing:30.783333pt;}
.ws5_c01148{word-spacing:31.114880pt;}
.ws8_c01148{word-spacing:31.497440pt;}
._2_c01148{margin-left:-33.474000pt;}
._8_c01148{margin-left:-31.242400pt;}
._a_c01148{margin-left:-30.213653pt;}
._6_c01148{margin-left:-24.955627pt;}
._5_c01148{margin-left:-6.949840pt;}
._7_c01148{margin-left:-5.292080pt;}
._9_c01148{margin-left:-4.333600pt;}
._0_c01148{margin-left:-3.188000pt;}
._3_c01148{margin-left:-1.721520pt;}
._1_c01148{width:1.657760pt;}
._c_c01148{width:3.188000pt;}
._4_c01148{width:7.829653pt;}
._b_c01148{width:14.783733pt;}
.fs0_c01148{font-size:63.760000pt;}
.y0_c01148{bottom:0.000000pt;}
.y20_c01148{bottom:77.874667pt;}
.y1f_c01148{bottom:101.777333pt;}
.y1e_c01148{bottom:141.621333pt;}
.y1d_c01148{bottom:165.524000pt;}
.y1c_c01148{bottom:205.366667pt;}
.y1b_c01148{bottom:229.269333pt;}
.y1a_c01148{bottom:269.113333pt;}
.y19_c01148{bottom:293.016000pt;}
.y18_c01148{bottom:316.918667pt;}
.y17_c01148{bottom:340.822667pt;}
.y16_c01148{bottom:364.725333pt;}
.y15_c01148{bottom:388.628000pt;}
.y14_c01148{bottom:412.530667pt;}
.y13_c01148{bottom:436.434667pt;}
.y12_c01148{bottom:460.337333pt;}
.y11_c01148{bottom:500.180000pt;}
.y10_c01148{bottom:524.082667pt;}
.yf_c01148{bottom:563.926667pt;}
.ye_c01148{bottom:587.829333pt;}
.yd_c01148{bottom:627.672000pt;}
.yc_c01148{bottom:651.576000pt;}
.yb_c01148{bottom:691.418667pt;}
.ya_c01148{bottom:715.321333pt;}
.y9_c01148{bottom:755.165333pt;}
.y8_c01148{bottom:779.068000pt;}
.y7_c01148{bottom:818.910667pt;}
.y6_c01148{bottom:842.814667pt;}
.y5_c01148{bottom:866.717333pt;}
.y4_c01148{bottom:890.620000pt;}
.y3_c01148{bottom:930.462667pt;}
.y2_c01148{bottom:954.366667pt;}
.y1_c01148{bottom:1013.880000pt;}
.h2_c01148{height:47.820000pt;}
.h3_c01148{height:63.937333pt;}
.h1_c01148{height:1123.333333pt;}
.h0_c01148{height:1123.653333pt;}
.w0_c01148{width:794.550667pt;}
.w1_c01148{width:794.666667pt;}
.x0_c01148{left:0.000000pt;}
.x3_c01148{left:113.385333pt;}
.x2_c01148{left:142.078667pt;}
.x4_c01148{left:187.804000pt;}
.x7_c01148{left:192.140000pt;}
.x8_c01148{left:265.709333pt;}
.x5_c01148{left:272.949333pt;}
.x6_c01148{left:317.806667pt;}
.x1_c01148{left:657.753333pt;}
}





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

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





.ff0_c01149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01149;src:url('chunks/assets/font_e1f63b1eb311d1c518499491.woff2')format("woff");}.ff1_c01149{font-family:ff1_c01149;line-height:1.001000;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_c01149;src:url('chunks/assets/font_54e37f608aa052135111e736.woff2')format("woff");}.ff2_c01149{font-family:ff2_c01149;line-height:1.001000;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_c01149;src:url('chunks/assets/font_e14e60af1aa11ae8d4c02a33.woff2')format("woff");}.ff3_c01149{font-family:ff3_c01149;line-height:0.697000;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_c01149{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_c01149{vertical-align:0.000000px;}
.v1_c01149{vertical-align:18.132000px;}
.v2_c01149{vertical-align:26.028000px;}
.ls1_c01149{letter-spacing:0.000000px;}
.ls0_c01149{letter-spacing:16.134300px;}
.sc__c01149{text-shadow:none;}
.sc0_c01149{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__c01149{-webkit-text-stroke:0px transparent;}
.sc0_c01149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01149{word-spacing:-0.071730px;}
.ws23_c01149{word-spacing:0.000000px;}
.ws1e_c01149{word-spacing:15.493680px;}
.ws6_c01149{word-spacing:15.565410px;}
.wsb_c01149{word-spacing:16.067520px;}
.wsf_c01149{word-spacing:16.784820px;}
.ws1a_c01149{word-spacing:17.343960px;}
.ws18_c01149{word-spacing:17.358660px;}
.ws17_c01149{word-spacing:17.430390px;}
.ws7_c01149{word-spacing:17.860770px;}
.wsa_c01149{word-spacing:18.362880px;}
.ws10_c01149{word-spacing:19.008450px;}
.ws1b_c01149{word-spacing:19.582290px;}
.ws21_c01149{word-spacing:21.102960px;}
.ws22_c01149{word-spacing:23.025330px;}
.ws5_c01149{word-spacing:23.097060px;}
.ws15_c01149{word-spacing:23.168790px;}
.ws8_c01149{word-spacing:23.312250px;}
.wsc_c01149{word-spacing:23.383980px;}
.wsd_c01149{word-spacing:24.740910px;}
.ws4_c01149{word-spacing:24.818580px;}
.ws16_c01149{word-spacing:24.890310px;}
.ws9_c01149{word-spacing:25.033770px;}
.ws11_c01149{word-spacing:25.105500px;}
.ws19_c01149{word-spacing:26.153310px;}
.wse_c01149{word-spacing:26.324910px;}
.ws1f_c01149{word-spacing:28.692000px;}
.ws20_c01149{word-spacing:28.763730px;}
.ws1_c01149{word-spacing:28.978920px;}
.ws2_c01149{word-spacing:28.995990px;}
.ws3_c01149{word-spacing:30.198330px;}
.ws13_c01149{word-spacing:30.591150px;}
.ws12_c01149{word-spacing:30.628710px;}
.ws14_c01149{word-spacing:31.704660px;}
.ws1c_c01149{word-spacing:36.008460px;}
.ws1d_c01149{word-spacing:36.654030px;}
._a_c01149{margin-left:-37.094340px;}
._5_c01149{margin-left:-35.649810px;}
._6_c01149{margin-left:-33.847140px;}
._4_c01149{margin-left:-28.692000px;}
._e_c01149{margin-left:-8.535870px;}
._3_c01149{margin-left:-7.101270px;}
._7_c01149{margin-left:-4.876650px;}
._2_c01149{margin-left:-3.658230px;}
._0_c01149{margin-left:-2.008440px;}
._b_c01149{margin-left:-1.005210px;}
._9_c01149{width:2.127660px;}
._8_c01149{width:6.347070px;}
._c_c01149{width:8.731710px;}
._d_c01149{width:36.021720px;}
._1_c01149{width:37.870020px;}
.fc0_c01149{color:rgb(0,0,0);}
.fs1_c01149{font-size:47.820000px;}
.fs0_c01149{font-size:71.730000px;}
.y0_c01149{bottom:0.000000px;}
.y1f_c01149{bottom:71.971500px;}
.y1e_c01149{bottom:98.863500px;}
.y1d_c01149{bottom:125.754000px;}
.y1c_c01149{bottom:168.492000px;}
.y1b_c01149{bottom:195.382500px;}
.y1a_c01149{bottom:238.120500px;}
.y19_c01149{bottom:265.011000px;}
.y18_c01149{bottom:307.749000px;}
.y17_c01149{bottom:350.485500px;}
.y16_c01149{bottom:393.223500px;}
.y15_c01149{bottom:420.114000px;}
.y14_c01149{bottom:462.852000px;}
.y13_c01149{bottom:489.742500px;}
.y12_c01149{bottom:532.480500px;}
.y11_c01149{bottom:559.371000px;}
.y10_c01149{bottom:602.109000px;}
.yf_c01149{bottom:628.999500px;}
.ye_c01149{bottom:671.737500px;}
.yd_c01149{bottom:714.475500px;}
.yc_c01149{bottom:741.366000px;}
.yb_c01149{bottom:784.104000px;}
.ya_c01149{bottom:810.994500px;}
.y9_c01149{bottom:853.732500px;}
.y8_c01149{bottom:880.623000px;}
.y7_c01149{bottom:907.513500px;}
.y6_c01149{bottom:950.251500px;}
.y5_c01149{bottom:977.142000px;}
.y4_c01149{bottom:1019.880000px;}
.y3_c01149{bottom:1046.770500px;}
.y2_c01149{bottom:1073.662500px;}
.y1_c01149{bottom:1140.615000px;}
.h2_c01149{height:53.797500px;}
.h4_c01149{height:58.354320px;}
.h3_c01149{height:71.929500px;}
.h1_c01149{height:1263.750000px;}
.h0_c01149{height:1264.110000px;}
.w0_c01149{width:893.869500px;}
.w1_c01149{width:894.000000px;}
.x0_c01149{left:0.000000px;}
.x4_c01149{left:127.558500px;}
.x2_c01149{left:159.838500px;}
.x7_c01149{left:173.248500px;}
.x6_c01149{left:185.682000px;}
.xe_c01149{left:194.703000px;}
.xf_c01149{left:209.329500px;}
.xa_c01149{left:217.587000px;}
.x8_c01149{left:224.557500px;}
.x5_c01149{left:238.834500px;}
.xd_c01149{left:302.610000px;}
.x3_c01149{left:355.872000px;}
.xb_c01149{left:511.780500px;}
.x9_c01149{left:567.835500px;}
.xc_c01149{left:583.428000px;}
.x10_c01149{left:684.229500px;}
.x1_c01149{left:739.972500px;}
@media print{
.v0_c01149{vertical-align:0.000000pt;}
.v1_c01149{vertical-align:16.117333pt;}
.v2_c01149{vertical-align:23.136000pt;}
.ls1_c01149{letter-spacing:0.000000pt;}
.ls0_c01149{letter-spacing:14.341600pt;}
.ws0_c01149{word-spacing:-0.063760pt;}
.ws23_c01149{word-spacing:0.000000pt;}
.ws1e_c01149{word-spacing:13.772160pt;}
.ws6_c01149{word-spacing:13.835920pt;}
.wsb_c01149{word-spacing:14.282240pt;}
.wsf_c01149{word-spacing:14.919840pt;}
.ws1a_c01149{word-spacing:15.416853pt;}
.ws18_c01149{word-spacing:15.429920pt;}
.ws17_c01149{word-spacing:15.493680pt;}
.ws7_c01149{word-spacing:15.876240pt;}
.wsa_c01149{word-spacing:16.322560pt;}
.ws10_c01149{word-spacing:16.896400pt;}
.ws1b_c01149{word-spacing:17.406480pt;}
.ws21_c01149{word-spacing:18.758187pt;}
.ws22_c01149{word-spacing:20.466960pt;}
.ws5_c01149{word-spacing:20.530720pt;}
.ws15_c01149{word-spacing:20.594480pt;}
.ws8_c01149{word-spacing:20.722000pt;}
.wsc_c01149{word-spacing:20.785760pt;}
.wsd_c01149{word-spacing:21.991920pt;}
.ws4_c01149{word-spacing:22.060960pt;}
.ws16_c01149{word-spacing:22.124720pt;}
.ws9_c01149{word-spacing:22.252240pt;}
.ws11_c01149{word-spacing:22.316000pt;}
.ws19_c01149{word-spacing:23.247387pt;}
.wse_c01149{word-spacing:23.399920pt;}
.ws1f_c01149{word-spacing:25.504000pt;}
.ws20_c01149{word-spacing:25.567760pt;}
.ws1_c01149{word-spacing:25.759040pt;}
.ws2_c01149{word-spacing:25.774213pt;}
.ws3_c01149{word-spacing:26.842960pt;}
.ws13_c01149{word-spacing:27.192133pt;}
.ws12_c01149{word-spacing:27.225520pt;}
.ws14_c01149{word-spacing:28.181920pt;}
.ws1c_c01149{word-spacing:32.007520pt;}
.ws1d_c01149{word-spacing:32.581360pt;}
._a_c01149{margin-left:-32.972747pt;}
._5_c01149{margin-left:-31.688720pt;}
._6_c01149{margin-left:-30.086347pt;}
._4_c01149{margin-left:-25.504000pt;}
._e_c01149{margin-left:-7.587440pt;}
._3_c01149{margin-left:-6.312240pt;}
._7_c01149{margin-left:-4.334800pt;}
._2_c01149{margin-left:-3.251760pt;}
._0_c01149{margin-left:-1.785280pt;}
._b_c01149{margin-left:-0.893520pt;}
._9_c01149{width:1.891253pt;}
._8_c01149{width:5.641840pt;}
._c_c01149{width:7.761520pt;}
._d_c01149{width:32.019307pt;}
._1_c01149{width:33.662240pt;}
.fs1_c01149{font-size:42.506667pt;}
.fs0_c01149{font-size:63.760000pt;}
.y0_c01149{bottom:0.000000pt;}
.y1f_c01149{bottom:63.974667pt;}
.y1e_c01149{bottom:87.878667pt;}
.y1d_c01149{bottom:111.781333pt;}
.y1c_c01149{bottom:149.770667pt;}
.y1b_c01149{bottom:173.673333pt;}
.y1a_c01149{bottom:211.662667pt;}
.y19_c01149{bottom:235.565333pt;}
.y18_c01149{bottom:273.554667pt;}
.y17_c01149{bottom:311.542667pt;}
.y16_c01149{bottom:349.532000pt;}
.y15_c01149{bottom:373.434667pt;}
.y14_c01149{bottom:411.424000pt;}
.y13_c01149{bottom:435.326667pt;}
.y12_c01149{bottom:473.316000pt;}
.y11_c01149{bottom:497.218667pt;}
.y10_c01149{bottom:535.208000pt;}
.yf_c01149{bottom:559.110667pt;}
.ye_c01149{bottom:597.100000pt;}
.yd_c01149{bottom:635.089333pt;}
.yc_c01149{bottom:658.992000pt;}
.yb_c01149{bottom:696.981333pt;}
.ya_c01149{bottom:720.884000pt;}
.y9_c01149{bottom:758.873333pt;}
.y8_c01149{bottom:782.776000pt;}
.y7_c01149{bottom:806.678667pt;}
.y6_c01149{bottom:844.668000pt;}
.y5_c01149{bottom:868.570667pt;}
.y4_c01149{bottom:906.560000pt;}
.y3_c01149{bottom:930.462667pt;}
.y2_c01149{bottom:954.366667pt;}
.y1_c01149{bottom:1013.880000pt;}
.h2_c01149{height:47.820000pt;}
.h4_c01149{height:51.870507pt;}
.h3_c01149{height:63.937333pt;}
.h1_c01149{height:1123.333333pt;}
.h0_c01149{height:1123.653333pt;}
.w0_c01149{width:794.550667pt;}
.w1_c01149{width:794.666667pt;}
.x0_c01149{left:0.000000pt;}
.x4_c01149{left:113.385333pt;}
.x2_c01149{left:142.078667pt;}
.x7_c01149{left:153.998667pt;}
.x6_c01149{left:165.050667pt;}
.xe_c01149{left:173.069333pt;}
.xf_c01149{left:186.070667pt;}
.xa_c01149{left:193.410667pt;}
.x8_c01149{left:199.606667pt;}
.x5_c01149{left:212.297333pt;}
.xd_c01149{left:268.986667pt;}
.x3_c01149{left:316.330667pt;}
.xb_c01149{left:454.916000pt;}
.x9_c01149{left:504.742667pt;}
.xc_c01149{left:518.602667pt;}
.x10_c01149{left:608.204000pt;}
.x1_c01149{left:657.753333pt;}
}





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

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





.ff0_c01150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01150;src:url('chunks/assets/font_19b12fd119dce7a6ca35d2a5.woff2')format("woff");}.ff1_c01150{font-family:ff1_c01150;line-height:1.001000;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_c01150;src:url('chunks/assets/font_e5cb42a50fb02c52d657f1ce.woff2')format("woff");}.ff2_c01150{font-family:ff2_c01150;line-height:1.001000;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_c01150;src:url('chunks/assets/font_4a91b4a594fec902bb974af7.woff2')format("woff");}.ff3_c01150{font-family:ff3_c01150;line-height:0.697000;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_c01150{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_c01150{vertical-align:0.000000px;}
.v1_c01150{vertical-align:18.132000px;}
.v2_c01150{vertical-align:26.028000px;}
.ls5_c01150{letter-spacing:0.000000px;}
.ls0_c01150{letter-spacing:8.787360px;}
.ls1_c01150{letter-spacing:17.022300px;}
.ls4_c01150{letter-spacing:24.048300px;}
.ls2_c01150{letter-spacing:33.606300px;}
.ls3_c01150{letter-spacing:36.635580px;}
.sc__c01150{text-shadow:none;}
.sc0_c01150{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__c01150{-webkit-text-stroke:0px transparent;}
.sc0_c01150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01150{word-spacing:-0.071730px;}
.ws28_c01150{word-spacing:0.000000px;}
.ws21_c01150{word-spacing:16.282710px;}
.ws22_c01150{word-spacing:16.331760px;}
.ws20_c01150{word-spacing:16.354440px;}
.ws14_c01150{word-spacing:17.000010px;}
.ws8_c01150{word-spacing:17.358660px;}
.ws1e_c01150{word-spacing:18.127710px;}
.ws23_c01150{word-spacing:18.649800px;}
.ws13_c01150{word-spacing:19.151910px;}
.ws9_c01150{word-spacing:19.582290px;}
.ws1f_c01150{word-spacing:20.299590px;}
.ws27_c01150{word-spacing:21.088620px;}
.ws26_c01150{word-spacing:21.160350px;}
.ws16_c01150{word-spacing:22.308030px;}
.ws15_c01150{word-spacing:22.379760px;}
.ws24_c01150{word-spacing:23.025330px;}
.ws3_c01150{word-spacing:23.312250px;}
.ws7_c01150{word-spacing:23.319960px;}
.ws4_c01150{word-spacing:23.383980px;}
.ws1d_c01150{word-spacing:24.029550px;}
.ws17_c01150{word-spacing:24.101280px;}
.ws25_c01150{word-spacing:24.746850px;}
.wsc_c01150{word-spacing:24.962040px;}
.ws5_c01150{word-spacing:25.033770px;}
.ws1c_c01150{word-spacing:25.679340px;}
.wsa_c01150{word-spacing:26.827020px;}
.ws1_c01150{word-spacing:27.185670px;}
.wsb_c01150{word-spacing:28.333350px;}
.ws2_c01150{word-spacing:28.548540px;}
.ws18_c01150{word-spacing:31.704660px;}
.ws6_c01150{word-spacing:32.080650px;}
.ws12_c01150{word-spacing:32.278500px;}
.ws19_c01150{word-spacing:32.708880px;}
.ws11_c01150{word-spacing:33.282720px;}
.ws1b_c01150{word-spacing:33.569640px;}
.ws1a_c01150{word-spacing:34.430400px;}
.wsd_c01150{word-spacing:35.362890px;}
.wsf_c01150{word-spacing:35.793270px;}
.wse_c01150{word-spacing:36.151920px;}
.ws10_c01150{word-spacing:36.510570px;}
._8_c01150{margin-left:-37.658250px;}
._5_c01150{margin-left:-35.865000px;}
._6_c01150{margin-left:-34.528350px;}
._a_c01150{margin-left:-28.234530px;}
._9_c01150{margin-left:-26.770950px;}
._2_c01150{margin-left:-7.818570px;}
._3_c01150{margin-left:-5.810130px;}
._4_c01150{margin-left:-3.613590px;}
._1_c01150{margin-left:-1.793250px;}
._7_c01150{width:1.738680px;}
._b_c01150{width:3.795720px;}
._0_c01150{width:8.755200px;}
.fc0_c01150{color:rgb(0,0,0);}
.fs1_c01150{font-size:47.820000px;}
.fs0_c01150{font-size:71.730000px;}
.y0_c01150{bottom:0.000000px;}
.y21_c01150{bottom:71.973000px;}
.y20_c01150{bottom:98.863500px;}
.y1f_c01150{bottom:141.033000px;}
.y1e_c01150{bottom:167.925000px;}
.y1d_c01150{bottom:210.094500px;}
.y1c_c01150{bottom:236.985000px;}
.y1b_c01150{bottom:279.156000px;}
.y1a_c01150{bottom:306.046500px;}
.y19_c01150{bottom:332.937000px;}
.y18_c01150{bottom:359.829000px;}
.y17_c01150{bottom:386.719500px;}
.y16_c01150{bottom:413.610000px;}
.y15_c01150{bottom:440.500500px;}
.y14_c01150{bottom:467.392500px;}
.y13_c01150{bottom:509.562000px;}
.y12_c01150{bottom:536.452500px;}
.y11_c01150{bottom:578.623500px;}
.y10_c01150{bottom:605.514000px;}
.yf_c01150{bottom:632.404500px;}
.ye_c01150{bottom:659.295000px;}
.yd_c01150{bottom:686.187000px;}
.yc_c01150{bottom:728.356500px;}
.yb_c01150{bottom:755.247000px;}
.ya_c01150{bottom:797.418000px;}
.y9_c01150{bottom:824.308500px;}
.y8_c01150{bottom:851.199000px;}
.y7_c01150{bottom:893.370000px;}
.y6_c01150{bottom:920.260500px;}
.y5_c01150{bottom:962.431500px;}
.y4_c01150{bottom:1004.601000px;}
.y3_c01150{bottom:1046.770500px;}
.y2_c01150{bottom:1073.662500px;}
.y1_c01150{bottom:1140.615000px;}
.h2_c01150{height:53.797500px;}
.h4_c01150{height:58.354320px;}
.h3_c01150{height:71.929500px;}
.h1_c01150{height:1263.750000px;}
.h0_c01150{height:1264.110000px;}
.w0_c01150{width:893.869500px;}
.w1_c01150{width:894.000000px;}
.x0_c01150{left:0.000000px;}
.x5_c01150{left:127.558500px;}
.x2_c01150{left:159.838500px;}
.x7_c01150{left:173.616000px;}
.x3_c01150{left:209.329500px;}
.x8_c01150{left:211.894500px;}
.xd_c01150{left:241.807500px;}
.x6_c01150{left:258.826500px;}
.xa_c01150{left:349.275000px;}
.x9_c01150{left:361.585500px;}
.x4_c01150{left:471.661500px;}
.xb_c01150{left:500.608500px;}
.xc_c01150{left:583.587000px;}
.x1_c01150{left:739.972500px;}
@media print{
.v0_c01150{vertical-align:0.000000pt;}
.v1_c01150{vertical-align:16.117333pt;}
.v2_c01150{vertical-align:23.136000pt;}
.ls5_c01150{letter-spacing:0.000000pt;}
.ls0_c01150{letter-spacing:7.810987pt;}
.ls1_c01150{letter-spacing:15.130933pt;}
.ls4_c01150{letter-spacing:21.376267pt;}
.ls2_c01150{letter-spacing:29.872267pt;}
.ls3_c01150{letter-spacing:32.564960pt;}
.ws0_c01150{word-spacing:-0.063760pt;}
.ws28_c01150{word-spacing:0.000000pt;}
.ws21_c01150{word-spacing:14.473520pt;}
.ws22_c01150{word-spacing:14.517120pt;}
.ws20_c01150{word-spacing:14.537280pt;}
.ws14_c01150{word-spacing:15.111120pt;}
.ws8_c01150{word-spacing:15.429920pt;}
.ws1e_c01150{word-spacing:16.113520pt;}
.ws23_c01150{word-spacing:16.577600pt;}
.ws13_c01150{word-spacing:17.023920pt;}
.ws9_c01150{word-spacing:17.406480pt;}
.ws1f_c01150{word-spacing:18.044080pt;}
.ws27_c01150{word-spacing:18.745440pt;}
.ws26_c01150{word-spacing:18.809200pt;}
.ws16_c01150{word-spacing:19.829360pt;}
.ws15_c01150{word-spacing:19.893120pt;}
.ws24_c01150{word-spacing:20.466960pt;}
.ws3_c01150{word-spacing:20.722000pt;}
.ws7_c01150{word-spacing:20.728853pt;}
.ws4_c01150{word-spacing:20.785760pt;}
.ws1d_c01150{word-spacing:21.359600pt;}
.ws17_c01150{word-spacing:21.423360pt;}
.ws25_c01150{word-spacing:21.997200pt;}
.wsc_c01150{word-spacing:22.188480pt;}
.ws5_c01150{word-spacing:22.252240pt;}
.ws1c_c01150{word-spacing:22.826080pt;}
.wsa_c01150{word-spacing:23.846240pt;}
.ws1_c01150{word-spacing:24.165040pt;}
.wsb_c01150{word-spacing:25.185200pt;}
.ws2_c01150{word-spacing:25.376480pt;}
.ws18_c01150{word-spacing:28.181920pt;}
.ws6_c01150{word-spacing:28.516133pt;}
.ws12_c01150{word-spacing:28.692000pt;}
.ws19_c01150{word-spacing:29.074560pt;}
.ws11_c01150{word-spacing:29.584640pt;}
.ws1b_c01150{word-spacing:29.839680pt;}
.ws1a_c01150{word-spacing:30.604800pt;}
.wsd_c01150{word-spacing:31.433680pt;}
.wsf_c01150{word-spacing:31.816240pt;}
.wse_c01150{word-spacing:32.135040pt;}
.ws10_c01150{word-spacing:32.453840pt;}
._8_c01150{margin-left:-33.474000pt;}
._5_c01150{margin-left:-31.880000pt;}
._6_c01150{margin-left:-30.691867pt;}
._a_c01150{margin-left:-25.097360pt;}
._9_c01150{margin-left:-23.796400pt;}
._2_c01150{margin-left:-6.949840pt;}
._3_c01150{margin-left:-5.164560pt;}
._4_c01150{margin-left:-3.212080pt;}
._1_c01150{margin-left:-1.594000pt;}
._7_c01150{width:1.545493pt;}
._b_c01150{width:3.373973pt;}
._0_c01150{width:7.782400pt;}
.fs1_c01150{font-size:42.506667pt;}
.fs0_c01150{font-size:63.760000pt;}
.y0_c01150{bottom:0.000000pt;}
.y21_c01150{bottom:63.976000pt;}
.y20_c01150{bottom:87.878667pt;}
.y1f_c01150{bottom:125.362667pt;}
.y1e_c01150{bottom:149.266667pt;}
.y1d_c01150{bottom:186.750667pt;}
.y1c_c01150{bottom:210.653333pt;}
.y1b_c01150{bottom:248.138667pt;}
.y1a_c01150{bottom:272.041333pt;}
.y19_c01150{bottom:295.944000pt;}
.y18_c01150{bottom:319.848000pt;}
.y17_c01150{bottom:343.750667pt;}
.y16_c01150{bottom:367.653333pt;}
.y15_c01150{bottom:391.556000pt;}
.y14_c01150{bottom:415.460000pt;}
.y13_c01150{bottom:452.944000pt;}
.y12_c01150{bottom:476.846667pt;}
.y11_c01150{bottom:514.332000pt;}
.y10_c01150{bottom:538.234667pt;}
.yf_c01150{bottom:562.137333pt;}
.ye_c01150{bottom:586.040000pt;}
.yd_c01150{bottom:609.944000pt;}
.yc_c01150{bottom:647.428000pt;}
.yb_c01150{bottom:671.330667pt;}
.ya_c01150{bottom:708.816000pt;}
.y9_c01150{bottom:732.718667pt;}
.y8_c01150{bottom:756.621333pt;}
.y7_c01150{bottom:794.106667pt;}
.y6_c01150{bottom:818.009333pt;}
.y5_c01150{bottom:855.494667pt;}
.y4_c01150{bottom:892.978667pt;}
.y3_c01150{bottom:930.462667pt;}
.y2_c01150{bottom:954.366667pt;}
.y1_c01150{bottom:1013.880000pt;}
.h2_c01150{height:47.820000pt;}
.h4_c01150{height:51.870507pt;}
.h3_c01150{height:63.937333pt;}
.h1_c01150{height:1123.333333pt;}
.h0_c01150{height:1123.653333pt;}
.w0_c01150{width:794.550667pt;}
.w1_c01150{width:794.666667pt;}
.x0_c01150{left:0.000000pt;}
.x5_c01150{left:113.385333pt;}
.x2_c01150{left:142.078667pt;}
.x7_c01150{left:154.325333pt;}
.x3_c01150{left:186.070667pt;}
.x8_c01150{left:188.350667pt;}
.xd_c01150{left:214.940000pt;}
.x6_c01150{left:230.068000pt;}
.xa_c01150{left:310.466667pt;}
.x9_c01150{left:321.409333pt;}
.x4_c01150{left:419.254667pt;}
.xb_c01150{left:444.985333pt;}
.xc_c01150{left:518.744000pt;}
.x1_c01150{left:657.753333pt;}
}





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

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





.ff0_c01151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01151;src:url('chunks/assets/font_b17b8b17fe929f2bfb9668e3.woff2')format("woff");}.ff1_c01151{font-family:ff1_c01151;line-height:1.001000;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_c01151;src:url('chunks/assets/font_319dc3dd4b873d56504fa3c3.woff2')format("woff");}.ff2_c01151{font-family:ff2_c01151;line-height:1.001000;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_c01151{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_c01151{vertical-align:0.000000px;}
.v1_c01151{vertical-align:18.132000px;}
.ls2_c01151{letter-spacing:0.000000px;}
.ls1_c01151{letter-spacing:23.382300px;}
.ls0_c01151{letter-spacing:24.120300px;}
.sc__c01151{text-shadow:none;}
.sc0_c01151{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__c01151{-webkit-text-stroke:0px transparent;}
.sc0_c01151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01151{word-spacing:-0.071730px;}
.ws23_c01151{word-spacing:0.000000px;}
.ws9_c01151{word-spacing:16.210980px;}
.ws8_c01151{word-spacing:16.282710px;}
.ws16_c01151{word-spacing:17.358660px;}
.wsc_c01151{word-spacing:17.860770px;}
.wsa_c01151{word-spacing:18.578070px;}
.ws17_c01151{word-spacing:19.510560px;}
.ws10_c01151{word-spacing:19.654020px;}
.wsf_c01151{word-spacing:21.590730px;}
.ws3_c01151{word-spacing:23.312250px;}
.ws5_c01151{word-spacing:23.383980px;}
.ws18_c01151{word-spacing:23.957820px;}
.ws2_c01151{word-spacing:24.101280px;}
.ws4_c01151{word-spacing:25.033770px;}
.ws19_c01151{word-spacing:25.607610px;}
.ws1_c01151{word-spacing:25.679340px;}
.ws1f_c01151{word-spacing:28.692000px;}
.ws6_c01151{word-spacing:29.481030px;}
.ws20_c01151{word-spacing:29.911410px;}
.ws7_c01151{word-spacing:30.628710px;}
.ws14_c01151{word-spacing:30.772170px;}
.wsb_c01151{word-spacing:30.843900px;}
.ws1a_c01151{word-spacing:30.915630px;}
.ws1c_c01151{word-spacing:30.987360px;}
.ws15_c01151{word-spacing:31.919850px;}
.ws1b_c01151{word-spacing:32.063310px;}
.wsd_c01151{word-spacing:32.350230px;}
.wse_c01151{word-spacing:33.282720px;}
.ws1d_c01151{word-spacing:33.426180px;}
.ws1e_c01151{word-spacing:34.286940px;}
.ws12_c01151{word-spacing:34.635960px;}
.ws11_c01151{word-spacing:34.645590px;}
.ws21_c01151{word-spacing:34.789050px;}
.ws13_c01151{word-spacing:35.434620px;}
.ws22_c01151{word-spacing:35.649810px;}
._2_c01151{margin-left:-37.658250px;}
._4_c01151{margin-left:-35.793270px;}
._8_c01151{margin-left:-33.497910px;}
._9_c01151{margin-left:-28.648650px;}
._b_c01151{margin-left:-27.329130px;}
._a_c01151{margin-left:-7.890300px;}
._6_c01151{margin-left:-6.818310px;}
._3_c01151{margin-left:-5.308020px;}
._0_c01151{margin-left:-3.586500px;}
._5_c01151{margin-left:-1.793250px;}
._1_c01151{width:1.864980px;}
._d_c01151{width:6.365310px;}
._7_c01151{width:8.782740px;}
._c_c01151{width:43.343010px;}
.fc0_c01151{color:rgb(0,0,0);}
.fs0_c01151{font-size:71.730000px;}
.y0_c01151{bottom:0.000000px;}
.y1f_c01151{bottom:78.634500px;}
.y1e_c01151{bottom:105.525000px;}
.y1d_c01151{bottom:150.348000px;}
.y1c_c01151{bottom:177.240000px;}
.y1b_c01151{bottom:222.063000px;}
.y1a_c01151{bottom:248.953500px;}
.y19_c01151{bottom:293.778000px;}
.y18_c01151{bottom:320.668500px;}
.y17_c01151{bottom:347.559000px;}
.y16_c01151{bottom:392.383500px;}
.y15_c01151{bottom:419.274000px;}
.y14_c01151{bottom:464.097000px;}
.y13_c01151{bottom:490.989000px;}
.y12_c01151{bottom:535.812000px;}
.y11_c01151{bottom:562.702500px;}
.y10_c01151{bottom:607.527000px;}
.yf_c01151{bottom:634.417500px;}
.ye_c01151{bottom:679.240500px;}
.yd_c01151{bottom:706.131000px;}
.yc_c01151{bottom:733.023000px;}
.yb_c01151{bottom:777.846000px;}
.ya_c01151{bottom:804.736500px;}
.y9_c01151{bottom:849.561000px;}
.y8_c01151{bottom:876.451500px;}
.y7_c01151{bottom:903.342000px;}
.y6_c01151{bottom:948.166500px;}
.y5_c01151{bottom:975.057000px;}
.y4_c01151{bottom:1019.880000px;}
.y3_c01151{bottom:1046.770500px;}
.y2_c01151{bottom:1073.662500px;}
.y1_c01151{bottom:1140.615000px;}
.h2_c01151{height:53.797500px;}
.h3_c01151{height:71.929500px;}
.h1_c01151{height:1263.750000px;}
.h0_c01151{height:1264.110000px;}
.w0_c01151{width:893.869500px;}
.w1_c01151{width:894.000000px;}
.x0_c01151{left:0.000000px;}
.x3_c01151{left:127.558500px;}
.x2_c01151{left:159.838500px;}
.x8_c01151{left:191.281500px;}
.x4_c01151{left:211.165500px;}
.x6_c01151{left:292.126500px;}
.x5_c01151{left:460.896000px;}
.x7_c01151{left:599.578500px;}
.x1_c01151{left:739.972500px;}
@media print{
.v0_c01151{vertical-align:0.000000pt;}
.v1_c01151{vertical-align:16.117333pt;}
.ls2_c01151{letter-spacing:0.000000pt;}
.ls1_c01151{letter-spacing:20.784267pt;}
.ls0_c01151{letter-spacing:21.440267pt;}
.ws0_c01151{word-spacing:-0.063760pt;}
.ws23_c01151{word-spacing:0.000000pt;}
.ws9_c01151{word-spacing:14.409760pt;}
.ws8_c01151{word-spacing:14.473520pt;}
.ws16_c01151{word-spacing:15.429920pt;}
.wsc_c01151{word-spacing:15.876240pt;}
.wsa_c01151{word-spacing:16.513840pt;}
.ws17_c01151{word-spacing:17.342720pt;}
.ws10_c01151{word-spacing:17.470240pt;}
.wsf_c01151{word-spacing:19.191760pt;}
.ws3_c01151{word-spacing:20.722000pt;}
.ws5_c01151{word-spacing:20.785760pt;}
.ws18_c01151{word-spacing:21.295840pt;}
.ws2_c01151{word-spacing:21.423360pt;}
.ws4_c01151{word-spacing:22.252240pt;}
.ws19_c01151{word-spacing:22.762320pt;}
.ws1_c01151{word-spacing:22.826080pt;}
.ws1f_c01151{word-spacing:25.504000pt;}
.ws6_c01151{word-spacing:26.205360pt;}
.ws20_c01151{word-spacing:26.587920pt;}
.ws7_c01151{word-spacing:27.225520pt;}
.ws14_c01151{word-spacing:27.353040pt;}
.wsb_c01151{word-spacing:27.416800pt;}
.ws1a_c01151{word-spacing:27.480560pt;}
.ws1c_c01151{word-spacing:27.544320pt;}
.ws15_c01151{word-spacing:28.373200pt;}
.ws1b_c01151{word-spacing:28.500720pt;}
.wsd_c01151{word-spacing:28.755760pt;}
.wse_c01151{word-spacing:29.584640pt;}
.ws1d_c01151{word-spacing:29.712160pt;}
.ws1e_c01151{word-spacing:30.477280pt;}
.ws12_c01151{word-spacing:30.787520pt;}
.ws11_c01151{word-spacing:30.796080pt;}
.ws21_c01151{word-spacing:30.923600pt;}
.ws13_c01151{word-spacing:31.497440pt;}
.ws22_c01151{word-spacing:31.688720pt;}
._2_c01151{margin-left:-33.474000pt;}
._4_c01151{margin-left:-31.816240pt;}
._8_c01151{margin-left:-29.775920pt;}
._9_c01151{margin-left:-25.465467pt;}
._b_c01151{margin-left:-24.292560pt;}
._a_c01151{margin-left:-7.013600pt;}
._6_c01151{margin-left:-6.060720pt;}
._3_c01151{margin-left:-4.718240pt;}
._0_c01151{margin-left:-3.188000pt;}
._5_c01151{margin-left:-1.594000pt;}
._1_c01151{width:1.657760pt;}
._d_c01151{width:5.658053pt;}
._7_c01151{width:7.806880pt;}
._c_c01151{width:38.527120pt;}
.fs0_c01151{font-size:63.760000pt;}
.y0_c01151{bottom:0.000000pt;}
.y1f_c01151{bottom:69.897333pt;}
.y1e_c01151{bottom:93.800000pt;}
.y1d_c01151{bottom:133.642667pt;}
.y1c_c01151{bottom:157.546667pt;}
.y1b_c01151{bottom:197.389333pt;}
.y1a_c01151{bottom:221.292000pt;}
.y19_c01151{bottom:261.136000pt;}
.y18_c01151{bottom:285.038667pt;}
.y17_c01151{bottom:308.941333pt;}
.y16_c01151{bottom:348.785333pt;}
.y15_c01151{bottom:372.688000pt;}
.y14_c01151{bottom:412.530667pt;}
.y13_c01151{bottom:436.434667pt;}
.y12_c01151{bottom:476.277333pt;}
.y11_c01151{bottom:500.180000pt;}
.y10_c01151{bottom:540.024000pt;}
.yf_c01151{bottom:563.926667pt;}
.ye_c01151{bottom:603.769333pt;}
.yd_c01151{bottom:627.672000pt;}
.yc_c01151{bottom:651.576000pt;}
.yb_c01151{bottom:691.418667pt;}
.ya_c01151{bottom:715.321333pt;}
.y9_c01151{bottom:755.165333pt;}
.y8_c01151{bottom:779.068000pt;}
.y7_c01151{bottom:802.970667pt;}
.y6_c01151{bottom:842.814667pt;}
.y5_c01151{bottom:866.717333pt;}
.y4_c01151{bottom:906.560000pt;}
.y3_c01151{bottom:930.462667pt;}
.y2_c01151{bottom:954.366667pt;}
.y1_c01151{bottom:1013.880000pt;}
.h2_c01151{height:47.820000pt;}
.h3_c01151{height:63.937333pt;}
.h1_c01151{height:1123.333333pt;}
.h0_c01151{height:1123.653333pt;}
.w0_c01151{width:794.550667pt;}
.w1_c01151{width:794.666667pt;}
.x0_c01151{left:0.000000pt;}
.x3_c01151{left:113.385333pt;}
.x2_c01151{left:142.078667pt;}
.x8_c01151{left:170.028000pt;}
.x4_c01151{left:187.702667pt;}
.x6_c01151{left:259.668000pt;}
.x5_c01151{left:409.685333pt;}
.x7_c01151{left:532.958667pt;}
.x1_c01151{left:657.753333pt;}
}





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

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





.ff0_c01152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01152;src:url('chunks/assets/font_f34bfbeaacf2ac0a2102be4c.woff2')format("woff");}.ff1_c01152{font-family:ff1_c01152;line-height:1.001000;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_c01152;src:url('chunks/assets/font_8ca058bb8b88748c4de1d49e.woff2')format("woff");}.ff2_c01152{font-family:ff2_c01152;line-height:1.001000;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_c01152{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_c01152{vertical-align:0.000000px;}
.v1_c01152{vertical-align:18.132000px;}
.ls1_c01152{letter-spacing:0.000000px;}
.ls0_c01152{letter-spacing:23.382300px;}
.sc__c01152{text-shadow:none;}
.sc0_c01152{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__c01152{-webkit-text-stroke:0px transparent;}
.sc0_c01152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01152{word-spacing:-0.071730px;}
.ws25_c01152{word-spacing:0.000000px;}
.ws17_c01152{word-spacing:15.639960px;}
.ws15_c01152{word-spacing:15.708870px;}
.ws8_c01152{word-spacing:17.502120px;}
.ws18_c01152{word-spacing:17.932500px;}
.ws13_c01152{word-spacing:18.649800px;}
.ws9_c01152{word-spacing:19.654020px;}
.ws14_c01152{word-spacing:20.729970px;}
.ws11_c01152{word-spacing:22.810140px;}
.ws6_c01152{word-spacing:23.312250px;}
.ws3_c01152{word-spacing:23.383980px;}
.ws1e_c01152{word-spacing:24.238200px;}
.wsa_c01152{word-spacing:24.244740px;}
.ws16_c01152{word-spacing:24.449310px;}
.ws20_c01152{word-spacing:24.515550px;}
.ws22_c01152{word-spacing:24.531660px;}
.ws12_c01152{word-spacing:24.603390px;}
.ws4_c01152{word-spacing:24.890310px;}
.ws7_c01152{word-spacing:25.033770px;}
.wse_c01152{word-spacing:25.248960px;}
.wsc_c01152{word-spacing:25.278060px;}
.wsb_c01152{word-spacing:25.822800px;}
.ws1f_c01152{word-spacing:25.894530px;}
.ws21_c01152{word-spacing:26.181450px;}
.ws5_c01152{word-spacing:26.468370px;}
.wsd_c01152{word-spacing:26.827020px;}
.ws19_c01152{word-spacing:27.868590px;}
.ws1a_c01152{word-spacing:29.194110px;}
.ws1b_c01152{word-spacing:29.337570px;}
.ws1d_c01152{word-spacing:29.409300px;}
.ws1c_c01152{word-spacing:30.628710px;}
.ws1_c01152{word-spacing:30.772170px;}
.wsf_c01152{word-spacing:30.843900px;}
.ws2_c01152{word-spacing:31.919850px;}
.ws10_c01152{word-spacing:31.991580px;}
.ws23_c01152{word-spacing:35.936730px;}
.ws24_c01152{word-spacing:36.654030px;}
._8_c01152{margin-left:-36.588000px;}
._4_c01152{margin-left:-35.291160px;}
._3_c01152{margin-left:-33.848460px;}
._6_c01152{margin-left:-29.312010px;}
._a_c01152{margin-left:-27.257400px;}
._5_c01152{margin-left:-7.890300px;}
._1_c01152{margin-left:-5.881860px;}
._2_c01152{margin-left:-3.662280px;}
._0_c01152{margin-left:-1.936710px;}
._b_c01152{width:1.005930px;}
._9_c01152{width:2.014440px;}
._7_c01152{width:4.068450px;}
._c_c01152{width:8.651850px;}
.fc0_c01152{color:rgb(0,0,0);}
.fs0_c01152{font-size:71.730000px;}
.y0_c01152{bottom:0.000000px;}
.y21_c01152{bottom:71.973000px;}
.y20_c01152{bottom:98.863500px;}
.y1f_c01152{bottom:125.754000px;}
.y1e_c01152{bottom:152.646000px;}
.y1d_c01152{bottom:179.536500px;}
.y1c_c01152{bottom:206.427000px;}
.y1b_c01152{bottom:233.317500px;}
.y1a_c01152{bottom:260.208000px;}
.y19_c01152{bottom:287.100000px;}
.y18_c01152{bottom:313.990500px;}
.y17_c01152{bottom:340.881000px;}
.y16_c01152{bottom:367.771500px;}
.y15_c01152{bottom:411.469500px;}
.y14_c01152{bottom:438.361500px;}
.y13_c01152{bottom:482.059500px;}
.y12_c01152{bottom:525.757500px;}
.y11_c01152{bottom:552.648000px;}
.y10_c01152{bottom:596.346000px;}
.yf_c01152{bottom:623.236500px;}
.ye_c01152{bottom:666.936000px;}
.yd_c01152{bottom:693.826500px;}
.yc_c01152{bottom:737.524500px;}
.yb_c01152{bottom:764.415000px;}
.ya_c01152{bottom:808.113000px;}
.y9_c01152{bottom:835.003500px;}
.y8_c01152{bottom:878.703000px;}
.y7_c01152{bottom:905.593500px;}
.y6_c01152{bottom:949.291500px;}
.y5_c01152{bottom:976.182000px;}
.y4_c01152{bottom:1003.072500px;}
.y3_c01152{bottom:1046.770500px;}
.y2_c01152{bottom:1073.662500px;}
.y1_c01152{bottom:1140.615000px;}
.h2_c01152{height:53.797500px;}
.h3_c01152{height:71.929500px;}
.h1_c01152{height:1263.750000px;}
.h0_c01152{height:1264.110000px;}
.w0_c01152{width:893.869500px;}
.w1_c01152{width:894.000000px;}
.x0_c01152{left:0.000000px;}
.x3_c01152{left:127.558500px;}
.x2_c01152{left:159.838500px;}
.x4_c01152{left:313.222500px;}
.x5_c01152{left:384.444000px;}
.x1_c01152{left:739.972500px;}
@media print{
.v0_c01152{vertical-align:0.000000pt;}
.v1_c01152{vertical-align:16.117333pt;}
.ls1_c01152{letter-spacing:0.000000pt;}
.ls0_c01152{letter-spacing:20.784267pt;}
.ws0_c01152{word-spacing:-0.063760pt;}
.ws25_c01152{word-spacing:0.000000pt;}
.ws17_c01152{word-spacing:13.902187pt;}
.ws15_c01152{word-spacing:13.963440pt;}
.ws8_c01152{word-spacing:15.557440pt;}
.ws18_c01152{word-spacing:15.940000pt;}
.ws13_c01152{word-spacing:16.577600pt;}
.ws9_c01152{word-spacing:17.470240pt;}
.ws14_c01152{word-spacing:18.426640pt;}
.ws11_c01152{word-spacing:20.275680pt;}
.ws6_c01152{word-spacing:20.722000pt;}
.ws3_c01152{word-spacing:20.785760pt;}
.ws1e_c01152{word-spacing:21.545067pt;}
.wsa_c01152{word-spacing:21.550880pt;}
.ws16_c01152{word-spacing:21.732720pt;}
.ws20_c01152{word-spacing:21.791600pt;}
.ws22_c01152{word-spacing:21.805920pt;}
.ws12_c01152{word-spacing:21.869680pt;}
.ws4_c01152{word-spacing:22.124720pt;}
.ws7_c01152{word-spacing:22.252240pt;}
.wse_c01152{word-spacing:22.443520pt;}
.wsc_c01152{word-spacing:22.469387pt;}
.wsb_c01152{word-spacing:22.953600pt;}
.ws1f_c01152{word-spacing:23.017360pt;}
.ws21_c01152{word-spacing:23.272400pt;}
.ws5_c01152{word-spacing:23.527440pt;}
.wsd_c01152{word-spacing:23.846240pt;}
.ws19_c01152{word-spacing:24.772080pt;}
.ws1a_c01152{word-spacing:25.950320pt;}
.ws1b_c01152{word-spacing:26.077840pt;}
.ws1d_c01152{word-spacing:26.141600pt;}
.ws1c_c01152{word-spacing:27.225520pt;}
.ws1_c01152{word-spacing:27.353040pt;}
.wsf_c01152{word-spacing:27.416800pt;}
.ws2_c01152{word-spacing:28.373200pt;}
.ws10_c01152{word-spacing:28.436960pt;}
.ws23_c01152{word-spacing:31.943760pt;}
.ws24_c01152{word-spacing:32.581360pt;}
._8_c01152{margin-left:-32.522667pt;}
._4_c01152{margin-left:-31.369920pt;}
._3_c01152{margin-left:-30.087520pt;}
._6_c01152{margin-left:-26.055120pt;}
._a_c01152{margin-left:-24.228800pt;}
._5_c01152{margin-left:-7.013600pt;}
._1_c01152{margin-left:-5.228320pt;}
._2_c01152{margin-left:-3.255360pt;}
._0_c01152{margin-left:-1.721520pt;}
._b_c01152{width:0.894160pt;}
._9_c01152{width:1.790613pt;}
._7_c01152{width:3.616400pt;}
._c_c01152{width:7.690533pt;}
.fs0_c01152{font-size:63.760000pt;}
.y0_c01152{bottom:0.000000pt;}
.y21_c01152{bottom:63.976000pt;}
.y20_c01152{bottom:87.878667pt;}
.y1f_c01152{bottom:111.781333pt;}
.y1e_c01152{bottom:135.685333pt;}
.y1d_c01152{bottom:159.588000pt;}
.y1c_c01152{bottom:183.490667pt;}
.y1b_c01152{bottom:207.393333pt;}
.y1a_c01152{bottom:231.296000pt;}
.y19_c01152{bottom:255.200000pt;}
.y18_c01152{bottom:279.102667pt;}
.y17_c01152{bottom:303.005333pt;}
.y16_c01152{bottom:326.908000pt;}
.y15_c01152{bottom:365.750667pt;}
.y14_c01152{bottom:389.654667pt;}
.y13_c01152{bottom:428.497333pt;}
.y12_c01152{bottom:467.340000pt;}
.y11_c01152{bottom:491.242667pt;}
.y10_c01152{bottom:530.085333pt;}
.yf_c01152{bottom:553.988000pt;}
.ye_c01152{bottom:592.832000pt;}
.yd_c01152{bottom:616.734667pt;}
.yc_c01152{bottom:655.577333pt;}
.yb_c01152{bottom:679.480000pt;}
.ya_c01152{bottom:718.322667pt;}
.y9_c01152{bottom:742.225333pt;}
.y8_c01152{bottom:781.069333pt;}
.y7_c01152{bottom:804.972000pt;}
.y6_c01152{bottom:843.814667pt;}
.y5_c01152{bottom:867.717333pt;}
.y4_c01152{bottom:891.620000pt;}
.y3_c01152{bottom:930.462667pt;}
.y2_c01152{bottom:954.366667pt;}
.y1_c01152{bottom:1013.880000pt;}
.h2_c01152{height:47.820000pt;}
.h3_c01152{height:63.937333pt;}
.h1_c01152{height:1123.333333pt;}
.h0_c01152{height:1123.653333pt;}
.w0_c01152{width:794.550667pt;}
.w1_c01152{width:794.666667pt;}
.x0_c01152{left:0.000000pt;}
.x3_c01152{left:113.385333pt;}
.x2_c01152{left:142.078667pt;}
.x4_c01152{left:278.420000pt;}
.x5_c01152{left:341.728000pt;}
.x1_c01152{left:657.753333pt;}
}





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

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





.ff0_c01153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01153;src:url('chunks/assets/font_d2db0413039e2df7977d3fbd.woff2')format("woff");}.ff1_c01153{font-family:ff1_c01153;line-height:1.001000;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_c01153;src:url('chunks/assets/font_0eb0ad4437a71b1fefe71bda.woff2')format("woff");}.ff2_c01153{font-family:ff2_c01153;line-height:1.001000;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_c01153{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_c01153{vertical-align:0.000000px;}
.v1_c01153{vertical-align:18.132000px;}
.ls4_c01153{letter-spacing:0.000000px;}
.ls2_c01153{letter-spacing:8.766180px;}
.ls3_c01153{letter-spacing:8.772180px;}
.ls0_c01153{letter-spacing:17.724300px;}
.ls1_c01153{letter-spacing:27.774300px;}
.sc__c01153{text-shadow:none;}
.sc0_c01153{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__c01153{-webkit-text-stroke:0px transparent;}
.sc0_c01153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01153{word-spacing:-0.071730px;}
.ws2c_c01153{word-spacing:0.000000px;}
.ws28_c01153{word-spacing:16.067520px;}
.ws1b_c01153{word-spacing:17.358660px;}
.ws1_c01153{word-spacing:17.502120px;}
.wsb_c01153{word-spacing:17.717310px;}
.ws29_c01153{word-spacing:18.362880px;}
.ws1d_c01153{word-spacing:18.936720px;}
.ws1c_c01153{word-spacing:19.582290px;}
.ws24_c01153{word-spacing:19.654020px;}
.ws2_c01153{word-spacing:19.725750px;}
.wsa_c01153{word-spacing:19.869210px;}
.wsf_c01153{word-spacing:20.371320px;}
.ws18_c01153{word-spacing:20.815710px;}
.ws1a_c01153{word-spacing:20.873430px;}
.ws1e_c01153{word-spacing:21.016890px;}
.ws20_c01153{word-spacing:21.232080px;}
.ws25_c01153{word-spacing:21.662460px;}
.ws10_c01153{word-spacing:22.308030px;}
.ws19_c01153{word-spacing:22.738410px;}
.ws1f_c01153{word-spacing:23.097060px;}
.ws7_c01153{word-spacing:23.312250px;}
.ws3_c01153{word-spacing:23.383980px;}
.wsc_c01153{word-spacing:24.388200px;}
.wse_c01153{word-spacing:24.459930px;}
.ws11_c01153{word-spacing:25.033770px;}
.wsd_c01153{word-spacing:26.037990px;}
.ws13_c01153{word-spacing:27.027960px;}
.ws12_c01153{word-spacing:27.042210px;}
.ws27_c01153{word-spacing:27.759510px;}
.ws4_c01153{word-spacing:28.033920px;}
.ws6_c01153{word-spacing:28.046430px;}
.ws8_c01153{word-spacing:28.189890px;}
.ws14_c01153{word-spacing:28.476810px;}
.ws21_c01153{word-spacing:28.620270px;}
.ws23_c01153{word-spacing:28.692000px;}
.ws26_c01153{word-spacing:29.050650px;}
.ws5_c01153{word-spacing:29.337570px;}
.ws9_c01153{word-spacing:29.552760px;}
.ws22_c01153{word-spacing:29.911410px;}
.ws16_c01153{word-spacing:30.054870px;}
.ws15_c01153{word-spacing:30.126600px;}
.ws17_c01153{word-spacing:31.274280px;}
.ws2a_c01153{word-spacing:33.282720px;}
.ws2b_c01153{word-spacing:34.215210px;}
._a_c01153{margin-left:-37.903530px;}
._2_c01153{margin-left:-36.023430px;}
._b_c01153{margin-left:-34.801830px;}
._9_c01153{margin-left:-33.205920px;}
._7_c01153{margin-left:-28.692000px;}
._6_c01153{margin-left:-7.433100px;}
._4_c01153{margin-left:-5.640540px;}
._0_c01153{margin-left:-3.571530px;}
._1_c01153{margin-left:-1.864980px;}
._8_c01153{width:1.936710px;}
._f_c01153{width:3.708720px;}
._5_c01153{width:8.685090px;}
._d_c01153{width:9.745170px;}
._e_c01153{width:23.493180px;}
._c_c01153{width:35.820960px;}
._3_c01153{width:42.201690px;}
.fc0_c01153{color:rgb(0,0,0);}
.fs0_c01153{font-size:71.730000px;}
.y0_c01153{bottom:0.000000px;}
.y1f_c01153{bottom:78.634500px;}
.y1e_c01153{bottom:105.525000px;}
.y1d_c01153{bottom:150.348000px;}
.y1c_c01153{bottom:195.172500px;}
.y1b_c01153{bottom:222.063000px;}
.y1a_c01153{bottom:248.953500px;}
.y19_c01153{bottom:293.778000px;}
.y18_c01153{bottom:320.668500px;}
.y17_c01153{bottom:365.491500px;}
.y16_c01153{bottom:392.383500px;}
.y15_c01153{bottom:419.274000px;}
.y14_c01153{bottom:464.097000px;}
.y13_c01153{bottom:490.987500px;}
.y12_c01153{bottom:535.812000px;}
.y11_c01153{bottom:562.702500px;}
.y10_c01153{bottom:607.525500px;}
.yf_c01153{bottom:634.417500px;}
.ye_c01153{bottom:679.240500px;}
.yd_c01153{bottom:706.131000px;}
.yc_c01153{bottom:750.955500px;}
.yb_c01153{bottom:777.846000px;}
.ya_c01153{bottom:822.669000px;}
.y9_c01153{bottom:849.561000px;}
.y8_c01153{bottom:894.384000px;}
.y7_c01153{bottom:921.274500px;}
.y6_c01153{bottom:948.166500px;}
.y5_c01153{bottom:992.989500px;}
.y4_c01153{bottom:1019.880000px;}
.y3_c01153{bottom:1046.770500px;}
.y2_c01153{bottom:1073.662500px;}
.y1_c01153{bottom:1140.615000px;}
.h2_c01153{height:53.797500px;}
.h3_c01153{height:71.929500px;}
.h1_c01153{height:1263.750000px;}
.h0_c01153{height:1264.110000px;}
.w0_c01153{width:893.869500px;}
.w1_c01153{width:894.000000px;}
.x0_c01153{left:0.000000px;}
.x3_c01153{left:127.558500px;}
.x2_c01153{left:159.838500px;}
.xd_c01153{left:173.001000px;}
.xe_c01153{left:186.163500px;}
.x6_c01153{left:202.012500px;}
.x9_c01153{left:213.231000px;}
.xb_c01153{left:225.666000px;}
.x5_c01153{left:227.370000px;}
.x7_c01153{left:241.515000px;}
.xa_c01153{left:291.598500px;}
.xc_c01153{left:295.327500px;}
.x8_c01153{left:331.629000px;}
.x4_c01153{left:381.190500px;}
.x1_c01153{left:739.972500px;}
@media print{
.v0_c01153{vertical-align:0.000000pt;}
.v1_c01153{vertical-align:16.117333pt;}
.ls4_c01153{letter-spacing:0.000000pt;}
.ls2_c01153{letter-spacing:7.792160pt;}
.ls3_c01153{letter-spacing:7.797493pt;}
.ls0_c01153{letter-spacing:15.754933pt;}
.ls1_c01153{letter-spacing:24.688267pt;}
.ws0_c01153{word-spacing:-0.063760pt;}
.ws2c_c01153{word-spacing:0.000000pt;}
.ws28_c01153{word-spacing:14.282240pt;}
.ws1b_c01153{word-spacing:15.429920pt;}
.ws1_c01153{word-spacing:15.557440pt;}
.wsb_c01153{word-spacing:15.748720pt;}
.ws29_c01153{word-spacing:16.322560pt;}
.ws1d_c01153{word-spacing:16.832640pt;}
.ws1c_c01153{word-spacing:17.406480pt;}
.ws24_c01153{word-spacing:17.470240pt;}
.ws2_c01153{word-spacing:17.534000pt;}
.wsa_c01153{word-spacing:17.661520pt;}
.wsf_c01153{word-spacing:18.107840pt;}
.ws18_c01153{word-spacing:18.502853pt;}
.ws1a_c01153{word-spacing:18.554160pt;}
.ws1e_c01153{word-spacing:18.681680pt;}
.ws20_c01153{word-spacing:18.872960pt;}
.ws25_c01153{word-spacing:19.255520pt;}
.ws10_c01153{word-spacing:19.829360pt;}
.ws19_c01153{word-spacing:20.211920pt;}
.ws1f_c01153{word-spacing:20.530720pt;}
.ws7_c01153{word-spacing:20.722000pt;}
.ws3_c01153{word-spacing:20.785760pt;}
.wsc_c01153{word-spacing:21.678400pt;}
.wse_c01153{word-spacing:21.742160pt;}
.ws11_c01153{word-spacing:22.252240pt;}
.wsd_c01153{word-spacing:23.144880pt;}
.ws13_c01153{word-spacing:24.024853pt;}
.ws12_c01153{word-spacing:24.037520pt;}
.ws27_c01153{word-spacing:24.675120pt;}
.ws4_c01153{word-spacing:24.919040pt;}
.ws6_c01153{word-spacing:24.930160pt;}
.ws8_c01153{word-spacing:25.057680pt;}
.ws14_c01153{word-spacing:25.312720pt;}
.ws21_c01153{word-spacing:25.440240pt;}
.ws23_c01153{word-spacing:25.504000pt;}
.ws26_c01153{word-spacing:25.822800pt;}
.ws5_c01153{word-spacing:26.077840pt;}
.ws9_c01153{word-spacing:26.269120pt;}
.ws22_c01153{word-spacing:26.587920pt;}
.ws16_c01153{word-spacing:26.715440pt;}
.ws15_c01153{word-spacing:26.779200pt;}
.ws17_c01153{word-spacing:27.799360pt;}
.ws2a_c01153{word-spacing:29.584640pt;}
.ws2b_c01153{word-spacing:30.413520pt;}
._a_c01153{margin-left:-33.692027pt;}
._2_c01153{margin-left:-32.020827pt;}
._b_c01153{margin-left:-30.934960pt;}
._9_c01153{margin-left:-29.516373pt;}
._7_c01153{margin-left:-25.504000pt;}
._6_c01153{margin-left:-6.607200pt;}
._4_c01153{margin-left:-5.013813pt;}
._0_c01153{margin-left:-3.174693pt;}
._1_c01153{margin-left:-1.657760pt;}
._8_c01153{width:1.721520pt;}
._f_c01153{width:3.296640pt;}
._5_c01153{width:7.720080pt;}
._d_c01153{width:8.662373pt;}
._e_c01153{width:20.882827pt;}
._c_c01153{width:31.840853pt;}
._3_c01153{width:37.512613pt;}
.fs0_c01153{font-size:63.760000pt;}
.y0_c01153{bottom:0.000000pt;}
.y1f_c01153{bottom:69.897333pt;}
.y1e_c01153{bottom:93.800000pt;}
.y1d_c01153{bottom:133.642667pt;}
.y1c_c01153{bottom:173.486667pt;}
.y1b_c01153{bottom:197.389333pt;}
.y1a_c01153{bottom:221.292000pt;}
.y19_c01153{bottom:261.136000pt;}
.y18_c01153{bottom:285.038667pt;}
.y17_c01153{bottom:324.881333pt;}
.y16_c01153{bottom:348.785333pt;}
.y15_c01153{bottom:372.688000pt;}
.y14_c01153{bottom:412.530667pt;}
.y13_c01153{bottom:436.433333pt;}
.y12_c01153{bottom:476.277333pt;}
.y11_c01153{bottom:500.180000pt;}
.y10_c01153{bottom:540.022667pt;}
.yf_c01153{bottom:563.926667pt;}
.ye_c01153{bottom:603.769333pt;}
.yd_c01153{bottom:627.672000pt;}
.yc_c01153{bottom:667.516000pt;}
.yb_c01153{bottom:691.418667pt;}
.ya_c01153{bottom:731.261333pt;}
.y9_c01153{bottom:755.165333pt;}
.y8_c01153{bottom:795.008000pt;}
.y7_c01153{bottom:818.910667pt;}
.y6_c01153{bottom:842.814667pt;}
.y5_c01153{bottom:882.657333pt;}
.y4_c01153{bottom:906.560000pt;}
.y3_c01153{bottom:930.462667pt;}
.y2_c01153{bottom:954.366667pt;}
.y1_c01153{bottom:1013.880000pt;}
.h2_c01153{height:47.820000pt;}
.h3_c01153{height:63.937333pt;}
.h1_c01153{height:1123.333333pt;}
.h0_c01153{height:1123.653333pt;}
.w0_c01153{width:794.550667pt;}
.w1_c01153{width:794.666667pt;}
.x0_c01153{left:0.000000pt;}
.x3_c01153{left:113.385333pt;}
.x2_c01153{left:142.078667pt;}
.xd_c01153{left:153.778667pt;}
.xe_c01153{left:165.478667pt;}
.x6_c01153{left:179.566667pt;}
.x9_c01153{left:189.538667pt;}
.xb_c01153{left:200.592000pt;}
.x5_c01153{left:202.106667pt;}
.x7_c01153{left:214.680000pt;}
.xa_c01153{left:259.198667pt;}
.xc_c01153{left:262.513333pt;}
.x8_c01153{left:294.781333pt;}
.x4_c01153{left:338.836000pt;}
.x1_c01153{left:657.753333pt;}
}





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

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





.ff0_c01154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01154;src:url('chunks/assets/font_5fa738297efd264ebc46f4bc.woff2')format("woff");}.ff1_c01154{font-family:ff1_c01154;line-height:1.001000;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_c01154;src:url('chunks/assets/font_04a987140729a099c268358c.woff2')format("woff");}.ff2_c01154{font-family:ff2_c01154;line-height:1.001000;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_c01154{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_c01154{vertical-align:0.000000px;}
.v1_c01154{vertical-align:18.132000px;}
.ls3_c01154{letter-spacing:0.000000px;}
.ls1_c01154{letter-spacing:6.347820px;}
.ls0_c01154{letter-spacing:8.737740px;}
.ls2_c01154{letter-spacing:25.020300px;}
.sc__c01154{text-shadow:none;}
.sc0_c01154{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__c01154{-webkit-text-stroke:0px transparent;}
.sc0_c01154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01154{word-spacing:-0.071730px;}
.ws23_c01154{word-spacing:0.000000px;}
.ws10_c01154{word-spacing:15.637140px;}
.ws18_c01154{word-spacing:15.708870px;}
.ws19_c01154{word-spacing:17.342490px;}
.ws11_c01154{word-spacing:17.932500px;}
.ws12_c01154{word-spacing:18.710640px;}
.ws14_c01154{word-spacing:18.721530px;}
.ws1a_c01154{word-spacing:19.510560px;}
.ws13_c01154{word-spacing:20.801700px;}
.ws7_c01154{word-spacing:21.662460px;}
.ws1f_c01154{word-spacing:21.734190px;}
.wsc_c01154{word-spacing:23.168790px;}
.ws5_c01154{word-spacing:23.312250px;}
.wsb_c01154{word-spacing:23.383980px;}
.ws8_c01154{word-spacing:23.527440px;}
.ws20_c01154{word-spacing:23.599170px;}
.ws2_c01154{word-spacing:24.596520px;}
.ws4_c01154{word-spacing:24.603390px;}
.ws1_c01154{word-spacing:24.675120px;}
.wsd_c01154{word-spacing:24.890310px;}
.wsf_c01154{word-spacing:24.962040px;}
.ws6_c01154{word-spacing:25.033770px;}
.ws3_c01154{word-spacing:26.181450px;}
.wse_c01154{word-spacing:26.540100px;}
.ws21_c01154{word-spacing:28.118160px;}
.ws1c_c01154{word-spacing:29.337570px;}
.ws22_c01154{word-spacing:29.409300px;}
.ws1b_c01154{word-spacing:30.556980px;}
.ws17_c01154{word-spacing:30.628710px;}
.ws15_c01154{word-spacing:30.700440px;}
.ws16_c01154{word-spacing:31.776390px;}
.ws9_c01154{word-spacing:35.649810px;}
.ws1d_c01154{word-spacing:36.166110px;}
.wsa_c01154{word-spacing:36.367110px;}
.ws1e_c01154{word-spacing:36.869220px;}
._a_c01154{margin-left:-37.658250px;}
._1_c01154{margin-left:-35.858130px;}
._b_c01154{margin-left:-33.877170px;}
._8_c01154{margin-left:-28.692000px;}
._7_c01154{margin-left:-7.277130px;}
._6_c01154{margin-left:-5.810130px;}
._2_c01154{margin-left:-3.586500px;}
._4_c01154{margin-left:-2.008440px;}
._9_c01154{width:1.936710px;}
._3_c01154{width:3.658230px;}
._0_c01154{width:9.680370px;}
._5_c01154{width:10.796550px;}
.fc0_c01154{color:rgb(0,0,0);}
.fs0_c01154{font-size:71.730000px;}
.y0_c01154{bottom:0.000000px;}
.y1e_c01154{bottom:87.592500px;}
.y1d_c01154{bottom:114.483000px;}
.y1c_c01154{bottom:159.307500px;}
.y1b_c01154{bottom:186.198000px;}
.y1a_c01154{bottom:231.021000px;}
.y19_c01154{bottom:257.911500px;}
.y18_c01154{bottom:302.736000px;}
.y17_c01154{bottom:329.626500px;}
.y16_c01154{bottom:356.517000px;}
.y15_c01154{bottom:401.341500px;}
.y14_c01154{bottom:446.164500px;}
.y13_c01154{bottom:473.055000px;}
.y12_c01154{bottom:517.879500px;}
.y11_c01154{bottom:544.770000px;}
.y10_c01154{bottom:589.593000px;}
.yf_c01154{bottom:616.485000px;}
.ye_c01154{bottom:661.308000px;}
.yd_c01154{bottom:688.198500px;}
.yc_c01154{bottom:733.023000px;}
.yb_c01154{bottom:759.913500px;}
.ya_c01154{bottom:786.804000px;}
.y9_c01154{bottom:813.694500px;}
.y8_c01154{bottom:858.519000px;}
.y7_c01154{bottom:885.409500px;}
.y6_c01154{bottom:930.232500px;}
.y5_c01154{bottom:957.124500px;}
.y4_c01154{bottom:1001.947500px;}
.y3_c01154{bottom:1046.770500px;}
.y2_c01154{bottom:1073.662500px;}
.y1_c01154{bottom:1140.615000px;}
.h2_c01154{height:53.797500px;}
.h3_c01154{height:71.929500px;}
.h1_c01154{height:1263.750000px;}
.h0_c01154{height:1264.110000px;}
.w0_c01154{width:893.869500px;}
.w1_c01154{width:894.000000px;}
.x0_c01154{left:0.000000px;}
.x6_c01154{left:127.558500px;}
.x2_c01154{left:159.838500px;}
.x7_c01154{left:171.784500px;}
.x3_c01154{left:199.827000px;}
.x8_c01154{left:202.012500px;}
.x9_c01154{left:204.939000px;}
.x4_c01154{left:213.484500px;}
.xa_c01154{left:289.269000px;}
.x5_c01154{left:304.987500px;}
.x1_c01154{left:739.972500px;}
@media print{
.v0_c01154{vertical-align:0.000000pt;}
.v1_c01154{vertical-align:16.117333pt;}
.ls3_c01154{letter-spacing:0.000000pt;}
.ls1_c01154{letter-spacing:5.642507pt;}
.ls0_c01154{letter-spacing:7.766880pt;}
.ls2_c01154{letter-spacing:22.240267pt;}
.ws0_c01154{word-spacing:-0.063760pt;}
.ws23_c01154{word-spacing:0.000000pt;}
.ws10_c01154{word-spacing:13.899680pt;}
.ws18_c01154{word-spacing:13.963440pt;}
.ws19_c01154{word-spacing:15.415547pt;}
.ws11_c01154{word-spacing:15.940000pt;}
.ws12_c01154{word-spacing:16.631680pt;}
.ws14_c01154{word-spacing:16.641360pt;}
.ws1a_c01154{word-spacing:17.342720pt;}
.ws13_c01154{word-spacing:18.490400pt;}
.ws7_c01154{word-spacing:19.255520pt;}
.ws1f_c01154{word-spacing:19.319280pt;}
.wsc_c01154{word-spacing:20.594480pt;}
.ws5_c01154{word-spacing:20.722000pt;}
.wsb_c01154{word-spacing:20.785760pt;}
.ws8_c01154{word-spacing:20.913280pt;}
.ws20_c01154{word-spacing:20.977040pt;}
.ws2_c01154{word-spacing:21.863573pt;}
.ws4_c01154{word-spacing:21.869680pt;}
.ws1_c01154{word-spacing:21.933440pt;}
.wsd_c01154{word-spacing:22.124720pt;}
.wsf_c01154{word-spacing:22.188480pt;}
.ws6_c01154{word-spacing:22.252240pt;}
.ws3_c01154{word-spacing:23.272400pt;}
.wse_c01154{word-spacing:23.591200pt;}
.ws21_c01154{word-spacing:24.993920pt;}
.ws1c_c01154{word-spacing:26.077840pt;}
.ws22_c01154{word-spacing:26.141600pt;}
.ws1b_c01154{word-spacing:27.161760pt;}
.ws17_c01154{word-spacing:27.225520pt;}
.ws15_c01154{word-spacing:27.289280pt;}
.ws16_c01154{word-spacing:28.245680pt;}
.ws9_c01154{word-spacing:31.688720pt;}
.ws1d_c01154{word-spacing:32.147653pt;}
.wsa_c01154{word-spacing:32.326320pt;}
.ws1e_c01154{word-spacing:32.772640pt;}
._a_c01154{margin-left:-33.474000pt;}
._1_c01154{margin-left:-31.873893pt;}
._b_c01154{margin-left:-30.113040pt;}
._8_c01154{margin-left:-25.504000pt;}
._7_c01154{margin-left:-6.468560pt;}
._6_c01154{margin-left:-5.164560pt;}
._2_c01154{margin-left:-3.188000pt;}
._4_c01154{margin-left:-1.785280pt;}
._9_c01154{width:1.721520pt;}
._3_c01154{width:3.251760pt;}
._0_c01154{width:8.604773pt;}
._5_c01154{width:9.596933pt;}
.fs0_c01154{font-size:63.760000pt;}
.y0_c01154{bottom:0.000000pt;}
.y1e_c01154{bottom:77.860000pt;}
.y1d_c01154{bottom:101.762667pt;}
.y1c_c01154{bottom:141.606667pt;}
.y1b_c01154{bottom:165.509333pt;}
.y1a_c01154{bottom:205.352000pt;}
.y19_c01154{bottom:229.254667pt;}
.y18_c01154{bottom:269.098667pt;}
.y17_c01154{bottom:293.001333pt;}
.y16_c01154{bottom:316.904000pt;}
.y15_c01154{bottom:356.748000pt;}
.y14_c01154{bottom:396.590667pt;}
.y13_c01154{bottom:420.493333pt;}
.y12_c01154{bottom:460.337333pt;}
.y11_c01154{bottom:484.240000pt;}
.y10_c01154{bottom:524.082667pt;}
.yf_c01154{bottom:547.986667pt;}
.ye_c01154{bottom:587.829333pt;}
.yd_c01154{bottom:611.732000pt;}
.yc_c01154{bottom:651.576000pt;}
.yb_c01154{bottom:675.478667pt;}
.ya_c01154{bottom:699.381333pt;}
.y9_c01154{bottom:723.284000pt;}
.y8_c01154{bottom:763.128000pt;}
.y7_c01154{bottom:787.030667pt;}
.y6_c01154{bottom:826.873333pt;}
.y5_c01154{bottom:850.777333pt;}
.y4_c01154{bottom:890.620000pt;}
.y3_c01154{bottom:930.462667pt;}
.y2_c01154{bottom:954.366667pt;}
.y1_c01154{bottom:1013.880000pt;}
.h2_c01154{height:47.820000pt;}
.h3_c01154{height:63.937333pt;}
.h1_c01154{height:1123.333333pt;}
.h0_c01154{height:1123.653333pt;}
.w0_c01154{width:794.550667pt;}
.w1_c01154{width:794.666667pt;}
.x0_c01154{left:0.000000pt;}
.x6_c01154{left:113.385333pt;}
.x2_c01154{left:142.078667pt;}
.x7_c01154{left:152.697333pt;}
.x3_c01154{left:177.624000pt;}
.x8_c01154{left:179.566667pt;}
.x9_c01154{left:182.168000pt;}
.x4_c01154{left:189.764000pt;}
.xa_c01154{left:257.128000pt;}
.x5_c01154{left:271.100000pt;}
.x1_c01154{left:657.753333pt;}
}





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

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





.ff0_c01155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01155;src:url('chunks/assets/font_c017168c0ae3ecd57a0068ff.woff2')format("woff");}.ff1_c01155{font-family:ff1_c01155;line-height:1.001000;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_c01155;src:url('chunks/assets/font_4f7105bc84aa4f6dfad82aba.woff2')format("woff");}.ff2_c01155{font-family:ff2_c01155;line-height:1.001000;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_c01155{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_c01155{vertical-align:0.000000px;}
.v1_c01155{vertical-align:18.132000px;}
.ls4_c01155{letter-spacing:0.000000px;}
.ls0_c01155{letter-spacing:8.738670px;}
.ls3_c01155{letter-spacing:18.930300px;}
.ls2_c01155{letter-spacing:21.684300px;}
.ls1_c01155{letter-spacing:23.382300px;}
.sc__c01155{text-shadow:none;}
.sc0_c01155{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__c01155{-webkit-text-stroke:0px transparent;}
.sc0_c01155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01155{word-spacing:-0.071730px;}
.ws21_c01155{word-spacing:0.000000px;}
.ws1f_c01155{word-spacing:19.295370px;}
.ws1e_c01155{word-spacing:19.654020px;}
.ws7_c01155{word-spacing:20.658240px;}
.wsf_c01155{word-spacing:20.873430px;}
.ws18_c01155{word-spacing:20.945160px;}
.ws20_c01155{word-spacing:21.303810px;}
.wse_c01155{word-spacing:21.662460px;}
.wsb_c01155{word-spacing:22.021110px;}
.ws1c_c01155{word-spacing:22.236300px;}
.ws8_c01155{word-spacing:22.594950px;}
.ws1_c01155{word-spacing:22.738410px;}
.ws3_c01155{word-spacing:23.312250px;}
.wsc_c01155{word-spacing:23.370300px;}
.ws6_c01155{word-spacing:23.383980px;}
.wsd_c01155{word-spacing:23.455710px;}
.ws4_c01155{word-spacing:23.527440px;}
.ws1d_c01155{word-spacing:24.029550px;}
.ws2_c01155{word-spacing:24.459930px;}
.ws9_c01155{word-spacing:25.033770px;}
.ws5_c01155{word-spacing:25.248960px;}
.wsa_c01155{word-spacing:26.827020px;}
.ws12_c01155{word-spacing:27.042210px;}
.ws19_c01155{word-spacing:27.616050px;}
.ws1b_c01155{word-spacing:27.687780px;}
.ws13_c01155{word-spacing:28.405080px;}
.ws1a_c01155{word-spacing:29.050650px;}
.ws17_c01155{word-spacing:34.000020px;}
.ws14_c01155{word-spacing:34.286940px;}
.ws16_c01155{word-spacing:34.789050px;}
.ws15_c01155{word-spacing:35.147700px;}
.ws10_c01155{word-spacing:36.295380px;}
.ws11_c01155{word-spacing:36.940950px;}
._9_c01155{margin-left:-37.801710px;}
._d_c01155{margin-left:-36.025950px;}
._5_c01155{margin-left:-34.974690px;}
._1_c01155{margin-left:-33.968190px;}
._a_c01155{margin-left:-32.870730px;}
._3_c01155{margin-left:-27.329130px;}
._2_c01155{margin-left:-7.603380px;}
._4_c01155{margin-left:-5.006250px;}
._6_c01155{margin-left:-3.586500px;}
._0_c01155{margin-left:-1.936710px;}
._8_c01155{width:1.936710px;}
._b_c01155{width:3.612210px;}
._c_c01155{width:8.792520px;}
._7_c01155{width:22.436640px;}
.fc0_c01155{color:rgb(0,0,0);}
.fs0_c01155{font-size:71.730000px;}
.y0_c01155{bottom:0.000000px;}
.y1f_c01155{bottom:96.567000px;}
.y1e_c01155{bottom:123.457500px;}
.y1d_c01155{bottom:168.282000px;}
.y1c_c01155{bottom:195.172500px;}
.y1b_c01155{bottom:239.995500px;}
.y1a_c01155{bottom:266.887500px;}
.y19_c01155{bottom:311.710500px;}
.y18_c01155{bottom:338.601000px;}
.y17_c01155{bottom:365.491500px;}
.y16_c01155{bottom:392.383500px;}
.y15_c01155{bottom:419.274000px;}
.y14_c01155{bottom:464.097000px;}
.y13_c01155{bottom:490.989000px;}
.y12_c01155{bottom:535.812000px;}
.y11_c01155{bottom:562.702500px;}
.y10_c01155{bottom:607.527000px;}
.yf_c01155{bottom:634.417500px;}
.ye_c01155{bottom:679.240500px;}
.yd_c01155{bottom:706.131000px;}
.yc_c01155{bottom:733.023000px;}
.yb_c01155{bottom:777.846000px;}
.ya_c01155{bottom:804.736500px;}
.y9_c01155{bottom:831.628500px;}
.y8_c01155{bottom:858.519000px;}
.y7_c01155{bottom:903.342000px;}
.y6_c01155{bottom:930.232500px;}
.y5_c01155{bottom:975.057000px;}
.y4_c01155{bottom:1001.947500px;}
.y3_c01155{bottom:1046.770500px;}
.y2_c01155{bottom:1073.662500px;}
.y1_c01155{bottom:1140.615000px;}
.h2_c01155{height:53.797500px;}
.h3_c01155{height:71.929500px;}
.h1_c01155{height:1263.750000px;}
.h0_c01155{height:1264.110000px;}
.w0_c01155{width:893.869500px;}
.w1_c01155{width:894.000000px;}
.x0_c01155{left:0.000000px;}
.x3_c01155{left:127.558500px;}
.x2_c01155{left:159.838500px;}
.x6_c01155{left:172.761000px;}
.x8_c01155{left:193.486500px;}
.x4_c01155{left:212.262000px;}
.x7_c01155{left:262.474500px;}
.x5_c01155{left:326.167500px;}
.x1_c01155{left:739.972500px;}
@media print{
.v0_c01155{vertical-align:0.000000pt;}
.v1_c01155{vertical-align:16.117333pt;}
.ls4_c01155{letter-spacing:0.000000pt;}
.ls0_c01155{letter-spacing:7.767707pt;}
.ls3_c01155{letter-spacing:16.826933pt;}
.ls2_c01155{letter-spacing:19.274933pt;}
.ls1_c01155{letter-spacing:20.784267pt;}
.ws0_c01155{word-spacing:-0.063760pt;}
.ws21_c01155{word-spacing:0.000000pt;}
.ws1f_c01155{word-spacing:17.151440pt;}
.ws1e_c01155{word-spacing:17.470240pt;}
.ws7_c01155{word-spacing:18.362880pt;}
.wsf_c01155{word-spacing:18.554160pt;}
.ws18_c01155{word-spacing:18.617920pt;}
.ws20_c01155{word-spacing:18.936720pt;}
.wse_c01155{word-spacing:19.255520pt;}
.wsb_c01155{word-spacing:19.574320pt;}
.ws1c_c01155{word-spacing:19.765600pt;}
.ws8_c01155{word-spacing:20.084400pt;}
.ws1_c01155{word-spacing:20.211920pt;}
.ws3_c01155{word-spacing:20.722000pt;}
.wsc_c01155{word-spacing:20.773600pt;}
.ws6_c01155{word-spacing:20.785760pt;}
.wsd_c01155{word-spacing:20.849520pt;}
.ws4_c01155{word-spacing:20.913280pt;}
.ws1d_c01155{word-spacing:21.359600pt;}
.ws2_c01155{word-spacing:21.742160pt;}
.ws9_c01155{word-spacing:22.252240pt;}
.ws5_c01155{word-spacing:22.443520pt;}
.wsa_c01155{word-spacing:23.846240pt;}
.ws12_c01155{word-spacing:24.037520pt;}
.ws19_c01155{word-spacing:24.547600pt;}
.ws1b_c01155{word-spacing:24.611360pt;}
.ws13_c01155{word-spacing:25.248960pt;}
.ws1a_c01155{word-spacing:25.822800pt;}
.ws17_c01155{word-spacing:30.222240pt;}
.ws14_c01155{word-spacing:30.477280pt;}
.ws16_c01155{word-spacing:30.923600pt;}
.ws15_c01155{word-spacing:31.242400pt;}
.ws10_c01155{word-spacing:32.262560pt;}
.ws11_c01155{word-spacing:32.836400pt;}
._9_c01155{margin-left:-33.601520pt;}
._d_c01155{margin-left:-32.023067pt;}
._5_c01155{margin-left:-31.088613pt;}
._1_c01155{margin-left:-30.193947pt;}
._a_c01155{margin-left:-29.218427pt;}
._3_c01155{margin-left:-24.292560pt;}
._2_c01155{margin-left:-6.758560pt;}
._4_c01155{margin-left:-4.450000pt;}
._6_c01155{margin-left:-3.188000pt;}
._0_c01155{margin-left:-1.721520pt;}
._8_c01155{width:1.721520pt;}
._b_c01155{width:3.210853pt;}
._c_c01155{width:7.815573pt;}
._7_c01155{width:19.943680pt;}
.fs0_c01155{font-size:63.760000pt;}
.y0_c01155{bottom:0.000000pt;}
.y1f_c01155{bottom:85.837333pt;}
.y1e_c01155{bottom:109.740000pt;}
.y1d_c01155{bottom:149.584000pt;}
.y1c_c01155{bottom:173.486667pt;}
.y1b_c01155{bottom:213.329333pt;}
.y1a_c01155{bottom:237.233333pt;}
.y19_c01155{bottom:277.076000pt;}
.y18_c01155{bottom:300.978667pt;}
.y17_c01155{bottom:324.881333pt;}
.y16_c01155{bottom:348.785333pt;}
.y15_c01155{bottom:372.688000pt;}
.y14_c01155{bottom:412.530667pt;}
.y13_c01155{bottom:436.434667pt;}
.y12_c01155{bottom:476.277333pt;}
.y11_c01155{bottom:500.180000pt;}
.y10_c01155{bottom:540.024000pt;}
.yf_c01155{bottom:563.926667pt;}
.ye_c01155{bottom:603.769333pt;}
.yd_c01155{bottom:627.672000pt;}
.yc_c01155{bottom:651.576000pt;}
.yb_c01155{bottom:691.418667pt;}
.ya_c01155{bottom:715.321333pt;}
.y9_c01155{bottom:739.225333pt;}
.y8_c01155{bottom:763.128000pt;}
.y7_c01155{bottom:802.970667pt;}
.y6_c01155{bottom:826.873333pt;}
.y5_c01155{bottom:866.717333pt;}
.y4_c01155{bottom:890.620000pt;}
.y3_c01155{bottom:930.462667pt;}
.y2_c01155{bottom:954.366667pt;}
.y1_c01155{bottom:1013.880000pt;}
.h2_c01155{height:47.820000pt;}
.h3_c01155{height:63.937333pt;}
.h1_c01155{height:1123.333333pt;}
.h0_c01155{height:1123.653333pt;}
.w0_c01155{width:794.550667pt;}
.w1_c01155{width:794.666667pt;}
.x0_c01155{left:0.000000pt;}
.x3_c01155{left:113.385333pt;}
.x2_c01155{left:142.078667pt;}
.x6_c01155{left:153.565333pt;}
.x8_c01155{left:171.988000pt;}
.x4_c01155{left:188.677333pt;}
.x7_c01155{left:233.310667pt;}
.x5_c01155{left:289.926667pt;}
.x1_c01155{left:657.753333pt;}
}





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

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





.ff0_c01156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01156;src:url('chunks/assets/font_936327011d7c388a066bbb45.woff2')format("woff");}.ff1_c01156{font-family:ff1_c01156;line-height:1.001000;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_c01156;src:url('chunks/assets/font_287af10caa790a5ae81e1da5.woff2')format("woff");}.ff2_c01156{font-family:ff2_c01156;line-height:1.001000;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_c01156;src:url('chunks/assets/font_d95186b80d2b67a3ecb9cef4.woff2')format("woff");}.ff3_c01156{font-family:ff3_c01156;line-height:0.697000;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_c01156;src:url('chunks/assets/font_098fbfbe88fae983fdd54d7c.woff2')format("woff");}.ff4_c01156{font-family:ff4_c01156;line-height:1.001000;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_c01156{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_c01156{vertical-align:0.000000px;}
.v1_c01156{vertical-align:18.132000px;}
.v2_c01156{vertical-align:26.034000px;}
.ls1_c01156{letter-spacing:0.000000px;}
.ls0_c01156{letter-spacing:19.037580px;}
.sc__c01156{text-shadow:none;}
.sc0_c01156{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__c01156{-webkit-text-stroke:0px transparent;}
.sc0_c01156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01156{word-spacing:-0.071730px;}
.ws21_c01156{word-spacing:0.000000px;}
.ws3_c01156{word-spacing:15.493680px;}
.ws1_c01156{word-spacing:15.564390px;}
.ws16_c01156{word-spacing:15.565410px;}
.ws17_c01156{word-spacing:15.924060px;}
.ws19_c01156{word-spacing:15.995790px;}
.ws2_c01156{word-spacing:17.860770px;}
.ws18_c01156{word-spacing:18.219420px;}
.ws1a_c01156{word-spacing:18.291150px;}
.ws1b_c01156{word-spacing:20.371320px;}
.ws7_c01156{word-spacing:20.729970px;}
.ws8_c01156{word-spacing:20.801700px;}
.ws9_c01156{word-spacing:22.738410px;}
.ws14_c01156{word-spacing:23.097060px;}
.ws6_c01156{word-spacing:23.312250px;}
.ws12_c01156{word-spacing:23.383980px;}
.ws15_c01156{word-spacing:24.818580px;}
.ws13_c01156{word-spacing:25.033770px;}
.wsf_c01156{word-spacing:25.643730px;}
.ws11_c01156{word-spacing:25.679340px;}
.wse_c01156{word-spacing:26.109720px;}
.wsc_c01156{word-spacing:26.160690px;}
.ws1c_c01156{word-spacing:26.827020px;}
.ws10_c01156{word-spacing:27.185670px;}
.wsd_c01156{word-spacing:27.616050px;}
.ws1e_c01156{word-spacing:29.911410px;}
.ws1d_c01156{word-spacing:31.059090px;}
.ws20_c01156{word-spacing:31.274280px;}
.wsa_c01156{word-spacing:32.063310px;}
.ws1f_c01156{word-spacing:32.350230px;}
.wsb_c01156{word-spacing:32.995800px;}
.ws4_c01156{word-spacing:33.928290px;}
.ws5_c01156{word-spacing:34.717320px;}
._4_c01156{margin-left:-36.725760px;}
._1_c01156{margin-left:-35.218410px;}
._9_c01156{margin-left:-33.139260px;}
._b_c01156{margin-left:-27.329130px;}
._a_c01156{margin-left:-7.941270px;}
._e_c01156{margin-left:-6.814350px;}
._0_c01156{margin-left:-5.810130px;}
._2_c01156{margin-left:-3.658230px;}
._6_c01156{margin-left:-1.936710px;}
._3_c01156{width:1.004220px;}
._8_c01156{width:2.441070px;}
._5_c01156{width:6.336330px;}
._d_c01156{width:8.756670px;}
._f_c01156{width:10.414230px;}
._c_c01156{width:37.834170px;}
._7_c01156{width:46.680240px;}
.fc0_c01156{color:rgb(0,0,0);}
.fs1_c01156{font-size:47.820000px;}
.fs0_c01156{font-size:71.730000px;}
.y0_c01156{bottom:0.000000px;}
.y1d_c01156{bottom:71.973000px;}
.y1c_c01156{bottom:98.863500px;}
.y1b_c01156{bottom:141.967500px;}
.y1a_c01156{bottom:168.859500px;}
.y19_c01156{bottom:211.963500px;}
.y18_c01156{bottom:238.854000px;}
.y17_c01156{bottom:298.173000px;}
.y16_c01156{bottom:373.705500px;}
.y15_c01156{bottom:400.597500px;}
.y14_c01156{bottom:443.701500px;}
.y13_c01156{bottom:470.592000px;}
.y12_c01156{bottom:513.697500px;}
.y11_c01156{bottom:540.588000px;}
.y10_c01156{bottom:583.693500px;}
.yf_c01156{bottom:610.584000px;}
.ye_c01156{bottom:653.688000px;}
.yd_c01156{bottom:696.793500px;}
.yc_c01156{bottom:723.684000px;}
.yb_c01156{bottom:766.788000px;}
.ya_c01156{bottom:793.680000px;}
.y9_c01156{bottom:836.784000px;}
.y8_c01156{bottom:863.674500px;}
.y7_c01156{bottom:906.780000px;}
.y6_c01156{bottom:933.670500px;}
.y5_c01156{bottom:976.776000px;}
.y4_c01156{bottom:1003.666500px;}
.y3_c01156{bottom:1046.770500px;}
.y2_c01156{bottom:1073.662500px;}
.y1_c01156{bottom:1140.615000px;}
.h2_c01156{height:53.797500px;}
.h4_c01156{height:58.360320px;}
.h5_c01156{height:71.131500px;}
.h3_c01156{height:71.929500px;}
.h1_c01156{height:1263.750000px;}
.h0_c01156{height:1264.110000px;}
.w0_c01156{width:893.869500px;}
.w1_c01156{width:894.000000px;}
.x0_c01156{left:0.000000px;}
.x3_c01156{left:127.558500px;}
.x2_c01156{left:159.838500px;}
.x8_c01156{left:197.869500px;}
.x4_c01156{left:202.500000px;}
.x6_c01156{left:271.609500px;}
.x5_c01156{left:291.913500px;}
.x7_c01156{left:359.281500px;}
.x1_c01156{left:739.972500px;}
@media print{
.v0_c01156{vertical-align:0.000000pt;}
.v1_c01156{vertical-align:16.117333pt;}
.v2_c01156{vertical-align:23.141333pt;}
.ls1_c01156{letter-spacing:0.000000pt;}
.ls0_c01156{letter-spacing:16.922293pt;}
.ws0_c01156{word-spacing:-0.063760pt;}
.ws21_c01156{word-spacing:0.000000pt;}
.ws3_c01156{word-spacing:13.772160pt;}
.ws1_c01156{word-spacing:13.835013pt;}
.ws16_c01156{word-spacing:13.835920pt;}
.ws17_c01156{word-spacing:14.154720pt;}
.ws19_c01156{word-spacing:14.218480pt;}
.ws2_c01156{word-spacing:15.876240pt;}
.ws18_c01156{word-spacing:16.195040pt;}
.ws1a_c01156{word-spacing:16.258800pt;}
.ws1b_c01156{word-spacing:18.107840pt;}
.ws7_c01156{word-spacing:18.426640pt;}
.ws8_c01156{word-spacing:18.490400pt;}
.ws9_c01156{word-spacing:20.211920pt;}
.ws14_c01156{word-spacing:20.530720pt;}
.ws6_c01156{word-spacing:20.722000pt;}
.ws12_c01156{word-spacing:20.785760pt;}
.ws15_c01156{word-spacing:22.060960pt;}
.ws13_c01156{word-spacing:22.252240pt;}
.wsf_c01156{word-spacing:22.794427pt;}
.ws11_c01156{word-spacing:22.826080pt;}
.wse_c01156{word-spacing:23.208640pt;}
.wsc_c01156{word-spacing:23.253947pt;}
.ws1c_c01156{word-spacing:23.846240pt;}
.ws10_c01156{word-spacing:24.165040pt;}
.wsd_c01156{word-spacing:24.547600pt;}
.ws1e_c01156{word-spacing:26.587920pt;}
.ws1d_c01156{word-spacing:27.608080pt;}
.ws20_c01156{word-spacing:27.799360pt;}
.wsa_c01156{word-spacing:28.500720pt;}
.ws1f_c01156{word-spacing:28.755760pt;}
.wsb_c01156{word-spacing:29.329600pt;}
.ws4_c01156{word-spacing:30.158480pt;}
.ws5_c01156{word-spacing:30.859840pt;}
._4_c01156{margin-left:-32.645120pt;}
._1_c01156{margin-left:-31.305253pt;}
._9_c01156{margin-left:-29.457120pt;}
._b_c01156{margin-left:-24.292560pt;}
._a_c01156{margin-left:-7.058907pt;}
._e_c01156{margin-left:-6.057200pt;}
._0_c01156{margin-left:-5.164560pt;}
._2_c01156{margin-left:-3.251760pt;}
._6_c01156{margin-left:-1.721520pt;}
._3_c01156{width:0.892640pt;}
._8_c01156{width:2.169840pt;}
._5_c01156{width:5.632293pt;}
._d_c01156{width:7.783707pt;}
._f_c01156{width:9.257093pt;}
._c_c01156{width:33.630373pt;}
._7_c01156{width:41.493547pt;}
.fs1_c01156{font-size:42.506667pt;}
.fs0_c01156{font-size:63.760000pt;}
.y0_c01156{bottom:0.000000pt;}
.y1d_c01156{bottom:63.976000pt;}
.y1c_c01156{bottom:87.878667pt;}
.y1b_c01156{bottom:126.193333pt;}
.y1a_c01156{bottom:150.097333pt;}
.y19_c01156{bottom:188.412000pt;}
.y18_c01156{bottom:212.314667pt;}
.y17_c01156{bottom:265.042667pt;}
.y16_c01156{bottom:332.182667pt;}
.y15_c01156{bottom:356.086667pt;}
.y14_c01156{bottom:394.401333pt;}
.y13_c01156{bottom:418.304000pt;}
.y12_c01156{bottom:456.620000pt;}
.y11_c01156{bottom:480.522667pt;}
.y10_c01156{bottom:518.838667pt;}
.yf_c01156{bottom:542.741333pt;}
.ye_c01156{bottom:581.056000pt;}
.yd_c01156{bottom:619.372000pt;}
.yc_c01156{bottom:643.274667pt;}
.yb_c01156{bottom:681.589333pt;}
.ya_c01156{bottom:705.493333pt;}
.y9_c01156{bottom:743.808000pt;}
.y8_c01156{bottom:767.710667pt;}
.y7_c01156{bottom:806.026667pt;}
.y6_c01156{bottom:829.929333pt;}
.y5_c01156{bottom:868.245333pt;}
.y4_c01156{bottom:892.148000pt;}
.y3_c01156{bottom:930.462667pt;}
.y2_c01156{bottom:954.366667pt;}
.y1_c01156{bottom:1013.880000pt;}
.h2_c01156{height:47.820000pt;}
.h4_c01156{height:51.875840pt;}
.h5_c01156{height:63.228000pt;}
.h3_c01156{height:63.937333pt;}
.h1_c01156{height:1123.333333pt;}
.h0_c01156{height:1123.653333pt;}
.w0_c01156{width:794.550667pt;}
.w1_c01156{width:794.666667pt;}
.x0_c01156{left:0.000000pt;}
.x3_c01156{left:113.385333pt;}
.x2_c01156{left:142.078667pt;}
.x8_c01156{left:175.884000pt;}
.x4_c01156{left:180.000000pt;}
.x6_c01156{left:241.430667pt;}
.x5_c01156{left:259.478667pt;}
.x7_c01156{left:319.361333pt;}
.x1_c01156{left:657.753333pt;}
}





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

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





.ff0_c01157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01157;src:url('chunks/assets/font_aeb280914991bb2144950545.woff2')format("woff");}.ff1_c01157{font-family:ff1_c01157;line-height:1.001000;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_c01157;src:url('chunks/assets/font_58de9e82ef27395499fdc693.woff2')format("woff");}.ff2_c01157{font-family:ff2_c01157;line-height:1.001000;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_c01157{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_c01157{vertical-align:0.000000px;}
.v1_c01157{vertical-align:18.132000px;}
.ls0_c01157{letter-spacing:0.000000px;}
.sc__c01157{text-shadow:none;}
.sc0_c01157{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__c01157{-webkit-text-stroke:0px transparent;}
.sc0_c01157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01157{word-spacing:-0.071730px;}
.wsf_c01157{word-spacing:0.000000px;}
.ws4_c01157{word-spacing:18.649800px;}
.ws8_c01157{word-spacing:18.864990px;}
.wsd_c01157{word-spacing:19.654020px;}
.ws6_c01157{word-spacing:19.725750px;}
.ws7_c01157{word-spacing:20.658240px;}
.wsc_c01157{word-spacing:20.729970px;}
.ws9_c01157{word-spacing:22.953600px;}
.ws2_c01157{word-spacing:23.312250px;}
.wsb_c01157{word-spacing:23.383980px;}
.wse_c01157{word-spacing:24.029550px;}
.ws5_c01157{word-spacing:24.388200px;}
.ws1_c01157{word-spacing:25.033770px;}
.ws3_c01157{word-spacing:26.611830px;}
.wsa_c01157{word-spacing:29.767950px;}
._2_c01157{margin-left:-35.865000px;}
._6_c01157{margin-left:-34.717320px;}
._7_c01157{margin-left:-5.164560px;}
._1_c01157{margin-left:-3.658230px;}
._0_c01157{margin-left:-1.793250px;}
._4_c01157{width:1.434600px;}
._3_c01157{width:2.438820px;}
._8_c01157{width:4.016880px;}
._5_c01157{width:9.150270px;}
.fc0_c01157{color:rgb(0,0,0);}
.fs0_c01157{font-size:71.730000px;}
.y0_c01157{bottom:0.000000px;}
.y1c_c01157{bottom:87.576000px;}
.y1b_c01157{bottom:132.399000px;}
.y1a_c01157{bottom:159.291000px;}
.y19_c01157{bottom:204.114000px;}
.y18_c01157{bottom:248.937000px;}
.y17_c01157{bottom:293.761500px;}
.y16_c01157{bottom:320.652000px;}
.y15_c01157{bottom:365.475000px;}
.y14_c01157{bottom:410.299500px;}
.y13_c01157{bottom:455.122500px;}
.y12_c01157{bottom:482.013000px;}
.y11_c01157{bottom:526.837500px;}
.y10_c01157{bottom:553.728000px;}
.yf_c01157{bottom:598.551000px;}
.ye_c01157{bottom:625.443000px;}
.yd_c01157{bottom:652.333500px;}
.yc_c01157{bottom:697.156500px;}
.yb_c01157{bottom:724.048500px;}
.ya_c01157{bottom:768.871500px;}
.y9_c01157{bottom:813.694500px;}
.y8_c01157{bottom:858.519000px;}
.y7_c01157{bottom:885.409500px;}
.y6_c01157{bottom:930.232500px;}
.y5_c01157{bottom:957.124500px;}
.y4_c01157{bottom:1001.947500px;}
.y3_c01157{bottom:1028.838000px;}
.y2_c01157{bottom:1073.662500px;}
.y1_c01157{bottom:1140.615000px;}
.h2_c01157{height:53.797500px;}
.h3_c01157{height:71.929500px;}
.h1_c01157{height:1263.750000px;}
.h0_c01157{height:1264.110000px;}
.w0_c01157{width:893.869500px;}
.w1_c01157{width:894.000000px;}
.x0_c01157{left:0.000000px;}
.x3_c01157{left:127.558500px;}
.x2_c01157{left:159.838500px;}
.x4_c01157{left:590.332500px;}
.x1_c01157{left:739.972500px;}
@media print{
.v0_c01157{vertical-align:0.000000pt;}
.v1_c01157{vertical-align:16.117333pt;}
.ls0_c01157{letter-spacing:0.000000pt;}
.ws0_c01157{word-spacing:-0.063760pt;}
.wsf_c01157{word-spacing:0.000000pt;}
.ws4_c01157{word-spacing:16.577600pt;}
.ws8_c01157{word-spacing:16.768880pt;}
.wsd_c01157{word-spacing:17.470240pt;}
.ws6_c01157{word-spacing:17.534000pt;}
.ws7_c01157{word-spacing:18.362880pt;}
.wsc_c01157{word-spacing:18.426640pt;}
.ws9_c01157{word-spacing:20.403200pt;}
.ws2_c01157{word-spacing:20.722000pt;}
.wsb_c01157{word-spacing:20.785760pt;}
.wse_c01157{word-spacing:21.359600pt;}
.ws5_c01157{word-spacing:21.678400pt;}
.ws1_c01157{word-spacing:22.252240pt;}
.ws3_c01157{word-spacing:23.654960pt;}
.wsa_c01157{word-spacing:26.460400pt;}
._2_c01157{margin-left:-31.880000pt;}
._6_c01157{margin-left:-30.859840pt;}
._7_c01157{margin-left:-4.590720pt;}
._1_c01157{margin-left:-3.251760pt;}
._0_c01157{margin-left:-1.594000pt;}
._4_c01157{width:1.275200pt;}
._3_c01157{width:2.167840pt;}
._8_c01157{width:3.570560pt;}
._5_c01157{width:8.133573pt;}
.fs0_c01157{font-size:63.760000pt;}
.y0_c01157{bottom:0.000000pt;}
.y1c_c01157{bottom:77.845333pt;}
.y1b_c01157{bottom:117.688000pt;}
.y1a_c01157{bottom:141.592000pt;}
.y19_c01157{bottom:181.434667pt;}
.y18_c01157{bottom:221.277333pt;}
.y17_c01157{bottom:261.121333pt;}
.y16_c01157{bottom:285.024000pt;}
.y15_c01157{bottom:324.866667pt;}
.y14_c01157{bottom:364.710667pt;}
.y13_c01157{bottom:404.553333pt;}
.y12_c01157{bottom:428.456000pt;}
.y11_c01157{bottom:468.300000pt;}
.y10_c01157{bottom:492.202667pt;}
.yf_c01157{bottom:532.045333pt;}
.ye_c01157{bottom:555.949333pt;}
.yd_c01157{bottom:579.852000pt;}
.yc_c01157{bottom:619.694667pt;}
.yb_c01157{bottom:643.598667pt;}
.ya_c01157{bottom:683.441333pt;}
.y9_c01157{bottom:723.284000pt;}
.y8_c01157{bottom:763.128000pt;}
.y7_c01157{bottom:787.030667pt;}
.y6_c01157{bottom:826.873333pt;}
.y5_c01157{bottom:850.777333pt;}
.y4_c01157{bottom:890.620000pt;}
.y3_c01157{bottom:914.522667pt;}
.y2_c01157{bottom:954.366667pt;}
.y1_c01157{bottom:1013.880000pt;}
.h2_c01157{height:47.820000pt;}
.h3_c01157{height:63.937333pt;}
.h1_c01157{height:1123.333333pt;}
.h0_c01157{height:1123.653333pt;}
.w0_c01157{width:794.550667pt;}
.w1_c01157{width:794.666667pt;}
.x0_c01157{left:0.000000pt;}
.x3_c01157{left:113.385333pt;}
.x2_c01157{left:142.078667pt;}
.x4_c01157{left:524.740000pt;}
.x1_c01157{left:657.753333pt;}
}





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

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





.ff0_c01158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01158;src:url('chunks/assets/font_b5594c5bb6ee8aec24fd5896.woff2')format("woff");}.ff1_c01158{font-family:ff1_c01158;line-height:1.001000;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_c01158;src:url('chunks/assets/font_657660c2115cc03a3f35ff73.woff2')format("woff");}.ff2_c01158{font-family:ff2_c01158;line-height:1.001000;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_c01158{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_c01158{vertical-align:0.000000px;}
.ls0_c01158{letter-spacing:0.000000px;}
.sc__c01158{text-shadow:none;}
.sc0_c01158{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__c01158{-webkit-text-stroke:0px transparent;}
.sc0_c01158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01158{word-spacing:-0.071730px;}
.ws10_c01158{word-spacing:15.493680px;}
.wsa_c01158{word-spacing:15.565410px;}
.ws9_c01158{word-spacing:17.860770px;}
.wse_c01158{word-spacing:20.729970px;}
.wsb_c01158{word-spacing:22.451490px;}
.ws4_c01158{word-spacing:22.666680px;}
.ws15_c01158{word-spacing:23.025330px;}
.ws1_c01158{word-spacing:23.312250px;}
.ws5_c01158{word-spacing:23.383980px;}
.ws7_c01158{word-spacing:23.670900px;}
.ws3_c01158{word-spacing:24.459930px;}
.ws14_c01158{word-spacing:24.746850px;}
.ws8_c01158{word-spacing:25.033770px;}
.wsf_c01158{word-spacing:25.105500px;}
.ws6_c01158{word-spacing:25.392420px;}
.ws17_c01158{word-spacing:26.037990px;}
.ws11_c01158{word-spacing:26.683560px;}
.ws16_c01158{word-spacing:27.544320px;}
.ws2_c01158{word-spacing:28.763730px;}
.wsd_c01158{word-spacing:29.194110px;}
.wsc_c01158{word-spacing:30.413520px;}
.ws13_c01158{word-spacing:32.063310px;}
.ws12_c01158{word-spacing:32.995800px;}
._5_c01158{margin-left:-37.227870px;}
._0_c01158{margin-left:-35.147700px;}
._9_c01158{margin-left:-33.027270px;}
._7_c01158{margin-left:-28.692000px;}
._6_c01158{margin-left:-6.957810px;}
._1_c01158{margin-left:-5.881860px;}
._4_c01158{margin-left:-3.801690px;}
._3_c01158{margin-left:-1.936710px;}
._2_c01158{width:1.936710px;}
._8_c01158{width:4.088610px;}
.fc0_c01158{color:rgb(0,0,0);}
.fs0_c01158{font-size:71.730000px;}
.y0_c01158{bottom:0.000000px;}
.y1e_c01158{bottom:71.973000px;}
.y1d_c01158{bottom:98.863500px;}
.y1c_c01158{bottom:142.336500px;}
.y1b_c01158{bottom:169.228500px;}
.y1a_c01158{bottom:212.701500px;}
.y19_c01158{bottom:239.593500px;}
.y18_c01158{bottom:283.066500px;}
.y17_c01158{bottom:309.957000px;}
.y16_c01158{bottom:336.849000px;}
.y15_c01158{bottom:380.322000px;}
.y14_c01158{bottom:423.796500px;}
.y13_c01158{bottom:467.269500px;}
.y12_c01158{bottom:494.161500px;}
.y11_c01158{bottom:537.634500px;}
.y10_c01158{bottom:564.525000px;}
.yf_c01158{bottom:607.999500px;}
.ye_c01158{bottom:634.890000px;}
.yd_c01158{bottom:661.782000px;}
.yc_c01158{bottom:705.255000px;}
.yb_c01158{bottom:732.145500px;}
.ya_c01158{bottom:775.620000px;}
.y9_c01158{bottom:819.094500px;}
.y8_c01158{bottom:862.567500px;}
.y7_c01158{bottom:889.458000px;}
.y6_c01158{bottom:932.932500px;}
.y5_c01158{bottom:959.823000px;}
.y4_c01158{bottom:1003.297500px;}
.y3_c01158{bottom:1030.188000px;}
.y2_c01158{bottom:1073.662500px;}
.y1_c01158{bottom:1140.615000px;}
.h2_c01158{height:53.797500px;}
.h1_c01158{height:1263.750000px;}
.h0_c01158{height:1264.110000px;}
.w0_c01158{width:893.869500px;}
.w1_c01158{width:894.000000px;}
.x0_c01158{left:0.000000px;}
.x3_c01158{left:127.558500px;}
.x2_c01158{left:159.838500px;}
.x1_c01158{left:739.972500px;}
@media print{
.v0_c01158{vertical-align:0.000000pt;}
.ls0_c01158{letter-spacing:0.000000pt;}
.ws0_c01158{word-spacing:-0.063760pt;}
.ws10_c01158{word-spacing:13.772160pt;}
.wsa_c01158{word-spacing:13.835920pt;}
.ws9_c01158{word-spacing:15.876240pt;}
.wse_c01158{word-spacing:18.426640pt;}
.wsb_c01158{word-spacing:19.956880pt;}
.ws4_c01158{word-spacing:20.148160pt;}
.ws15_c01158{word-spacing:20.466960pt;}
.ws1_c01158{word-spacing:20.722000pt;}
.ws5_c01158{word-spacing:20.785760pt;}
.ws7_c01158{word-spacing:21.040800pt;}
.ws3_c01158{word-spacing:21.742160pt;}
.ws14_c01158{word-spacing:21.997200pt;}
.ws8_c01158{word-spacing:22.252240pt;}
.wsf_c01158{word-spacing:22.316000pt;}
.ws6_c01158{word-spacing:22.571040pt;}
.ws17_c01158{word-spacing:23.144880pt;}
.ws11_c01158{word-spacing:23.718720pt;}
.ws16_c01158{word-spacing:24.483840pt;}
.ws2_c01158{word-spacing:25.567760pt;}
.wsd_c01158{word-spacing:25.950320pt;}
.wsc_c01158{word-spacing:27.034240pt;}
.ws13_c01158{word-spacing:28.500720pt;}
.ws12_c01158{word-spacing:29.329600pt;}
._5_c01158{margin-left:-33.091440pt;}
._0_c01158{margin-left:-31.242400pt;}
._9_c01158{margin-left:-29.357573pt;}
._7_c01158{margin-left:-25.504000pt;}
._6_c01158{margin-left:-6.184720pt;}
._1_c01158{margin-left:-5.228320pt;}
._4_c01158{margin-left:-3.379280pt;}
._3_c01158{margin-left:-1.721520pt;}
._2_c01158{width:1.721520pt;}
._8_c01158{width:3.634320pt;}
.fs0_c01158{font-size:63.760000pt;}
.y0_c01158{bottom:0.000000pt;}
.y1e_c01158{bottom:63.976000pt;}
.y1d_c01158{bottom:87.878667pt;}
.y1c_c01158{bottom:126.521333pt;}
.y1b_c01158{bottom:150.425333pt;}
.y1a_c01158{bottom:189.068000pt;}
.y19_c01158{bottom:212.972000pt;}
.y18_c01158{bottom:251.614667pt;}
.y17_c01158{bottom:275.517333pt;}
.y16_c01158{bottom:299.421333pt;}
.y15_c01158{bottom:338.064000pt;}
.y14_c01158{bottom:376.708000pt;}
.y13_c01158{bottom:415.350667pt;}
.y12_c01158{bottom:439.254667pt;}
.y11_c01158{bottom:477.897333pt;}
.y10_c01158{bottom:501.800000pt;}
.yf_c01158{bottom:540.444000pt;}
.ye_c01158{bottom:564.346667pt;}
.yd_c01158{bottom:588.250667pt;}
.yc_c01158{bottom:626.893333pt;}
.yb_c01158{bottom:650.796000pt;}
.ya_c01158{bottom:689.440000pt;}
.y9_c01158{bottom:728.084000pt;}
.y8_c01158{bottom:766.726667pt;}
.y7_c01158{bottom:790.629333pt;}
.y6_c01158{bottom:829.273333pt;}
.y5_c01158{bottom:853.176000pt;}
.y4_c01158{bottom:891.820000pt;}
.y3_c01158{bottom:915.722667pt;}
.y2_c01158{bottom:954.366667pt;}
.y1_c01158{bottom:1013.880000pt;}
.h2_c01158{height:47.820000pt;}
.h1_c01158{height:1123.333333pt;}
.h0_c01158{height:1123.653333pt;}
.w0_c01158{width:794.550667pt;}
.w1_c01158{width:794.666667pt;}
.x0_c01158{left:0.000000pt;}
.x3_c01158{left:113.385333pt;}
.x2_c01158{left:142.078667pt;}
.x1_c01158{left:657.753333pt;}
}





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

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





.ff0_c01159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01159;src:url('chunks/assets/font_5c13026a94a2b8f2b26baa91.woff2')format("woff");}.ff1_c01159{font-family:ff1_c01159;line-height:1.001000;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_c01159;src:url('chunks/assets/font_b0ac78933988bb3325672d70.woff2')format("woff");}.ff2_c01159{font-family:ff2_c01159;line-height:1.001000;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_c01159{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_c01159{vertical-align:0.000000px;}
.ls0_c01159{letter-spacing:0.000000px;}
.sc__c01159{text-shadow:none;}
.sc0_c01159{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__c01159{-webkit-text-stroke:0px transparent;}
.sc0_c01159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01159{word-spacing:-0.071730px;}
.ws19_c01159{word-spacing:0.000000px;}
.ws12_c01159{word-spacing:15.565410px;}
.ws11_c01159{word-spacing:17.860770px;}
.ws10_c01159{word-spacing:18.434610px;}
.ws15_c01159{word-spacing:20.227860px;}
.wsf_c01159{word-spacing:20.586510px;}
.ws14_c01159{word-spacing:22.164570px;}
.wsb_c01159{word-spacing:22.308030px;}
.ws7_c01159{word-spacing:22.523220px;}
.ws5_c01159{word-spacing:23.097060px;}
.ws2_c01159{word-spacing:23.312250px;}
.ws16_c01159{word-spacing:23.383980px;}
.ws4_c01159{word-spacing:24.029550px;}
.wsa_c01159{word-spacing:24.101280px;}
.ws6_c01159{word-spacing:24.316470px;}
.ws18_c01159{word-spacing:24.890310px;}
.ws1_c01159{word-spacing:25.033770px;}
.ws3_c01159{word-spacing:25.679340px;}
.wse_c01159{word-spacing:26.037990px;}
.ws17_c01159{word-spacing:26.468370px;}
.wsd_c01159{word-spacing:29.265840px;}
.wsc_c01159{word-spacing:30.556980px;}
.ws9_c01159{word-spacing:32.421960px;}
.ws8_c01159{word-spacing:33.354450px;}
.ws13_c01159{word-spacing:34.286940px;}
._8_c01159{margin-left:-38.039070px;}
._5_c01159{margin-left:-36.510570px;}
._2_c01159{margin-left:-35.147700px;}
._6_c01159{margin-left:-33.856560px;}
._a_c01159{margin-left:-28.692000px;}
._9_c01159{margin-left:-7.467690px;}
._1_c01159{margin-left:-5.802360px;}
._0_c01159{margin-left:-3.586500px;}
._4_c01159{margin-left:-1.936710px;}
._7_c01159{width:1.841250px;}
._3_c01159{width:3.873420px;}
._b_c01159{width:23.240520px;}
.fc0_c01159{color:rgb(0,0,0);}
.fs0_c01159{font-size:71.730000px;}
.y0_c01159{bottom:0.000000px;}
.y1c_c01159{bottom:105.508500px;}
.y1b_c01159{bottom:150.331500px;}
.y1a_c01159{bottom:177.223500px;}
.y19_c01159{bottom:222.046500px;}
.y18_c01159{bottom:248.937000px;}
.y17_c01159{bottom:293.761500px;}
.y16_c01159{bottom:320.652000px;}
.y15_c01159{bottom:365.475000px;}
.y14_c01159{bottom:410.299500px;}
.y13_c01159{bottom:437.190000px;}
.y12_c01159{bottom:482.013000px;}
.y11_c01159{bottom:508.905000px;}
.y10_c01159{bottom:553.728000px;}
.yf_c01159{bottom:580.618500px;}
.ye_c01159{bottom:625.443000px;}
.yd_c01159{bottom:652.333500px;}
.yc_c01159{bottom:697.156500px;}
.yb_c01159{bottom:724.048500px;}
.ya_c01159{bottom:768.871500px;}
.y9_c01159{bottom:795.762000px;}
.y8_c01159{bottom:840.586500px;}
.y7_c01159{bottom:885.409500px;}
.y6_c01159{bottom:930.232500px;}
.y5_c01159{bottom:957.124500px;}
.y4_c01159{bottom:1001.947500px;}
.y3_c01159{bottom:1028.838000px;}
.y2_c01159{bottom:1073.662500px;}
.y1_c01159{bottom:1140.615000px;}
.h2_c01159{height:53.797500px;}
.h1_c01159{height:1263.750000px;}
.h0_c01159{height:1264.110000px;}
.w0_c01159{width:893.869500px;}
.w1_c01159{width:894.000000px;}
.x0_c01159{left:0.000000px;}
.x3_c01159{left:127.558500px;}
.x2_c01159{left:159.838500px;}
.x1_c01159{left:739.972500px;}
@media print{
.v0_c01159{vertical-align:0.000000pt;}
.ls0_c01159{letter-spacing:0.000000pt;}
.ws0_c01159{word-spacing:-0.063760pt;}
.ws19_c01159{word-spacing:0.000000pt;}
.ws12_c01159{word-spacing:13.835920pt;}
.ws11_c01159{word-spacing:15.876240pt;}
.ws10_c01159{word-spacing:16.386320pt;}
.ws15_c01159{word-spacing:17.980320pt;}
.wsf_c01159{word-spacing:18.299120pt;}
.ws14_c01159{word-spacing:19.701840pt;}
.wsb_c01159{word-spacing:19.829360pt;}
.ws7_c01159{word-spacing:20.020640pt;}
.ws5_c01159{word-spacing:20.530720pt;}
.ws2_c01159{word-spacing:20.722000pt;}
.ws16_c01159{word-spacing:20.785760pt;}
.ws4_c01159{word-spacing:21.359600pt;}
.wsa_c01159{word-spacing:21.423360pt;}
.ws6_c01159{word-spacing:21.614640pt;}
.ws18_c01159{word-spacing:22.124720pt;}
.ws1_c01159{word-spacing:22.252240pt;}
.ws3_c01159{word-spacing:22.826080pt;}
.wse_c01159{word-spacing:23.144880pt;}
.ws17_c01159{word-spacing:23.527440pt;}
.wsd_c01159{word-spacing:26.014080pt;}
.wsc_c01159{word-spacing:27.161760pt;}
.ws9_c01159{word-spacing:28.819520pt;}
.ws8_c01159{word-spacing:29.648400pt;}
.ws13_c01159{word-spacing:30.477280pt;}
._8_c01159{margin-left:-33.812507pt;}
._5_c01159{margin-left:-32.453840pt;}
._2_c01159{margin-left:-31.242400pt;}
._6_c01159{margin-left:-30.094720pt;}
._a_c01159{margin-left:-25.504000pt;}
._9_c01159{margin-left:-6.637947pt;}
._1_c01159{margin-left:-5.157653pt;}
._0_c01159{margin-left:-3.188000pt;}
._4_c01159{margin-left:-1.721520pt;}
._7_c01159{width:1.636667pt;}
._3_c01159{width:3.443040pt;}
._b_c01159{width:20.658240pt;}
.fs0_c01159{font-size:63.760000pt;}
.y0_c01159{bottom:0.000000pt;}
.y1c_c01159{bottom:93.785333pt;}
.y1b_c01159{bottom:133.628000pt;}
.y1a_c01159{bottom:157.532000pt;}
.y19_c01159{bottom:197.374667pt;}
.y18_c01159{bottom:221.277333pt;}
.y17_c01159{bottom:261.121333pt;}
.y16_c01159{bottom:285.024000pt;}
.y15_c01159{bottom:324.866667pt;}
.y14_c01159{bottom:364.710667pt;}
.y13_c01159{bottom:388.613333pt;}
.y12_c01159{bottom:428.456000pt;}
.y11_c01159{bottom:452.360000pt;}
.y10_c01159{bottom:492.202667pt;}
.yf_c01159{bottom:516.105333pt;}
.ye_c01159{bottom:555.949333pt;}
.yd_c01159{bottom:579.852000pt;}
.yc_c01159{bottom:619.694667pt;}
.yb_c01159{bottom:643.598667pt;}
.ya_c01159{bottom:683.441333pt;}
.y9_c01159{bottom:707.344000pt;}
.y8_c01159{bottom:747.188000pt;}
.y7_c01159{bottom:787.030667pt;}
.y6_c01159{bottom:826.873333pt;}
.y5_c01159{bottom:850.777333pt;}
.y4_c01159{bottom:890.620000pt;}
.y3_c01159{bottom:914.522667pt;}
.y2_c01159{bottom:954.366667pt;}
.y1_c01159{bottom:1013.880000pt;}
.h2_c01159{height:47.820000pt;}
.h1_c01159{height:1123.333333pt;}
.h0_c01159{height:1123.653333pt;}
.w0_c01159{width:794.550667pt;}
.w1_c01159{width:794.666667pt;}
.x0_c01159{left:0.000000pt;}
.x3_c01159{left:113.385333pt;}
.x2_c01159{left:142.078667pt;}
.x1_c01159{left:657.753333pt;}
}





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

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





.ff0_c01160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01160;src:url('chunks/assets/font_1a968a9082878c3670f5c522.woff2')format("woff");}.ff1_c01160{font-family:ff1_c01160;line-height:1.001000;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_c01160;src:url('chunks/assets/font_4c9ebfffbeea8b17418e258b.woff2')format("woff");}.ff2_c01160{font-family:ff2_c01160;line-height:1.001000;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_c01160{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_c01160{vertical-align:0.000000px;}
.ls0_c01160{letter-spacing:0.000000px;}
.sc__c01160{text-shadow:none;}
.sc0_c01160{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__c01160{-webkit-text-stroke:0px transparent;}
.sc0_c01160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01160{word-spacing:-0.071730px;}
.ws1a_c01160{word-spacing:0.000000px;}
.ws6_c01160{word-spacing:17.215200px;}
.wsb_c01160{word-spacing:18.075960px;}
.ws5_c01160{word-spacing:19.367100px;}
.ws14_c01160{word-spacing:20.873430px;}
.ws10_c01160{word-spacing:21.016890px;}
.ws3_c01160{word-spacing:22.523220px;}
.ws13_c01160{word-spacing:22.738410px;}
.wsa_c01160{word-spacing:22.810140px;}
.wsf_c01160{word-spacing:22.953600px;}
.ws7_c01160{word-spacing:23.312250px;}
.ws4_c01160{word-spacing:23.383980px;}
.ws2_c01160{word-spacing:24.244740px;}
.ws17_c01160{word-spacing:24.388200px;}
.ws9_c01160{word-spacing:24.603390px;}
.ws8_c01160{word-spacing:25.033770px;}
.ws16_c01160{word-spacing:25.966260px;}
.ws1_c01160{word-spacing:26.468370px;}
.wsc_c01160{word-spacing:28.261620px;}
.ws12_c01160{word-spacing:28.548540px;}
.ws11_c01160{word-spacing:29.839680px;}
.ws19_c01160{word-spacing:30.126600px;}
.wse_c01160{word-spacing:30.413520px;}
.ws18_c01160{word-spacing:31.274280px;}
.wsd_c01160{word-spacing:31.489470px;}
.ws15_c01160{word-spacing:31.561200px;}
._a_c01160{margin-left:-37.078110px;}
._5_c01160{margin-left:-36.008460px;}
._9_c01160{margin-left:-34.215210px;}
._3_c01160{margin-left:-28.692000px;}
._d_c01160{margin-left:-27.329130px;}
._c_c01160{margin-left:-8.509620px;}
._2_c01160{margin-left:-7.173000px;}
._4_c01160{margin-left:-5.379750px;}
._0_c01160{margin-left:-3.586500px;}
._1_c01160{margin-left:-1.721520px;}
._7_c01160{width:1.069650px;}
._8_c01160{width:2.438820px;}
._6_c01160{width:3.658230px;}
._b_c01160{width:4.662450px;}
.fc0_c01160{color:rgb(0,0,0);}
.fs0_c01160{font-size:71.730000px;}
.y0_c01160{bottom:0.000000px;}
.y1f_c01160{bottom:71.973000px;}
.y1e_c01160{bottom:115.446000px;}
.y1d_c01160{bottom:142.338000px;}
.y1c_c01160{bottom:185.811000px;}
.y1b_c01160{bottom:229.285500px;}
.y1a_c01160{bottom:256.176000px;}
.y19_c01160{bottom:299.650500px;}
.y18_c01160{bottom:326.541000px;}
.y17_c01160{bottom:370.014000px;}
.y16_c01160{bottom:396.906000px;}
.y15_c01160{bottom:440.379000px;}
.y14_c01160{bottom:467.269500px;}
.y13_c01160{bottom:510.744000px;}
.y12_c01160{bottom:537.634500px;}
.y11_c01160{bottom:581.109000px;}
.y10_c01160{bottom:607.999500px;}
.yf_c01160{bottom:634.890000px;}
.ye_c01160{bottom:678.364500px;}
.yd_c01160{bottom:705.255000px;}
.yc_c01160{bottom:748.729500px;}
.yb_c01160{bottom:775.620000px;}
.ya_c01160{bottom:819.094500px;}
.y9_c01160{bottom:823.627500px;}
.y8_c01160{bottom:862.567500px;}
.y7_c01160{bottom:906.042000px;}
.y6_c01160{bottom:949.515000px;}
.y5_c01160{bottom:976.407000px;}
.y4_c01160{bottom:1019.880000px;}
.y3_c01160{bottom:1046.770500px;}
.y2_c01160{bottom:1073.662500px;}
.y1_c01160{bottom:1140.615000px;}
.h2_c01160{height:53.797500px;}
.h1_c01160{height:1263.750000px;}
.h0_c01160{height:1264.110000px;}
.w0_c01160{width:893.869500px;}
.w1_c01160{width:894.000000px;}
.x0_c01160{left:0.000000px;}
.x3_c01160{left:127.558500px;}
.x2_c01160{left:159.838500px;}
.x4_c01160{left:163.005000px;}
.x1_c01160{left:739.972500px;}
@media print{
.v0_c01160{vertical-align:0.000000pt;}
.ls0_c01160{letter-spacing:0.000000pt;}
.ws0_c01160{word-spacing:-0.063760pt;}
.ws1a_c01160{word-spacing:0.000000pt;}
.ws6_c01160{word-spacing:15.302400pt;}
.wsb_c01160{word-spacing:16.067520pt;}
.ws5_c01160{word-spacing:17.215200pt;}
.ws14_c01160{word-spacing:18.554160pt;}
.ws10_c01160{word-spacing:18.681680pt;}
.ws3_c01160{word-spacing:20.020640pt;}
.ws13_c01160{word-spacing:20.211920pt;}
.wsa_c01160{word-spacing:20.275680pt;}
.wsf_c01160{word-spacing:20.403200pt;}
.ws7_c01160{word-spacing:20.722000pt;}
.ws4_c01160{word-spacing:20.785760pt;}
.ws2_c01160{word-spacing:21.550880pt;}
.ws17_c01160{word-spacing:21.678400pt;}
.ws9_c01160{word-spacing:21.869680pt;}
.ws8_c01160{word-spacing:22.252240pt;}
.ws16_c01160{word-spacing:23.081120pt;}
.ws1_c01160{word-spacing:23.527440pt;}
.wsc_c01160{word-spacing:25.121440pt;}
.ws12_c01160{word-spacing:25.376480pt;}
.ws11_c01160{word-spacing:26.524160pt;}
.ws19_c01160{word-spacing:26.779200pt;}
.wse_c01160{word-spacing:27.034240pt;}
.ws18_c01160{word-spacing:27.799360pt;}
.wsd_c01160{word-spacing:27.990640pt;}
.ws15_c01160{word-spacing:28.054400pt;}
._a_c01160{margin-left:-32.958320pt;}
._5_c01160{margin-left:-32.007520pt;}
._9_c01160{margin-left:-30.413520pt;}
._3_c01160{margin-left:-25.504000pt;}
._d_c01160{margin-left:-24.292560pt;}
._c_c01160{margin-left:-7.564107pt;}
._2_c01160{margin-left:-6.376000pt;}
._4_c01160{margin-left:-4.782000pt;}
._0_c01160{margin-left:-3.188000pt;}
._1_c01160{margin-left:-1.530240pt;}
._7_c01160{width:0.950800pt;}
._8_c01160{width:2.167840pt;}
._6_c01160{width:3.251760pt;}
._b_c01160{width:4.144400pt;}
.fs0_c01160{font-size:63.760000pt;}
.y0_c01160{bottom:0.000000pt;}
.y1f_c01160{bottom:63.976000pt;}
.y1e_c01160{bottom:102.618667pt;}
.y1d_c01160{bottom:126.522667pt;}
.y1c_c01160{bottom:165.165333pt;}
.y1b_c01160{bottom:203.809333pt;}
.y1a_c01160{bottom:227.712000pt;}
.y19_c01160{bottom:266.356000pt;}
.y18_c01160{bottom:290.258667pt;}
.y17_c01160{bottom:328.901333pt;}
.y16_c01160{bottom:352.805333pt;}
.y15_c01160{bottom:391.448000pt;}
.y14_c01160{bottom:415.350667pt;}
.y13_c01160{bottom:453.994667pt;}
.y12_c01160{bottom:477.897333pt;}
.y11_c01160{bottom:516.541333pt;}
.y10_c01160{bottom:540.444000pt;}
.yf_c01160{bottom:564.346667pt;}
.ye_c01160{bottom:602.990667pt;}
.yd_c01160{bottom:626.893333pt;}
.yc_c01160{bottom:665.537333pt;}
.yb_c01160{bottom:689.440000pt;}
.ya_c01160{bottom:728.084000pt;}
.y9_c01160{bottom:732.113333pt;}
.y8_c01160{bottom:766.726667pt;}
.y7_c01160{bottom:805.370667pt;}
.y6_c01160{bottom:844.013333pt;}
.y5_c01160{bottom:867.917333pt;}
.y4_c01160{bottom:906.560000pt;}
.y3_c01160{bottom:930.462667pt;}
.y2_c01160{bottom:954.366667pt;}
.y1_c01160{bottom:1013.880000pt;}
.h2_c01160{height:47.820000pt;}
.h1_c01160{height:1123.333333pt;}
.h0_c01160{height:1123.653333pt;}
.w0_c01160{width:794.550667pt;}
.w1_c01160{width:794.666667pt;}
.x0_c01160{left:0.000000pt;}
.x3_c01160{left:113.385333pt;}
.x2_c01160{left:142.078667pt;}
.x4_c01160{left:144.893333pt;}
.x1_c01160{left:657.753333pt;}
}





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

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





.ff0_c01161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01161;src:url('chunks/assets/font_0a30d2e1bf20b5bde90213a1.woff2')format("woff");}.ff1_c01161{font-family:ff1_c01161;line-height:1.001000;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_c01161;src:url('chunks/assets/font_d6ceae8ee5e786479b67ce58.woff2')format("woff");}.ff2_c01161{font-family:ff2_c01161;line-height:1.001000;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_c01161;src:url('chunks/assets/font_e5877595ad856cc19175e3c2.woff2')format("woff");}.ff3_c01161{font-family:ff3_c01161;line-height:1.001000;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_c01161;src:url('chunks/assets/font_00ab27ec468ff42f3cdb2758.woff2')format("woff");}.ff4_c01161{font-family:ff4_c01161;line-height:0.697000;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_c01161{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_c01161{vertical-align:0.000000px;}
.v1_c01161{vertical-align:17.334000px;}
.v2_c01161{vertical-align:26.034000px;}
.ls2_c01161{letter-spacing:0.000000px;}
.ls1_c01161{letter-spacing:26.411580px;}
.ls0_c01161{letter-spacing:32.543580px;}
.sc__c01161{text-shadow:none;}
.sc0_c01161{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__c01161{-webkit-text-stroke:0px transparent;}
.sc0_c01161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01161{word-spacing:-0.071730px;}
.ws16_c01161{word-spacing:0.000000px;}
.ws4_c01161{word-spacing:20.371320px;}
.ws3_c01161{word-spacing:22.379760px;}
.wsd_c01161{word-spacing:23.025330px;}
.wse_c01161{word-spacing:23.097060px;}
.ws2_c01161{word-spacing:23.312250px;}
.wsc_c01161{word-spacing:23.383980px;}
.ws12_c01161{word-spacing:23.957820px;}
.ws14_c01161{word-spacing:24.029550px;}
.ws15_c01161{word-spacing:24.316470px;}
.ws10_c01161{word-spacing:24.603390px;}
.ws1_c01161{word-spacing:25.033770px;}
.ws6_c01161{word-spacing:25.177230px;}
.ws13_c01161{word-spacing:25.607610px;}
.ws5_c01161{word-spacing:26.683560px;}
.wsa_c01161{word-spacing:29.409300px;}
.ws11_c01161{word-spacing:29.481030px;}
.ws9_c01161{word-spacing:30.628710px;}
.ws8_c01161{word-spacing:30.843900px;}
.ws7_c01161{word-spacing:31.991580px;}
.wsb_c01161{word-spacing:32.995800px;}
.wsf_c01161{word-spacing:33.067530px;}
._5_c01161{margin-left:-37.658250px;}
._1_c01161{margin-left:-35.865000px;}
._6_c01161{margin-left:-34.000020px;}
._e_c01161{margin-left:-28.484520px;}
._9_c01161{margin-left:-27.329130px;}
._8_c01161{margin-left:-7.841520px;}
._b_c01161{margin-left:-6.742620px;}
._0_c01161{margin-left:-5.379750px;}
._2_c01161{margin-left:-3.586500px;}
._3_c01161{margin-left:-1.864980px;}
._4_c01161{width:1.721520px;}
._a_c01161{width:2.737140px;}
._7_c01161{width:3.982470px;}
._d_c01161{width:8.737110px;}
._c_c01161{width:9.756360px;}
.fc0_c01161{color:rgb(0,0,0);}
.fs1_c01161{font-size:47.820000px;}
.fs0_c01161{font-size:71.730000px;}
.y0_c01161{bottom:0.000000px;}
.y1e_c01161{bottom:71.973000px;}
.y1d_c01161{bottom:98.863500px;}
.y1c_c01161{bottom:125.754000px;}
.y1b_c01161{bottom:152.644500px;}
.y1a_c01161{bottom:179.536500px;}
.y19_c01161{bottom:206.427000px;}
.y18_c01161{bottom:233.317500px;}
.y17_c01161{bottom:260.208000px;}
.y16_c01161{bottom:287.100000px;}
.y15_c01161{bottom:330.573000px;}
.y14_c01161{bottom:357.463500px;}
.y13_c01161{bottom:400.938000px;}
.y12_c01161{bottom:427.828500px;}
.y11_c01161{bottom:454.720500px;}
.y10_c01161{bottom:481.611000px;}
.yf_c01161{bottom:541.668000px;}
.ye_c01161{bottom:618.307500px;}
.yd_c01161{bottom:661.782000px;}
.yc_c01161{bottom:688.672500px;}
.yb_c01161{bottom:732.145500px;}
.ya_c01161{bottom:775.620000px;}
.y9_c01161{bottom:802.510500px;}
.y8_c01161{bottom:845.985000px;}
.y7_c01161{bottom:872.875500px;}
.y6_c01161{bottom:916.350000px;}
.y5_c01161{bottom:959.823000px;}
.y4_c01161{bottom:1003.297500px;}
.y3_c01161{bottom:1030.188000px;}
.y2_c01161{bottom:1073.662500px;}
.y1_c01161{bottom:1140.615000px;}
.h2_c01161{height:53.797500px;}
.h5_c01161{height:58.360320px;}
.h3_c01161{height:71.131500px;}
.h4_c01161{height:71.929500px;}
.h1_c01161{height:1263.750000px;}
.h0_c01161{height:1264.110000px;}
.w0_c01161{width:893.869500px;}
.w1_c01161{width:894.000000px;}
.x0_c01161{left:0.000000px;}
.x3_c01161{left:127.558500px;}
.x2_c01161{left:159.838500px;}
.x5_c01161{left:186.163500px;}
.x4_c01161{left:202.470000px;}
.x6_c01161{left:254.748000px;}
.x1_c01161{left:739.972500px;}
@media print{
.v0_c01161{vertical-align:0.000000pt;}
.v1_c01161{vertical-align:15.408000pt;}
.v2_c01161{vertical-align:23.141333pt;}
.ls2_c01161{letter-spacing:0.000000pt;}
.ls1_c01161{letter-spacing:23.476960pt;}
.ls0_c01161{letter-spacing:28.927627pt;}
.ws0_c01161{word-spacing:-0.063760pt;}
.ws16_c01161{word-spacing:0.000000pt;}
.ws4_c01161{word-spacing:18.107840pt;}
.ws3_c01161{word-spacing:19.893120pt;}
.wsd_c01161{word-spacing:20.466960pt;}
.wse_c01161{word-spacing:20.530720pt;}
.ws2_c01161{word-spacing:20.722000pt;}
.wsc_c01161{word-spacing:20.785760pt;}
.ws12_c01161{word-spacing:21.295840pt;}
.ws14_c01161{word-spacing:21.359600pt;}
.ws15_c01161{word-spacing:21.614640pt;}
.ws10_c01161{word-spacing:21.869680pt;}
.ws1_c01161{word-spacing:22.252240pt;}
.ws6_c01161{word-spacing:22.379760pt;}
.ws13_c01161{word-spacing:22.762320pt;}
.ws5_c01161{word-spacing:23.718720pt;}
.wsa_c01161{word-spacing:26.141600pt;}
.ws11_c01161{word-spacing:26.205360pt;}
.ws9_c01161{word-spacing:27.225520pt;}
.ws8_c01161{word-spacing:27.416800pt;}
.ws7_c01161{word-spacing:28.436960pt;}
.wsb_c01161{word-spacing:29.329600pt;}
.wsf_c01161{word-spacing:29.393360pt;}
._5_c01161{margin-left:-33.474000pt;}
._1_c01161{margin-left:-31.880000pt;}
._6_c01161{margin-left:-30.222240pt;}
._e_c01161{margin-left:-25.319573pt;}
._9_c01161{margin-left:-24.292560pt;}
._8_c01161{margin-left:-6.970240pt;}
._b_c01161{margin-left:-5.993440pt;}
._0_c01161{margin-left:-4.782000pt;}
._2_c01161{margin-left:-3.188000pt;}
._3_c01161{margin-left:-1.657760pt;}
._4_c01161{width:1.530240pt;}
._a_c01161{width:2.433013pt;}
._7_c01161{width:3.539973pt;}
._d_c01161{width:7.766320pt;}
._c_c01161{width:8.672320pt;}
.fs1_c01161{font-size:42.506667pt;}
.fs0_c01161{font-size:63.760000pt;}
.y0_c01161{bottom:0.000000pt;}
.y1e_c01161{bottom:63.976000pt;}
.y1d_c01161{bottom:87.878667pt;}
.y1c_c01161{bottom:111.781333pt;}
.y1b_c01161{bottom:135.684000pt;}
.y1a_c01161{bottom:159.588000pt;}
.y19_c01161{bottom:183.490667pt;}
.y18_c01161{bottom:207.393333pt;}
.y17_c01161{bottom:231.296000pt;}
.y16_c01161{bottom:255.200000pt;}
.y15_c01161{bottom:293.842667pt;}
.y14_c01161{bottom:317.745333pt;}
.y13_c01161{bottom:356.389333pt;}
.y12_c01161{bottom:380.292000pt;}
.y11_c01161{bottom:404.196000pt;}
.y10_c01161{bottom:428.098667pt;}
.yf_c01161{bottom:481.482667pt;}
.ye_c01161{bottom:549.606667pt;}
.yd_c01161{bottom:588.250667pt;}
.yc_c01161{bottom:612.153333pt;}
.yb_c01161{bottom:650.796000pt;}
.ya_c01161{bottom:689.440000pt;}
.y9_c01161{bottom:713.342667pt;}
.y8_c01161{bottom:751.986667pt;}
.y7_c01161{bottom:775.889333pt;}
.y6_c01161{bottom:814.533333pt;}
.y5_c01161{bottom:853.176000pt;}
.y4_c01161{bottom:891.820000pt;}
.y3_c01161{bottom:915.722667pt;}
.y2_c01161{bottom:954.366667pt;}
.y1_c01161{bottom:1013.880000pt;}
.h2_c01161{height:47.820000pt;}
.h5_c01161{height:51.875840pt;}
.h3_c01161{height:63.228000pt;}
.h4_c01161{height:63.937333pt;}
.h1_c01161{height:1123.333333pt;}
.h0_c01161{height:1123.653333pt;}
.w0_c01161{width:794.550667pt;}
.w1_c01161{width:794.666667pt;}
.x0_c01161{left:0.000000pt;}
.x3_c01161{left:113.385333pt;}
.x2_c01161{left:142.078667pt;}
.x5_c01161{left:165.478667pt;}
.x4_c01161{left:179.973333pt;}
.x6_c01161{left:226.442667pt;}
.x1_c01161{left:657.753333pt;}
}





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

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





.ff0_c01162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01162;src:url('chunks/assets/font_18ddfa3912f15b6e3409cfbd.woff2')format("woff");}.ff1_c01162{font-family:ff1_c01162;line-height:1.001000;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_c01162;src:url('chunks/assets/font_b006bc1e0152b29328fa5580.woff2')format("woff");}.ff2_c01162{font-family:ff2_c01162;line-height:1.001000;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_c01162;src:url('chunks/assets/font_e60c3131fbf98d0cdc80c1d7.woff2')format("woff");}.ff3_c01162{font-family:ff3_c01162;line-height:0.697000;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_c01162{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_c01162{vertical-align:0.000000px;}
.v2_c01162{vertical-align:18.132000px;}
.v1_c01162{vertical-align:26.028000px;}
.ls5_c01162{letter-spacing:0.000000px;}
.ls1_c01162{letter-spacing:0.002880px;}
.ls3_c01162{letter-spacing:20.285580px;}
.ls0_c01162{letter-spacing:23.477580px;}
.ls2_c01162{letter-spacing:26.411580px;}
.ls4_c01162{letter-spacing:26.417580px;}
.sc__c01162{text-shadow:none;}
.sc0_c01162{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__c01162{-webkit-text-stroke:0px transparent;}
.sc0_c01162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01162{word-spacing:-0.071730px;}
.ws23_c01162{word-spacing:0.000000px;}
.ws9_c01162{word-spacing:16.354440px;}
.ws10_c01162{word-spacing:17.215200px;}
.ws11_c01162{word-spacing:19.438830px;}
.ws1e_c01162{word-spacing:19.725750px;}
.ws1b_c01162{word-spacing:20.123220px;}
.ws1d_c01162{word-spacing:20.156130px;}
.ws12_c01162{word-spacing:20.227860px;}
.ws6_c01162{word-spacing:20.371320px;}
.ws1c_c01162{word-spacing:22.092840px;}
.ws20_c01162{word-spacing:22.236300px;}
.ws5_c01162{word-spacing:23.312250px;}
.ws1f_c01162{word-spacing:23.352600px;}
.ws1a_c01162{word-spacing:24.388200px;}
.ws19_c01162{word-spacing:24.459930px;}
.wsf_c01162{word-spacing:24.818580px;}
.wsa_c01162{word-spacing:25.033770px;}
.wsb_c01162{word-spacing:26.898750px;}
.wse_c01162{word-spacing:27.042210px;}
.ws17_c01162{word-spacing:27.257400px;}
.ws14_c01162{word-spacing:28.118160px;}
.wsc_c01162{word-spacing:28.333350px;}
.wsd_c01162{word-spacing:28.620270px;}
.ws4_c01162{word-spacing:29.911410px;}
.ws2_c01162{word-spacing:29.925540px;}
.ws21_c01162{word-spacing:30.915630px;}
.ws3_c01162{word-spacing:31.130820px;}
.ws22_c01162{word-spacing:31.991580px;}
.ws15_c01162{word-spacing:32.637150px;}
.ws18_c01162{word-spacing:33.244950px;}
.ws16_c01162{word-spacing:33.569640px;}
.ws7_c01162{word-spacing:34.502130px;}
.ws8_c01162{word-spacing:35.291160px;}
.ws1_c01162{word-spacing:36.080190px;}
.ws13_c01162{word-spacing:36.946950px;}
._4_c01162{margin-left:-38.265780px;}
._6_c01162{margin-left:-37.156140px;}
._0_c01162{margin-left:-35.075970px;}
._5_c01162{margin-left:-33.426180px;}
._a_c01162{margin-left:-28.692000px;}
._d_c01162{margin-left:-27.054480px;}
._9_c01162{margin-left:-8.093220px;}
._8_c01162{margin-left:-6.168780px;}
._7_c01162{margin-left:-5.021100px;}
._3_c01162{margin-left:-3.729960px;}
._1_c01162{margin-left:-1.864980px;}
._2_c01162{width:1.936710px;}
._f_c01162{width:6.319200px;}
._b_c01162{width:9.711270px;}
._e_c01162{width:21.949380px;}
._c_c01162{width:23.880960px;}
.fc0_c01162{color:rgb(0,0,0);}
.fs1_c01162{font-size:47.820000px;}
.fs0_c01162{font-size:71.730000px;}
.y0_c01162{bottom:0.000000px;}
.y22_c01162{bottom:105.558000px;}
.y21_c01162{bottom:132.448500px;}
.y20_c01162{bottom:159.340500px;}
.y1f_c01162{bottom:204.163500px;}
.y1e_c01162{bottom:231.054000px;}
.y1d_c01162{bottom:275.878500px;}
.y1c_c01162{bottom:302.769000px;}
.y1b_c01162{bottom:329.659500px;}
.y1a_c01162{bottom:374.484000px;}
.y19_c01162{bottom:401.374500px;}
.y18_c01162{bottom:428.265000px;}
.y17_c01162{bottom:455.155500px;}
.y16_c01162{bottom:482.046000px;}
.y15_c01162{bottom:526.870500px;}
.y14_c01162{bottom:553.761000px;}
.y13_c01162{bottom:598.585500px;}
.y12_c01162{bottom:625.476000px;}
.y11_c01162{bottom:652.366500px;}
.y10_c01162{bottom:697.189500px;}
.yf_c01162{bottom:724.081500px;}
.ye_c01162{bottom:750.972000px;}
.yd_c01162{bottom:777.862500px;}
.yc_c01162{bottom:804.753000px;}
.yb_c01162{bottom:831.645000px;}
.ya_c01162{bottom:858.535500px;}
.y9_c01162{bottom:885.426000px;}
.y8_c01162{bottom:912.316500px;}
.y7_c01162{bottom:939.207000px;}
.y6_c01162{bottom:966.099000px;}
.y5_c01162{bottom:992.989500px;}
.y4_c01162{bottom:1019.880000px;}
.y3_c01162{bottom:1046.770500px;}
.y2_c01162{bottom:1073.662500px;}
.y1_c01162{bottom:1140.615000px;}
.h2_c01162{height:53.797500px;}
.h3_c01162{height:58.354320px;}
.h4_c01162{height:58.360320px;}
.h5_c01162{height:71.929500px;}
.h1_c01162{height:1263.750000px;}
.h0_c01162{height:1264.110000px;}
.w0_c01162{width:893.869500px;}
.w1_c01162{width:894.000000px;}
.x0_c01162{left:0.000000px;}
.x3_c01162{left:127.558500px;}
.x2_c01162{left:159.838500px;}
.x7_c01162{left:209.329500px;}
.x6_c01162{left:235.662000px;}
.x8_c01162{left:249.046500px;}
.x4_c01162{left:258.069000px;}
.x5_c01162{left:323.502000px;}
.x1_c01162{left:739.972500px;}
@media print{
.v0_c01162{vertical-align:0.000000pt;}
.v2_c01162{vertical-align:16.117333pt;}
.v1_c01162{vertical-align:23.136000pt;}
.ls5_c01162{letter-spacing:0.000000pt;}
.ls1_c01162{letter-spacing:0.002560pt;}
.ls3_c01162{letter-spacing:18.031627pt;}
.ls0_c01162{letter-spacing:20.868960pt;}
.ls2_c01162{letter-spacing:23.476960pt;}
.ls4_c01162{letter-spacing:23.482293pt;}
.ws0_c01162{word-spacing:-0.063760pt;}
.ws23_c01162{word-spacing:0.000000pt;}
.ws9_c01162{word-spacing:14.537280pt;}
.ws10_c01162{word-spacing:15.302400pt;}
.ws11_c01162{word-spacing:17.278960pt;}
.ws1e_c01162{word-spacing:17.534000pt;}
.ws1b_c01162{word-spacing:17.887307pt;}
.ws1d_c01162{word-spacing:17.916560pt;}
.ws12_c01162{word-spacing:17.980320pt;}
.ws6_c01162{word-spacing:18.107840pt;}
.ws1c_c01162{word-spacing:19.638080pt;}
.ws20_c01162{word-spacing:19.765600pt;}
.ws5_c01162{word-spacing:20.722000pt;}
.ws1f_c01162{word-spacing:20.757867pt;}
.ws1a_c01162{word-spacing:21.678400pt;}
.ws19_c01162{word-spacing:21.742160pt;}
.wsf_c01162{word-spacing:22.060960pt;}
.wsa_c01162{word-spacing:22.252240pt;}
.wsb_c01162{word-spacing:23.910000pt;}
.wse_c01162{word-spacing:24.037520pt;}
.ws17_c01162{word-spacing:24.228800pt;}
.ws14_c01162{word-spacing:24.993920pt;}
.wsc_c01162{word-spacing:25.185200pt;}
.wsd_c01162{word-spacing:25.440240pt;}
.ws4_c01162{word-spacing:26.587920pt;}
.ws2_c01162{word-spacing:26.600480pt;}
.ws21_c01162{word-spacing:27.480560pt;}
.ws3_c01162{word-spacing:27.671840pt;}
.ws22_c01162{word-spacing:28.436960pt;}
.ws15_c01162{word-spacing:29.010800pt;}
.ws18_c01162{word-spacing:29.551067pt;}
.ws16_c01162{word-spacing:29.839680pt;}
.ws7_c01162{word-spacing:30.668560pt;}
.ws8_c01162{word-spacing:31.369920pt;}
.ws1_c01162{word-spacing:32.071280pt;}
.ws13_c01162{word-spacing:32.841733pt;}
._4_c01162{margin-left:-34.014027pt;}
._6_c01162{margin-left:-33.027680pt;}
._0_c01162{margin-left:-31.178640pt;}
._5_c01162{margin-left:-29.712160pt;}
._a_c01162{margin-left:-25.504000pt;}
._d_c01162{margin-left:-24.048427pt;}
._9_c01162{margin-left:-7.193973pt;}
._8_c01162{margin-left:-5.483360pt;}
._7_c01162{margin-left:-4.463200pt;}
._3_c01162{margin-left:-3.315520pt;}
._1_c01162{margin-left:-1.657760pt;}
._2_c01162{width:1.721520pt;}
._f_c01162{width:5.617067pt;}
._b_c01162{width:8.632240pt;}
._e_c01162{width:19.510560pt;}
._c_c01162{width:21.227520pt;}
.fs1_c01162{font-size:42.506667pt;}
.fs0_c01162{font-size:63.760000pt;}
.y0_c01162{bottom:0.000000pt;}
.y22_c01162{bottom:93.829333pt;}
.y21_c01162{bottom:117.732000pt;}
.y20_c01162{bottom:141.636000pt;}
.y1f_c01162{bottom:181.478667pt;}
.y1e_c01162{bottom:205.381333pt;}
.y1d_c01162{bottom:245.225333pt;}
.y1c_c01162{bottom:269.128000pt;}
.y1b_c01162{bottom:293.030667pt;}
.y1a_c01162{bottom:332.874667pt;}
.y19_c01162{bottom:356.777333pt;}
.y18_c01162{bottom:380.680000pt;}
.y17_c01162{bottom:404.582667pt;}
.y16_c01162{bottom:428.485333pt;}
.y15_c01162{bottom:468.329333pt;}
.y14_c01162{bottom:492.232000pt;}
.y13_c01162{bottom:532.076000pt;}
.y12_c01162{bottom:555.978667pt;}
.y11_c01162{bottom:579.881333pt;}
.y10_c01162{bottom:619.724000pt;}
.yf_c01162{bottom:643.628000pt;}
.ye_c01162{bottom:667.530667pt;}
.yd_c01162{bottom:691.433333pt;}
.yc_c01162{bottom:715.336000pt;}
.yb_c01162{bottom:739.240000pt;}
.ya_c01162{bottom:763.142667pt;}
.y9_c01162{bottom:787.045333pt;}
.y8_c01162{bottom:810.948000pt;}
.y7_c01162{bottom:834.850667pt;}
.y6_c01162{bottom:858.754667pt;}
.y5_c01162{bottom:882.657333pt;}
.y4_c01162{bottom:906.560000pt;}
.y3_c01162{bottom:930.462667pt;}
.y2_c01162{bottom:954.366667pt;}
.y1_c01162{bottom:1013.880000pt;}
.h2_c01162{height:47.820000pt;}
.h3_c01162{height:51.870507pt;}
.h4_c01162{height:51.875840pt;}
.h5_c01162{height:63.937333pt;}
.h1_c01162{height:1123.333333pt;}
.h0_c01162{height:1123.653333pt;}
.w0_c01162{width:794.550667pt;}
.w1_c01162{width:794.666667pt;}
.x0_c01162{left:0.000000pt;}
.x3_c01162{left:113.385333pt;}
.x2_c01162{left:142.078667pt;}
.x7_c01162{left:186.070667pt;}
.x6_c01162{left:209.477333pt;}
.x8_c01162{left:221.374667pt;}
.x4_c01162{left:229.394667pt;}
.x5_c01162{left:287.557333pt;}
.x1_c01162{left:657.753333pt;}
}





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

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





.ff0_c01163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01163;src:url('chunks/assets/font_84bf10e3c38a105e4c4ddd38.woff2')format("woff");}.ff1_c01163{font-family:ff1_c01163;line-height:1.001000;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_c01163;src:url('chunks/assets/font_96d307b973728f82aef79ff2.woff2')format("woff");}.ff2_c01163{font-family:ff2_c01163;line-height:1.001000;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_c01163;src:url('chunks/assets/font_1c9d04951ddf2505ee602d43.woff2')format("woff");}.ff3_c01163{font-family:ff3_c01163;line-height:0.697000;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_c01163{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_c01163{vertical-align:0.000000px;}
.v1_c01163{vertical-align:18.132000px;}
.v2_c01163{vertical-align:26.034000px;}
.ls4_c01163{letter-spacing:0.000000px;}
.ls0_c01163{letter-spacing:21.941580px;}
.ls3_c01163{letter-spacing:25.529580px;}
.ls2_c01163{letter-spacing:26.411580px;}
.ls1_c01163{letter-spacing:27.353580px;}
.sc__c01163{text-shadow:none;}
.sc0_c01163{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__c01163{-webkit-text-stroke:0px transparent;}
.sc0_c01163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01163{word-spacing:-0.071730px;}
.ws1d_c01163{word-spacing:0.000000px;}
.ws1a_c01163{word-spacing:15.493680px;}
.wsc_c01163{word-spacing:15.565410px;}
.ws19_c01163{word-spacing:16.713090px;}
.wsb_c01163{word-spacing:17.860770px;}
.ws11_c01163{word-spacing:18.864990px;}
.ws2_c01163{word-spacing:20.873430px;}
.ws16_c01163{word-spacing:21.447270px;}
.wsa_c01163{word-spacing:21.877650px;}
.ws14_c01163{word-spacing:22.451490px;}
.ws3_c01163{word-spacing:22.738410px;}
.ws7_c01163{word-spacing:22.953600px;}
.ws5_c01163{word-spacing:23.312250px;}
.ws12_c01163{word-spacing:24.244740px;}
.ws13_c01163{word-spacing:24.316470px;}
.ws4_c01163{word-spacing:25.033770px;}
.ws18_c01163{word-spacing:25.535880px;}
.wsf_c01163{word-spacing:25.751070px;}
.wsd_c01163{word-spacing:27.113940px;}
.ws10_c01163{word-spacing:27.257400px;}
.wse_c01163{word-spacing:28.548540px;}
.ws1_c01163{word-spacing:28.907190px;}
.ws17_c01163{word-spacing:29.481030px;}
.ws15_c01163{word-spacing:30.197250px;}
.ws6_c01163{word-spacing:32.924070px;}
.ws9_c01163{word-spacing:34.000020px;}
.ws8_c01163{word-spacing:34.789050px;}
.ws1b_c01163{word-spacing:36.008460px;}
.ws1c_c01163{word-spacing:36.725760px;}
._5_c01163{margin-left:-35.219430px;}
._3_c01163{margin-left:-33.139260px;}
._9_c01163{margin-left:-28.692000px;}
._b_c01163{margin-left:-27.329130px;}
._a_c01163{margin-left:-8.105490px;}
._8_c01163{margin-left:-7.101270px;}
._1_c01163{margin-left:-5.881860px;}
._6_c01163{margin-left:-3.707730px;}
._2_c01163{margin-left:-1.936710px;}
._4_c01163{width:1.936710px;}
._7_c01163{width:6.351960px;}
._0_c01163{width:8.826750px;}
.fc0_c01163{color:rgb(0,0,0);}
.fs1_c01163{font-size:47.820000px;}
.fs0_c01163{font-size:71.730000px;}
.y0_c01163{bottom:0.000000px;}
.y21_c01163{bottom:71.973000px;}
.y20_c01163{bottom:98.863500px;}
.y1f_c01163{bottom:141.033000px;}
.y1e_c01163{bottom:167.925000px;}
.y1d_c01163{bottom:210.094500px;}
.y1c_c01163{bottom:236.985000px;}
.y1b_c01163{bottom:263.877000px;}
.y1a_c01163{bottom:306.046500px;}
.y19_c01163{bottom:332.937000px;}
.y18_c01163{bottom:375.108000px;}
.y17_c01163{bottom:401.998500px;}
.y16_c01163{bottom:444.168000px;}
.y15_c01163{bottom:471.060000px;}
.y14_c01163{bottom:497.950500px;}
.y13_c01163{bottom:524.841000px;}
.y12_c01163{bottom:551.731500px;}
.y11_c01163{bottom:593.902500px;}
.y10_c01163{bottom:620.793000px;}
.yf_c01163{bottom:662.964000px;}
.ye_c01163{bottom:689.854500px;}
.yd_c01163{bottom:732.024000px;}
.yc_c01163{bottom:758.916000px;}
.yb_c01163{bottom:801.085500px;}
.ya_c01163{bottom:827.976000px;}
.y9_c01163{bottom:854.868000px;}
.y8_c01163{bottom:897.037500px;}
.y7_c01163{bottom:923.928000px;}
.y6_c01163{bottom:950.818500px;}
.y5_c01163{bottom:977.710500px;}
.y4_c01163{bottom:1019.880000px;}
.y3_c01163{bottom:1046.770500px;}
.y2_c01163{bottom:1073.662500px;}
.y1_c01163{bottom:1140.615000px;}
.h2_c01163{height:53.797500px;}
.h5_c01163{height:58.354320px;}
.h4_c01163{height:58.360320px;}
.h3_c01163{height:71.929500px;}
.h1_c01163{height:1263.750000px;}
.h0_c01163{height:1264.110000px;}
.w0_c01163{width:893.869500px;}
.w1_c01163{width:894.000000px;}
.x0_c01163{left:0.000000px;}
.x4_c01163{left:127.558500px;}
.x2_c01163{left:159.838500px;}
.x8_c01163{left:185.682000px;}
.x3_c01163{left:196.165500px;}
.x7_c01163{left:201.772500px;}
.x6_c01163{left:211.774500px;}
.x5_c01163{left:223.467000px;}
.x9_c01163{left:265.908000px;}
.x1_c01163{left:739.972500px;}
@media print{
.v0_c01163{vertical-align:0.000000pt;}
.v1_c01163{vertical-align:16.117333pt;}
.v2_c01163{vertical-align:23.141333pt;}
.ls4_c01163{letter-spacing:0.000000pt;}
.ls0_c01163{letter-spacing:19.503627pt;}
.ls3_c01163{letter-spacing:22.692960pt;}
.ls2_c01163{letter-spacing:23.476960pt;}
.ls1_c01163{letter-spacing:24.314293pt;}
.ws0_c01163{word-spacing:-0.063760pt;}
.ws1d_c01163{word-spacing:0.000000pt;}
.ws1a_c01163{word-spacing:13.772160pt;}
.wsc_c01163{word-spacing:13.835920pt;}
.ws19_c01163{word-spacing:14.856080pt;}
.wsb_c01163{word-spacing:15.876240pt;}
.ws11_c01163{word-spacing:16.768880pt;}
.ws2_c01163{word-spacing:18.554160pt;}
.ws16_c01163{word-spacing:19.064240pt;}
.wsa_c01163{word-spacing:19.446800pt;}
.ws14_c01163{word-spacing:19.956880pt;}
.ws3_c01163{word-spacing:20.211920pt;}
.ws7_c01163{word-spacing:20.403200pt;}
.ws5_c01163{word-spacing:20.722000pt;}
.ws12_c01163{word-spacing:21.550880pt;}
.ws13_c01163{word-spacing:21.614640pt;}
.ws4_c01163{word-spacing:22.252240pt;}
.ws18_c01163{word-spacing:22.698560pt;}
.wsf_c01163{word-spacing:22.889840pt;}
.wsd_c01163{word-spacing:24.101280pt;}
.ws10_c01163{word-spacing:24.228800pt;}
.wse_c01163{word-spacing:25.376480pt;}
.ws1_c01163{word-spacing:25.695280pt;}
.ws17_c01163{word-spacing:26.205360pt;}
.ws15_c01163{word-spacing:26.842000pt;}
.ws6_c01163{word-spacing:29.265840pt;}
.ws9_c01163{word-spacing:30.222240pt;}
.ws8_c01163{word-spacing:30.923600pt;}
.ws1b_c01163{word-spacing:32.007520pt;}
.ws1c_c01163{word-spacing:32.645120pt;}
._5_c01163{margin-left:-31.306160pt;}
._3_c01163{margin-left:-29.457120pt;}
._9_c01163{margin-left:-25.504000pt;}
._b_c01163{margin-left:-24.292560pt;}
._a_c01163{margin-left:-7.204880pt;}
._8_c01163{margin-left:-6.312240pt;}
._1_c01163{margin-left:-5.228320pt;}
._6_c01163{margin-left:-3.295760pt;}
._2_c01163{margin-left:-1.721520pt;}
._4_c01163{width:1.721520pt;}
._7_c01163{width:5.646187pt;}
._0_c01163{width:7.846000pt;}
.fs1_c01163{font-size:42.506667pt;}
.fs0_c01163{font-size:63.760000pt;}
.y0_c01163{bottom:0.000000pt;}
.y21_c01163{bottom:63.976000pt;}
.y20_c01163{bottom:87.878667pt;}
.y1f_c01163{bottom:125.362667pt;}
.y1e_c01163{bottom:149.266667pt;}
.y1d_c01163{bottom:186.750667pt;}
.y1c_c01163{bottom:210.653333pt;}
.y1b_c01163{bottom:234.557333pt;}
.y1a_c01163{bottom:272.041333pt;}
.y19_c01163{bottom:295.944000pt;}
.y18_c01163{bottom:333.429333pt;}
.y17_c01163{bottom:357.332000pt;}
.y16_c01163{bottom:394.816000pt;}
.y15_c01163{bottom:418.720000pt;}
.y14_c01163{bottom:442.622667pt;}
.y13_c01163{bottom:466.525333pt;}
.y12_c01163{bottom:490.428000pt;}
.y11_c01163{bottom:527.913333pt;}
.y10_c01163{bottom:551.816000pt;}
.yf_c01163{bottom:589.301333pt;}
.ye_c01163{bottom:613.204000pt;}
.yd_c01163{bottom:650.688000pt;}
.yc_c01163{bottom:674.592000pt;}
.yb_c01163{bottom:712.076000pt;}
.ya_c01163{bottom:735.978667pt;}
.y9_c01163{bottom:759.882667pt;}
.y8_c01163{bottom:797.366667pt;}
.y7_c01163{bottom:821.269333pt;}
.y6_c01163{bottom:845.172000pt;}
.y5_c01163{bottom:869.076000pt;}
.y4_c01163{bottom:906.560000pt;}
.y3_c01163{bottom:930.462667pt;}
.y2_c01163{bottom:954.366667pt;}
.y1_c01163{bottom:1013.880000pt;}
.h2_c01163{height:47.820000pt;}
.h5_c01163{height:51.870507pt;}
.h4_c01163{height:51.875840pt;}
.h3_c01163{height:63.937333pt;}
.h1_c01163{height:1123.333333pt;}
.h0_c01163{height:1123.653333pt;}
.w0_c01163{width:794.550667pt;}
.w1_c01163{width:794.666667pt;}
.x0_c01163{left:0.000000pt;}
.x4_c01163{left:113.385333pt;}
.x2_c01163{left:142.078667pt;}
.x8_c01163{left:165.050667pt;}
.x3_c01163{left:174.369333pt;}
.x7_c01163{left:179.353333pt;}
.x6_c01163{left:188.244000pt;}
.x5_c01163{left:198.637333pt;}
.x9_c01163{left:236.362667pt;}
.x1_c01163{left:657.753333pt;}
}





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

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





.ff0_c01164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01164;src:url('chunks/assets/font_81d4870146ed968bcc58a392.woff2')format("woff");}.ff1_c01164{font-family:ff1_c01164;line-height:1.001000;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_c01164;src:url('chunks/assets/font_32381e9208e9ce7ee0d4d858.woff2')format("woff");}.ff2_c01164{font-family:ff2_c01164;line-height:1.001000;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_c01164;src:url('chunks/assets/font_e2350fc2260aabfeb4f562ee.woff2')format("woff");}.ff3_c01164{font-family:ff3_c01164;line-height:0.697000;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_c01164{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_c01164{vertical-align:0.000000px;}
.v1_c01164{vertical-align:18.132000px;}
.v2_c01164{vertical-align:26.028000px;}
.ls6_c01164{letter-spacing:0.000000px;}
.ls2_c01164{letter-spacing:0.002880px;}
.ls0_c01164{letter-spacing:22.019580px;}
.ls4_c01164{letter-spacing:24.029580px;}
.ls1_c01164{letter-spacing:24.695580px;}
.ls3_c01164{letter-spacing:26.411580px;}
.ls5_c01164{letter-spacing:33.059580px;}
.sc__c01164{text-shadow:none;}
.sc0_c01164{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__c01164{-webkit-text-stroke:0px transparent;}
.sc0_c01164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01164{word-spacing:-0.071730px;}
.ws17_c01164{word-spacing:0.000000px;}
.ws16_c01164{word-spacing:15.565410px;}
.ws4_c01164{word-spacing:15.995790px;}
.ws1_c01164{word-spacing:18.936720px;}
.wsf_c01164{word-spacing:19.510560px;}
.wsb_c01164{word-spacing:20.945160px;}
.ws6_c01164{word-spacing:21.375540px;}
.ws3_c01164{word-spacing:21.590730px;}
.ws7_c01164{word-spacing:21.877650px;}
.ws2_c01164{word-spacing:23.312250px;}
.ws5_c01164{word-spacing:23.527440px;}
.ws8_c01164{word-spacing:23.670900px;}
.ws15_c01164{word-spacing:23.957820px;}
.ws14_c01164{word-spacing:24.962040px;}
.ws13_c01164{word-spacing:25.033770px;}
.wsd_c01164{word-spacing:26.611830px;}
.wse_c01164{word-spacing:28.046430px;}
.ws10_c01164{word-spacing:29.983140px;}
.wsa_c01164{word-spacing:31.059090px;}
.ws9_c01164{word-spacing:31.130820px;}
.wsc_c01164{word-spacing:32.924070px;}
.ws11_c01164{word-spacing:36.869220px;}
.ws12_c01164{word-spacing:37.443060px;}
._8_c01164{margin-left:-36.234810px;}
._7_c01164{margin-left:-35.219430px;}
._4_c01164{margin-left:-33.249990px;}
._c_c01164{margin-left:-28.244940px;}
._6_c01164{margin-left:-7.818570px;}
._0_c01164{margin-left:-5.881860px;}
._9_c01164{margin-left:-4.637250px;}
._5_c01164{margin-left:-3.501780px;}
._3_c01164{margin-left:-1.917210px;}
._2_c01164{width:1.936710px;}
._1_c01164{width:6.328050px;}
._a_c01164{width:8.825430px;}
._b_c01164{width:27.685770px;}
.fc0_c01164{color:rgb(0,0,0);}
.fs1_c01164{font-size:47.820000px;}
.fs0_c01164{font-size:71.730000px;}
.y0_c01164{bottom:0.000000px;}
.y20_c01164{bottom:71.973000px;}
.y1f_c01164{bottom:98.863500px;}
.y1e_c01164{bottom:143.478000px;}
.y1d_c01164{bottom:170.368500px;}
.y1c_c01164{bottom:214.984500px;}
.y1b_c01164{bottom:241.875000px;}
.y1a_c01164{bottom:286.489500px;}
.y19_c01164{bottom:313.380000px;}
.y18_c01164{bottom:357.996000px;}
.y17_c01164{bottom:384.886500px;}
.y16_c01164{bottom:429.501000px;}
.y15_c01164{bottom:456.391500px;}
.y14_c01164{bottom:501.006000px;}
.y13_c01164{bottom:527.898000px;}
.y12_c01164{bottom:554.788500px;}
.y11_c01164{bottom:599.403000px;}
.y10_c01164{bottom:626.293500px;}
.yf_c01164{bottom:653.185500px;}
.ye_c01164{bottom:680.076000px;}
.yd_c01164{bottom:724.690500px;}
.yc_c01164{bottom:751.581000px;}
.yb_c01164{bottom:778.473000px;}
.ya_c01164{bottom:805.363500px;}
.y9_c01164{bottom:832.254000px;}
.y8_c01164{bottom:859.144500px;}
.y7_c01164{bottom:903.760500px;}
.y6_c01164{bottom:930.651000px;}
.y5_c01164{bottom:975.265500px;}
.y4_c01164{bottom:1002.156000px;}
.y3_c01164{bottom:1046.770500px;}
.y2_c01164{bottom:1073.662500px;}
.y1_c01164{bottom:1140.615000px;}
.h2_c01164{height:53.797500px;}
.h4_c01164{height:58.354320px;}
.h5_c01164{height:58.360320px;}
.h3_c01164{height:71.929500px;}
.h1_c01164{height:1263.750000px;}
.h0_c01164{height:1264.110000px;}
.w0_c01164{width:893.869500px;}
.w1_c01164{width:894.000000px;}
.x0_c01164{left:0.000000px;}
.x4_c01164{left:127.558500px;}
.x2_c01164{left:159.838500px;}
.x3_c01164{left:210.316500px;}
.x5_c01164{left:211.894500px;}
.x6_c01164{left:244.297500px;}
.x8_c01164{left:526.675500px;}
.x7_c01164{left:714.774000px;}
.x1_c01164{left:739.972500px;}
@media print{
.v0_c01164{vertical-align:0.000000pt;}
.v1_c01164{vertical-align:16.117333pt;}
.v2_c01164{vertical-align:23.136000pt;}
.ls6_c01164{letter-spacing:0.000000pt;}
.ls2_c01164{letter-spacing:0.002560pt;}
.ls0_c01164{letter-spacing:19.572960pt;}
.ls4_c01164{letter-spacing:21.359627pt;}
.ls1_c01164{letter-spacing:21.951627pt;}
.ls3_c01164{letter-spacing:23.476960pt;}
.ls5_c01164{letter-spacing:29.386293pt;}
.ws0_c01164{word-spacing:-0.063760pt;}
.ws17_c01164{word-spacing:0.000000pt;}
.ws16_c01164{word-spacing:13.835920pt;}
.ws4_c01164{word-spacing:14.218480pt;}
.ws1_c01164{word-spacing:16.832640pt;}
.wsf_c01164{word-spacing:17.342720pt;}
.wsb_c01164{word-spacing:18.617920pt;}
.ws6_c01164{word-spacing:19.000480pt;}
.ws3_c01164{word-spacing:19.191760pt;}
.ws7_c01164{word-spacing:19.446800pt;}
.ws2_c01164{word-spacing:20.722000pt;}
.ws5_c01164{word-spacing:20.913280pt;}
.ws8_c01164{word-spacing:21.040800pt;}
.ws15_c01164{word-spacing:21.295840pt;}
.ws14_c01164{word-spacing:22.188480pt;}
.ws13_c01164{word-spacing:22.252240pt;}
.wsd_c01164{word-spacing:23.654960pt;}
.wse_c01164{word-spacing:24.930160pt;}
.ws10_c01164{word-spacing:26.651680pt;}
.wsa_c01164{word-spacing:27.608080pt;}
.ws9_c01164{word-spacing:27.671840pt;}
.wsc_c01164{word-spacing:29.265840pt;}
.ws11_c01164{word-spacing:32.772640pt;}
.ws12_c01164{word-spacing:33.282720pt;}
._8_c01164{margin-left:-32.208720pt;}
._7_c01164{margin-left:-31.306160pt;}
._4_c01164{margin-left:-29.555547pt;}
._c_c01164{margin-left:-25.106613pt;}
._6_c01164{margin-left:-6.949840pt;}
._0_c01164{margin-left:-5.228320pt;}
._9_c01164{margin-left:-4.122000pt;}
._5_c01164{margin-left:-3.112693pt;}
._3_c01164{margin-left:-1.704187pt;}
._2_c01164{width:1.721520pt;}
._1_c01164{width:5.624933pt;}
._a_c01164{width:7.844827pt;}
._b_c01164{width:24.609573pt;}
.fs1_c01164{font-size:42.506667pt;}
.fs0_c01164{font-size:63.760000pt;}
.y0_c01164{bottom:0.000000pt;}
.y20_c01164{bottom:63.976000pt;}
.y1f_c01164{bottom:87.878667pt;}
.y1e_c01164{bottom:127.536000pt;}
.y1d_c01164{bottom:151.438667pt;}
.y1c_c01164{bottom:191.097333pt;}
.y1b_c01164{bottom:215.000000pt;}
.y1a_c01164{bottom:254.657333pt;}
.y19_c01164{bottom:278.560000pt;}
.y18_c01164{bottom:318.218667pt;}
.y17_c01164{bottom:342.121333pt;}
.y16_c01164{bottom:381.778667pt;}
.y15_c01164{bottom:405.681333pt;}
.y14_c01164{bottom:445.338667pt;}
.y13_c01164{bottom:469.242667pt;}
.y12_c01164{bottom:493.145333pt;}
.y11_c01164{bottom:532.802667pt;}
.y10_c01164{bottom:556.705333pt;}
.yf_c01164{bottom:580.609333pt;}
.ye_c01164{bottom:604.512000pt;}
.yd_c01164{bottom:644.169333pt;}
.yc_c01164{bottom:668.072000pt;}
.yb_c01164{bottom:691.976000pt;}
.ya_c01164{bottom:715.878667pt;}
.y9_c01164{bottom:739.781333pt;}
.y8_c01164{bottom:763.684000pt;}
.y7_c01164{bottom:803.342667pt;}
.y6_c01164{bottom:827.245333pt;}
.y5_c01164{bottom:866.902667pt;}
.y4_c01164{bottom:890.805333pt;}
.y3_c01164{bottom:930.462667pt;}
.y2_c01164{bottom:954.366667pt;}
.y1_c01164{bottom:1013.880000pt;}
.h2_c01164{height:47.820000pt;}
.h4_c01164{height:51.870507pt;}
.h5_c01164{height:51.875840pt;}
.h3_c01164{height:63.937333pt;}
.h1_c01164{height:1123.333333pt;}
.h0_c01164{height:1123.653333pt;}
.w0_c01164{width:794.550667pt;}
.w1_c01164{width:794.666667pt;}
.x0_c01164{left:0.000000pt;}
.x4_c01164{left:113.385333pt;}
.x2_c01164{left:142.078667pt;}
.x3_c01164{left:186.948000pt;}
.x5_c01164{left:188.350667pt;}
.x6_c01164{left:217.153333pt;}
.x8_c01164{left:468.156000pt;}
.x7_c01164{left:635.354667pt;}
.x1_c01164{left:657.753333pt;}
}





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

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





.ff0_c01165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01165;src:url('chunks/assets/font_baa6f7efc6bd7b621903aaac.woff2')format("woff");}.ff1_c01165{font-family:ff1_c01165;line-height:1.001000;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_c01165;src:url('chunks/assets/font_ba598bbf4a0469017e098b4a.woff2')format("woff");}.ff2_c01165{font-family:ff2_c01165;line-height:1.001000;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_c01165;src:url('chunks/assets/font_d744d03901a80eea8d06f109.woff2')format("woff");}.ff3_c01165{font-family:ff3_c01165;line-height:0.697000;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_c01165{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_c01165{vertical-align:0.000000px;}
.v2_c01165{vertical-align:18.132000px;}
.v1_c01165{vertical-align:26.034000px;}
.ls7_c01165{letter-spacing:0.000000px;}
.ls0_c01165{letter-spacing:0.002880px;}
.ls6_c01165{letter-spacing:6.347820px;}
.ls5_c01165{letter-spacing:8.737740px;}
.ls1_c01165{letter-spacing:26.411580px;}
.ls3_c01165{letter-spacing:26.417580px;}
.ls2_c01165{letter-spacing:33.707580px;}
.ls4_c01165{letter-spacing:36.881580px;}
.sc__c01165{text-shadow:none;}
.sc0_c01165{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__c01165{-webkit-text-stroke:0px transparent;}
.sc0_c01165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01165{word-spacing:-0.071730px;}
.ws1c_c01165{word-spacing:0.000000px;}
.wse_c01165{word-spacing:15.493680px;}
.ws16_c01165{word-spacing:18.434610px;}
.ws6_c01165{word-spacing:18.649800px;}
.ws10_c01165{word-spacing:20.084400px;}
.ws17_c01165{word-spacing:20.514780px;}
.ws7_c01165{word-spacing:20.729970px;}
.ws19_c01165{word-spacing:21.519000px;}
.ws11_c01165{word-spacing:22.021110px;}
.ws8_c01165{word-spacing:22.738410px;}
.ws9_c01165{word-spacing:22.810140px;}
.ws1b_c01165{word-spacing:23.305260px;}
.ws3_c01165{word-spacing:23.312250px;}
.wsa_c01165{word-spacing:23.336610px;}
.ws1a_c01165{word-spacing:24.459930px;}
.wsf_c01165{word-spacing:25.033770px;}
.ws18_c01165{word-spacing:26.253180px;}
.ws15_c01165{word-spacing:29.911410px;}
.ws5_c01165{word-spacing:30.628710px;}
.ws4_c01165{word-spacing:31.202550px;}
.ws1_c01165{word-spacing:32.063310px;}
.ws2_c01165{word-spacing:33.067530px;}
.wsb_c01165{word-spacing:33.497910px;}
.wsc_c01165{word-spacing:33.569640px;}
.wsd_c01165{word-spacing:33.784830px;}
.ws13_c01165{word-spacing:35.865000px;}
.ws12_c01165{word-spacing:35.936730px;}
.ws14_c01165{word-spacing:36.510570px;}
._7_c01165{margin-left:-37.156140px;}
._6_c01165{margin-left:-35.219430px;}
._4_c01165{margin-left:-33.282720px;}
._b_c01165{margin-left:-29.091120px;}
._3_c01165{margin-left:-27.329130px;}
._2_c01165{margin-left:-8.033760px;}
._a_c01165{margin-left:-5.881860px;}
._1_c01165{margin-left:-3.432390px;}
._0_c01165{margin-left:-1.936710px;}
._5_c01165{width:1.936710px;}
._c_c01165{width:8.734200px;}
._9_c01165{width:9.737640px;}
._8_c01165{width:16.856550px;}
.fc0_c01165{color:rgb(0,0,0);}
.fs1_c01165{font-size:47.820000px;}
.fs0_c01165{font-size:71.730000px;}
.y0_c01165{bottom:0.000000px;}
.y21_c01165{bottom:71.973000px;}
.y20_c01165{bottom:98.863500px;}
.y1f_c01165{bottom:143.478000px;}
.y1e_c01165{bottom:170.368500px;}
.y1d_c01165{bottom:214.984500px;}
.y1c_c01165{bottom:241.875000px;}
.y1b_c01165{bottom:286.489500px;}
.y1a_c01165{bottom:313.380000px;}
.y19_c01165{bottom:340.272000px;}
.y18_c01165{bottom:367.162500px;}
.y17_c01165{bottom:394.053000px;}
.y16_c01165{bottom:438.667500px;}
.y15_c01165{bottom:465.558000px;}
.y14_c01165{bottom:510.174000px;}
.y13_c01165{bottom:537.064500px;}
.y12_c01165{bottom:581.679000px;}
.y11_c01165{bottom:608.569500px;}
.y10_c01165{bottom:653.185500px;}
.yf_c01165{bottom:680.076000px;}
.ye_c01165{bottom:706.966500px;}
.yd_c01165{bottom:711.499500px;}
.yc_c01165{bottom:733.857000px;}
.yb_c01165{bottom:778.473000px;}
.ya_c01165{bottom:805.363500px;}
.y9_c01165{bottom:849.978000px;}
.y8_c01165{bottom:876.868500px;}
.y7_c01165{bottom:903.759000px;}
.y6_c01165{bottom:948.375000px;}
.y5_c01165{bottom:975.265500px;}
.y4_c01165{bottom:1002.156000px;}
.y3_c01165{bottom:1046.770500px;}
.y2_c01165{bottom:1073.662500px;}
.y1_c01165{bottom:1140.615000px;}
.h2_c01165{height:53.797500px;}
.h4_c01165{height:58.354320px;}
.h3_c01165{height:58.360320px;}
.h5_c01165{height:71.929500px;}
.h1_c01165{height:1263.750000px;}
.h0_c01165{height:1264.110000px;}
.w0_c01165{width:893.869500px;}
.w1_c01165{width:894.000000px;}
.x0_c01165{left:0.000000px;}
.x3_c01165{left:127.558500px;}
.x2_c01165{left:159.838500px;}
.xb_c01165{left:171.784500px;}
.x8_c01165{left:199.827000px;}
.x6_c01165{left:202.507500px;}
.x7_c01165{left:203.964000px;}
.x9_c01165{left:213.484500px;}
.x4_c01165{left:251.863500px;}
.xc_c01165{left:290.172000px;}
.x5_c01165{left:298.800000px;}
.xa_c01165{left:307.801500px;}
.x1_c01165{left:739.972500px;}
@media print{
.v0_c01165{vertical-align:0.000000pt;}
.v2_c01165{vertical-align:16.117333pt;}
.v1_c01165{vertical-align:23.141333pt;}
.ls7_c01165{letter-spacing:0.000000pt;}
.ls0_c01165{letter-spacing:0.002560pt;}
.ls6_c01165{letter-spacing:5.642507pt;}
.ls5_c01165{letter-spacing:7.766880pt;}
.ls1_c01165{letter-spacing:23.476960pt;}
.ls3_c01165{letter-spacing:23.482293pt;}
.ls2_c01165{letter-spacing:29.962293pt;}
.ls4_c01165{letter-spacing:32.783627pt;}
.ws0_c01165{word-spacing:-0.063760pt;}
.ws1c_c01165{word-spacing:0.000000pt;}
.wse_c01165{word-spacing:13.772160pt;}
.ws16_c01165{word-spacing:16.386320pt;}
.ws6_c01165{word-spacing:16.577600pt;}
.ws10_c01165{word-spacing:17.852800pt;}
.ws17_c01165{word-spacing:18.235360pt;}
.ws7_c01165{word-spacing:18.426640pt;}
.ws19_c01165{word-spacing:19.128000pt;}
.ws11_c01165{word-spacing:19.574320pt;}
.ws8_c01165{word-spacing:20.211920pt;}
.ws9_c01165{word-spacing:20.275680pt;}
.ws1b_c01165{word-spacing:20.715787pt;}
.ws3_c01165{word-spacing:20.722000pt;}
.wsa_c01165{word-spacing:20.743653pt;}
.ws1a_c01165{word-spacing:21.742160pt;}
.wsf_c01165{word-spacing:22.252240pt;}
.ws18_c01165{word-spacing:23.336160pt;}
.ws15_c01165{word-spacing:26.587920pt;}
.ws5_c01165{word-spacing:27.225520pt;}
.ws4_c01165{word-spacing:27.735600pt;}
.ws1_c01165{word-spacing:28.500720pt;}
.ws2_c01165{word-spacing:29.393360pt;}
.wsb_c01165{word-spacing:29.775920pt;}
.wsc_c01165{word-spacing:29.839680pt;}
.wsd_c01165{word-spacing:30.030960pt;}
.ws13_c01165{word-spacing:31.880000pt;}
.ws12_c01165{word-spacing:31.943760pt;}
.ws14_c01165{word-spacing:32.453840pt;}
._7_c01165{margin-left:-33.027680pt;}
._6_c01165{margin-left:-31.306160pt;}
._4_c01165{margin-left:-29.584640pt;}
._b_c01165{margin-left:-25.858773pt;}
._3_c01165{margin-left:-24.292560pt;}
._2_c01165{margin-left:-7.141120pt;}
._a_c01165{margin-left:-5.228320pt;}
._1_c01165{margin-left:-3.051013pt;}
._0_c01165{margin-left:-1.721520pt;}
._5_c01165{width:1.721520pt;}
._c_c01165{width:7.763733pt;}
._9_c01165{width:8.655680pt;}
._8_c01165{width:14.983600pt;}
.fs1_c01165{font-size:42.506667pt;}
.fs0_c01165{font-size:63.760000pt;}
.y0_c01165{bottom:0.000000pt;}
.y21_c01165{bottom:63.976000pt;}
.y20_c01165{bottom:87.878667pt;}
.y1f_c01165{bottom:127.536000pt;}
.y1e_c01165{bottom:151.438667pt;}
.y1d_c01165{bottom:191.097333pt;}
.y1c_c01165{bottom:215.000000pt;}
.y1b_c01165{bottom:254.657333pt;}
.y1a_c01165{bottom:278.560000pt;}
.y19_c01165{bottom:302.464000pt;}
.y18_c01165{bottom:326.366667pt;}
.y17_c01165{bottom:350.269333pt;}
.y16_c01165{bottom:389.926667pt;}
.y15_c01165{bottom:413.829333pt;}
.y14_c01165{bottom:453.488000pt;}
.y13_c01165{bottom:477.390667pt;}
.y12_c01165{bottom:517.048000pt;}
.y11_c01165{bottom:540.950667pt;}
.y10_c01165{bottom:580.609333pt;}
.yf_c01165{bottom:604.512000pt;}
.ye_c01165{bottom:628.414667pt;}
.yd_c01165{bottom:632.444000pt;}
.yc_c01165{bottom:652.317333pt;}
.yb_c01165{bottom:691.976000pt;}
.ya_c01165{bottom:715.878667pt;}
.y9_c01165{bottom:755.536000pt;}
.y8_c01165{bottom:779.438667pt;}
.y7_c01165{bottom:803.341333pt;}
.y6_c01165{bottom:843.000000pt;}
.y5_c01165{bottom:866.902667pt;}
.y4_c01165{bottom:890.805333pt;}
.y3_c01165{bottom:930.462667pt;}
.y2_c01165{bottom:954.366667pt;}
.y1_c01165{bottom:1013.880000pt;}
.h2_c01165{height:47.820000pt;}
.h4_c01165{height:51.870507pt;}
.h3_c01165{height:51.875840pt;}
.h5_c01165{height:63.937333pt;}
.h1_c01165{height:1123.333333pt;}
.h0_c01165{height:1123.653333pt;}
.w0_c01165{width:794.550667pt;}
.w1_c01165{width:794.666667pt;}
.x0_c01165{left:0.000000pt;}
.x3_c01165{left:113.385333pt;}
.x2_c01165{left:142.078667pt;}
.xb_c01165{left:152.697333pt;}
.x8_c01165{left:177.624000pt;}
.x6_c01165{left:180.006667pt;}
.x7_c01165{left:181.301333pt;}
.x9_c01165{left:189.764000pt;}
.x4_c01165{left:223.878667pt;}
.xc_c01165{left:257.930667pt;}
.x5_c01165{left:265.600000pt;}
.xa_c01165{left:273.601333pt;}
.x1_c01165{left:657.753333pt;}
}





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

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





.ff0_c01166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01166;src:url('chunks/assets/font_09c8d0bcd72e0854482e0c3d.woff2')format("woff");}.ff1_c01166{font-family:ff1_c01166;line-height:1.001000;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_c01166;src:url('chunks/assets/font_5db65cbc10c9810202748a7b.woff2')format("woff");}.ff2_c01166{font-family:ff2_c01166;line-height:1.001000;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_c01166;src:url('chunks/assets/font_6a49ffe08bcd63432ca227c2.woff2')format("woff");}.ff3_c01166{font-family:ff3_c01166;line-height:0.697000;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_c01166{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_c01166{vertical-align:0.000000px;}
.v1_c01166{vertical-align:18.132000px;}
.v2_c01166{vertical-align:26.028000px;}
.ls7_c01166{letter-spacing:0.000000px;}
.ls0_c01166{letter-spacing:8.738670px;}
.ls6_c01166{letter-spacing:8.766180px;}
.ls2_c01166{letter-spacing:26.411580px;}
.ls3_c01166{letter-spacing:26.417580px;}
.ls1_c01166{letter-spacing:32.885580px;}
.ls4_c01166{letter-spacing:33.293580px;}
.ls5_c01166{letter-spacing:41.105580px;}
.sc__c01166{text-shadow:none;}
.sc0_c01166{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__c01166{-webkit-text-stroke:0px transparent;}
.sc0_c01166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01166{word-spacing:-0.071730px;}
.ws1a_c01166{word-spacing:0.000000px;}
.ws17_c01166{word-spacing:17.430390px;}
.ws14_c01166{word-spacing:17.932500px;}
.ws15_c01166{word-spacing:18.793260px;}
.wsc_c01166{word-spacing:19.725750px;}
.ws16_c01166{word-spacing:20.873430px;}
.ws9_c01166{word-spacing:21.303810px;}
.ws13_c01166{word-spacing:21.662460px;}
.ws3_c01166{word-spacing:23.312250px;}
.ws4_c01166{word-spacing:23.455710px;}
.ws12_c01166{word-spacing:24.244740px;}
.ws18_c01166{word-spacing:24.531660px;}
.ws19_c01166{word-spacing:24.675120px;}
.ws5_c01166{word-spacing:24.818580px;}
.ws7_c01166{word-spacing:25.033770px;}
.ws11_c01166{word-spacing:25.822800px;}
.ws6_c01166{word-spacing:26.468370px;}
.wsa_c01166{word-spacing:29.194110px;}
.ws8_c01166{word-spacing:29.481030px;}
.ws2_c01166{word-spacing:29.767950px;}
.ws1_c01166{word-spacing:29.839680px;}
.wsd_c01166{word-spacing:30.198330px;}
.wsb_c01166{word-spacing:30.413520px;}
.wse_c01166{word-spacing:31.346010px;}
.ws10_c01166{word-spacing:34.430400px;}
.wsf_c01166{word-spacing:38.016900px;}
._3_c01166{margin-left:-37.012680px;}
._1_c01166{margin-left:-35.147700px;}
._a_c01166{margin-left:-33.360120px;}
._8_c01166{margin-left:-28.692000px;}
._d_c01166{margin-left:-27.329130px;}
._c_c01166{margin-left:-8.293320px;}
._7_c01166{margin-left:-7.236030px;}
._5_c01166{margin-left:-5.881860px;}
._9_c01166{margin-left:-3.553470px;}
._2_c01166{margin-left:-1.898010px;}
._0_c01166{width:1.793250px;}
._4_c01166{width:9.757050px;}
._6_c01166{width:32.313360px;}
._b_c01166{width:35.530680px;}
.fc0_c01166{color:rgb(0,0,0);}
.fs1_c01166{font-size:47.820000px;}
.fs0_c01166{font-size:71.730000px;}
.y0_c01166{bottom:0.000000px;}
.y21_c01166{bottom:71.973000px;}
.y20_c01166{bottom:98.863500px;}
.y1f_c01166{bottom:142.561500px;}
.y1e_c01166{bottom:169.452000px;}
.y1d_c01166{bottom:213.150000px;}
.y1c_c01166{bottom:240.042000px;}
.y1b_c01166{bottom:283.740000px;}
.y1a_c01166{bottom:310.630500px;}
.y19_c01166{bottom:337.521000px;}
.y18_c01166{bottom:381.219000px;}
.y17_c01166{bottom:408.111000px;}
.y16_c01166{bottom:435.001500px;}
.y15_c01166{bottom:461.892000px;}
.y14_c01166{bottom:488.782500px;}
.y13_c01166{bottom:532.480500px;}
.y12_c01166{bottom:559.372500px;}
.y11_c01166{bottom:586.263000px;}
.y10_c01166{bottom:613.153500px;}
.yf_c01166{bottom:656.851500px;}
.ye_c01166{bottom:683.742000px;}
.yd_c01166{bottom:710.634000px;}
.yc_c01166{bottom:754.332000px;}
.yb_c01166{bottom:781.222500px;}
.ya_c01166{bottom:808.113000px;}
.y9_c01166{bottom:851.811000px;}
.y8_c01166{bottom:878.703000px;}
.y7_c01166{bottom:922.401000px;}
.y6_c01166{bottom:949.291500px;}
.y5_c01166{bottom:976.182000px;}
.y4_c01166{bottom:1019.880000px;}
.y3_c01166{bottom:1046.770500px;}
.y2_c01166{bottom:1073.662500px;}
.y1_c01166{bottom:1140.615000px;}
.h2_c01166{height:53.797500px;}
.h4_c01166{height:58.354320px;}
.h5_c01166{height:58.360320px;}
.h3_c01166{height:71.929500px;}
.h1_c01166{height:1263.750000px;}
.h0_c01166{height:1264.110000px;}
.w0_c01166{width:893.869500px;}
.w1_c01166{width:894.000000px;}
.x0_c01166{left:0.000000px;}
.x4_c01166{left:127.558500px;}
.x2_c01166{left:159.838500px;}
.x3_c01166{left:172.761000px;}
.x5_c01166{left:204.939000px;}
.x7_c01166{left:212.262000px;}
.x8_c01166{left:295.825500px;}
.x6_c01166{left:594.006000px;}
.x1_c01166{left:739.972500px;}
@media print{
.v0_c01166{vertical-align:0.000000pt;}
.v1_c01166{vertical-align:16.117333pt;}
.v2_c01166{vertical-align:23.136000pt;}
.ls7_c01166{letter-spacing:0.000000pt;}
.ls0_c01166{letter-spacing:7.767707pt;}
.ls6_c01166{letter-spacing:7.792160pt;}
.ls2_c01166{letter-spacing:23.476960pt;}
.ls3_c01166{letter-spacing:23.482293pt;}
.ls1_c01166{letter-spacing:29.231627pt;}
.ls4_c01166{letter-spacing:29.594293pt;}
.ls5_c01166{letter-spacing:36.538293pt;}
.ws0_c01166{word-spacing:-0.063760pt;}
.ws1a_c01166{word-spacing:0.000000pt;}
.ws17_c01166{word-spacing:15.493680pt;}
.ws14_c01166{word-spacing:15.940000pt;}
.ws15_c01166{word-spacing:16.705120pt;}
.wsc_c01166{word-spacing:17.534000pt;}
.ws16_c01166{word-spacing:18.554160pt;}
.ws9_c01166{word-spacing:18.936720pt;}
.ws13_c01166{word-spacing:19.255520pt;}
.ws3_c01166{word-spacing:20.722000pt;}
.ws4_c01166{word-spacing:20.849520pt;}
.ws12_c01166{word-spacing:21.550880pt;}
.ws18_c01166{word-spacing:21.805920pt;}
.ws19_c01166{word-spacing:21.933440pt;}
.ws5_c01166{word-spacing:22.060960pt;}
.ws7_c01166{word-spacing:22.252240pt;}
.ws11_c01166{word-spacing:22.953600pt;}
.ws6_c01166{word-spacing:23.527440pt;}
.wsa_c01166{word-spacing:25.950320pt;}
.ws8_c01166{word-spacing:26.205360pt;}
.ws2_c01166{word-spacing:26.460400pt;}
.ws1_c01166{word-spacing:26.524160pt;}
.wsd_c01166{word-spacing:26.842960pt;}
.wsb_c01166{word-spacing:27.034240pt;}
.wse_c01166{word-spacing:27.863120pt;}
.ws10_c01166{word-spacing:30.604800pt;}
.wsf_c01166{word-spacing:33.792800pt;}
._3_c01166{margin-left:-32.900160pt;}
._1_c01166{margin-left:-31.242400pt;}
._a_c01166{margin-left:-29.653440pt;}
._8_c01166{margin-left:-25.504000pt;}
._d_c01166{margin-left:-24.292560pt;}
._c_c01166{margin-left:-7.371840pt;}
._7_c01166{margin-left:-6.432027pt;}
._5_c01166{margin-left:-5.228320pt;}
._9_c01166{margin-left:-3.158640pt;}
._2_c01166{margin-left:-1.687120pt;}
._0_c01166{width:1.594000pt;}
._4_c01166{width:8.672933pt;}
._6_c01166{width:28.722987pt;}
._b_c01166{width:31.582827pt;}
.fs1_c01166{font-size:42.506667pt;}
.fs0_c01166{font-size:63.760000pt;}
.y0_c01166{bottom:0.000000pt;}
.y21_c01166{bottom:63.976000pt;}
.y20_c01166{bottom:87.878667pt;}
.y1f_c01166{bottom:126.721333pt;}
.y1e_c01166{bottom:150.624000pt;}
.y1d_c01166{bottom:189.466667pt;}
.y1c_c01166{bottom:213.370667pt;}
.y1b_c01166{bottom:252.213333pt;}
.y1a_c01166{bottom:276.116000pt;}
.y19_c01166{bottom:300.018667pt;}
.y18_c01166{bottom:338.861333pt;}
.y17_c01166{bottom:362.765333pt;}
.y16_c01166{bottom:386.668000pt;}
.y15_c01166{bottom:410.570667pt;}
.y14_c01166{bottom:434.473333pt;}
.y13_c01166{bottom:473.316000pt;}
.y12_c01166{bottom:497.220000pt;}
.y11_c01166{bottom:521.122667pt;}
.y10_c01166{bottom:545.025333pt;}
.yf_c01166{bottom:583.868000pt;}
.ye_c01166{bottom:607.770667pt;}
.yd_c01166{bottom:631.674667pt;}
.yc_c01166{bottom:670.517333pt;}
.yb_c01166{bottom:694.420000pt;}
.ya_c01166{bottom:718.322667pt;}
.y9_c01166{bottom:757.165333pt;}
.y8_c01166{bottom:781.069333pt;}
.y7_c01166{bottom:819.912000pt;}
.y6_c01166{bottom:843.814667pt;}
.y5_c01166{bottom:867.717333pt;}
.y4_c01166{bottom:906.560000pt;}
.y3_c01166{bottom:930.462667pt;}
.y2_c01166{bottom:954.366667pt;}
.y1_c01166{bottom:1013.880000pt;}
.h2_c01166{height:47.820000pt;}
.h4_c01166{height:51.870507pt;}
.h5_c01166{height:51.875840pt;}
.h3_c01166{height:63.937333pt;}
.h1_c01166{height:1123.333333pt;}
.h0_c01166{height:1123.653333pt;}
.w0_c01166{width:794.550667pt;}
.w1_c01166{width:794.666667pt;}
.x0_c01166{left:0.000000pt;}
.x4_c01166{left:113.385333pt;}
.x2_c01166{left:142.078667pt;}
.x3_c01166{left:153.565333pt;}
.x5_c01166{left:182.168000pt;}
.x7_c01166{left:188.677333pt;}
.x8_c01166{left:262.956000pt;}
.x6_c01166{left:528.005333pt;}
.x1_c01166{left:657.753333pt;}
}





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

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





.ff0_c01167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01167;src:url('chunks/assets/font_f70580bfbdb0cd1771b943ea.woff2')format("woff");}.ff1_c01167{font-family:ff1_c01167;line-height:1.001000;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_c01167;src:url('chunks/assets/font_8cd2c3fe31a2c0945ef4d069.woff2')format("woff");}.ff2_c01167{font-family:ff2_c01167;line-height:1.001000;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_c01167;src:url('chunks/assets/font_6a49ffe08bcd63432ca227c2.woff2')format("woff");}.ff3_c01167{font-family:ff3_c01167;line-height:0.697000;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_c01167;src:url('chunks/assets/font_e2eb9d7cfb968915bc00d322.woff2')format("woff");}.ff4_c01167{font-family:ff4_c01167;line-height:1.001000;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_c01167{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_c01167{vertical-align:0.000000px;}
.v2_c01167{vertical-align:17.334000px;}
.v1_c01167{vertical-align:26.034000px;}
.ls2_c01167{letter-spacing:0.000000px;}
.ls1_c01167{letter-spacing:10.257630px;}
.ls0_c01167{letter-spacing:26.411580px;}
.sc__c01167{text-shadow:none;}
.sc0_c01167{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__c01167{-webkit-text-stroke:0px transparent;}
.sc0_c01167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01167{word-spacing:-0.071730px;}
.ws8_c01167{word-spacing:0.000000px;}
.ws6_c01167{word-spacing:18.291150px;}
.ws5_c01167{word-spacing:23.312250px;}
.ws1_c01167{word-spacing:23.957820px;}
.ws4_c01167{word-spacing:25.033770px;}
.ws7_c01167{word-spacing:26.827020px;}
.ws2_c01167{word-spacing:29.767950px;}
.ws3_c01167{word-spacing:30.987360px;}
._5_c01167{margin-left:-36.510570px;}
._1_c01167{margin-left:-35.004240px;}
._3_c01167{margin-left:-28.692000px;}
._2_c01167{margin-left:-7.443540px;}
._4_c01167{margin-left:-3.658230px;}
._0_c01167{margin-left:-1.936710px;}
._6_c01167{width:1.864980px;}
._7_c01167{width:3.801690px;}
.fc0_c01167{color:rgb(0,0,0);}
.fs1_c01167{font-size:47.820000px;}
.fs0_c01167{font-size:71.730000px;}
.y0_c01167{bottom:0.000000px;}
.y14_c01167{bottom:482.029500px;}
.y13_c01167{bottom:508.921500px;}
.y12_c01167{bottom:535.812000px;}
.y11_c01167{bottom:562.702500px;}
.y10_c01167{bottom:589.593000px;}
.yf_c01167{bottom:616.485000px;}
.ye_c01167{bottom:643.375500px;}
.yd_c01167{bottom:670.266000px;}
.yc_c01167{bottom:697.156500px;}
.yb_c01167{bottom:724.048500px;}
.ya_c01167{bottom:750.939000px;}
.y9_c01167{bottom:777.829500px;}
.y8_c01167{bottom:804.720000px;}
.y7_c01167{bottom:867.477000px;}
.y6_c01167{bottom:948.166500px;}
.y5_c01167{bottom:975.057000px;}
.y4_c01167{bottom:1019.880000px;}
.y3_c01167{bottom:1046.770500px;}
.y2_c01167{bottom:1073.662500px;}
.y1_c01167{bottom:1140.615000px;}
.h2_c01167{height:53.797500px;}
.h3_c01167{height:58.360320px;}
.h4_c01167{height:71.131500px;}
.h1_c01167{height:1263.750000px;}
.h0_c01167{height:1264.110000px;}
.w0_c01167{width:893.869500px;}
.w1_c01167{width:894.000000px;}
.x0_c01167{left:0.000000px;}
.x3_c01167{left:127.558500px;}
.x2_c01167{left:159.838500px;}
.x4_c01167{left:173.619000px;}
.x1_c01167{left:739.972500px;}
@media print{
.v0_c01167{vertical-align:0.000000pt;}
.v2_c01167{vertical-align:15.408000pt;}
.v1_c01167{vertical-align:23.141333pt;}
.ls2_c01167{letter-spacing:0.000000pt;}
.ls1_c01167{letter-spacing:9.117893pt;}
.ls0_c01167{letter-spacing:23.476960pt;}
.ws0_c01167{word-spacing:-0.063760pt;}
.ws8_c01167{word-spacing:0.000000pt;}
.ws6_c01167{word-spacing:16.258800pt;}
.ws5_c01167{word-spacing:20.722000pt;}
.ws1_c01167{word-spacing:21.295840pt;}
.ws4_c01167{word-spacing:22.252240pt;}
.ws7_c01167{word-spacing:23.846240pt;}
.ws2_c01167{word-spacing:26.460400pt;}
.ws3_c01167{word-spacing:27.544320pt;}
._5_c01167{margin-left:-32.453840pt;}
._1_c01167{margin-left:-31.114880pt;}
._3_c01167{margin-left:-25.504000pt;}
._2_c01167{margin-left:-6.616480pt;}
._4_c01167{margin-left:-3.251760pt;}
._0_c01167{margin-left:-1.721520pt;}
._6_c01167{width:1.657760pt;}
._7_c01167{width:3.379280pt;}
.fs1_c01167{font-size:42.506667pt;}
.fs0_c01167{font-size:63.760000pt;}
.y0_c01167{bottom:0.000000pt;}
.y14_c01167{bottom:428.470667pt;}
.y13_c01167{bottom:452.374667pt;}
.y12_c01167{bottom:476.277333pt;}
.y11_c01167{bottom:500.180000pt;}
.y10_c01167{bottom:524.082667pt;}
.yf_c01167{bottom:547.986667pt;}
.ye_c01167{bottom:571.889333pt;}
.yd_c01167{bottom:595.792000pt;}
.yc_c01167{bottom:619.694667pt;}
.yb_c01167{bottom:643.598667pt;}
.ya_c01167{bottom:667.501333pt;}
.y9_c01167{bottom:691.404000pt;}
.y8_c01167{bottom:715.306667pt;}
.y7_c01167{bottom:771.090667pt;}
.y6_c01167{bottom:842.814667pt;}
.y5_c01167{bottom:866.717333pt;}
.y4_c01167{bottom:906.560000pt;}
.y3_c01167{bottom:930.462667pt;}
.y2_c01167{bottom:954.366667pt;}
.y1_c01167{bottom:1013.880000pt;}
.h2_c01167{height:47.820000pt;}
.h3_c01167{height:51.875840pt;}
.h4_c01167{height:63.228000pt;}
.h1_c01167{height:1123.333333pt;}
.h0_c01167{height:1123.653333pt;}
.w0_c01167{width:794.550667pt;}
.w1_c01167{width:794.666667pt;}
.x0_c01167{left:0.000000pt;}
.x3_c01167{left:113.385333pt;}
.x2_c01167{left:142.078667pt;}
.x4_c01167{left:154.328000pt;}
.x1_c01167{left:657.753333pt;}
}





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

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





.ff0_c01168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01168;src:url('chunks/assets/font_96a2fb23f036d35eed63ca19.woff2')format("woff");}.ff1_c01168{font-family:ff1_c01168;line-height:1.001000;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_c01168;src:url('chunks/assets/font_b0ea9b834d96709c1c7670a8.woff2')format("woff");}.ff2_c01168{font-family:ff2_c01168;line-height:1.001000;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_c01168{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_c01168{vertical-align:0.000000px;}
.v1_c01168{vertical-align:18.132000px;}
.ls0_c01168{letter-spacing:0.000000px;}
.sc__c01168{text-shadow:none;}
.sc0_c01168{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__c01168{-webkit-text-stroke:0px transparent;}
.sc0_c01168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01168{word-spacing:-0.071730px;}
.ws18_c01168{word-spacing:0.000000px;}
.wsd_c01168{word-spacing:15.493680px;}
.wsf_c01168{word-spacing:15.565410px;}
.ws7_c01168{word-spacing:16.354440px;}
.wsc_c01168{word-spacing:16.497900px;}
.ws6_c01168{word-spacing:19.295370px;}
.ws9_c01168{word-spacing:19.510560px;}
.wsb_c01168{word-spacing:19.869210px;}
.ws14_c01168{word-spacing:22.308030px;}
.ws4_c01168{word-spacing:22.451490px;}
.ws1_c01168{word-spacing:23.312250px;}
.ws2_c01168{word-spacing:23.383980px;}
.ws13_c01168{word-spacing:23.670900px;}
.ws17_c01168{word-spacing:25.751070px;}
.ws12_c01168{word-spacing:27.902970px;}
.ws10_c01168{word-spacing:28.046430px;}
.wse_c01168{word-spacing:28.763730px;}
.ws16_c01168{word-spacing:29.552760px;}
.ws11_c01168{word-spacing:32.116020px;}
.ws15_c01168{word-spacing:32.118510px;}
.ws3_c01168{word-spacing:33.713100px;}
.wsa_c01168{word-spacing:34.071750px;}
.ws8_c01168{word-spacing:35.291160px;}
.ws0_c01168{word-spacing:55.622028px;}
._1_c01168{margin-left:-80.012436px;}
._4_c01168{margin-left:-35.219430px;}
._3_c01168{margin-left:-33.282720px;}
._7_c01168{margin-left:-27.329130px;}
._6_c01168{margin-left:-7.746840px;}
._5_c01168{margin-left:-5.881860px;}
._0_c01168{margin-left:-3.866772px;}
._2_c01168{margin-left:-1.936710px;}
._9_c01168{width:8.746350px;}
._8_c01168{width:28.664250px;}
._a_c01168{width:38.292330px;}
.fc0_c01168{color:rgb(0,0,0);}
.fs1_c01168{font-size:71.730000px;}
.fs0_c01168{font-size:148.722000px;}
.y0_c01168{bottom:0.000000px;}
.y24_c01168{bottom:40.083000px;}
.y21_c01168{bottom:97.635000px;}
.y20_c01168{bottom:124.527000px;}
.y1f_c01168{bottom:151.417500px;}
.y1e_c01168{bottom:178.308000px;}
.y1d_c01168{bottom:205.198500px;}
.y23_c01168{bottom:232.089000px;}
.y1c_c01168{bottom:232.090500px;}
.y1b_c01168{bottom:258.981000px;}
.y1a_c01168{bottom:285.871500px;}
.y19_c01168{bottom:312.762000px;}
.y18_c01168{bottom:339.652500px;}
.y17_c01168{bottom:366.544500px;}
.y16_c01168{bottom:393.435000px;}
.y15_c01168{bottom:420.325500px;}
.y14_c01168{bottom:447.216000px;}
.y13_c01168{bottom:474.108000px;}
.y12_c01168{bottom:500.998500px;}
.y11_c01168{bottom:527.889000px;}
.y10_c01168{bottom:554.779500px;}
.yf_c01168{bottom:581.671500px;}
.ye_c01168{bottom:608.562000px;}
.yd_c01168{bottom:635.452500px;}
.yc_c01168{bottom:662.343000px;}
.y22_c01168{bottom:689.233500px;}
.yb_c01168{bottom:689.235000px;}
.ya_c01168{bottom:716.125500px;}
.y9_c01168{bottom:743.016000px;}
.y8_c01168{bottom:769.906500px;}
.y7_c01168{bottom:796.797000px;}
.y6_c01168{bottom:823.689000px;}
.y5_c01168{bottom:850.579500px;}
.y4_c01168{bottom:877.470000px;}
.y3_c01168{bottom:904.360500px;}
.y2_c01168{bottom:982.069500px;}
.y1_c01168{bottom:991.054500px;}
.h3_c01168{height:53.797500px;}
.h4_c01168{height:71.929500px;}
.h2_c01168{height:111.541500px;}
.h1_c01168{height:1263.750000px;}
.h0_c01168{height:1264.110000px;}
.w0_c01168{width:893.869500px;}
.w1_c01168{width:894.000000px;}
.x0_c01168{left:0.000000px;}
.x1_c01168{left:124.891500px;}
.x2_c01168{left:127.558500px;}
.x3_c01168{left:187.335000px;}
.x5_c01168{left:237.030000px;}
.x4_c01168{left:295.269000px;}
.xb_c01168{left:433.765500px;}
.x6_c01168{left:454.407000px;}
.x7_c01168{left:514.183500px;}
.x9_c01168{left:526.828500px;}
.x8_c01168{left:552.166500px;}
.xa_c01168{left:597.699000px;}
@media print{
.v0_c01168{vertical-align:0.000000pt;}
.v1_c01168{vertical-align:16.117333pt;}
.ls0_c01168{letter-spacing:0.000000pt;}
.ws5_c01168{word-spacing:-0.063760pt;}
.ws18_c01168{word-spacing:0.000000pt;}
.wsd_c01168{word-spacing:13.772160pt;}
.wsf_c01168{word-spacing:13.835920pt;}
.ws7_c01168{word-spacing:14.537280pt;}
.wsc_c01168{word-spacing:14.664800pt;}
.ws6_c01168{word-spacing:17.151440pt;}
.ws9_c01168{word-spacing:17.342720pt;}
.wsb_c01168{word-spacing:17.661520pt;}
.ws14_c01168{word-spacing:19.829360pt;}
.ws4_c01168{word-spacing:19.956880pt;}
.ws1_c01168{word-spacing:20.722000pt;}
.ws2_c01168{word-spacing:20.785760pt;}
.ws13_c01168{word-spacing:21.040800pt;}
.ws17_c01168{word-spacing:22.889840pt;}
.ws12_c01168{word-spacing:24.802640pt;}
.ws10_c01168{word-spacing:24.930160pt;}
.wse_c01168{word-spacing:25.567760pt;}
.ws16_c01168{word-spacing:26.269120pt;}
.ws11_c01168{word-spacing:28.547573pt;}
.ws15_c01168{word-spacing:28.549787pt;}
.ws3_c01168{word-spacing:29.967200pt;}
.wsa_c01168{word-spacing:30.286000pt;}
.ws8_c01168{word-spacing:31.369920pt;}
.ws0_c01168{word-spacing:49.441803pt;}
._1_c01168{margin-left:-71.122165pt;}
._4_c01168{margin-left:-31.306160pt;}
._3_c01168{margin-left:-29.584640pt;}
._7_c01168{margin-left:-24.292560pt;}
._6_c01168{margin-left:-6.886080pt;}
._5_c01168{margin-left:-5.228320pt;}
._0_c01168{margin-left:-3.437131pt;}
._2_c01168{margin-left:-1.721520pt;}
._9_c01168{width:7.774533pt;}
._8_c01168{width:25.479333pt;}
._a_c01168{width:34.037627pt;}
.fs1_c01168{font-size:63.760000pt;}
.fs0_c01168{font-size:132.197333pt;}
.y0_c01168{bottom:0.000000pt;}
.y24_c01168{bottom:35.629333pt;}
.y21_c01168{bottom:86.786667pt;}
.y20_c01168{bottom:110.690667pt;}
.y1f_c01168{bottom:134.593333pt;}
.y1e_c01168{bottom:158.496000pt;}
.y1d_c01168{bottom:182.398667pt;}
.y23_c01168{bottom:206.301333pt;}
.y1c_c01168{bottom:206.302667pt;}
.y1b_c01168{bottom:230.205333pt;}
.y1a_c01168{bottom:254.108000pt;}
.y19_c01168{bottom:278.010667pt;}
.y18_c01168{bottom:301.913333pt;}
.y17_c01168{bottom:325.817333pt;}
.y16_c01168{bottom:349.720000pt;}
.y15_c01168{bottom:373.622667pt;}
.y14_c01168{bottom:397.525333pt;}
.y13_c01168{bottom:421.429333pt;}
.y12_c01168{bottom:445.332000pt;}
.y11_c01168{bottom:469.234667pt;}
.y10_c01168{bottom:493.137333pt;}
.yf_c01168{bottom:517.041333pt;}
.ye_c01168{bottom:540.944000pt;}
.yd_c01168{bottom:564.846667pt;}
.yc_c01168{bottom:588.749333pt;}
.y22_c01168{bottom:612.652000pt;}
.yb_c01168{bottom:612.653333pt;}
.ya_c01168{bottom:636.556000pt;}
.y9_c01168{bottom:660.458667pt;}
.y8_c01168{bottom:684.361333pt;}
.y7_c01168{bottom:708.264000pt;}
.y6_c01168{bottom:732.168000pt;}
.y5_c01168{bottom:756.070667pt;}
.y4_c01168{bottom:779.973333pt;}
.y3_c01168{bottom:803.876000pt;}
.y2_c01168{bottom:872.950667pt;}
.y1_c01168{bottom:880.937333pt;}
.h3_c01168{height:47.820000pt;}
.h4_c01168{height:63.937333pt;}
.h2_c01168{height:99.148000pt;}
.h1_c01168{height:1123.333333pt;}
.h0_c01168{height:1123.653333pt;}
.w0_c01168{width:794.550667pt;}
.w1_c01168{width:794.666667pt;}
.x0_c01168{left:0.000000pt;}
.x1_c01168{left:111.014667pt;}
.x2_c01168{left:113.385333pt;}
.x3_c01168{left:166.520000pt;}
.x5_c01168{left:210.693333pt;}
.x4_c01168{left:262.461333pt;}
.xb_c01168{left:385.569333pt;}
.x6_c01168{left:403.917333pt;}
.x7_c01168{left:457.052000pt;}
.x9_c01168{left:468.292000pt;}
.x8_c01168{left:490.814667pt;}
.xa_c01168{left:531.288000pt;}
}





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

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





.ff0_c01169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01169;src:url('chunks/assets/font_cf58bdef4ebe47104cddc9a4.woff2')format("woff");}.ff1_c01169{font-family:ff1_c01169;line-height:1.001000;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_c01169{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_c01169{vertical-align:0.000000px;}
.v1_c01169{vertical-align:18.132000px;}
.ls0_c01169{letter-spacing:0.000000px;}
.sc__c01169{text-shadow:none;}
.sc0_c01169{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__c01169{-webkit-text-stroke:0px transparent;}
.sc0_c01169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14_c01169{word-spacing:0.000000px;}
.ws3_c01169{word-spacing:15.565410px;}
.ws2_c01169{word-spacing:16.856550px;}
.ws10_c01169{word-spacing:21.375540px;}
.wsc_c01169{word-spacing:21.590730px;}
.wsf_c01169{word-spacing:22.308030px;}
.ws4_c01169{word-spacing:22.451490px;}
.ws0_c01169{word-spacing:23.312250px;}
.ws7_c01169{word-spacing:23.383980px;}
.ws9_c01169{word-spacing:23.455710px;}
.wsa_c01169{word-spacing:23.670900px;}
.ws12_c01169{word-spacing:24.675120px;}
.wsd_c01169{word-spacing:25.464150px;}
.wse_c01169{word-spacing:25.751070px;}
.ws5_c01169{word-spacing:27.257400px;}
.ws6_c01169{word-spacing:32.093580px;}
.ws8_c01169{word-spacing:32.272740px;}
.ws13_c01169{word-spacing:35.219430px;}
.wsb_c01169{word-spacing:35.865000px;}
.ws11_c01169{word-spacing:36.725760px;}
.ws1_c01169{word-spacing:1704.448260px;}
._a_c01169{margin-left:-37.084410px;}
._7_c01169{margin-left:-35.004240px;}
._5_c01169{margin-left:-33.210990px;}
._8_c01169{margin-left:-31.274280px;}
._6_c01169{margin-left:-27.400860px;}
._0_c01169{margin-left:-7.746840px;}
._2_c01169{margin-left:-5.881860px;}
._9_c01169{margin-left:-3.945150px;}
._4_c01169{margin-left:-2.008440px;}
._3_c01169{width:2.008440px;}
._1_c01169{width:6.375570px;}
.fc0_c01169{color:rgb(0,0,0);}
.fs0_c01169{font-size:71.730000px;}
.y0_c01169{bottom:0.000000px;}
.y45_c01169{bottom:78.700500px;}
.y27_c01169{bottom:90.648000px;}
.y44_c01169{bottom:105.591000px;}
.y26_c01169{bottom:117.538500px;}
.y43_c01169{bottom:132.481500px;}
.y25_c01169{bottom:144.429000px;}
.y42_c01169{bottom:159.373500px;}
.y24_c01169{bottom:171.319500px;}
.y41_c01169{bottom:186.264000px;}
.y23_c01169{bottom:198.211500px;}
.y40_c01169{bottom:213.154500px;}
.y22_c01169{bottom:225.102000px;}
.y3f_c01169{bottom:240.045000px;}
.y21_c01169{bottom:251.992500px;}
.y3e_c01169{bottom:266.937000px;}
.y20_c01169{bottom:278.883000px;}
.y3d_c01169{bottom:293.827500px;}
.y1f_c01169{bottom:305.773500px;}
.y3c_c01169{bottom:320.718000px;}
.y1e_c01169{bottom:332.665500px;}
.y3b_c01169{bottom:347.608500px;}
.y1d_c01169{bottom:359.556000px;}
.y3a_c01169{bottom:374.500500px;}
.y1c_c01169{bottom:386.446500px;}
.y39_c01169{bottom:401.391000px;}
.y1b_c01169{bottom:413.337000px;}
.y38_c01169{bottom:428.281500px;}
.y1a_c01169{bottom:440.229000px;}
.y37_c01169{bottom:455.172000px;}
.y19_c01169{bottom:467.119500px;}
.y36_c01169{bottom:482.062500px;}
.y18_c01169{bottom:494.010000px;}
.y35_c01169{bottom:508.954500px;}
.y17_c01169{bottom:520.900500px;}
.y34_c01169{bottom:535.845000px;}
.y16_c01169{bottom:547.792500px;}
.y33_c01169{bottom:562.735500px;}
.y15_c01169{bottom:574.683000px;}
.y32_c01169{bottom:589.626000px;}
.y14_c01169{bottom:601.573500px;}
.y31_c01169{bottom:616.518000px;}
.y13_c01169{bottom:628.464000px;}
.y30_c01169{bottom:643.408500px;}
.y12_c01169{bottom:655.356000px;}
.y2f_c01169{bottom:670.299000px;}
.y11_c01169{bottom:682.246500px;}
.y2e_c01169{bottom:697.189500px;}
.y10_c01169{bottom:709.137000px;}
.y2d_c01169{bottom:724.081500px;}
.yf_c01169{bottom:736.027500px;}
.y2c_c01169{bottom:750.972000px;}
.ye_c01169{bottom:762.918000px;}
.y2b_c01169{bottom:777.862500px;}
.yd_c01169{bottom:789.810000px;}
.y2a_c01169{bottom:804.753000px;}
.yc_c01169{bottom:816.700500px;}
.y29_c01169{bottom:831.645000px;}
.yb_c01169{bottom:843.591000px;}
.y28_c01169{bottom:858.535500px;}
.ya_c01169{bottom:885.426000px;}
.y9_c01169{bottom:912.316500px;}
.y8_c01169{bottom:939.207000px;}
.y7_c01169{bottom:966.099000px;}
.y6_c01169{bottom:992.989500px;}
.y5_c01169{bottom:1019.880000px;}
.y4_c01169{bottom:1046.770500px;}
.y3_c01169{bottom:1073.662500px;}
.y2_c01169{bottom:1140.615000px;}
.y1_c01169{bottom:1145.148000px;}
.h2_c01169{height:53.797500px;}
.h3_c01169{height:71.929500px;}
.h1_c01169{height:1263.750000px;}
.h0_c01169{height:1264.110000px;}
.w0_c01169{width:893.869500px;}
.w1_c01169{width:894.000000px;}
.x0_c01169{left:0.000000px;}
.x1_c01169{left:126.336000px;}
.x2_c01169{left:127.558500px;}
.x4_c01169{left:187.335000px;}
.x5_c01169{left:200.709000px;}
.x6_c01169{left:202.690500px;}
.x3_c01169{left:256.522500px;}
.x7_c01169{left:454.407000px;}
.x8_c01169{left:514.183500px;}
@media print{
.v0_c01169{vertical-align:0.000000pt;}
.v1_c01169{vertical-align:16.117333pt;}
.ls0_c01169{letter-spacing:0.000000pt;}
.ws14_c01169{word-spacing:0.000000pt;}
.ws3_c01169{word-spacing:13.835920pt;}
.ws2_c01169{word-spacing:14.983600pt;}
.ws10_c01169{word-spacing:19.000480pt;}
.wsc_c01169{word-spacing:19.191760pt;}
.wsf_c01169{word-spacing:19.829360pt;}
.ws4_c01169{word-spacing:19.956880pt;}
.ws0_c01169{word-spacing:20.722000pt;}
.ws7_c01169{word-spacing:20.785760pt;}
.ws9_c01169{word-spacing:20.849520pt;}
.wsa_c01169{word-spacing:21.040800pt;}
.ws12_c01169{word-spacing:21.933440pt;}
.wsd_c01169{word-spacing:22.634800pt;}
.wse_c01169{word-spacing:22.889840pt;}
.ws5_c01169{word-spacing:24.228800pt;}
.ws6_c01169{word-spacing:28.527627pt;}
.ws8_c01169{word-spacing:28.686880pt;}
.ws13_c01169{word-spacing:31.306160pt;}
.wsb_c01169{word-spacing:31.880000pt;}
.ws11_c01169{word-spacing:32.645120pt;}
.ws1_c01169{word-spacing:1515.065120pt;}
._a_c01169{margin-left:-32.963920pt;}
._7_c01169{margin-left:-31.114880pt;}
._5_c01169{margin-left:-29.520880pt;}
._8_c01169{margin-left:-27.799360pt;}
._6_c01169{margin-left:-24.356320pt;}
._0_c01169{margin-left:-6.886080pt;}
._2_c01169{margin-left:-5.228320pt;}
._9_c01169{margin-left:-3.506800pt;}
._4_c01169{margin-left:-1.785280pt;}
._3_c01169{width:1.785280pt;}
._1_c01169{width:5.667173pt;}
.fs0_c01169{font-size:63.760000pt;}
.y0_c01169{bottom:0.000000pt;}
.y45_c01169{bottom:69.956000pt;}
.y27_c01169{bottom:80.576000pt;}
.y44_c01169{bottom:93.858667pt;}
.y26_c01169{bottom:104.478667pt;}
.y43_c01169{bottom:117.761333pt;}
.y25_c01169{bottom:128.381333pt;}
.y42_c01169{bottom:141.665333pt;}
.y24_c01169{bottom:152.284000pt;}
.y41_c01169{bottom:165.568000pt;}
.y23_c01169{bottom:176.188000pt;}
.y40_c01169{bottom:189.470667pt;}
.y22_c01169{bottom:200.090667pt;}
.y3f_c01169{bottom:213.373333pt;}
.y21_c01169{bottom:223.993333pt;}
.y3e_c01169{bottom:237.277333pt;}
.y20_c01169{bottom:247.896000pt;}
.y3d_c01169{bottom:261.180000pt;}
.y1f_c01169{bottom:271.798667pt;}
.y3c_c01169{bottom:285.082667pt;}
.y1e_c01169{bottom:295.702667pt;}
.y3b_c01169{bottom:308.985333pt;}
.y1d_c01169{bottom:319.605333pt;}
.y3a_c01169{bottom:332.889333pt;}
.y1c_c01169{bottom:343.508000pt;}
.y39_c01169{bottom:356.792000pt;}
.y1b_c01169{bottom:367.410667pt;}
.y38_c01169{bottom:380.694667pt;}
.y1a_c01169{bottom:391.314667pt;}
.y37_c01169{bottom:404.597333pt;}
.y19_c01169{bottom:415.217333pt;}
.y36_c01169{bottom:428.500000pt;}
.y18_c01169{bottom:439.120000pt;}
.y35_c01169{bottom:452.404000pt;}
.y17_c01169{bottom:463.022667pt;}
.y34_c01169{bottom:476.306667pt;}
.y16_c01169{bottom:486.926667pt;}
.y33_c01169{bottom:500.209333pt;}
.y15_c01169{bottom:510.829333pt;}
.y32_c01169{bottom:524.112000pt;}
.y14_c01169{bottom:534.732000pt;}
.y31_c01169{bottom:548.016000pt;}
.y13_c01169{bottom:558.634667pt;}
.y30_c01169{bottom:571.918667pt;}
.y12_c01169{bottom:582.538667pt;}
.y2f_c01169{bottom:595.821333pt;}
.y11_c01169{bottom:606.441333pt;}
.y2e_c01169{bottom:619.724000pt;}
.y10_c01169{bottom:630.344000pt;}
.y2d_c01169{bottom:643.628000pt;}
.yf_c01169{bottom:654.246667pt;}
.y2c_c01169{bottom:667.530667pt;}
.ye_c01169{bottom:678.149333pt;}
.y2b_c01169{bottom:691.433333pt;}
.yd_c01169{bottom:702.053333pt;}
.y2a_c01169{bottom:715.336000pt;}
.yc_c01169{bottom:725.956000pt;}
.y29_c01169{bottom:739.240000pt;}
.yb_c01169{bottom:749.858667pt;}
.y28_c01169{bottom:763.142667pt;}
.ya_c01169{bottom:787.045333pt;}
.y9_c01169{bottom:810.948000pt;}
.y8_c01169{bottom:834.850667pt;}
.y7_c01169{bottom:858.754667pt;}
.y6_c01169{bottom:882.657333pt;}
.y5_c01169{bottom:906.560000pt;}
.y4_c01169{bottom:930.462667pt;}
.y3_c01169{bottom:954.366667pt;}
.y2_c01169{bottom:1013.880000pt;}
.y1_c01169{bottom:1017.909333pt;}
.h2_c01169{height:47.820000pt;}
.h3_c01169{height:63.937333pt;}
.h1_c01169{height:1123.333333pt;}
.h0_c01169{height:1123.653333pt;}
.w0_c01169{width:794.550667pt;}
.w1_c01169{width:794.666667pt;}
.x0_c01169{left:0.000000pt;}
.x1_c01169{left:112.298667pt;}
.x2_c01169{left:113.385333pt;}
.x4_c01169{left:166.520000pt;}
.x5_c01169{left:178.408000pt;}
.x6_c01169{left:180.169333pt;}
.x3_c01169{left:228.020000pt;}
.x7_c01169{left:403.917333pt;}
.x8_c01169{left:457.052000pt;}
}





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

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





.ff0_c01170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01170;src:url('chunks/assets/font_120f352ca9142fd8f3032c38.woff2')format("woff");}.ff1_c01170{font-family:ff1_c01170;line-height:1.001000;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_c01170{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_c01170{vertical-align:0.000000px;}
.v1_c01170{vertical-align:18.132000px;}
.ls0_c01170{letter-spacing:0.000000px;}
.sc__c01170{text-shadow:none;}
.sc0_c01170{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__c01170{-webkit-text-stroke:0px transparent;}
.sc0_c01170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01170{word-spacing:-0.071730px;}
.ws15_c01170{word-spacing:0.000000px;}
.ws3_c01170{word-spacing:15.565410px;}
.ws8_c01170{word-spacing:16.210980px;}
.wsf_c01170{word-spacing:19.080180px;}
.ws11_c01170{word-spacing:19.223640px;}
.ws9_c01170{word-spacing:22.308030px;}
.ws0_c01170{word-spacing:23.312250px;}
.ws13_c01170{word-spacing:23.383980px;}
.ws4_c01170{word-spacing:23.670900px;}
.ws12_c01170{word-spacing:23.742630px;}
.ws5_c01170{word-spacing:23.814360px;}
.ws7_c01170{word-spacing:24.029550px;}
.wsd_c01170{word-spacing:25.751070px;}
.wsb_c01170{word-spacing:27.687780px;}
.wsc_c01170{word-spacing:28.189890px;}
.wsa_c01170{word-spacing:28.261620px;}
.ws6_c01170{word-spacing:29.194110px;}
.ws2_c01170{word-spacing:30.126600px;}
.ws10_c01170{word-spacing:32.135040px;}
.ws14_c01170{word-spacing:33.354450px;}
.ws1_c01170{word-spacing:1704.448260px;}
._6_c01170{margin-left:-37.156140px;}
._a_c01170{margin-left:-35.219430px;}
._7_c01170{margin-left:-33.210990px;}
._4_c01170{margin-left:-27.400860px;}
._0_c01170{margin-left:-7.746840px;}
._2_c01170{margin-left:-5.881860px;}
._3_c01170{margin-left:-1.936710px;}
._5_c01170{width:2.008440px;}
._1_c01170{width:6.375570px;}
._9_c01170{width:8.783070px;}
._8_c01170{width:37.015170px;}
.fc0_c01170{color:rgb(0,0,0);}
.fs0_c01170{font-size:71.730000px;}
.y0_c01170{bottom:0.000000px;}
.y32_c01170{bottom:78.700500px;}
.y27_c01170{bottom:90.648000px;}
.y31_c01170{bottom:105.591000px;}
.y26_c01170{bottom:117.538500px;}
.y30_c01170{bottom:132.481500px;}
.y25_c01170{bottom:144.429000px;}
.y2f_c01170{bottom:159.373500px;}
.y24_c01170{bottom:171.319500px;}
.y2e_c01170{bottom:186.264000px;}
.y23_c01170{bottom:198.211500px;}
.y2d_c01170{bottom:213.154500px;}
.y22_c01170{bottom:225.102000px;}
.y2c_c01170{bottom:240.045000px;}
.y21_c01170{bottom:251.992500px;}
.y2b_c01170{bottom:266.937000px;}
.y20_c01170{bottom:278.883000px;}
.y2a_c01170{bottom:293.827500px;}
.y1f_c01170{bottom:305.773500px;}
.y29_c01170{bottom:320.718000px;}
.y1e_c01170{bottom:347.608500px;}
.y1d_c01170{bottom:374.500500px;}
.y1c_c01170{bottom:401.391000px;}
.y1b_c01170{bottom:428.281500px;}
.y1a_c01170{bottom:455.172000px;}
.y28_c01170{bottom:482.062500px;}
.y19_c01170{bottom:482.064000px;}
.y18_c01170{bottom:508.954500px;}
.y17_c01170{bottom:535.845000px;}
.y16_c01170{bottom:562.735500px;}
.y15_c01170{bottom:589.626000px;}
.y14_c01170{bottom:616.518000px;}
.y13_c01170{bottom:643.408500px;}
.y12_c01170{bottom:670.299000px;}
.y11_c01170{bottom:697.189500px;}
.y10_c01170{bottom:724.081500px;}
.yf_c01170{bottom:750.972000px;}
.ye_c01170{bottom:777.862500px;}
.yd_c01170{bottom:804.753000px;}
.yc_c01170{bottom:831.645000px;}
.yb_c01170{bottom:858.535500px;}
.ya_c01170{bottom:885.426000px;}
.y9_c01170{bottom:912.316500px;}
.y8_c01170{bottom:939.207000px;}
.y7_c01170{bottom:966.099000px;}
.y6_c01170{bottom:992.989500px;}
.y5_c01170{bottom:1019.880000px;}
.y4_c01170{bottom:1046.770500px;}
.y3_c01170{bottom:1073.662500px;}
.y2_c01170{bottom:1140.615000px;}
.y1_c01170{bottom:1145.148000px;}
.h2_c01170{height:53.797500px;}
.h3_c01170{height:71.929500px;}
.h1_c01170{height:1263.750000px;}
.h0_c01170{height:1264.110000px;}
.w0_c01170{width:893.869500px;}
.w1_c01170{width:894.000000px;}
.x0_c01170{left:0.000000px;}
.x1_c01170{left:126.336000px;}
.x2_c01170{left:127.558500px;}
.x6_c01170{left:153.403500px;}
.x4_c01170{left:187.335000px;}
.x3_c01170{left:256.522500px;}
.x5_c01170{left:322.392000px;}
.x8_c01170{left:454.407000px;}
.x7_c01170{left:514.183500px;}
@media print{
.v0_c01170{vertical-align:0.000000pt;}
.v1_c01170{vertical-align:16.117333pt;}
.ls0_c01170{letter-spacing:0.000000pt;}
.wse_c01170{word-spacing:-0.063760pt;}
.ws15_c01170{word-spacing:0.000000pt;}
.ws3_c01170{word-spacing:13.835920pt;}
.ws8_c01170{word-spacing:14.409760pt;}
.wsf_c01170{word-spacing:16.960160pt;}
.ws11_c01170{word-spacing:17.087680pt;}
.ws9_c01170{word-spacing:19.829360pt;}
.ws0_c01170{word-spacing:20.722000pt;}
.ws13_c01170{word-spacing:20.785760pt;}
.ws4_c01170{word-spacing:21.040800pt;}
.ws12_c01170{word-spacing:21.104560pt;}
.ws5_c01170{word-spacing:21.168320pt;}
.ws7_c01170{word-spacing:21.359600pt;}
.wsd_c01170{word-spacing:22.889840pt;}
.wsb_c01170{word-spacing:24.611360pt;}
.wsc_c01170{word-spacing:25.057680pt;}
.wsa_c01170{word-spacing:25.121440pt;}
.ws6_c01170{word-spacing:25.950320pt;}
.ws2_c01170{word-spacing:26.779200pt;}
.ws10_c01170{word-spacing:28.564480pt;}
.ws14_c01170{word-spacing:29.648400pt;}
.ws1_c01170{word-spacing:1515.065120pt;}
._6_c01170{margin-left:-33.027680pt;}
._a_c01170{margin-left:-31.306160pt;}
._7_c01170{margin-left:-29.520880pt;}
._4_c01170{margin-left:-24.356320pt;}
._0_c01170{margin-left:-6.886080pt;}
._2_c01170{margin-left:-5.228320pt;}
._3_c01170{margin-left:-1.721520pt;}
._5_c01170{width:1.785280pt;}
._1_c01170{width:5.667173pt;}
._9_c01170{width:7.807173pt;}
._8_c01170{width:32.902373pt;}
.fs0_c01170{font-size:63.760000pt;}
.y0_c01170{bottom:0.000000pt;}
.y32_c01170{bottom:69.956000pt;}
.y27_c01170{bottom:80.576000pt;}
.y31_c01170{bottom:93.858667pt;}
.y26_c01170{bottom:104.478667pt;}
.y30_c01170{bottom:117.761333pt;}
.y25_c01170{bottom:128.381333pt;}
.y2f_c01170{bottom:141.665333pt;}
.y24_c01170{bottom:152.284000pt;}
.y2e_c01170{bottom:165.568000pt;}
.y23_c01170{bottom:176.188000pt;}
.y2d_c01170{bottom:189.470667pt;}
.y22_c01170{bottom:200.090667pt;}
.y2c_c01170{bottom:213.373333pt;}
.y21_c01170{bottom:223.993333pt;}
.y2b_c01170{bottom:237.277333pt;}
.y20_c01170{bottom:247.896000pt;}
.y2a_c01170{bottom:261.180000pt;}
.y1f_c01170{bottom:271.798667pt;}
.y29_c01170{bottom:285.082667pt;}
.y1e_c01170{bottom:308.985333pt;}
.y1d_c01170{bottom:332.889333pt;}
.y1c_c01170{bottom:356.792000pt;}
.y1b_c01170{bottom:380.694667pt;}
.y1a_c01170{bottom:404.597333pt;}
.y28_c01170{bottom:428.500000pt;}
.y19_c01170{bottom:428.501333pt;}
.y18_c01170{bottom:452.404000pt;}
.y17_c01170{bottom:476.306667pt;}
.y16_c01170{bottom:500.209333pt;}
.y15_c01170{bottom:524.112000pt;}
.y14_c01170{bottom:548.016000pt;}
.y13_c01170{bottom:571.918667pt;}
.y12_c01170{bottom:595.821333pt;}
.y11_c01170{bottom:619.724000pt;}
.y10_c01170{bottom:643.628000pt;}
.yf_c01170{bottom:667.530667pt;}
.ye_c01170{bottom:691.433333pt;}
.yd_c01170{bottom:715.336000pt;}
.yc_c01170{bottom:739.240000pt;}
.yb_c01170{bottom:763.142667pt;}
.ya_c01170{bottom:787.045333pt;}
.y9_c01170{bottom:810.948000pt;}
.y8_c01170{bottom:834.850667pt;}
.y7_c01170{bottom:858.754667pt;}
.y6_c01170{bottom:882.657333pt;}
.y5_c01170{bottom:906.560000pt;}
.y4_c01170{bottom:930.462667pt;}
.y3_c01170{bottom:954.366667pt;}
.y2_c01170{bottom:1013.880000pt;}
.y1_c01170{bottom:1017.909333pt;}
.h2_c01170{height:47.820000pt;}
.h3_c01170{height:63.937333pt;}
.h1_c01170{height:1123.333333pt;}
.h0_c01170{height:1123.653333pt;}
.w0_c01170{width:794.550667pt;}
.w1_c01170{width:794.666667pt;}
.x0_c01170{left:0.000000pt;}
.x1_c01170{left:112.298667pt;}
.x2_c01170{left:113.385333pt;}
.x6_c01170{left:136.358667pt;}
.x4_c01170{left:166.520000pt;}
.x3_c01170{left:228.020000pt;}
.x5_c01170{left:286.570667pt;}
.x8_c01170{left:403.917333pt;}
.x7_c01170{left:457.052000pt;}
}





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

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





.ff0_c01171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01171;src:url('chunks/assets/font_019e0b60864e58d2987e52ef.woff2')format("woff");}.ff1_c01171{font-family:ff1_c01171;line-height:1.001000;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_c01171{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_c01171{vertical-align:0.000000px;}
.v1_c01171{vertical-align:18.132000px;}
.ls0_c01171{letter-spacing:0.000000px;}
.sc__c01171{text-shadow:none;}
.sc0_c01171{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__c01171{-webkit-text-stroke:0px transparent;}
.sc0_c01171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c01171{word-spacing:-0.071730px;}
.wsb_c01171{word-spacing:0.000000px;}
.ws5_c01171{word-spacing:15.565410px;}
.ws9_c01171{word-spacing:20.586510px;}
.ws6_c01171{word-spacing:21.088620px;}
.ws4_c01171{word-spacing:22.308030px;}
.ws0_c01171{word-spacing:23.312250px;}
.ws2_c01171{word-spacing:23.383980px;}
.wsa_c01171{word-spacing:32.127270px;}
.ws3_c01171{word-spacing:34.071750px;}
.ws8_c01171{word-spacing:36.797490px;}
.ws1_c01171{word-spacing:1704.448260px;}
._a_c01171{margin-left:-36.940950px;}
._8_c01171{margin-left:-35.291160px;}
._5_c01171{margin-left:-33.282720px;}
._4_c01171{margin-left:-27.472590px;}
._0_c01171{margin-left:-7.746840px;}
._3_c01171{margin-left:-5.881860px;}
._9_c01171{margin-left:-3.945150px;}
._2_c01171{margin-left:-1.936710px;}
._7_c01171{width:1.864980px;}
._1_c01171{width:6.375570px;}
._6_c01171{width:9.706140px;}
._b_c01171{width:32.259360px;}
.fc0_c01171{color:rgb(0,0,0);}
.fs0_c01171{font-size:71.730000px;}
.y0_c01171{bottom:0.000000px;}
.y4c_c01171{bottom:75.703500px;}
.y28_c01171{bottom:78.700500px;}
.y4b_c01171{bottom:102.594000px;}
.y27_c01171{bottom:105.591000px;}
.y4a_c01171{bottom:129.484500px;}
.y26_c01171{bottom:132.481500px;}
.y49_c01171{bottom:156.376500px;}
.y25_c01171{bottom:159.373500px;}
.y48_c01171{bottom:183.267000px;}
.y24_c01171{bottom:186.264000px;}
.y47_c01171{bottom:210.157500px;}
.y23_c01171{bottom:213.154500px;}
.y46_c01171{bottom:237.048000px;}
.y22_c01171{bottom:240.045000px;}
.y45_c01171{bottom:263.940000px;}
.y21_c01171{bottom:266.937000px;}
.y44_c01171{bottom:290.830500px;}
.y20_c01171{bottom:293.827500px;}
.y43_c01171{bottom:317.721000px;}
.y1f_c01171{bottom:320.718000px;}
.y42_c01171{bottom:344.611500px;}
.y1e_c01171{bottom:347.608500px;}
.y1d_c01171{bottom:374.500500px;}
.y41_c01171{bottom:386.446500px;}
.y1c_c01171{bottom:401.391000px;}
.y40_c01171{bottom:413.337000px;}
.y1b_c01171{bottom:428.281500px;}
.y3f_c01171{bottom:440.229000px;}
.y1a_c01171{bottom:455.172000px;}
.y3e_c01171{bottom:467.119500px;}
.y19_c01171{bottom:482.064000px;}
.y3d_c01171{bottom:494.010000px;}
.y18_c01171{bottom:508.954500px;}
.y3c_c01171{bottom:520.900500px;}
.y17_c01171{bottom:535.845000px;}
.y3b_c01171{bottom:547.792500px;}
.y16_c01171{bottom:562.735500px;}
.y3a_c01171{bottom:574.683000px;}
.y15_c01171{bottom:589.626000px;}
.y39_c01171{bottom:601.573500px;}
.y14_c01171{bottom:616.518000px;}
.y38_c01171{bottom:628.464000px;}
.y13_c01171{bottom:643.408500px;}
.y37_c01171{bottom:655.356000px;}
.y12_c01171{bottom:670.299000px;}
.y36_c01171{bottom:682.246500px;}
.y11_c01171{bottom:697.189500px;}
.y35_c01171{bottom:709.137000px;}
.y10_c01171{bottom:724.081500px;}
.y34_c01171{bottom:736.027500px;}
.yf_c01171{bottom:750.972000px;}
.y33_c01171{bottom:762.918000px;}
.ye_c01171{bottom:777.862500px;}
.y32_c01171{bottom:789.810000px;}
.yd_c01171{bottom:804.753000px;}
.y31_c01171{bottom:816.700500px;}
.yc_c01171{bottom:831.645000px;}
.y30_c01171{bottom:843.591000px;}
.yb_c01171{bottom:858.535500px;}
.y2f_c01171{bottom:870.481500px;}
.ya_c01171{bottom:885.426000px;}
.y2e_c01171{bottom:897.373500px;}
.y9_c01171{bottom:912.316500px;}
.y2d_c01171{bottom:924.264000px;}
.y8_c01171{bottom:939.207000px;}
.y2c_c01171{bottom:951.154500px;}
.y7_c01171{bottom:966.099000px;}
.y2b_c01171{bottom:978.045000px;}
.y6_c01171{bottom:992.989500px;}
.y2a_c01171{bottom:1004.937000px;}
.y5_c01171{bottom:1019.880000px;}
.y29_c01171{bottom:1031.827500px;}
.y4_c01171{bottom:1046.770500px;}
.y3_c01171{bottom:1073.662500px;}
.y2_c01171{bottom:1140.615000px;}
.y1_c01171{bottom:1145.148000px;}
.h2_c01171{height:53.797500px;}
.h3_c01171{height:71.929500px;}
.h1_c01171{height:1263.750000px;}
.h0_c01171{height:1264.110000px;}
.w0_c01171{width:893.869500px;}
.w1_c01171{width:894.000000px;}
.x0_c01171{left:0.000000px;}
.x1_c01171{left:126.336000px;}
.x2_c01171{left:127.558500px;}
.x4_c01171{left:187.335000px;}
.x3_c01171{left:256.522500px;}
.x5_c01171{left:258.130500px;}
.x6_c01171{left:454.407000px;}
.x7_c01171{left:514.183500px;}
.x9_c01171{left:540.960000px;}
.x8_c01171{left:635.445000px;}
.xa_c01171{left:638.004000px;}
@media print{
.v0_c01171{vertical-align:0.000000pt;}
.v1_c01171{vertical-align:16.117333pt;}
.ls0_c01171{letter-spacing:0.000000pt;}
.ws7_c01171{word-spacing:-0.063760pt;}
.wsb_c01171{word-spacing:0.000000pt;}
.ws5_c01171{word-spacing:13.835920pt;}
.ws9_c01171{word-spacing:18.299120pt;}
.ws6_c01171{word-spacing:18.745440pt;}
.ws4_c01171{word-spacing:19.829360pt;}
.ws0_c01171{word-spacing:20.722000pt;}
.ws2_c01171{word-spacing:20.785760pt;}
.wsa_c01171{word-spacing:28.557573pt;}
.ws3_c01171{word-spacing:30.286000pt;}
.ws8_c01171{word-spacing:32.708880pt;}
.ws1_c01171{word-spacing:1515.065120pt;}
._a_c01171{margin-left:-32.836400pt;}
._8_c01171{margin-left:-31.369920pt;}
._5_c01171{margin-left:-29.584640pt;}
._4_c01171{margin-left:-24.420080pt;}
._0_c01171{margin-left:-6.886080pt;}
._3_c01171{margin-left:-5.228320pt;}
._9_c01171{margin-left:-3.506800pt;}
._2_c01171{margin-left:-1.721520pt;}
._7_c01171{width:1.657760pt;}
._1_c01171{width:5.667173pt;}
._6_c01171{width:8.627680pt;}
._b_c01171{width:28.674987pt;}
.fs0_c01171{font-size:63.760000pt;}
.y0_c01171{bottom:0.000000pt;}
.y4c_c01171{bottom:67.292000pt;}
.y28_c01171{bottom:69.956000pt;}
.y4b_c01171{bottom:91.194667pt;}
.y27_c01171{bottom:93.858667pt;}
.y4a_c01171{bottom:115.097333pt;}
.y26_c01171{bottom:117.761333pt;}
.y49_c01171{bottom:139.001333pt;}
.y25_c01171{bottom:141.665333pt;}
.y48_c01171{bottom:162.904000pt;}
.y24_c01171{bottom:165.568000pt;}
.y47_c01171{bottom:186.806667pt;}
.y23_c01171{bottom:189.470667pt;}
.y46_c01171{bottom:210.709333pt;}
.y22_c01171{bottom:213.373333pt;}
.y45_c01171{bottom:234.613333pt;}
.y21_c01171{bottom:237.277333pt;}
.y44_c01171{bottom:258.516000pt;}
.y20_c01171{bottom:261.180000pt;}
.y43_c01171{bottom:282.418667pt;}
.y1f_c01171{bottom:285.082667pt;}
.y42_c01171{bottom:306.321333pt;}
.y1e_c01171{bottom:308.985333pt;}
.y1d_c01171{bottom:332.889333pt;}
.y41_c01171{bottom:343.508000pt;}
.y1c_c01171{bottom:356.792000pt;}
.y40_c01171{bottom:367.410667pt;}
.y1b_c01171{bottom:380.694667pt;}
.y3f_c01171{bottom:391.314667pt;}
.y1a_c01171{bottom:404.597333pt;}
.y3e_c01171{bottom:415.217333pt;}
.y19_c01171{bottom:428.501333pt;}
.y3d_c01171{bottom:439.120000pt;}
.y18_c01171{bottom:452.404000pt;}
.y3c_c01171{bottom:463.022667pt;}
.y17_c01171{bottom:476.306667pt;}
.y3b_c01171{bottom:486.926667pt;}
.y16_c01171{bottom:500.209333pt;}
.y3a_c01171{bottom:510.829333pt;}
.y15_c01171{bottom:524.112000pt;}
.y39_c01171{bottom:534.732000pt;}
.y14_c01171{bottom:548.016000pt;}
.y38_c01171{bottom:558.634667pt;}
.y13_c01171{bottom:571.918667pt;}
.y37_c01171{bottom:582.538667pt;}
.y12_c01171{bottom:595.821333pt;}
.y36_c01171{bottom:606.441333pt;}
.y11_c01171{bottom:619.724000pt;}
.y35_c01171{bottom:630.344000pt;}
.y10_c01171{bottom:643.628000pt;}
.y34_c01171{bottom:654.246667pt;}
.yf_c01171{bottom:667.530667pt;}
.y33_c01171{bottom:678.149333pt;}
.ye_c01171{bottom:691.433333pt;}
.y32_c01171{bottom:702.053333pt;}
.yd_c01171{bottom:715.336000pt;}
.y31_c01171{bottom:725.956000pt;}
.yc_c01171{bottom:739.240000pt;}
.y30_c01171{bottom:749.858667pt;}
.yb_c01171{bottom:763.142667pt;}
.y2f_c01171{bottom:773.761333pt;}
.ya_c01171{bottom:787.045333pt;}
.y2e_c01171{bottom:797.665333pt;}
.y9_c01171{bottom:810.948000pt;}
.y2d_c01171{bottom:821.568000pt;}
.y8_c01171{bottom:834.850667pt;}
.y2c_c01171{bottom:845.470667pt;}
.y7_c01171{bottom:858.754667pt;}
.y2b_c01171{bottom:869.373333pt;}
.y6_c01171{bottom:882.657333pt;}
.y2a_c01171{bottom:893.277333pt;}
.y5_c01171{bottom:906.560000pt;}
.y29_c01171{bottom:917.180000pt;}
.y4_c01171{bottom:930.462667pt;}
.y3_c01171{bottom:954.366667pt;}
.y2_c01171{bottom:1013.880000pt;}
.y1_c01171{bottom:1017.909333pt;}
.h2_c01171{height:47.820000pt;}
.h3_c01171{height:63.937333pt;}
.h1_c01171{height:1123.333333pt;}
.h0_c01171{height:1123.653333pt;}
.w0_c01171{width:794.550667pt;}
.w1_c01171{width:794.666667pt;}
.x0_c01171{left:0.000000pt;}
.x1_c01171{left:112.298667pt;}
.x2_c01171{left:113.385333pt;}
.x4_c01171{left:166.520000pt;}
.x3_c01171{left:228.020000pt;}
.x5_c01171{left:229.449333pt;}
.x6_c01171{left:403.917333pt;}
.x7_c01171{left:457.052000pt;}
.x9_c01171{left:480.853333pt;}
.x8_c01171{left:564.840000pt;}
.xa_c01171{left:567.114667pt;}
}





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

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





.ff0_c01172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01172;src:url('chunks/assets/font_1010ee0134ea39b66dc8c3f0.woff2')format("woff");}.ff1_c01172{font-family:ff1_c01172;line-height:1.001000;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_c01172{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_c01172{vertical-align:0.000000px;}
.v1_c01172{vertical-align:18.132000px;}
.ls0_c01172{letter-spacing:0.000000px;}
.sc__c01172{text-shadow:none;}
.sc0_c01172{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__c01172{-webkit-text-stroke:0px transparent;}
.sc0_c01172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01172{word-spacing:-0.071730px;}
.ws14_c01172{word-spacing:0.000000px;}
.wsd_c01172{word-spacing:15.493680px;}
.ws9_c01172{word-spacing:15.565410px;}
.ws3_c01172{word-spacing:18.793260px;}
.ws13_c01172{word-spacing:19.725750px;}
.ws8_c01172{word-spacing:19.869210px;}
.wsf_c01172{word-spacing:20.586510px;}
.ws7_c01172{word-spacing:22.308030px;}
.ws0_c01172{word-spacing:23.312250px;}
.ws2_c01172{word-spacing:23.383980px;}
.wse_c01172{word-spacing:23.670900px;}
.wsb_c01172{word-spacing:25.248960px;}
.ws10_c01172{word-spacing:25.464150px;}
.wsc_c01172{word-spacing:27.329130px;}
.wsa_c01172{word-spacing:27.616050px;}
.ws6_c01172{word-spacing:28.620270px;}
.ws12_c01172{word-spacing:32.063310px;}
.ws5_c01172{word-spacing:37.366650px;}
.ws11_c01172{word-spacing:37.729980px;}
.ws1_c01172{word-spacing:1704.448260px;}
._8_c01172{margin-left:-37.156140px;}
._7_c01172{margin-left:-35.291160px;}
._5_c01172{margin-left:-33.210990px;}
._6_c01172{margin-left:-27.329130px;}
._0_c01172{margin-left:-7.746840px;}
._2_c01172{margin-left:-5.810130px;}
._3_c01172{margin-left:-1.936710px;}
._4_c01172{width:2.008440px;}
._1_c01172{width:6.375570px;}
._9_c01172{width:32.177940px;}
.fc0_c01172{color:rgb(0,0,0);}
.fs0_c01172{font-size:71.730000px;}
.y0_c01172{bottom:0.000000px;}
.y27_c01172{bottom:90.648000px;}
.y26_c01172{bottom:117.538500px;}
.y25_c01172{bottom:144.429000px;}
.y24_c01172{bottom:171.319500px;}
.y30_c01172{bottom:198.210000px;}
.y23_c01172{bottom:198.211500px;}
.y22_c01172{bottom:225.102000px;}
.y21_c01172{bottom:251.992500px;}
.y20_c01172{bottom:278.883000px;}
.y1f_c01172{bottom:305.773500px;}
.y1e_c01172{bottom:332.665500px;}
.y1d_c01172{bottom:359.556000px;}
.y1c_c01172{bottom:386.446500px;}
.y1b_c01172{bottom:413.337000px;}
.y1a_c01172{bottom:440.229000px;}
.y19_c01172{bottom:467.119500px;}
.y18_c01172{bottom:494.010000px;}
.y17_c01172{bottom:520.900500px;}
.y16_c01172{bottom:547.792500px;}
.y15_c01172{bottom:574.683000px;}
.y14_c01172{bottom:601.573500px;}
.y13_c01172{bottom:628.464000px;}
.y12_c01172{bottom:655.354500px;}
.y11_c01172{bottom:682.246500px;}
.y10_c01172{bottom:709.137000px;}
.yf_c01172{bottom:736.027500px;}
.ye_c01172{bottom:762.918000px;}
.yd_c01172{bottom:789.810000px;}
.y2f_c01172{bottom:804.753000px;}
.yc_c01172{bottom:816.700500px;}
.y2e_c01172{bottom:831.645000px;}
.yb_c01172{bottom:843.591000px;}
.y2d_c01172{bottom:858.535500px;}
.ya_c01172{bottom:870.481500px;}
.y2c_c01172{bottom:885.426000px;}
.y9_c01172{bottom:897.373500px;}
.y2b_c01172{bottom:912.316500px;}
.y8_c01172{bottom:924.264000px;}
.y2a_c01172{bottom:939.207000px;}
.y7_c01172{bottom:951.154500px;}
.y29_c01172{bottom:966.099000px;}
.y6_c01172{bottom:978.045000px;}
.y28_c01172{bottom:992.989500px;}
.y5_c01172{bottom:1019.880000px;}
.y4_c01172{bottom:1046.770500px;}
.y3_c01172{bottom:1073.662500px;}
.y2_c01172{bottom:1140.615000px;}
.y1_c01172{bottom:1145.148000px;}
.h2_c01172{height:53.797500px;}
.h3_c01172{height:71.929500px;}
.h1_c01172{height:1263.750000px;}
.h0_c01172{height:1264.110000px;}
.w0_c01172{width:893.869500px;}
.w1_c01172{width:894.000000px;}
.x0_c01172{left:0.000000px;}
.x1_c01172{left:126.336000px;}
.x2_c01172{left:127.558500px;}
.x4_c01172{left:187.335000px;}
.x5_c01172{left:227.868000px;}
.x3_c01172{left:256.522500px;}
.x6_c01172{left:454.407000px;}
.x7_c01172{left:514.183500px;}
.x8_c01172{left:586.182000px;}
@media print{
.v0_c01172{vertical-align:0.000000pt;}
.v1_c01172{vertical-align:16.117333pt;}
.ls0_c01172{letter-spacing:0.000000pt;}
.ws4_c01172{word-spacing:-0.063760pt;}
.ws14_c01172{word-spacing:0.000000pt;}
.wsd_c01172{word-spacing:13.772160pt;}
.ws9_c01172{word-spacing:13.835920pt;}
.ws3_c01172{word-spacing:16.705120pt;}
.ws13_c01172{word-spacing:17.534000pt;}
.ws8_c01172{word-spacing:17.661520pt;}
.wsf_c01172{word-spacing:18.299120pt;}
.ws7_c01172{word-spacing:19.829360pt;}
.ws0_c01172{word-spacing:20.722000pt;}
.ws2_c01172{word-spacing:20.785760pt;}
.wse_c01172{word-spacing:21.040800pt;}
.wsb_c01172{word-spacing:22.443520pt;}
.ws10_c01172{word-spacing:22.634800pt;}
.wsc_c01172{word-spacing:24.292560pt;}
.wsa_c01172{word-spacing:24.547600pt;}
.ws6_c01172{word-spacing:25.440240pt;}
.ws12_c01172{word-spacing:28.500720pt;}
.ws5_c01172{word-spacing:33.214800pt;}
.ws11_c01172{word-spacing:33.537760pt;}
.ws1_c01172{word-spacing:1515.065120pt;}
._8_c01172{margin-left:-33.027680pt;}
._7_c01172{margin-left:-31.369920pt;}
._5_c01172{margin-left:-29.520880pt;}
._6_c01172{margin-left:-24.292560pt;}
._0_c01172{margin-left:-6.886080pt;}
._2_c01172{margin-left:-5.164560pt;}
._3_c01172{margin-left:-1.721520pt;}
._4_c01172{width:1.785280pt;}
._1_c01172{width:5.667173pt;}
._9_c01172{width:28.602613pt;}
.fs0_c01172{font-size:63.760000pt;}
.y0_c01172{bottom:0.000000pt;}
.y27_c01172{bottom:80.576000pt;}
.y26_c01172{bottom:104.478667pt;}
.y25_c01172{bottom:128.381333pt;}
.y24_c01172{bottom:152.284000pt;}
.y30_c01172{bottom:176.186667pt;}
.y23_c01172{bottom:176.188000pt;}
.y22_c01172{bottom:200.090667pt;}
.y21_c01172{bottom:223.993333pt;}
.y20_c01172{bottom:247.896000pt;}
.y1f_c01172{bottom:271.798667pt;}
.y1e_c01172{bottom:295.702667pt;}
.y1d_c01172{bottom:319.605333pt;}
.y1c_c01172{bottom:343.508000pt;}
.y1b_c01172{bottom:367.410667pt;}
.y1a_c01172{bottom:391.314667pt;}
.y19_c01172{bottom:415.217333pt;}
.y18_c01172{bottom:439.120000pt;}
.y17_c01172{bottom:463.022667pt;}
.y16_c01172{bottom:486.926667pt;}
.y15_c01172{bottom:510.829333pt;}
.y14_c01172{bottom:534.732000pt;}
.y13_c01172{bottom:558.634667pt;}
.y12_c01172{bottom:582.537333pt;}
.y11_c01172{bottom:606.441333pt;}
.y10_c01172{bottom:630.344000pt;}
.yf_c01172{bottom:654.246667pt;}
.ye_c01172{bottom:678.149333pt;}
.yd_c01172{bottom:702.053333pt;}
.y2f_c01172{bottom:715.336000pt;}
.yc_c01172{bottom:725.956000pt;}
.y2e_c01172{bottom:739.240000pt;}
.yb_c01172{bottom:749.858667pt;}
.y2d_c01172{bottom:763.142667pt;}
.ya_c01172{bottom:773.761333pt;}
.y2c_c01172{bottom:787.045333pt;}
.y9_c01172{bottom:797.665333pt;}
.y2b_c01172{bottom:810.948000pt;}
.y8_c01172{bottom:821.568000pt;}
.y2a_c01172{bottom:834.850667pt;}
.y7_c01172{bottom:845.470667pt;}
.y29_c01172{bottom:858.754667pt;}
.y6_c01172{bottom:869.373333pt;}
.y28_c01172{bottom:882.657333pt;}
.y5_c01172{bottom:906.560000pt;}
.y4_c01172{bottom:930.462667pt;}
.y3_c01172{bottom:954.366667pt;}
.y2_c01172{bottom:1013.880000pt;}
.y1_c01172{bottom:1017.909333pt;}
.h2_c01172{height:47.820000pt;}
.h3_c01172{height:63.937333pt;}
.h1_c01172{height:1123.333333pt;}
.h0_c01172{height:1123.653333pt;}
.w0_c01172{width:794.550667pt;}
.w1_c01172{width:794.666667pt;}
.x0_c01172{left:0.000000pt;}
.x1_c01172{left:112.298667pt;}
.x2_c01172{left:113.385333pt;}
.x4_c01172{left:166.520000pt;}
.x5_c01172{left:202.549333pt;}
.x3_c01172{left:228.020000pt;}
.x6_c01172{left:403.917333pt;}
.x7_c01172{left:457.052000pt;}
.x8_c01172{left:521.050667pt;}
}





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

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





.ff0_c01173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01173;src:url('chunks/assets/font_e67d8d63afa4d80e4aba3a46.woff2')format("woff");}.ff1_c01173{font-family:ff1_c01173;line-height:1.001000;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_c01173{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_c01173{vertical-align:0.000000px;}
.v1_c01173{vertical-align:18.132000px;}
.ls1_c01173{letter-spacing:0.000000px;}
.ls0_c01173{letter-spacing:8.783310px;}
.sc__c01173{text-shadow:none;}
.sc0_c01173{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__c01173{-webkit-text-stroke:0px transparent;}
.sc0_c01173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c01173{word-spacing:-0.071730px;}
.ws13_c01173{word-spacing:0.000000px;}
.ws5_c01173{word-spacing:15.493680px;}
.wsc_c01173{word-spacing:15.565410px;}
.ws10_c01173{word-spacing:15.780600px;}
.ws7_c01173{word-spacing:16.210980px;}
.wsb_c01173{word-spacing:18.721530px;}
.wsd_c01173{word-spacing:19.725750px;}
.ws8_c01173{word-spacing:22.308030px;}
.ws0_c01173{word-spacing:23.312250px;}
.ws2_c01173{word-spacing:23.383980px;}
.ws11_c01173{word-spacing:23.670900px;}
.ws6_c01173{word-spacing:25.464150px;}
.ws12_c01173{word-spacing:25.966260px;}
.wsa_c01173{word-spacing:29.122380px;}
.ws9_c01173{word-spacing:30.054870px;}
.ws4_c01173{word-spacing:31.059090px;}
.wsf_c01173{word-spacing:34.430400px;}
.ws3_c01173{word-spacing:37.227870px;}
.ws1_c01173{word-spacing:1704.448260px;}
._5_c01173{margin-left:-37.084410px;}
._7_c01173{margin-left:-35.147700px;}
._8_c01173{margin-left:-33.354450px;}
._a_c01173{margin-left:-27.472590px;}
._0_c01173{margin-left:-7.746840px;}
._3_c01173{margin-left:-5.810130px;}
._2_c01173{margin-left:-1.936710px;}
._4_c01173{width:1.936710px;}
._1_c01173{width:6.375570px;}
._9_c01173{width:8.716620px;}
._6_c01173{width:32.159340px;}
.fc0_c01173{color:rgb(0,0,0);}
.fs0_c01173{font-size:71.730000px;}
.y0_c01173{bottom:0.000000px;}
.y46_c01173{bottom:75.703500px;}
.y28_c01173{bottom:78.700500px;}
.y45_c01173{bottom:102.594000px;}
.y27_c01173{bottom:105.591000px;}
.y44_c01173{bottom:129.484500px;}
.y26_c01173{bottom:132.481500px;}
.y43_c01173{bottom:156.376500px;}
.y25_c01173{bottom:159.373500px;}
.y42_c01173{bottom:183.267000px;}
.y24_c01173{bottom:186.264000px;}
.y41_c01173{bottom:210.157500px;}
.y23_c01173{bottom:213.154500px;}
.y40_c01173{bottom:237.048000px;}
.y22_c01173{bottom:240.045000px;}
.y3f_c01173{bottom:263.940000px;}
.y21_c01173{bottom:266.937000px;}
.y3e_c01173{bottom:290.830500px;}
.y20_c01173{bottom:293.827500px;}
.y3d_c01173{bottom:317.721000px;}
.y1f_c01173{bottom:320.718000px;}
.y3c_c01173{bottom:344.611500px;}
.y1e_c01173{bottom:347.608500px;}
.y1d_c01173{bottom:374.500500px;}
.y3b_c01173{bottom:386.446500px;}
.y1c_c01173{bottom:401.391000px;}
.y3a_c01173{bottom:413.337000px;}
.y1b_c01173{bottom:428.281500px;}
.y39_c01173{bottom:440.229000px;}
.y1a_c01173{bottom:455.172000px;}
.y38_c01173{bottom:467.119500px;}
.y19_c01173{bottom:482.062500px;}
.y37_c01173{bottom:494.010000px;}
.y18_c01173{bottom:508.954500px;}
.y36_c01173{bottom:520.900500px;}
.y17_c01173{bottom:535.845000px;}
.y35_c01173{bottom:547.792500px;}
.y16_c01173{bottom:562.735500px;}
.y34_c01173{bottom:574.683000px;}
.y15_c01173{bottom:589.626000px;}
.y33_c01173{bottom:601.573500px;}
.y14_c01173{bottom:616.518000px;}
.y32_c01173{bottom:628.464000px;}
.y13_c01173{bottom:643.408500px;}
.y31_c01173{bottom:655.354500px;}
.y12_c01173{bottom:670.299000px;}
.y30_c01173{bottom:682.246500px;}
.y11_c01173{bottom:697.189500px;}
.y2f_c01173{bottom:709.137000px;}
.y10_c01173{bottom:724.081500px;}
.y2e_c01173{bottom:736.027500px;}
.yf_c01173{bottom:750.972000px;}
.y2d_c01173{bottom:762.918000px;}
.ye_c01173{bottom:777.862500px;}
.y2c_c01173{bottom:789.810000px;}
.yd_c01173{bottom:804.753000px;}
.y2b_c01173{bottom:816.700500px;}
.yc_c01173{bottom:831.645000px;}
.y2a_c01173{bottom:843.591000px;}
.yb_c01173{bottom:858.535500px;}
.y29_c01173{bottom:870.481500px;}
.ya_c01173{bottom:885.426000px;}
.y9_c01173{bottom:912.316500px;}
.y8_c01173{bottom:939.207000px;}
.y7_c01173{bottom:966.099000px;}
.y6_c01173{bottom:992.989500px;}
.y5_c01173{bottom:1019.880000px;}
.y4_c01173{bottom:1046.770500px;}
.y3_c01173{bottom:1073.662500px;}
.y2_c01173{bottom:1140.615000px;}
.y1_c01173{bottom:1145.148000px;}
.h2_c01173{height:53.797500px;}
.h3_c01173{height:71.929500px;}
.h1_c01173{height:1263.750000px;}
.h0_c01173{height:1264.110000px;}
.w0_c01173{width:893.869500px;}
.w1_c01173{width:894.000000px;}
.x0_c01173{left:0.000000px;}
.x1_c01173{left:126.336000px;}
.x2_c01173{left:127.558500px;}
.x4_c01173{left:187.335000px;}
.x5_c01173{left:227.409000px;}
.x3_c01173{left:256.522500px;}
.x6_c01173{left:454.407000px;}
.xa_c01173{left:460.741500px;}
.xb_c01173{left:486.339000px;}
.x9_c01173{left:514.183500px;}
.x7_c01173{left:556.917000px;}
.x8_c01173{left:639.205500px;}
@media print{
.v0_c01173{vertical-align:0.000000pt;}
.v1_c01173{vertical-align:16.117333pt;}
.ls1_c01173{letter-spacing:0.000000pt;}
.ls0_c01173{letter-spacing:7.807387pt;}
.wse_c01173{word-spacing:-0.063760pt;}
.ws13_c01173{word-spacing:0.000000pt;}
.ws5_c01173{word-spacing:13.772160pt;}
.wsc_c01173{word-spacing:13.835920pt;}
.ws10_c01173{word-spacing:14.027200pt;}
.ws7_c01173{word-spacing:14.409760pt;}
.wsb_c01173{word-spacing:16.641360pt;}
.wsd_c01173{word-spacing:17.534000pt;}
.ws8_c01173{word-spacing:19.829360pt;}
.ws0_c01173{word-spacing:20.722000pt;}
.ws2_c01173{word-spacing:20.785760pt;}
.ws11_c01173{word-spacing:21.040800pt;}
.ws6_c01173{word-spacing:22.634800pt;}
.ws12_c01173{word-spacing:23.081120pt;}
.wsa_c01173{word-spacing:25.886560pt;}
.ws9_c01173{word-spacing:26.715440pt;}
.ws4_c01173{word-spacing:27.608080pt;}
.wsf_c01173{word-spacing:30.604800pt;}
.ws3_c01173{word-spacing:33.091440pt;}
.ws1_c01173{word-spacing:1515.065120pt;}
._5_c01173{margin-left:-32.963920pt;}
._7_c01173{margin-left:-31.242400pt;}
._8_c01173{margin-left:-29.648400pt;}
._a_c01173{margin-left:-24.420080pt;}
._0_c01173{margin-left:-6.886080pt;}
._3_c01173{margin-left:-5.164560pt;}
._2_c01173{margin-left:-1.721520pt;}
._4_c01173{width:1.721520pt;}
._1_c01173{width:5.667173pt;}
._9_c01173{width:7.748107pt;}
._6_c01173{width:28.586080pt;}
.fs0_c01173{font-size:63.760000pt;}
.y0_c01173{bottom:0.000000pt;}
.y46_c01173{bottom:67.292000pt;}
.y28_c01173{bottom:69.956000pt;}
.y45_c01173{bottom:91.194667pt;}
.y27_c01173{bottom:93.858667pt;}
.y44_c01173{bottom:115.097333pt;}
.y26_c01173{bottom:117.761333pt;}
.y43_c01173{bottom:139.001333pt;}
.y25_c01173{bottom:141.665333pt;}
.y42_c01173{bottom:162.904000pt;}
.y24_c01173{bottom:165.568000pt;}
.y41_c01173{bottom:186.806667pt;}
.y23_c01173{bottom:189.470667pt;}
.y40_c01173{bottom:210.709333pt;}
.y22_c01173{bottom:213.373333pt;}
.y3f_c01173{bottom:234.613333pt;}
.y21_c01173{bottom:237.277333pt;}
.y3e_c01173{bottom:258.516000pt;}
.y20_c01173{bottom:261.180000pt;}
.y3d_c01173{bottom:282.418667pt;}
.y1f_c01173{bottom:285.082667pt;}
.y3c_c01173{bottom:306.321333pt;}
.y1e_c01173{bottom:308.985333pt;}
.y1d_c01173{bottom:332.889333pt;}
.y3b_c01173{bottom:343.508000pt;}
.y1c_c01173{bottom:356.792000pt;}
.y3a_c01173{bottom:367.410667pt;}
.y1b_c01173{bottom:380.694667pt;}
.y39_c01173{bottom:391.314667pt;}
.y1a_c01173{bottom:404.597333pt;}
.y38_c01173{bottom:415.217333pt;}
.y19_c01173{bottom:428.500000pt;}
.y37_c01173{bottom:439.120000pt;}
.y18_c01173{bottom:452.404000pt;}
.y36_c01173{bottom:463.022667pt;}
.y17_c01173{bottom:476.306667pt;}
.y35_c01173{bottom:486.926667pt;}
.y16_c01173{bottom:500.209333pt;}
.y34_c01173{bottom:510.829333pt;}
.y15_c01173{bottom:524.112000pt;}
.y33_c01173{bottom:534.732000pt;}
.y14_c01173{bottom:548.016000pt;}
.y32_c01173{bottom:558.634667pt;}
.y13_c01173{bottom:571.918667pt;}
.y31_c01173{bottom:582.537333pt;}
.y12_c01173{bottom:595.821333pt;}
.y30_c01173{bottom:606.441333pt;}
.y11_c01173{bottom:619.724000pt;}
.y2f_c01173{bottom:630.344000pt;}
.y10_c01173{bottom:643.628000pt;}
.y2e_c01173{bottom:654.246667pt;}
.yf_c01173{bottom:667.530667pt;}
.y2d_c01173{bottom:678.149333pt;}
.ye_c01173{bottom:691.433333pt;}
.y2c_c01173{bottom:702.053333pt;}
.yd_c01173{bottom:715.336000pt;}
.y2b_c01173{bottom:725.956000pt;}
.yc_c01173{bottom:739.240000pt;}
.y2a_c01173{bottom:749.858667pt;}
.yb_c01173{bottom:763.142667pt;}
.y29_c01173{bottom:773.761333pt;}
.ya_c01173{bottom:787.045333pt;}
.y9_c01173{bottom:810.948000pt;}
.y8_c01173{bottom:834.850667pt;}
.y7_c01173{bottom:858.754667pt;}
.y6_c01173{bottom:882.657333pt;}
.y5_c01173{bottom:906.560000pt;}
.y4_c01173{bottom:930.462667pt;}
.y3_c01173{bottom:954.366667pt;}
.y2_c01173{bottom:1013.880000pt;}
.y1_c01173{bottom:1017.909333pt;}
.h2_c01173{height:47.820000pt;}
.h3_c01173{height:63.937333pt;}
.h1_c01173{height:1123.333333pt;}
.h0_c01173{height:1123.653333pt;}
.w0_c01173{width:794.550667pt;}
.w1_c01173{width:794.666667pt;}
.x0_c01173{left:0.000000pt;}
.x1_c01173{left:112.298667pt;}
.x2_c01173{left:113.385333pt;}
.x4_c01173{left:166.520000pt;}
.x5_c01173{left:202.141333pt;}
.x3_c01173{left:228.020000pt;}
.x6_c01173{left:403.917333pt;}
.xa_c01173{left:409.548000pt;}
.xb_c01173{left:432.301333pt;}
.x9_c01173{left:457.052000pt;}
.x7_c01173{left:495.037333pt;}
.x8_c01173{left:568.182667pt;}
}





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

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





.ff0_c01174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01174;src:url('chunks/assets/font_fb964bcd11ce2ba549af9d35.woff2')format("woff");}.ff1_c01174{font-family:ff1_c01174;line-height:1.001000;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_c01174{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_c01174{vertical-align:0.000000px;}
.v1_c01174{vertical-align:18.132000px;}
.ls0_c01174{letter-spacing:0.000000px;}
.sc__c01174{text-shadow:none;}
.sc0_c01174{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__c01174{-webkit-text-stroke:0px transparent;}
.sc0_c01174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c01174{word-spacing:-0.071730px;}
.ws11_c01174{word-spacing:0.000000px;}
.ws10_c01174{word-spacing:15.565410px;}
.ws4_c01174{word-spacing:17.358660px;}
.ws9_c01174{word-spacing:17.789040px;}
.wsd_c01174{word-spacing:18.578070px;}
.wsf_c01174{word-spacing:18.793260px;}
.ws7_c01174{word-spacing:19.367100px;}
.wse_c01174{word-spacing:22.594950px;}
.ws0_c01174{word-spacing:23.312250px;}
.ws2_c01174{word-spacing:23.383980px;}
.wsa_c01174{word-spacing:23.670900px;}
.ws3_c01174{word-spacing:24.890310px;}
.ws6_c01174{word-spacing:25.105500px;}
.ws5_c01174{word-spacing:29.337570px;}
.ws8_c01174{word-spacing:29.911410px;}
.wsb_c01174{word-spacing:34.143480px;}
.ws1_c01174{word-spacing:1704.448260px;}
._8_c01174{margin-left:-35.362890px;}
._6_c01174{margin-left:-33.139260px;}
._7_c01174{margin-left:-27.400860px;}
._0_c01174{margin-left:-7.746840px;}
._3_c01174{margin-left:-5.738400px;}
._9_c01174{margin-left:-4.016880px;}
._2_c01174{margin-left:-2.008440px;}
._5_c01174{width:2.008440px;}
._1_c01174{width:6.375570px;}
._4_c01174{width:32.230020px;}
.fc0_c01174{color:rgb(0,0,0);}
.fs0_c01174{font-size:71.730000px;}
.y0_c01174{bottom:0.000000px;}
.y4a_c01174{bottom:78.700500px;}
.y26_c01174{bottom:87.649500px;}
.y49_c01174{bottom:105.591000px;}
.y25_c01174{bottom:114.541500px;}
.y48_c01174{bottom:132.481500px;}
.y24_c01174{bottom:141.432000px;}
.y47_c01174{bottom:159.373500px;}
.y23_c01174{bottom:168.322500px;}
.y46_c01174{bottom:186.264000px;}
.y22_c01174{bottom:195.213000px;}
.y45_c01174{bottom:213.154500px;}
.y21_c01174{bottom:222.105000px;}
.y44_c01174{bottom:240.045000px;}
.y20_c01174{bottom:248.995500px;}
.y43_c01174{bottom:266.937000px;}
.y1f_c01174{bottom:275.886000px;}
.y42_c01174{bottom:293.827500px;}
.y1e_c01174{bottom:302.776500px;}
.y41_c01174{bottom:320.718000px;}
.y1d_c01174{bottom:329.668500px;}
.y40_c01174{bottom:347.608500px;}
.y1c_c01174{bottom:356.559000px;}
.y3f_c01174{bottom:374.499000px;}
.y1b_c01174{bottom:383.449500px;}
.y3e_c01174{bottom:401.391000px;}
.y1a_c01174{bottom:410.340000px;}
.y3d_c01174{bottom:428.281500px;}
.y19_c01174{bottom:437.232000px;}
.y3c_c01174{bottom:455.172000px;}
.y18_c01174{bottom:464.122500px;}
.y3b_c01174{bottom:482.062500px;}
.y17_c01174{bottom:491.013000px;}
.y3a_c01174{bottom:508.954500px;}
.y16_c01174{bottom:517.903500px;}
.y39_c01174{bottom:535.845000px;}
.y15_c01174{bottom:544.794000px;}
.y38_c01174{bottom:562.735500px;}
.y14_c01174{bottom:571.686000px;}
.y37_c01174{bottom:589.626000px;}
.y13_c01174{bottom:598.576500px;}
.y36_c01174{bottom:616.518000px;}
.y12_c01174{bottom:625.467000px;}
.y35_c01174{bottom:643.408500px;}
.y11_c01174{bottom:652.357500px;}
.y34_c01174{bottom:670.299000px;}
.y10_c01174{bottom:694.192500px;}
.y33_c01174{bottom:697.189500px;}
.yf_c01174{bottom:721.084500px;}
.y32_c01174{bottom:724.081500px;}
.ye_c01174{bottom:747.975000px;}
.y31_c01174{bottom:750.972000px;}
.yd_c01174{bottom:774.865500px;}
.y30_c01174{bottom:777.862500px;}
.yc_c01174{bottom:801.756000px;}
.y2f_c01174{bottom:804.753000px;}
.yb_c01174{bottom:828.646500px;}
.y2e_c01174{bottom:831.643500px;}
.ya_c01174{bottom:855.538500px;}
.y2d_c01174{bottom:858.535500px;}
.y2c_c01174{bottom:885.426000px;}
.y9_c01174{bottom:897.373500px;}
.y2b_c01174{bottom:912.316500px;}
.y8_c01174{bottom:924.264000px;}
.y2a_c01174{bottom:939.207000px;}
.y7_c01174{bottom:951.154500px;}
.y29_c01174{bottom:966.099000px;}
.y6_c01174{bottom:978.045000px;}
.y28_c01174{bottom:992.989500px;}
.y5_c01174{bottom:1004.937000px;}
.y27_c01174{bottom:1019.880000px;}
.y4_c01174{bottom:1046.770500px;}
.y3_c01174{bottom:1073.662500px;}
.y2_c01174{bottom:1140.615000px;}
.y1_c01174{bottom:1145.148000px;}
.h2_c01174{height:53.797500px;}
.h3_c01174{height:71.929500px;}
.h1_c01174{height:1263.750000px;}
.h0_c01174{height:1264.110000px;}
.w0_c01174{width:893.869500px;}
.w1_c01174{width:894.000000px;}
.x0_c01174{left:0.000000px;}
.x1_c01174{left:126.336000px;}
.x2_c01174{left:127.558500px;}
.x5_c01174{left:187.335000px;}
.x3_c01174{left:256.522500px;}
.x4_c01174{left:275.556000px;}
.x6_c01174{left:454.407000px;}
.x7_c01174{left:514.183500px;}
@media print{
.v0_c01174{vertical-align:0.000000pt;}
.v1_c01174{vertical-align:16.117333pt;}
.ls0_c01174{letter-spacing:0.000000pt;}
.wsc_c01174{word-spacing:-0.063760pt;}
.ws11_c01174{word-spacing:0.000000pt;}
.ws10_c01174{word-spacing:13.835920pt;}
.ws4_c01174{word-spacing:15.429920pt;}
.ws9_c01174{word-spacing:15.812480pt;}
.wsd_c01174{word-spacing:16.513840pt;}
.wsf_c01174{word-spacing:16.705120pt;}
.ws7_c01174{word-spacing:17.215200pt;}
.wse_c01174{word-spacing:20.084400pt;}
.ws0_c01174{word-spacing:20.722000pt;}
.ws2_c01174{word-spacing:20.785760pt;}
.wsa_c01174{word-spacing:21.040800pt;}
.ws3_c01174{word-spacing:22.124720pt;}
.ws6_c01174{word-spacing:22.316000pt;}
.ws5_c01174{word-spacing:26.077840pt;}
.ws8_c01174{word-spacing:26.587920pt;}
.wsb_c01174{word-spacing:30.349760pt;}
.ws1_c01174{word-spacing:1515.065120pt;}
._8_c01174{margin-left:-31.433680pt;}
._6_c01174{margin-left:-29.457120pt;}
._7_c01174{margin-left:-24.356320pt;}
._0_c01174{margin-left:-6.886080pt;}
._3_c01174{margin-left:-5.100800pt;}
._9_c01174{margin-left:-3.570560pt;}
._2_c01174{margin-left:-1.785280pt;}
._5_c01174{width:1.785280pt;}
._1_c01174{width:5.667173pt;}
._4_c01174{width:28.648907pt;}
.fs0_c01174{font-size:63.760000pt;}
.y0_c01174{bottom:0.000000pt;}
.y4a_c01174{bottom:69.956000pt;}
.y26_c01174{bottom:77.910667pt;}
.y49_c01174{bottom:93.858667pt;}
.y25_c01174{bottom:101.814667pt;}
.y48_c01174{bottom:117.761333pt;}
.y24_c01174{bottom:125.717333pt;}
.y47_c01174{bottom:141.665333pt;}
.y23_c01174{bottom:149.620000pt;}
.y46_c01174{bottom:165.568000pt;}
.y22_c01174{bottom:173.522667pt;}
.y45_c01174{bottom:189.470667pt;}
.y21_c01174{bottom:197.426667pt;}
.y44_c01174{bottom:213.373333pt;}
.y20_c01174{bottom:221.329333pt;}
.y43_c01174{bottom:237.277333pt;}
.y1f_c01174{bottom:245.232000pt;}
.y42_c01174{bottom:261.180000pt;}
.y1e_c01174{bottom:269.134667pt;}
.y41_c01174{bottom:285.082667pt;}
.y1d_c01174{bottom:293.038667pt;}
.y40_c01174{bottom:308.985333pt;}
.y1c_c01174{bottom:316.941333pt;}
.y3f_c01174{bottom:332.888000pt;}
.y1b_c01174{bottom:340.844000pt;}
.y3e_c01174{bottom:356.792000pt;}
.y1a_c01174{bottom:364.746667pt;}
.y3d_c01174{bottom:380.694667pt;}
.y19_c01174{bottom:388.650667pt;}
.y3c_c01174{bottom:404.597333pt;}
.y18_c01174{bottom:412.553333pt;}
.y3b_c01174{bottom:428.500000pt;}
.y17_c01174{bottom:436.456000pt;}
.y3a_c01174{bottom:452.404000pt;}
.y16_c01174{bottom:460.358667pt;}
.y39_c01174{bottom:476.306667pt;}
.y15_c01174{bottom:484.261333pt;}
.y38_c01174{bottom:500.209333pt;}
.y14_c01174{bottom:508.165333pt;}
.y37_c01174{bottom:524.112000pt;}
.y13_c01174{bottom:532.068000pt;}
.y36_c01174{bottom:548.016000pt;}
.y12_c01174{bottom:555.970667pt;}
.y35_c01174{bottom:571.918667pt;}
.y11_c01174{bottom:579.873333pt;}
.y34_c01174{bottom:595.821333pt;}
.y10_c01174{bottom:617.060000pt;}
.y33_c01174{bottom:619.724000pt;}
.yf_c01174{bottom:640.964000pt;}
.y32_c01174{bottom:643.628000pt;}
.ye_c01174{bottom:664.866667pt;}
.y31_c01174{bottom:667.530667pt;}
.yd_c01174{bottom:688.769333pt;}
.y30_c01174{bottom:691.433333pt;}
.yc_c01174{bottom:712.672000pt;}
.y2f_c01174{bottom:715.336000pt;}
.yb_c01174{bottom:736.574667pt;}
.y2e_c01174{bottom:739.238667pt;}
.ya_c01174{bottom:760.478667pt;}
.y2d_c01174{bottom:763.142667pt;}
.y2c_c01174{bottom:787.045333pt;}
.y9_c01174{bottom:797.665333pt;}
.y2b_c01174{bottom:810.948000pt;}
.y8_c01174{bottom:821.568000pt;}
.y2a_c01174{bottom:834.850667pt;}
.y7_c01174{bottom:845.470667pt;}
.y29_c01174{bottom:858.754667pt;}
.y6_c01174{bottom:869.373333pt;}
.y28_c01174{bottom:882.657333pt;}
.y5_c01174{bottom:893.277333pt;}
.y27_c01174{bottom:906.560000pt;}
.y4_c01174{bottom:930.462667pt;}
.y3_c01174{bottom:954.366667pt;}
.y2_c01174{bottom:1013.880000pt;}
.y1_c01174{bottom:1017.909333pt;}
.h2_c01174{height:47.820000pt;}
.h3_c01174{height:63.937333pt;}
.h1_c01174{height:1123.333333pt;}
.h0_c01174{height:1123.653333pt;}
.w0_c01174{width:794.550667pt;}
.w1_c01174{width:794.666667pt;}
.x0_c01174{left:0.000000pt;}
.x1_c01174{left:112.298667pt;}
.x2_c01174{left:113.385333pt;}
.x5_c01174{left:166.520000pt;}
.x3_c01174{left:228.020000pt;}
.x4_c01174{left:244.938667pt;}
.x6_c01174{left:403.917333pt;}
.x7_c01174{left:457.052000pt;}
}





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

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





.ff0_c01175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01175;src:url('chunks/assets/font_e77c2d719caeb056372bae9d.woff2')format("woff");}.ff1_c01175{font-family:ff1_c01175;line-height:1.001000;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_c01175{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_c01175{vertical-align:0.000000px;}
.v1_c01175{vertical-align:18.132000px;}
.ls0_c01175{letter-spacing:0.000000px;}
.sc__c01175{text-shadow:none;}
.sc0_c01175{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__c01175{-webkit-text-stroke:0px transparent;}
.sc0_c01175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01175{word-spacing:-0.071730px;}
.ws13_c01175{word-spacing:0.000000px;}
.ws6_c01175{word-spacing:15.493680px;}
.ws8_c01175{word-spacing:15.565410px;}
.wsf_c01175{word-spacing:15.852330px;}
.ws9_c01175{word-spacing:19.080180px;}
.wse_c01175{word-spacing:19.869210px;}
.wsa_c01175{word-spacing:20.801700px;}
.ws12_c01175{word-spacing:21.519000px;}
.ws10_c01175{word-spacing:22.308030px;}
.ws0_c01175{word-spacing:23.312250px;}
.wsb_c01175{word-spacing:23.383980px;}
.ws5_c01175{word-spacing:24.335820px;}
.ws4_c01175{word-spacing:24.746850px;}
.wsc_c01175{word-spacing:32.082660px;}
.ws7_c01175{word-spacing:32.138700px;}
.ws11_c01175{word-spacing:32.421960px;}
.ws2_c01175{word-spacing:34.215210px;}
.wsd_c01175{word-spacing:34.789050px;}
.ws1_c01175{word-spacing:1704.448260px;}
._3_c01175{margin-left:-33.282720px;}
._6_c01175{margin-left:-27.257400px;}
._0_c01175{margin-left:-7.746840px;}
._4_c01175{margin-left:-5.881860px;}
._2_c01175{margin-left:-1.936710px;}
._7_c01175{width:1.936710px;}
._1_c01175{width:6.375570px;}
._5_c01175{width:8.851890px;}
.fc0_c01175{color:rgb(0,0,0);}
.fs0_c01175{font-size:71.730000px;}
.y0_c01175{bottom:0.000000px;}
.y28_c01175{bottom:78.700500px;}
.y27_c01175{bottom:105.591000px;}
.y26_c01175{bottom:132.481500px;}
.y25_c01175{bottom:159.373500px;}
.y24_c01175{bottom:186.264000px;}
.y23_c01175{bottom:213.154500px;}
.y22_c01175{bottom:240.045000px;}
.y21_c01175{bottom:266.937000px;}
.y20_c01175{bottom:293.827500px;}
.y1f_c01175{bottom:320.718000px;}
.y1e_c01175{bottom:347.608500px;}
.y2a_c01175{bottom:374.499000px;}
.y1d_c01175{bottom:374.500500px;}
.y1c_c01175{bottom:401.391000px;}
.y1b_c01175{bottom:428.281500px;}
.y1a_c01175{bottom:455.172000px;}
.y19_c01175{bottom:482.062500px;}
.y18_c01175{bottom:508.954500px;}
.y17_c01175{bottom:535.845000px;}
.y16_c01175{bottom:562.735500px;}
.y15_c01175{bottom:589.626000px;}
.y14_c01175{bottom:616.518000px;}
.y13_c01175{bottom:643.408500px;}
.y12_c01175{bottom:670.299000px;}
.y11_c01175{bottom:697.189500px;}
.y10_c01175{bottom:724.081500px;}
.yf_c01175{bottom:750.972000px;}
.ye_c01175{bottom:777.862500px;}
.yd_c01175{bottom:804.753000px;}
.y29_c01175{bottom:831.643500px;}
.yc_c01175{bottom:831.645000px;}
.yb_c01175{bottom:858.535500px;}
.ya_c01175{bottom:885.426000px;}
.y9_c01175{bottom:912.316500px;}
.y8_c01175{bottom:939.207000px;}
.y7_c01175{bottom:966.099000px;}
.y6_c01175{bottom:992.989500px;}
.y5_c01175{bottom:1019.880000px;}
.y4_c01175{bottom:1046.770500px;}
.y3_c01175{bottom:1073.662500px;}
.y2_c01175{bottom:1140.615000px;}
.y1_c01175{bottom:1145.148000px;}
.h2_c01175{height:53.797500px;}
.h3_c01175{height:71.929500px;}
.h1_c01175{height:1263.750000px;}
.h0_c01175{height:1264.110000px;}
.w0_c01175{width:893.869500px;}
.w1_c01175{width:894.000000px;}
.x0_c01175{left:0.000000px;}
.x1_c01175{left:126.336000px;}
.x2_c01175{left:127.558500px;}
.x4_c01175{left:187.335000px;}
.x5_c01175{left:204.364500px;}
.x6_c01175{left:216.070500px;}
.x8_c01175{left:240.927000px;}
.x3_c01175{left:256.522500px;}
.x7_c01175{left:296.271000px;}
.x9_c01175{left:454.407000px;}
.xb_c01175{left:514.183500px;}
.xc_c01175{left:521.698500px;}
.xa_c01175{left:531.211500px;}
@media print{
.v0_c01175{vertical-align:0.000000pt;}
.v1_c01175{vertical-align:16.117333pt;}
.ls0_c01175{letter-spacing:0.000000pt;}
.ws3_c01175{word-spacing:-0.063760pt;}
.ws13_c01175{word-spacing:0.000000pt;}
.ws6_c01175{word-spacing:13.772160pt;}
.ws8_c01175{word-spacing:13.835920pt;}
.wsf_c01175{word-spacing:14.090960pt;}
.ws9_c01175{word-spacing:16.960160pt;}
.wse_c01175{word-spacing:17.661520pt;}
.wsa_c01175{word-spacing:18.490400pt;}
.ws12_c01175{word-spacing:19.128000pt;}
.ws10_c01175{word-spacing:19.829360pt;}
.ws0_c01175{word-spacing:20.722000pt;}
.wsb_c01175{word-spacing:20.785760pt;}
.ws5_c01175{word-spacing:21.631840pt;}
.ws4_c01175{word-spacing:21.997200pt;}
.wsc_c01175{word-spacing:28.517920pt;}
.ws7_c01175{word-spacing:28.567733pt;}
.ws11_c01175{word-spacing:28.819520pt;}
.ws2_c01175{word-spacing:30.413520pt;}
.wsd_c01175{word-spacing:30.923600pt;}
.ws1_c01175{word-spacing:1515.065120pt;}
._3_c01175{margin-left:-29.584640pt;}
._6_c01175{margin-left:-24.228800pt;}
._0_c01175{margin-left:-6.886080pt;}
._4_c01175{margin-left:-5.228320pt;}
._2_c01175{margin-left:-1.721520pt;}
._7_c01175{width:1.721520pt;}
._1_c01175{width:5.667173pt;}
._5_c01175{width:7.868347pt;}
.fs0_c01175{font-size:63.760000pt;}
.y0_c01175{bottom:0.000000pt;}
.y28_c01175{bottom:69.956000pt;}
.y27_c01175{bottom:93.858667pt;}
.y26_c01175{bottom:117.761333pt;}
.y25_c01175{bottom:141.665333pt;}
.y24_c01175{bottom:165.568000pt;}
.y23_c01175{bottom:189.470667pt;}
.y22_c01175{bottom:213.373333pt;}
.y21_c01175{bottom:237.277333pt;}
.y20_c01175{bottom:261.180000pt;}
.y1f_c01175{bottom:285.082667pt;}
.y1e_c01175{bottom:308.985333pt;}
.y2a_c01175{bottom:332.888000pt;}
.y1d_c01175{bottom:332.889333pt;}
.y1c_c01175{bottom:356.792000pt;}
.y1b_c01175{bottom:380.694667pt;}
.y1a_c01175{bottom:404.597333pt;}
.y19_c01175{bottom:428.500000pt;}
.y18_c01175{bottom:452.404000pt;}
.y17_c01175{bottom:476.306667pt;}
.y16_c01175{bottom:500.209333pt;}
.y15_c01175{bottom:524.112000pt;}
.y14_c01175{bottom:548.016000pt;}
.y13_c01175{bottom:571.918667pt;}
.y12_c01175{bottom:595.821333pt;}
.y11_c01175{bottom:619.724000pt;}
.y10_c01175{bottom:643.628000pt;}
.yf_c01175{bottom:667.530667pt;}
.ye_c01175{bottom:691.433333pt;}
.yd_c01175{bottom:715.336000pt;}
.y29_c01175{bottom:739.238667pt;}
.yc_c01175{bottom:739.240000pt;}
.yb_c01175{bottom:763.142667pt;}
.ya_c01175{bottom:787.045333pt;}
.y9_c01175{bottom:810.948000pt;}
.y8_c01175{bottom:834.850667pt;}
.y7_c01175{bottom:858.754667pt;}
.y6_c01175{bottom:882.657333pt;}
.y5_c01175{bottom:906.560000pt;}
.y4_c01175{bottom:930.462667pt;}
.y3_c01175{bottom:954.366667pt;}
.y2_c01175{bottom:1013.880000pt;}
.y1_c01175{bottom:1017.909333pt;}
.h2_c01175{height:47.820000pt;}
.h3_c01175{height:63.937333pt;}
.h1_c01175{height:1123.333333pt;}
.h0_c01175{height:1123.653333pt;}
.w0_c01175{width:794.550667pt;}
.w1_c01175{width:794.666667pt;}
.x0_c01175{left:0.000000pt;}
.x1_c01175{left:112.298667pt;}
.x2_c01175{left:113.385333pt;}
.x4_c01175{left:166.520000pt;}
.x5_c01175{left:181.657333pt;}
.x6_c01175{left:192.062667pt;}
.x8_c01175{left:214.157333pt;}
.x3_c01175{left:228.020000pt;}
.x7_c01175{left:263.352000pt;}
.x9_c01175{left:403.917333pt;}
.xb_c01175{left:457.052000pt;}
.xc_c01175{left:463.732000pt;}
.xa_c01175{left:472.188000pt;}
}





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

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





.ff0_c01176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01176;src:url('chunks/assets/font_42b170972a4280746bac4fb9.woff2')format("woff");}.ff1_c01176{font-family:ff1_c01176;line-height:1.001000;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_c01176{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_c01176{vertical-align:0.000000px;}
.v1_c01176{vertical-align:18.132000px;}
.ls0_c01176{letter-spacing:0.000000px;}
.sc__c01176{text-shadow:none;}
.sc0_c01176{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__c01176{-webkit-text-stroke:0px transparent;}
.sc0_c01176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01176{word-spacing:-0.071730px;}
.ws17_c01176{word-spacing:0.000000px;}
.ws7_c01176{word-spacing:15.493680px;}
.wsc_c01176{word-spacing:15.565410px;}
.ws12_c01176{word-spacing:18.721530px;}
.ws13_c01176{word-spacing:19.725750px;}
.ws3_c01176{word-spacing:21.016890px;}
.wse_c01176{word-spacing:21.805920px;}
.wsb_c01176{word-spacing:21.949380px;}
.ws11_c01176{word-spacing:22.308030px;}
.ws8_c01176{word-spacing:22.738410px;}
.ws0_c01176{word-spacing:23.312250px;}
.ws6_c01176{word-spacing:23.383980px;}
.wsd_c01176{word-spacing:23.670900px;}
.ws14_c01176{word-spacing:24.290820px;}
.wsa_c01176{word-spacing:24.890310px;}
.wsf_c01176{word-spacing:25.751070px;}
.ws4_c01176{word-spacing:26.540100px;}
.ws5_c01176{word-spacing:27.902970px;}
.ws16_c01176{word-spacing:30.054870px;}
.ws9_c01176{word-spacing:32.073840px;}
.ws10_c01176{word-spacing:36.438840px;}
.ws15_c01176{word-spacing:36.797490px;}
.ws1_c01176{word-spacing:1704.448260px;}
._3_c01176{margin-left:-37.084410px;}
._7_c01176{margin-left:-33.139260px;}
._8_c01176{margin-left:-27.257400px;}
._0_c01176{margin-left:-7.746840px;}
._5_c01176{margin-left:-5.810130px;}
._4_c01176{margin-left:-2.008440px;}
._2_c01176{width:1.936710px;}
._1_c01176{width:6.375570px;}
._6_c01176{width:8.804850px;}
._9_c01176{width:31.999350px;}
.fc0_c01176{color:rgb(0,0,0);}
.fs0_c01176{font-size:71.730000px;}
.y0_c01176{bottom:0.000000px;}
.y3e_c01176{bottom:75.703500px;}
.y27_c01176{bottom:90.648000px;}
.y3d_c01176{bottom:102.594000px;}
.y26_c01176{bottom:117.538500px;}
.y3c_c01176{bottom:129.484500px;}
.y25_c01176{bottom:144.429000px;}
.y3b_c01176{bottom:156.376500px;}
.y24_c01176{bottom:171.319500px;}
.y3a_c01176{bottom:183.267000px;}
.y23_c01176{bottom:198.211500px;}
.y39_c01176{bottom:210.157500px;}
.y22_c01176{bottom:225.102000px;}
.y38_c01176{bottom:237.048000px;}
.y21_c01176{bottom:251.992500px;}
.y37_c01176{bottom:263.940000px;}
.y20_c01176{bottom:278.883000px;}
.y36_c01176{bottom:290.830500px;}
.y1f_c01176{bottom:305.773500px;}
.y35_c01176{bottom:317.721000px;}
.y1e_c01176{bottom:332.665500px;}
.y34_c01176{bottom:344.611500px;}
.y1d_c01176{bottom:359.556000px;}
.y33_c01176{bottom:371.503500px;}
.y1c_c01176{bottom:386.446500px;}
.y1b_c01176{bottom:413.337000px;}
.y1a_c01176{bottom:440.229000px;}
.y19_c01176{bottom:467.119500px;}
.y18_c01176{bottom:494.010000px;}
.y17_c01176{bottom:520.900500px;}
.y16_c01176{bottom:547.792500px;}
.y15_c01176{bottom:574.683000px;}
.y14_c01176{bottom:601.573500px;}
.y32_c01176{bottom:628.464000px;}
.y13_c01176{bottom:643.408500px;}
.y31_c01176{bottom:655.356000px;}
.y12_c01176{bottom:670.299000px;}
.y30_c01176{bottom:682.246500px;}
.y11_c01176{bottom:697.189500px;}
.y2f_c01176{bottom:709.137000px;}
.y10_c01176{bottom:724.081500px;}
.y2e_c01176{bottom:736.027500px;}
.yf_c01176{bottom:750.972000px;}
.y2d_c01176{bottom:762.918000px;}
.ye_c01176{bottom:777.862500px;}
.y2c_c01176{bottom:789.810000px;}
.yd_c01176{bottom:804.753000px;}
.y2b_c01176{bottom:816.700500px;}
.yc_c01176{bottom:831.645000px;}
.y2a_c01176{bottom:843.591000px;}
.yb_c01176{bottom:858.535500px;}
.y29_c01176{bottom:870.481500px;}
.ya_c01176{bottom:885.426000px;}
.y9_c01176{bottom:912.316500px;}
.y8_c01176{bottom:939.207000px;}
.y28_c01176{bottom:939.208500px;}
.y7_c01176{bottom:966.099000px;}
.y6_c01176{bottom:992.989500px;}
.y5_c01176{bottom:1019.880000px;}
.y4_c01176{bottom:1046.770500px;}
.y3_c01176{bottom:1073.662500px;}
.y2_c01176{bottom:1140.615000px;}
.y1_c01176{bottom:1145.148000px;}
.h2_c01176{height:53.797500px;}
.h3_c01176{height:71.929500px;}
.h1_c01176{height:1263.750000px;}
.h0_c01176{height:1264.110000px;}
.w0_c01176{width:893.869500px;}
.w1_c01176{width:894.000000px;}
.x0_c01176{left:0.000000px;}
.x1_c01176{left:126.336000px;}
.x2_c01176{left:127.558500px;}
.x5_c01176{left:156.811500px;}
.x6_c01176{left:187.335000px;}
.x4_c01176{left:203.869500px;}
.x7_c01176{left:232.147500px;}
.x3_c01176{left:256.522500px;}
.x8_c01176{left:284.089500px;}
.x9_c01176{left:454.407000px;}
.xa_c01176{left:514.182000px;}
.xb_c01176{left:561.687000px;}
@media print{
.v0_c01176{vertical-align:0.000000pt;}
.v1_c01176{vertical-align:16.117333pt;}
.ls0_c01176{letter-spacing:0.000000pt;}
.ws2_c01176{word-spacing:-0.063760pt;}
.ws17_c01176{word-spacing:0.000000pt;}
.ws7_c01176{word-spacing:13.772160pt;}
.wsc_c01176{word-spacing:13.835920pt;}
.ws12_c01176{word-spacing:16.641360pt;}
.ws13_c01176{word-spacing:17.534000pt;}
.ws3_c01176{word-spacing:18.681680pt;}
.wse_c01176{word-spacing:19.383040pt;}
.wsb_c01176{word-spacing:19.510560pt;}
.ws11_c01176{word-spacing:19.829360pt;}
.ws8_c01176{word-spacing:20.211920pt;}
.ws0_c01176{word-spacing:20.722000pt;}
.ws6_c01176{word-spacing:20.785760pt;}
.wsd_c01176{word-spacing:21.040800pt;}
.ws14_c01176{word-spacing:21.591840pt;}
.wsa_c01176{word-spacing:22.124720pt;}
.wsf_c01176{word-spacing:22.889840pt;}
.ws4_c01176{word-spacing:23.591200pt;}
.ws5_c01176{word-spacing:24.802640pt;}
.ws16_c01176{word-spacing:26.715440pt;}
.ws9_c01176{word-spacing:28.510080pt;}
.ws10_c01176{word-spacing:32.390080pt;}
.ws15_c01176{word-spacing:32.708880pt;}
.ws1_c01176{word-spacing:1515.065120pt;}
._3_c01176{margin-left:-32.963920pt;}
._7_c01176{margin-left:-29.457120pt;}
._8_c01176{margin-left:-24.228800pt;}
._0_c01176{margin-left:-6.886080pt;}
._5_c01176{margin-left:-5.164560pt;}
._4_c01176{margin-left:-1.785280pt;}
._2_c01176{width:1.721520pt;}
._1_c01176{width:5.667173pt;}
._6_c01176{width:7.826533pt;}
._9_c01176{width:28.443867pt;}
.fs0_c01176{font-size:63.760000pt;}
.y0_c01176{bottom:0.000000pt;}
.y3e_c01176{bottom:67.292000pt;}
.y27_c01176{bottom:80.576000pt;}
.y3d_c01176{bottom:91.194667pt;}
.y26_c01176{bottom:104.478667pt;}
.y3c_c01176{bottom:115.097333pt;}
.y25_c01176{bottom:128.381333pt;}
.y3b_c01176{bottom:139.001333pt;}
.y24_c01176{bottom:152.284000pt;}
.y3a_c01176{bottom:162.904000pt;}
.y23_c01176{bottom:176.188000pt;}
.y39_c01176{bottom:186.806667pt;}
.y22_c01176{bottom:200.090667pt;}
.y38_c01176{bottom:210.709333pt;}
.y21_c01176{bottom:223.993333pt;}
.y37_c01176{bottom:234.613333pt;}
.y20_c01176{bottom:247.896000pt;}
.y36_c01176{bottom:258.516000pt;}
.y1f_c01176{bottom:271.798667pt;}
.y35_c01176{bottom:282.418667pt;}
.y1e_c01176{bottom:295.702667pt;}
.y34_c01176{bottom:306.321333pt;}
.y1d_c01176{bottom:319.605333pt;}
.y33_c01176{bottom:330.225333pt;}
.y1c_c01176{bottom:343.508000pt;}
.y1b_c01176{bottom:367.410667pt;}
.y1a_c01176{bottom:391.314667pt;}
.y19_c01176{bottom:415.217333pt;}
.y18_c01176{bottom:439.120000pt;}
.y17_c01176{bottom:463.022667pt;}
.y16_c01176{bottom:486.926667pt;}
.y15_c01176{bottom:510.829333pt;}
.y14_c01176{bottom:534.732000pt;}
.y32_c01176{bottom:558.634667pt;}
.y13_c01176{bottom:571.918667pt;}
.y31_c01176{bottom:582.538667pt;}
.y12_c01176{bottom:595.821333pt;}
.y30_c01176{bottom:606.441333pt;}
.y11_c01176{bottom:619.724000pt;}
.y2f_c01176{bottom:630.344000pt;}
.y10_c01176{bottom:643.628000pt;}
.y2e_c01176{bottom:654.246667pt;}
.yf_c01176{bottom:667.530667pt;}
.y2d_c01176{bottom:678.149333pt;}
.ye_c01176{bottom:691.433333pt;}
.y2c_c01176{bottom:702.053333pt;}
.yd_c01176{bottom:715.336000pt;}
.y2b_c01176{bottom:725.956000pt;}
.yc_c01176{bottom:739.240000pt;}
.y2a_c01176{bottom:749.858667pt;}
.yb_c01176{bottom:763.142667pt;}
.y29_c01176{bottom:773.761333pt;}
.ya_c01176{bottom:787.045333pt;}
.y9_c01176{bottom:810.948000pt;}
.y8_c01176{bottom:834.850667pt;}
.y28_c01176{bottom:834.852000pt;}
.y7_c01176{bottom:858.754667pt;}
.y6_c01176{bottom:882.657333pt;}
.y5_c01176{bottom:906.560000pt;}
.y4_c01176{bottom:930.462667pt;}
.y3_c01176{bottom:954.366667pt;}
.y2_c01176{bottom:1013.880000pt;}
.y1_c01176{bottom:1017.909333pt;}
.h2_c01176{height:47.820000pt;}
.h3_c01176{height:63.937333pt;}
.h1_c01176{height:1123.333333pt;}
.h0_c01176{height:1123.653333pt;}
.w0_c01176{width:794.550667pt;}
.w1_c01176{width:794.666667pt;}
.x0_c01176{left:0.000000pt;}
.x1_c01176{left:112.298667pt;}
.x2_c01176{left:113.385333pt;}
.x5_c01176{left:139.388000pt;}
.x6_c01176{left:166.520000pt;}
.x4_c01176{left:181.217333pt;}
.x7_c01176{left:206.353333pt;}
.x3_c01176{left:228.020000pt;}
.x8_c01176{left:252.524000pt;}
.x9_c01176{left:403.917333pt;}
.xa_c01176{left:457.050667pt;}
.xb_c01176{left:499.277333pt;}
}





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

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





.ff0_c01177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01177;src:url('chunks/assets/font_1873d4652adc54d7a124402c.woff2')format("woff");}.ff1_c01177{font-family:ff1_c01177;line-height:1.001000;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_c01177{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_c01177{vertical-align:0.000000px;}
.v1_c01177{vertical-align:18.132000px;}
.ls0_c01177{letter-spacing:0.000000px;}
.sc__c01177{text-shadow:none;}
.sc0_c01177{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__c01177{-webkit-text-stroke:0px transparent;}
.sc0_c01177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01177{word-spacing:-0.071730px;}
.ws17_c01177{word-spacing:0.000000px;}
.ws11_c01177{word-spacing:15.493680px;}
.ws2_c01177{word-spacing:15.565410px;}
.ws16_c01177{word-spacing:16.641360px;}
.wsa_c01177{word-spacing:16.713090px;}
.wse_c01177{word-spacing:20.514780px;}
.ws14_c01177{word-spacing:20.586510px;}
.wsb_c01177{word-spacing:21.447270px;}
.ws15_c01177{word-spacing:22.308030px;}
.ws0_c01177{word-spacing:23.312250px;}
.ws6_c01177{word-spacing:23.383980px;}
.wsd_c01177{word-spacing:23.670900px;}
.ws13_c01177{word-spacing:25.751070px;}
.ws7_c01177{word-spacing:29.696220px;}
.ws12_c01177{word-spacing:31.848120px;}
.ws3_c01177{word-spacing:34.071750px;}
.ws8_c01177{word-spacing:35.075970px;}
.wsc_c01177{word-spacing:35.147700px;}
.ws9_c01177{word-spacing:35.506350px;}
.wsf_c01177{word-spacing:35.865000px;}
.ws10_c01177{word-spacing:36.151920px;}
.ws4_c01177{word-spacing:36.654030px;}
.ws1_c01177{word-spacing:1704.448260px;}
._8_c01177{margin-left:-35.219430px;}
._4_c01177{margin-left:-33.210990px;}
._6_c01177{margin-left:-27.400860px;}
._0_c01177{margin-left:-7.746840px;}
._2_c01177{margin-left:-5.810130px;}
._7_c01177{margin-left:-3.873420px;}
._3_c01177{margin-left:-1.936710px;}
._9_c01177{width:1.936710px;}
._1_c01177{width:6.375570px;}
._5_c01177{width:8.801640px;}
._a_c01177{width:32.148990px;}
.fc0_c01177{color:rgb(0,0,0);}
.fs0_c01177{font-size:71.730000px;}
.y0_c01177{bottom:0.000000px;}
.y40_c01177{bottom:75.703500px;}
.y28_c01177{bottom:78.700500px;}
.y3f_c01177{bottom:102.594000px;}
.y27_c01177{bottom:105.591000px;}
.y3e_c01177{bottom:129.484500px;}
.y26_c01177{bottom:132.481500px;}
.y3d_c01177{bottom:156.376500px;}
.y25_c01177{bottom:159.373500px;}
.y3c_c01177{bottom:183.267000px;}
.y24_c01177{bottom:186.264000px;}
.y3b_c01177{bottom:210.157500px;}
.y23_c01177{bottom:213.154500px;}
.y3a_c01177{bottom:237.048000px;}
.y22_c01177{bottom:240.045000px;}
.y39_c01177{bottom:263.940000px;}
.y21_c01177{bottom:266.937000px;}
.y38_c01177{bottom:290.830500px;}
.y20_c01177{bottom:293.827500px;}
.y37_c01177{bottom:317.721000px;}
.y1f_c01177{bottom:320.718000px;}
.y36_c01177{bottom:344.611500px;}
.y1e_c01177{bottom:347.608500px;}
.y35_c01177{bottom:371.503500px;}
.y1d_c01177{bottom:374.500500px;}
.y34_c01177{bottom:398.394000px;}
.y1c_c01177{bottom:401.391000px;}
.y33_c01177{bottom:425.284500px;}
.y1b_c01177{bottom:428.281500px;}
.y32_c01177{bottom:452.175000px;}
.y1a_c01177{bottom:455.172000px;}
.y31_c01177{bottom:479.065500px;}
.y19_c01177{bottom:482.064000px;}
.y30_c01177{bottom:505.957500px;}
.y18_c01177{bottom:508.954500px;}
.y2f_c01177{bottom:532.848000px;}
.y17_c01177{bottom:535.845000px;}
.y16_c01177{bottom:562.735500px;}
.y2e_c01177{bottom:574.683000px;}
.y15_c01177{bottom:589.626000px;}
.y2d_c01177{bottom:601.573500px;}
.y14_c01177{bottom:616.518000px;}
.y2c_c01177{bottom:628.464000px;}
.y13_c01177{bottom:643.408500px;}
.y2b_c01177{bottom:655.354500px;}
.y12_c01177{bottom:670.299000px;}
.y2a_c01177{bottom:682.246500px;}
.y11_c01177{bottom:697.189500px;}
.y29_c01177{bottom:709.137000px;}
.y10_c01177{bottom:724.081500px;}
.yf_c01177{bottom:750.972000px;}
.ye_c01177{bottom:777.862500px;}
.yd_c01177{bottom:804.753000px;}
.yc_c01177{bottom:831.645000px;}
.yb_c01177{bottom:858.535500px;}
.ya_c01177{bottom:885.426000px;}
.y9_c01177{bottom:912.316500px;}
.y8_c01177{bottom:939.207000px;}
.y7_c01177{bottom:966.099000px;}
.y6_c01177{bottom:992.989500px;}
.y5_c01177{bottom:1019.880000px;}
.y4_c01177{bottom:1046.770500px;}
.y3_c01177{bottom:1073.662500px;}
.y2_c01177{bottom:1140.615000px;}
.y1_c01177{bottom:1145.148000px;}
.h2_c01177{height:53.797500px;}
.h3_c01177{height:71.929500px;}
.h1_c01177{height:1263.750000px;}
.h0_c01177{height:1264.110000px;}
.w0_c01177{width:893.869500px;}
.w1_c01177{width:894.000000px;}
.x0_c01177{left:0.000000px;}
.x1_c01177{left:126.336000px;}
.x2_c01177{left:127.558500px;}
.x5_c01177{left:151.452000px;}
.x4_c01177{left:187.335000px;}
.x6_c01177{left:190.219500px;}
.x3_c01177{left:256.522500px;}
.x7_c01177{left:454.407000px;}
.x8_c01177{left:514.183500px;}
.xa_c01177{left:595.075500px;}
.x9_c01177{left:598.996500px;}
@media print{
.v0_c01177{vertical-align:0.000000pt;}
.v1_c01177{vertical-align:16.117333pt;}
.ls0_c01177{letter-spacing:0.000000pt;}
.ws5_c01177{word-spacing:-0.063760pt;}
.ws17_c01177{word-spacing:0.000000pt;}
.ws11_c01177{word-spacing:13.772160pt;}
.ws2_c01177{word-spacing:13.835920pt;}
.ws16_c01177{word-spacing:14.792320pt;}
.wsa_c01177{word-spacing:14.856080pt;}
.wse_c01177{word-spacing:18.235360pt;}
.ws14_c01177{word-spacing:18.299120pt;}
.wsb_c01177{word-spacing:19.064240pt;}
.ws15_c01177{word-spacing:19.829360pt;}
.ws0_c01177{word-spacing:20.722000pt;}
.ws6_c01177{word-spacing:20.785760pt;}
.wsd_c01177{word-spacing:21.040800pt;}
.ws13_c01177{word-spacing:22.889840pt;}
.ws7_c01177{word-spacing:26.396640pt;}
.ws12_c01177{word-spacing:28.309440pt;}
.ws3_c01177{word-spacing:30.286000pt;}
.ws8_c01177{word-spacing:31.178640pt;}
.wsc_c01177{word-spacing:31.242400pt;}
.ws9_c01177{word-spacing:31.561200pt;}
.wsf_c01177{word-spacing:31.880000pt;}
.ws10_c01177{word-spacing:32.135040pt;}
.ws4_c01177{word-spacing:32.581360pt;}
.ws1_c01177{word-spacing:1515.065120pt;}
._8_c01177{margin-left:-31.306160pt;}
._4_c01177{margin-left:-29.520880pt;}
._6_c01177{margin-left:-24.356320pt;}
._0_c01177{margin-left:-6.886080pt;}
._2_c01177{margin-left:-5.164560pt;}
._7_c01177{margin-left:-3.443040pt;}
._3_c01177{margin-left:-1.721520pt;}
._9_c01177{width:1.721520pt;}
._1_c01177{width:5.667173pt;}
._5_c01177{width:7.823680pt;}
._a_c01177{width:28.576880pt;}
.fs0_c01177{font-size:63.760000pt;}
.y0_c01177{bottom:0.000000pt;}
.y40_c01177{bottom:67.292000pt;}
.y28_c01177{bottom:69.956000pt;}
.y3f_c01177{bottom:91.194667pt;}
.y27_c01177{bottom:93.858667pt;}
.y3e_c01177{bottom:115.097333pt;}
.y26_c01177{bottom:117.761333pt;}
.y3d_c01177{bottom:139.001333pt;}
.y25_c01177{bottom:141.665333pt;}
.y3c_c01177{bottom:162.904000pt;}
.y24_c01177{bottom:165.568000pt;}
.y3b_c01177{bottom:186.806667pt;}
.y23_c01177{bottom:189.470667pt;}
.y3a_c01177{bottom:210.709333pt;}
.y22_c01177{bottom:213.373333pt;}
.y39_c01177{bottom:234.613333pt;}
.y21_c01177{bottom:237.277333pt;}
.y38_c01177{bottom:258.516000pt;}
.y20_c01177{bottom:261.180000pt;}
.y37_c01177{bottom:282.418667pt;}
.y1f_c01177{bottom:285.082667pt;}
.y36_c01177{bottom:306.321333pt;}
.y1e_c01177{bottom:308.985333pt;}
.y35_c01177{bottom:330.225333pt;}
.y1d_c01177{bottom:332.889333pt;}
.y34_c01177{bottom:354.128000pt;}
.y1c_c01177{bottom:356.792000pt;}
.y33_c01177{bottom:378.030667pt;}
.y1b_c01177{bottom:380.694667pt;}
.y32_c01177{bottom:401.933333pt;}
.y1a_c01177{bottom:404.597333pt;}
.y31_c01177{bottom:425.836000pt;}
.y19_c01177{bottom:428.501333pt;}
.y30_c01177{bottom:449.740000pt;}
.y18_c01177{bottom:452.404000pt;}
.y2f_c01177{bottom:473.642667pt;}
.y17_c01177{bottom:476.306667pt;}
.y16_c01177{bottom:500.209333pt;}
.y2e_c01177{bottom:510.829333pt;}
.y15_c01177{bottom:524.112000pt;}
.y2d_c01177{bottom:534.732000pt;}
.y14_c01177{bottom:548.016000pt;}
.y2c_c01177{bottom:558.634667pt;}
.y13_c01177{bottom:571.918667pt;}
.y2b_c01177{bottom:582.537333pt;}
.y12_c01177{bottom:595.821333pt;}
.y2a_c01177{bottom:606.441333pt;}
.y11_c01177{bottom:619.724000pt;}
.y29_c01177{bottom:630.344000pt;}
.y10_c01177{bottom:643.628000pt;}
.yf_c01177{bottom:667.530667pt;}
.ye_c01177{bottom:691.433333pt;}
.yd_c01177{bottom:715.336000pt;}
.yc_c01177{bottom:739.240000pt;}
.yb_c01177{bottom:763.142667pt;}
.ya_c01177{bottom:787.045333pt;}
.y9_c01177{bottom:810.948000pt;}
.y8_c01177{bottom:834.850667pt;}
.y7_c01177{bottom:858.754667pt;}
.y6_c01177{bottom:882.657333pt;}
.y5_c01177{bottom:906.560000pt;}
.y4_c01177{bottom:930.462667pt;}
.y3_c01177{bottom:954.366667pt;}
.y2_c01177{bottom:1013.880000pt;}
.y1_c01177{bottom:1017.909333pt;}
.h2_c01177{height:47.820000pt;}
.h3_c01177{height:63.937333pt;}
.h1_c01177{height:1123.333333pt;}
.h0_c01177{height:1123.653333pt;}
.w0_c01177{width:794.550667pt;}
.w1_c01177{width:794.666667pt;}
.x0_c01177{left:0.000000pt;}
.x1_c01177{left:112.298667pt;}
.x2_c01177{left:113.385333pt;}
.x5_c01177{left:134.624000pt;}
.x4_c01177{left:166.520000pt;}
.x6_c01177{left:169.084000pt;}
.x3_c01177{left:228.020000pt;}
.x7_c01177{left:403.917333pt;}
.x8_c01177{left:457.052000pt;}
.xa_c01177{left:528.956000pt;}
.x9_c01177{left:532.441333pt;}
}





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

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





.ff0_c01178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01178;src:url('chunks/assets/font_0d2a7f76267d8f7f1871f861.woff2')format("woff");}.ff1_c01178{font-family:ff1_c01178;line-height:1.001000;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_c01178{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_c01178{vertical-align:0.000000px;}
.v1_c01178{vertical-align:18.132000px;}
.ls0_c01178{letter-spacing:0.000000px;}
.sc__c01178{text-shadow:none;}
.sc0_c01178{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__c01178{-webkit-text-stroke:0px transparent;}
.sc0_c01178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01178{word-spacing:-0.071730px;}
.ws1a_c01178{word-spacing:0.000000px;}
.ws5_c01178{word-spacing:15.493680px;}
.wsd_c01178{word-spacing:15.565410px;}
.ws2_c01178{word-spacing:15.995790px;}
.ws15_c01178{word-spacing:16.641360px;}
.ws16_c01178{word-spacing:17.000010px;}
.wsb_c01178{word-spacing:18.219420px;}
.ws11_c01178{word-spacing:18.434610px;}
.ws8_c01178{word-spacing:20.586510px;}
.ws19_c01178{word-spacing:21.805920px;}
.ws3_c01178{word-spacing:22.308030px;}
.ws0_c01178{word-spacing:23.312250px;}
.ws6_c01178{word-spacing:23.383980px;}
.ws9_c01178{word-spacing:23.670900px;}
.wsf_c01178{word-spacing:24.316470px;}
.wsa_c01178{word-spacing:25.033770px;}
.ws17_c01178{word-spacing:25.679340px;}
.ws10_c01178{word-spacing:25.751070px;}
.ws14_c01178{word-spacing:26.109720px;}
.ws13_c01178{word-spacing:29.696220px;}
.wse_c01178{word-spacing:30.054870px;}
.ws7_c01178{word-spacing:30.341790px;}
.wsc_c01178{word-spacing:32.852340px;}
.ws12_c01178{word-spacing:33.713100px;}
.ws18_c01178{word-spacing:34.071750px;}
.ws1_c01178{word-spacing:1704.448260px;}
._a_c01178{margin-left:-37.012680px;}
._7_c01178{margin-left:-35.075970px;}
._6_c01178{margin-left:-33.139260px;}
._4_c01178{margin-left:-27.400860px;}
._0_c01178{margin-left:-7.746840px;}
._2_c01178{margin-left:-5.881860px;}
._9_c01178{margin-left:-3.801690px;}
._5_c01178{margin-left:-2.008440px;}
._3_c01178{width:1.936710px;}
._1_c01178{width:6.375570px;}
._8_c01178{width:8.804880px;}
.fc0_c01178{color:rgb(0,0,0);}
.fs0_c01178{font-size:71.730000px;}
.y0_c01178{bottom:0.000000px;}
.y38_c01178{bottom:78.700500px;}
.y27_c01178{bottom:90.648000px;}
.y37_c01178{bottom:105.591000px;}
.y26_c01178{bottom:117.538500px;}
.y36_c01178{bottom:132.481500px;}
.y25_c01178{bottom:144.429000px;}
.y35_c01178{bottom:159.373500px;}
.y24_c01178{bottom:171.319500px;}
.y34_c01178{bottom:186.264000px;}
.y23_c01178{bottom:198.211500px;}
.y33_c01178{bottom:213.154500px;}
.y22_c01178{bottom:225.102000px;}
.y32_c01178{bottom:240.045000px;}
.y21_c01178{bottom:251.992500px;}
.y31_c01178{bottom:266.937000px;}
.y20_c01178{bottom:278.883000px;}
.y30_c01178{bottom:293.827500px;}
.y1f_c01178{bottom:305.773500px;}
.y2f_c01178{bottom:320.718000px;}
.y1e_c01178{bottom:332.665500px;}
.y2e_c01178{bottom:347.608500px;}
.y1d_c01178{bottom:359.556000px;}
.y2d_c01178{bottom:374.500500px;}
.y1c_c01178{bottom:386.446500px;}
.y2c_c01178{bottom:401.391000px;}
.y1b_c01178{bottom:413.337000px;}
.y2b_c01178{bottom:428.281500px;}
.y1a_c01178{bottom:440.229000px;}
.y2a_c01178{bottom:455.172000px;}
.y19_c01178{bottom:467.119500px;}
.y29_c01178{bottom:482.064000px;}
.y18_c01178{bottom:508.954500px;}
.y17_c01178{bottom:535.845000px;}
.y16_c01178{bottom:562.735500px;}
.y15_c01178{bottom:589.626000px;}
.y14_c01178{bottom:616.518000px;}
.y13_c01178{bottom:643.408500px;}
.y12_c01178{bottom:670.299000px;}
.y11_c01178{bottom:697.189500px;}
.y10_c01178{bottom:724.081500px;}
.yf_c01178{bottom:750.972000px;}
.ye_c01178{bottom:777.862500px;}
.yd_c01178{bottom:804.753000px;}
.yc_c01178{bottom:831.645000px;}
.yb_c01178{bottom:858.535500px;}
.ya_c01178{bottom:885.426000px;}
.y9_c01178{bottom:912.316500px;}
.y8_c01178{bottom:939.207000px;}
.y28_c01178{bottom:939.208500px;}
.y7_c01178{bottom:966.099000px;}
.y6_c01178{bottom:992.989500px;}
.y5_c01178{bottom:1019.880000px;}
.y4_c01178{bottom:1046.770500px;}
.y3_c01178{bottom:1073.662500px;}
.y2_c01178{bottom:1140.615000px;}
.y1_c01178{bottom:1145.148000px;}
.h2_c01178{height:53.797500px;}
.h3_c01178{height:71.929500px;}
.h1_c01178{height:1263.750000px;}
.h0_c01178{height:1264.110000px;}
.w0_c01178{width:893.869500px;}
.w1_c01178{width:894.000000px;}
.x0_c01178{left:0.000000px;}
.x1_c01178{left:126.336000px;}
.x2_c01178{left:127.558500px;}
.x4_c01178{left:187.335000px;}
.x3_c01178{left:256.522500px;}
.x5_c01178{left:454.407000px;}
.x6_c01178{left:514.183500px;}
@media print{
.v0_c01178{vertical-align:0.000000pt;}
.v1_c01178{vertical-align:16.117333pt;}
.ls0_c01178{letter-spacing:0.000000pt;}
.ws4_c01178{word-spacing:-0.063760pt;}
.ws1a_c01178{word-spacing:0.000000pt;}
.ws5_c01178{word-spacing:13.772160pt;}
.wsd_c01178{word-spacing:13.835920pt;}
.ws2_c01178{word-spacing:14.218480pt;}
.ws15_c01178{word-spacing:14.792320pt;}
.ws16_c01178{word-spacing:15.111120pt;}
.wsb_c01178{word-spacing:16.195040pt;}
.ws11_c01178{word-spacing:16.386320pt;}
.ws8_c01178{word-spacing:18.299120pt;}
.ws19_c01178{word-spacing:19.383040pt;}
.ws3_c01178{word-spacing:19.829360pt;}
.ws0_c01178{word-spacing:20.722000pt;}
.ws6_c01178{word-spacing:20.785760pt;}
.ws9_c01178{word-spacing:21.040800pt;}
.wsf_c01178{word-spacing:21.614640pt;}
.wsa_c01178{word-spacing:22.252240pt;}
.ws17_c01178{word-spacing:22.826080pt;}
.ws10_c01178{word-spacing:22.889840pt;}
.ws14_c01178{word-spacing:23.208640pt;}
.ws13_c01178{word-spacing:26.396640pt;}
.wse_c01178{word-spacing:26.715440pt;}
.ws7_c01178{word-spacing:26.970480pt;}
.wsc_c01178{word-spacing:29.202080pt;}
.ws12_c01178{word-spacing:29.967200pt;}
.ws18_c01178{word-spacing:30.286000pt;}
.ws1_c01178{word-spacing:1515.065120pt;}
._a_c01178{margin-left:-32.900160pt;}
._7_c01178{margin-left:-31.178640pt;}
._6_c01178{margin-left:-29.457120pt;}
._4_c01178{margin-left:-24.356320pt;}
._0_c01178{margin-left:-6.886080pt;}
._2_c01178{margin-left:-5.228320pt;}
._9_c01178{margin-left:-3.379280pt;}
._5_c01178{margin-left:-1.785280pt;}
._3_c01178{width:1.721520pt;}
._1_c01178{width:5.667173pt;}
._8_c01178{width:7.826560pt;}
.fs0_c01178{font-size:63.760000pt;}
.y0_c01178{bottom:0.000000pt;}
.y38_c01178{bottom:69.956000pt;}
.y27_c01178{bottom:80.576000pt;}
.y37_c01178{bottom:93.858667pt;}
.y26_c01178{bottom:104.478667pt;}
.y36_c01178{bottom:117.761333pt;}
.y25_c01178{bottom:128.381333pt;}
.y35_c01178{bottom:141.665333pt;}
.y24_c01178{bottom:152.284000pt;}
.y34_c01178{bottom:165.568000pt;}
.y23_c01178{bottom:176.188000pt;}
.y33_c01178{bottom:189.470667pt;}
.y22_c01178{bottom:200.090667pt;}
.y32_c01178{bottom:213.373333pt;}
.y21_c01178{bottom:223.993333pt;}
.y31_c01178{bottom:237.277333pt;}
.y20_c01178{bottom:247.896000pt;}
.y30_c01178{bottom:261.180000pt;}
.y1f_c01178{bottom:271.798667pt;}
.y2f_c01178{bottom:285.082667pt;}
.y1e_c01178{bottom:295.702667pt;}
.y2e_c01178{bottom:308.985333pt;}
.y1d_c01178{bottom:319.605333pt;}
.y2d_c01178{bottom:332.889333pt;}
.y1c_c01178{bottom:343.508000pt;}
.y2c_c01178{bottom:356.792000pt;}
.y1b_c01178{bottom:367.410667pt;}
.y2b_c01178{bottom:380.694667pt;}
.y1a_c01178{bottom:391.314667pt;}
.y2a_c01178{bottom:404.597333pt;}
.y19_c01178{bottom:415.217333pt;}
.y29_c01178{bottom:428.501333pt;}
.y18_c01178{bottom:452.404000pt;}
.y17_c01178{bottom:476.306667pt;}
.y16_c01178{bottom:500.209333pt;}
.y15_c01178{bottom:524.112000pt;}
.y14_c01178{bottom:548.016000pt;}
.y13_c01178{bottom:571.918667pt;}
.y12_c01178{bottom:595.821333pt;}
.y11_c01178{bottom:619.724000pt;}
.y10_c01178{bottom:643.628000pt;}
.yf_c01178{bottom:667.530667pt;}
.ye_c01178{bottom:691.433333pt;}
.yd_c01178{bottom:715.336000pt;}
.yc_c01178{bottom:739.240000pt;}
.yb_c01178{bottom:763.142667pt;}
.ya_c01178{bottom:787.045333pt;}
.y9_c01178{bottom:810.948000pt;}
.y8_c01178{bottom:834.850667pt;}
.y28_c01178{bottom:834.852000pt;}
.y7_c01178{bottom:858.754667pt;}
.y6_c01178{bottom:882.657333pt;}
.y5_c01178{bottom:906.560000pt;}
.y4_c01178{bottom:930.462667pt;}
.y3_c01178{bottom:954.366667pt;}
.y2_c01178{bottom:1013.880000pt;}
.y1_c01178{bottom:1017.909333pt;}
.h2_c01178{height:47.820000pt;}
.h3_c01178{height:63.937333pt;}
.h1_c01178{height:1123.333333pt;}
.h0_c01178{height:1123.653333pt;}
.w0_c01178{width:794.550667pt;}
.w1_c01178{width:794.666667pt;}
.x0_c01178{left:0.000000pt;}
.x1_c01178{left:112.298667pt;}
.x2_c01178{left:113.385333pt;}
.x4_c01178{left:166.520000pt;}
.x3_c01178{left:228.020000pt;}
.x5_c01178{left:403.917333pt;}
.x6_c01178{left:457.052000pt;}
}





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

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





.ff0_c01179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01179;src:url('chunks/assets/font_b4f27c76709ac71cb9b6189a.woff2')format("woff");}.ff1_c01179{font-family:ff1_c01179;line-height:1.001000;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_c01179{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_c01179{vertical-align:0.000000px;}
.v1_c01179{vertical-align:18.132000px;}
.ls0_c01179{letter-spacing:0.000000px;}
.sc__c01179{text-shadow:none;}
.sc0_c01179{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__c01179{-webkit-text-stroke:0px transparent;}
.sc0_c01179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c01179{word-spacing:-0.071730px;}
.wsf_c01179{word-spacing:0.000000px;}
.ws6_c01179{word-spacing:17.717310px;}
.ws3_c01179{word-spacing:22.308030px;}
.wsa_c01179{word-spacing:22.953600px;}
.ws0_c01179{word-spacing:23.312250px;}
.ws7_c01179{word-spacing:23.383980px;}
.ws4_c01179{word-spacing:23.670900px;}
.ws2_c01179{word-spacing:25.751070px;}
.wsd_c01179{word-spacing:26.109720px;}
.wse_c01179{word-spacing:29.050650px;}
.ws9_c01179{word-spacing:29.194110px;}
.wsc_c01179{word-spacing:29.767950px;}
.ws5_c01179{word-spacing:35.578080px;}
.wsb_c01179{word-spacing:36.367110px;}
.ws1_c01179{word-spacing:1704.448260px;}
._b_c01179{margin-left:-37.156140px;}
._8_c01179{margin-left:-35.147700px;}
._3_c01179{margin-left:-33.210990px;}
._4_c01179{margin-left:-27.400860px;}
._0_c01179{margin-left:-7.746840px;}
._5_c01179{margin-left:-5.810130px;}
._a_c01179{margin-left:-3.945150px;}
._2_c01179{margin-left:-1.864980px;}
._6_c01179{width:1.936710px;}
._1_c01179{width:6.375570px;}
._7_c01179{width:8.769060px;}
._9_c01179{width:32.084970px;}
.fc0_c01179{color:rgb(0,0,0);}
.fs0_c01179{font-size:71.730000px;}
.y0_c01179{bottom:0.000000px;}
.y37_c01179{bottom:75.703500px;}
.y27_c01179{bottom:90.648000px;}
.y36_c01179{bottom:102.594000px;}
.y26_c01179{bottom:117.538500px;}
.y35_c01179{bottom:129.484500px;}
.y25_c01179{bottom:144.429000px;}
.y34_c01179{bottom:156.376500px;}
.y24_c01179{bottom:171.319500px;}
.y23_c01179{bottom:198.210000px;}
.y33_c01179{bottom:225.102000px;}
.y22_c01179{bottom:240.045000px;}
.y32_c01179{bottom:251.992500px;}
.y21_c01179{bottom:266.937000px;}
.y31_c01179{bottom:278.883000px;}
.y20_c01179{bottom:293.827500px;}
.y30_c01179{bottom:305.773500px;}
.y1f_c01179{bottom:320.718000px;}
.y2f_c01179{bottom:332.665500px;}
.y1e_c01179{bottom:347.608500px;}
.y2e_c01179{bottom:359.556000px;}
.y1d_c01179{bottom:374.500500px;}
.y2d_c01179{bottom:386.446500px;}
.y1c_c01179{bottom:401.391000px;}
.y2c_c01179{bottom:413.337000px;}
.y1b_c01179{bottom:428.281500px;}
.y2b_c01179{bottom:440.229000px;}
.y1a_c01179{bottom:455.172000px;}
.y2a_c01179{bottom:467.119500px;}
.y19_c01179{bottom:482.062500px;}
.y29_c01179{bottom:494.010000px;}
.y18_c01179{bottom:508.954500px;}
.y17_c01179{bottom:535.845000px;}
.y16_c01179{bottom:562.735500px;}
.y15_c01179{bottom:589.626000px;}
.y14_c01179{bottom:616.518000px;}
.y13_c01179{bottom:643.408500px;}
.y12_c01179{bottom:670.299000px;}
.y11_c01179{bottom:697.189500px;}
.y10_c01179{bottom:724.081500px;}
.yf_c01179{bottom:750.972000px;}
.ye_c01179{bottom:777.862500px;}
.yd_c01179{bottom:804.753000px;}
.y28_c01179{bottom:831.643500px;}
.yc_c01179{bottom:831.645000px;}
.yb_c01179{bottom:858.535500px;}
.ya_c01179{bottom:885.426000px;}
.y9_c01179{bottom:912.316500px;}
.y8_c01179{bottom:939.207000px;}
.y7_c01179{bottom:966.099000px;}
.y6_c01179{bottom:992.989500px;}
.y5_c01179{bottom:1019.880000px;}
.y4_c01179{bottom:1046.770500px;}
.y3_c01179{bottom:1073.662500px;}
.y2_c01179{bottom:1140.615000px;}
.y1_c01179{bottom:1145.148000px;}
.h2_c01179{height:53.797500px;}
.h3_c01179{height:71.929500px;}
.h1_c01179{height:1263.750000px;}
.h0_c01179{height:1264.110000px;}
.w0_c01179{width:893.869500px;}
.w1_c01179{width:894.000000px;}
.x0_c01179{left:0.000000px;}
.x1_c01179{left:126.336000px;}
.x2_c01179{left:127.558500px;}
.x5_c01179{left:150.477000px;}
.x4_c01179{left:187.335000px;}
.x6_c01179{left:248.352000px;}
.x3_c01179{left:256.522500px;}
.x7_c01179{left:454.407000px;}
.x8_c01179{left:514.183500px;}
@media print{
.v0_c01179{vertical-align:0.000000pt;}
.v1_c01179{vertical-align:16.117333pt;}
.ls0_c01179{letter-spacing:0.000000pt;}
.ws8_c01179{word-spacing:-0.063760pt;}
.wsf_c01179{word-spacing:0.000000pt;}
.ws6_c01179{word-spacing:15.748720pt;}
.ws3_c01179{word-spacing:19.829360pt;}
.wsa_c01179{word-spacing:20.403200pt;}
.ws0_c01179{word-spacing:20.722000pt;}
.ws7_c01179{word-spacing:20.785760pt;}
.ws4_c01179{word-spacing:21.040800pt;}
.ws2_c01179{word-spacing:22.889840pt;}
.wsd_c01179{word-spacing:23.208640pt;}
.wse_c01179{word-spacing:25.822800pt;}
.ws9_c01179{word-spacing:25.950320pt;}
.wsc_c01179{word-spacing:26.460400pt;}
.ws5_c01179{word-spacing:31.624960pt;}
.wsb_c01179{word-spacing:32.326320pt;}
.ws1_c01179{word-spacing:1515.065120pt;}
._b_c01179{margin-left:-33.027680pt;}
._8_c01179{margin-left:-31.242400pt;}
._3_c01179{margin-left:-29.520880pt;}
._4_c01179{margin-left:-24.356320pt;}
._0_c01179{margin-left:-6.886080pt;}
._5_c01179{margin-left:-5.164560pt;}
._a_c01179{margin-left:-3.506800pt;}
._2_c01179{margin-left:-1.657760pt;}
._6_c01179{width:1.721520pt;}
._1_c01179{width:5.667173pt;}
._7_c01179{width:7.794720pt;}
._9_c01179{width:28.519973pt;}
.fs0_c01179{font-size:63.760000pt;}
.y0_c01179{bottom:0.000000pt;}
.y37_c01179{bottom:67.292000pt;}
.y27_c01179{bottom:80.576000pt;}
.y36_c01179{bottom:91.194667pt;}
.y26_c01179{bottom:104.478667pt;}
.y35_c01179{bottom:115.097333pt;}
.y25_c01179{bottom:128.381333pt;}
.y34_c01179{bottom:139.001333pt;}
.y24_c01179{bottom:152.284000pt;}
.y23_c01179{bottom:176.186667pt;}
.y33_c01179{bottom:200.090667pt;}
.y22_c01179{bottom:213.373333pt;}
.y32_c01179{bottom:223.993333pt;}
.y21_c01179{bottom:237.277333pt;}
.y31_c01179{bottom:247.896000pt;}
.y20_c01179{bottom:261.180000pt;}
.y30_c01179{bottom:271.798667pt;}
.y1f_c01179{bottom:285.082667pt;}
.y2f_c01179{bottom:295.702667pt;}
.y1e_c01179{bottom:308.985333pt;}
.y2e_c01179{bottom:319.605333pt;}
.y1d_c01179{bottom:332.889333pt;}
.y2d_c01179{bottom:343.508000pt;}
.y1c_c01179{bottom:356.792000pt;}
.y2c_c01179{bottom:367.410667pt;}
.y1b_c01179{bottom:380.694667pt;}
.y2b_c01179{bottom:391.314667pt;}
.y1a_c01179{bottom:404.597333pt;}
.y2a_c01179{bottom:415.217333pt;}
.y19_c01179{bottom:428.500000pt;}
.y29_c01179{bottom:439.120000pt;}
.y18_c01179{bottom:452.404000pt;}
.y17_c01179{bottom:476.306667pt;}
.y16_c01179{bottom:500.209333pt;}
.y15_c01179{bottom:524.112000pt;}
.y14_c01179{bottom:548.016000pt;}
.y13_c01179{bottom:571.918667pt;}
.y12_c01179{bottom:595.821333pt;}
.y11_c01179{bottom:619.724000pt;}
.y10_c01179{bottom:643.628000pt;}
.yf_c01179{bottom:667.530667pt;}
.ye_c01179{bottom:691.433333pt;}
.yd_c01179{bottom:715.336000pt;}
.y28_c01179{bottom:739.238667pt;}
.yc_c01179{bottom:739.240000pt;}
.yb_c01179{bottom:763.142667pt;}
.ya_c01179{bottom:787.045333pt;}
.y9_c01179{bottom:810.948000pt;}
.y8_c01179{bottom:834.850667pt;}
.y7_c01179{bottom:858.754667pt;}
.y6_c01179{bottom:882.657333pt;}
.y5_c01179{bottom:906.560000pt;}
.y4_c01179{bottom:930.462667pt;}
.y3_c01179{bottom:954.366667pt;}
.y2_c01179{bottom:1013.880000pt;}
.y1_c01179{bottom:1017.909333pt;}
.h2_c01179{height:47.820000pt;}
.h3_c01179{height:63.937333pt;}
.h1_c01179{height:1123.333333pt;}
.h0_c01179{height:1123.653333pt;}
.w0_c01179{width:794.550667pt;}
.w1_c01179{width:794.666667pt;}
.x0_c01179{left:0.000000pt;}
.x1_c01179{left:112.298667pt;}
.x2_c01179{left:113.385333pt;}
.x5_c01179{left:133.757333pt;}
.x4_c01179{left:166.520000pt;}
.x6_c01179{left:220.757333pt;}
.x3_c01179{left:228.020000pt;}
.x7_c01179{left:403.917333pt;}
.x8_c01179{left:457.052000pt;}
}





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

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





.ff0_c01180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01180;src:url('chunks/assets/font_0c228445054ac76662b055a3.woff2')format("woff");}.ff1_c01180{font-family:ff1_c01180;line-height:1.001000;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_c01180{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_c01180{vertical-align:0.000000px;}
.v1_c01180{vertical-align:18.132000px;}
.ls0_c01180{letter-spacing:0.000000px;}
.sc__c01180{text-shadow:none;}
.sc0_c01180{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__c01180{-webkit-text-stroke:0px transparent;}
.sc0_c01180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01180{word-spacing:-0.071730px;}
.ws9_c01180{word-spacing:0.000000px;}
.ws5_c01180{word-spacing:19.725750px;}
.ws0_c01180{word-spacing:23.312250px;}
.ws8_c01180{word-spacing:23.383980px;}
.ws6_c01180{word-spacing:23.670900px;}
.ws4_c01180{word-spacing:31.561200px;}
.ws2_c01180{word-spacing:31.991580px;}
.ws7_c01180{word-spacing:32.088630px;}
.ws1_c01180{word-spacing:1704.448260px;}
._3_c01180{margin-left:-37.156140px;}
._5_c01180{margin-left:-33.210990px;}
._0_c01180{margin-left:-7.746840px;}
._8_c01180{margin-left:-5.810130px;}
._6_c01180{margin-left:-3.945150px;}
._4_c01180{margin-left:-1.936710px;}
._2_c01180{width:1.864980px;}
._1_c01180{width:6.375570px;}
._7_c01180{width:8.774850px;}
.fc0_c01180{color:rgb(0,0,0);}
.fs0_c01180{font-size:71.730000px;}
.y0_c01180{bottom:0.000000px;}
.y21_c01180{bottom:222.105000px;}
.y20_c01180{bottom:248.995500px;}
.y1f_c01180{bottom:275.886000px;}
.y1e_c01180{bottom:302.776500px;}
.y1d_c01180{bottom:329.668500px;}
.y1c_c01180{bottom:371.502000px;}
.y1b_c01180{bottom:413.337000px;}
.y1a_c01180{bottom:455.172000px;}
.y19_c01180{bottom:482.062500px;}
.y18_c01180{bottom:508.954500px;}
.y17_c01180{bottom:535.845000px;}
.y16_c01180{bottom:562.735500px;}
.y15_c01180{bottom:589.626000px;}
.y14_c01180{bottom:616.518000px;}
.y13_c01180{bottom:643.408500px;}
.y12_c01180{bottom:670.299000px;}
.y11_c01180{bottom:697.189500px;}
.y10_c01180{bottom:724.081500px;}
.yf_c01180{bottom:750.972000px;}
.ye_c01180{bottom:777.862500px;}
.yd_c01180{bottom:804.753000px;}
.yc_c01180{bottom:831.645000px;}
.yb_c01180{bottom:858.535500px;}
.ya_c01180{bottom:885.426000px;}
.y9_c01180{bottom:912.316500px;}
.y8_c01180{bottom:939.207000px;}
.y7_c01180{bottom:966.099000px;}
.y6_c01180{bottom:992.989500px;}
.y5_c01180{bottom:1019.880000px;}
.y4_c01180{bottom:1046.770500px;}
.y3_c01180{bottom:1073.662500px;}
.y2_c01180{bottom:1140.615000px;}
.y1_c01180{bottom:1145.148000px;}
.h2_c01180{height:53.797500px;}
.h3_c01180{height:71.929500px;}
.h1_c01180{height:1263.750000px;}
.h0_c01180{height:1264.110000px;}
.w0_c01180{width:893.869500px;}
.w1_c01180{width:894.000000px;}
.x0_c01180{left:0.000000px;}
.x1_c01180{left:126.336000px;}
.x2_c01180{left:127.558500px;}
.x4_c01180{left:187.335000px;}
.x6_c01180{left:203.863500px;}
.x3_c01180{left:256.522500px;}
.x5_c01180{left:270.913500px;}
@media print{
.v0_c01180{vertical-align:0.000000pt;}
.v1_c01180{vertical-align:16.117333pt;}
.ls0_c01180{letter-spacing:0.000000pt;}
.ws3_c01180{word-spacing:-0.063760pt;}
.ws9_c01180{word-spacing:0.000000pt;}
.ws5_c01180{word-spacing:17.534000pt;}
.ws0_c01180{word-spacing:20.722000pt;}
.ws8_c01180{word-spacing:20.785760pt;}
.ws6_c01180{word-spacing:21.040800pt;}
.ws4_c01180{word-spacing:28.054400pt;}
.ws2_c01180{word-spacing:28.436960pt;}
.ws7_c01180{word-spacing:28.523227pt;}
.ws1_c01180{word-spacing:1515.065120pt;}
._3_c01180{margin-left:-33.027680pt;}
._5_c01180{margin-left:-29.520880pt;}
._0_c01180{margin-left:-6.886080pt;}
._8_c01180{margin-left:-5.164560pt;}
._6_c01180{margin-left:-3.506800pt;}
._4_c01180{margin-left:-1.721520pt;}
._2_c01180{width:1.657760pt;}
._1_c01180{width:5.667173pt;}
._7_c01180{width:7.799867pt;}
.fs0_c01180{font-size:63.760000pt;}
.y0_c01180{bottom:0.000000pt;}
.y21_c01180{bottom:197.426667pt;}
.y20_c01180{bottom:221.329333pt;}
.y1f_c01180{bottom:245.232000pt;}
.y1e_c01180{bottom:269.134667pt;}
.y1d_c01180{bottom:293.038667pt;}
.y1c_c01180{bottom:330.224000pt;}
.y1b_c01180{bottom:367.410667pt;}
.y1a_c01180{bottom:404.597333pt;}
.y19_c01180{bottom:428.500000pt;}
.y18_c01180{bottom:452.404000pt;}
.y17_c01180{bottom:476.306667pt;}
.y16_c01180{bottom:500.209333pt;}
.y15_c01180{bottom:524.112000pt;}
.y14_c01180{bottom:548.016000pt;}
.y13_c01180{bottom:571.918667pt;}
.y12_c01180{bottom:595.821333pt;}
.y11_c01180{bottom:619.724000pt;}
.y10_c01180{bottom:643.628000pt;}
.yf_c01180{bottom:667.530667pt;}
.ye_c01180{bottom:691.433333pt;}
.yd_c01180{bottom:715.336000pt;}
.yc_c01180{bottom:739.240000pt;}
.yb_c01180{bottom:763.142667pt;}
.ya_c01180{bottom:787.045333pt;}
.y9_c01180{bottom:810.948000pt;}
.y8_c01180{bottom:834.850667pt;}
.y7_c01180{bottom:858.754667pt;}
.y6_c01180{bottom:882.657333pt;}
.y5_c01180{bottom:906.560000pt;}
.y4_c01180{bottom:930.462667pt;}
.y3_c01180{bottom:954.366667pt;}
.y2_c01180{bottom:1013.880000pt;}
.y1_c01180{bottom:1017.909333pt;}
.h2_c01180{height:47.820000pt;}
.h3_c01180{height:63.937333pt;}
.h1_c01180{height:1123.333333pt;}
.h0_c01180{height:1123.653333pt;}
.w0_c01180{width:794.550667pt;}
.w1_c01180{width:794.666667pt;}
.x0_c01180{left:0.000000pt;}
.x1_c01180{left:112.298667pt;}
.x2_c01180{left:113.385333pt;}
.x4_c01180{left:166.520000pt;}
.x6_c01180{left:181.212000pt;}
.x3_c01180{left:228.020000pt;}
.x5_c01180{left:240.812000pt;}
}





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

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





.ff0_c01181{font-family:sans-serif;visibility:hidden;}
.sc__c01181{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01181{-webkit-text-stroke:0px transparent;}
}
.y0_c01181{bottom:0.000000px;}
.h1_c01181{height:1263.750000px;}
.h0_c01181{height:1264.110000px;}
.w0_c01181{width:893.869500px;}
.w1_c01181{width:894.000000px;}
.x0_c01181{left:0.000000px;}
@media print{
.y0_c01181{bottom:0.000000pt;}
.h1_c01181{height:1123.333333pt;}
.h0_c01181{height:1123.653333pt;}
.w0_c01181{width:794.550667pt;}
.w1_c01181{width:794.666667pt;}
.x0_c01181{left:0.000000pt;}
}





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

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





.ff0_c01182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01182;src:url('chunks/assets/font_f15a4a3c14a5661d2fcbf65f.woff2')format("woff");}.ff1_c01182{font-family:ff1_c01182;line-height:0.902000;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_c01182;src:url('chunks/assets/font_0c153451fb4fc19102d70f55.woff2')format("woff");}.ff2_c01182{font-family:ff2_c01182;line-height:1.001000;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_c01182;src:url('chunks/assets/font_14d4c925e18b6bbbf63bf178.woff2')format("woff");}.ff3_c01182{font-family:ff3_c01182;line-height:1.001000;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_c01182{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_c01182{vertical-align:0.000000px;}
.ls0_c01182{letter-spacing:0.000000px;}
.sc__c01182{text-shadow:none;}
.sc0_c01182{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__c01182{-webkit-text-stroke:0px transparent;}
.sc0_c01182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01182{word-spacing:23.312250px;}
.ws0_c01182{word-spacing:30.987000px;}
.ws1_c01182{word-spacing:31.090290px;}
.ws4_c01182{word-spacing:32.106348px;}
.ws5_c01182{word-spacing:32.192424px;}
.ws2_c01182{word-spacing:46.367772px;}
._2_c01182{margin-left:-69.551658px;}
._5_c01182{margin-left:-48.374712px;}
._7_c01182{margin-left:-37.701288px;}
._6_c01182{margin-left:-10.742316px;}
._4_c01182{margin-left:-8.005068px;}
._0_c01182{margin-left:-2.685540px;}
._3_c01182{width:1.936710px;}
._1_c01182{width:3.057474px;}
.fc0_c01182{color:rgb(0,0,0);}
.fs2_c01182{font-size:71.730000px;}
.fs3_c01182{font-size:86.076000px;}
.fs0_c01182{font-size:103.290000px;}
.fs1_c01182{font-size:123.978000px;}
.y0_c01182{bottom:0.000000px;}
.y9_c01182{bottom:94.887000px;}
.y8_c01182{bottom:141.204000px;}
.y7_c01182{bottom:168.096000px;}
.y6_c01182{bottom:593.710500px;}
.y5_c01182{bottom:663.121500px;}
.y4_c01182{bottom:711.820500px;}
.y3_c01182{bottom:882.078000px;}
.y2_c01182{bottom:1032.862500px;}
.y1_c01182{bottom:1073.662500px;}
.h4_c01182{height:53.797500px;}
.h5_c01182{height:64.557000px;}
.h2_c01182{height:73.026030px;}
.h3_c01182{height:92.983500px;}
.h1_c01182{height:1263.750000px;}
.h0_c01182{height:1264.110000px;}
.w0_c01182{width:893.869500px;}
.w1_c01182{width:894.000000px;}
.x0_c01182{left:0.000000px;}
.x4_c01182{left:167.796000px;}
.x7_c01182{left:253.836000px;}
.x2_c01182{left:266.143500px;}
.x1_c01182{left:267.720000px;}
.x6_c01182{left:274.855500px;}
.x3_c01182{left:338.760000px;}
.x8_c01182{left:359.872500px;}
.x5_c01182{left:405.976500px;}
@media print{
.v0_c01182{vertical-align:0.000000pt;}
.ls0_c01182{letter-spacing:0.000000pt;}
.ws3_c01182{word-spacing:20.722000pt;}
.ws0_c01182{word-spacing:27.544000pt;}
.ws1_c01182{word-spacing:27.635813pt;}
.ws4_c01182{word-spacing:28.538976pt;}
.ws5_c01182{word-spacing:28.615488pt;}
.ws2_c01182{word-spacing:41.215797pt;}
._2_c01182{margin-left:-61.823696pt;}
._5_c01182{margin-left:-42.999744pt;}
._7_c01182{margin-left:-33.512256pt;}
._6_c01182{margin-left:-9.548725pt;}
._4_c01182{margin-left:-7.115616pt;}
._0_c01182{margin-left:-2.387147pt;}
._3_c01182{width:1.721520pt;}
._1_c01182{width:2.717755pt;}
.fs2_c01182{font-size:63.760000pt;}
.fs3_c01182{font-size:76.512000pt;}
.fs0_c01182{font-size:91.813333pt;}
.fs1_c01182{font-size:110.202667pt;}
.y0_c01182{bottom:0.000000pt;}
.y9_c01182{bottom:84.344000pt;}
.y8_c01182{bottom:125.514667pt;}
.y7_c01182{bottom:149.418667pt;}
.y6_c01182{bottom:527.742667pt;}
.y5_c01182{bottom:589.441333pt;}
.y4_c01182{bottom:632.729333pt;}
.y3_c01182{bottom:784.069333pt;}
.y2_c01182{bottom:918.100000pt;}
.y1_c01182{bottom:954.366667pt;}
.h4_c01182{height:47.820000pt;}
.h5_c01182{height:57.384000pt;}
.h2_c01182{height:64.912027pt;}
.h3_c01182{height:82.652000pt;}
.h1_c01182{height:1123.333333pt;}
.h0_c01182{height:1123.653333pt;}
.w0_c01182{width:794.550667pt;}
.w1_c01182{width:794.666667pt;}
.x0_c01182{left:0.000000pt;}
.x4_c01182{left:149.152000pt;}
.x7_c01182{left:225.632000pt;}
.x2_c01182{left:236.572000pt;}
.x1_c01182{left:237.973333pt;}
.x6_c01182{left:244.316000pt;}
.x3_c01182{left:301.120000pt;}
.x8_c01182{left:319.886667pt;}
.x5_c01182{left:360.868000pt;}
}





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

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





.ff0_c01183{font-family:sans-serif;visibility:hidden;}
.sc__c01183{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01183{-webkit-text-stroke:0px transparent;}
}
.y0_c01183{bottom:0.000000px;}
.h1_c01183{height:1263.750000px;}
.h0_c01183{height:1264.110000px;}
.w0_c01183{width:893.869500px;}
.w1_c01183{width:894.000000px;}
.x0_c01183{left:0.000000px;}
@media print{
.y0_c01183{bottom:0.000000pt;}
.h1_c01183{height:1123.333333pt;}
.h0_c01183{height:1123.653333pt;}
.w0_c01183{width:794.550667pt;}
.w1_c01183{width:794.666667pt;}
.x0_c01183{left:0.000000pt;}
}





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

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





.ff0_c01184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01184;src:url('chunks/assets/font_fa3a2dca744011cec3c9af94.woff2')format("woff");}.ff1_c01184{font-family:ff1_c01184;line-height:1.001000;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_c01184;src:url('chunks/assets/font_e7d5d8054d4e812adfa94ce6.woff2')format("woff");}.ff2_c01184{font-family:ff2_c01184;line-height:1.001000;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_c01184{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_c01184{vertical-align:0.000000px;}
.v1_c01184{vertical-align:35.940000px;}
.ls0_c01184{letter-spacing:0.000000px;}
.sc__c01184{text-shadow:none;}
.sc0_c01184{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__c01184{-webkit-text-stroke:0px transparent;}
.sc0_c01184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01184{word-spacing:-0.148722px;}
.ws2_c01184{word-spacing:-0.071730px;}
.ws3_c01184{word-spacing:0.000000px;}
.ws0_c01184{word-spacing:55.622028px;}
._3_c01184{margin-left:-13.979868px;}
._0_c01184{margin-left:-4.759104px;}
._1_c01184{width:4.610382px;}
._2_c01184{width:12.941082px;}
.fc0_c01184{color:rgb(0,0,0);}
.fs1_c01184{font-size:71.730000px;}
.fs0_c01184{font-size:148.722000px;}
.y0_c01184{bottom:0.000000px;}
.y3_c01184{bottom:40.083000px;}
.y2_c01184{bottom:645.669000px;}
.y1_c01184{bottom:731.193000px;}
.h4_c01184{height:53.797500px;}
.h2_c01184{height:111.541500px;}
.h3_c01184{height:147.481500px;}
.h1_c01184{height:1263.750000px;}
.h0_c01184{height:1264.110000px;}
.w0_c01184{width:893.869500px;}
.w1_c01184{width:894.000000px;}
.x0_c01184{left:0.000000px;}
.x2_c01184{left:173.158500px;}
.x3_c01184{left:233.319000px;}
.x1_c01184{left:349.551000px;}
.x4_c01184{left:433.765500px;}
@media print{
.v0_c01184{vertical-align:0.000000pt;}
.v1_c01184{vertical-align:31.946667pt;}
.ls0_c01184{letter-spacing:0.000000pt;}
.ws1_c01184{word-spacing:-0.132197pt;}
.ws2_c01184{word-spacing:-0.063760pt;}
.ws3_c01184{word-spacing:0.000000pt;}
.ws0_c01184{word-spacing:49.441803pt;}
._3_c01184{margin-left:-12.426549pt;}
._0_c01184{margin-left:-4.230315pt;}
._1_c01184{width:4.098117pt;}
._2_c01184{width:11.503184pt;}
.fs1_c01184{font-size:63.760000pt;}
.fs0_c01184{font-size:132.197333pt;}
.y0_c01184{bottom:0.000000pt;}
.y3_c01184{bottom:35.629333pt;}
.y2_c01184{bottom:573.928000pt;}
.y1_c01184{bottom:649.949333pt;}
.h4_c01184{height:47.820000pt;}
.h2_c01184{height:99.148000pt;}
.h3_c01184{height:131.094667pt;}
.h1_c01184{height:1123.333333pt;}
.h0_c01184{height:1123.653333pt;}
.w0_c01184{width:794.550667pt;}
.w1_c01184{width:794.666667pt;}
.x0_c01184{left:0.000000pt;}
.x2_c01184{left:153.918667pt;}
.x3_c01184{left:207.394667pt;}
.x1_c01184{left:310.712000pt;}
.x4_c01184{left:385.569333pt;}
}





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

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





.ff0_c01185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01185;src:url('chunks/assets/font_7b0bdf7d64114ed83a24daa6.woff2')format("woff");}.ff1_c01185{font-family:ff1_c01185;line-height:1.001000;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_c01185;src:url('chunks/assets/font_98cd39346c84d5a623ba9506.woff2')format("woff");}.ff2_c01185{font-family:ff2_c01185;line-height:1.001000;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_c01185;src:url('chunks/assets/font_16d2ffcfb57e2186e2d3ba95.woff2')format("woff");}.ff3_c01185{font-family:ff3_c01185;line-height:1.000000;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_c01185;src:url('chunks/assets/font_c49fecf33b4f5bcc8e717350.woff2')format("woff");}.ff4_c01185{font-family:ff4_c01185;line-height:1.000000;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_c01185;src:url('chunks/assets/font_51819c57f3ee81ca1073143b.woff2')format("woff");}.ff5_c01185{font-family:ff5_c01185;line-height:0.697000;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_c01185{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_c01185{vertical-align:0.000000px;}
.v1_c01185{vertical-align:23.748000px;}
.ls2_c01185{letter-spacing:0.000000px;}
.ls0_c01185{letter-spacing:2.999580px;}
.ls1_c01185{letter-spacing:3.005580px;}
.sc__c01185{text-shadow:none;}
.sc0_c01185{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__c01185{-webkit-text-stroke:0px transparent;}
.sc0_c01185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01185{word-spacing:-0.071730px;}
.wsd_c01185{word-spacing:-0.065454px;}
.ws1b_c01185{word-spacing:0.000000px;}
.ws18_c01185{word-spacing:16.101684px;}
.ws10_c01185{word-spacing:16.559862px;}
.ws8_c01185{word-spacing:17.410764px;}
.ws16_c01185{word-spacing:17.738034px;}
.ws15_c01185{word-spacing:17.803488px;}
.ws13_c01185{word-spacing:17.999850px;}
.ws6_c01185{word-spacing:18.785298px;}
.ws11_c01185{word-spacing:19.112568px;}
.ws19_c01185{word-spacing:19.570746px;}
.wsf_c01185{word-spacing:19.963470px;}
.wse_c01185{word-spacing:20.028924px;}
.ws17_c01185{word-spacing:20.225286px;}
.wsa_c01185{word-spacing:20.356194px;}
.ws1a_c01185{word-spacing:21.141642px;}
.ws9_c01185{word-spacing:21.730728px;}
.ws7_c01185{word-spacing:21.796182px;}
.wsc_c01185{word-spacing:23.105262px;}
.wsb_c01185{word-spacing:24.087072px;}
.ws14_c01185{word-spacing:24.152526px;}
.ws4_c01185{word-spacing:24.937974px;}
.ws2_c01185{word-spacing:25.003428px;}
.ws5_c01185{word-spacing:25.330698px;}
.ws12_c01185{word-spacing:25.723422px;}
.ws3_c01185{word-spacing:25.985238px;}
.ws1_c01185{word-spacing:26.827020px;}
._1_c01185{margin-left:-40.527450px;}
._6_c01185{margin-left:-34.956906px;}
._5_c01185{margin-left:-32.929098px;}
._8_c01185{margin-left:-30.894288px;}
._4_c01185{margin-left:-25.396152px;}
._3_c01185{margin-left:-7.330848px;}
._d_c01185{margin-left:-4.773672px;}
._a_c01185{margin-left:-3.594234px;}
._0_c01185{margin-left:-2.295360px;}
._c_c01185{margin-left:-1.153536px;}
._9_c01185{width:1.767258px;}
._2_c01185{width:2.823462px;}
._e_c01185{width:3.871992px;}
._b_c01185{width:16.887132px;}
._7_c01185{width:24.292374px;}
.fc0_c01185{color:rgb(0,0,0);}
.fs2_c01185{font-size:47.820000px;}
.fs1_c01185{font-size:65.454000px;}
.fs0_c01185{font-size:71.730000px;}
.y0_c01185{bottom:0.000000px;}
.y22_c01185{bottom:84.075000px;}
.y21_c01185{bottom:109.296000px;}
.y20_c01185{bottom:134.518500px;}
.y1f_c01185{bottom:159.739500px;}
.y1e_c01185{bottom:184.962000px;}
.y1d_c01185{bottom:228.117000px;}
.y1c_c01185{bottom:253.338000px;}
.y1b_c01185{bottom:278.560500px;}
.y1a_c01185{bottom:303.781500px;}
.y19_c01185{bottom:346.936500px;}
.y18_c01185{bottom:372.157500px;}
.y17_c01185{bottom:397.380000px;}
.y16_c01185{bottom:422.601000px;}
.y15_c01185{bottom:447.823500px;}
.y14_c01185{bottom:473.044500px;}
.y13_c01185{bottom:498.267000px;}
.y12_c01185{bottom:541.420500px;}
.y11_c01185{bottom:566.643000px;}
.y10_c01185{bottom:609.798000px;}
.yf_c01185{bottom:635.019000px;}
.ye_c01185{bottom:660.241500px;}
.yd_c01185{bottom:703.395000px;}
.yc_c01185{bottom:728.617500px;}
.yb_c01185{bottom:771.771000px;}
.ya_c01185{bottom:796.993500px;}
.y9_c01185{bottom:840.148500px;}
.y8_c01185{bottom:865.369500px;}
.y7_c01185{bottom:890.592000px;}
.y6_c01185{bottom:915.813000px;}
.y5_c01185{bottom:941.035500px;}
.y4_c01185{bottom:984.189000px;}
.y3_c01185{bottom:1009.411500px;}
.y2_c01185{bottom:1073.662500px;}
.y1_c01185{bottom:1140.615000px;}
.h3_c01185{height:49.090500px;}
.h2_c01185{height:53.797500px;}
.h4_c01185{height:56.074320px;}
.h5_c01185{height:56.080320px;}
.h1_c01185{height:1263.750000px;}
.h0_c01185{height:1264.110000px;}
.w0_c01185{width:893.869500px;}
.w1_c01185{width:894.000000px;}
.x0_c01185{left:0.000000px;}
.x4_c01185{left:127.558500px;}
.x3_c01185{left:159.838500px;}
.x2_c01185{left:441.891000px;}
.x1_c01185{left:739.972500px;}
@media print{
.v0_c01185{vertical-align:0.000000pt;}
.v1_c01185{vertical-align:21.109333pt;}
.ls2_c01185{letter-spacing:0.000000pt;}
.ls0_c01185{letter-spacing:2.666293pt;}
.ls1_c01185{letter-spacing:2.671627pt;}
.ws0_c01185{word-spacing:-0.063760pt;}
.wsd_c01185{word-spacing:-0.058181pt;}
.ws1b_c01185{word-spacing:0.000000pt;}
.ws18_c01185{word-spacing:14.312608pt;}
.ws10_c01185{word-spacing:14.719877pt;}
.ws8_c01185{word-spacing:15.476235pt;}
.ws16_c01185{word-spacing:15.767141pt;}
.ws15_c01185{word-spacing:15.825323pt;}
.ws13_c01185{word-spacing:15.999867pt;}
.ws6_c01185{word-spacing:16.698043pt;}
.ws11_c01185{word-spacing:16.988949pt;}
.ws19_c01185{word-spacing:17.396219pt;}
.wsf_c01185{word-spacing:17.745307pt;}
.wse_c01185{word-spacing:17.803488pt;}
.ws17_c01185{word-spacing:17.978032pt;}
.wsa_c01185{word-spacing:18.094395pt;}
.ws1a_c01185{word-spacing:18.792571pt;}
.ws9_c01185{word-spacing:19.316203pt;}
.ws7_c01185{word-spacing:19.374384pt;}
.wsc_c01185{word-spacing:20.538011pt;}
.wsb_c01185{word-spacing:21.410731pt;}
.ws14_c01185{word-spacing:21.468912pt;}
.ws4_c01185{word-spacing:22.167088pt;}
.ws2_c01185{word-spacing:22.225269pt;}
.ws5_c01185{word-spacing:22.516176pt;}
.ws12_c01185{word-spacing:22.865264pt;}
.ws3_c01185{word-spacing:23.097989pt;}
.ws1_c01185{word-spacing:23.846240pt;}
._1_c01185{margin-left:-36.024400pt;}
._6_c01185{margin-left:-31.072805pt;}
._5_c01185{margin-left:-29.270309pt;}
._8_c01185{margin-left:-27.461589pt;}
._4_c01185{margin-left:-22.574357pt;}
._3_c01185{margin-left:-6.516309pt;}
._d_c01185{margin-left:-4.243264pt;}
._a_c01185{margin-left:-3.194875pt;}
._0_c01185{margin-left:-2.040320pt;}
._c_c01185{margin-left:-1.025365pt;}
._9_c01185{width:1.570896pt;}
._2_c01185{width:2.509744pt;}
._e_c01185{width:3.441771pt;}
._b_c01185{width:15.010784pt;}
._7_c01185{width:21.593221pt;}
.fs2_c01185{font-size:42.506667pt;}
.fs1_c01185{font-size:58.181333pt;}
.fs0_c01185{font-size:63.760000pt;}
.y0_c01185{bottom:0.000000pt;}
.y22_c01185{bottom:74.733333pt;}
.y21_c01185{bottom:97.152000pt;}
.y20_c01185{bottom:119.572000pt;}
.y1f_c01185{bottom:141.990667pt;}
.y1e_c01185{bottom:164.410667pt;}
.y1d_c01185{bottom:202.770667pt;}
.y1c_c01185{bottom:225.189333pt;}
.y1b_c01185{bottom:247.609333pt;}
.y1a_c01185{bottom:270.028000pt;}
.y19_c01185{bottom:308.388000pt;}
.y18_c01185{bottom:330.806667pt;}
.y17_c01185{bottom:353.226667pt;}
.y16_c01185{bottom:375.645333pt;}
.y15_c01185{bottom:398.065333pt;}
.y14_c01185{bottom:420.484000pt;}
.y13_c01185{bottom:442.904000pt;}
.y12_c01185{bottom:481.262667pt;}
.y11_c01185{bottom:503.682667pt;}
.y10_c01185{bottom:542.042667pt;}
.yf_c01185{bottom:564.461333pt;}
.ye_c01185{bottom:586.881333pt;}
.yd_c01185{bottom:625.240000pt;}
.yc_c01185{bottom:647.660000pt;}
.yb_c01185{bottom:686.018667pt;}
.ya_c01185{bottom:708.438667pt;}
.y9_c01185{bottom:746.798667pt;}
.y8_c01185{bottom:769.217333pt;}
.y7_c01185{bottom:791.637333pt;}
.y6_c01185{bottom:814.056000pt;}
.y5_c01185{bottom:836.476000pt;}
.y4_c01185{bottom:874.834667pt;}
.y3_c01185{bottom:897.254667pt;}
.y2_c01185{bottom:954.366667pt;}
.y1_c01185{bottom:1013.880000pt;}
.h3_c01185{height:43.636000pt;}
.h2_c01185{height:47.820000pt;}
.h4_c01185{height:49.843840pt;}
.h5_c01185{height:49.849173pt;}
.h1_c01185{height:1123.333333pt;}
.h0_c01185{height:1123.653333pt;}
.w0_c01185{width:794.550667pt;}
.w1_c01185{width:794.666667pt;}
.x0_c01185{left:0.000000pt;}
.x4_c01185{left:113.385333pt;}
.x3_c01185{left:142.078667pt;}
.x2_c01185{left:392.792000pt;}
.x1_c01185{left:657.753333pt;}
}





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

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





.ff0_c01186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01186;src:url('chunks/assets/font_64a12498683e3fdf1fc54335.woff2')format("woff");}.ff1_c01186{font-family:ff1_c01186;line-height:1.001000;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_c01186;src:url('chunks/assets/font_bcce77c40d956ee48f2da1c0.woff2')format("woff");}.ff2_c01186{font-family:ff2_c01186;line-height:1.000000;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_c01186;src:url('chunks/assets/font_52f89340bb7a22f0aecc7312.woff2')format("woff");}.ff3_c01186{font-family:ff3_c01186;line-height:0.697000;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_c01186{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_c01186{vertical-align:0.000000px;}
.v1_c01186{vertical-align:23.748000px;}
.ls2_c01186{letter-spacing:0.000000px;}
.ls1_c01186{letter-spacing:2.999580px;}
.ls0_c01186{letter-spacing:3.005580px;}
.sc__c01186{text-shadow:none;}
.sc0_c01186{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__c01186{-webkit-text-stroke:0px transparent;}
.sc0_c01186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01186{word-spacing:-0.071730px;}
.ws17_c01186{word-spacing:0.000000px;}
.ws3_c01186{word-spacing:14.596242px;}
.wsb_c01186{word-spacing:15.839868px;}
.wsc_c01186{word-spacing:16.036230px;}
.ws6_c01186{word-spacing:16.494408px;}
.ws1_c01186{word-spacing:17.410764px;}
.wsa_c01186{word-spacing:19.112568px;}
.ws4_c01186{word-spacing:20.159832px;}
.ws10_c01186{word-spacing:20.618010px;}
.wsf_c01186{word-spacing:20.683464px;}
.ws13_c01186{word-spacing:20.814372px;}
.ws7_c01186{word-spacing:21.010734px;}
.ws5_c01186{word-spacing:21.403458px;}
.ws12_c01186{word-spacing:21.599820px;}
.ws9_c01186{word-spacing:21.665274px;}
.ws2_c01186{word-spacing:21.730728px;}
.ws16_c01186{word-spacing:21.796182px;}
.ws11_c01186{word-spacing:21.861636px;}
.ws15_c01186{word-spacing:22.450722px;}
.ws8_c01186{word-spacing:26.181600px;}
.ws14_c01186{word-spacing:26.247054px;}
.wsd_c01186{word-spacing:26.377962px;}
.wse_c01186{word-spacing:27.687042px;}
._6_c01186{margin-left:-34.494258px;}
._3_c01186{margin-left:-32.727000px;}
._a_c01186{margin-left:-30.959742px;}
._1_c01186{margin-left:-25.396152px;}
._0_c01186{margin-left:-7.330848px;}
._8_c01186{margin-left:-5.379966px;}
._9_c01186{margin-left:-3.154530px;}
._4_c01186{margin-left:-1.767258px;}
._2_c01186{width:1.518180px;}
._7_c01186{width:3.599970px;}
._5_c01186{width:21.861636px;}
.fc0_c01186{color:rgb(0,0,0);}
.fs2_c01186{font-size:47.820000px;}
.fs1_c01186{font-size:65.454000px;}
.fs0_c01186{font-size:71.730000px;}
.y0_c01186{bottom:0.000000px;}
.y22_c01186{bottom:87.238500px;}
.y21_c01186{bottom:112.459500px;}
.y20_c01186{bottom:155.614500px;}
.y1f_c01186{bottom:180.835500px;}
.y1e_c01186{bottom:206.058000px;}
.y1d_c01186{bottom:249.213000px;}
.y1c_c01186{bottom:274.434000px;}
.y1b_c01186{bottom:299.656500px;}
.y1a_c01186{bottom:342.810000px;}
.y19_c01186{bottom:368.032500px;}
.y18_c01186{bottom:393.253500px;}
.y17_c01186{bottom:418.476000px;}
.y16_c01186{bottom:461.629500px;}
.y15_c01186{bottom:486.852000px;}
.y14_c01186{bottom:530.007000px;}
.y13_c01186{bottom:555.228000px;}
.y12_c01186{bottom:580.450500px;}
.y11_c01186{bottom:605.671500px;}
.y10_c01186{bottom:630.894000px;}
.yf_c01186{bottom:674.047500px;}
.ye_c01186{bottom:699.270000px;}
.yd_c01186{bottom:742.425000px;}
.yc_c01186{bottom:767.646000px;}
.yb_c01186{bottom:792.868500px;}
.ya_c01186{bottom:818.089500px;}
.y9_c01186{bottom:861.244500px;}
.y8_c01186{bottom:886.465500px;}
.y7_c01186{bottom:929.620500px;}
.y6_c01186{bottom:954.841500px;}
.y5_c01186{bottom:980.064000px;}
.y4_c01186{bottom:1005.285000px;}
.y3_c01186{bottom:1048.440000px;}
.y2_c01186{bottom:1073.662500px;}
.y1_c01186{bottom:1140.615000px;}
.h4_c01186{height:49.090500px;}
.h2_c01186{height:53.797500px;}
.h3_c01186{height:56.074320px;}
.h5_c01186{height:56.080320px;}
.h1_c01186{height:1263.750000px;}
.h0_c01186{height:1264.110000px;}
.w0_c01186{width:893.869500px;}
.w1_c01186{width:894.000000px;}
.x0_c01186{left:0.000000px;}
.x3_c01186{left:127.558500px;}
.x2_c01186{left:159.838500px;}
.x1_c01186{left:739.972500px;}
@media print{
.v0_c01186{vertical-align:0.000000pt;}
.v1_c01186{vertical-align:21.109333pt;}
.ls2_c01186{letter-spacing:0.000000pt;}
.ls1_c01186{letter-spacing:2.666293pt;}
.ls0_c01186{letter-spacing:2.671627pt;}
.ws0_c01186{word-spacing:-0.063760pt;}
.ws17_c01186{word-spacing:0.000000pt;}
.ws3_c01186{word-spacing:12.974437pt;}
.wsb_c01186{word-spacing:14.079883pt;}
.wsc_c01186{word-spacing:14.254427pt;}
.ws6_c01186{word-spacing:14.661696pt;}
.ws1_c01186{word-spacing:15.476235pt;}
.wsa_c01186{word-spacing:16.988949pt;}
.ws4_c01186{word-spacing:17.919851pt;}
.ws10_c01186{word-spacing:18.327120pt;}
.wsf_c01186{word-spacing:18.385301pt;}
.ws13_c01186{word-spacing:18.501664pt;}
.ws7_c01186{word-spacing:18.676208pt;}
.ws5_c01186{word-spacing:19.025296pt;}
.ws12_c01186{word-spacing:19.199840pt;}
.ws9_c01186{word-spacing:19.258021pt;}
.ws2_c01186{word-spacing:19.316203pt;}
.ws16_c01186{word-spacing:19.374384pt;}
.ws11_c01186{word-spacing:19.432565pt;}
.ws15_c01186{word-spacing:19.956197pt;}
.ws8_c01186{word-spacing:23.272533pt;}
.ws14_c01186{word-spacing:23.330715pt;}
.wsd_c01186{word-spacing:23.447077pt;}
.wse_c01186{word-spacing:24.610704pt;}
._6_c01186{margin-left:-30.661563pt;}
._3_c01186{margin-left:-29.090667pt;}
._a_c01186{margin-left:-27.519771pt;}
._1_c01186{margin-left:-22.574357pt;}
._0_c01186{margin-left:-6.516309pt;}
._8_c01186{margin-left:-4.782192pt;}
._9_c01186{margin-left:-2.804027pt;}
._4_c01186{margin-left:-1.570896pt;}
._2_c01186{width:1.349493pt;}
._7_c01186{width:3.199973pt;}
._5_c01186{width:19.432565pt;}
.fs2_c01186{font-size:42.506667pt;}
.fs1_c01186{font-size:58.181333pt;}
.fs0_c01186{font-size:63.760000pt;}
.y0_c01186{bottom:0.000000pt;}
.y22_c01186{bottom:77.545333pt;}
.y21_c01186{bottom:99.964000pt;}
.y20_c01186{bottom:138.324000pt;}
.y1f_c01186{bottom:160.742667pt;}
.y1e_c01186{bottom:183.162667pt;}
.y1d_c01186{bottom:221.522667pt;}
.y1c_c01186{bottom:243.941333pt;}
.y1b_c01186{bottom:266.361333pt;}
.y1a_c01186{bottom:304.720000pt;}
.y19_c01186{bottom:327.140000pt;}
.y18_c01186{bottom:349.558667pt;}
.y17_c01186{bottom:371.978667pt;}
.y16_c01186{bottom:410.337333pt;}
.y15_c01186{bottom:432.757333pt;}
.y14_c01186{bottom:471.117333pt;}
.y13_c01186{bottom:493.536000pt;}
.y12_c01186{bottom:515.956000pt;}
.y11_c01186{bottom:538.374667pt;}
.y10_c01186{bottom:560.794667pt;}
.yf_c01186{bottom:599.153333pt;}
.ye_c01186{bottom:621.573333pt;}
.yd_c01186{bottom:659.933333pt;}
.yc_c01186{bottom:682.352000pt;}
.yb_c01186{bottom:704.772000pt;}
.ya_c01186{bottom:727.190667pt;}
.y9_c01186{bottom:765.550667pt;}
.y8_c01186{bottom:787.969333pt;}
.y7_c01186{bottom:826.329333pt;}
.y6_c01186{bottom:848.748000pt;}
.y5_c01186{bottom:871.168000pt;}
.y4_c01186{bottom:893.586667pt;}
.y3_c01186{bottom:931.946667pt;}
.y2_c01186{bottom:954.366667pt;}
.y1_c01186{bottom:1013.880000pt;}
.h4_c01186{height:43.636000pt;}
.h2_c01186{height:47.820000pt;}
.h3_c01186{height:49.843840pt;}
.h5_c01186{height:49.849173pt;}
.h1_c01186{height:1123.333333pt;}
.h0_c01186{height:1123.653333pt;}
.w0_c01186{width:794.550667pt;}
.w1_c01186{width:794.666667pt;}
.x0_c01186{left:0.000000pt;}
.x3_c01186{left:113.385333pt;}
.x2_c01186{left:142.078667pt;}
.x1_c01186{left:657.753333pt;}
}





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

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





.ff0_c01187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01187;src:url('chunks/assets/font_e40dec815abd407e727277a5.woff2')format("woff");}.ff1_c01187{font-family:ff1_c01187;line-height:1.001000;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_c01187;src:url('chunks/assets/font_cc3775cea586061894cad139.woff2')format("woff");}.ff2_c01187{font-family:ff2_c01187;line-height:1.000000;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_c01187;src:url('chunks/assets/font_cbd920f57c935aa83b8a1e5c.woff2')format("woff");}.ff3_c01187{font-family:ff3_c01187;line-height:0.697000;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_c01187;src:url('chunks/assets/font_1ce352f1562bba6553484045.woff2')format("woff");}.ff4_c01187{font-family:ff4_c01187;line-height:1.000000;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_c01187{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_c01187{vertical-align:0.000000px;}
.v1_c01187{vertical-align:23.748000px;}
.ls4_c01187{letter-spacing:0.000000px;}
.ls0_c01187{letter-spacing:0.001500px;}
.ls2_c01187{letter-spacing:0.020568px;}
.ls1_c01187{letter-spacing:24.815580px;}
.ls3_c01187{letter-spacing:24.821580px;}
.sc__c01187{text-shadow:none;}
.sc0_c01187{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__c01187{-webkit-text-stroke:0px transparent;}
.sc0_c01187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01187{word-spacing:-0.071730px;}
.ws1c_c01187{word-spacing:0.000000px;}
.ws7_c01187{word-spacing:15.774414px;}
.ws12_c01187{word-spacing:17.345310px;}
.wsc_c01187{word-spacing:17.934396px;}
.ws18_c01187{word-spacing:18.261666px;}
.wsf_c01187{word-spacing:18.392574px;}
.wsd_c01187{word-spacing:18.588936px;}
.ws5_c01187{word-spacing:19.439838px;}
.ws8_c01187{word-spacing:19.636200px;}
.wsb_c01187{word-spacing:19.701654px;}
.ws16_c01187{word-spacing:19.767108px;}
.ws1_c01187{word-spacing:21.730728px;}
.ws9_c01187{word-spacing:21.796182px;}
.wse_c01187{word-spacing:22.057998px;}
.ws10_c01187{word-spacing:22.777992px;}
.ws13_c01187{word-spacing:22.908900px;}
.ws15_c01187{word-spacing:22.974354px;}
.ws11_c01187{word-spacing:23.563440px;}
.ws17_c01187{word-spacing:24.348888px;}
.ws1b_c01187{word-spacing:24.610704px;}
.ws19_c01187{word-spacing:24.937974px;}
.ws3_c01187{word-spacing:25.003428px;}
.ws6_c01187{word-spacing:25.396152px;}
.ws14_c01187{word-spacing:25.788876px;}
.ws4_c01187{word-spacing:26.247054px;}
.wsa_c01187{word-spacing:28.734306px;}
.ws1a_c01187{word-spacing:30.174294px;}
.ws2_c01187{word-spacing:30.567018px;}
._5_c01187{margin-left:-37.636050px;}
._8_c01187{margin-left:-34.625166px;}
._7_c01187{margin-left:-33.119724px;}
._9_c01187{margin-left:-31.025196px;}
._3_c01187{margin-left:-25.396152px;}
._2_c01187{margin-left:-7.265394px;}
._0_c01187{margin-left:-5.432682px;}
._4_c01187{margin-left:-3.665424px;}
._1_c01187{margin-left:-1.832712px;}
._6_c01187{width:2.029074px;}
._b_c01187{width:3.534516px;}
._a_c01187{width:16.625316px;}
._c_c01187{width:22.516176px;}
._d_c01187{width:26.639778px;}
.fc0_c01187{color:rgb(0,0,0);}
.fs2_c01187{font-size:47.820000px;}
.fs1_c01187{font-size:65.454000px;}
.fs0_c01187{font-size:71.730000px;}
.y0_c01187{bottom:0.000000px;}
.y25_c01187{bottom:80.314500px;}
.y24_c01187{bottom:105.537000px;}
.y23_c01187{bottom:130.758000px;}
.y22_c01187{bottom:155.980500px;}
.y21_c01187{bottom:181.201500px;}
.y20_c01187{bottom:206.424000px;}
.y1f_c01187{bottom:231.645000px;}
.y1e_c01187{bottom:256.867500px;}
.y1d_c01187{bottom:282.088500px;}
.y1c_c01187{bottom:307.311000px;}
.y1b_c01187{bottom:332.532000px;}
.y1a_c01187{bottom:357.754500px;}
.y19_c01187{bottom:382.975500px;}
.y18_c01187{bottom:408.198000px;}
.y17_c01187{bottom:433.419000px;}
.y16_c01187{bottom:458.641500px;}
.y15_c01187{bottom:483.862500px;}
.y14_c01187{bottom:509.085000px;}
.y13_c01187{bottom:534.306000px;}
.y12_c01187{bottom:559.528500px;}
.y11_c01187{bottom:584.749500px;}
.y10_c01187{bottom:609.972000px;}
.yf_c01187{bottom:635.193000px;}
.ye_c01187{bottom:660.415500px;}
.yd_c01187{bottom:685.638000px;}
.yc_c01187{bottom:710.859000px;}
.yb_c01187{bottom:736.081500px;}
.ya_c01187{bottom:761.302500px;}
.y9_c01187{bottom:786.525000px;}
.y8_c01187{bottom:811.746000px;}
.y7_c01187{bottom:836.968500px;}
.y6_c01187{bottom:880.122000px;}
.y5_c01187{bottom:905.344500px;}
.y4_c01187{bottom:930.565500px;}
.y3_c01187{bottom:993.147000px;}
.y2_c01187{bottom:1073.662500px;}
.y1_c01187{bottom:1140.615000px;}
.h4_c01187{height:49.090500px;}
.h2_c01187{height:53.797500px;}
.h3_c01187{height:56.074320px;}
.h1_c01187{height:1263.750000px;}
.h0_c01187{height:1264.110000px;}
.w0_c01187{width:893.869500px;}
.w1_c01187{width:894.000000px;}
.x0_c01187{left:0.000000px;}
.x4_c01187{left:127.558500px;}
.x2_c01187{left:159.838500px;}
.x3_c01187{left:442.230000px;}
.x1_c01187{left:739.972500px;}
@media print{
.v0_c01187{vertical-align:0.000000pt;}
.v1_c01187{vertical-align:21.109333pt;}
.ls4_c01187{letter-spacing:0.000000pt;}
.ls0_c01187{letter-spacing:0.001333pt;}
.ls2_c01187{letter-spacing:0.018283pt;}
.ls1_c01187{letter-spacing:22.058293pt;}
.ls3_c01187{letter-spacing:22.063627pt;}
.ws0_c01187{word-spacing:-0.063760pt;}
.ws1c_c01187{word-spacing:0.000000pt;}
.ws7_c01187{word-spacing:14.021701pt;}
.ws12_c01187{word-spacing:15.418053pt;}
.wsc_c01187{word-spacing:15.941685pt;}
.ws18_c01187{word-spacing:16.232592pt;}
.wsf_c01187{word-spacing:16.348955pt;}
.wsd_c01187{word-spacing:16.523499pt;}
.ws5_c01187{word-spacing:17.279856pt;}
.ws8_c01187{word-spacing:17.454400pt;}
.wsb_c01187{word-spacing:17.512581pt;}
.ws16_c01187{word-spacing:17.570763pt;}
.ws1_c01187{word-spacing:19.316203pt;}
.ws9_c01187{word-spacing:19.374384pt;}
.wse_c01187{word-spacing:19.607109pt;}
.ws10_c01187{word-spacing:20.247104pt;}
.ws13_c01187{word-spacing:20.363467pt;}
.ws15_c01187{word-spacing:20.421648pt;}
.ws11_c01187{word-spacing:20.945280pt;}
.ws17_c01187{word-spacing:21.643456pt;}
.ws1b_c01187{word-spacing:21.876181pt;}
.ws19_c01187{word-spacing:22.167088pt;}
.ws3_c01187{word-spacing:22.225269pt;}
.ws6_c01187{word-spacing:22.574357pt;}
.ws14_c01187{word-spacing:22.923445pt;}
.ws4_c01187{word-spacing:23.330715pt;}
.wsa_c01187{word-spacing:25.541605pt;}
.ws1a_c01187{word-spacing:26.821595pt;}
.ws2_c01187{word-spacing:27.170683pt;}
._5_c01187{margin-left:-33.454267pt;}
._8_c01187{margin-left:-30.777925pt;}
._7_c01187{margin-left:-29.439755pt;}
._9_c01187{margin-left:-27.577952pt;}
._3_c01187{margin-left:-22.574357pt;}
._2_c01187{margin-left:-6.458128pt;}
._0_c01187{margin-left:-4.829051pt;}
._4_c01187{margin-left:-3.258155pt;}
._1_c01187{margin-left:-1.629077pt;}
._6_c01187{width:1.803621pt;}
._b_c01187{width:3.141792pt;}
._a_c01187{width:14.778059pt;}
._c_c01187{width:20.014379pt;}
._d_c01187{width:23.679803pt;}
.fs2_c01187{font-size:42.506667pt;}
.fs1_c01187{font-size:58.181333pt;}
.fs0_c01187{font-size:63.760000pt;}
.y0_c01187{bottom:0.000000pt;}
.y25_c01187{bottom:71.390667pt;}
.y24_c01187{bottom:93.810667pt;}
.y23_c01187{bottom:116.229333pt;}
.y22_c01187{bottom:138.649333pt;}
.y21_c01187{bottom:161.068000pt;}
.y20_c01187{bottom:183.488000pt;}
.y1f_c01187{bottom:205.906667pt;}
.y1e_c01187{bottom:228.326667pt;}
.y1d_c01187{bottom:250.745333pt;}
.y1c_c01187{bottom:273.165333pt;}
.y1b_c01187{bottom:295.584000pt;}
.y1a_c01187{bottom:318.004000pt;}
.y19_c01187{bottom:340.422667pt;}
.y18_c01187{bottom:362.842667pt;}
.y17_c01187{bottom:385.261333pt;}
.y16_c01187{bottom:407.681333pt;}
.y15_c01187{bottom:430.100000pt;}
.y14_c01187{bottom:452.520000pt;}
.y13_c01187{bottom:474.938667pt;}
.y12_c01187{bottom:497.358667pt;}
.y11_c01187{bottom:519.777333pt;}
.y10_c01187{bottom:542.197333pt;}
.yf_c01187{bottom:564.616000pt;}
.ye_c01187{bottom:587.036000pt;}
.yd_c01187{bottom:609.456000pt;}
.yc_c01187{bottom:631.874667pt;}
.yb_c01187{bottom:654.294667pt;}
.ya_c01187{bottom:676.713333pt;}
.y9_c01187{bottom:699.133333pt;}
.y8_c01187{bottom:721.552000pt;}
.y7_c01187{bottom:743.972000pt;}
.y6_c01187{bottom:782.330667pt;}
.y5_c01187{bottom:804.750667pt;}
.y4_c01187{bottom:827.169333pt;}
.y3_c01187{bottom:882.797333pt;}
.y2_c01187{bottom:954.366667pt;}
.y1_c01187{bottom:1013.880000pt;}
.h4_c01187{height:43.636000pt;}
.h2_c01187{height:47.820000pt;}
.h3_c01187{height:49.843840pt;}
.h1_c01187{height:1123.333333pt;}
.h0_c01187{height:1123.653333pt;}
.w0_c01187{width:794.550667pt;}
.w1_c01187{width:794.666667pt;}
.x0_c01187{left:0.000000pt;}
.x4_c01187{left:113.385333pt;}
.x2_c01187{left:142.078667pt;}
.x3_c01187{left:393.093333pt;}
.x1_c01187{left:657.753333pt;}
}





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

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





.ff0_c01188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01188;src:url('chunks/assets/font_13d2936bfbaab4f1790431ef.woff2')format("woff");}.ff1_c01188{font-family:ff1_c01188;line-height:1.001000;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_c01188;src:url('chunks/assets/font_3a0fef2f2e19218157147706.woff2')format("woff");}.ff2_c01188{font-family:ff2_c01188;line-height:1.000000;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_c01188{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_c01188{vertical-align:0.000000px;}
.ls0_c01188{letter-spacing:0.000000px;}
.sc__c01188{text-shadow:none;}
.sc0_c01188{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__c01188{-webkit-text-stroke:0px transparent;}
.sc0_c01188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01188{word-spacing:-0.071730px;}
.ws17_c01188{word-spacing:16.559862px;}
.ws21_c01188{word-spacing:17.214402px;}
.ws14_c01188{word-spacing:18.130758px;}
.wsc_c01188{word-spacing:18.392574px;}
.ws16_c01188{word-spacing:18.458028px;}
.wsf_c01188{word-spacing:18.981660px;}
.ws19_c01188{word-spacing:19.308930px;}
.ws20_c01188{word-spacing:19.439838px;}
.ws13_c01188{word-spacing:20.487102px;}
.ws18_c01188{word-spacing:20.814372px;}
.ws1e_c01188{word-spacing:21.010734px;}
.ws12_c01188{word-spacing:21.534366px;}
.ws9_c01188{word-spacing:21.730728px;}
.ws8_c01188{word-spacing:21.796182px;}
.ws1a_c01188{word-spacing:21.927090px;}
.ws5_c01188{word-spacing:22.516176px;}
.ws3_c01188{word-spacing:22.843446px;}
.ws4_c01188{word-spacing:23.956164px;}
.wsd_c01188{word-spacing:24.021618px;}
.ws7_c01188{word-spacing:24.152526px;}
.ws15_c01188{word-spacing:24.545250px;}
.ws1b_c01188{word-spacing:24.937974px;}
.ws1_c01188{word-spacing:27.228864px;}
.ws1f_c01188{word-spacing:27.621588px;}
.ws11_c01188{word-spacing:27.948858px;}
.wsa_c01188{word-spacing:28.145220px;}
.ws6_c01188{word-spacing:28.341582px;}
.ws10_c01188{word-spacing:29.454300px;}
.wse_c01188{word-spacing:30.043386px;}
.ws1d_c01188{word-spacing:30.697926px;}
.wsb_c01188{word-spacing:31.025196px;}
.ws2_c01188{word-spacing:31.221558px;}
.ws1c_c01188{word-spacing:31.548828px;}
._7_c01188{margin-left:-34.166988px;}
._3_c01188{margin-left:-32.530638px;}
._2_c01188{margin-left:-30.894288px;}
._6_c01188{margin-left:-25.461606px;}
._5_c01188{margin-left:-7.330848px;}
._9_c01188{margin-left:-5.432682px;}
._8_c01188{margin-left:-3.665424px;}
._1_c01188{margin-left:-2.029074px;}
._0_c01188{width:1.570896px;}
._4_c01188{width:3.469062px;}
._a_c01188{width:10.996272px;}
.fc0_c01188{color:rgb(0,0,0);}
.fs1_c01188{font-size:65.454000px;}
.fs0_c01188{font-size:71.730000px;}
.y0_c01188{bottom:0.000000px;}
.y27_c01188{bottom:71.973000px;}
.y26_c01188{bottom:114.315000px;}
.y25_c01188{bottom:139.537500px;}
.y24_c01188{bottom:164.758500px;}
.y23_c01188{bottom:189.981000px;}
.y22_c01188{bottom:215.202000px;}
.y21_c01188{bottom:240.424500px;}
.y20_c01188{bottom:265.645500px;}
.y1f_c01188{bottom:290.868000px;}
.y1e_c01188{bottom:316.089000px;}
.y1d_c01188{bottom:341.311500px;}
.y1c_c01188{bottom:366.532500px;}
.y1b_c01188{bottom:391.755000px;}
.y1a_c01188{bottom:416.976000px;}
.y19_c01188{bottom:442.198500px;}
.y18_c01188{bottom:467.419500px;}
.y17_c01188{bottom:492.642000px;}
.y16_c01188{bottom:517.863000px;}
.y15_c01188{bottom:543.085500px;}
.y14_c01188{bottom:568.306500px;}
.y13_c01188{bottom:593.529000px;}
.y12_c01188{bottom:618.750000px;}
.y11_c01188{bottom:643.972500px;}
.y10_c01188{bottom:669.193500px;}
.yf_c01188{bottom:694.416000px;}
.ye_c01188{bottom:719.638500px;}
.yd_c01188{bottom:744.859500px;}
.yc_c01188{bottom:770.082000px;}
.yb_c01188{bottom:795.303000px;}
.ya_c01188{bottom:854.767500px;}
.y9_c01188{bottom:897.109500px;}
.y8_c01188{bottom:922.332000px;}
.y7_c01188{bottom:947.553000px;}
.y6_c01188{bottom:972.775500px;}
.y5_c01188{bottom:997.996500px;}
.y4_c01188{bottom:1023.219000px;}
.y3_c01188{bottom:1048.440000px;}
.y2_c01188{bottom:1073.662500px;}
.y1_c01188{bottom:1140.615000px;}
.h3_c01188{height:49.090500px;}
.h2_c01188{height:53.797500px;}
.h1_c01188{height:1263.750000px;}
.h0_c01188{height:1264.110000px;}
.w0_c01188{width:893.869500px;}
.w1_c01188{width:894.000000px;}
.x0_c01188{left:0.000000px;}
.x2_c01188{left:127.558500px;}
.x3_c01188{left:159.838500px;}
.x1_c01188{left:739.972500px;}
@media print{
.v0_c01188{vertical-align:0.000000pt;}
.ls0_c01188{letter-spacing:0.000000pt;}
.ws0_c01188{word-spacing:-0.063760pt;}
.ws17_c01188{word-spacing:14.719877pt;}
.ws21_c01188{word-spacing:15.301691pt;}
.ws14_c01188{word-spacing:16.116229pt;}
.wsc_c01188{word-spacing:16.348955pt;}
.ws16_c01188{word-spacing:16.407136pt;}
.wsf_c01188{word-spacing:16.872587pt;}
.ws19_c01188{word-spacing:17.163493pt;}
.ws20_c01188{word-spacing:17.279856pt;}
.ws13_c01188{word-spacing:18.210757pt;}
.ws18_c01188{word-spacing:18.501664pt;}
.ws1e_c01188{word-spacing:18.676208pt;}
.ws12_c01188{word-spacing:19.141659pt;}
.ws9_c01188{word-spacing:19.316203pt;}
.ws8_c01188{word-spacing:19.374384pt;}
.ws1a_c01188{word-spacing:19.490747pt;}
.ws5_c01188{word-spacing:20.014379pt;}
.ws3_c01188{word-spacing:20.305285pt;}
.ws4_c01188{word-spacing:21.294368pt;}
.wsd_c01188{word-spacing:21.352549pt;}
.ws7_c01188{word-spacing:21.468912pt;}
.ws15_c01188{word-spacing:21.818000pt;}
.ws1b_c01188{word-spacing:22.167088pt;}
.ws1_c01188{word-spacing:24.203435pt;}
.ws1f_c01188{word-spacing:24.552523pt;}
.ws11_c01188{word-spacing:24.843429pt;}
.wsa_c01188{word-spacing:25.017973pt;}
.ws6_c01188{word-spacing:25.192517pt;}
.ws10_c01188{word-spacing:26.181600pt;}
.wse_c01188{word-spacing:26.705232pt;}
.ws1d_c01188{word-spacing:27.287045pt;}
.wsb_c01188{word-spacing:27.577952pt;}
.ws2_c01188{word-spacing:27.752496pt;}
.ws1c_c01188{word-spacing:28.043403pt;}
._7_c01188{margin-left:-30.370656pt;}
._3_c01188{margin-left:-28.916123pt;}
._2_c01188{margin-left:-27.461589pt;}
._6_c01188{margin-left:-22.632539pt;}
._5_c01188{margin-left:-6.516309pt;}
._9_c01188{margin-left:-4.829051pt;}
._8_c01188{margin-left:-3.258155pt;}
._1_c01188{margin-left:-1.803621pt;}
._0_c01188{width:1.396352pt;}
._4_c01188{width:3.083611pt;}
._a_c01188{width:9.774464pt;}
.fs1_c01188{font-size:58.181333pt;}
.fs0_c01188{font-size:63.760000pt;}
.y0_c01188{bottom:0.000000pt;}
.y27_c01188{bottom:63.976000pt;}
.y26_c01188{bottom:101.613333pt;}
.y25_c01188{bottom:124.033333pt;}
.y24_c01188{bottom:146.452000pt;}
.y23_c01188{bottom:168.872000pt;}
.y22_c01188{bottom:191.290667pt;}
.y21_c01188{bottom:213.710667pt;}
.y20_c01188{bottom:236.129333pt;}
.y1f_c01188{bottom:258.549333pt;}
.y1e_c01188{bottom:280.968000pt;}
.y1d_c01188{bottom:303.388000pt;}
.y1c_c01188{bottom:325.806667pt;}
.y1b_c01188{bottom:348.226667pt;}
.y1a_c01188{bottom:370.645333pt;}
.y19_c01188{bottom:393.065333pt;}
.y18_c01188{bottom:415.484000pt;}
.y17_c01188{bottom:437.904000pt;}
.y16_c01188{bottom:460.322667pt;}
.y15_c01188{bottom:482.742667pt;}
.y14_c01188{bottom:505.161333pt;}
.y13_c01188{bottom:527.581333pt;}
.y12_c01188{bottom:550.000000pt;}
.y11_c01188{bottom:572.420000pt;}
.y10_c01188{bottom:594.838667pt;}
.yf_c01188{bottom:617.258667pt;}
.ye_c01188{bottom:639.678667pt;}
.yd_c01188{bottom:662.097333pt;}
.yc_c01188{bottom:684.517333pt;}
.yb_c01188{bottom:706.936000pt;}
.ya_c01188{bottom:759.793333pt;}
.y9_c01188{bottom:797.430667pt;}
.y8_c01188{bottom:819.850667pt;}
.y7_c01188{bottom:842.269333pt;}
.y6_c01188{bottom:864.689333pt;}
.y5_c01188{bottom:887.108000pt;}
.y4_c01188{bottom:909.528000pt;}
.y3_c01188{bottom:931.946667pt;}
.y2_c01188{bottom:954.366667pt;}
.y1_c01188{bottom:1013.880000pt;}
.h3_c01188{height:43.636000pt;}
.h2_c01188{height:47.820000pt;}
.h1_c01188{height:1123.333333pt;}
.h0_c01188{height:1123.653333pt;}
.w0_c01188{width:794.550667pt;}
.w1_c01188{width:794.666667pt;}
.x0_c01188{left:0.000000pt;}
.x2_c01188{left:113.385333pt;}
.x3_c01188{left:142.078667pt;}
.x1_c01188{left:657.753333pt;}
}





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

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





.ff0_c01189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01189;src:url('chunks/assets/font_64559d3b33381b22932f45f4.woff2')format("woff");}.ff1_c01189{font-family:ff1_c01189;line-height:1.001000;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_c01189;src:url('chunks/assets/font_f1ca377c17344b305bb6bb6d.woff2')format("woff");}.ff2_c01189{font-family:ff2_c01189;line-height:1.000000;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_c01189;src:url('chunks/assets/font_23985c6cd749d001f3161598.woff2')format("woff");}.ff3_c01189{font-family:ff3_c01189;line-height:1.000000;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_c01189;src:url('chunks/assets/font_3665da452bb33682ac51b8b3.woff2')format("woff");}.ff4_c01189{font-family:ff4_c01189;line-height:0.697000;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_c01189{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_c01189{vertical-align:0.000000px;}
.v1_c01189{vertical-align:16.548000px;}
.v2_c01189{vertical-align:23.748000px;}
.ls3_c01189{letter-spacing:0.000000px;}
.ls0_c01189{letter-spacing:2.999580px;}
.ls2_c01189{letter-spacing:3.005580px;}
.ls1_c01189{letter-spacing:27.413580px;}
.sc__c01189{text-shadow:none;}
.sc0_c01189{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__c01189{-webkit-text-stroke:0px transparent;}
.sc0_c01189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01189{word-spacing:-0.071730px;}
.wsa_c01189{word-spacing:-0.065454px;}
.ws19_c01189{word-spacing:0.000000px;}
.ws8_c01189{word-spacing:15.381690px;}
.ws16_c01189{word-spacing:17.803488px;}
.ws9_c01189{word-spacing:20.028924px;}
.ws6_c01189{word-spacing:20.356194px;}
.ws15_c01189{word-spacing:20.421648px;}
.ws17_c01189{word-spacing:20.748918px;}
.ws1_c01189{word-spacing:21.730728px;}
.ws4_c01189{word-spacing:21.737334px;}
.ws13_c01189{word-spacing:21.740334px;}
.wsd_c01189{word-spacing:21.796182px;}
.ws18_c01189{word-spacing:22.319814px;}
.ws14_c01189{word-spacing:22.843446px;}
.ws10_c01189{word-spacing:23.170716px;}
.wse_c01189{word-spacing:23.301624px;}
.ws5_c01189{word-spacing:23.367078px;}
.ws12_c01189{word-spacing:24.348888px;}
.ws2_c01189{word-spacing:27.752496px;}
.ws7_c01189{word-spacing:28.538622px;}
.ws3_c01189{word-spacing:29.454300px;}
.ws11_c01189{word-spacing:30.239748px;}
.wsf_c01189{word-spacing:30.959742px;}
.wsc_c01189{word-spacing:35.476068px;}
.wsb_c01189{word-spacing:35.541522px;}
._7_c01189{margin-left:-35.279706px;}
._9_c01189{margin-left:-33.970626px;}
._0_c01189{margin-left:-32.661546px;}
._a_c01189{margin-left:-30.567018px;}
._4_c01189{margin-left:-25.461606px;}
._3_c01189{margin-left:-6.741762px;}
._1_c01189{margin-left:-5.498136px;}
._6_c01189{margin-left:-3.338154px;}
._2_c01189{margin-left:-2.225436px;}
._f_c01189{margin-left:-1.047264px;}
._5_c01189{width:1.767258px;}
._d_c01189{width:5.851668px;}
._8_c01189{width:9.137064px;}
._b_c01189{width:25.200522px;}
._c_c01189{width:26.829954px;}
._e_c01189{width:31.391466px;}
.fc0_c01189{color:rgb(0,0,0);}
.fs2_c01189{font-size:47.820000px;}
.fs1_c01189{font-size:65.454000px;}
.fs0_c01189{font-size:71.730000px;}
.y0_c01189{bottom:0.000000px;}
.y24_c01189{bottom:72.660000px;}
.y23_c01189{bottom:97.882500px;}
.y22_c01189{bottom:141.036000px;}
.y21_c01189{bottom:166.258500px;}
.y20_c01189{bottom:191.479500px;}
.y1f_c01189{bottom:234.634500px;}
.y1e_c01189{bottom:259.855500px;}
.y1d_c01189{bottom:285.078000px;}
.y1c_c01189{bottom:310.299000px;}
.y1b_c01189{bottom:353.454000px;}
.y1a_c01189{bottom:378.676500px;}
.y19_c01189{bottom:403.897500px;}
.y18_c01189{bottom:429.120000px;}
.y17_c01189{bottom:454.341000px;}
.y16_c01189{bottom:479.563500px;}
.y15_c01189{bottom:522.717000px;}
.y14_c01189{bottom:547.939500px;}
.y13_c01189{bottom:573.160500px;}
.y12_c01189{bottom:598.383000px;}
.y11_c01189{bottom:641.538000px;}
.y10_c01189{bottom:666.759000px;}
.yf_c01189{bottom:691.981500px;}
.ye_c01189{bottom:735.135000px;}
.yd_c01189{bottom:760.357500px;}
.yc_c01189{bottom:785.578500px;}
.yb_c01189{bottom:810.801000px;}
.ya_c01189{bottom:836.022000px;}
.y9_c01189{bottom:861.244500px;}
.y8_c01189{bottom:886.465500px;}
.y7_c01189{bottom:929.620500px;}
.y6_c01189{bottom:954.841500px;}
.y5_c01189{bottom:980.064000px;}
.y4_c01189{bottom:1005.285000px;}
.y3_c01189{bottom:1030.507500px;}
.y2_c01189{bottom:1073.662500px;}
.y1_c01189{bottom:1140.615000px;}
.h3_c01189{height:49.090500px;}
.h2_c01189{height:53.797500px;}
.h6_c01189{height:56.074320px;}
.h7_c01189{height:56.080320px;}
.h5_c01189{height:65.632500px;}
.h4_c01189{height:65.638500px;}
.h1_c01189{height:1263.750000px;}
.h0_c01189{height:1264.110000px;}
.w0_c01189{width:893.869500px;}
.w1_c01189{width:894.000000px;}
.x0_c01189{left:0.000000px;}
.x3_c01189{left:127.558500px;}
.x2_c01189{left:159.838500px;}
.x9_c01189{left:206.428500px;}
.x4_c01189{left:246.315000px;}
.x7_c01189{left:275.317500px;}
.x5_c01189{left:280.974000px;}
.x6_c01189{left:285.547500px;}
.xa_c01189{left:287.532000px;}
.x8_c01189{left:313.702500px;}
.x1_c01189{left:739.972500px;}
@media print{
.v0_c01189{vertical-align:0.000000pt;}
.v1_c01189{vertical-align:14.709333pt;}
.v2_c01189{vertical-align:21.109333pt;}
.ls3_c01189{letter-spacing:0.000000pt;}
.ls0_c01189{letter-spacing:2.666293pt;}
.ls2_c01189{letter-spacing:2.671627pt;}
.ls1_c01189{letter-spacing:24.367627pt;}
.ws0_c01189{word-spacing:-0.063760pt;}
.wsa_c01189{word-spacing:-0.058181pt;}
.ws19_c01189{word-spacing:0.000000pt;}
.ws8_c01189{word-spacing:13.672613pt;}
.ws16_c01189{word-spacing:15.825323pt;}
.ws9_c01189{word-spacing:17.803488pt;}
.ws6_c01189{word-spacing:18.094395pt;}
.ws15_c01189{word-spacing:18.152576pt;}
.ws17_c01189{word-spacing:18.443483pt;}
.ws1_c01189{word-spacing:19.316203pt;}
.ws4_c01189{word-spacing:19.322075pt;}
.ws13_c01189{word-spacing:19.324741pt;}
.wsd_c01189{word-spacing:19.374384pt;}
.ws18_c01189{word-spacing:19.839835pt;}
.ws14_c01189{word-spacing:20.305285pt;}
.ws10_c01189{word-spacing:20.596192pt;}
.wse_c01189{word-spacing:20.712555pt;}
.ws5_c01189{word-spacing:20.770736pt;}
.ws12_c01189{word-spacing:21.643456pt;}
.ws2_c01189{word-spacing:24.668885pt;}
.ws7_c01189{word-spacing:25.367664pt;}
.ws3_c01189{word-spacing:26.181600pt;}
.ws11_c01189{word-spacing:26.879776pt;}
.wsf_c01189{word-spacing:27.519771pt;}
.wsc_c01189{word-spacing:31.534283pt;}
.wsb_c01189{word-spacing:31.592464pt;}
._7_c01189{margin-left:-31.359739pt;}
._9_c01189{margin-left:-30.196112pt;}
._0_c01189{margin-left:-29.032485pt;}
._a_c01189{margin-left:-27.170683pt;}
._4_c01189{margin-left:-22.632539pt;}
._3_c01189{margin-left:-5.992677pt;}
._1_c01189{margin-left:-4.887232pt;}
._6_c01189{margin-left:-2.967248pt;}
._2_c01189{margin-left:-1.978165pt;}
._f_c01189{margin-left:-0.930901pt;}
._5_c01189{width:1.570896pt;}
._d_c01189{width:5.201483pt;}
._8_c01189{width:8.121835pt;}
._b_c01189{width:22.400464pt;}
._c_c01189{width:23.848848pt;}
._e_c01189{width:27.903525pt;}
.fs2_c01189{font-size:42.506667pt;}
.fs1_c01189{font-size:58.181333pt;}
.fs0_c01189{font-size:63.760000pt;}
.y0_c01189{bottom:0.000000pt;}
.y24_c01189{bottom:64.586667pt;}
.y23_c01189{bottom:87.006667pt;}
.y22_c01189{bottom:125.365333pt;}
.y21_c01189{bottom:147.785333pt;}
.y20_c01189{bottom:170.204000pt;}
.y1f_c01189{bottom:208.564000pt;}
.y1e_c01189{bottom:230.982667pt;}
.y1d_c01189{bottom:253.402667pt;}
.y1c_c01189{bottom:275.821333pt;}
.y1b_c01189{bottom:314.181333pt;}
.y1a_c01189{bottom:336.601333pt;}
.y19_c01189{bottom:359.020000pt;}
.y18_c01189{bottom:381.440000pt;}
.y17_c01189{bottom:403.858667pt;}
.y16_c01189{bottom:426.278667pt;}
.y15_c01189{bottom:464.637333pt;}
.y14_c01189{bottom:487.057333pt;}
.y13_c01189{bottom:509.476000pt;}
.y12_c01189{bottom:531.896000pt;}
.y11_c01189{bottom:570.256000pt;}
.y10_c01189{bottom:592.674667pt;}
.yf_c01189{bottom:615.094667pt;}
.ye_c01189{bottom:653.453333pt;}
.yd_c01189{bottom:675.873333pt;}
.yc_c01189{bottom:698.292000pt;}
.yb_c01189{bottom:720.712000pt;}
.ya_c01189{bottom:743.130667pt;}
.y9_c01189{bottom:765.550667pt;}
.y8_c01189{bottom:787.969333pt;}
.y7_c01189{bottom:826.329333pt;}
.y6_c01189{bottom:848.748000pt;}
.y5_c01189{bottom:871.168000pt;}
.y4_c01189{bottom:893.586667pt;}
.y3_c01189{bottom:916.006667pt;}
.y2_c01189{bottom:954.366667pt;}
.y1_c01189{bottom:1013.880000pt;}
.h3_c01189{height:43.636000pt;}
.h2_c01189{height:47.820000pt;}
.h6_c01189{height:49.843840pt;}
.h7_c01189{height:49.849173pt;}
.h5_c01189{height:58.340000pt;}
.h4_c01189{height:58.345333pt;}
.h1_c01189{height:1123.333333pt;}
.h0_c01189{height:1123.653333pt;}
.w0_c01189{width:794.550667pt;}
.w1_c01189{width:794.666667pt;}
.x0_c01189{left:0.000000pt;}
.x3_c01189{left:113.385333pt;}
.x2_c01189{left:142.078667pt;}
.x9_c01189{left:183.492000pt;}
.x4_c01189{left:218.946667pt;}
.x7_c01189{left:244.726667pt;}
.x5_c01189{left:249.754667pt;}
.x6_c01189{left:253.820000pt;}
.xa_c01189{left:255.584000pt;}
.x8_c01189{left:278.846667pt;}
.x1_c01189{left:657.753333pt;}
}





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

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





.ff0_c01190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01190;src:url('chunks/assets/font_fb1540fbf95a4db5c76ac996.woff2')format("woff");}.ff1_c01190{font-family:ff1_c01190;line-height:1.001000;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_c01190;src:url('chunks/assets/font_a90c73866e181befd650e6e5.woff2')format("woff");}.ff2_c01190{font-family:ff2_c01190;line-height:1.000000;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_c01190;src:url('chunks/assets/font_5a715d5f17e26f2962f2952e.woff2')format("woff");}.ff3_c01190{font-family:ff3_c01190;line-height:1.000000;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_c01190;src:url('chunks/assets/font_770a83328ba42a853f3dc986.woff2')format("woff");}.ff4_c01190{font-family:ff4_c01190;line-height:0.697000;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_c01190;src:url('chunks/assets/font_117edbbb44a3674810ae6ad3.woff2')format("woff");}.ff5_c01190{font-family:ff5_c01190;line-height:1.000000;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_c01190{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_c01190{vertical-align:0.000000px;}
.v1_c01190{vertical-align:16.548000px;}
.v2_c01190{vertical-align:23.754000px;}
.ls2_c01190{letter-spacing:0.000000px;}
.ls0_c01190{letter-spacing:3.005580px;}
.ls1_c01190{letter-spacing:8.151576px;}
.sc__c01190{text-shadow:none;}
.sc0_c01190{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__c01190{-webkit-text-stroke:0px transparent;}
.sc0_c01190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01190{word-spacing:-0.071730px;}
.ws4_c01190{word-spacing:-0.065454px;}
.ws15_c01190{word-spacing:0.000000px;}
.wse_c01190{word-spacing:14.727150px;}
.ws12_c01190{word-spacing:16.756224px;}
.wsa_c01190{word-spacing:16.887132px;}
.ws14_c01190{word-spacing:20.225286px;}
.ws7_c01190{word-spacing:20.356194px;}
.ws6_c01190{word-spacing:20.421648px;}
.ws1_c01190{word-spacing:21.207096px;}
.ws2_c01190{word-spacing:21.730728px;}
.ws3_c01190{word-spacing:21.734334px;}
.wsf_c01190{word-spacing:21.796182px;}
.ws13_c01190{word-spacing:22.123452px;}
.wsb_c01190{word-spacing:22.581630px;}
.ws5_c01190{word-spacing:23.301624px;}
.ws8_c01190{word-spacing:23.367078px;}
.wsd_c01190{word-spacing:23.628894px;}
.ws9_c01190{word-spacing:24.021618px;}
.wsc_c01190{word-spacing:24.807066px;}
.ws10_c01190{word-spacing:25.003428px;}
.ws11_c01190{word-spacing:25.068882px;}
._6_c01190{margin-left:-34.521522px;}
._7_c01190{margin-left:-32.792454px;}
._9_c01190{margin-left:-30.959742px;}
._4_c01190{margin-left:-25.461606px;}
._3_c01190{margin-left:-7.330848px;}
._1_c01190{margin-left:-5.629044px;}
._5_c01190{margin-left:-3.338154px;}
._0_c01190{margin-left:-1.832712px;}
._2_c01190{width:1.767258px;}
._b_c01190{width:3.010884px;}
._8_c01190{width:8.140542px;}
._a_c01190{width:27.693222px;}
.fc0_c01190{color:rgb(0,0,0);}
.fs2_c01190{font-size:47.820000px;}
.fs1_c01190{font-size:65.454000px;}
.fs0_c01190{font-size:71.730000px;}
.y0_c01190{bottom:0.000000px;}
.y22_c01190{bottom:84.249000px;}
.y21_c01190{bottom:109.471500px;}
.y20_c01190{bottom:134.692500px;}
.y1f_c01190{bottom:159.915000px;}
.y1e_c01190{bottom:185.136000px;}
.y1d_c01190{bottom:210.358500px;}
.y1c_c01190{bottom:253.512000px;}
.y1b_c01190{bottom:278.734500px;}
.y1a_c01190{bottom:341.316000px;}
.y19_c01190{bottom:421.830000px;}
.y18_c01190{bottom:447.052500px;}
.y17_c01190{bottom:490.207500px;}
.y16_c01190{bottom:515.428500px;}
.y15_c01190{bottom:540.651000px;}
.y14_c01190{bottom:565.872000px;}
.y13_c01190{bottom:609.027000px;}
.y12_c01190{bottom:634.248000px;}
.y11_c01190{bottom:659.470500px;}
.y10_c01190{bottom:684.691500px;}
.yf_c01190{bottom:709.914000px;}
.ye_c01190{bottom:735.135000px;}
.yd_c01190{bottom:760.357500px;}
.yc_c01190{bottom:785.578500px;}
.yb_c01190{bottom:828.733500px;}
.ya_c01190{bottom:853.954500px;}
.y9_c01190{bottom:879.177000px;}
.y8_c01190{bottom:904.398000px;}
.y7_c01190{bottom:929.620500px;}
.y6_c01190{bottom:972.775500px;}
.y5_c01190{bottom:997.996500px;}
.y4_c01190{bottom:1023.219000px;}
.y3_c01190{bottom:1048.440000px;}
.y2_c01190{bottom:1073.662500px;}
.y1_c01190{bottom:1140.615000px;}
.h3_c01190{height:49.090500px;}
.h2_c01190{height:53.797500px;}
.h5_c01190{height:56.080320px;}
.h6_c01190{height:65.632500px;}
.h4_c01190{height:65.638500px;}
.h1_c01190{height:1263.750000px;}
.h0_c01190{height:1264.110000px;}
.w0_c01190{width:893.869500px;}
.w1_c01190{width:894.000000px;}
.x0_c01190{left:0.000000px;}
.x2_c01190{left:127.558500px;}
.x3_c01190{left:159.838500px;}
.x5_c01190{left:168.928500px;}
.x6_c01190{left:196.656000px;}
.x4_c01190{left:263.359500px;}
.x7_c01190{left:442.230000px;}
.x1_c01190{left:739.972500px;}
@media print{
.v0_c01190{vertical-align:0.000000pt;}
.v1_c01190{vertical-align:14.709333pt;}
.v2_c01190{vertical-align:21.114667pt;}
.ls2_c01190{letter-spacing:0.000000pt;}
.ls0_c01190{letter-spacing:2.671627pt;}
.ls1_c01190{letter-spacing:7.245845pt;}
.ws0_c01190{word-spacing:-0.063760pt;}
.ws4_c01190{word-spacing:-0.058181pt;}
.ws15_c01190{word-spacing:0.000000pt;}
.wse_c01190{word-spacing:13.090800pt;}
.ws12_c01190{word-spacing:14.894421pt;}
.wsa_c01190{word-spacing:15.010784pt;}
.ws14_c01190{word-spacing:17.978032pt;}
.ws7_c01190{word-spacing:18.094395pt;}
.ws6_c01190{word-spacing:18.152576pt;}
.ws1_c01190{word-spacing:18.850752pt;}
.ws2_c01190{word-spacing:19.316203pt;}
.ws3_c01190{word-spacing:19.319408pt;}
.wsf_c01190{word-spacing:19.374384pt;}
.ws13_c01190{word-spacing:19.665291pt;}
.wsb_c01190{word-spacing:20.072560pt;}
.ws5_c01190{word-spacing:20.712555pt;}
.ws8_c01190{word-spacing:20.770736pt;}
.wsd_c01190{word-spacing:21.003461pt;}
.ws9_c01190{word-spacing:21.352549pt;}
.wsc_c01190{word-spacing:22.050725pt;}
.ws10_c01190{word-spacing:22.225269pt;}
.ws11_c01190{word-spacing:22.283451pt;}
._6_c01190{margin-left:-30.685797pt;}
._7_c01190{margin-left:-29.148848pt;}
._9_c01190{margin-left:-27.519771pt;}
._4_c01190{margin-left:-22.632539pt;}
._3_c01190{margin-left:-6.516309pt;}
._1_c01190{margin-left:-5.003595pt;}
._5_c01190{margin-left:-2.967248pt;}
._0_c01190{margin-left:-1.629077pt;}
._2_c01190{width:1.570896pt;}
._b_c01190{width:2.676341pt;}
._8_c01190{width:7.236037pt;}
._a_c01190{width:24.616197pt;}
.fs2_c01190{font-size:42.506667pt;}
.fs1_c01190{font-size:58.181333pt;}
.fs0_c01190{font-size:63.760000pt;}
.y0_c01190{bottom:0.000000pt;}
.y22_c01190{bottom:74.888000pt;}
.y21_c01190{bottom:97.308000pt;}
.y20_c01190{bottom:119.726667pt;}
.y1f_c01190{bottom:142.146667pt;}
.y1e_c01190{bottom:164.565333pt;}
.y1d_c01190{bottom:186.985333pt;}
.y1c_c01190{bottom:225.344000pt;}
.y1b_c01190{bottom:247.764000pt;}
.y1a_c01190{bottom:303.392000pt;}
.y19_c01190{bottom:374.960000pt;}
.y18_c01190{bottom:397.380000pt;}
.y17_c01190{bottom:435.740000pt;}
.y16_c01190{bottom:458.158667pt;}
.y15_c01190{bottom:480.578667pt;}
.y14_c01190{bottom:502.997333pt;}
.y13_c01190{bottom:541.357333pt;}
.y12_c01190{bottom:563.776000pt;}
.y11_c01190{bottom:586.196000pt;}
.y10_c01190{bottom:608.614667pt;}
.yf_c01190{bottom:631.034667pt;}
.ye_c01190{bottom:653.453333pt;}
.yd_c01190{bottom:675.873333pt;}
.yc_c01190{bottom:698.292000pt;}
.yb_c01190{bottom:736.652000pt;}
.ya_c01190{bottom:759.070667pt;}
.y9_c01190{bottom:781.490667pt;}
.y8_c01190{bottom:803.909333pt;}
.y7_c01190{bottom:826.329333pt;}
.y6_c01190{bottom:864.689333pt;}
.y5_c01190{bottom:887.108000pt;}
.y4_c01190{bottom:909.528000pt;}
.y3_c01190{bottom:931.946667pt;}
.y2_c01190{bottom:954.366667pt;}
.y1_c01190{bottom:1013.880000pt;}
.h3_c01190{height:43.636000pt;}
.h2_c01190{height:47.820000pt;}
.h5_c01190{height:49.849173pt;}
.h6_c01190{height:58.340000pt;}
.h4_c01190{height:58.345333pt;}
.h1_c01190{height:1123.333333pt;}
.h0_c01190{height:1123.653333pt;}
.w0_c01190{width:794.550667pt;}
.w1_c01190{width:794.666667pt;}
.x0_c01190{left:0.000000pt;}
.x2_c01190{left:113.385333pt;}
.x3_c01190{left:142.078667pt;}
.x5_c01190{left:150.158667pt;}
.x6_c01190{left:174.805333pt;}
.x4_c01190{left:234.097333pt;}
.x7_c01190{left:393.093333pt;}
.x1_c01190{left:657.753333pt;}
}





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

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





.ff0_c01191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01191;src:url('chunks/assets/font_a64a41497b2c6ac1f06640ec.woff2')format("woff");}.ff1_c01191{font-family:ff1_c01191;line-height:1.001000;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_c01191;src:url('chunks/assets/font_f65088e3aa65afea2079d537.woff2')format("woff");}.ff2_c01191{font-family:ff2_c01191;line-height:1.000000;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_c01191;src:url('chunks/assets/font_01562671dcf53f885e4b78be.woff2')format("woff");}.ff3_c01191{font-family:ff3_c01191;line-height:0.697000;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_c01191{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_c01191{vertical-align:0.000000px;}
.v1_c01191{vertical-align:23.754000px;}
.ls2_c01191{letter-spacing:0.000000px;}
.ls1_c01191{letter-spacing:3.005580px;}
.ls0_c01191{letter-spacing:20.315580px;}
.sc__c01191{text-shadow:none;}
.sc0_c01191{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__c01191{-webkit-text-stroke:0px transparent;}
.sc0_c01191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01191{word-spacing:-0.071730px;}
.ws11_c01191{word-spacing:-0.065454px;}
.ws1b_c01191{word-spacing:0.000000px;}
.ws16_c01191{word-spacing:14.792604px;}
.ws8_c01191{word-spacing:15.381690px;}
.ws3_c01191{word-spacing:17.214402px;}
.ws2_c01191{word-spacing:17.279856px;}
.ws18_c01191{word-spacing:17.541672px;}
.wsc_c01191{word-spacing:18.654390px;}
.wsd_c01191{word-spacing:19.178022px;}
.ws4_c01191{word-spacing:19.374384px;}
.ws1a_c01191{word-spacing:19.898016px;}
.wse_c01191{word-spacing:20.421648px;}
.wsb_c01191{word-spacing:20.487102px;}
.ws5_c01191{word-spacing:21.730728px;}
.ws10_c01191{word-spacing:21.796182px;}
.ws19_c01191{word-spacing:22.319814px;}
.ws13_c01191{word-spacing:22.712538px;}
.ws7_c01191{word-spacing:23.039808px;}
.ws6_c01191{word-spacing:23.105262px;}
.wsf_c01191{word-spacing:23.497986px;}
.ws12_c01191{word-spacing:23.563440px;}
.ws1_c01191{word-spacing:24.021618px;}
.ws14_c01191{word-spacing:25.788876px;}
.ws17_c01191{word-spacing:26.312508px;}
.wsa_c01191{word-spacing:28.210674px;}
.ws15_c01191{word-spacing:29.127030px;}
.ws9_c01191{word-spacing:31.417920px;}
._3_c01191{margin-left:-34.494258px;}
._1_c01191{margin-left:-32.596092px;}
._a_c01191{margin-left:-30.567018px;}
._6_c01191{margin-left:-26.377962px;}
._9_c01191{margin-left:-24.545250px;}
._7_c01191{margin-left:-7.461756px;}
._5_c01191{margin-left:-6.349038px;}
._b_c01191{margin-left:-4.909050px;}
._8_c01191{margin-left:-2.945430px;}
._2_c01191{margin-left:-1.767258px;}
._0_c01191{width:1.767258px;}
._4_c01191{width:3.665424px;}
._c_c01191{width:23.432532px;}
.fc0_c01191{color:rgb(0,0,0);}
.fs2_c01191{font-size:47.820000px;}
.fs1_c01191{font-size:65.454000px;}
.fs0_c01191{font-size:71.730000px;}
.y0_c01191{bottom:0.000000px;}
.y22_c01191{bottom:158.968500px;}
.y21_c01191{bottom:202.123500px;}
.y20_c01191{bottom:227.346000px;}
.y1f_c01191{bottom:252.567000px;}
.y1e_c01191{bottom:277.789500px;}
.y1d_c01191{bottom:320.943000px;}
.y1c_c01191{bottom:346.165500px;}
.y1b_c01191{bottom:389.319000px;}
.y1a_c01191{bottom:414.541500px;}
.y19_c01191{bottom:457.696500px;}
.y18_c01191{bottom:482.917500px;}
.y17_c01191{bottom:508.140000px;}
.y16_c01191{bottom:551.293500px;}
.y15_c01191{bottom:576.516000px;}
.y14_c01191{bottom:601.737000px;}
.y13_c01191{bottom:626.959500px;}
.y12_c01191{bottom:670.114500px;}
.y11_c01191{bottom:695.335500px;}
.y10_c01191{bottom:720.558000px;}
.yf_c01191{bottom:745.779000px;}
.ye_c01191{bottom:771.001500px;}
.yd_c01191{bottom:796.222500px;}
.yc_c01191{bottom:821.445000px;}
.yb_c01191{bottom:846.666000px;}
.ya_c01191{bottom:871.888500px;}
.y9_c01191{bottom:897.109500px;}
.y8_c01191{bottom:922.332000px;}
.y7_c01191{bottom:947.553000px;}
.y6_c01191{bottom:972.775500px;}
.y5_c01191{bottom:997.996500px;}
.y4_c01191{bottom:1023.219000px;}
.y3_c01191{bottom:1048.440000px;}
.y2_c01191{bottom:1073.662500px;}
.y1_c01191{bottom:1140.615000px;}
.h3_c01191{height:49.090500px;}
.h2_c01191{height:53.797500px;}
.h5_c01191{height:56.074320px;}
.h4_c01191{height:56.080320px;}
.h1_c01191{height:1263.750000px;}
.h0_c01191{height:1264.110000px;}
.w0_c01191{width:893.869500px;}
.w1_c01191{width:894.000000px;}
.x0_c01191{left:0.000000px;}
.x3_c01191{left:127.558500px;}
.x2_c01191{left:159.838500px;}
.x1_c01191{left:739.972500px;}
@media print{
.v0_c01191{vertical-align:0.000000pt;}
.v1_c01191{vertical-align:21.114667pt;}
.ls2_c01191{letter-spacing:0.000000pt;}
.ls1_c01191{letter-spacing:2.671627pt;}
.ls0_c01191{letter-spacing:18.058293pt;}
.ws0_c01191{word-spacing:-0.063760pt;}
.ws11_c01191{word-spacing:-0.058181pt;}
.ws1b_c01191{word-spacing:0.000000pt;}
.ws16_c01191{word-spacing:13.148981pt;}
.ws8_c01191{word-spacing:13.672613pt;}
.ws3_c01191{word-spacing:15.301691pt;}
.ws2_c01191{word-spacing:15.359872pt;}
.ws18_c01191{word-spacing:15.592597pt;}
.wsc_c01191{word-spacing:16.581680pt;}
.wsd_c01191{word-spacing:17.047131pt;}
.ws4_c01191{word-spacing:17.221675pt;}
.ws1a_c01191{word-spacing:17.687125pt;}
.wse_c01191{word-spacing:18.152576pt;}
.wsb_c01191{word-spacing:18.210757pt;}
.ws5_c01191{word-spacing:19.316203pt;}
.ws10_c01191{word-spacing:19.374384pt;}
.ws19_c01191{word-spacing:19.839835pt;}
.ws13_c01191{word-spacing:20.188923pt;}
.ws7_c01191{word-spacing:20.479829pt;}
.ws6_c01191{word-spacing:20.538011pt;}
.wsf_c01191{word-spacing:20.887099pt;}
.ws12_c01191{word-spacing:20.945280pt;}
.ws1_c01191{word-spacing:21.352549pt;}
.ws14_c01191{word-spacing:22.923445pt;}
.ws17_c01191{word-spacing:23.388896pt;}
.wsa_c01191{word-spacing:25.076155pt;}
.ws15_c01191{word-spacing:25.890693pt;}
.ws9_c01191{word-spacing:27.927040pt;}
._3_c01191{margin-left:-30.661563pt;}
._1_c01191{margin-left:-28.974304pt;}
._a_c01191{margin-left:-27.170683pt;}
._6_c01191{margin-left:-23.447077pt;}
._9_c01191{margin-left:-21.818000pt;}
._7_c01191{margin-left:-6.632672pt;}
._5_c01191{margin-left:-5.643589pt;}
._b_c01191{margin-left:-4.363600pt;}
._8_c01191{margin-left:-2.618160pt;}
._2_c01191{margin-left:-1.570896pt;}
._0_c01191{width:1.570896pt;}
._4_c01191{width:3.258155pt;}
._c_c01191{width:20.828917pt;}
.fs2_c01191{font-size:42.506667pt;}
.fs1_c01191{font-size:58.181333pt;}
.fs0_c01191{font-size:63.760000pt;}
.y0_c01191{bottom:0.000000pt;}
.y22_c01191{bottom:141.305333pt;}
.y21_c01191{bottom:179.665333pt;}
.y20_c01191{bottom:202.085333pt;}
.y1f_c01191{bottom:224.504000pt;}
.y1e_c01191{bottom:246.924000pt;}
.y1d_c01191{bottom:285.282667pt;}
.y1c_c01191{bottom:307.702667pt;}
.y1b_c01191{bottom:346.061333pt;}
.y1a_c01191{bottom:368.481333pt;}
.y19_c01191{bottom:406.841333pt;}
.y18_c01191{bottom:429.260000pt;}
.y17_c01191{bottom:451.680000pt;}
.y16_c01191{bottom:490.038667pt;}
.y15_c01191{bottom:512.458667pt;}
.y14_c01191{bottom:534.877333pt;}
.y13_c01191{bottom:557.297333pt;}
.y12_c01191{bottom:595.657333pt;}
.y11_c01191{bottom:618.076000pt;}
.y10_c01191{bottom:640.496000pt;}
.yf_c01191{bottom:662.914667pt;}
.ye_c01191{bottom:685.334667pt;}
.yd_c01191{bottom:707.753333pt;}
.yc_c01191{bottom:730.173333pt;}
.yb_c01191{bottom:752.592000pt;}
.ya_c01191{bottom:775.012000pt;}
.y9_c01191{bottom:797.430667pt;}
.y8_c01191{bottom:819.850667pt;}
.y7_c01191{bottom:842.269333pt;}
.y6_c01191{bottom:864.689333pt;}
.y5_c01191{bottom:887.108000pt;}
.y4_c01191{bottom:909.528000pt;}
.y3_c01191{bottom:931.946667pt;}
.y2_c01191{bottom:954.366667pt;}
.y1_c01191{bottom:1013.880000pt;}
.h3_c01191{height:43.636000pt;}
.h2_c01191{height:47.820000pt;}
.h5_c01191{height:49.843840pt;}
.h4_c01191{height:49.849173pt;}
.h1_c01191{height:1123.333333pt;}
.h0_c01191{height:1123.653333pt;}
.w0_c01191{width:794.550667pt;}
.w1_c01191{width:794.666667pt;}
.x0_c01191{left:0.000000pt;}
.x3_c01191{left:113.385333pt;}
.x2_c01191{left:142.078667pt;}
.x1_c01191{left:657.753333pt;}
}





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

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





.ff0_c01192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01192;src:url('chunks/assets/font_b7bf0d59778b4cd45402c0f6.woff2')format("woff");}.ff1_c01192{font-family:ff1_c01192;line-height:1.001000;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_c01192;src:url('chunks/assets/font_e4526f81c0634db0f570be4a.woff2')format("woff");}.ff2_c01192{font-family:ff2_c01192;line-height:1.000000;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_c01192;src:url('chunks/assets/font_d69bb36ddfb7c5c07c1505ef.woff2')format("woff");}.ff3_c01192{font-family:ff3_c01192;line-height:1.000000;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_c01192;src:url('chunks/assets/font_a0a7a4c5c9880df7956234e5.woff2')format("woff");}.ff4_c01192{font-family:ff4_c01192;line-height:0.697000;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_c01192{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_c01192{vertical-align:0.000000px;}
.v1_c01192{vertical-align:23.754000px;}
.ls1_c01192{letter-spacing:0.000000px;}
.ls0_c01192{letter-spacing:3.005580px;}
.sc__c01192{text-shadow:none;}
.sc0_c01192{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__c01192{-webkit-text-stroke:0px transparent;}
.sc0_c01192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01192{word-spacing:-0.071730px;}
.ws8_c01192{word-spacing:-0.065454px;}
.ws1f_c01192{word-spacing:0.000000px;}
.ws17_c01192{word-spacing:15.119874px;}
.ws1b_c01192{word-spacing:16.036230px;}
.wsa_c01192{word-spacing:17.279856px;}
.wse_c01192{word-spacing:17.803488px;}
.ws19_c01192{word-spacing:18.130758px;}
.ws1c_c01192{word-spacing:19.636200px;}
.wsc_c01192{word-spacing:19.832562px;}
.wsf_c01192{word-spacing:20.290740px;}
.ws9_c01192{word-spacing:21.207096px;}
.ws4_c01192{word-spacing:21.730728px;}
.wsb_c01192{word-spacing:21.796182px;}
.ws13_c01192{word-spacing:22.123452px;}
.ws11_c01192{word-spacing:22.450722px;}
.ws10_c01192{word-spacing:22.581630px;}
.ws12_c01192{word-spacing:22.712538px;}
.ws3_c01192{word-spacing:22.908900px;}
.ws1a_c01192{word-spacing:23.039808px;}
.ws1e_c01192{word-spacing:23.628894px;}
.ws14_c01192{word-spacing:23.759802px;}
.ws16_c01192{word-spacing:23.956164px;}
.ws2_c01192{word-spacing:24.152526px;}
.ws18_c01192{word-spacing:24.414342px;}
.ws15_c01192{word-spacing:24.479796px;}
.ws5_c01192{word-spacing:24.937974px;}
.ws1_c01192{word-spacing:25.003428px;}
.ws6_c01192{word-spacing:28.014312px;}
.ws7_c01192{word-spacing:28.145220px;}
.wsd_c01192{word-spacing:28.472490px;}
.ws1d_c01192{word-spacing:28.799760px;}
._6_c01192{margin-left:-34.363350px;}
._3_c01192{margin-left:-32.727000px;}
._7_c01192{margin-left:-25.788876px;}
._a_c01192{margin-left:-24.676158px;}
._9_c01192{margin-left:-7.461756px;}
._2_c01192{margin-left:-6.218130px;}
._0_c01192{margin-left:-2.159982px;}
._4_c01192{margin-left:-1.112718px;}
._5_c01192{width:1.112718px;}
._1_c01192{width:2.159982px;}
._8_c01192{width:3.599970px;}
.fc0_c01192{color:rgb(0,0,0);}
.fs2_c01192{font-size:47.820000px;}
.fs1_c01192{font-size:65.454000px;}
.fs0_c01192{font-size:71.730000px;}
.y0_c01192{bottom:0.000000px;}
.y28_c01192{bottom:71.973000px;}
.y27_c01192{bottom:97.194000px;}
.y26_c01192{bottom:122.416500px;}
.y25_c01192{bottom:147.637500px;}
.y24_c01192{bottom:172.860000px;}
.y23_c01192{bottom:198.081000px;}
.y22_c01192{bottom:223.303500px;}
.y21_c01192{bottom:248.524500px;}
.y20_c01192{bottom:273.747000px;}
.y1f_c01192{bottom:298.968000px;}
.y1e_c01192{bottom:324.190500px;}
.y1d_c01192{bottom:349.411500px;}
.y1c_c01192{bottom:374.634000px;}
.y1b_c01192{bottom:399.855000px;}
.y1a_c01192{bottom:425.077500px;}
.y19_c01192{bottom:450.298500px;}
.y18_c01192{bottom:475.521000px;}
.y17_c01192{bottom:500.742000px;}
.y16_c01192{bottom:525.964500px;}
.y15_c01192{bottom:551.185500px;}
.y14_c01192{bottom:576.408000px;}
.y13_c01192{bottom:601.629000px;}
.y12_c01192{bottom:626.851500px;}
.y11_c01192{bottom:652.072500px;}
.y10_c01192{bottom:677.295000px;}
.yf_c01192{bottom:702.517500px;}
.ye_c01192{bottom:727.738500px;}
.yd_c01192{bottom:752.961000px;}
.yc_c01192{bottom:778.182000px;}
.yb_c01192{bottom:803.404500px;}
.ya_c01192{bottom:828.625500px;}
.y9_c01192{bottom:853.848000px;}
.y8_c01192{bottom:879.069000px;}
.y7_c01192{bottom:904.291500px;}
.y6_c01192{bottom:929.512500px;}
.y5_c01192{bottom:954.735000px;}
.y4_c01192{bottom:994.881000px;}
.y3_c01192{bottom:1020.103500px;}
.y2_c01192{bottom:1073.662500px;}
.y1_c01192{bottom:1140.615000px;}
.h3_c01192{height:49.090500px;}
.h2_c01192{height:53.797500px;}
.h4_c01192{height:56.080320px;}
.h1_c01192{height:1263.750000px;}
.h0_c01192{height:1264.110000px;}
.w0_c01192{width:893.869500px;}
.w1_c01192{width:894.000000px;}
.x0_c01192{left:0.000000px;}
.x4_c01192{left:127.558500px;}
.x3_c01192{left:159.838500px;}
.x2_c01192{left:442.230000px;}
.x1_c01192{left:739.972500px;}
@media print{
.v0_c01192{vertical-align:0.000000pt;}
.v1_c01192{vertical-align:21.114667pt;}
.ls1_c01192{letter-spacing:0.000000pt;}
.ls0_c01192{letter-spacing:2.671627pt;}
.ws0_c01192{word-spacing:-0.063760pt;}
.ws8_c01192{word-spacing:-0.058181pt;}
.ws1f_c01192{word-spacing:0.000000pt;}
.ws17_c01192{word-spacing:13.439888pt;}
.ws1b_c01192{word-spacing:14.254427pt;}
.wsa_c01192{word-spacing:15.359872pt;}
.wse_c01192{word-spacing:15.825323pt;}
.ws19_c01192{word-spacing:16.116229pt;}
.ws1c_c01192{word-spacing:17.454400pt;}
.wsc_c01192{word-spacing:17.628944pt;}
.wsf_c01192{word-spacing:18.036213pt;}
.ws9_c01192{word-spacing:18.850752pt;}
.ws4_c01192{word-spacing:19.316203pt;}
.wsb_c01192{word-spacing:19.374384pt;}
.ws13_c01192{word-spacing:19.665291pt;}
.ws11_c01192{word-spacing:19.956197pt;}
.ws10_c01192{word-spacing:20.072560pt;}
.ws12_c01192{word-spacing:20.188923pt;}
.ws3_c01192{word-spacing:20.363467pt;}
.ws1a_c01192{word-spacing:20.479829pt;}
.ws1e_c01192{word-spacing:21.003461pt;}
.ws14_c01192{word-spacing:21.119824pt;}
.ws16_c01192{word-spacing:21.294368pt;}
.ws2_c01192{word-spacing:21.468912pt;}
.ws18_c01192{word-spacing:21.701637pt;}
.ws15_c01192{word-spacing:21.759819pt;}
.ws5_c01192{word-spacing:22.167088pt;}
.ws1_c01192{word-spacing:22.225269pt;}
.ws6_c01192{word-spacing:24.901611pt;}
.ws7_c01192{word-spacing:25.017973pt;}
.wsd_c01192{word-spacing:25.308880pt;}
.ws1d_c01192{word-spacing:25.599787pt;}
._6_c01192{margin-left:-30.545200pt;}
._3_c01192{margin-left:-29.090667pt;}
._7_c01192{margin-left:-22.923445pt;}
._a_c01192{margin-left:-21.934363pt;}
._9_c01192{margin-left:-6.632672pt;}
._2_c01192{margin-left:-5.527227pt;}
._0_c01192{margin-left:-1.919984pt;}
._4_c01192{margin-left:-0.989083pt;}
._5_c01192{width:0.989083pt;}
._1_c01192{width:1.919984pt;}
._8_c01192{width:3.199973pt;}
.fs2_c01192{font-size:42.506667pt;}
.fs1_c01192{font-size:58.181333pt;}
.fs0_c01192{font-size:63.760000pt;}
.y0_c01192{bottom:0.000000pt;}
.y28_c01192{bottom:63.976000pt;}
.y27_c01192{bottom:86.394667pt;}
.y26_c01192{bottom:108.814667pt;}
.y25_c01192{bottom:131.233333pt;}
.y24_c01192{bottom:153.653333pt;}
.y23_c01192{bottom:176.072000pt;}
.y22_c01192{bottom:198.492000pt;}
.y21_c01192{bottom:220.910667pt;}
.y20_c01192{bottom:243.330667pt;}
.y1f_c01192{bottom:265.749333pt;}
.y1e_c01192{bottom:288.169333pt;}
.y1d_c01192{bottom:310.588000pt;}
.y1c_c01192{bottom:333.008000pt;}
.y1b_c01192{bottom:355.426667pt;}
.y1a_c01192{bottom:377.846667pt;}
.y19_c01192{bottom:400.265333pt;}
.y18_c01192{bottom:422.685333pt;}
.y17_c01192{bottom:445.104000pt;}
.y16_c01192{bottom:467.524000pt;}
.y15_c01192{bottom:489.942667pt;}
.y14_c01192{bottom:512.362667pt;}
.y13_c01192{bottom:534.781333pt;}
.y12_c01192{bottom:557.201333pt;}
.y11_c01192{bottom:579.620000pt;}
.y10_c01192{bottom:602.040000pt;}
.yf_c01192{bottom:624.460000pt;}
.ye_c01192{bottom:646.878667pt;}
.yd_c01192{bottom:669.298667pt;}
.yc_c01192{bottom:691.717333pt;}
.yb_c01192{bottom:714.137333pt;}
.ya_c01192{bottom:736.556000pt;}
.y9_c01192{bottom:758.976000pt;}
.y8_c01192{bottom:781.394667pt;}
.y7_c01192{bottom:803.814667pt;}
.y6_c01192{bottom:826.233333pt;}
.y5_c01192{bottom:848.653333pt;}
.y4_c01192{bottom:884.338667pt;}
.y3_c01192{bottom:906.758667pt;}
.y2_c01192{bottom:954.366667pt;}
.y1_c01192{bottom:1013.880000pt;}
.h3_c01192{height:43.636000pt;}
.h2_c01192{height:47.820000pt;}
.h4_c01192{height:49.849173pt;}
.h1_c01192{height:1123.333333pt;}
.h0_c01192{height:1123.653333pt;}
.w0_c01192{width:794.550667pt;}
.w1_c01192{width:794.666667pt;}
.x0_c01192{left:0.000000pt;}
.x4_c01192{left:113.385333pt;}
.x3_c01192{left:142.078667pt;}
.x2_c01192{left:393.093333pt;}
.x1_c01192{left:657.753333pt;}
}





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

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





.ff0_c01193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01193;src:url('chunks/assets/font_08f6cc98e739239af6d9ad78.woff2')format("woff");}.ff1_c01193{font-family:ff1_c01193;line-height:1.001000;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_c01193;src:url('chunks/assets/font_83b491eee2db1289c91b1c1d.woff2')format("woff");}.ff2_c01193{font-family:ff2_c01193;line-height:1.000000;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_c01193;src:url('chunks/assets/font_6bb56a54b5cd8885dc1a6d0d.woff2')format("woff");}.ff3_c01193{font-family:ff3_c01193;line-height:0.697000;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_c01193{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_c01193{vertical-align:0.000000px;}
.v2_c01193{vertical-align:16.542000px;}
.v1_c01193{vertical-align:23.748000px;}
.ls2_c01193{letter-spacing:0.000000px;}
.ls0_c01193{letter-spacing:3.005580px;}
.ls1_c01193{letter-spacing:31.217580px;}
.sc__c01193{text-shadow:none;}
.sc0_c01193{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__c01193{-webkit-text-stroke:0px transparent;}
.sc0_c01193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01193{word-spacing:-0.071730px;}
.ws3_c01193{word-spacing:-0.065454px;}
.ws23_c01193{word-spacing:0.000000px;}
.ws10_c01193{word-spacing:14.661696px;}
.ws1b_c01193{word-spacing:14.923512px;}
.ws18_c01193{word-spacing:16.101684px;}
.ws11_c01193{word-spacing:16.887132px;}
.ws1f_c01193{word-spacing:17.345310px;}
.wse_c01193{word-spacing:18.130758px;}
.ws1c_c01193{word-spacing:18.785298px;}
.wsd_c01193{word-spacing:19.636200px;}
.ws6_c01193{word-spacing:19.767108px;}
.ws14_c01193{word-spacing:20.421648px;}
.ws13_c01193{word-spacing:21.010734px;}
.ws5_c01193{word-spacing:21.730728px;}
.ws2_c01193{word-spacing:21.796182px;}
.ws17_c01193{word-spacing:22.123452px;}
.wsf_c01193{word-spacing:22.188906px;}
.ws1_c01193{word-spacing:22.712538px;}
.ws1e_c01193{word-spacing:23.039808px;}
.ws16_c01193{word-spacing:23.432532px;}
.ws12_c01193{word-spacing:23.956164px;}
.ws22_c01193{word-spacing:24.741612px;}
.ws1a_c01193{word-spacing:24.872520px;}
.wsa_c01193{word-spacing:25.723422px;}
.ws4_c01193{word-spacing:25.919784px;}
.ws8_c01193{word-spacing:26.377962px;}
.ws7_c01193{word-spacing:26.508870px;}
.wsc_c01193{word-spacing:26.574324px;}
.ws21_c01193{word-spacing:26.967048px;}
.ws1d_c01193{word-spacing:27.359772px;}
.ws15_c01193{word-spacing:27.490680px;}
.ws20_c01193{word-spacing:27.556134px;}
.wsb_c01193{word-spacing:28.145220px;}
.ws9_c01193{word-spacing:30.501564px;}
.ws19_c01193{word-spacing:33.038334px;}
._3_c01193{margin-left:-34.628166px;}
._1_c01193{margin-left:-32.792454px;}
._a_c01193{margin-left:-31.221558px;}
._b_c01193{margin-left:-30.168294px;}
._5_c01193{margin-left:-25.461606px;}
._4_c01193{margin-left:-7.265394px;}
._8_c01193{margin-left:-5.432682px;}
._7_c01193{margin-left:-3.534516px;}
._0_c01193{margin-left:-1.767258px;}
._2_c01193{width:1.767258px;}
._6_c01193{width:3.599970px;}
._9_c01193{width:25.248834px;}
.fc0_c01193{color:rgb(0,0,0);}
.fs2_c01193{font-size:47.820000px;}
.fs1_c01193{font-size:65.454000px;}
.fs0_c01193{font-size:71.730000px;}
.y0_c01193{bottom:0.000000px;}
.y28_c01193{bottom:79.369500px;}
.y27_c01193{bottom:104.592000px;}
.y26_c01193{bottom:129.813000px;}
.y25_c01193{bottom:155.035500px;}
.y24_c01193{bottom:180.256500px;}
.y23_c01193{bottom:205.479000px;}
.y22_c01193{bottom:230.700000px;}
.y21_c01193{bottom:255.922500px;}
.y20_c01193{bottom:281.143500px;}
.y1f_c01193{bottom:306.366000px;}
.y1e_c01193{bottom:331.587000px;}
.y1d_c01193{bottom:356.809500px;}
.y1c_c01193{bottom:382.030500px;}
.y1b_c01193{bottom:407.253000px;}
.y1a_c01193{bottom:432.474000px;}
.y19_c01193{bottom:457.696500px;}
.y18_c01193{bottom:482.917500px;}
.y17_c01193{bottom:508.140000px;}
.y16_c01193{bottom:533.361000px;}
.y15_c01193{bottom:558.583500px;}
.y14_c01193{bottom:583.804500px;}
.y13_c01193{bottom:644.892000px;}
.y12_c01193{bottom:670.114500px;}
.y11_c01193{bottom:695.335500px;}
.y10_c01193{bottom:720.558000px;}
.yf_c01193{bottom:745.779000px;}
.ye_c01193{bottom:771.001500px;}
.yd_c01193{bottom:796.222500px;}
.yc_c01193{bottom:821.445000px;}
.yb_c01193{bottom:846.666000px;}
.ya_c01193{bottom:871.888500px;}
.y9_c01193{bottom:897.109500px;}
.y8_c01193{bottom:922.332000px;}
.y7_c01193{bottom:947.553000px;}
.y6_c01193{bottom:972.775500px;}
.y5_c01193{bottom:997.996500px;}
.y4_c01193{bottom:1023.219000px;}
.y3_c01193{bottom:1048.440000px;}
.y2_c01193{bottom:1073.662500px;}
.y1_c01193{bottom:1140.615000px;}
.h3_c01193{height:49.090500px;}
.h2_c01193{height:53.797500px;}
.h4_c01193{height:56.074320px;}
.h5_c01193{height:56.080320px;}
.h6_c01193{height:65.632500px;}
.h1_c01193{height:1263.750000px;}
.h0_c01193{height:1264.110000px;}
.w0_c01193{width:893.869500px;}
.w1_c01193{width:894.000000px;}
.x0_c01193{left:0.000000px;}
.x2_c01193{left:127.558500px;}
.x5_c01193{left:154.701000px;}
.x3_c01193{left:159.838500px;}
.x4_c01193{left:304.116000px;}
.x1_c01193{left:739.972500px;}
@media print{
.v0_c01193{vertical-align:0.000000pt;}
.v2_c01193{vertical-align:14.704000pt;}
.v1_c01193{vertical-align:21.109333pt;}
.ls2_c01193{letter-spacing:0.000000pt;}
.ls0_c01193{letter-spacing:2.671627pt;}
.ls1_c01193{letter-spacing:27.748960pt;}
.ws0_c01193{word-spacing:-0.063760pt;}
.ws3_c01193{word-spacing:-0.058181pt;}
.ws23_c01193{word-spacing:0.000000pt;}
.ws10_c01193{word-spacing:13.032619pt;}
.ws1b_c01193{word-spacing:13.265344pt;}
.ws18_c01193{word-spacing:14.312608pt;}
.ws11_c01193{word-spacing:15.010784pt;}
.ws1f_c01193{word-spacing:15.418053pt;}
.wse_c01193{word-spacing:16.116229pt;}
.ws1c_c01193{word-spacing:16.698043pt;}
.wsd_c01193{word-spacing:17.454400pt;}
.ws6_c01193{word-spacing:17.570763pt;}
.ws14_c01193{word-spacing:18.152576pt;}
.ws13_c01193{word-spacing:18.676208pt;}
.ws5_c01193{word-spacing:19.316203pt;}
.ws2_c01193{word-spacing:19.374384pt;}
.ws17_c01193{word-spacing:19.665291pt;}
.wsf_c01193{word-spacing:19.723472pt;}
.ws1_c01193{word-spacing:20.188923pt;}
.ws1e_c01193{word-spacing:20.479829pt;}
.ws16_c01193{word-spacing:20.828917pt;}
.ws12_c01193{word-spacing:21.294368pt;}
.ws22_c01193{word-spacing:21.992544pt;}
.ws1a_c01193{word-spacing:22.108907pt;}
.wsa_c01193{word-spacing:22.865264pt;}
.ws4_c01193{word-spacing:23.039808pt;}
.ws8_c01193{word-spacing:23.447077pt;}
.ws7_c01193{word-spacing:23.563440pt;}
.wsc_c01193{word-spacing:23.621621pt;}
.ws21_c01193{word-spacing:23.970709pt;}
.ws1d_c01193{word-spacing:24.319797pt;}
.ws15_c01193{word-spacing:24.436160pt;}
.ws20_c01193{word-spacing:24.494341pt;}
.wsb_c01193{word-spacing:25.017973pt;}
.ws9_c01193{word-spacing:27.112501pt;}
.ws19_c01193{word-spacing:29.367408pt;}
._3_c01193{margin-left:-30.780592pt;}
._1_c01193{margin-left:-29.148848pt;}
._a_c01193{margin-left:-27.752496pt;}
._b_c01193{margin-left:-26.816261pt;}
._5_c01193{margin-left:-22.632539pt;}
._4_c01193{margin-left:-6.458128pt;}
._8_c01193{margin-left:-4.829051pt;}
._7_c01193{margin-left:-3.141792pt;}
._0_c01193{margin-left:-1.570896pt;}
._2_c01193{width:1.570896pt;}
._6_c01193{width:3.199973pt;}
._9_c01193{width:22.443408pt;}
.fs2_c01193{font-size:42.506667pt;}
.fs1_c01193{font-size:58.181333pt;}
.fs0_c01193{font-size:63.760000pt;}
.y0_c01193{bottom:0.000000pt;}
.y28_c01193{bottom:70.550667pt;}
.y27_c01193{bottom:92.970667pt;}
.y26_c01193{bottom:115.389333pt;}
.y25_c01193{bottom:137.809333pt;}
.y24_c01193{bottom:160.228000pt;}
.y23_c01193{bottom:182.648000pt;}
.y22_c01193{bottom:205.066667pt;}
.y21_c01193{bottom:227.486667pt;}
.y20_c01193{bottom:249.905333pt;}
.y1f_c01193{bottom:272.325333pt;}
.y1e_c01193{bottom:294.744000pt;}
.y1d_c01193{bottom:317.164000pt;}
.y1c_c01193{bottom:339.582667pt;}
.y1b_c01193{bottom:362.002667pt;}
.y1a_c01193{bottom:384.421333pt;}
.y19_c01193{bottom:406.841333pt;}
.y18_c01193{bottom:429.260000pt;}
.y17_c01193{bottom:451.680000pt;}
.y16_c01193{bottom:474.098667pt;}
.y15_c01193{bottom:496.518667pt;}
.y14_c01193{bottom:518.937333pt;}
.y13_c01193{bottom:573.237333pt;}
.y12_c01193{bottom:595.657333pt;}
.y11_c01193{bottom:618.076000pt;}
.y10_c01193{bottom:640.496000pt;}
.yf_c01193{bottom:662.914667pt;}
.ye_c01193{bottom:685.334667pt;}
.yd_c01193{bottom:707.753333pt;}
.yc_c01193{bottom:730.173333pt;}
.yb_c01193{bottom:752.592000pt;}
.ya_c01193{bottom:775.012000pt;}
.y9_c01193{bottom:797.430667pt;}
.y8_c01193{bottom:819.850667pt;}
.y7_c01193{bottom:842.269333pt;}
.y6_c01193{bottom:864.689333pt;}
.y5_c01193{bottom:887.108000pt;}
.y4_c01193{bottom:909.528000pt;}
.y3_c01193{bottom:931.946667pt;}
.y2_c01193{bottom:954.366667pt;}
.y1_c01193{bottom:1013.880000pt;}
.h3_c01193{height:43.636000pt;}
.h2_c01193{height:47.820000pt;}
.h4_c01193{height:49.843840pt;}
.h5_c01193{height:49.849173pt;}
.h6_c01193{height:58.340000pt;}
.h1_c01193{height:1123.333333pt;}
.h0_c01193{height:1123.653333pt;}
.w0_c01193{width:794.550667pt;}
.w1_c01193{width:794.666667pt;}
.x0_c01193{left:0.000000pt;}
.x2_c01193{left:113.385333pt;}
.x5_c01193{left:137.512000pt;}
.x3_c01193{left:142.078667pt;}
.x4_c01193{left:270.325333pt;}
.x1_c01193{left:657.753333pt;}
}





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

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





.ff0_c01194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01194;src:url('chunks/assets/font_af794c39143de0ef9713749c.woff2')format("woff");}.ff1_c01194{font-family:ff1_c01194;line-height:1.001000;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_c01194;src:url('chunks/assets/font_2387c7b67a230d28e1d5a3a4.woff2')format("woff");}.ff2_c01194{font-family:ff2_c01194;line-height:1.000000;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_c01194;src:url('chunks/assets/font_6bb56a54b5cd8885dc1a6d0d.woff2')format("woff");}.ff3_c01194{font-family:ff3_c01194;line-height:0.697000;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_c01194;src:url('chunks/assets/font_4bbf496ec2ec1a4dd0e79791.woff2')format("woff");}.ff4_c01194{font-family:ff4_c01194;line-height:1.000000;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_c01194{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_c01194{vertical-align:0.000000px;}
.v2_c01194{vertical-align:16.542000px;}
.v1_c01194{vertical-align:23.754000px;}
.ls4_c01194{letter-spacing:0.000000px;}
.ls0_c01194{letter-spacing:27.665580px;}
.ls1_c01194{letter-spacing:28.427580px;}
.ls3_c01194{letter-spacing:31.415580px;}
.ls2_c01194{letter-spacing:37.517580px;}
.sc__c01194{text-shadow:none;}
.sc0_c01194{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__c01194{-webkit-text-stroke:0px transparent;}
.sc0_c01194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01194{word-spacing:-0.071730px;}
.ws1d_c01194{word-spacing:0.000000px;}
.ws1c_c01194{word-spacing:16.690770px;}
.ws13_c01194{word-spacing:18.327120px;}
.ws19_c01194{word-spacing:18.458028px;}
.ws17_c01194{word-spacing:18.523482px;}
.ws11_c01194{word-spacing:18.654390px;}
.wsc_c01194{word-spacing:19.112568px;}
.ws1a_c01194{word-spacing:20.879826px;}
.ws12_c01194{word-spacing:21.076188px;}
.ws1_c01194{word-spacing:21.730728px;}
.ws15_c01194{word-spacing:21.796182px;}
.ws14_c01194{word-spacing:22.581630px;}
.ws8_c01194{word-spacing:22.777992px;}
.ws1b_c01194{word-spacing:23.236170px;}
.ws10_c01194{word-spacing:23.497986px;}
.wsa_c01194{word-spacing:23.563440px;}
.ws18_c01194{word-spacing:23.628894px;}
.ws7_c01194{word-spacing:24.021618px;}
.wsf_c01194{word-spacing:24.152526px;}
.ws3_c01194{word-spacing:24.545250px;}
.ws2_c01194{word-spacing:24.610704px;}
.ws9_c01194{word-spacing:24.676158px;}
.wse_c01194{word-spacing:25.003428px;}
.ws4_c01194{word-spacing:25.330698px;}
.ws5_c01194{word-spacing:25.396152px;}
.ws16_c01194{word-spacing:26.508870px;}
.wsd_c01194{word-spacing:26.639778px;}
.ws6_c01194{word-spacing:28.341582px;}
.wsb_c01194{word-spacing:28.407036px;}
._8_c01194{margin-left:-34.713066px;}
._1_c01194{margin-left:-32.727000px;}
._7_c01194{margin-left:-30.894288px;}
._5_c01194{margin-left:-25.461606px;}
._4_c01194{margin-left:-7.047528px;}
._0_c01194{margin-left:-5.432682px;}
._b_c01194{margin-left:-4.145106px;}
._3_c01194{margin-left:-1.919670px;}
._2_c01194{width:1.767258px;}
._6_c01194{width:23.589678px;}
._a_c01194{width:26.202162px;}
._9_c01194{width:27.786978px;}
.fc0_c01194{color:rgb(0,0,0);}
.fs2_c01194{font-size:47.820000px;}
.fs1_c01194{font-size:65.454000px;}
.fs0_c01194{font-size:71.730000px;}
.y0_c01194{bottom:0.000000px;}
.y26_c01194{bottom:71.973000px;}
.y25_c01194{bottom:97.194000px;}
.y24_c01194{bottom:122.416500px;}
.y23_c01194{bottom:147.637500px;}
.y22_c01194{bottom:172.860000px;}
.y21_c01194{bottom:198.081000px;}
.y20_c01194{bottom:223.303500px;}
.y1f_c01194{bottom:248.524500px;}
.y1e_c01194{bottom:273.747000px;}
.y1d_c01194{bottom:298.968000px;}
.y1c_c01194{bottom:324.190500px;}
.y1b_c01194{bottom:349.411500px;}
.y1a_c01194{bottom:374.634000px;}
.y19_c01194{bottom:399.855000px;}
.y18_c01194{bottom:425.077500px;}
.y17_c01194{bottom:450.298500px;}
.y16_c01194{bottom:475.521000px;}
.y15_c01194{bottom:500.742000px;}
.y14_c01194{bottom:525.964500px;}
.y13_c01194{bottom:551.185500px;}
.y12_c01194{bottom:576.408000px;}
.y11_c01194{bottom:617.452500px;}
.y10_c01194{bottom:642.673500px;}
.yf_c01194{bottom:698.926500px;}
.ye_c01194{bottom:771.000000px;}
.yd_c01194{bottom:796.222500px;}
.yc_c01194{bottom:821.445000px;}
.yb_c01194{bottom:846.666000px;}
.ya_c01194{bottom:871.888500px;}
.y9_c01194{bottom:897.109500px;}
.y8_c01194{bottom:922.332000px;}
.y7_c01194{bottom:947.553000px;}
.y6_c01194{bottom:972.775500px;}
.y5_c01194{bottom:997.996500px;}
.y4_c01194{bottom:1023.219000px;}
.y3_c01194{bottom:1048.440000px;}
.y2_c01194{bottom:1073.662500px;}
.y1_c01194{bottom:1140.615000px;}
.h3_c01194{height:49.090500px;}
.h2_c01194{height:53.797500px;}
.h6_c01194{height:56.074320px;}
.h4_c01194{height:56.080320px;}
.h5_c01194{height:65.632500px;}
.h1_c01194{height:1263.750000px;}
.h0_c01194{height:1264.110000px;}
.w0_c01194{width:893.869500px;}
.w1_c01194{width:894.000000px;}
.x0_c01194{left:0.000000px;}
.x2_c01194{left:127.558500px;}
.x3_c01194{left:159.838500px;}
.x5_c01194{left:209.325000px;}
.x7_c01194{left:442.230000px;}
.x4_c01194{left:509.332500px;}
.x6_c01194{left:662.125500px;}
.x1_c01194{left:739.972500px;}
@media print{
.v0_c01194{vertical-align:0.000000pt;}
.v2_c01194{vertical-align:14.704000pt;}
.v1_c01194{vertical-align:21.114667pt;}
.ls4_c01194{letter-spacing:0.000000pt;}
.ls0_c01194{letter-spacing:24.591627pt;}
.ls1_c01194{letter-spacing:25.268960pt;}
.ls3_c01194{letter-spacing:27.924960pt;}
.ls2_c01194{letter-spacing:33.348960pt;}
.ws0_c01194{word-spacing:-0.063760pt;}
.ws1d_c01194{word-spacing:0.000000pt;}
.ws1c_c01194{word-spacing:14.836240pt;}
.ws13_c01194{word-spacing:16.290773pt;}
.ws19_c01194{word-spacing:16.407136pt;}
.ws17_c01194{word-spacing:16.465317pt;}
.ws11_c01194{word-spacing:16.581680pt;}
.wsc_c01194{word-spacing:16.988949pt;}
.ws1a_c01194{word-spacing:18.559845pt;}
.ws12_c01194{word-spacing:18.734389pt;}
.ws1_c01194{word-spacing:19.316203pt;}
.ws15_c01194{word-spacing:19.374384pt;}
.ws14_c01194{word-spacing:20.072560pt;}
.ws8_c01194{word-spacing:20.247104pt;}
.ws1b_c01194{word-spacing:20.654373pt;}
.ws10_c01194{word-spacing:20.887099pt;}
.wsa_c01194{word-spacing:20.945280pt;}
.ws18_c01194{word-spacing:21.003461pt;}
.ws7_c01194{word-spacing:21.352549pt;}
.wsf_c01194{word-spacing:21.468912pt;}
.ws3_c01194{word-spacing:21.818000pt;}
.ws2_c01194{word-spacing:21.876181pt;}
.ws9_c01194{word-spacing:21.934363pt;}
.wse_c01194{word-spacing:22.225269pt;}
.ws4_c01194{word-spacing:22.516176pt;}
.ws5_c01194{word-spacing:22.574357pt;}
.ws16_c01194{word-spacing:23.563440pt;}
.wsd_c01194{word-spacing:23.679803pt;}
.ws6_c01194{word-spacing:25.192517pt;}
.wsb_c01194{word-spacing:25.250699pt;}
._8_c01194{margin-left:-30.856059pt;}
._1_c01194{margin-left:-29.090667pt;}
._7_c01194{margin-left:-27.461589pt;}
._5_c01194{margin-left:-22.632539pt;}
._4_c01194{margin-left:-6.264469pt;}
._0_c01194{margin-left:-4.829051pt;}
._b_c01194{margin-left:-3.684539pt;}
._3_c01194{margin-left:-1.706373pt;}
._2_c01194{width:1.570896pt;}
._6_c01194{width:20.968603pt;}
._a_c01194{width:23.290811pt;}
._9_c01194{width:24.699536pt;}
.fs2_c01194{font-size:42.506667pt;}
.fs1_c01194{font-size:58.181333pt;}
.fs0_c01194{font-size:63.760000pt;}
.y0_c01194{bottom:0.000000pt;}
.y26_c01194{bottom:63.976000pt;}
.y25_c01194{bottom:86.394667pt;}
.y24_c01194{bottom:108.814667pt;}
.y23_c01194{bottom:131.233333pt;}
.y22_c01194{bottom:153.653333pt;}
.y21_c01194{bottom:176.072000pt;}
.y20_c01194{bottom:198.492000pt;}
.y1f_c01194{bottom:220.910667pt;}
.y1e_c01194{bottom:243.330667pt;}
.y1d_c01194{bottom:265.749333pt;}
.y1c_c01194{bottom:288.169333pt;}
.y1b_c01194{bottom:310.588000pt;}
.y1a_c01194{bottom:333.008000pt;}
.y19_c01194{bottom:355.426667pt;}
.y18_c01194{bottom:377.846667pt;}
.y17_c01194{bottom:400.265333pt;}
.y16_c01194{bottom:422.685333pt;}
.y15_c01194{bottom:445.104000pt;}
.y14_c01194{bottom:467.524000pt;}
.y13_c01194{bottom:489.942667pt;}
.y12_c01194{bottom:512.362667pt;}
.y11_c01194{bottom:548.846667pt;}
.y10_c01194{bottom:571.265333pt;}
.yf_c01194{bottom:621.268000pt;}
.ye_c01194{bottom:685.333333pt;}
.yd_c01194{bottom:707.753333pt;}
.yc_c01194{bottom:730.173333pt;}
.yb_c01194{bottom:752.592000pt;}
.ya_c01194{bottom:775.012000pt;}
.y9_c01194{bottom:797.430667pt;}
.y8_c01194{bottom:819.850667pt;}
.y7_c01194{bottom:842.269333pt;}
.y6_c01194{bottom:864.689333pt;}
.y5_c01194{bottom:887.108000pt;}
.y4_c01194{bottom:909.528000pt;}
.y3_c01194{bottom:931.946667pt;}
.y2_c01194{bottom:954.366667pt;}
.y1_c01194{bottom:1013.880000pt;}
.h3_c01194{height:43.636000pt;}
.h2_c01194{height:47.820000pt;}
.h6_c01194{height:49.843840pt;}
.h4_c01194{height:49.849173pt;}
.h5_c01194{height:58.340000pt;}
.h1_c01194{height:1123.333333pt;}
.h0_c01194{height:1123.653333pt;}
.w0_c01194{width:794.550667pt;}
.w1_c01194{width:794.666667pt;}
.x0_c01194{left:0.000000pt;}
.x2_c01194{left:113.385333pt;}
.x3_c01194{left:142.078667pt;}
.x5_c01194{left:186.066667pt;}
.x7_c01194{left:393.093333pt;}
.x4_c01194{left:452.740000pt;}
.x6_c01194{left:588.556000pt;}
.x1_c01194{left:657.753333pt;}
}





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

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





.ff0_c01195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01195;src:url('chunks/assets/font_34d43e6ca06ea3a28be5add5.woff2')format("woff");}.ff1_c01195{font-family:ff1_c01195;line-height:1.001000;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_c01195;src:url('chunks/assets/font_667ae4ca4fcfb3dd7e71f83d.woff2')format("woff");}.ff2_c01195{font-family:ff2_c01195;line-height:1.000000;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_c01195;src:url('chunks/assets/font_2a8c7ac8846e84f756fe962e.woff2')format("woff");}.ff3_c01195{font-family:ff3_c01195;line-height:0.697000;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_c01195{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_c01195{vertical-align:0.000000px;}
.v1_c01195{vertical-align:23.754000px;}
.ls1_c01195{letter-spacing:0.000000px;}
.ls0_c01195{letter-spacing:3.005580px;}
.sc__c01195{text-shadow:none;}
.sc0_c01195{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__c01195{-webkit-text-stroke:0px transparent;}
.sc0_c01195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01195{word-spacing:-0.071730px;}
.ws10_c01195{word-spacing:-0.065454px;}
.ws1b_c01195{word-spacing:0.000000px;}
.wse_c01195{word-spacing:17.934396px;}
.ws13_c01195{word-spacing:18.916206px;}
.ws18_c01195{word-spacing:19.178022px;}
.ws9_c01195{word-spacing:19.243476px;}
.ws16_c01195{word-spacing:20.028924px;}
.ws14_c01195{word-spacing:20.487102px;}
.ws17_c01195{word-spacing:21.272550px;}
.ws1_c01195{word-spacing:21.730728px;}
.wsf_c01195{word-spacing:21.796182px;}
.ws19_c01195{word-spacing:22.188906px;}
.wsa_c01195{word-spacing:22.516176px;}
.ws7_c01195{word-spacing:22.843446px;}
.wsd_c01195{word-spacing:23.236170px;}
.ws12_c01195{word-spacing:24.087072px;}
.ws4_c01195{word-spacing:24.479796px;}
.wsb_c01195{word-spacing:24.545250px;}
.ws15_c01195{word-spacing:25.919784px;}
.ws1a_c01195{word-spacing:26.574324px;}
.ws11_c01195{word-spacing:27.425226px;}
.ws8_c01195{word-spacing:27.687042px;}
.wsc_c01195{word-spacing:28.014312px;}
.ws2_c01195{word-spacing:29.388846px;}
.ws5_c01195{word-spacing:30.370656px;}
.ws3_c01195{word-spacing:30.501564px;}
.ws6_c01195{word-spacing:30.828834px;}
._8_c01195{margin-left:-34.428804px;}
._3_c01195{margin-left:-32.792454px;}
._2_c01195{margin-left:-30.239748px;}
._7_c01195{margin-left:-25.461606px;}
._6_c01195{margin-left:-7.199940px;}
._5_c01195{margin-left:-5.432682px;}
._4_c01195{margin-left:-3.534516px;}
._0_c01195{margin-left:-1.898166px;}
._1_c01195{width:1.832712px;}
._9_c01195{width:3.534516px;}
.fc0_c01195{color:rgb(0,0,0);}
.fs2_c01195{font-size:47.820000px;}
.fs1_c01195{font-size:65.454000px;}
.fs0_c01195{font-size:71.730000px;}
.y0_c01195{bottom:0.000000px;}
.y20_c01195{bottom:209.412000px;}
.y1f_c01195{bottom:252.567000px;}
.y1e_c01195{bottom:295.722000px;}
.y1d_c01195{bottom:320.943000px;}
.y1c_c01195{bottom:346.165500px;}
.y1b_c01195{bottom:371.386500px;}
.y1a_c01195{bottom:414.541500px;}
.y19_c01195{bottom:439.762500px;}
.y18_c01195{bottom:464.985000px;}
.y17_c01195{bottom:508.140000px;}
.y16_c01195{bottom:533.361000px;}
.y15_c01195{bottom:576.516000px;}
.y14_c01195{bottom:601.737000px;}
.y13_c01195{bottom:626.959500px;}
.y12_c01195{bottom:652.180500px;}
.y11_c01195{bottom:695.335500px;}
.y10_c01195{bottom:720.558000px;}
.yf_c01195{bottom:745.779000px;}
.ye_c01195{bottom:771.001500px;}
.yd_c01195{bottom:796.222500px;}
.yc_c01195{bottom:821.445000px;}
.yb_c01195{bottom:846.666000px;}
.ya_c01195{bottom:871.888500px;}
.y9_c01195{bottom:897.109500px;}
.y8_c01195{bottom:922.332000px;}
.y7_c01195{bottom:947.553000px;}
.y6_c01195{bottom:972.775500px;}
.y5_c01195{bottom:997.996500px;}
.y4_c01195{bottom:1023.219000px;}
.y3_c01195{bottom:1048.440000px;}
.y2_c01195{bottom:1073.662500px;}
.y1_c01195{bottom:1140.615000px;}
.h3_c01195{height:49.090500px;}
.h2_c01195{height:53.797500px;}
.h4_c01195{height:56.080320px;}
.h1_c01195{height:1263.750000px;}
.h0_c01195{height:1264.110000px;}
.w0_c01195{width:893.869500px;}
.w1_c01195{width:894.000000px;}
.x0_c01195{left:0.000000px;}
.x3_c01195{left:127.558500px;}
.x2_c01195{left:159.838500px;}
.x1_c01195{left:739.972500px;}
@media print{
.v0_c01195{vertical-align:0.000000pt;}
.v1_c01195{vertical-align:21.114667pt;}
.ls1_c01195{letter-spacing:0.000000pt;}
.ls0_c01195{letter-spacing:2.671627pt;}
.ws0_c01195{word-spacing:-0.063760pt;}
.ws10_c01195{word-spacing:-0.058181pt;}
.ws1b_c01195{word-spacing:0.000000pt;}
.wse_c01195{word-spacing:15.941685pt;}
.ws13_c01195{word-spacing:16.814405pt;}
.ws18_c01195{word-spacing:17.047131pt;}
.ws9_c01195{word-spacing:17.105312pt;}
.ws16_c01195{word-spacing:17.803488pt;}
.ws14_c01195{word-spacing:18.210757pt;}
.ws17_c01195{word-spacing:18.908933pt;}
.ws1_c01195{word-spacing:19.316203pt;}
.wsf_c01195{word-spacing:19.374384pt;}
.ws19_c01195{word-spacing:19.723472pt;}
.wsa_c01195{word-spacing:20.014379pt;}
.ws7_c01195{word-spacing:20.305285pt;}
.wsd_c01195{word-spacing:20.654373pt;}
.ws12_c01195{word-spacing:21.410731pt;}
.ws4_c01195{word-spacing:21.759819pt;}
.wsb_c01195{word-spacing:21.818000pt;}
.ws15_c01195{word-spacing:23.039808pt;}
.ws1a_c01195{word-spacing:23.621621pt;}
.ws11_c01195{word-spacing:24.377979pt;}
.ws8_c01195{word-spacing:24.610704pt;}
.wsc_c01195{word-spacing:24.901611pt;}
.ws2_c01195{word-spacing:26.123419pt;}
.ws5_c01195{word-spacing:26.996139pt;}
.ws3_c01195{word-spacing:27.112501pt;}
.ws6_c01195{word-spacing:27.403408pt;}
._8_c01195{margin-left:-30.603381pt;}
._3_c01195{margin-left:-29.148848pt;}
._2_c01195{margin-left:-26.879776pt;}
._7_c01195{margin-left:-22.632539pt;}
._6_c01195{margin-left:-6.399947pt;}
._5_c01195{margin-left:-4.829051pt;}
._4_c01195{margin-left:-3.141792pt;}
._0_c01195{margin-left:-1.687259pt;}
._1_c01195{width:1.629077pt;}
._9_c01195{width:3.141792pt;}
.fs2_c01195{font-size:42.506667pt;}
.fs1_c01195{font-size:58.181333pt;}
.fs0_c01195{font-size:63.760000pt;}
.y0_c01195{bottom:0.000000pt;}
.y20_c01195{bottom:186.144000pt;}
.y1f_c01195{bottom:224.504000pt;}
.y1e_c01195{bottom:262.864000pt;}
.y1d_c01195{bottom:285.282667pt;}
.y1c_c01195{bottom:307.702667pt;}
.y1b_c01195{bottom:330.121333pt;}
.y1a_c01195{bottom:368.481333pt;}
.y19_c01195{bottom:390.900000pt;}
.y18_c01195{bottom:413.320000pt;}
.y17_c01195{bottom:451.680000pt;}
.y16_c01195{bottom:474.098667pt;}
.y15_c01195{bottom:512.458667pt;}
.y14_c01195{bottom:534.877333pt;}
.y13_c01195{bottom:557.297333pt;}
.y12_c01195{bottom:579.716000pt;}
.y11_c01195{bottom:618.076000pt;}
.y10_c01195{bottom:640.496000pt;}
.yf_c01195{bottom:662.914667pt;}
.ye_c01195{bottom:685.334667pt;}
.yd_c01195{bottom:707.753333pt;}
.yc_c01195{bottom:730.173333pt;}
.yb_c01195{bottom:752.592000pt;}
.ya_c01195{bottom:775.012000pt;}
.y9_c01195{bottom:797.430667pt;}
.y8_c01195{bottom:819.850667pt;}
.y7_c01195{bottom:842.269333pt;}
.y6_c01195{bottom:864.689333pt;}
.y5_c01195{bottom:887.108000pt;}
.y4_c01195{bottom:909.528000pt;}
.y3_c01195{bottom:931.946667pt;}
.y2_c01195{bottom:954.366667pt;}
.y1_c01195{bottom:1013.880000pt;}
.h3_c01195{height:43.636000pt;}
.h2_c01195{height:47.820000pt;}
.h4_c01195{height:49.849173pt;}
.h1_c01195{height:1123.333333pt;}
.h0_c01195{height:1123.653333pt;}
.w0_c01195{width:794.550667pt;}
.w1_c01195{width:794.666667pt;}
.x0_c01195{left:0.000000pt;}
.x3_c01195{left:113.385333pt;}
.x2_c01195{left:142.078667pt;}
.x1_c01195{left:657.753333pt;}
}





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

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





.ff0_c01196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01196;src:url('chunks/assets/font_1294e880af8f0142e83d537d.woff2')format("woff");}.ff1_c01196{font-family:ff1_c01196;line-height:1.001000;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_c01196;src:url('chunks/assets/font_1473a6d3485a0320731cec06.woff2')format("woff");}.ff2_c01196{font-family:ff2_c01196;line-height:1.000000;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_c01196;src:url('chunks/assets/font_e4788873e47fe31e3d5aaa2f.woff2')format("woff");}.ff3_c01196{font-family:ff3_c01196;line-height:1.000000;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_c01196;src:url('chunks/assets/font_2106aaac270f8e33c9d84684.woff2')format("woff");}.ff4_c01196{font-family:ff4_c01196;line-height:0.697000;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_c01196{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_c01196{vertical-align:0.000000px;}
.v1_c01196{vertical-align:23.754000px;}
.ls4_c01196{letter-spacing:0.000000px;}
.ls1_c01196{letter-spacing:19.271580px;}
.ls0_c01196{letter-spacing:24.821580px;}
.ls3_c01196{letter-spacing:27.461580px;}
.ls2_c01196{letter-spacing:33.095580px;}
.sc__c01196{text-shadow:none;}
.sc0_c01196{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__c01196{-webkit-text-stroke:0px transparent;}
.sc0_c01196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01196{word-spacing:-0.071730px;}
.ws3_c01196{word-spacing:-0.065454px;}
.ws19_c01196{word-spacing:0.000000px;}
.ws10_c01196{word-spacing:16.167138px;}
.ws14_c01196{word-spacing:16.232592px;}
.wsd_c01196{word-spacing:16.298046px;}
.wsb_c01196{word-spacing:18.981660px;}
.ws13_c01196{word-spacing:19.767108px;}
.ws12_c01196{word-spacing:21.599820px;}
.wsc_c01196{word-spacing:21.665274px;}
.ws4_c01196{word-spacing:21.730728px;}
.ws6_c01196{word-spacing:21.796182px;}
.wse_c01196{word-spacing:21.861636px;}
.ws7_c01196{word-spacing:22.385268px;}
.ws11_c01196{word-spacing:23.039808px;}
.ws8_c01196{word-spacing:23.628894px;}
.ws9_c01196{word-spacing:23.956164px;}
.ws17_c01196{word-spacing:24.348888px;}
.ws18_c01196{word-spacing:24.676158px;}
.ws2_c01196{word-spacing:25.003428px;}
.ws5_c01196{word-spacing:27.359772px;}
.wsa_c01196{word-spacing:27.752496px;}
.ws16_c01196{word-spacing:28.930668px;}
.ws15_c01196{word-spacing:30.043386px;}
.wsf_c01196{word-spacing:30.239748px;}
.ws1_c01196{word-spacing:31.876098px;}
._4_c01196{margin-left:-37.636050px;}
._2_c01196{margin-left:-36.065154px;}
._9_c01196{margin-left:-34.559712px;}
._8_c01196{margin-left:-32.923362px;}
._7_c01196{margin-left:-30.959742px;}
._b_c01196{margin-left:-25.461606px;}
._a_c01196{margin-left:-7.265394px;}
._5_c01196{margin-left:-6.218130px;}
._c_c01196{margin-left:-3.534516px;}
._0_c01196{margin-left:-2.225436px;}
._1_c01196{margin-left:-1.112718px;}
._3_c01196{width:2.029074px;}
._6_c01196{width:3.596970px;}
._d_c01196{width:5.039958px;}
._e_c01196{width:15.247782px;}
._f_c01196{width:27.948858px;}
.fc0_c01196{color:rgb(0,0,0);}
.fs2_c01196{font-size:47.820000px;}
.fs1_c01196{font-size:65.454000px;}
.fs0_c01196{font-size:71.730000px;}
.y0_c01196{bottom:0.000000px;}
.y26_c01196{bottom:71.973000px;}
.y25_c01196{bottom:97.194000px;}
.y24_c01196{bottom:122.416500px;}
.y23_c01196{bottom:147.637500px;}
.y22_c01196{bottom:172.860000px;}
.y21_c01196{bottom:198.081000px;}
.y20_c01196{bottom:223.303500px;}
.y1f_c01196{bottom:248.524500px;}
.y1e_c01196{bottom:273.747000px;}
.y1d_c01196{bottom:314.703000px;}
.y1c_c01196{bottom:339.925500px;}
.y1b_c01196{bottom:365.146500px;}
.y1a_c01196{bottom:390.369000px;}
.y19_c01196{bottom:415.590000px;}
.y18_c01196{bottom:440.812500px;}
.y17_c01196{bottom:466.033500px;}
.y16_c01196{bottom:491.256000px;}
.y15_c01196{bottom:516.477000px;}
.y14_c01196{bottom:541.699500px;}
.y13_c01196{bottom:566.920500px;}
.y12_c01196{bottom:592.143000px;}
.y11_c01196{bottom:617.364000px;}
.y10_c01196{bottom:642.586500px;}
.yf_c01196{bottom:667.807500px;}
.ye_c01196{bottom:693.030000px;}
.yd_c01196{bottom:718.251000px;}
.yc_c01196{bottom:759.208500px;}
.yb_c01196{bottom:784.429500px;}
.ya_c01196{bottom:809.652000px;}
.y9_c01196{bottom:834.873000px;}
.y8_c01196{bottom:875.830500px;}
.y7_c01196{bottom:901.051500px;}
.y6_c01196{bottom:926.274000px;}
.y5_c01196{bottom:967.230000px;}
.y4_c01196{bottom:992.452500px;}
.y3_c01196{bottom:1017.673500px;}
.y2_c01196{bottom:1073.662500px;}
.y1_c01196{bottom:1140.615000px;}
.h3_c01196{height:49.090500px;}
.h2_c01196{height:53.797500px;}
.h4_c01196{height:56.080320px;}
.h1_c01196{height:1263.750000px;}
.h0_c01196{height:1264.110000px;}
.w0_c01196{width:893.869500px;}
.w1_c01196{width:894.000000px;}
.x0_c01196{left:0.000000px;}
.x4_c01196{left:127.558500px;}
.x3_c01196{left:159.838500px;}
.x2_c01196{left:442.230000px;}
.x1_c01196{left:739.972500px;}
@media print{
.v0_c01196{vertical-align:0.000000pt;}
.v1_c01196{vertical-align:21.114667pt;}
.ls4_c01196{letter-spacing:0.000000pt;}
.ls1_c01196{letter-spacing:17.130293pt;}
.ls0_c01196{letter-spacing:22.063627pt;}
.ls3_c01196{letter-spacing:24.410293pt;}
.ls2_c01196{letter-spacing:29.418293pt;}
.ws0_c01196{word-spacing:-0.063760pt;}
.ws3_c01196{word-spacing:-0.058181pt;}
.ws19_c01196{word-spacing:0.000000pt;}
.ws10_c01196{word-spacing:14.370789pt;}
.ws14_c01196{word-spacing:14.428971pt;}
.wsd_c01196{word-spacing:14.487152pt;}
.wsb_c01196{word-spacing:16.872587pt;}
.ws13_c01196{word-spacing:17.570763pt;}
.ws12_c01196{word-spacing:19.199840pt;}
.wsc_c01196{word-spacing:19.258021pt;}
.ws4_c01196{word-spacing:19.316203pt;}
.ws6_c01196{word-spacing:19.374384pt;}
.wse_c01196{word-spacing:19.432565pt;}
.ws7_c01196{word-spacing:19.898016pt;}
.ws11_c01196{word-spacing:20.479829pt;}
.ws8_c01196{word-spacing:21.003461pt;}
.ws9_c01196{word-spacing:21.294368pt;}
.ws17_c01196{word-spacing:21.643456pt;}
.ws18_c01196{word-spacing:21.934363pt;}
.ws2_c01196{word-spacing:22.225269pt;}
.ws5_c01196{word-spacing:24.319797pt;}
.wsa_c01196{word-spacing:24.668885pt;}
.ws16_c01196{word-spacing:25.716149pt;}
.ws15_c01196{word-spacing:26.705232pt;}
.wsf_c01196{word-spacing:26.879776pt;}
.ws1_c01196{word-spacing:28.334309pt;}
._4_c01196{margin-left:-33.454267pt;}
._2_c01196{margin-left:-32.057915pt;}
._9_c01196{margin-left:-30.719744pt;}
._8_c01196{margin-left:-29.265211pt;}
._7_c01196{margin-left:-27.519771pt;}
._b_c01196{margin-left:-22.632539pt;}
._a_c01196{margin-left:-6.458128pt;}
._5_c01196{margin-left:-5.527227pt;}
._c_c01196{margin-left:-3.141792pt;}
._0_c01196{margin-left:-1.978165pt;}
._1_c01196{margin-left:-0.989083pt;}
._3_c01196{width:1.803621pt;}
._6_c01196{width:3.197307pt;}
._d_c01196{width:4.479963pt;}
._e_c01196{width:13.553584pt;}
._f_c01196{width:24.843429pt;}
.fs2_c01196{font-size:42.506667pt;}
.fs1_c01196{font-size:58.181333pt;}
.fs0_c01196{font-size:63.760000pt;}
.y0_c01196{bottom:0.000000pt;}
.y26_c01196{bottom:63.976000pt;}
.y25_c01196{bottom:86.394667pt;}
.y24_c01196{bottom:108.814667pt;}
.y23_c01196{bottom:131.233333pt;}
.y22_c01196{bottom:153.653333pt;}
.y21_c01196{bottom:176.072000pt;}
.y20_c01196{bottom:198.492000pt;}
.y1f_c01196{bottom:220.910667pt;}
.y1e_c01196{bottom:243.330667pt;}
.y1d_c01196{bottom:279.736000pt;}
.y1c_c01196{bottom:302.156000pt;}
.y1b_c01196{bottom:324.574667pt;}
.y1a_c01196{bottom:346.994667pt;}
.y19_c01196{bottom:369.413333pt;}
.y18_c01196{bottom:391.833333pt;}
.y17_c01196{bottom:414.252000pt;}
.y16_c01196{bottom:436.672000pt;}
.y15_c01196{bottom:459.090667pt;}
.y14_c01196{bottom:481.510667pt;}
.y13_c01196{bottom:503.929333pt;}
.y12_c01196{bottom:526.349333pt;}
.y11_c01196{bottom:548.768000pt;}
.y10_c01196{bottom:571.188000pt;}
.yf_c01196{bottom:593.606667pt;}
.ye_c01196{bottom:616.026667pt;}
.yd_c01196{bottom:638.445333pt;}
.yc_c01196{bottom:674.852000pt;}
.yb_c01196{bottom:697.270667pt;}
.ya_c01196{bottom:719.690667pt;}
.y9_c01196{bottom:742.109333pt;}
.y8_c01196{bottom:778.516000pt;}
.y7_c01196{bottom:800.934667pt;}
.y6_c01196{bottom:823.354667pt;}
.y5_c01196{bottom:859.760000pt;}
.y4_c01196{bottom:882.180000pt;}
.y3_c01196{bottom:904.598667pt;}
.y2_c01196{bottom:954.366667pt;}
.y1_c01196{bottom:1013.880000pt;}
.h3_c01196{height:43.636000pt;}
.h2_c01196{height:47.820000pt;}
.h4_c01196{height:49.849173pt;}
.h1_c01196{height:1123.333333pt;}
.h0_c01196{height:1123.653333pt;}
.w0_c01196{width:794.550667pt;}
.w1_c01196{width:794.666667pt;}
.x0_c01196{left:0.000000pt;}
.x4_c01196{left:113.385333pt;}
.x3_c01196{left:142.078667pt;}
.x2_c01196{left:393.093333pt;}
.x1_c01196{left:657.753333pt;}
}





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

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





.ff0_c01197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01197;src:url('chunks/assets/font_82dd7e464fee364f7c1135bf.woff2')format("woff");}.ff1_c01197{font-family:ff1_c01197;line-height:1.001000;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_c01197;src:url('chunks/assets/font_07169131b002ab3f78527e03.woff2')format("woff");}.ff2_c01197{font-family:ff2_c01197;line-height:1.000000;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_c01197;src:url('chunks/assets/font_2032a70c29a987593a1c5757.woff2')format("woff");}.ff3_c01197{font-family:ff3_c01197;line-height:0.697000;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_c01197{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_c01197{vertical-align:0.000000px;}
.v1_c01197{vertical-align:23.748000px;}
.ls3_c01197{letter-spacing:0.000000px;}
.ls2_c01197{letter-spacing:24.821580px;}
.ls1_c01197{letter-spacing:24.935580px;}
.ls0_c01197{letter-spacing:26.597580px;}
.sc__c01197{text-shadow:none;}
.sc0_c01197{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__c01197{-webkit-text-stroke:0px transparent;}
.sc0_c01197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01197{word-spacing:-0.071730px;}
.ws1_c01197{word-spacing:-0.065454px;}
.ws1c_c01197{word-spacing:0.000000px;}
.ws9_c01197{word-spacing:16.690770px;}
.wsd_c01197{word-spacing:17.083494px;}
.ws15_c01197{word-spacing:17.214402px;}
.ws11_c01197{word-spacing:17.541672px;}
.ws1a_c01197{word-spacing:17.607126px;}
.wsa_c01197{word-spacing:18.916206px;}
.ws19_c01197{word-spacing:21.207096px;}
.ws12_c01197{word-spacing:21.272550px;}
.ws4_c01197{word-spacing:21.730728px;}
.ws6_c01197{word-spacing:21.796182px;}
.ws5_c01197{word-spacing:21.861636px;}
.wsc_c01197{word-spacing:21.927090px;}
.ws18_c01197{word-spacing:22.057998px;}
.ws14_c01197{word-spacing:23.236170px;}
.ws10_c01197{word-spacing:23.301624px;}
.ws2_c01197{word-spacing:23.497986px;}
.ws13_c01197{word-spacing:23.628894px;}
.ws1b_c01197{word-spacing:23.890710px;}
.wsf_c01197{word-spacing:24.872520px;}
.ws3_c01197{word-spacing:25.003428px;}
.wse_c01197{word-spacing:25.330698px;}
.ws7_c01197{word-spacing:25.592514px;}
.ws8_c01197{word-spacing:28.145220px;}
.wsb_c01197{word-spacing:28.734306px;}
.ws17_c01197{word-spacing:29.388846px;}
.ws16_c01197{word-spacing:29.977932px;}
._2_c01197{margin-left:-34.494258px;}
._4_c01197{margin-left:-32.727000px;}
._9_c01197{margin-left:-31.084650px;}
._6_c01197{margin-left:-25.461606px;}
._5_c01197{margin-left:-7.393302px;}
._7_c01197{margin-left:-5.563590px;}
._3_c01197{margin-left:-3.730878px;}
._0_c01197{margin-left:-1.770258px;}
._1_c01197{width:1.832712px;}
._8_c01197{width:3.602970px;}
.fc0_c01197{color:rgb(0,0,0);}
.fs2_c01197{font-size:47.820000px;}
.fs1_c01197{font-size:65.454000px;}
.fs0_c01197{font-size:71.730000px;}
.y0_c01197{bottom:0.000000px;}
.y26_c01197{bottom:93.948000px;}
.y25_c01197{bottom:137.101500px;}
.y24_c01197{bottom:162.324000px;}
.y23_c01197{bottom:187.545000px;}
.y22_c01197{bottom:212.767500px;}
.y21_c01197{bottom:237.988500px;}
.y20_c01197{bottom:263.211000px;}
.y1f_c01197{bottom:288.432000px;}
.y1e_c01197{bottom:313.654500px;}
.y1d_c01197{bottom:338.875500px;}
.y1c_c01197{bottom:364.098000px;}
.y1b_c01197{bottom:389.319000px;}
.y1a_c01197{bottom:414.541500px;}
.y19_c01197{bottom:457.696500px;}
.y18_c01197{bottom:482.917500px;}
.y17_c01197{bottom:508.140000px;}
.y16_c01197{bottom:533.361000px;}
.y15_c01197{bottom:558.583500px;}
.y14_c01197{bottom:583.804500px;}
.y13_c01197{bottom:609.027000px;}
.y12_c01197{bottom:634.248000px;}
.y11_c01197{bottom:659.470500px;}
.y10_c01197{bottom:684.691500px;}
.yf_c01197{bottom:709.914000px;}
.ye_c01197{bottom:735.135000px;}
.yd_c01197{bottom:760.357500px;}
.yc_c01197{bottom:785.578500px;}
.yb_c01197{bottom:810.801000px;}
.ya_c01197{bottom:853.954500px;}
.y9_c01197{bottom:879.177000px;}
.y8_c01197{bottom:904.398000px;}
.y7_c01197{bottom:929.620500px;}
.y6_c01197{bottom:972.775500px;}
.y5_c01197{bottom:997.996500px;}
.y4_c01197{bottom:1023.219000px;}
.y3_c01197{bottom:1048.440000px;}
.y2_c01197{bottom:1073.662500px;}
.y1_c01197{bottom:1140.615000px;}
.h4_c01197{height:49.090500px;}
.h2_c01197{height:53.797500px;}
.h3_c01197{height:56.074320px;}
.h5_c01197{height:56.080320px;}
.h1_c01197{height:1263.750000px;}
.h0_c01197{height:1264.110000px;}
.w0_c01197{width:893.869500px;}
.w1_c01197{width:894.000000px;}
.x0_c01197{left:0.000000px;}
.x3_c01197{left:127.558500px;}
.x2_c01197{left:159.838500px;}
.x1_c01197{left:739.972500px;}
@media print{
.v0_c01197{vertical-align:0.000000pt;}
.v1_c01197{vertical-align:21.109333pt;}
.ls3_c01197{letter-spacing:0.000000pt;}
.ls2_c01197{letter-spacing:22.063627pt;}
.ls1_c01197{letter-spacing:22.164960pt;}
.ls0_c01197{letter-spacing:23.642293pt;}
.ws0_c01197{word-spacing:-0.063760pt;}
.ws1_c01197{word-spacing:-0.058181pt;}
.ws1c_c01197{word-spacing:0.000000pt;}
.ws9_c01197{word-spacing:14.836240pt;}
.wsd_c01197{word-spacing:15.185328pt;}
.ws15_c01197{word-spacing:15.301691pt;}
.ws11_c01197{word-spacing:15.592597pt;}
.ws1a_c01197{word-spacing:15.650779pt;}
.wsa_c01197{word-spacing:16.814405pt;}
.ws19_c01197{word-spacing:18.850752pt;}
.ws12_c01197{word-spacing:18.908933pt;}
.ws4_c01197{word-spacing:19.316203pt;}
.ws6_c01197{word-spacing:19.374384pt;}
.ws5_c01197{word-spacing:19.432565pt;}
.wsc_c01197{word-spacing:19.490747pt;}
.ws18_c01197{word-spacing:19.607109pt;}
.ws14_c01197{word-spacing:20.654373pt;}
.ws10_c01197{word-spacing:20.712555pt;}
.ws2_c01197{word-spacing:20.887099pt;}
.ws13_c01197{word-spacing:21.003461pt;}
.ws1b_c01197{word-spacing:21.236187pt;}
.wsf_c01197{word-spacing:22.108907pt;}
.ws3_c01197{word-spacing:22.225269pt;}
.wse_c01197{word-spacing:22.516176pt;}
.ws7_c01197{word-spacing:22.748901pt;}
.ws8_c01197{word-spacing:25.017973pt;}
.wsb_c01197{word-spacing:25.541605pt;}
.ws17_c01197{word-spacing:26.123419pt;}
.ws16_c01197{word-spacing:26.647051pt;}
._2_c01197{margin-left:-30.661563pt;}
._4_c01197{margin-left:-29.090667pt;}
._9_c01197{margin-left:-27.630800pt;}
._6_c01197{margin-left:-22.632539pt;}
._5_c01197{margin-left:-6.571824pt;}
._7_c01197{margin-left:-4.945413pt;}
._3_c01197{margin-left:-3.316336pt;}
._0_c01197{margin-left:-1.573563pt;}
._1_c01197{width:1.629077pt;}
._8_c01197{width:3.202640pt;}
.fs2_c01197{font-size:42.506667pt;}
.fs1_c01197{font-size:58.181333pt;}
.fs0_c01197{font-size:63.760000pt;}
.y0_c01197{bottom:0.000000pt;}
.y26_c01197{bottom:83.509333pt;}
.y25_c01197{bottom:121.868000pt;}
.y24_c01197{bottom:144.288000pt;}
.y23_c01197{bottom:166.706667pt;}
.y22_c01197{bottom:189.126667pt;}
.y21_c01197{bottom:211.545333pt;}
.y20_c01197{bottom:233.965333pt;}
.y1f_c01197{bottom:256.384000pt;}
.y1e_c01197{bottom:278.804000pt;}
.y1d_c01197{bottom:301.222667pt;}
.y1c_c01197{bottom:323.642667pt;}
.y1b_c01197{bottom:346.061333pt;}
.y1a_c01197{bottom:368.481333pt;}
.y19_c01197{bottom:406.841333pt;}
.y18_c01197{bottom:429.260000pt;}
.y17_c01197{bottom:451.680000pt;}
.y16_c01197{bottom:474.098667pt;}
.y15_c01197{bottom:496.518667pt;}
.y14_c01197{bottom:518.937333pt;}
.y13_c01197{bottom:541.357333pt;}
.y12_c01197{bottom:563.776000pt;}
.y11_c01197{bottom:586.196000pt;}
.y10_c01197{bottom:608.614667pt;}
.yf_c01197{bottom:631.034667pt;}
.ye_c01197{bottom:653.453333pt;}
.yd_c01197{bottom:675.873333pt;}
.yc_c01197{bottom:698.292000pt;}
.yb_c01197{bottom:720.712000pt;}
.ya_c01197{bottom:759.070667pt;}
.y9_c01197{bottom:781.490667pt;}
.y8_c01197{bottom:803.909333pt;}
.y7_c01197{bottom:826.329333pt;}
.y6_c01197{bottom:864.689333pt;}
.y5_c01197{bottom:887.108000pt;}
.y4_c01197{bottom:909.528000pt;}
.y3_c01197{bottom:931.946667pt;}
.y2_c01197{bottom:954.366667pt;}
.y1_c01197{bottom:1013.880000pt;}
.h4_c01197{height:43.636000pt;}
.h2_c01197{height:47.820000pt;}
.h3_c01197{height:49.843840pt;}
.h5_c01197{height:49.849173pt;}
.h1_c01197{height:1123.333333pt;}
.h0_c01197{height:1123.653333pt;}
.w0_c01197{width:794.550667pt;}
.w1_c01197{width:794.666667pt;}
.x0_c01197{left:0.000000pt;}
.x3_c01197{left:113.385333pt;}
.x2_c01197{left:142.078667pt;}
.x1_c01197{left:657.753333pt;}
}





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

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





.ff0_c01198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01198;src:url('chunks/assets/font_fa540c6ed4c73a1051fa65de.woff2')format("woff");}.ff1_c01198{font-family:ff1_c01198;line-height:1.001000;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_c01198;src:url('chunks/assets/font_d1c2388c2c1fa59f5b4facf6.woff2')format("woff");}.ff2_c01198{font-family:ff2_c01198;line-height:1.000000;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_c01198;src:url('chunks/assets/font_a03b174b9ab5bacd2a02a1f1.woff2')format("woff");}.ff3_c01198{font-family:ff3_c01198;line-height:0.697000;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_c01198{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_c01198{vertical-align:0.000000px;}
.v1_c01198{vertical-align:23.754000px;}
.ls2_c01198{letter-spacing:0.000000px;}
.ls1_c01198{letter-spacing:24.815580px;}
.ls0_c01198{letter-spacing:24.821580px;}
.sc__c01198{text-shadow:none;}
.sc0_c01198{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__c01198{-webkit-text-stroke:0px transparent;}
.sc0_c01198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01198{word-spacing:-0.071730px;}
.ws6_c01198{word-spacing:-0.065454px;}
.ws16_c01198{word-spacing:0.000000px;}
.ws4_c01198{word-spacing:14.988966px;}
.ws7_c01198{word-spacing:16.036230px;}
.ws9_c01198{word-spacing:16.625316px;}
.ws2_c01198{word-spacing:16.821678px;}
.wsd_c01198{word-spacing:16.952586px;}
.ws3_c01198{word-spacing:18.523482px;}
.ws14_c01198{word-spacing:19.112568px;}
.wsb_c01198{word-spacing:19.636200px;}
.ws5_c01198{word-spacing:21.730728px;}
.wsf_c01198{word-spacing:21.796182px;}
.ws13_c01198{word-spacing:21.927090px;}
.ws1_c01198{word-spacing:24.021618px;}
.ws8_c01198{word-spacing:26.050692px;}
.wsa_c01198{word-spacing:26.377962px;}
.wsc_c01198{word-spacing:28.276128px;}
.ws15_c01198{word-spacing:28.341582px;}
.ws12_c01198{word-spacing:28.996122px;}
.wse_c01198{word-spacing:29.257938px;}
.ws10_c01198{word-spacing:31.679736px;}
.ws11_c01198{word-spacing:32.007006px;}
._5_c01198{margin-left:-34.363350px;}
._0_c01198{margin-left:-32.727000px;}
._7_c01198{margin-left:-25.461606px;}
._6_c01198{margin-left:-7.069032px;}
._4_c01198{margin-left:-5.498136px;}
._1_c01198{margin-left:-3.730878px;}
._2_c01198{margin-left:-1.898166px;}
._3_c01198{width:1.636350px;}
._8_c01198{width:3.861786px;}
.fc0_c01198{color:rgb(0,0,0);}
.fs2_c01198{font-size:47.820000px;}
.fs1_c01198{font-size:65.454000px;}
.fs0_c01198{font-size:71.730000px;}
.y0_c01198{bottom:0.000000px;}
.y20_c01198{bottom:227.346000px;}
.y1f_c01198{bottom:252.567000px;}
.y1e_c01198{bottom:277.789500px;}
.y1d_c01198{bottom:303.010500px;}
.y1c_c01198{bottom:328.233000px;}
.y1b_c01198{bottom:353.454000px;}
.y1a_c01198{bottom:396.609000px;}
.y19_c01198{bottom:421.830000px;}
.y18_c01198{bottom:447.052500px;}
.y17_c01198{bottom:472.273500px;}
.y16_c01198{bottom:497.496000px;}
.y15_c01198{bottom:540.651000px;}
.y14_c01198{bottom:565.872000px;}
.y13_c01198{bottom:591.094500px;}
.y12_c01198{bottom:616.315500px;}
.y11_c01198{bottom:641.538000px;}
.y10_c01198{bottom:666.759000px;}
.yf_c01198{bottom:709.914000px;}
.ye_c01198{bottom:735.135000px;}
.yd_c01198{bottom:760.357500px;}
.yc_c01198{bottom:785.578500px;}
.yb_c01198{bottom:828.733500px;}
.ya_c01198{bottom:853.954500px;}
.y9_c01198{bottom:879.177000px;}
.y8_c01198{bottom:904.398000px;}
.y7_c01198{bottom:929.620500px;}
.y6_c01198{bottom:972.775500px;}
.y5_c01198{bottom:997.996500px;}
.y4_c01198{bottom:1023.219000px;}
.y3_c01198{bottom:1048.440000px;}
.y2_c01198{bottom:1073.662500px;}
.y1_c01198{bottom:1140.615000px;}
.h3_c01198{height:49.090500px;}
.h2_c01198{height:53.797500px;}
.h4_c01198{height:56.080320px;}
.h1_c01198{height:1263.750000px;}
.h0_c01198{height:1264.110000px;}
.w0_c01198{width:893.869500px;}
.w1_c01198{width:894.000000px;}
.x0_c01198{left:0.000000px;}
.x3_c01198{left:127.558500px;}
.x2_c01198{left:159.838500px;}
.x1_c01198{left:739.972500px;}
@media print{
.v0_c01198{vertical-align:0.000000pt;}
.v1_c01198{vertical-align:21.114667pt;}
.ls2_c01198{letter-spacing:0.000000pt;}
.ls1_c01198{letter-spacing:22.058293pt;}
.ls0_c01198{letter-spacing:22.063627pt;}
.ws0_c01198{word-spacing:-0.063760pt;}
.ws6_c01198{word-spacing:-0.058181pt;}
.ws16_c01198{word-spacing:0.000000pt;}
.ws4_c01198{word-spacing:13.323525pt;}
.ws7_c01198{word-spacing:14.254427pt;}
.ws9_c01198{word-spacing:14.778059pt;}
.ws2_c01198{word-spacing:14.952603pt;}
.wsd_c01198{word-spacing:15.068965pt;}
.ws3_c01198{word-spacing:16.465317pt;}
.ws14_c01198{word-spacing:16.988949pt;}
.wsb_c01198{word-spacing:17.454400pt;}
.ws5_c01198{word-spacing:19.316203pt;}
.wsf_c01198{word-spacing:19.374384pt;}
.ws13_c01198{word-spacing:19.490747pt;}
.ws1_c01198{word-spacing:21.352549pt;}
.ws8_c01198{word-spacing:23.156171pt;}
.wsa_c01198{word-spacing:23.447077pt;}
.wsc_c01198{word-spacing:25.134336pt;}
.ws15_c01198{word-spacing:25.192517pt;}
.ws12_c01198{word-spacing:25.774331pt;}
.wse_c01198{word-spacing:26.007056pt;}
.ws10_c01198{word-spacing:28.159765pt;}
.ws11_c01198{word-spacing:28.450672pt;}
._5_c01198{margin-left:-30.545200pt;}
._0_c01198{margin-left:-29.090667pt;}
._7_c01198{margin-left:-22.632539pt;}
._6_c01198{margin-left:-6.283584pt;}
._4_c01198{margin-left:-4.887232pt;}
._1_c01198{margin-left:-3.316336pt;}
._2_c01198{margin-left:-1.687259pt;}
._3_c01198{width:1.454533pt;}
._8_c01198{width:3.432699pt;}
.fs2_c01198{font-size:42.506667pt;}
.fs1_c01198{font-size:58.181333pt;}
.fs0_c01198{font-size:63.760000pt;}
.y0_c01198{bottom:0.000000pt;}
.y20_c01198{bottom:202.085333pt;}
.y1f_c01198{bottom:224.504000pt;}
.y1e_c01198{bottom:246.924000pt;}
.y1d_c01198{bottom:269.342667pt;}
.y1c_c01198{bottom:291.762667pt;}
.y1b_c01198{bottom:314.181333pt;}
.y1a_c01198{bottom:352.541333pt;}
.y19_c01198{bottom:374.960000pt;}
.y18_c01198{bottom:397.380000pt;}
.y17_c01198{bottom:419.798667pt;}
.y16_c01198{bottom:442.218667pt;}
.y15_c01198{bottom:480.578667pt;}
.y14_c01198{bottom:502.997333pt;}
.y13_c01198{bottom:525.417333pt;}
.y12_c01198{bottom:547.836000pt;}
.y11_c01198{bottom:570.256000pt;}
.y10_c01198{bottom:592.674667pt;}
.yf_c01198{bottom:631.034667pt;}
.ye_c01198{bottom:653.453333pt;}
.yd_c01198{bottom:675.873333pt;}
.yc_c01198{bottom:698.292000pt;}
.yb_c01198{bottom:736.652000pt;}
.ya_c01198{bottom:759.070667pt;}
.y9_c01198{bottom:781.490667pt;}
.y8_c01198{bottom:803.909333pt;}
.y7_c01198{bottom:826.329333pt;}
.y6_c01198{bottom:864.689333pt;}
.y5_c01198{bottom:887.108000pt;}
.y4_c01198{bottom:909.528000pt;}
.y3_c01198{bottom:931.946667pt;}
.y2_c01198{bottom:954.366667pt;}
.y1_c01198{bottom:1013.880000pt;}
.h3_c01198{height:43.636000pt;}
.h2_c01198{height:47.820000pt;}
.h4_c01198{height:49.849173pt;}
.h1_c01198{height:1123.333333pt;}
.h0_c01198{height:1123.653333pt;}
.w0_c01198{width:794.550667pt;}
.w1_c01198{width:794.666667pt;}
.x0_c01198{left:0.000000pt;}
.x3_c01198{left:113.385333pt;}
.x2_c01198{left:142.078667pt;}
.x1_c01198{left:657.753333pt;}
}





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

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





.ff0_c01199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01199;src:url('chunks/assets/font_06f222d5943f433e5e4880c8.woff2')format("woff");}.ff1_c01199{font-family:ff1_c01199;line-height:1.001000;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_c01199;src:url('chunks/assets/font_585d67eb30d0892ecc0a62d7.woff2')format("woff");}.ff2_c01199{font-family:ff2_c01199;line-height:1.000000;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_c01199;src:url('chunks/assets/font_96b95cf2252e890747b6db22.woff2')format("woff");}.ff3_c01199{font-family:ff3_c01199;line-height:1.000000;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_c01199;src:url('chunks/assets/font_5801826d774a436820a6f85c.woff2')format("woff");}.ff4_c01199{font-family:ff4_c01199;line-height:0.697000;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_c01199{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_c01199{vertical-align:0.000000px;}
.v1_c01199{vertical-align:23.754000px;}
.ls1_c01199{letter-spacing:0.000000px;}
.ls0_c01199{letter-spacing:3.005580px;}
.sc__c01199{text-shadow:none;}
.sc0_c01199{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__c01199{-webkit-text-stroke:0px transparent;}
.sc0_c01199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01199{word-spacing:-0.071730px;}
.ws2_c01199{word-spacing:-0.065454px;}
.ws15_c01199{word-spacing:0.000000px;}
.ws12_c01199{word-spacing:17.803488px;}
.ws9_c01199{word-spacing:19.701654px;}
.ws13_c01199{word-spacing:20.290740px;}
.wsc_c01199{word-spacing:21.076188px;}
.ws14_c01199{word-spacing:21.665274px;}
.ws3_c01199{word-spacing:21.730728px;}
.ws6_c01199{word-spacing:21.796182px;}
.ws8_c01199{word-spacing:23.759802px;}
.wsd_c01199{word-spacing:24.348888px;}
.ws1_c01199{word-spacing:25.003428px;}
.ws7_c01199{word-spacing:25.330698px;}
.ws4_c01199{word-spacing:26.312508px;}
.wsa_c01199{word-spacing:26.377962px;}
.ws11_c01199{word-spacing:27.032502px;}
.ws10_c01199{word-spacing:28.079766px;}
.wse_c01199{word-spacing:28.276128px;}
.wsb_c01199{word-spacing:28.996122px;}
.wsf_c01199{word-spacing:29.977932px;}
.ws5_c01199{word-spacing:31.417920px;}
._3_c01199{margin-left:-34.886982px;}
._5_c01199{margin-left:-33.116724px;}
._b_c01199{margin-left:-32.016006px;}
._9_c01199{margin-left:-30.498564px;}
._7_c01199{margin-left:-25.461606px;}
._6_c01199{margin-left:-7.199940px;}
._1_c01199{margin-left:-6.152676px;}
._8_c01199{margin-left:-3.730878px;}
._4_c01199{margin-left:-1.770258px;}
._a_c01199{width:1.056264px;}
._0_c01199{width:2.094528px;}
._2_c01199{width:3.596970px;}
.fc0_c01199{color:rgb(0,0,0);}
.fs2_c01199{font-size:47.820000px;}
.fs1_c01199{font-size:65.454000px;}
.fs0_c01199{font-size:71.730000px;}
.y0_c01199{bottom:0.000000px;}
.y24_c01199{bottom:71.973000px;}
.y23_c01199{bottom:115.038000px;}
.y22_c01199{bottom:140.259000px;}
.y21_c01199{bottom:165.481500px;}
.y20_c01199{bottom:190.702500px;}
.y1f_c01199{bottom:215.925000px;}
.y1e_c01199{bottom:241.146000px;}
.y1d_c01199{bottom:266.368500px;}
.y1c_c01199{bottom:291.589500px;}
.y1b_c01199{bottom:316.812000px;}
.y1a_c01199{bottom:342.033000px;}
.y19_c01199{bottom:367.255500px;}
.y18_c01199{bottom:392.476500px;}
.y17_c01199{bottom:417.699000px;}
.y16_c01199{bottom:442.920000px;}
.y15_c01199{bottom:485.985000px;}
.y14_c01199{bottom:511.207500px;}
.y13_c01199{bottom:536.428500px;}
.y12_c01199{bottom:579.493500px;}
.y11_c01199{bottom:604.716000px;}
.y10_c01199{bottom:629.937000px;}
.yf_c01199{bottom:655.159500px;}
.ye_c01199{bottom:680.380500px;}
.yd_c01199{bottom:705.603000px;}
.yc_c01199{bottom:730.824000px;}
.yb_c01199{bottom:756.046500px;}
.ya_c01199{bottom:781.267500px;}
.y9_c01199{bottom:824.332500px;}
.y8_c01199{bottom:849.555000px;}
.y7_c01199{bottom:892.618500px;}
.y6_c01199{bottom:917.841000px;}
.y5_c01199{bottom:943.062000px;}
.y4_c01199{bottom:986.127000px;}
.y3_c01199{bottom:1011.349500px;}
.y2_c01199{bottom:1073.662500px;}
.y1_c01199{bottom:1140.615000px;}
.h3_c01199{height:49.090500px;}
.h2_c01199{height:53.797500px;}
.h5_c01199{height:56.074320px;}
.h4_c01199{height:56.080320px;}
.h1_c01199{height:1263.750000px;}
.h0_c01199{height:1264.110000px;}
.w0_c01199{width:893.869500px;}
.w1_c01199{width:894.000000px;}
.x0_c01199{left:0.000000px;}
.x4_c01199{left:127.558500px;}
.x3_c01199{left:159.838500px;}
.x2_c01199{left:442.230000px;}
.x1_c01199{left:739.972500px;}
@media print{
.v0_c01199{vertical-align:0.000000pt;}
.v1_c01199{vertical-align:21.114667pt;}
.ls1_c01199{letter-spacing:0.000000pt;}
.ls0_c01199{letter-spacing:2.671627pt;}
.ws0_c01199{word-spacing:-0.063760pt;}
.ws2_c01199{word-spacing:-0.058181pt;}
.ws15_c01199{word-spacing:0.000000pt;}
.ws12_c01199{word-spacing:15.825323pt;}
.ws9_c01199{word-spacing:17.512581pt;}
.ws13_c01199{word-spacing:18.036213pt;}
.wsc_c01199{word-spacing:18.734389pt;}
.ws14_c01199{word-spacing:19.258021pt;}
.ws3_c01199{word-spacing:19.316203pt;}
.ws6_c01199{word-spacing:19.374384pt;}
.ws8_c01199{word-spacing:21.119824pt;}
.wsd_c01199{word-spacing:21.643456pt;}
.ws1_c01199{word-spacing:22.225269pt;}
.ws7_c01199{word-spacing:22.516176pt;}
.ws4_c01199{word-spacing:23.388896pt;}
.wsa_c01199{word-spacing:23.447077pt;}
.ws11_c01199{word-spacing:24.028891pt;}
.ws10_c01199{word-spacing:24.959792pt;}
.wse_c01199{word-spacing:25.134336pt;}
.wsb_c01199{word-spacing:25.774331pt;}
.wsf_c01199{word-spacing:26.647051pt;}
.ws5_c01199{word-spacing:27.927040pt;}
._3_c01199{margin-left:-31.010651pt;}
._5_c01199{margin-left:-29.437088pt;}
._b_c01199{margin-left:-28.458672pt;}
._9_c01199{margin-left:-27.109835pt;}
._7_c01199{margin-left:-22.632539pt;}
._6_c01199{margin-left:-6.399947pt;}
._1_c01199{margin-left:-5.469045pt;}
._8_c01199{margin-left:-3.316336pt;}
._4_c01199{margin-left:-1.573563pt;}
._a_c01199{width:0.938901pt;}
._0_c01199{width:1.861803pt;}
._2_c01199{width:3.197307pt;}
.fs2_c01199{font-size:42.506667pt;}
.fs1_c01199{font-size:58.181333pt;}
.fs0_c01199{font-size:63.760000pt;}
.y0_c01199{bottom:0.000000pt;}
.y24_c01199{bottom:63.976000pt;}
.y23_c01199{bottom:102.256000pt;}
.y22_c01199{bottom:124.674667pt;}
.y21_c01199{bottom:147.094667pt;}
.y20_c01199{bottom:169.513333pt;}
.y1f_c01199{bottom:191.933333pt;}
.y1e_c01199{bottom:214.352000pt;}
.y1d_c01199{bottom:236.772000pt;}
.y1c_c01199{bottom:259.190667pt;}
.y1b_c01199{bottom:281.610667pt;}
.y1a_c01199{bottom:304.029333pt;}
.y19_c01199{bottom:326.449333pt;}
.y18_c01199{bottom:348.868000pt;}
.y17_c01199{bottom:371.288000pt;}
.y16_c01199{bottom:393.706667pt;}
.y15_c01199{bottom:431.986667pt;}
.y14_c01199{bottom:454.406667pt;}
.y13_c01199{bottom:476.825333pt;}
.y12_c01199{bottom:515.105333pt;}
.y11_c01199{bottom:537.525333pt;}
.y10_c01199{bottom:559.944000pt;}
.yf_c01199{bottom:582.364000pt;}
.ye_c01199{bottom:604.782667pt;}
.yd_c01199{bottom:627.202667pt;}
.yc_c01199{bottom:649.621333pt;}
.yb_c01199{bottom:672.041333pt;}
.ya_c01199{bottom:694.460000pt;}
.y9_c01199{bottom:732.740000pt;}
.y8_c01199{bottom:755.160000pt;}
.y7_c01199{bottom:793.438667pt;}
.y6_c01199{bottom:815.858667pt;}
.y5_c01199{bottom:838.277333pt;}
.y4_c01199{bottom:876.557333pt;}
.y3_c01199{bottom:898.977333pt;}
.y2_c01199{bottom:954.366667pt;}
.y1_c01199{bottom:1013.880000pt;}
.h3_c01199{height:43.636000pt;}
.h2_c01199{height:47.820000pt;}
.h5_c01199{height:49.843840pt;}
.h4_c01199{height:49.849173pt;}
.h1_c01199{height:1123.333333pt;}
.h0_c01199{height:1123.653333pt;}
.w0_c01199{width:794.550667pt;}
.w1_c01199{width:794.666667pt;}
.x0_c01199{left:0.000000pt;}
.x4_c01199{left:113.385333pt;}
.x3_c01199{left:142.078667pt;}
.x2_c01199{left:393.093333pt;}
.x1_c01199{left:657.753333pt;}
}





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

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





.ff0_c01200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01200;src:url('chunks/assets/font_9b21c356251906433233ff22.woff2')format("woff");}.ff1_c01200{font-family:ff1_c01200;line-height:1.001000;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_c01200;src:url('chunks/assets/font_29fe4358388353f695b43c87.woff2')format("woff");}.ff2_c01200{font-family:ff2_c01200;line-height:1.000000;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_c01200;src:url('chunks/assets/font_90606d8c5513808fc0af060d.woff2')format("woff");}.ff3_c01200{font-family:ff3_c01200;line-height:0.697000;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_c01200;src:url('chunks/assets/font_f792fc21f71a24d4feed6d57.woff2')format("woff");}.ff4_c01200{font-family:ff4_c01200;line-height:1.000000;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_c01200{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_c01200{vertical-align:0.000000px;}
.v1_c01200{vertical-align:23.754000px;}
.ls2_c01200{letter-spacing:0.000000px;}
.ls1_c01200{letter-spacing:2.999580px;}
.ls0_c01200{letter-spacing:3.005580px;}
.sc__c01200{text-shadow:none;}
.sc0_c01200{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__c01200{-webkit-text-stroke:0px transparent;}
.sc0_c01200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01200{word-spacing:-0.071730px;}
.ws5_c01200{word-spacing:-0.065454px;}
.ws16_c01200{word-spacing:0.000000px;}
.ws3_c01200{word-spacing:14.923512px;}
.wsf_c01200{word-spacing:15.512598px;}
.ws12_c01200{word-spacing:15.905322px;}
.ws1_c01200{word-spacing:19.243476px;}
.ws4_c01200{word-spacing:19.570746px;}
.wsb_c01200{word-spacing:20.421648px;}
.wsa_c01200{word-spacing:20.552556px;}
.ws6_c01200{word-spacing:21.730728px;}
.ws7_c01200{word-spacing:21.796182px;}
.ws11_c01200{word-spacing:22.254360px;}
.ws9_c01200{word-spacing:22.385268px;}
.ws15_c01200{word-spacing:22.450722px;}
.wse_c01200{word-spacing:23.367078px;}
.ws10_c01200{word-spacing:23.825256px;}
.ws8_c01200{word-spacing:24.021618px;}
.ws14_c01200{word-spacing:25.003428px;}
.ws2_c01200{word-spacing:25.461606px;}
.wsc_c01200{word-spacing:26.050692px;}
.wsd_c01200{word-spacing:30.632472px;}
.ws13_c01200{word-spacing:31.156104px;}
._7_c01200{margin-left:-34.559712px;}
._1_c01200{margin-left:-32.661546px;}
._4_c01200{margin-left:-31.548828px;}
._9_c01200{margin-left:-25.461606px;}
._8_c01200{margin-left:-7.396302px;}
._6_c01200{margin-left:-5.498136px;}
._5_c01200{margin-left:-4.123602px;}
._a_c01200{margin-left:-2.814522px;}
._3_c01200{margin-left:-1.767258px;}
._2_c01200{width:1.832712px;}
._0_c01200{width:3.534516px;}
.fc0_c01200{color:rgb(0,0,0);}
.fs2_c01200{font-size:47.820000px;}
.fs1_c01200{font-size:65.454000px;}
.fs0_c01200{font-size:71.730000px;}
.y0_c01200{bottom:0.000000px;}
.y23_c01200{bottom:71.973000px;}
.y22_c01200{bottom:97.194000px;}
.y21_c01200{bottom:137.973000px;}
.y20_c01200{bottom:163.195500px;}
.y1f_c01200{bottom:188.416500px;}
.y1e_c01200{bottom:243.873000px;}
.y1d_c01200{bottom:314.887500px;}
.y1c_c01200{bottom:340.108500px;}
.y1b_c01200{bottom:365.331000px;}
.y1a_c01200{bottom:390.552000px;}
.y19_c01200{bottom:431.331000px;}
.y18_c01200{bottom:456.553500px;}
.y17_c01200{bottom:481.774500px;}
.y16_c01200{bottom:506.997000px;}
.y15_c01200{bottom:547.776000px;}
.y14_c01200{bottom:572.997000px;}
.y13_c01200{bottom:598.219500px;}
.y12_c01200{bottom:623.440500px;}
.y11_c01200{bottom:648.663000px;}
.y10_c01200{bottom:689.442000px;}
.yf_c01200{bottom:714.664500px;}
.ye_c01200{bottom:739.885500px;}
.yd_c01200{bottom:765.108000px;}
.yc_c01200{bottom:790.329000px;}
.yb_c01200{bottom:831.108000px;}
.ya_c01200{bottom:856.330500px;}
.y9_c01200{bottom:881.551500px;}
.y8_c01200{bottom:906.774000px;}
.y7_c01200{bottom:931.995000px;}
.y6_c01200{bottom:957.217500px;}
.y5_c01200{bottom:997.996500px;}
.y4_c01200{bottom:1023.219000px;}
.y3_c01200{bottom:1048.440000px;}
.y2_c01200{bottom:1073.662500px;}
.y1_c01200{bottom:1140.615000px;}
.h3_c01200{height:49.090500px;}
.h2_c01200{height:53.797500px;}
.h4_c01200{height:56.080320px;}
.h1_c01200{height:1263.750000px;}
.h0_c01200{height:1264.110000px;}
.w0_c01200{width:893.869500px;}
.w1_c01200{width:894.000000px;}
.x0_c01200{left:0.000000px;}
.x3_c01200{left:127.558500px;}
.x2_c01200{left:159.838500px;}
.x4_c01200{left:442.230000px;}
.x1_c01200{left:739.972500px;}
@media print{
.v0_c01200{vertical-align:0.000000pt;}
.v1_c01200{vertical-align:21.114667pt;}
.ls2_c01200{letter-spacing:0.000000pt;}
.ls1_c01200{letter-spacing:2.666293pt;}
.ls0_c01200{letter-spacing:2.671627pt;}
.ws0_c01200{word-spacing:-0.063760pt;}
.ws5_c01200{word-spacing:-0.058181pt;}
.ws16_c01200{word-spacing:0.000000pt;}
.ws3_c01200{word-spacing:13.265344pt;}
.wsf_c01200{word-spacing:13.788976pt;}
.ws12_c01200{word-spacing:14.138064pt;}
.ws1_c01200{word-spacing:17.105312pt;}
.ws4_c01200{word-spacing:17.396219pt;}
.wsb_c01200{word-spacing:18.152576pt;}
.wsa_c01200{word-spacing:18.268939pt;}
.ws6_c01200{word-spacing:19.316203pt;}
.ws7_c01200{word-spacing:19.374384pt;}
.ws11_c01200{word-spacing:19.781653pt;}
.ws9_c01200{word-spacing:19.898016pt;}
.ws15_c01200{word-spacing:19.956197pt;}
.wse_c01200{word-spacing:20.770736pt;}
.ws10_c01200{word-spacing:21.178005pt;}
.ws8_c01200{word-spacing:21.352549pt;}
.ws14_c01200{word-spacing:22.225269pt;}
.ws2_c01200{word-spacing:22.632539pt;}
.wsc_c01200{word-spacing:23.156171pt;}
.wsd_c01200{word-spacing:27.228864pt;}
.ws13_c01200{word-spacing:27.694315pt;}
._7_c01200{margin-left:-30.719744pt;}
._1_c01200{margin-left:-29.032485pt;}
._4_c01200{margin-left:-28.043403pt;}
._9_c01200{margin-left:-22.632539pt;}
._8_c01200{margin-left:-6.574491pt;}
._6_c01200{margin-left:-4.887232pt;}
._5_c01200{margin-left:-3.665424pt;}
._a_c01200{margin-left:-2.501797pt;}
._3_c01200{margin-left:-1.570896pt;}
._2_c01200{width:1.629077pt;}
._0_c01200{width:3.141792pt;}
.fs2_c01200{font-size:42.506667pt;}
.fs1_c01200{font-size:58.181333pt;}
.fs0_c01200{font-size:63.760000pt;}
.y0_c01200{bottom:0.000000pt;}
.y23_c01200{bottom:63.976000pt;}
.y22_c01200{bottom:86.394667pt;}
.y21_c01200{bottom:122.642667pt;}
.y20_c01200{bottom:145.062667pt;}
.y1f_c01200{bottom:167.481333pt;}
.y1e_c01200{bottom:216.776000pt;}
.y1d_c01200{bottom:279.900000pt;}
.y1c_c01200{bottom:302.318667pt;}
.y1b_c01200{bottom:324.738667pt;}
.y1a_c01200{bottom:347.157333pt;}
.y19_c01200{bottom:383.405333pt;}
.y18_c01200{bottom:405.825333pt;}
.y17_c01200{bottom:428.244000pt;}
.y16_c01200{bottom:450.664000pt;}
.y15_c01200{bottom:486.912000pt;}
.y14_c01200{bottom:509.330667pt;}
.y13_c01200{bottom:531.750667pt;}
.y12_c01200{bottom:554.169333pt;}
.y11_c01200{bottom:576.589333pt;}
.y10_c01200{bottom:612.837333pt;}
.yf_c01200{bottom:635.257333pt;}
.ye_c01200{bottom:657.676000pt;}
.yd_c01200{bottom:680.096000pt;}
.yc_c01200{bottom:702.514667pt;}
.yb_c01200{bottom:738.762667pt;}
.ya_c01200{bottom:761.182667pt;}
.y9_c01200{bottom:783.601333pt;}
.y8_c01200{bottom:806.021333pt;}
.y7_c01200{bottom:828.440000pt;}
.y6_c01200{bottom:850.860000pt;}
.y5_c01200{bottom:887.108000pt;}
.y4_c01200{bottom:909.528000pt;}
.y3_c01200{bottom:931.946667pt;}
.y2_c01200{bottom:954.366667pt;}
.y1_c01200{bottom:1013.880000pt;}
.h3_c01200{height:43.636000pt;}
.h2_c01200{height:47.820000pt;}
.h4_c01200{height:49.849173pt;}
.h1_c01200{height:1123.333333pt;}
.h0_c01200{height:1123.653333pt;}
.w0_c01200{width:794.550667pt;}
.w1_c01200{width:794.666667pt;}
.x0_c01200{left:0.000000pt;}
.x3_c01200{left:113.385333pt;}
.x2_c01200{left:142.078667pt;}
.x4_c01200{left:393.093333pt;}
.x1_c01200{left:657.753333pt;}
}





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

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





.ff0_c01201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01201;src:url('chunks/assets/font_9b21c356251906433233ff22.woff2')format("woff");}.ff1_c01201{font-family:ff1_c01201;line-height:1.001000;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_c01201;src:url('chunks/assets/font_4a2f6710d5f78ef4bb051958.woff2')format("woff");}.ff2_c01201{font-family:ff2_c01201;line-height:1.000000;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_c01201;src:url('chunks/assets/font_90606d8c5513808fc0af060d.woff2')format("woff");}.ff3_c01201{font-family:ff3_c01201;line-height:0.697000;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_c01201{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_c01201{vertical-align:0.000000px;}
.v1_c01201{vertical-align:23.748000px;}
.ls3_c01201{letter-spacing:0.000000px;}
.ls2_c01201{letter-spacing:2.999580px;}
.ls0_c01201{letter-spacing:3.005580px;}
.ls1_c01201{letter-spacing:29.975580px;}
.sc__c01201{text-shadow:none;}
.sc0_c01201{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__c01201{-webkit-text-stroke:0px transparent;}
.sc0_c01201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01201{word-spacing:-0.071730px;}
.ws1_c01201{word-spacing:-0.065454px;}
.ws16_c01201{word-spacing:0.000000px;}
.ws11_c01201{word-spacing:15.708960px;}
.ws13_c01201{word-spacing:16.298046px;}
.ws5_c01201{word-spacing:17.018040px;}
.ws10_c01201{word-spacing:17.345310px;}
.ws14_c01201{word-spacing:18.785298px;}
.ws15_c01201{word-spacing:21.010734px;}
.ws2_c01201{word-spacing:21.730728px;}
.ws6_c01201{word-spacing:21.796182px;}
.wsf_c01201{word-spacing:24.283434px;}
.ws4_c01201{word-spacing:24.676158px;}
.ws7_c01201{word-spacing:25.592514px;}
.wsd_c01201{word-spacing:25.723422px;}
.wse_c01201{word-spacing:25.788876px;}
.wsc_c01201{word-spacing:26.639778px;}
.ws9_c01201{word-spacing:26.836140px;}
.wsa_c01201{word-spacing:26.901594px;}
.wsb_c01201{word-spacing:27.490680px;}
.ws8_c01201{word-spacing:29.519754px;}
.ws3_c01201{word-spacing:32.072460px;}
.ws12_c01201{word-spacing:32.596092px;}
._2_c01201{margin-left:-34.559712px;}
._3_c01201{margin-left:-33.241632px;}
._7_c01201{margin-left:-31.947552px;}
._b_c01201{margin-left:-30.588018px;}
._6_c01201{margin-left:-25.461606px;}
._9_c01201{margin-left:-7.711572px;}
._5_c01201{margin-left:-6.685308px;}
._c_c01201{margin-left:-5.498136px;}
._4_c01201{margin-left:-3.469062px;}
._0_c01201{margin-left:-1.770258px;}
._1_c01201{width:1.963620px;}
._8_c01201{width:3.537516px;}
._a_c01201{width:22.852446px;}
.fc0_c01201{color:rgb(0,0,0);}
.fs2_c01201{font-size:47.820000px;}
.fs1_c01201{font-size:65.454000px;}
.fs0_c01201{font-size:71.730000px;}
.y0_c01201{bottom:0.000000px;}
.y1e_c01201{bottom:223.990500px;}
.y1d_c01201{bottom:249.213000px;}
.y1c_c01201{bottom:274.434000px;}
.y1b_c01201{bottom:317.589000px;}
.y1a_c01201{bottom:342.810000px;}
.y19_c01201{bottom:385.965000px;}
.y18_c01201{bottom:411.187500px;}
.y17_c01201{bottom:454.341000px;}
.y16_c01201{bottom:479.563500px;}
.y15_c01201{bottom:522.717000px;}
.y14_c01201{bottom:547.939500px;}
.y13_c01201{bottom:591.094500px;}
.y12_c01201{bottom:616.315500px;}
.y11_c01201{bottom:641.538000px;}
.y10_c01201{bottom:684.691500px;}
.yf_c01201{bottom:709.914000px;}
.ye_c01201{bottom:735.135000px;}
.yd_c01201{bottom:760.357500px;}
.yc_c01201{bottom:785.578500px;}
.yb_c01201{bottom:810.801000px;}
.ya_c01201{bottom:836.022000px;}
.y9_c01201{bottom:861.244500px;}
.y8_c01201{bottom:886.465500px;}
.y7_c01201{bottom:911.688000px;}
.y6_c01201{bottom:954.841500px;}
.y5_c01201{bottom:980.064000px;}
.y4_c01201{bottom:1005.285000px;}
.y3_c01201{bottom:1030.507500px;}
.y2_c01201{bottom:1073.662500px;}
.y1_c01201{bottom:1140.615000px;}
.h5_c01201{height:49.090500px;}
.h2_c01201{height:53.797500px;}
.h3_c01201{height:56.074320px;}
.h4_c01201{height:56.080320px;}
.h1_c01201{height:1263.750000px;}
.h0_c01201{height:1264.110000px;}
.w0_c01201{width:893.869500px;}
.w1_c01201{width:894.000000px;}
.x0_c01201{left:0.000000px;}
.x3_c01201{left:127.558500px;}
.x2_c01201{left:159.838500px;}
.x1_c01201{left:739.972500px;}
@media print{
.v0_c01201{vertical-align:0.000000pt;}
.v1_c01201{vertical-align:21.109333pt;}
.ls3_c01201{letter-spacing:0.000000pt;}
.ls2_c01201{letter-spacing:2.666293pt;}
.ls0_c01201{letter-spacing:2.671627pt;}
.ls1_c01201{letter-spacing:26.644960pt;}
.ws0_c01201{word-spacing:-0.063760pt;}
.ws1_c01201{word-spacing:-0.058181pt;}
.ws16_c01201{word-spacing:0.000000pt;}
.ws11_c01201{word-spacing:13.963520pt;}
.ws13_c01201{word-spacing:14.487152pt;}
.ws5_c01201{word-spacing:15.127147pt;}
.ws10_c01201{word-spacing:15.418053pt;}
.ws14_c01201{word-spacing:16.698043pt;}
.ws15_c01201{word-spacing:18.676208pt;}
.ws2_c01201{word-spacing:19.316203pt;}
.ws6_c01201{word-spacing:19.374384pt;}
.wsf_c01201{word-spacing:21.585275pt;}
.ws4_c01201{word-spacing:21.934363pt;}
.ws7_c01201{word-spacing:22.748901pt;}
.wsd_c01201{word-spacing:22.865264pt;}
.wse_c01201{word-spacing:22.923445pt;}
.wsc_c01201{word-spacing:23.679803pt;}
.ws9_c01201{word-spacing:23.854347pt;}
.wsa_c01201{word-spacing:23.912528pt;}
.wsb_c01201{word-spacing:24.436160pt;}
.ws8_c01201{word-spacing:26.239781pt;}
.ws3_c01201{word-spacing:28.508853pt;}
.ws12_c01201{word-spacing:28.974304pt;}
._2_c01201{margin-left:-30.719744pt;}
._3_c01201{margin-left:-29.548117pt;}
._7_c01201{margin-left:-28.397824pt;}
._b_c01201{margin-left:-27.189349pt;}
._6_c01201{margin-left:-22.632539pt;}
._9_c01201{margin-left:-6.854731pt;}
._5_c01201{margin-left:-5.942496pt;}
._c_c01201{margin-left:-4.887232pt;}
._4_c01201{margin-left:-3.083611pt;}
._0_c01201{margin-left:-1.573563pt;}
._1_c01201{width:1.745440pt;}
._8_c01201{width:3.144459pt;}
._a_c01201{width:20.313285pt;}
.fs2_c01201{font-size:42.506667pt;}
.fs1_c01201{font-size:58.181333pt;}
.fs0_c01201{font-size:63.760000pt;}
.y0_c01201{bottom:0.000000pt;}
.y1e_c01201{bottom:199.102667pt;}
.y1d_c01201{bottom:221.522667pt;}
.y1c_c01201{bottom:243.941333pt;}
.y1b_c01201{bottom:282.301333pt;}
.y1a_c01201{bottom:304.720000pt;}
.y19_c01201{bottom:343.080000pt;}
.y18_c01201{bottom:365.500000pt;}
.y17_c01201{bottom:403.858667pt;}
.y16_c01201{bottom:426.278667pt;}
.y15_c01201{bottom:464.637333pt;}
.y14_c01201{bottom:487.057333pt;}
.y13_c01201{bottom:525.417333pt;}
.y12_c01201{bottom:547.836000pt;}
.y11_c01201{bottom:570.256000pt;}
.y10_c01201{bottom:608.614667pt;}
.yf_c01201{bottom:631.034667pt;}
.ye_c01201{bottom:653.453333pt;}
.yd_c01201{bottom:675.873333pt;}
.yc_c01201{bottom:698.292000pt;}
.yb_c01201{bottom:720.712000pt;}
.ya_c01201{bottom:743.130667pt;}
.y9_c01201{bottom:765.550667pt;}
.y8_c01201{bottom:787.969333pt;}
.y7_c01201{bottom:810.389333pt;}
.y6_c01201{bottom:848.748000pt;}
.y5_c01201{bottom:871.168000pt;}
.y4_c01201{bottom:893.586667pt;}
.y3_c01201{bottom:916.006667pt;}
.y2_c01201{bottom:954.366667pt;}
.y1_c01201{bottom:1013.880000pt;}
.h5_c01201{height:43.636000pt;}
.h2_c01201{height:47.820000pt;}
.h3_c01201{height:49.843840pt;}
.h4_c01201{height:49.849173pt;}
.h1_c01201{height:1123.333333pt;}
.h0_c01201{height:1123.653333pt;}
.w0_c01201{width:794.550667pt;}
.w1_c01201{width:794.666667pt;}
.x0_c01201{left:0.000000pt;}
.x3_c01201{left:113.385333pt;}
.x2_c01201{left:142.078667pt;}
.x1_c01201{left:657.753333pt;}
}





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

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





.ff0_c01202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01202;src:url('chunks/assets/font_99e7e1c47498e1c764d7562e.woff2')format("woff");}.ff1_c01202{font-family:ff1_c01202;line-height:1.001000;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_c01202;src:url('chunks/assets/font_993c303b73035a68841788b4.woff2')format("woff");}.ff2_c01202{font-family:ff2_c01202;line-height:1.000000;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_c01202;src:url('chunks/assets/font_2f73dfb9b4776a523d7d78b3.woff2')format("woff");}.ff3_c01202{font-family:ff3_c01202;line-height:1.000000;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_c01202{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_c01202{vertical-align:0.000000px;}
.ls0_c01202{letter-spacing:0.000000px;}
.sc__c01202{text-shadow:none;}
.sc0_c01202{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__c01202{-webkit-text-stroke:0px transparent;}
.sc0_c01202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01202{word-spacing:-0.071730px;}
.ws7_c01202{word-spacing:-0.065454px;}
.ws16_c01202{word-spacing:0.000000px;}
.ws1_c01202{word-spacing:16.690770px;}
.ws10_c01202{word-spacing:17.607126px;}
.ws12_c01202{word-spacing:20.683464px;}
.ws4_c01202{word-spacing:21.730728px;}
.wsf_c01202{word-spacing:21.796182px;}
.wsc_c01202{word-spacing:22.516176px;}
.ws14_c01202{word-spacing:23.105262px;}
.ws6_c01202{word-spacing:23.301624px;}
.ws15_c01202{word-spacing:24.152526px;}
.wsa_c01202{word-spacing:24.217980px;}
.ws9_c01202{word-spacing:24.872520px;}
.ws2_c01202{word-spacing:25.003428px;}
.wsb_c01202{word-spacing:25.854330px;}
.ws11_c01202{word-spacing:26.508870px;}
.wsd_c01202{word-spacing:27.163410px;}
.ws8_c01202{word-spacing:27.687042px;}
.wse_c01202{word-spacing:27.948858px;}
.ws3_c01202{word-spacing:28.799760px;}
.ws5_c01202{word-spacing:29.323392px;}
.ws13_c01202{word-spacing:29.585208px;}
._8_c01202{margin-left:-34.625166px;}
._7_c01202{margin-left:-32.661546px;}
._d_c01202{margin-left:-30.567018px;}
._3_c01202{margin-left:-29.257938px;}
._6_c01202{margin-left:-25.461606px;}
._2_c01202{margin-left:-8.378112px;}
._5_c01202{margin-left:-7.330848px;}
._4_c01202{margin-left:-6.218130px;}
._f_c01202{margin-left:-5.105412px;}
._9_c01202{margin-left:-3.665424px;}
._1_c01202{margin-left:-2.159982px;}
._b_c01202{margin-left:-1.047264px;}
._0_c01202{width:1.963620px;}
._c_c01202{width:3.927240px;}
._e_c01202{width:23.170716px;}
._a_c01202{width:27.883404px;}
.fc0_c01202{color:rgb(0,0,0);}
.fs1_c01202{font-size:65.454000px;}
.fs0_c01202{font-size:71.730000px;}
.y0_c01202{bottom:0.000000px;}
.y21_c01202{bottom:103.473000px;}
.y20_c01202{bottom:128.695500px;}
.y1f_c01202{bottom:169.666500px;}
.y1e_c01202{bottom:194.889000px;}
.y1d_c01202{bottom:235.860000px;}
.y1c_c01202{bottom:261.082500px;}
.y1b_c01202{bottom:286.303500px;}
.y1a_c01202{bottom:311.526000px;}
.y19_c01202{bottom:336.747000px;}
.y18_c01202{bottom:377.719500px;}
.y17_c01202{bottom:402.942000px;}
.y16_c01202{bottom:443.913000px;}
.y15_c01202{bottom:469.135500px;}
.y14_c01202{bottom:494.356500px;}
.y13_c01202{bottom:535.329000px;}
.y12_c01202{bottom:560.550000px;}
.y11_c01202{bottom:585.772500px;}
.y10_c01202{bottom:626.743500px;}
.yf_c01202{bottom:651.966000px;}
.ye_c01202{bottom:677.188500px;}
.yd_c01202{bottom:702.409500px;}
.yc_c01202{bottom:727.632000px;}
.yb_c01202{bottom:768.603000px;}
.ya_c01202{bottom:793.825500px;}
.y9_c01202{bottom:819.046500px;}
.y8_c01202{bottom:860.019000px;}
.y7_c01202{bottom:900.990000px;}
.y6_c01202{bottom:926.212500px;}
.y5_c01202{bottom:967.185000px;}
.y4_c01202{bottom:992.406000px;}
.y3_c01202{bottom:1017.628500px;}
.y2_c01202{bottom:1073.662500px;}
.y1_c01202{bottom:1140.615000px;}
.h3_c01202{height:49.090500px;}
.h2_c01202{height:53.797500px;}
.h1_c01202{height:1263.750000px;}
.h0_c01202{height:1264.110000px;}
.w0_c01202{width:893.869500px;}
.w1_c01202{width:894.000000px;}
.x0_c01202{left:0.000000px;}
.x4_c01202{left:127.558500px;}
.x3_c01202{left:159.838500px;}
.x2_c01202{left:442.230000px;}
.x1_c01202{left:739.972500px;}
@media print{
.v0_c01202{vertical-align:0.000000pt;}
.ls0_c01202{letter-spacing:0.000000pt;}
.ws0_c01202{word-spacing:-0.063760pt;}
.ws7_c01202{word-spacing:-0.058181pt;}
.ws16_c01202{word-spacing:0.000000pt;}
.ws1_c01202{word-spacing:14.836240pt;}
.ws10_c01202{word-spacing:15.650779pt;}
.ws12_c01202{word-spacing:18.385301pt;}
.ws4_c01202{word-spacing:19.316203pt;}
.wsf_c01202{word-spacing:19.374384pt;}
.wsc_c01202{word-spacing:20.014379pt;}
.ws14_c01202{word-spacing:20.538011pt;}
.ws6_c01202{word-spacing:20.712555pt;}
.ws15_c01202{word-spacing:21.468912pt;}
.wsa_c01202{word-spacing:21.527093pt;}
.ws9_c01202{word-spacing:22.108907pt;}
.ws2_c01202{word-spacing:22.225269pt;}
.wsb_c01202{word-spacing:22.981627pt;}
.ws11_c01202{word-spacing:23.563440pt;}
.wsd_c01202{word-spacing:24.145253pt;}
.ws8_c01202{word-spacing:24.610704pt;}
.wse_c01202{word-spacing:24.843429pt;}
.ws3_c01202{word-spacing:25.599787pt;}
.ws5_c01202{word-spacing:26.065237pt;}
.ws13_c01202{word-spacing:26.297963pt;}
._8_c01202{margin-left:-30.777925pt;}
._7_c01202{margin-left:-29.032485pt;}
._d_c01202{margin-left:-27.170683pt;}
._3_c01202{margin-left:-26.007056pt;}
._6_c01202{margin-left:-22.632539pt;}
._2_c01202{margin-left:-7.447211pt;}
._5_c01202{margin-left:-6.516309pt;}
._4_c01202{margin-left:-5.527227pt;}
._f_c01202{margin-left:-4.538144pt;}
._9_c01202{margin-left:-3.258155pt;}
._1_c01202{margin-left:-1.919984pt;}
._b_c01202{margin-left:-0.930901pt;}
._0_c01202{width:1.745440pt;}
._c_c01202{width:3.490880pt;}
._e_c01202{width:20.596192pt;}
._a_c01202{width:24.785248pt;}
.fs1_c01202{font-size:58.181333pt;}
.fs0_c01202{font-size:63.760000pt;}
.y0_c01202{bottom:0.000000pt;}
.y21_c01202{bottom:91.976000pt;}
.y20_c01202{bottom:114.396000pt;}
.y1f_c01202{bottom:150.814667pt;}
.y1e_c01202{bottom:173.234667pt;}
.y1d_c01202{bottom:209.653333pt;}
.y1c_c01202{bottom:232.073333pt;}
.y1b_c01202{bottom:254.492000pt;}
.y1a_c01202{bottom:276.912000pt;}
.y19_c01202{bottom:299.330667pt;}
.y18_c01202{bottom:335.750667pt;}
.y17_c01202{bottom:358.170667pt;}
.y16_c01202{bottom:394.589333pt;}
.y15_c01202{bottom:417.009333pt;}
.y14_c01202{bottom:439.428000pt;}
.y13_c01202{bottom:475.848000pt;}
.y12_c01202{bottom:498.266667pt;}
.y11_c01202{bottom:520.686667pt;}
.y10_c01202{bottom:557.105333pt;}
.yf_c01202{bottom:579.525333pt;}
.ye_c01202{bottom:601.945333pt;}
.yd_c01202{bottom:624.364000pt;}
.yc_c01202{bottom:646.784000pt;}
.yb_c01202{bottom:683.202667pt;}
.ya_c01202{bottom:705.622667pt;}
.y9_c01202{bottom:728.041333pt;}
.y8_c01202{bottom:764.461333pt;}
.y7_c01202{bottom:800.880000pt;}
.y6_c01202{bottom:823.300000pt;}
.y5_c01202{bottom:859.720000pt;}
.y4_c01202{bottom:882.138667pt;}
.y3_c01202{bottom:904.558667pt;}
.y2_c01202{bottom:954.366667pt;}
.y1_c01202{bottom:1013.880000pt;}
.h3_c01202{height:43.636000pt;}
.h2_c01202{height:47.820000pt;}
.h1_c01202{height:1123.333333pt;}
.h0_c01202{height:1123.653333pt;}
.w0_c01202{width:794.550667pt;}
.w1_c01202{width:794.666667pt;}
.x0_c01202{left:0.000000pt;}
.x4_c01202{left:113.385333pt;}
.x3_c01202{left:142.078667pt;}
.x2_c01202{left:393.093333pt;}
.x1_c01202{left:657.753333pt;}
}





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

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





.ff0_c01203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01203;src:url('chunks/assets/font_5a26f89a0dff8eee9136171c.woff2')format("woff");}.ff1_c01203{font-family:ff1_c01203;line-height:1.001000;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_c01203;src:url('chunks/assets/font_6b5d15ad2584e026f73e635c.woff2')format("woff");}.ff2_c01203{font-family:ff2_c01203;line-height:1.000000;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_c01203;src:url('chunks/assets/font_e481e62c436288bc20827b20.woff2')format("woff");}.ff3_c01203{font-family:ff3_c01203;line-height:0.913000;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_c01203;src:url('chunks/assets/font_64940abf990f032e878565a8.woff2')format("woff");}.ff4_c01203{font-family:ff4_c01203;line-height:1.000000;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_c01203;src:url('chunks/assets/font_2f9e0be2d4a7b3d984b1b683.woff2')format("woff");}.ff5_c01203{font-family:ff5_c01203;line-height:1.000000;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_c01203{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_c01203{vertical-align:0.000000px;}
.ls1_c01203{letter-spacing:0.000000px;}
.ls0_c01203{letter-spacing:24.945000px;}
.sc__c01203{text-shadow:none;}
.sc0_c01203{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__c01203{-webkit-text-stroke:0px transparent;}
.sc0_c01203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01203{word-spacing:-0.071730px;}
.ws3_c01203{word-spacing:-0.065454px;}
.ws1e_c01203{word-spacing:0.000000px;}
.ws6_c01203{word-spacing:16.625316px;}
.wsd_c01203{word-spacing:17.738034px;}
.ws15_c01203{word-spacing:17.999850px;}
.ws13_c01203{word-spacing:18.065304px;}
.ws14_c01203{word-spacing:18.719844px;}
.ws5_c01203{word-spacing:21.730728px;}
.ws1c_c01203{word-spacing:21.796182px;}
.wsc_c01203{word-spacing:21.992544px;}
.ws11_c01203{word-spacing:22.123452px;}
.ws10_c01203{word-spacing:22.516176px;}
.ws7_c01203{word-spacing:22.581630px;}
.ws16_c01203{word-spacing:23.039808px;}
.ws12_c01203{word-spacing:23.236170px;}
.ws1d_c01203{word-spacing:23.367078px;}
.ws18_c01203{word-spacing:24.610704px;}
.ws1_c01203{word-spacing:25.003428px;}
.ws9_c01203{word-spacing:25.265244px;}
.ws19_c01203{word-spacing:25.919784px;}
.ws17_c01203{word-spacing:26.247054px;}
.wsf_c01203{word-spacing:26.312508px;}
.wsb_c01203{word-spacing:27.032502px;}
.ws1a_c01203{word-spacing:27.948858px;}
.wse_c01203{word-spacing:28.145220px;}
.wsa_c01203{word-spacing:28.210674px;}
.ws1b_c01203{word-spacing:28.341582px;}
.ws4_c01203{word-spacing:28.407036px;}
.ws8_c01203{word-spacing:29.061576px;}
.ws2_c01203{word-spacing:35.737884px;}
._1_c01203{margin-left:-37.636050px;}
._8_c01203{margin-left:-34.375320px;}
._4_c01203{margin-left:-32.727000px;}
._7_c01203{margin-left:-30.436110px;}
._6_c01203{margin-left:-25.461606px;}
._5_c01203{margin-left:-7.265394px;}
._b_c01203{margin-left:-5.486166px;}
._2_c01203{margin-left:-3.467940px;}
._0_c01203{margin-left:-2.159982px;}
._a_c01203{margin-left:-1.059234px;}
._3_c01203{width:1.844682px;}
._9_c01203{width:18.850752px;}
.fc0_c01203{color:rgb(0,0,0);}
.fs1_c01203{font-size:65.454000px;}
.fs0_c01203{font-size:71.730000px;}
.y0_c01203{bottom:0.000000px;}
.y26_c01203{bottom:92.452500px;}
.y25_c01203{bottom:117.675000px;}
.y24_c01203{bottom:160.830000px;}
.y23_c01203{bottom:186.051000px;}
.y22_c01203{bottom:211.273500px;}
.y21_c01203{bottom:236.494500px;}
.y20_c01203{bottom:261.717000px;}
.y1f_c01203{bottom:286.938000px;}
.y1e_c01203{bottom:312.160500px;}
.y1d_c01203{bottom:337.381500px;}
.y1c_c01203{bottom:362.604000px;}
.y1b_c01203{bottom:387.825000px;}
.y1a_c01203{bottom:413.047500px;}
.y19_c01203{bottom:438.268500px;}
.y18_c01203{bottom:463.491000px;}
.y17_c01203{bottom:488.712000px;}
.y16_c01203{bottom:513.934500px;}
.y15_c01203{bottom:539.155500px;}
.y14_c01203{bottom:564.378000px;}
.y13_c01203{bottom:589.599000px;}
.y12_c01203{bottom:614.821500px;}
.y11_c01203{bottom:640.042500px;}
.y10_c01203{bottom:665.265000px;}
.yf_c01203{bottom:690.486000px;}
.ye_c01203{bottom:715.708500px;}
.yd_c01203{bottom:740.929500px;}
.yc_c01203{bottom:766.152000px;}
.yb_c01203{bottom:791.373000px;}
.ya_c01203{bottom:816.595500px;}
.y9_c01203{bottom:841.816500px;}
.y8_c01203{bottom:867.039000px;}
.y7_c01203{bottom:892.260000px;}
.y6_c01203{bottom:917.482500px;}
.y5_c01203{bottom:960.637500px;}
.y4_c01203{bottom:985.858500px;}
.y3_c01203{bottom:1011.081000px;}
.y2_c01203{bottom:1073.662500px;}
.y1_c01203{bottom:1140.615000px;}
.h3_c01203{height:49.090500px;}
.h2_c01203{height:53.797500px;}
.h1_c01203{height:1263.750000px;}
.h0_c01203{height:1264.110000px;}
.w0_c01203{width:893.869500px;}
.w1_c01203{width:894.000000px;}
.x0_c01203{left:0.000000px;}
.x4_c01203{left:127.558500px;}
.x3_c01203{left:159.838500px;}
.x2_c01203{left:437.526000px;}
.x1_c01203{left:739.972500px;}
@media print{
.v0_c01203{vertical-align:0.000000pt;}
.ls1_c01203{letter-spacing:0.000000pt;}
.ls0_c01203{letter-spacing:22.173333pt;}
.ws0_c01203{word-spacing:-0.063760pt;}
.ws3_c01203{word-spacing:-0.058181pt;}
.ws1e_c01203{word-spacing:0.000000pt;}
.ws6_c01203{word-spacing:14.778059pt;}
.wsd_c01203{word-spacing:15.767141pt;}
.ws15_c01203{word-spacing:15.999867pt;}
.ws13_c01203{word-spacing:16.058048pt;}
.ws14_c01203{word-spacing:16.639861pt;}
.ws5_c01203{word-spacing:19.316203pt;}
.ws1c_c01203{word-spacing:19.374384pt;}
.wsc_c01203{word-spacing:19.548928pt;}
.ws11_c01203{word-spacing:19.665291pt;}
.ws10_c01203{word-spacing:20.014379pt;}
.ws7_c01203{word-spacing:20.072560pt;}
.ws16_c01203{word-spacing:20.479829pt;}
.ws12_c01203{word-spacing:20.654373pt;}
.ws1d_c01203{word-spacing:20.770736pt;}
.ws18_c01203{word-spacing:21.876181pt;}
.ws1_c01203{word-spacing:22.225269pt;}
.ws9_c01203{word-spacing:22.457995pt;}
.ws19_c01203{word-spacing:23.039808pt;}
.ws17_c01203{word-spacing:23.330715pt;}
.wsf_c01203{word-spacing:23.388896pt;}
.wsb_c01203{word-spacing:24.028891pt;}
.ws1a_c01203{word-spacing:24.843429pt;}
.wse_c01203{word-spacing:25.017973pt;}
.wsa_c01203{word-spacing:25.076155pt;}
.ws1b_c01203{word-spacing:25.192517pt;}
.ws4_c01203{word-spacing:25.250699pt;}
.ws8_c01203{word-spacing:25.832512pt;}
.ws2_c01203{word-spacing:31.767008pt;}
._1_c01203{margin-left:-33.454267pt;}
._8_c01203{margin-left:-30.555840pt;}
._4_c01203{margin-left:-29.090667pt;}
._7_c01203{margin-left:-27.054320pt;}
._6_c01203{margin-left:-22.632539pt;}
._5_c01203{margin-left:-6.458128pt;}
._b_c01203{margin-left:-4.876592pt;}
._2_c01203{margin-left:-3.082613pt;}
._0_c01203{margin-left:-1.919984pt;}
._a_c01203{margin-left:-0.941541pt;}
._3_c01203{width:1.639717pt;}
._9_c01203{width:16.756224pt;}
.fs1_c01203{font-size:58.181333pt;}
.fs0_c01203{font-size:63.760000pt;}
.y0_c01203{bottom:0.000000pt;}
.y26_c01203{bottom:82.180000pt;}
.y25_c01203{bottom:104.600000pt;}
.y24_c01203{bottom:142.960000pt;}
.y23_c01203{bottom:165.378667pt;}
.y22_c01203{bottom:187.798667pt;}
.y21_c01203{bottom:210.217333pt;}
.y20_c01203{bottom:232.637333pt;}
.y1f_c01203{bottom:255.056000pt;}
.y1e_c01203{bottom:277.476000pt;}
.y1d_c01203{bottom:299.894667pt;}
.y1c_c01203{bottom:322.314667pt;}
.y1b_c01203{bottom:344.733333pt;}
.y1a_c01203{bottom:367.153333pt;}
.y19_c01203{bottom:389.572000pt;}
.y18_c01203{bottom:411.992000pt;}
.y17_c01203{bottom:434.410667pt;}
.y16_c01203{bottom:456.830667pt;}
.y15_c01203{bottom:479.249333pt;}
.y14_c01203{bottom:501.669333pt;}
.y13_c01203{bottom:524.088000pt;}
.y12_c01203{bottom:546.508000pt;}
.y11_c01203{bottom:568.926667pt;}
.y10_c01203{bottom:591.346667pt;}
.yf_c01203{bottom:613.765333pt;}
.ye_c01203{bottom:636.185333pt;}
.yd_c01203{bottom:658.604000pt;}
.yc_c01203{bottom:681.024000pt;}
.yb_c01203{bottom:703.442667pt;}
.ya_c01203{bottom:725.862667pt;}
.y9_c01203{bottom:748.281333pt;}
.y8_c01203{bottom:770.701333pt;}
.y7_c01203{bottom:793.120000pt;}
.y6_c01203{bottom:815.540000pt;}
.y5_c01203{bottom:853.900000pt;}
.y4_c01203{bottom:876.318667pt;}
.y3_c01203{bottom:898.738667pt;}
.y2_c01203{bottom:954.366667pt;}
.y1_c01203{bottom:1013.880000pt;}
.h3_c01203{height:43.636000pt;}
.h2_c01203{height:47.820000pt;}
.h1_c01203{height:1123.333333pt;}
.h0_c01203{height:1123.653333pt;}
.w0_c01203{width:794.550667pt;}
.w1_c01203{width:794.666667pt;}
.x0_c01203{left:0.000000pt;}
.x4_c01203{left:113.385333pt;}
.x3_c01203{left:142.078667pt;}
.x2_c01203{left:388.912000pt;}
.x1_c01203{left:657.753333pt;}
}





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

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





.ff0_c01204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01204;src:url('chunks/assets/font_5e694eb37edca5e2cec42602.woff2')format("woff");}.ff1_c01204{font-family:ff1_c01204;line-height:1.001000;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_c01204;src:url('chunks/assets/font_20ac97912b22c1d1d4740051.woff2')format("woff");}.ff2_c01204{font-family:ff2_c01204;line-height:1.000000;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_c01204;src:url('chunks/assets/font_47002d040e67edc56cd1ef9c.woff2')format("woff");}.ff3_c01204{font-family:ff3_c01204;line-height:1.000000;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_c01204{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_c01204{vertical-align:0.000000px;}
.ls2_c01204{letter-spacing:0.000000px;}
.ls1_c01204{letter-spacing:19.059000px;}
.ls0_c01204{letter-spacing:21.819000px;}
.sc__c01204{text-shadow:none;}
.sc0_c01204{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__c01204{-webkit-text-stroke:0px transparent;}
.sc0_c01204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01204{word-spacing:-0.071730px;}
.ws20_c01204{word-spacing:-0.065454px;}
.ws21_c01204{word-spacing:0.000000px;}
.ws19_c01204{word-spacing:14.465334px;}
.ws1a_c01204{word-spacing:16.298046px;}
.ws7_c01204{word-spacing:16.887132px;}
.wsa_c01204{word-spacing:16.952586px;}
.ws12_c01204{word-spacing:17.607126px;}
.wsc_c01204{word-spacing:19.243476px;}
.ws18_c01204{word-spacing:20.618010px;}
.ws1f_c01204{word-spacing:20.814372px;}
.ws10_c01204{word-spacing:21.665274px;}
.wsf_c01204{word-spacing:21.730728px;}
.ws17_c01204{word-spacing:21.796182px;}
.ws3_c01204{word-spacing:21.861636px;}
.wsb_c01204{word-spacing:21.992544px;}
.ws1c_c01204{word-spacing:22.188906px;}
.ws15_c01204{word-spacing:22.516176px;}
.ws6_c01204{word-spacing:22.974354px;}
.ws2_c01204{word-spacing:23.170716px;}
.ws5_c01204{word-spacing:23.301624px;}
.ws8_c01204{word-spacing:23.367078px;}
.ws14_c01204{word-spacing:23.432532px;}
.ws13_c01204{word-spacing:23.628894px;}
.ws16_c01204{word-spacing:24.152526px;}
.ws1_c01204{word-spacing:24.872520px;}
.ws9_c01204{word-spacing:24.937974px;}
.ws1b_c01204{word-spacing:25.068882px;}
.ws4_c01204{word-spacing:25.527060px;}
.wse_c01204{word-spacing:25.657968px;}
.ws1d_c01204{word-spacing:25.723422px;}
.ws1e_c01204{word-spacing:28.014312px;}
.wsd_c01204{word-spacing:28.210674px;}
.ws11_c01204{word-spacing:28.472490px;}
._8_c01204{margin-left:-33.970626px;}
._6_c01204{margin-left:-32.072460px;}
._7_c01204{margin-left:-30.763380px;}
._5_c01204{margin-left:-25.461606px;}
._4_c01204{margin-left:-7.265394px;}
._0_c01204{margin-left:-5.498136px;}
._3_c01204{margin-left:-3.730878px;}
._1_c01204{margin-left:-1.767258px;}
._2_c01204{width:1.439988px;}
._a_c01204{width:2.487252px;}
._9_c01204{width:3.665424px;}
._b_c01204{width:26.377962px;}
.fc0_c01204{color:rgb(0,0,0);}
.fs1_c01204{font-size:65.454000px;}
.fs0_c01204{font-size:71.730000px;}
.y0_c01204{bottom:0.000000px;}
.y27_c01204{bottom:71.973000px;}
.y26_c01204{bottom:97.194000px;}
.y25_c01204{bottom:122.416500px;}
.y24_c01204{bottom:164.758500px;}
.y23_c01204{bottom:189.981000px;}
.y22_c01204{bottom:215.202000px;}
.y21_c01204{bottom:240.424500px;}
.y20_c01204{bottom:265.645500px;}
.y1f_c01204{bottom:290.868000px;}
.y1e_c01204{bottom:316.089000px;}
.y1d_c01204{bottom:341.311500px;}
.y1c_c01204{bottom:383.653500px;}
.y1b_c01204{bottom:408.876000px;}
.y1a_c01204{bottom:434.097000px;}
.y19_c01204{bottom:459.319500px;}
.y18_c01204{bottom:484.540500px;}
.y17_c01204{bottom:509.763000px;}
.y16_c01204{bottom:534.984000px;}
.y15_c01204{bottom:560.206500px;}
.y14_c01204{bottom:585.427500px;}
.y13_c01204{bottom:610.650000px;}
.y12_c01204{bottom:635.871000px;}
.y11_c01204{bottom:661.093500px;}
.y10_c01204{bottom:703.437000px;}
.yf_c01204{bottom:728.658000px;}
.ye_c01204{bottom:753.880500px;}
.yd_c01204{bottom:779.101500px;}
.yc_c01204{bottom:804.324000px;}
.yb_c01204{bottom:829.545000px;}
.ya_c01204{bottom:854.767500px;}
.y9_c01204{bottom:879.988500px;}
.y8_c01204{bottom:922.332000px;}
.y7_c01204{bottom:947.553000px;}
.y6_c01204{bottom:972.775500px;}
.y5_c01204{bottom:997.996500px;}
.y4_c01204{bottom:1023.219000px;}
.y3_c01204{bottom:1048.440000px;}
.y2_c01204{bottom:1073.662500px;}
.y1_c01204{bottom:1140.615000px;}
.h3_c01204{height:49.090500px;}
.h2_c01204{height:53.797500px;}
.h1_c01204{height:1263.750000px;}
.h0_c01204{height:1264.110000px;}
.w0_c01204{width:893.869500px;}
.w1_c01204{width:894.000000px;}
.x0_c01204{left:0.000000px;}
.x3_c01204{left:127.558500px;}
.x2_c01204{left:159.838500px;}
.x1_c01204{left:739.972500px;}
@media print{
.v0_c01204{vertical-align:0.000000pt;}
.ls2_c01204{letter-spacing:0.000000pt;}
.ls1_c01204{letter-spacing:16.941333pt;}
.ls0_c01204{letter-spacing:19.394667pt;}
.ws0_c01204{word-spacing:-0.063760pt;}
.ws20_c01204{word-spacing:-0.058181pt;}
.ws21_c01204{word-spacing:0.000000pt;}
.ws19_c01204{word-spacing:12.858075pt;}
.ws1a_c01204{word-spacing:14.487152pt;}
.ws7_c01204{word-spacing:15.010784pt;}
.wsa_c01204{word-spacing:15.068965pt;}
.ws12_c01204{word-spacing:15.650779pt;}
.wsc_c01204{word-spacing:17.105312pt;}
.ws18_c01204{word-spacing:18.327120pt;}
.ws1f_c01204{word-spacing:18.501664pt;}
.ws10_c01204{word-spacing:19.258021pt;}
.wsf_c01204{word-spacing:19.316203pt;}
.ws17_c01204{word-spacing:19.374384pt;}
.ws3_c01204{word-spacing:19.432565pt;}
.wsb_c01204{word-spacing:19.548928pt;}
.ws1c_c01204{word-spacing:19.723472pt;}
.ws15_c01204{word-spacing:20.014379pt;}
.ws6_c01204{word-spacing:20.421648pt;}
.ws2_c01204{word-spacing:20.596192pt;}
.ws5_c01204{word-spacing:20.712555pt;}
.ws8_c01204{word-spacing:20.770736pt;}
.ws14_c01204{word-spacing:20.828917pt;}
.ws13_c01204{word-spacing:21.003461pt;}
.ws16_c01204{word-spacing:21.468912pt;}
.ws1_c01204{word-spacing:22.108907pt;}
.ws9_c01204{word-spacing:22.167088pt;}
.ws1b_c01204{word-spacing:22.283451pt;}
.ws4_c01204{word-spacing:22.690720pt;}
.wse_c01204{word-spacing:22.807083pt;}
.ws1d_c01204{word-spacing:22.865264pt;}
.ws1e_c01204{word-spacing:24.901611pt;}
.wsd_c01204{word-spacing:25.076155pt;}
.ws11_c01204{word-spacing:25.308880pt;}
._8_c01204{margin-left:-30.196112pt;}
._6_c01204{margin-left:-28.508853pt;}
._7_c01204{margin-left:-27.345227pt;}
._5_c01204{margin-left:-22.632539pt;}
._4_c01204{margin-left:-6.458128pt;}
._0_c01204{margin-left:-4.887232pt;}
._3_c01204{margin-left:-3.316336pt;}
._1_c01204{margin-left:-1.570896pt;}
._2_c01204{width:1.279989pt;}
._a_c01204{width:2.210891pt;}
._9_c01204{width:3.258155pt;}
._b_c01204{width:23.447077pt;}
.fs1_c01204{font-size:58.181333pt;}
.fs0_c01204{font-size:63.760000pt;}
.y0_c01204{bottom:0.000000pt;}
.y27_c01204{bottom:63.976000pt;}
.y26_c01204{bottom:86.394667pt;}
.y25_c01204{bottom:108.814667pt;}
.y24_c01204{bottom:146.452000pt;}
.y23_c01204{bottom:168.872000pt;}
.y22_c01204{bottom:191.290667pt;}
.y21_c01204{bottom:213.710667pt;}
.y20_c01204{bottom:236.129333pt;}
.y1f_c01204{bottom:258.549333pt;}
.y1e_c01204{bottom:280.968000pt;}
.y1d_c01204{bottom:303.388000pt;}
.y1c_c01204{bottom:341.025333pt;}
.y1b_c01204{bottom:363.445333pt;}
.y1a_c01204{bottom:385.864000pt;}
.y19_c01204{bottom:408.284000pt;}
.y18_c01204{bottom:430.702667pt;}
.y17_c01204{bottom:453.122667pt;}
.y16_c01204{bottom:475.541333pt;}
.y15_c01204{bottom:497.961333pt;}
.y14_c01204{bottom:520.380000pt;}
.y13_c01204{bottom:542.800000pt;}
.y12_c01204{bottom:565.218667pt;}
.y11_c01204{bottom:587.638667pt;}
.y10_c01204{bottom:625.277333pt;}
.yf_c01204{bottom:647.696000pt;}
.ye_c01204{bottom:670.116000pt;}
.yd_c01204{bottom:692.534667pt;}
.yc_c01204{bottom:714.954667pt;}
.yb_c01204{bottom:737.373333pt;}
.ya_c01204{bottom:759.793333pt;}
.y9_c01204{bottom:782.212000pt;}
.y8_c01204{bottom:819.850667pt;}
.y7_c01204{bottom:842.269333pt;}
.y6_c01204{bottom:864.689333pt;}
.y5_c01204{bottom:887.108000pt;}
.y4_c01204{bottom:909.528000pt;}
.y3_c01204{bottom:931.946667pt;}
.y2_c01204{bottom:954.366667pt;}
.y1_c01204{bottom:1013.880000pt;}
.h3_c01204{height:43.636000pt;}
.h2_c01204{height:47.820000pt;}
.h1_c01204{height:1123.333333pt;}
.h0_c01204{height:1123.653333pt;}
.w0_c01204{width:794.550667pt;}
.w1_c01204{width:794.666667pt;}
.x0_c01204{left:0.000000pt;}
.x3_c01204{left:113.385333pt;}
.x2_c01204{left:142.078667pt;}
.x1_c01204{left:657.753333pt;}
}





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

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





.ff0_c01205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01205;src:url('chunks/assets/font_94f4a25c1f6473cce608b872.woff2')format("woff");}.ff1_c01205{font-family:ff1_c01205;line-height:1.001000;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_c01205;src:url('chunks/assets/font_24072f83f2edfa8b87ffd95d.woff2')format("woff");}.ff2_c01205{font-family:ff2_c01205;line-height:1.000000;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_c01205;src:url('chunks/assets/font_d4c701212efcb956796663c5.woff2')format("woff");}.ff3_c01205{font-family:ff3_c01205;line-height:1.000000;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_c01205{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_c01205{vertical-align:0.000000px;}
.ls1_c01205{letter-spacing:0.000000px;}
.ls0_c01205{letter-spacing:31.311000px;}
.sc__c01205{text-shadow:none;}
.sc0_c01205{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__c01205{-webkit-text-stroke:0px transparent;}
.sc0_c01205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01205{word-spacing:-0.071730px;}
.wsb_c01205{word-spacing:-0.065454px;}
.ws24_c01205{word-spacing:0.000000px;}
.wsc_c01205{word-spacing:14.530788px;}
.ws1e_c01205{word-spacing:16.625316px;}
.ws22_c01205{word-spacing:17.672580px;}
.ws4_c01205{word-spacing:17.868942px;}
.ws8_c01205{word-spacing:18.327120px;}
.ws7_c01205{word-spacing:18.654390px;}
.ws6_c01205{word-spacing:18.850752px;}
.ws1a_c01205{word-spacing:19.701654px;}
.wsa_c01205{word-spacing:20.618010px;}
.ws1f_c01205{word-spacing:20.879826px;}
.ws13_c01205{word-spacing:21.010734px;}
.ws5_c01205{word-spacing:21.272550px;}
.ws14_c01205{word-spacing:21.534366px;}
.ws15_c01205{word-spacing:21.665274px;}
.ws23_c01205{word-spacing:21.730728px;}
.ws16_c01205{word-spacing:21.796182px;}
.wsf_c01205{word-spacing:21.927090px;}
.ws21_c01205{word-spacing:22.057998px;}
.ws17_c01205{word-spacing:22.319814px;}
.ws9_c01205{word-spacing:22.516176px;}
.ws1b_c01205{word-spacing:23.039808px;}
.wse_c01205{word-spacing:23.236170px;}
.ws2_c01205{word-spacing:23.367078px;}
.ws19_c01205{word-spacing:24.676158px;}
.wsd_c01205{word-spacing:25.068882px;}
.ws1d_c01205{word-spacing:25.461606px;}
.ws3_c01205{word-spacing:26.247054px;}
.ws11_c01205{word-spacing:26.312508px;}
.ws20_c01205{word-spacing:26.443416px;}
.ws12_c01205{word-spacing:26.574324px;}
.ws10_c01205{word-spacing:27.490680px;}
.ws1c_c01205{word-spacing:27.817950px;}
.ws18_c01205{word-spacing:30.959742px;}
.ws1_c01205{word-spacing:32.072460px;}
._3_c01205{margin-left:-33.512448px;}
._2_c01205{margin-left:-31.745190px;}
._8_c01205{margin-left:-25.461606px;}
._7_c01205{margin-left:-7.396302px;}
._a_c01205{margin-left:-5.498136px;}
._0_c01205{margin-left:-3.338154px;}
._5_c01205{margin-left:-1.767258px;}
._9_c01205{width:1.309080px;}
._4_c01205{width:2.356344px;}
._6_c01205{width:3.730878px;}
._c_c01205{width:14.988966px;}
._b_c01205{width:21.992544px;}
._1_c01205{width:30.501564px;}
.fc0_c01205{color:rgb(0,0,0);}
.fs1_c01205{font-size:65.454000px;}
.fs0_c01205{font-size:71.730000px;}
.y0_c01205{bottom:0.000000px;}
.y28_c01205{bottom:97.302000px;}
.y27_c01205{bottom:122.524500px;}
.y26_c01205{bottom:147.745500px;}
.y25_c01205{bottom:172.968000px;}
.y24_c01205{bottom:198.189000px;}
.y23_c01205{bottom:223.411500px;}
.y22_c01205{bottom:248.632500px;}
.y21_c01205{bottom:273.855000px;}
.y20_c01205{bottom:299.076000px;}
.y1f_c01205{bottom:324.298500px;}
.y1e_c01205{bottom:349.519500px;}
.y1d_c01205{bottom:374.742000px;}
.y1c_c01205{bottom:399.963000px;}
.y1b_c01205{bottom:425.185500px;}
.y1a_c01205{bottom:450.406500px;}
.y19_c01205{bottom:475.629000px;}
.y18_c01205{bottom:518.782500px;}
.y17_c01205{bottom:544.005000px;}
.y16_c01205{bottom:569.226000px;}
.y15_c01205{bottom:594.448500px;}
.y14_c01205{bottom:619.671000px;}
.y13_c01205{bottom:644.892000px;}
.y12_c01205{bottom:670.114500px;}
.y11_c01205{bottom:695.335500px;}
.y10_c01205{bottom:720.558000px;}
.yf_c01205{bottom:745.779000px;}
.ye_c01205{bottom:771.001500px;}
.yd_c01205{bottom:796.222500px;}
.yc_c01205{bottom:821.445000px;}
.yb_c01205{bottom:846.666000px;}
.ya_c01205{bottom:871.888500px;}
.y9_c01205{bottom:897.109500px;}
.y8_c01205{bottom:922.332000px;}
.y7_c01205{bottom:947.553000px;}
.y6_c01205{bottom:972.775500px;}
.y5_c01205{bottom:997.996500px;}
.y4_c01205{bottom:1023.219000px;}
.y3_c01205{bottom:1048.440000px;}
.y2_c01205{bottom:1073.662500px;}
.y1_c01205{bottom:1140.615000px;}
.h3_c01205{height:49.090500px;}
.h2_c01205{height:53.797500px;}
.h1_c01205{height:1263.750000px;}
.h0_c01205{height:1264.110000px;}
.w0_c01205{width:893.869500px;}
.w1_c01205{width:894.000000px;}
.x0_c01205{left:0.000000px;}
.x3_c01205{left:127.558500px;}
.x2_c01205{left:159.838500px;}
.x1_c01205{left:739.972500px;}
@media print{
.v0_c01205{vertical-align:0.000000pt;}
.ls1_c01205{letter-spacing:0.000000pt;}
.ls0_c01205{letter-spacing:27.832000pt;}
.ws0_c01205{word-spacing:-0.063760pt;}
.wsb_c01205{word-spacing:-0.058181pt;}
.ws24_c01205{word-spacing:0.000000pt;}
.wsc_c01205{word-spacing:12.916256pt;}
.ws1e_c01205{word-spacing:14.778059pt;}
.ws22_c01205{word-spacing:15.708960pt;}
.ws4_c01205{word-spacing:15.883504pt;}
.ws8_c01205{word-spacing:16.290773pt;}
.ws7_c01205{word-spacing:16.581680pt;}
.ws6_c01205{word-spacing:16.756224pt;}
.ws1a_c01205{word-spacing:17.512581pt;}
.wsa_c01205{word-spacing:18.327120pt;}
.ws1f_c01205{word-spacing:18.559845pt;}
.ws13_c01205{word-spacing:18.676208pt;}
.ws5_c01205{word-spacing:18.908933pt;}
.ws14_c01205{word-spacing:19.141659pt;}
.ws15_c01205{word-spacing:19.258021pt;}
.ws23_c01205{word-spacing:19.316203pt;}
.ws16_c01205{word-spacing:19.374384pt;}
.wsf_c01205{word-spacing:19.490747pt;}
.ws21_c01205{word-spacing:19.607109pt;}
.ws17_c01205{word-spacing:19.839835pt;}
.ws9_c01205{word-spacing:20.014379pt;}
.ws1b_c01205{word-spacing:20.479829pt;}
.wse_c01205{word-spacing:20.654373pt;}
.ws2_c01205{word-spacing:20.770736pt;}
.ws19_c01205{word-spacing:21.934363pt;}
.wsd_c01205{word-spacing:22.283451pt;}
.ws1d_c01205{word-spacing:22.632539pt;}
.ws3_c01205{word-spacing:23.330715pt;}
.ws11_c01205{word-spacing:23.388896pt;}
.ws20_c01205{word-spacing:23.505259pt;}
.ws12_c01205{word-spacing:23.621621pt;}
.ws10_c01205{word-spacing:24.436160pt;}
.ws1c_c01205{word-spacing:24.727067pt;}
.ws18_c01205{word-spacing:27.519771pt;}
.ws1_c01205{word-spacing:28.508853pt;}
._3_c01205{margin-left:-29.788843pt;}
._2_c01205{margin-left:-28.217947pt;}
._8_c01205{margin-left:-22.632539pt;}
._7_c01205{margin-left:-6.574491pt;}
._a_c01205{margin-left:-4.887232pt;}
._0_c01205{margin-left:-2.967248pt;}
._5_c01205{margin-left:-1.570896pt;}
._9_c01205{width:1.163627pt;}
._4_c01205{width:2.094528pt;}
._6_c01205{width:3.316336pt;}
._c_c01205{width:13.323525pt;}
._b_c01205{width:19.548928pt;}
._1_c01205{width:27.112501pt;}
.fs1_c01205{font-size:58.181333pt;}
.fs0_c01205{font-size:63.760000pt;}
.y0_c01205{bottom:0.000000pt;}
.y28_c01205{bottom:86.490667pt;}
.y27_c01205{bottom:108.910667pt;}
.y26_c01205{bottom:131.329333pt;}
.y25_c01205{bottom:153.749333pt;}
.y24_c01205{bottom:176.168000pt;}
.y23_c01205{bottom:198.588000pt;}
.y22_c01205{bottom:221.006667pt;}
.y21_c01205{bottom:243.426667pt;}
.y20_c01205{bottom:265.845333pt;}
.y1f_c01205{bottom:288.265333pt;}
.y1e_c01205{bottom:310.684000pt;}
.y1d_c01205{bottom:333.104000pt;}
.y1c_c01205{bottom:355.522667pt;}
.y1b_c01205{bottom:377.942667pt;}
.y1a_c01205{bottom:400.361333pt;}
.y19_c01205{bottom:422.781333pt;}
.y18_c01205{bottom:461.140000pt;}
.y17_c01205{bottom:483.560000pt;}
.y16_c01205{bottom:505.978667pt;}
.y15_c01205{bottom:528.398667pt;}
.y14_c01205{bottom:550.818667pt;}
.y13_c01205{bottom:573.237333pt;}
.y12_c01205{bottom:595.657333pt;}
.y11_c01205{bottom:618.076000pt;}
.y10_c01205{bottom:640.496000pt;}
.yf_c01205{bottom:662.914667pt;}
.ye_c01205{bottom:685.334667pt;}
.yd_c01205{bottom:707.753333pt;}
.yc_c01205{bottom:730.173333pt;}
.yb_c01205{bottom:752.592000pt;}
.ya_c01205{bottom:775.012000pt;}
.y9_c01205{bottom:797.430667pt;}
.y8_c01205{bottom:819.850667pt;}
.y7_c01205{bottom:842.269333pt;}
.y6_c01205{bottom:864.689333pt;}
.y5_c01205{bottom:887.108000pt;}
.y4_c01205{bottom:909.528000pt;}
.y3_c01205{bottom:931.946667pt;}
.y2_c01205{bottom:954.366667pt;}
.y1_c01205{bottom:1013.880000pt;}
.h3_c01205{height:43.636000pt;}
.h2_c01205{height:47.820000pt;}
.h1_c01205{height:1123.333333pt;}
.h0_c01205{height:1123.653333pt;}
.w0_c01205{width:794.550667pt;}
.w1_c01205{width:794.666667pt;}
.x0_c01205{left:0.000000pt;}
.x3_c01205{left:113.385333pt;}
.x2_c01205{left:142.078667pt;}
.x1_c01205{left:657.753333pt;}
}





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

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





.ff0_c01206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01206;src:url('chunks/assets/font_6ae706655d3fe01224734c07.woff2')format("woff");}.ff1_c01206{font-family:ff1_c01206;line-height:1.001000;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_c01206;src:url('chunks/assets/font_7c453800a5d8fc109efe5693.woff2')format("woff");}.ff2_c01206{font-family:ff2_c01206;line-height:1.000000;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_c01206;src:url('chunks/assets/font_b705af7f69412e52d9f098b2.woff2')format("woff");}.ff3_c01206{font-family:ff3_c01206;line-height:1.000000;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_c01206;src:url('chunks/assets/font_ca3474ad95c6ee86ea9f8f8f.woff2')format("woff");}.ff4_c01206{font-family:ff4_c01206;line-height:1.000000;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_c01206;src:url('chunks/assets/font_584966de01560c0ba42cda66.woff2')format("woff");}.ff5_c01206{font-family:ff5_c01206;line-height:0.913000;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_c01206{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_c01206{vertical-align:0.000000px;}
.ls1_c01206{letter-spacing:0.000000px;}
.ls0_c01206{letter-spacing:21.819000px;}
.sc__c01206{text-shadow:none;}
.sc0_c01206{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__c01206{-webkit-text-stroke:0px transparent;}
.sc0_c01206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01206{word-spacing:-0.071730px;}
.ws15_c01206{word-spacing:-0.065454px;}
.ws17_c01206{word-spacing:0.000000px;}
.ws12_c01206{word-spacing:16.428954px;}
.wsc_c01206{word-spacing:18.065304px;}
.ws2_c01206{word-spacing:18.196212px;}
.ws5_c01206{word-spacing:18.588936px;}
.wsb_c01206{word-spacing:19.832562px;}
.ws3_c01206{word-spacing:20.421648px;}
.ws10_c01206{word-spacing:20.683464px;}
.ws11_c01206{word-spacing:21.665274px;}
.ws6_c01206{word-spacing:21.730728px;}
.ws16_c01206{word-spacing:21.796182px;}
.wsa_c01206{word-spacing:21.927090px;}
.ws7_c01206{word-spacing:22.516176px;}
.ws8_c01206{word-spacing:22.974354px;}
.ws14_c01206{word-spacing:23.301624px;}
.ws1_c01206{word-spacing:23.367078px;}
.ws9_c01206{word-spacing:24.087072px;}
.wsd_c01206{word-spacing:25.003428px;}
.ws4_c01206{word-spacing:27.490680px;}
.ws13_c01206{word-spacing:27.687042px;}
.wse_c01206{word-spacing:27.817950px;}
.wsf_c01206{word-spacing:29.650662px;}
._c_c01206{margin-left:-38.251794px;}
._9_c01206{margin-left:-34.559712px;}
._2_c01206{margin-left:-32.661546px;}
._8_c01206{margin-left:-31.025196px;}
._b_c01206{margin-left:-29.323392px;}
._7_c01206{margin-left:-25.461606px;}
._a_c01206{margin-left:-8.574474px;}
._6_c01206{margin-left:-7.396302px;}
._4_c01206{margin-left:-5.432682px;}
._1_c01206{margin-left:-3.338154px;}
._3_c01206{margin-left:-1.767258px;}
._5_c01206{width:1.767258px;}
._0_c01206{width:3.272700px;}
._e_c01206{width:11.127180px;}
._d_c01206{width:29.519754px;}
.fc0_c01206{color:rgb(0,0,0);}
.fs1_c01206{font-size:65.454000px;}
.fs0_c01206{font-size:71.730000px;}
.y0_c01206{bottom:0.000000px;}
.y22_c01206{bottom:71.973000px;}
.y21_c01206{bottom:114.691500px;}
.y20_c01206{bottom:139.914000px;}
.y1f_c01206{bottom:182.632500px;}
.y1e_c01206{bottom:207.855000px;}
.y1d_c01206{bottom:250.575000px;}
.y1c_c01206{bottom:275.796000px;}
.y1b_c01206{bottom:318.516000px;}
.y1a_c01206{bottom:343.737000px;}
.y19_c01206{bottom:368.959500px;}
.y18_c01206{bottom:394.180500px;}
.y17_c01206{bottom:419.403000px;}
.y16_c01206{bottom:444.624000px;}
.y15_c01206{bottom:469.846500px;}
.y14_c01206{bottom:512.565000px;}
.y13_c01206{bottom:537.787500px;}
.y12_c01206{bottom:563.008500px;}
.y11_c01206{bottom:624.285000px;}
.y10_c01206{bottom:703.059000px;}
.yf_c01206{bottom:728.281500px;}
.ye_c01206{bottom:753.502500px;}
.yd_c01206{bottom:778.725000px;}
.yc_c01206{bottom:803.946000px;}
.yb_c01206{bottom:829.168500px;}
.ya_c01206{bottom:854.389500px;}
.y9_c01206{bottom:879.612000px;}
.y8_c01206{bottom:904.833000px;}
.y7_c01206{bottom:947.553000px;}
.y6_c01206{bottom:972.775500px;}
.y5_c01206{bottom:997.996500px;}
.y4_c01206{bottom:1023.219000px;}
.y3_c01206{bottom:1048.440000px;}
.y2_c01206{bottom:1073.662500px;}
.y1_c01206{bottom:1140.615000px;}
.h3_c01206{height:49.090500px;}
.h2_c01206{height:53.797500px;}
.h1_c01206{height:1263.750000px;}
.h0_c01206{height:1264.110000px;}
.w0_c01206{width:893.869500px;}
.w1_c01206{width:894.000000px;}
.x0_c01206{left:0.000000px;}
.x3_c01206{left:127.558500px;}
.x2_c01206{left:159.838500px;}
.x4_c01206{left:437.526000px;}
.x1_c01206{left:739.972500px;}
@media print{
.v0_c01206{vertical-align:0.000000pt;}
.ls1_c01206{letter-spacing:0.000000pt;}
.ls0_c01206{letter-spacing:19.394667pt;}
.ws0_c01206{word-spacing:-0.063760pt;}
.ws15_c01206{word-spacing:-0.058181pt;}
.ws17_c01206{word-spacing:0.000000pt;}
.ws12_c01206{word-spacing:14.603515pt;}
.wsc_c01206{word-spacing:16.058048pt;}
.ws2_c01206{word-spacing:16.174411pt;}
.ws5_c01206{word-spacing:16.523499pt;}
.wsb_c01206{word-spacing:17.628944pt;}
.ws3_c01206{word-spacing:18.152576pt;}
.ws10_c01206{word-spacing:18.385301pt;}
.ws11_c01206{word-spacing:19.258021pt;}
.ws6_c01206{word-spacing:19.316203pt;}
.ws16_c01206{word-spacing:19.374384pt;}
.wsa_c01206{word-spacing:19.490747pt;}
.ws7_c01206{word-spacing:20.014379pt;}
.ws8_c01206{word-spacing:20.421648pt;}
.ws14_c01206{word-spacing:20.712555pt;}
.ws1_c01206{word-spacing:20.770736pt;}
.ws9_c01206{word-spacing:21.410731pt;}
.wsd_c01206{word-spacing:22.225269pt;}
.ws4_c01206{word-spacing:24.436160pt;}
.ws13_c01206{word-spacing:24.610704pt;}
.wse_c01206{word-spacing:24.727067pt;}
.wsf_c01206{word-spacing:26.356144pt;}
._c_c01206{margin-left:-34.001595pt;}
._9_c01206{margin-left:-30.719744pt;}
._2_c01206{margin-left:-29.032485pt;}
._8_c01206{margin-left:-27.577952pt;}
._b_c01206{margin-left:-26.065237pt;}
._7_c01206{margin-left:-22.632539pt;}
._a_c01206{margin-left:-7.621755pt;}
._6_c01206{margin-left:-6.574491pt;}
._4_c01206{margin-left:-4.829051pt;}
._1_c01206{margin-left:-2.967248pt;}
._3_c01206{margin-left:-1.570896pt;}
._5_c01206{width:1.570896pt;}
._0_c01206{width:2.909067pt;}
._e_c01206{width:9.890827pt;}
._d_c01206{width:26.239781pt;}
.fs1_c01206{font-size:58.181333pt;}
.fs0_c01206{font-size:63.760000pt;}
.y0_c01206{bottom:0.000000pt;}
.y22_c01206{bottom:63.976000pt;}
.y21_c01206{bottom:101.948000pt;}
.y20_c01206{bottom:124.368000pt;}
.y1f_c01206{bottom:162.340000pt;}
.y1e_c01206{bottom:184.760000pt;}
.y1d_c01206{bottom:222.733333pt;}
.y1c_c01206{bottom:245.152000pt;}
.y1b_c01206{bottom:283.125333pt;}
.y1a_c01206{bottom:305.544000pt;}
.y19_c01206{bottom:327.964000pt;}
.y18_c01206{bottom:350.382667pt;}
.y17_c01206{bottom:372.802667pt;}
.y16_c01206{bottom:395.221333pt;}
.y15_c01206{bottom:417.641333pt;}
.y14_c01206{bottom:455.613333pt;}
.y13_c01206{bottom:478.033333pt;}
.y12_c01206{bottom:500.452000pt;}
.y11_c01206{bottom:554.920000pt;}
.y10_c01206{bottom:624.941333pt;}
.yf_c01206{bottom:647.361333pt;}
.ye_c01206{bottom:669.780000pt;}
.yd_c01206{bottom:692.200000pt;}
.yc_c01206{bottom:714.618667pt;}
.yb_c01206{bottom:737.038667pt;}
.ya_c01206{bottom:759.457333pt;}
.y9_c01206{bottom:781.877333pt;}
.y8_c01206{bottom:804.296000pt;}
.y7_c01206{bottom:842.269333pt;}
.y6_c01206{bottom:864.689333pt;}
.y5_c01206{bottom:887.108000pt;}
.y4_c01206{bottom:909.528000pt;}
.y3_c01206{bottom:931.946667pt;}
.y2_c01206{bottom:954.366667pt;}
.y1_c01206{bottom:1013.880000pt;}
.h3_c01206{height:43.636000pt;}
.h2_c01206{height:47.820000pt;}
.h1_c01206{height:1123.333333pt;}
.h0_c01206{height:1123.653333pt;}
.w0_c01206{width:794.550667pt;}
.w1_c01206{width:794.666667pt;}
.x0_c01206{left:0.000000pt;}
.x3_c01206{left:113.385333pt;}
.x2_c01206{left:142.078667pt;}
.x4_c01206{left:388.912000pt;}
.x1_c01206{left:657.753333pt;}
}





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

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





.ff0_c01207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01207;src:url('chunks/assets/font_1b3d11b48bae63a9d65c8d42.woff2')format("woff");}.ff1_c01207{font-family:ff1_c01207;line-height:1.001000;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_c01207;src:url('chunks/assets/font_e3099de71a2374e34eaa6be6.woff2')format("woff");}.ff2_c01207{font-family:ff2_c01207;line-height:1.000000;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_c01207;src:url('chunks/assets/font_6ef2e3d9ee5e0c410e4151bd.woff2')format("woff");}.ff3_c01207{font-family:ff3_c01207;line-height:1.000000;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_c01207{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_c01207{vertical-align:0.000000px;}
.ls1_c01207{letter-spacing:0.000000px;}
.ls0_c01207{letter-spacing:21.819000px;}
.sc__c01207{text-shadow:none;}
.sc0_c01207{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__c01207{-webkit-text-stroke:0px transparent;}
.sc0_c01207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01207{word-spacing:-0.071730px;}
.wsa_c01207{word-spacing:-0.065454px;}
.ws13_c01207{word-spacing:0.000000px;}
.wsd_c01207{word-spacing:9.949008px;}
.ws4_c01207{word-spacing:10.865364px;}
.ws11_c01207{word-spacing:15.250782px;}
.ws3_c01207{word-spacing:20.945280px;}
.wsf_c01207{word-spacing:21.534366px;}
.ws1_c01207{word-spacing:21.730728px;}
.ws5_c01207{word-spacing:21.796182px;}
.ws10_c01207{word-spacing:23.039808px;}
.ws12_c01207{word-spacing:23.301624px;}
.ws8_c01207{word-spacing:23.367078px;}
.ws2_c01207{word-spacing:24.479796px;}
.ws9_c01207{word-spacing:26.377962px;}
.ws6_c01207{word-spacing:26.705232px;}
.wsc_c01207{word-spacing:26.770686px;}
.wsb_c01207{word-spacing:27.621588px;}
.ws7_c01207{word-spacing:27.883404px;}
.wse_c01207{word-spacing:30.828834px;}
._6_c01207{margin-left:-34.559712px;}
._8_c01207{margin-left:-32.792454px;}
._2_c01207{margin-left:-30.894288px;}
._4_c01207{margin-left:-25.461606px;}
._3_c01207{margin-left:-7.199940px;}
._5_c01207{margin-left:-5.432682px;}
._9_c01207{margin-left:-3.796332px;}
._0_c01207{margin-left:-1.832712px;}
._1_c01207{width:1.898166px;}
._b_c01207{width:10.734456px;}
._f_c01207{width:19.963470px;}
._a_c01207{width:21.796182px;}
._d_c01207{width:23.028846px;}
._e_c01207{width:24.348888px;}
._7_c01207{width:26.116146px;}
._10_c01207{width:27.270108px;}
._c_c01207{width:35.629332px;}
.fc0_c01207{color:rgb(0,0,0);}
.fs1_c01207{font-size:65.454000px;}
.fs0_c01207{font-size:71.730000px;}
.y0_c01207{bottom:0.000000px;}
.y22_c01207{bottom:87.238500px;}
.y21_c01207{bottom:112.459500px;}
.y20_c01207{bottom:137.682000px;}
.y1f_c01207{bottom:162.903000px;}
.y1e_c01207{bottom:188.125500px;}
.y1d_c01207{bottom:213.346500px;}
.y1c_c01207{bottom:238.569000px;}
.y1b_c01207{bottom:263.790000px;}
.y1a_c01207{bottom:289.012500px;}
.y19_c01207{bottom:332.166000px;}
.y18_c01207{bottom:357.388500px;}
.y17_c01207{bottom:400.543500px;}
.y16_c01207{bottom:425.764500px;}
.y15_c01207{bottom:468.919500px;}
.y14_c01207{bottom:494.140500px;}
.y13_c01207{bottom:537.295500px;}
.y12_c01207{bottom:562.518000px;}
.y11_c01207{bottom:587.739000px;}
.y10_c01207{bottom:630.894000px;}
.yf_c01207{bottom:656.115000px;}
.ye_c01207{bottom:681.337500px;}
.yd_c01207{bottom:724.491000px;}
.yc_c01207{bottom:749.713500px;}
.yb_c01207{bottom:792.868500px;}
.ya_c01207{bottom:818.089500px;}
.y9_c01207{bottom:861.244500px;}
.y8_c01207{bottom:886.465500px;}
.y7_c01207{bottom:911.688000px;}
.y6_c01207{bottom:936.909000px;}
.y5_c01207{bottom:980.064000px;}
.y4_c01207{bottom:1005.285000px;}
.y3_c01207{bottom:1048.440000px;}
.y2_c01207{bottom:1073.662500px;}
.y1_c01207{bottom:1140.615000px;}
.h3_c01207{height:49.090500px;}
.h2_c01207{height:53.797500px;}
.h1_c01207{height:1263.750000px;}
.h0_c01207{height:1264.110000px;}
.w0_c01207{width:893.869500px;}
.w1_c01207{width:894.000000px;}
.x0_c01207{left:0.000000px;}
.x3_c01207{left:127.558500px;}
.x2_c01207{left:159.838500px;}
.x1_c01207{left:739.972500px;}
@media print{
.v0_c01207{vertical-align:0.000000pt;}
.ls1_c01207{letter-spacing:0.000000pt;}
.ls0_c01207{letter-spacing:19.394667pt;}
.ws0_c01207{word-spacing:-0.063760pt;}
.wsa_c01207{word-spacing:-0.058181pt;}
.ws13_c01207{word-spacing:0.000000pt;}
.wsd_c01207{word-spacing:8.843563pt;}
.ws4_c01207{word-spacing:9.658101pt;}
.ws11_c01207{word-spacing:13.556251pt;}
.ws3_c01207{word-spacing:18.618027pt;}
.wsf_c01207{word-spacing:19.141659pt;}
.ws1_c01207{word-spacing:19.316203pt;}
.ws5_c01207{word-spacing:19.374384pt;}
.ws10_c01207{word-spacing:20.479829pt;}
.ws12_c01207{word-spacing:20.712555pt;}
.ws8_c01207{word-spacing:20.770736pt;}
.ws2_c01207{word-spacing:21.759819pt;}
.ws9_c01207{word-spacing:23.447077pt;}
.ws6_c01207{word-spacing:23.737984pt;}
.wsc_c01207{word-spacing:23.796165pt;}
.wsb_c01207{word-spacing:24.552523pt;}
.ws7_c01207{word-spacing:24.785248pt;}
.wse_c01207{word-spacing:27.403408pt;}
._6_c01207{margin-left:-30.719744pt;}
._8_c01207{margin-left:-29.148848pt;}
._2_c01207{margin-left:-27.461589pt;}
._4_c01207{margin-left:-22.632539pt;}
._3_c01207{margin-left:-6.399947pt;}
._5_c01207{margin-left:-4.829051pt;}
._9_c01207{margin-left:-3.374517pt;}
._0_c01207{margin-left:-1.629077pt;}
._1_c01207{width:1.687259pt;}
._b_c01207{width:9.541739pt;}
._f_c01207{width:17.745307pt;}
._a_c01207{width:19.374384pt;}
._d_c01207{width:20.470085pt;}
._e_c01207{width:21.643456pt;}
._7_c01207{width:23.214352pt;}
._10_c01207{width:24.240096pt;}
._c_c01207{width:31.670517pt;}
.fs1_c01207{font-size:58.181333pt;}
.fs0_c01207{font-size:63.760000pt;}
.y0_c01207{bottom:0.000000pt;}
.y22_c01207{bottom:77.545333pt;}
.y21_c01207{bottom:99.964000pt;}
.y20_c01207{bottom:122.384000pt;}
.y1f_c01207{bottom:144.802667pt;}
.y1e_c01207{bottom:167.222667pt;}
.y1d_c01207{bottom:189.641333pt;}
.y1c_c01207{bottom:212.061333pt;}
.y1b_c01207{bottom:234.480000pt;}
.y1a_c01207{bottom:256.900000pt;}
.y19_c01207{bottom:295.258667pt;}
.y18_c01207{bottom:317.678667pt;}
.y17_c01207{bottom:356.038667pt;}
.y16_c01207{bottom:378.457333pt;}
.y15_c01207{bottom:416.817333pt;}
.y14_c01207{bottom:439.236000pt;}
.y13_c01207{bottom:477.596000pt;}
.y12_c01207{bottom:500.016000pt;}
.y11_c01207{bottom:522.434667pt;}
.y10_c01207{bottom:560.794667pt;}
.yf_c01207{bottom:583.213333pt;}
.ye_c01207{bottom:605.633333pt;}
.yd_c01207{bottom:643.992000pt;}
.yc_c01207{bottom:666.412000pt;}
.yb_c01207{bottom:704.772000pt;}
.ya_c01207{bottom:727.190667pt;}
.y9_c01207{bottom:765.550667pt;}
.y8_c01207{bottom:787.969333pt;}
.y7_c01207{bottom:810.389333pt;}
.y6_c01207{bottom:832.808000pt;}
.y5_c01207{bottom:871.168000pt;}
.y4_c01207{bottom:893.586667pt;}
.y3_c01207{bottom:931.946667pt;}
.y2_c01207{bottom:954.366667pt;}
.y1_c01207{bottom:1013.880000pt;}
.h3_c01207{height:43.636000pt;}
.h2_c01207{height:47.820000pt;}
.h1_c01207{height:1123.333333pt;}
.h0_c01207{height:1123.653333pt;}
.w0_c01207{width:794.550667pt;}
.w1_c01207{width:794.666667pt;}
.x0_c01207{left:0.000000pt;}
.x3_c01207{left:113.385333pt;}
.x2_c01207{left:142.078667pt;}
.x1_c01207{left:657.753333pt;}
}





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

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





.ff0_c01208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01208;src:url('chunks/assets/font_43a0714e3afb1c15d3d707cc.woff2')format("woff");}.ff1_c01208{font-family:ff1_c01208;line-height:1.001000;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_c01208;src:url('chunks/assets/font_22d4ae1ef78c33ce28744be9.woff2')format("woff");}.ff2_c01208{font-family:ff2_c01208;line-height:1.000000;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_c01208;src:url('chunks/assets/font_4bf62e17dacc05c6c636ff11.woff2')format("woff");}.ff3_c01208{font-family:ff3_c01208;line-height:1.000000;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_c01208;src:url('chunks/assets/font_7c76bb09170d909383381ae0.woff2')format("woff");}.ff4_c01208{font-family:ff4_c01208;line-height:1.000000;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_c01208;src:url('chunks/assets/font_86622e48c589e1c025a77248.woff2')format("woff");}.ff5_c01208{font-family:ff5_c01208;line-height:0.913000;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_c01208{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_c01208{vertical-align:0.000000px;}
.ls1_c01208{letter-spacing:0.000000px;}
.ls0_c01208{letter-spacing:21.819000px;}
.sc__c01208{text-shadow:none;}
.sc0_c01208{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__c01208{-webkit-text-stroke:0px transparent;}
.sc0_c01208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01208{word-spacing:-0.071730px;}
.ws7_c01208{word-spacing:-0.065454px;}
.ws12_c01208{word-spacing:0.000000px;}
.ws8_c01208{word-spacing:14.596242px;}
.ws10_c01208{word-spacing:18.719844px;}
.ws4_c01208{word-spacing:20.945280px;}
.wse_c01208{word-spacing:21.141642px;}
.ws1_c01208{word-spacing:21.729978px;}
.ws3_c01208{word-spacing:21.730728px;}
.ws9_c01208{word-spacing:21.796182px;}
.ws5_c01208{word-spacing:22.843446px;}
.ws2_c01208{word-spacing:23.367078px;}
.wsb_c01208{word-spacing:24.610704px;}
.wsc_c01208{word-spacing:24.676158px;}
.wsa_c01208{word-spacing:25.003428px;}
.wsf_c01208{word-spacing:26.116146px;}
.ws6_c01208{word-spacing:27.032502px;}
.wsd_c01208{word-spacing:27.294318px;}
.ws11_c01208{word-spacing:29.257938px;}
._3_c01208{margin-left:-33.577902px;}
._7_c01208{margin-left:-32.400480px;}
._6_c01208{margin-left:-31.025946px;}
._d_c01208{margin-left:-29.323392px;}
._a_c01208{margin-left:-25.461606px;}
._c_c01208{margin-left:-8.575224px;}
._9_c01208{margin-left:-7.462506px;}
._2_c01208{margin-left:-5.039958px;}
._1_c01208{margin-left:-3.338154px;}
._0_c01208{margin-left:-1.766508px;}
._5_c01208{width:1.243626px;}
._4_c01208{width:3.141792px;}
._b_c01208{width:10.406436px;}
._8_c01208{width:11.518404px;}
._e_c01208{width:31.481874px;}
.fc0_c01208{color:rgb(0,0,0);}
.fs1_c01208{font-size:65.454000px;}
.fs0_c01208{font-size:71.730000px;}
.y0_c01208{bottom:0.000000px;}
.y20_c01208{bottom:80.895000px;}
.y1f_c01208{bottom:124.048500px;}
.y1e_c01208{bottom:149.271000px;}
.y1d_c01208{bottom:192.426000px;}
.y1c_c01208{bottom:217.647000px;}
.y1b_c01208{bottom:260.802000px;}
.y1a_c01208{bottom:286.023000px;}
.y19_c01208{bottom:329.178000px;}
.y18_c01208{bottom:354.399000px;}
.y17_c01208{bottom:379.621500px;}
.y16_c01208{bottom:404.842500px;}
.y15_c01208{bottom:430.065000px;}
.y14_c01208{bottom:455.286000px;}
.y13_c01208{bottom:480.508500px;}
.y12_c01208{bottom:505.729500px;}
.y11_c01208{bottom:548.884500px;}
.y10_c01208{bottom:574.107000px;}
.yf_c01208{bottom:599.328000px;}
.ye_c01208{bottom:661.909500px;}
.yd_c01208{bottom:742.425000px;}
.yc_c01208{bottom:767.646000px;}
.yb_c01208{bottom:792.868500px;}
.ya_c01208{bottom:818.089500px;}
.y9_c01208{bottom:861.244500px;}
.y8_c01208{bottom:886.465500px;}
.y7_c01208{bottom:911.688000px;}
.y6_c01208{bottom:954.841500px;}
.y5_c01208{bottom:980.064000px;}
.y4_c01208{bottom:1005.285000px;}
.y3_c01208{bottom:1048.440000px;}
.y2_c01208{bottom:1073.662500px;}
.y1_c01208{bottom:1140.615000px;}
.h3_c01208{height:49.090500px;}
.h2_c01208{height:53.797500px;}
.h1_c01208{height:1263.750000px;}
.h0_c01208{height:1264.110000px;}
.w0_c01208{width:893.869500px;}
.w1_c01208{width:894.000000px;}
.x0_c01208{left:0.000000px;}
.x3_c01208{left:127.558500px;}
.x2_c01208{left:159.838500px;}
.x4_c01208{left:437.526000px;}
.x1_c01208{left:739.972500px;}
@media print{
.v0_c01208{vertical-align:0.000000pt;}
.ls1_c01208{letter-spacing:0.000000pt;}
.ls0_c01208{letter-spacing:19.394667pt;}
.ws0_c01208{word-spacing:-0.063760pt;}
.ws7_c01208{word-spacing:-0.058181pt;}
.ws12_c01208{word-spacing:0.000000pt;}
.ws8_c01208{word-spacing:12.974437pt;}
.ws10_c01208{word-spacing:16.639861pt;}
.ws4_c01208{word-spacing:18.618027pt;}
.wse_c01208{word-spacing:18.792571pt;}
.ws1_c01208{word-spacing:19.315536pt;}
.ws3_c01208{word-spacing:19.316203pt;}
.ws9_c01208{word-spacing:19.374384pt;}
.ws5_c01208{word-spacing:20.305285pt;}
.ws2_c01208{word-spacing:20.770736pt;}
.wsb_c01208{word-spacing:21.876181pt;}
.wsc_c01208{word-spacing:21.934363pt;}
.wsa_c01208{word-spacing:22.225269pt;}
.wsf_c01208{word-spacing:23.214352pt;}
.ws6_c01208{word-spacing:24.028891pt;}
.wsd_c01208{word-spacing:24.261616pt;}
.ws11_c01208{word-spacing:26.007056pt;}
._3_c01208{margin-left:-29.847024pt;}
._7_c01208{margin-left:-28.800427pt;}
._6_c01208{margin-left:-27.578619pt;}
._d_c01208{margin-left:-26.065237pt;}
._a_c01208{margin-left:-22.632539pt;}
._c_c01208{margin-left:-7.622421pt;}
._9_c01208{margin-left:-6.633339pt;}
._2_c01208{margin-left:-4.479963pt;}
._1_c01208{margin-left:-2.967248pt;}
._0_c01208{margin-left:-1.570229pt;}
._5_c01208{width:1.105445pt;}
._4_c01208{width:2.792704pt;}
._b_c01208{width:9.250165pt;}
._8_c01208{width:10.238581pt;}
._e_c01208{width:27.983888pt;}
.fs1_c01208{font-size:58.181333pt;}
.fs0_c01208{font-size:63.760000pt;}
.y0_c01208{bottom:0.000000pt;}
.y20_c01208{bottom:71.906667pt;}
.y1f_c01208{bottom:110.265333pt;}
.y1e_c01208{bottom:132.685333pt;}
.y1d_c01208{bottom:171.045333pt;}
.y1c_c01208{bottom:193.464000pt;}
.y1b_c01208{bottom:231.824000pt;}
.y1a_c01208{bottom:254.242667pt;}
.y19_c01208{bottom:292.602667pt;}
.y18_c01208{bottom:315.021333pt;}
.y17_c01208{bottom:337.441333pt;}
.y16_c01208{bottom:359.860000pt;}
.y15_c01208{bottom:382.280000pt;}
.y14_c01208{bottom:404.698667pt;}
.y13_c01208{bottom:427.118667pt;}
.y12_c01208{bottom:449.537333pt;}
.y11_c01208{bottom:487.897333pt;}
.y10_c01208{bottom:510.317333pt;}
.yf_c01208{bottom:532.736000pt;}
.ye_c01208{bottom:588.364000pt;}
.yd_c01208{bottom:659.933333pt;}
.yc_c01208{bottom:682.352000pt;}
.yb_c01208{bottom:704.772000pt;}
.ya_c01208{bottom:727.190667pt;}
.y9_c01208{bottom:765.550667pt;}
.y8_c01208{bottom:787.969333pt;}
.y7_c01208{bottom:810.389333pt;}
.y6_c01208{bottom:848.748000pt;}
.y5_c01208{bottom:871.168000pt;}
.y4_c01208{bottom:893.586667pt;}
.y3_c01208{bottom:931.946667pt;}
.y2_c01208{bottom:954.366667pt;}
.y1_c01208{bottom:1013.880000pt;}
.h3_c01208{height:43.636000pt;}
.h2_c01208{height:47.820000pt;}
.h1_c01208{height:1123.333333pt;}
.h0_c01208{height:1123.653333pt;}
.w0_c01208{width:794.550667pt;}
.w1_c01208{width:794.666667pt;}
.x0_c01208{left:0.000000pt;}
.x3_c01208{left:113.385333pt;}
.x2_c01208{left:142.078667pt;}
.x4_c01208{left:388.912000pt;}
.x1_c01208{left:657.753333pt;}
}





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

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





.ff0_c01209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01209;src:url('chunks/assets/font_3e82d40d64659953f5af0ab6.woff2')format("woff");}.ff1_c01209{font-family:ff1_c01209;line-height:1.001000;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_c01209;src:url('chunks/assets/font_33e76fc72ffaadc33387d8be.woff2')format("woff");}.ff2_c01209{font-family:ff2_c01209;line-height:1.000000;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_c01209;src:url('chunks/assets/font_90331adbcb9afd789bb85c42.woff2')format("woff");}.ff3_c01209{font-family:ff3_c01209;line-height:1.000000;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_c01209{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_c01209{vertical-align:0.000000px;}
.v1_c01209{vertical-align:16.542000px;}
.ls1_c01209{letter-spacing:0.000000px;}
.ls0_c01209{letter-spacing:21.819000px;}
.sc__c01209{text-shadow:none;}
.sc0_c01209{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__c01209{-webkit-text-stroke:0px transparent;}
.sc0_c01209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01209{word-spacing:-0.071730px;}
.ws1_c01209{word-spacing:-0.065454px;}
.ws9_c01209{word-spacing:0.000000px;}
.ws8_c01209{word-spacing:20.487102px;}
.ws5_c01209{word-spacing:21.730728px;}
.ws3_c01209{word-spacing:21.796182px;}
.ws6_c01209{word-spacing:22.974354px;}
.ws4_c01209{word-spacing:23.301624px;}
.ws2_c01209{word-spacing:23.367078px;}
.ws7_c01209{word-spacing:27.556134px;}
._3_c01209{margin-left:-34.559712px;}
._4_c01209{margin-left:-33.381540px;}
._a_c01209{margin-left:-32.334276px;}
._8_c01209{margin-left:-30.763380px;}
._6_c01209{margin-left:-25.461606px;}
._5_c01209{margin-left:-7.134486px;}
._7_c01209{margin-left:-5.039958px;}
._1_c01209{margin-left:-3.403608px;}
._0_c01209{margin-left:-1.963620px;}
._2_c01209{width:1.701804px;}
._d_c01209{width:3.599970px;}
._b_c01209{width:20.028924px;}
._e_c01209{width:21.599820px;}
._9_c01209{width:25.919784px;}
._c_c01209{width:29.091594px;}
.fc0_c01209{color:rgb(0,0,0);}
.fs1_c01209{font-size:65.454000px;}
.fs0_c01209{font-size:71.730000px;}
.y0_c01209{bottom:0.000000px;}
.y20_c01209{bottom:83.883000px;}
.y1f_c01209{bottom:109.105500px;}
.y1e_c01209{bottom:134.326500px;}
.y1d_c01209{bottom:177.481500px;}
.y1c_c01209{bottom:202.702500px;}
.y1b_c01209{bottom:245.857500px;}
.y1a_c01209{bottom:271.080000px;}
.y19_c01209{bottom:314.233500px;}
.y18_c01209{bottom:339.456000px;}
.y17_c01209{bottom:382.609500px;}
.y16_c01209{bottom:407.832000px;}
.y15_c01209{bottom:433.053000px;}
.y14_c01209{bottom:458.275500px;}
.y13_c01209{bottom:501.430500px;}
.y12_c01209{bottom:526.651500px;}
.y11_c01209{bottom:569.806500px;}
.y10_c01209{bottom:595.027500px;}
.yf_c01209{bottom:638.182500px;}
.ye_c01209{bottom:663.405000px;}
.yd_c01209{bottom:706.558500px;}
.yc_c01209{bottom:731.781000px;}
.yb_c01209{bottom:774.934500px;}
.ya_c01209{bottom:800.157000px;}
.y9_c01209{bottom:825.378000px;}
.y8_c01209{bottom:868.533000px;}
.y7_c01209{bottom:893.755500px;}
.y6_c01209{bottom:936.909000px;}
.y5_c01209{bottom:962.131500px;}
.y4_c01209{bottom:1005.285000px;}
.y3_c01209{bottom:1030.507500px;}
.y2_c01209{bottom:1073.662500px;}
.y1_c01209{bottom:1140.615000px;}
.h3_c01209{height:49.090500px;}
.h2_c01209{height:53.797500px;}
.h4_c01209{height:65.632500px;}
.h1_c01209{height:1263.750000px;}
.h0_c01209{height:1264.110000px;}
.w0_c01209{width:893.869500px;}
.w1_c01209{width:894.000000px;}
.x0_c01209{left:0.000000px;}
.x3_c01209{left:127.558500px;}
.x2_c01209{left:159.838500px;}
.x4_c01209{left:436.521000px;}
.x1_c01209{left:739.972500px;}
@media print{
.v0_c01209{vertical-align:0.000000pt;}
.v1_c01209{vertical-align:14.704000pt;}
.ls1_c01209{letter-spacing:0.000000pt;}
.ls0_c01209{letter-spacing:19.394667pt;}
.ws0_c01209{word-spacing:-0.063760pt;}
.ws1_c01209{word-spacing:-0.058181pt;}
.ws9_c01209{word-spacing:0.000000pt;}
.ws8_c01209{word-spacing:18.210757pt;}
.ws5_c01209{word-spacing:19.316203pt;}
.ws3_c01209{word-spacing:19.374384pt;}
.ws6_c01209{word-spacing:20.421648pt;}
.ws4_c01209{word-spacing:20.712555pt;}
.ws2_c01209{word-spacing:20.770736pt;}
.ws7_c01209{word-spacing:24.494341pt;}
._3_c01209{margin-left:-30.719744pt;}
._4_c01209{margin-left:-29.672480pt;}
._a_c01209{margin-left:-28.741579pt;}
._8_c01209{margin-left:-27.345227pt;}
._6_c01209{margin-left:-22.632539pt;}
._5_c01209{margin-left:-6.341765pt;}
._7_c01209{margin-left:-4.479963pt;}
._1_c01209{margin-left:-3.025429pt;}
._0_c01209{margin-left:-1.745440pt;}
._2_c01209{width:1.512715pt;}
._d_c01209{width:3.199973pt;}
._b_c01209{width:17.803488pt;}
._e_c01209{width:19.199840pt;}
._9_c01209{width:23.039808pt;}
._c_c01209{width:25.859195pt;}
.fs1_c01209{font-size:58.181333pt;}
.fs0_c01209{font-size:63.760000pt;}
.y0_c01209{bottom:0.000000pt;}
.y20_c01209{bottom:74.562667pt;}
.y1f_c01209{bottom:96.982667pt;}
.y1e_c01209{bottom:119.401333pt;}
.y1d_c01209{bottom:157.761333pt;}
.y1c_c01209{bottom:180.180000pt;}
.y1b_c01209{bottom:218.540000pt;}
.y1a_c01209{bottom:240.960000pt;}
.y19_c01209{bottom:279.318667pt;}
.y18_c01209{bottom:301.738667pt;}
.y17_c01209{bottom:340.097333pt;}
.y16_c01209{bottom:362.517333pt;}
.y15_c01209{bottom:384.936000pt;}
.y14_c01209{bottom:407.356000pt;}
.y13_c01209{bottom:445.716000pt;}
.y12_c01209{bottom:468.134667pt;}
.y11_c01209{bottom:506.494667pt;}
.y10_c01209{bottom:528.913333pt;}
.yf_c01209{bottom:567.273333pt;}
.ye_c01209{bottom:589.693333pt;}
.yd_c01209{bottom:628.052000pt;}
.yc_c01209{bottom:650.472000pt;}
.yb_c01209{bottom:688.830667pt;}
.ya_c01209{bottom:711.250667pt;}
.y9_c01209{bottom:733.669333pt;}
.y8_c01209{bottom:772.029333pt;}
.y7_c01209{bottom:794.449333pt;}
.y6_c01209{bottom:832.808000pt;}
.y5_c01209{bottom:855.228000pt;}
.y4_c01209{bottom:893.586667pt;}
.y3_c01209{bottom:916.006667pt;}
.y2_c01209{bottom:954.366667pt;}
.y1_c01209{bottom:1013.880000pt;}
.h3_c01209{height:43.636000pt;}
.h2_c01209{height:47.820000pt;}
.h4_c01209{height:58.340000pt;}
.h1_c01209{height:1123.333333pt;}
.h0_c01209{height:1123.653333pt;}
.w0_c01209{width:794.550667pt;}
.w1_c01209{width:794.666667pt;}
.x0_c01209{left:0.000000pt;}
.x3_c01209{left:113.385333pt;}
.x2_c01209{left:142.078667pt;}
.x4_c01209{left:388.018667pt;}
.x1_c01209{left:657.753333pt;}
}





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

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





.ff0_c01210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01210;src:url('chunks/assets/font_82378e048a256e5d5877d733.woff2')format("woff");}.ff1_c01210{font-family:ff1_c01210;line-height:1.001000;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_c01210;src:url('chunks/assets/font_a1f9d96ff3bad045a8463424.woff2')format("woff");}.ff2_c01210{font-family:ff2_c01210;line-height:1.000000;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_c01210;src:url('chunks/assets/font_199fa326d4eb45e80712c42e.woff2')format("woff");}.ff3_c01210{font-family:ff3_c01210;line-height:1.000000;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_c01210;src:url('chunks/assets/font_87d1946689bd43884444276a.woff2')format("woff");}.ff4_c01210{font-family:ff4_c01210;line-height:1.000000;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_c01210;src:url('chunks/assets/font_189c4ce3b0468cbd1e36d3a5.woff2')format("woff");}.ff5_c01210{font-family:ff5_c01210;line-height:0.913000;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_c01210;src:url('chunks/assets/font_d1fd22f002d33928f9700eac.woff2')format("woff");}.ff6_c01210{font-family:ff6_c01210;line-height:0.697000;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_c01210{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_c01210{vertical-align:0.000000px;}
.v1_c01210{vertical-align:23.754000px;}
.ls2_c01210{letter-spacing:0.000000px;}
.ls1_c01210{letter-spacing:3.005580px;}
.ls0_c01210{letter-spacing:21.819000px;}
.sc__c01210{text-shadow:none;}
.sc0_c01210{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__c01210{-webkit-text-stroke:0px transparent;}
.sc0_c01210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01210{word-spacing:-0.071730px;}
.ws10_c01210{word-spacing:-0.065454px;}
.ws14_c01210{word-spacing:0.000000px;}
.ws11_c01210{word-spacing:16.363500px;}
.ws6_c01210{word-spacing:18.261666px;}
.wsa_c01210{word-spacing:20.094378px;}
.ws13_c01210{word-spacing:20.159832px;}
.wse_c01210{word-spacing:20.356194px;}
.ws4_c01210{word-spacing:21.730728px;}
.ws8_c01210{word-spacing:21.796182px;}
.ws3_c01210{word-spacing:21.992544px;}
.wsb_c01210{word-spacing:22.647084px;}
.wsc_c01210{word-spacing:22.777992px;}
.ws5_c01210{word-spacing:23.301624px;}
.ws1_c01210{word-spacing:23.367078px;}
.wsf_c01210{word-spacing:25.003428px;}
.ws7_c01210{word-spacing:25.134336px;}
.ws12_c01210{word-spacing:26.901594px;}
.wsd_c01210{word-spacing:28.930668px;}
.ws9_c01210{word-spacing:29.847024px;}
.ws2_c01210{word-spacing:30.697926px;}
._a_c01210{margin-left:-37.570596px;}
._5_c01210{margin-left:-34.494258px;}
._2_c01210{margin-left:-32.727000px;}
._9_c01210{margin-left:-30.894288px;}
._8_c01210{margin-left:-25.461606px;}
._7_c01210{margin-left:-7.265394px;}
._1_c01210{margin-left:-5.432682px;}
._b_c01210{margin-left:-4.382496px;}
._0_c01210{margin-left:-3.338154px;}
._6_c01210{margin-left:-1.832712px;}
._4_c01210{width:1.767258px;}
._3_c01210{width:3.665424px;}
.fc0_c01210{color:rgb(0,0,0);}
.fs2_c01210{font-size:47.820000px;}
.fs1_c01210{font-size:65.454000px;}
.fs0_c01210{font-size:71.730000px;}
.y0_c01210{bottom:0.000000px;}
.y20_c01210{bottom:91.539000px;}
.y1f_c01210{bottom:116.760000px;}
.y1e_c01210{bottom:141.982500px;}
.y1d_c01210{bottom:210.358500px;}
.y1c_c01210{bottom:253.512000px;}
.y1b_c01210{bottom:278.734500px;}
.y1a_c01210{bottom:341.316000px;}
.y19_c01210{bottom:385.965000px;}
.y18_c01210{bottom:411.186000px;}
.y17_c01210{bottom:454.341000px;}
.y16_c01210{bottom:479.563500px;}
.y15_c01210{bottom:504.784500px;}
.y14_c01210{bottom:530.007000px;}
.y13_c01210{bottom:573.160500px;}
.y12_c01210{bottom:598.383000px;}
.y11_c01210{bottom:623.604000px;}
.y10_c01210{bottom:666.759000px;}
.yf_c01210{bottom:691.981500px;}
.ye_c01210{bottom:717.202500px;}
.yd_c01210{bottom:742.425000px;}
.yc_c01210{bottom:767.646000px;}
.yb_c01210{bottom:810.801000px;}
.ya_c01210{bottom:836.022000px;}
.y9_c01210{bottom:861.244500px;}
.y8_c01210{bottom:904.398000px;}
.y7_c01210{bottom:929.620500px;}
.y6_c01210{bottom:954.841500px;}
.y5_c01210{bottom:997.996500px;}
.y4_c01210{bottom:1023.219000px;}
.y3_c01210{bottom:1048.440000px;}
.y2_c01210{bottom:1073.662500px;}
.y1_c01210{bottom:1140.615000px;}
.h3_c01210{height:49.090500px;}
.h2_c01210{height:53.797500px;}
.h5_c01210{height:56.074320px;}
.h4_c01210{height:56.080320px;}
.h1_c01210{height:1263.750000px;}
.h0_c01210{height:1264.110000px;}
.w0_c01210{width:893.869500px;}
.w1_c01210{width:894.000000px;}
.x0_c01210{left:0.000000px;}
.x3_c01210{left:127.558500px;}
.x2_c01210{left:159.838500px;}
.x4_c01210{left:437.526000px;}
.x1_c01210{left:739.972500px;}
@media print{
.v0_c01210{vertical-align:0.000000pt;}
.v1_c01210{vertical-align:21.114667pt;}
.ls2_c01210{letter-spacing:0.000000pt;}
.ls1_c01210{letter-spacing:2.671627pt;}
.ls0_c01210{letter-spacing:19.394667pt;}
.ws0_c01210{word-spacing:-0.063760pt;}
.ws10_c01210{word-spacing:-0.058181pt;}
.ws14_c01210{word-spacing:0.000000pt;}
.ws11_c01210{word-spacing:14.545333pt;}
.ws6_c01210{word-spacing:16.232592pt;}
.wsa_c01210{word-spacing:17.861669pt;}
.ws13_c01210{word-spacing:17.919851pt;}
.wse_c01210{word-spacing:18.094395pt;}
.ws4_c01210{word-spacing:19.316203pt;}
.ws8_c01210{word-spacing:19.374384pt;}
.ws3_c01210{word-spacing:19.548928pt;}
.wsb_c01210{word-spacing:20.130741pt;}
.wsc_c01210{word-spacing:20.247104pt;}
.ws5_c01210{word-spacing:20.712555pt;}
.ws1_c01210{word-spacing:20.770736pt;}
.wsf_c01210{word-spacing:22.225269pt;}
.ws7_c01210{word-spacing:22.341632pt;}
.ws12_c01210{word-spacing:23.912528pt;}
.wsd_c01210{word-spacing:25.716149pt;}
.ws9_c01210{word-spacing:26.530688pt;}
.ws2_c01210{word-spacing:27.287045pt;}
._a_c01210{margin-left:-33.396085pt;}
._5_c01210{margin-left:-30.661563pt;}
._2_c01210{margin-left:-29.090667pt;}
._9_c01210{margin-left:-27.461589pt;}
._8_c01210{margin-left:-22.632539pt;}
._7_c01210{margin-left:-6.458128pt;}
._1_c01210{margin-left:-4.829051pt;}
._b_c01210{margin-left:-3.895552pt;}
._0_c01210{margin-left:-2.967248pt;}
._6_c01210{margin-left:-1.629077pt;}
._4_c01210{width:1.570896pt;}
._3_c01210{width:3.258155pt;}
.fs2_c01210{font-size:42.506667pt;}
.fs1_c01210{font-size:58.181333pt;}
.fs0_c01210{font-size:63.760000pt;}
.y0_c01210{bottom:0.000000pt;}
.y20_c01210{bottom:81.368000pt;}
.y1f_c01210{bottom:103.786667pt;}
.y1e_c01210{bottom:126.206667pt;}
.y1d_c01210{bottom:186.985333pt;}
.y1c_c01210{bottom:225.344000pt;}
.y1b_c01210{bottom:247.764000pt;}
.y1a_c01210{bottom:303.392000pt;}
.y19_c01210{bottom:343.080000pt;}
.y18_c01210{bottom:365.498667pt;}
.y17_c01210{bottom:403.858667pt;}
.y16_c01210{bottom:426.278667pt;}
.y15_c01210{bottom:448.697333pt;}
.y14_c01210{bottom:471.117333pt;}
.y13_c01210{bottom:509.476000pt;}
.y12_c01210{bottom:531.896000pt;}
.y11_c01210{bottom:554.314667pt;}
.y10_c01210{bottom:592.674667pt;}
.yf_c01210{bottom:615.094667pt;}
.ye_c01210{bottom:637.513333pt;}
.yd_c01210{bottom:659.933333pt;}
.yc_c01210{bottom:682.352000pt;}
.yb_c01210{bottom:720.712000pt;}
.ya_c01210{bottom:743.130667pt;}
.y9_c01210{bottom:765.550667pt;}
.y8_c01210{bottom:803.909333pt;}
.y7_c01210{bottom:826.329333pt;}
.y6_c01210{bottom:848.748000pt;}
.y5_c01210{bottom:887.108000pt;}
.y4_c01210{bottom:909.528000pt;}
.y3_c01210{bottom:931.946667pt;}
.y2_c01210{bottom:954.366667pt;}
.y1_c01210{bottom:1013.880000pt;}
.h3_c01210{height:43.636000pt;}
.h2_c01210{height:47.820000pt;}
.h5_c01210{height:49.843840pt;}
.h4_c01210{height:49.849173pt;}
.h1_c01210{height:1123.333333pt;}
.h0_c01210{height:1123.653333pt;}
.w0_c01210{width:794.550667pt;}
.w1_c01210{width:794.666667pt;}
.x0_c01210{left:0.000000pt;}
.x3_c01210{left:113.385333pt;}
.x2_c01210{left:142.078667pt;}
.x4_c01210{left:388.912000pt;}
.x1_c01210{left:657.753333pt;}
}





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

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





.ff0_c01211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01211;src:url('chunks/assets/font_287156d296eaee158f36e131.woff2')format("woff");}.ff1_c01211{font-family:ff1_c01211;line-height:1.001000;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_c01211;src:url('chunks/assets/font_0738e1292a8050bff47bb88f.woff2')format("woff");}.ff2_c01211{font-family:ff2_c01211;line-height:1.000000;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_c01211;src:url('chunks/assets/font_3207d71cb28e5f0d69c06add.woff2')format("woff");}.ff3_c01211{font-family:ff3_c01211;line-height:0.697000;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_c01211{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_c01211{vertical-align:0.000000px;}
.v1_c01211{vertical-align:23.748000px;}
.ls2_c01211{letter-spacing:0.000000px;}
.ls1_c01211{letter-spacing:2.999580px;}
.ls0_c01211{letter-spacing:3.005580px;}
.sc__c01211{text-shadow:none;}
.sc0_c01211{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__c01211{-webkit-text-stroke:0px transparent;}
.sc0_c01211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01211{word-spacing:-0.071730px;}
.ws1_c01211{word-spacing:-0.065454px;}
.ws1c_c01211{word-spacing:0.000000px;}
.ws8_c01211{word-spacing:14.465334px;}
.ws9_c01211{word-spacing:15.512598px;}
.ws6_c01211{word-spacing:18.130758px;}
.ws18_c01211{word-spacing:18.392574px;}
.ws5_c01211{word-spacing:18.850752px;}
.ws19_c01211{word-spacing:19.701654px;}
.ws15_c01211{word-spacing:20.356194px;}
.ws1a_c01211{word-spacing:20.945280px;}
.ws1b_c01211{word-spacing:21.010734px;}
.ws16_c01211{word-spacing:21.272550px;}
.ws17_c01211{word-spacing:21.403458px;}
.ws7_c01211{word-spacing:21.730728px;}
.ws4_c01211{word-spacing:22.385268px;}
.ws2_c01211{word-spacing:22.450722px;}
.ws3_c01211{word-spacing:22.908900px;}
.wsa_c01211{word-spacing:23.236170px;}
.wsd_c01211{word-spacing:23.956164px;}
.wsc_c01211{word-spacing:24.545250px;}
.wse_c01211{word-spacing:25.068882px;}
.ws13_c01211{word-spacing:25.199790px;}
.ws12_c01211{word-spacing:25.330698px;}
.wsf_c01211{word-spacing:25.657968px;}
.ws11_c01211{word-spacing:25.854330px;}
.wsb_c01211{word-spacing:26.377962px;}
.ws10_c01211{word-spacing:26.443416px;}
.ws14_c01211{word-spacing:31.090650px;}
._5_c01211{margin-left:-34.768074px;}
._2_c01211{margin-left:-32.786454px;}
._7_c01211{margin-left:-30.888288px;}
._4_c01211{margin-left:-25.461606px;}
._3_c01211{margin-left:-7.265394px;}
._6_c01211{margin-left:-5.364228px;}
._8_c01211{margin-left:-3.989694px;}
._0_c01211{margin-left:-1.835712px;}
._1_c01211{width:1.901166px;}
._a_c01211{width:3.278700px;}
._9_c01211{width:27.350772px;}
.fc0_c01211{color:rgb(0,0,0);}
.fs2_c01211{font-size:47.820000px;}
.fs1_c01211{font-size:65.454000px;}
.fs0_c01211{font-size:71.730000px;}
.y0_c01211{bottom:0.000000px;}
.y24_c01211{bottom:90.592500px;}
.y23_c01211{bottom:115.815000px;}
.y22_c01211{bottom:141.036000px;}
.y21_c01211{bottom:184.191000px;}
.y20_c01211{bottom:209.412000px;}
.y1f_c01211{bottom:234.634500px;}
.y1e_c01211{bottom:277.789500px;}
.y1d_c01211{bottom:303.010500px;}
.y1c_c01211{bottom:328.233000px;}
.y1b_c01211{bottom:371.386500px;}
.y1a_c01211{bottom:396.609000px;}
.y19_c01211{bottom:421.830000px;}
.y18_c01211{bottom:447.052500px;}
.y17_c01211{bottom:490.206000px;}
.y16_c01211{bottom:515.428500px;}
.y15_c01211{bottom:540.649500px;}
.y14_c01211{bottom:565.872000px;}
.y13_c01211{bottom:609.027000px;}
.y12_c01211{bottom:634.248000px;}
.y11_c01211{bottom:659.470500px;}
.y10_c01211{bottom:702.624000px;}
.yf_c01211{bottom:727.846500px;}
.ye_c01211{bottom:753.067500px;}
.yd_c01211{bottom:778.290000px;}
.yc_c01211{bottom:803.511000px;}
.yb_c01211{bottom:828.733500px;}
.ya_c01211{bottom:853.954500px;}
.y9_c01211{bottom:879.177000px;}
.y8_c01211{bottom:904.398000px;}
.y7_c01211{bottom:947.553000px;}
.y6_c01211{bottom:972.775500px;}
.y5_c01211{bottom:997.996500px;}
.y4_c01211{bottom:1023.219000px;}
.y3_c01211{bottom:1048.440000px;}
.y2_c01211{bottom:1073.662500px;}
.y1_c01211{bottom:1140.615000px;}
.h4_c01211{height:49.090500px;}
.h2_c01211{height:53.797500px;}
.h3_c01211{height:56.074320px;}
.h5_c01211{height:56.080320px;}
.h1_c01211{height:1263.750000px;}
.h0_c01211{height:1264.110000px;}
.w0_c01211{width:893.869500px;}
.w1_c01211{width:894.000000px;}
.x0_c01211{left:0.000000px;}
.x3_c01211{left:127.558500px;}
.x2_c01211{left:159.838500px;}
.x1_c01211{left:739.972500px;}
@media print{
.v0_c01211{vertical-align:0.000000pt;}
.v1_c01211{vertical-align:21.109333pt;}
.ls2_c01211{letter-spacing:0.000000pt;}
.ls1_c01211{letter-spacing:2.666293pt;}
.ls0_c01211{letter-spacing:2.671627pt;}
.ws0_c01211{word-spacing:-0.063760pt;}
.ws1_c01211{word-spacing:-0.058181pt;}
.ws1c_c01211{word-spacing:0.000000pt;}
.ws8_c01211{word-spacing:12.858075pt;}
.ws9_c01211{word-spacing:13.788976pt;}
.ws6_c01211{word-spacing:16.116229pt;}
.ws18_c01211{word-spacing:16.348955pt;}
.ws5_c01211{word-spacing:16.756224pt;}
.ws19_c01211{word-spacing:17.512581pt;}
.ws15_c01211{word-spacing:18.094395pt;}
.ws1a_c01211{word-spacing:18.618027pt;}
.ws1b_c01211{word-spacing:18.676208pt;}
.ws16_c01211{word-spacing:18.908933pt;}
.ws17_c01211{word-spacing:19.025296pt;}
.ws7_c01211{word-spacing:19.316203pt;}
.ws4_c01211{word-spacing:19.898016pt;}
.ws2_c01211{word-spacing:19.956197pt;}
.ws3_c01211{word-spacing:20.363467pt;}
.wsa_c01211{word-spacing:20.654373pt;}
.wsd_c01211{word-spacing:21.294368pt;}
.wsc_c01211{word-spacing:21.818000pt;}
.wse_c01211{word-spacing:22.283451pt;}
.ws13_c01211{word-spacing:22.399813pt;}
.ws12_c01211{word-spacing:22.516176pt;}
.wsf_c01211{word-spacing:22.807083pt;}
.ws11_c01211{word-spacing:22.981627pt;}
.wsb_c01211{word-spacing:23.447077pt;}
.ws10_c01211{word-spacing:23.505259pt;}
.ws14_c01211{word-spacing:27.636133pt;}
._5_c01211{margin-left:-30.904955pt;}
._2_c01211{margin-left:-29.143515pt;}
._7_c01211{margin-left:-27.456256pt;}
._4_c01211{margin-left:-22.632539pt;}
._3_c01211{margin-left:-6.458128pt;}
._6_c01211{margin-left:-4.768203pt;}
._8_c01211{margin-left:-3.546395pt;}
._0_c01211{margin-left:-1.631744pt;}
._1_c01211{width:1.689925pt;}
._a_c01211{width:2.914400pt;}
._9_c01211{width:24.311797pt;}
.fs2_c01211{font-size:42.506667pt;}
.fs1_c01211{font-size:58.181333pt;}
.fs0_c01211{font-size:63.760000pt;}
.y0_c01211{bottom:0.000000pt;}
.y24_c01211{bottom:80.526667pt;}
.y23_c01211{bottom:102.946667pt;}
.y22_c01211{bottom:125.365333pt;}
.y21_c01211{bottom:163.725333pt;}
.y20_c01211{bottom:186.144000pt;}
.y1f_c01211{bottom:208.564000pt;}
.y1e_c01211{bottom:246.924000pt;}
.y1d_c01211{bottom:269.342667pt;}
.y1c_c01211{bottom:291.762667pt;}
.y1b_c01211{bottom:330.121333pt;}
.y1a_c01211{bottom:352.541333pt;}
.y19_c01211{bottom:374.960000pt;}
.y18_c01211{bottom:397.380000pt;}
.y17_c01211{bottom:435.738667pt;}
.y16_c01211{bottom:458.158667pt;}
.y15_c01211{bottom:480.577333pt;}
.y14_c01211{bottom:502.997333pt;}
.y13_c01211{bottom:541.357333pt;}
.y12_c01211{bottom:563.776000pt;}
.y11_c01211{bottom:586.196000pt;}
.y10_c01211{bottom:624.554667pt;}
.yf_c01211{bottom:646.974667pt;}
.ye_c01211{bottom:669.393333pt;}
.yd_c01211{bottom:691.813333pt;}
.yc_c01211{bottom:714.232000pt;}
.yb_c01211{bottom:736.652000pt;}
.ya_c01211{bottom:759.070667pt;}
.y9_c01211{bottom:781.490667pt;}
.y8_c01211{bottom:803.909333pt;}
.y7_c01211{bottom:842.269333pt;}
.y6_c01211{bottom:864.689333pt;}
.y5_c01211{bottom:887.108000pt;}
.y4_c01211{bottom:909.528000pt;}
.y3_c01211{bottom:931.946667pt;}
.y2_c01211{bottom:954.366667pt;}
.y1_c01211{bottom:1013.880000pt;}
.h4_c01211{height:43.636000pt;}
.h2_c01211{height:47.820000pt;}
.h3_c01211{height:49.843840pt;}
.h5_c01211{height:49.849173pt;}
.h1_c01211{height:1123.333333pt;}
.h0_c01211{height:1123.653333pt;}
.w0_c01211{width:794.550667pt;}
.w1_c01211{width:794.666667pt;}
.x0_c01211{left:0.000000pt;}
.x3_c01211{left:113.385333pt;}
.x2_c01211{left:142.078667pt;}
.x1_c01211{left:657.753333pt;}
}





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

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





.ff0_c01212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01212;src:url('chunks/assets/font_737120dc30f1b9ed8747a420.woff2')format("woff");}.ff1_c01212{font-family:ff1_c01212;line-height:1.001000;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_c01212;src:url('chunks/assets/font_adef1a9128749d04c86f7c93.woff2')format("woff");}.ff2_c01212{font-family:ff2_c01212;line-height:1.000000;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_c01212;src:url('chunks/assets/font_8e3af67ad49ee28743d74196.woff2')format("woff");}.ff3_c01212{font-family:ff3_c01212;line-height:1.000000;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_c01212;src:url('chunks/assets/font_9c9ce4f6553fc3f80f481277.woff2')format("woff");}.ff4_c01212{font-family:ff4_c01212;line-height:0.913000;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_c01212{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_c01212{vertical-align:0.000000px;}
.v1_c01212{vertical-align:15.816000px;}
.ls0_c01212{letter-spacing:0.000000px;}
.sc__c01212{text-shadow:none;}
.sc0_c01212{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__c01212{-webkit-text-stroke:0px transparent;}
.sc0_c01212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01212{word-spacing:-0.071730px;}
.ws3_c01212{word-spacing:-0.065454px;}
.ws20_c01212{word-spacing:0.000000px;}
.ws5_c01212{word-spacing:14.988966px;}
.wsb_c01212{word-spacing:16.036230px;}
.ws4_c01212{word-spacing:16.690770px;}
.ws10_c01212{word-spacing:17.541672px;}
.ws9_c01212{word-spacing:19.178022px;}
.ws17_c01212{word-spacing:19.701654px;}
.ws1c_c01212{word-spacing:19.898016px;}
.wsf_c01212{word-spacing:20.290740px;}
.wse_c01212{word-spacing:20.748918px;}
.ws13_c01212{word-spacing:20.814372px;}
.ws11_c01212{word-spacing:21.141642px;}
.ws1b_c01212{word-spacing:21.403458px;}
.ws1_c01212{word-spacing:21.730728px;}
.wsd_c01212{word-spacing:22.974354px;}
.ws1a_c01212{word-spacing:23.039808px;}
.ws1f_c01212{word-spacing:23.170716px;}
.wsc_c01212{word-spacing:24.217980px;}
.ws6_c01212{word-spacing:24.414342px;}
.ws12_c01212{word-spacing:24.545250px;}
.ws2_c01212{word-spacing:25.003428px;}
.wsa_c01212{word-spacing:25.068882px;}
.ws1e_c01212{word-spacing:26.901594px;}
.ws14_c01212{word-spacing:26.967048px;}
.ws19_c01212{word-spacing:27.883404px;}
.ws15_c01212{word-spacing:28.079766px;}
.ws1d_c01212{word-spacing:28.210674px;}
.ws16_c01212{word-spacing:28.407036px;}
.ws8_c01212{word-spacing:29.977932px;}
.ws18_c01212{word-spacing:30.436110px;}
.ws7_c01212{word-spacing:32.661546px;}
._4_c01212{margin-left:-37.701504px;}
._b_c01212{margin-left:-35.161890px;}
._c_c01212{margin-left:-34.101534px;}
._8_c01212{margin-left:-32.727000px;}
._9_c01212{margin-left:-30.828834px;}
._7_c01212{margin-left:-25.592514px;}
._e_c01212{margin-left:-24.545250px;}
._a_c01212{margin-left:-7.330848px;}
._1_c01212{margin-left:-6.283584px;}
._5_c01212{margin-left:-3.927240px;}
._0_c01212{margin-left:-1.832712px;}
._3_c01212{width:1.309080px;}
._6_c01212{width:3.089430px;}
._2_c01212{width:5.909328px;}
._d_c01212{width:19.426746px;}
.fc0_c01212{color:rgb(0,0,0);}
.fs1_c01212{font-size:65.454000px;}
.fs0_c01212{font-size:71.730000px;}
.y0_c01212{bottom:0.000000px;}
.y26_c01212{bottom:71.973000px;}
.y25_c01212{bottom:97.194000px;}
.y24_c01212{bottom:122.416500px;}
.y23_c01212{bottom:147.637500px;}
.y22_c01212{bottom:172.860000px;}
.y21_c01212{bottom:198.081000px;}
.y20_c01212{bottom:223.303500px;}
.y1f_c01212{bottom:248.524500px;}
.y1e_c01212{bottom:273.747000px;}
.y1d_c01212{bottom:298.968000px;}
.y1c_c01212{bottom:324.190500px;}
.y1b_c01212{bottom:349.411500px;}
.y1a_c01212{bottom:374.634000px;}
.y19_c01212{bottom:399.855000px;}
.y18_c01212{bottom:425.077500px;}
.y17_c01212{bottom:450.298500px;}
.y16_c01212{bottom:475.521000px;}
.y15_c01212{bottom:500.742000px;}
.y14_c01212{bottom:525.964500px;}
.y13_c01212{bottom:551.185500px;}
.y12_c01212{bottom:576.408000px;}
.y11_c01212{bottom:601.629000px;}
.y10_c01212{bottom:626.851500px;}
.yf_c01212{bottom:652.072500px;}
.ye_c01212{bottom:677.295000px;}
.yd_c01212{bottom:702.516000px;}
.yc_c01212{bottom:727.738500px;}
.yb_c01212{bottom:752.961000px;}
.ya_c01212{bottom:778.182000px;}
.y9_c01212{bottom:803.404500px;}
.y8_c01212{bottom:828.625500px;}
.y7_c01212{bottom:853.848000px;}
.y6_c01212{bottom:894.892500px;}
.y5_c01212{bottom:920.113500px;}
.y4_c01212{bottom:945.336000px;}
.y3_c01212{bottom:1001.587500px;}
.y2_c01212{bottom:1073.662500px;}
.y1_c01212{bottom:1140.615000px;}
.h3_c01212{height:49.090500px;}
.h2_c01212{height:53.797500px;}
.h4_c01212{height:64.906500px;}
.h1_c01212{height:1263.750000px;}
.h0_c01212{height:1264.110000px;}
.w0_c01212{width:893.869500px;}
.w1_c01212{width:894.000000px;}
.x0_c01212{left:0.000000px;}
.x5_c01212{left:127.558500px;}
.x2_c01212{left:159.838500px;}
.x4_c01212{left:221.496000px;}
.x3_c01212{left:437.526000px;}
.x1_c01212{left:739.972500px;}
@media print{
.v0_c01212{vertical-align:0.000000pt;}
.v1_c01212{vertical-align:14.058667pt;}
.ls0_c01212{letter-spacing:0.000000pt;}
.ws0_c01212{word-spacing:-0.063760pt;}
.ws3_c01212{word-spacing:-0.058181pt;}
.ws20_c01212{word-spacing:0.000000pt;}
.ws5_c01212{word-spacing:13.323525pt;}
.wsb_c01212{word-spacing:14.254427pt;}
.ws4_c01212{word-spacing:14.836240pt;}
.ws10_c01212{word-spacing:15.592597pt;}
.ws9_c01212{word-spacing:17.047131pt;}
.ws17_c01212{word-spacing:17.512581pt;}
.ws1c_c01212{word-spacing:17.687125pt;}
.wsf_c01212{word-spacing:18.036213pt;}
.wse_c01212{word-spacing:18.443483pt;}
.ws13_c01212{word-spacing:18.501664pt;}
.ws11_c01212{word-spacing:18.792571pt;}
.ws1b_c01212{word-spacing:19.025296pt;}
.ws1_c01212{word-spacing:19.316203pt;}
.wsd_c01212{word-spacing:20.421648pt;}
.ws1a_c01212{word-spacing:20.479829pt;}
.ws1f_c01212{word-spacing:20.596192pt;}
.wsc_c01212{word-spacing:21.527093pt;}
.ws6_c01212{word-spacing:21.701637pt;}
.ws12_c01212{word-spacing:21.818000pt;}
.ws2_c01212{word-spacing:22.225269pt;}
.wsa_c01212{word-spacing:22.283451pt;}
.ws1e_c01212{word-spacing:23.912528pt;}
.ws14_c01212{word-spacing:23.970709pt;}
.ws19_c01212{word-spacing:24.785248pt;}
.ws15_c01212{word-spacing:24.959792pt;}
.ws1d_c01212{word-spacing:25.076155pt;}
.ws16_c01212{word-spacing:25.250699pt;}
.ws8_c01212{word-spacing:26.647051pt;}
.ws18_c01212{word-spacing:27.054320pt;}
.ws7_c01212{word-spacing:29.032485pt;}
._4_c01212{margin-left:-33.512448pt;}
._b_c01212{margin-left:-31.255013pt;}
._c_c01212{margin-left:-30.312475pt;}
._8_c01212{margin-left:-29.090667pt;}
._9_c01212{margin-left:-27.403408pt;}
._7_c01212{margin-left:-22.748901pt;}
._e_c01212{margin-left:-21.818000pt;}
._a_c01212{margin-left:-6.516309pt;}
._1_c01212{margin-left:-5.585408pt;}
._5_c01212{margin-left:-3.490880pt;}
._0_c01212{margin-left:-1.629077pt;}
._3_c01212{width:1.163627pt;}
._6_c01212{width:2.746160pt;}
._2_c01212{width:5.252736pt;}
._d_c01212{width:17.268219pt;}
.fs1_c01212{font-size:58.181333pt;}
.fs0_c01212{font-size:63.760000pt;}
.y0_c01212{bottom:0.000000pt;}
.y26_c01212{bottom:63.976000pt;}
.y25_c01212{bottom:86.394667pt;}
.y24_c01212{bottom:108.814667pt;}
.y23_c01212{bottom:131.233333pt;}
.y22_c01212{bottom:153.653333pt;}
.y21_c01212{bottom:176.072000pt;}
.y20_c01212{bottom:198.492000pt;}
.y1f_c01212{bottom:220.910667pt;}
.y1e_c01212{bottom:243.330667pt;}
.y1d_c01212{bottom:265.749333pt;}
.y1c_c01212{bottom:288.169333pt;}
.y1b_c01212{bottom:310.588000pt;}
.y1a_c01212{bottom:333.008000pt;}
.y19_c01212{bottom:355.426667pt;}
.y18_c01212{bottom:377.846667pt;}
.y17_c01212{bottom:400.265333pt;}
.y16_c01212{bottom:422.685333pt;}
.y15_c01212{bottom:445.104000pt;}
.y14_c01212{bottom:467.524000pt;}
.y13_c01212{bottom:489.942667pt;}
.y12_c01212{bottom:512.362667pt;}
.y11_c01212{bottom:534.781333pt;}
.y10_c01212{bottom:557.201333pt;}
.yf_c01212{bottom:579.620000pt;}
.ye_c01212{bottom:602.040000pt;}
.yd_c01212{bottom:624.458667pt;}
.yc_c01212{bottom:646.878667pt;}
.yb_c01212{bottom:669.298667pt;}
.ya_c01212{bottom:691.717333pt;}
.y9_c01212{bottom:714.137333pt;}
.y8_c01212{bottom:736.556000pt;}
.y7_c01212{bottom:758.976000pt;}
.y6_c01212{bottom:795.460000pt;}
.y5_c01212{bottom:817.878667pt;}
.y4_c01212{bottom:840.298667pt;}
.y3_c01212{bottom:890.300000pt;}
.y2_c01212{bottom:954.366667pt;}
.y1_c01212{bottom:1013.880000pt;}
.h3_c01212{height:43.636000pt;}
.h2_c01212{height:47.820000pt;}
.h4_c01212{height:57.694667pt;}
.h1_c01212{height:1123.333333pt;}
.h0_c01212{height:1123.653333pt;}
.w0_c01212{width:794.550667pt;}
.w1_c01212{width:794.666667pt;}
.x0_c01212{left:0.000000pt;}
.x5_c01212{left:113.385333pt;}
.x2_c01212{left:142.078667pt;}
.x4_c01212{left:196.885333pt;}
.x3_c01212{left:388.912000pt;}
.x1_c01212{left:657.753333pt;}
}





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

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





.ff0_c01213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01213;src:url('chunks/assets/font_b82838511bd25ecaa067d673.woff2')format("woff");}.ff1_c01213{font-family:ff1_c01213;line-height:1.001000;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_c01213;src:url('chunks/assets/font_9b0fdf9c867fd589031ccf56.woff2')format("woff");}.ff2_c01213{font-family:ff2_c01213;line-height:1.000000;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_c01213;src:url('chunks/assets/font_86da4d587f443c174e849153.woff2')format("woff");}.ff3_c01213{font-family:ff3_c01213;line-height:1.000000;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_c01213{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_c01213{vertical-align:0.000000px;}
.ls1_c01213{letter-spacing:0.000000px;}
.ls0_c01213{letter-spacing:21.819000px;}
.sc__c01213{text-shadow:none;}
.sc0_c01213{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__c01213{-webkit-text-stroke:0px transparent;}
.sc0_c01213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01213{word-spacing:-0.071730px;}
.ws20_c01213{word-spacing:0.000000px;}
.wsd_c01213{word-spacing:14.858058px;}
.ws5_c01213{word-spacing:15.970776px;}
.wsf_c01213{word-spacing:16.363500px;}
.ws1b_c01213{word-spacing:17.541672px;}
.ws7_c01213{word-spacing:17.934396px;}
.wsa_c01213{word-spacing:18.065304px;}
.ws1d_c01213{word-spacing:18.130758px;}
.ws15_c01213{word-spacing:18.458028px;}
.ws18_c01213{word-spacing:18.588936px;}
.ws19_c01213{word-spacing:19.439838px;}
.ws6_c01213{word-spacing:19.701654px;}
.wse_c01213{word-spacing:20.094378px;}
.ws2_c01213{word-spacing:20.618010px;}
.ws16_c01213{word-spacing:20.879826px;}
.ws17_c01213{word-spacing:21.010734px;}
.ws1e_c01213{word-spacing:21.403458px;}
.ws10_c01213{word-spacing:21.534366px;}
.ws3_c01213{word-spacing:21.730728px;}
.ws11_c01213{word-spacing:22.319814px;}
.ws4_c01213{word-spacing:22.908900px;}
.ws9_c01213{word-spacing:23.039808px;}
.ws8_c01213{word-spacing:23.301624px;}
.wsc_c01213{word-spacing:23.367078px;}
.ws1_c01213{word-spacing:23.432532px;}
.wsb_c01213{word-spacing:24.217980px;}
.ws1a_c01213{word-spacing:24.479796px;}
.ws1f_c01213{word-spacing:24.807066px;}
.ws1c_c01213{word-spacing:25.330698px;}
.ws12_c01213{word-spacing:27.425226px;}
.ws14_c01213{word-spacing:27.883404px;}
.ws13_c01213{word-spacing:28.734306px;}
._2_c01213{margin-left:-32.727000px;}
._6_c01213{margin-left:-31.221558px;}
._b_c01213{margin-left:-30.043386px;}
._1_c01213{margin-left:-25.461606px;}
._0_c01213{margin-left:-7.330848px;}
._c_c01213{margin-left:-5.563590px;}
._4_c01213{margin-left:-3.796332px;}
._9_c01213{margin-left:-2.749068px;}
._3_c01213{margin-left:-1.701804px;}
._7_c01213{width:1.570896px;}
._5_c01213{width:3.469062px;}
._8_c01213{width:16.232592px;}
._a_c01213{width:24.414342px;}
.fc0_c01213{color:rgb(0,0,0);}
.fs1_c01213{font-size:65.454000px;}
.fs0_c01213{font-size:71.730000px;}
.y0_c01213{bottom:0.000000px;}
.y27_c01213{bottom:86.658000px;}
.y26_c01213{bottom:111.880500px;}
.y25_c01213{bottom:137.101500px;}
.y24_c01213{bottom:162.324000px;}
.y23_c01213{bottom:187.545000px;}
.y22_c01213{bottom:212.767500px;}
.y21_c01213{bottom:237.988500px;}
.y20_c01213{bottom:263.211000px;}
.y1f_c01213{bottom:288.432000px;}
.y1e_c01213{bottom:313.654500px;}
.y1d_c01213{bottom:338.875500px;}
.y1c_c01213{bottom:364.098000px;}
.y1b_c01213{bottom:389.319000px;}
.y1a_c01213{bottom:432.474000px;}
.y19_c01213{bottom:457.696500px;}
.y18_c01213{bottom:482.917500px;}
.y17_c01213{bottom:508.140000px;}
.y16_c01213{bottom:533.361000px;}
.y15_c01213{bottom:558.583500px;}
.y14_c01213{bottom:583.804500px;}
.y13_c01213{bottom:609.027000px;}
.y12_c01213{bottom:634.248000px;}
.y11_c01213{bottom:659.470500px;}
.y10_c01213{bottom:684.691500px;}
.yf_c01213{bottom:709.914000px;}
.ye_c01213{bottom:753.067500px;}
.yd_c01213{bottom:778.290000px;}
.yc_c01213{bottom:803.511000px;}
.yb_c01213{bottom:828.733500px;}
.ya_c01213{bottom:853.954500px;}
.y9_c01213{bottom:897.109500px;}
.y8_c01213{bottom:922.332000px;}
.y7_c01213{bottom:947.553000px;}
.y6_c01213{bottom:972.775500px;}
.y5_c01213{bottom:997.996500px;}
.y4_c01213{bottom:1023.219000px;}
.y3_c01213{bottom:1048.440000px;}
.y2_c01213{bottom:1073.662500px;}
.y1_c01213{bottom:1140.615000px;}
.h3_c01213{height:49.090500px;}
.h2_c01213{height:53.797500px;}
.h1_c01213{height:1263.750000px;}
.h0_c01213{height:1264.110000px;}
.w0_c01213{width:893.869500px;}
.w1_c01213{width:894.000000px;}
.x0_c01213{left:0.000000px;}
.x3_c01213{left:127.558500px;}
.x2_c01213{left:159.838500px;}
.x1_c01213{left:739.972500px;}
@media print{
.v0_c01213{vertical-align:0.000000pt;}
.ls1_c01213{letter-spacing:0.000000pt;}
.ls0_c01213{letter-spacing:19.394667pt;}
.ws0_c01213{word-spacing:-0.063760pt;}
.ws20_c01213{word-spacing:0.000000pt;}
.wsd_c01213{word-spacing:13.207163pt;}
.ws5_c01213{word-spacing:14.196245pt;}
.wsf_c01213{word-spacing:14.545333pt;}
.ws1b_c01213{word-spacing:15.592597pt;}
.ws7_c01213{word-spacing:15.941685pt;}
.wsa_c01213{word-spacing:16.058048pt;}
.ws1d_c01213{word-spacing:16.116229pt;}
.ws15_c01213{word-spacing:16.407136pt;}
.ws18_c01213{word-spacing:16.523499pt;}
.ws19_c01213{word-spacing:17.279856pt;}
.ws6_c01213{word-spacing:17.512581pt;}
.wse_c01213{word-spacing:17.861669pt;}
.ws2_c01213{word-spacing:18.327120pt;}
.ws16_c01213{word-spacing:18.559845pt;}
.ws17_c01213{word-spacing:18.676208pt;}
.ws1e_c01213{word-spacing:19.025296pt;}
.ws10_c01213{word-spacing:19.141659pt;}
.ws3_c01213{word-spacing:19.316203pt;}
.ws11_c01213{word-spacing:19.839835pt;}
.ws4_c01213{word-spacing:20.363467pt;}
.ws9_c01213{word-spacing:20.479829pt;}
.ws8_c01213{word-spacing:20.712555pt;}
.wsc_c01213{word-spacing:20.770736pt;}
.ws1_c01213{word-spacing:20.828917pt;}
.wsb_c01213{word-spacing:21.527093pt;}
.ws1a_c01213{word-spacing:21.759819pt;}
.ws1f_c01213{word-spacing:22.050725pt;}
.ws1c_c01213{word-spacing:22.516176pt;}
.ws12_c01213{word-spacing:24.377979pt;}
.ws14_c01213{word-spacing:24.785248pt;}
.ws13_c01213{word-spacing:25.541605pt;}
._2_c01213{margin-left:-29.090667pt;}
._6_c01213{margin-left:-27.752496pt;}
._b_c01213{margin-left:-26.705232pt;}
._1_c01213{margin-left:-22.632539pt;}
._0_c01213{margin-left:-6.516309pt;}
._c_c01213{margin-left:-4.945413pt;}
._4_c01213{margin-left:-3.374517pt;}
._9_c01213{margin-left:-2.443616pt;}
._3_c01213{margin-left:-1.512715pt;}
._7_c01213{width:1.396352pt;}
._5_c01213{width:3.083611pt;}
._8_c01213{width:14.428971pt;}
._a_c01213{width:21.701637pt;}
.fs1_c01213{font-size:58.181333pt;}
.fs0_c01213{font-size:63.760000pt;}
.y0_c01213{bottom:0.000000pt;}
.y27_c01213{bottom:77.029333pt;}
.y26_c01213{bottom:99.449333pt;}
.y25_c01213{bottom:121.868000pt;}
.y24_c01213{bottom:144.288000pt;}
.y23_c01213{bottom:166.706667pt;}
.y22_c01213{bottom:189.126667pt;}
.y21_c01213{bottom:211.545333pt;}
.y20_c01213{bottom:233.965333pt;}
.y1f_c01213{bottom:256.384000pt;}
.y1e_c01213{bottom:278.804000pt;}
.y1d_c01213{bottom:301.222667pt;}
.y1c_c01213{bottom:323.642667pt;}
.y1b_c01213{bottom:346.061333pt;}
.y1a_c01213{bottom:384.421333pt;}
.y19_c01213{bottom:406.841333pt;}
.y18_c01213{bottom:429.260000pt;}
.y17_c01213{bottom:451.680000pt;}
.y16_c01213{bottom:474.098667pt;}
.y15_c01213{bottom:496.518667pt;}
.y14_c01213{bottom:518.937333pt;}
.y13_c01213{bottom:541.357333pt;}
.y12_c01213{bottom:563.776000pt;}
.y11_c01213{bottom:586.196000pt;}
.y10_c01213{bottom:608.614667pt;}
.yf_c01213{bottom:631.034667pt;}
.ye_c01213{bottom:669.393333pt;}
.yd_c01213{bottom:691.813333pt;}
.yc_c01213{bottom:714.232000pt;}
.yb_c01213{bottom:736.652000pt;}
.ya_c01213{bottom:759.070667pt;}
.y9_c01213{bottom:797.430667pt;}
.y8_c01213{bottom:819.850667pt;}
.y7_c01213{bottom:842.269333pt;}
.y6_c01213{bottom:864.689333pt;}
.y5_c01213{bottom:887.108000pt;}
.y4_c01213{bottom:909.528000pt;}
.y3_c01213{bottom:931.946667pt;}
.y2_c01213{bottom:954.366667pt;}
.y1_c01213{bottom:1013.880000pt;}
.h3_c01213{height:43.636000pt;}
.h2_c01213{height:47.820000pt;}
.h1_c01213{height:1123.333333pt;}
.h0_c01213{height:1123.653333pt;}
.w0_c01213{width:794.550667pt;}
.w1_c01213{width:794.666667pt;}
.x0_c01213{left:0.000000pt;}
.x3_c01213{left:113.385333pt;}
.x2_c01213{left:142.078667pt;}
.x1_c01213{left:657.753333pt;}
}





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

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





.ff0_c01214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01214;src:url('chunks/assets/font_3df68b7089e9dd7a552fae84.woff2')format("woff");}.ff1_c01214{font-family:ff1_c01214;line-height:1.001000;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_c01214;src:url('chunks/assets/font_eb5a3cfded9805b11cc35d11.woff2')format("woff");}.ff2_c01214{font-family:ff2_c01214;line-height:1.000000;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_c01214;src:url('chunks/assets/font_c53422a2bef69693c2ba1dff.woff2')format("woff");}.ff3_c01214{font-family:ff3_c01214;line-height:1.000000;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_c01214;src:url('chunks/assets/font_5260fa3e19199b4da4962492.woff2')format("woff");}.ff4_c01214{font-family:ff4_c01214;line-height:1.000000;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_c01214;src:url('chunks/assets/font_32e53b5ca9c43721a7164a6e.woff2')format("woff");}.ff5_c01214{font-family:ff5_c01214;line-height:0.462000;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_c01214{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_c01214{vertical-align:0.000000px;}
.v1_c01214{vertical-align:23.754000px;}
.ls4_c01214{letter-spacing:0.000000px;}
.ls3_c01214{letter-spacing:28.052340px;}
.ls2_c01214{letter-spacing:28.058340px;}
.ls1_c01214{letter-spacing:45.237000px;}
.ls0_c01214{letter-spacing:52.539000px;}
.sc__c01214{text-shadow:none;}
.sc0_c01214{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__c01214{-webkit-text-stroke:0px transparent;}
.sc0_c01214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01214{word-spacing:-0.071730px;}
.ws13_c01214{word-spacing:-0.065454px;}
.ws1d_c01214{word-spacing:0.000000px;}
.ws15_c01214{word-spacing:15.119874px;}
.wsb_c01214{word-spacing:15.250782px;}
.ws17_c01214{word-spacing:16.298046px;}
.wsf_c01214{word-spacing:17.410764px;}
.ws2_c01214{word-spacing:18.130758px;}
.ws10_c01214{word-spacing:18.196212px;}
.wse_c01214{word-spacing:18.327120px;}
.ws4_c01214{word-spacing:19.898016px;}
.ws6_c01214{word-spacing:20.159832px;}
.ws3_c01214{word-spacing:20.552556px;}
.wsc_c01214{word-spacing:21.207096px;}
.ws18_c01214{word-spacing:21.599820px;}
.ws9_c01214{word-spacing:21.730728px;}
.ws19_c01214{word-spacing:21.796182px;}
.wsd_c01214{word-spacing:22.188906px;}
.ws8_c01214{word-spacing:23.039808px;}
.ws1a_c01214{word-spacing:23.236170px;}
.wsa_c01214{word-spacing:23.367078px;}
.ws1c_c01214{word-spacing:23.432532px;}
.ws16_c01214{word-spacing:23.628894px;}
.ws7_c01214{word-spacing:24.545250px;}
.ws14_c01214{word-spacing:25.003428px;}
.ws5_c01214{word-spacing:25.068882px;}
.ws1b_c01214{word-spacing:26.247054px;}
.ws1_c01214{word-spacing:26.836140px;}
.ws11_c01214{word-spacing:30.043386px;}
.ws12_c01214{word-spacing:36.654240px;}
._7_c01214{margin-left:-34.625166px;}
._5_c01214{margin-left:-33.446994px;}
._1_c01214{margin-left:-31.810644px;}
._8_c01214{margin-left:-30.501564px;}
._4_c01214{margin-left:-26.770686px;}
._c_c01214{margin-left:-25.527060px;}
._3_c01214{margin-left:-6.610854px;}
._b_c01214{margin-left:-5.105412px;}
._2_c01214{margin-left:-3.272700px;}
._0_c01214{margin-left:-1.701804px;}
._6_c01214{width:1.898166px;}
._9_c01214{width:4.254510px;}
._a_c01214{width:19.832562px;}
.fc0_c01214{color:rgb(0,0,0);}
.fs2_c01214{font-size:47.820000px;}
.fs1_c01214{font-size:65.454000px;}
.fs0_c01214{font-size:71.730000px;}
.y0_c01214{bottom:0.000000px;}
.y25_c01214{bottom:71.973000px;}
.y24_c01214{bottom:97.194000px;}
.y23_c01214{bottom:122.416500px;}
.y22_c01214{bottom:147.637500px;}
.y21_c01214{bottom:172.860000px;}
.y20_c01214{bottom:198.081000px;}
.y1f_c01214{bottom:223.303500px;}
.y1e_c01214{bottom:248.524500px;}
.y1d_c01214{bottom:273.747000px;}
.y1c_c01214{bottom:298.968000px;}
.y1b_c01214{bottom:324.190500px;}
.y1a_c01214{bottom:366.279000px;}
.y19_c01214{bottom:391.501500px;}
.y18_c01214{bottom:416.722500px;}
.y17_c01214{bottom:476.107500px;}
.y16_c01214{bottom:552.360000px;}
.y15_c01214{bottom:577.581000px;}
.y14_c01214{bottom:602.803500px;}
.y13_c01214{bottom:628.024500px;}
.y12_c01214{bottom:653.247000px;}
.y11_c01214{bottom:678.468000px;}
.y10_c01214{bottom:703.690500px;}
.yf_c01214{bottom:728.911500px;}
.ye_c01214{bottom:754.134000px;}
.yd_c01214{bottom:779.355000px;}
.yc_c01214{bottom:804.577500px;}
.yb_c01214{bottom:846.666000px;}
.ya_c01214{bottom:871.888500px;}
.y9_c01214{bottom:897.109500px;}
.y8_c01214{bottom:922.332000px;}
.y7_c01214{bottom:947.553000px;}
.y6_c01214{bottom:972.775500px;}
.y5_c01214{bottom:997.996500px;}
.y4_c01214{bottom:1023.219000px;}
.y3_c01214{bottom:1048.440000px;}
.y2_c01214{bottom:1073.662500px;}
.y1_c01214{bottom:1140.615000px;}
.h3_c01214{height:49.090500px;}
.h2_c01214{height:53.797500px;}
.h1_c01214{height:1263.750000px;}
.h0_c01214{height:1264.110000px;}
.w0_c01214{width:893.869500px;}
.w1_c01214{width:894.000000px;}
.x0_c01214{left:0.000000px;}
.x3_c01214{left:127.558500px;}
.x2_c01214{left:159.838500px;}
.x4_c01214{left:437.526000px;}
.x1_c01214{left:739.972500px;}
@media print{
.v0_c01214{vertical-align:0.000000pt;}
.v1_c01214{vertical-align:21.114667pt;}
.ls4_c01214{letter-spacing:0.000000pt;}
.ls3_c01214{letter-spacing:24.935413pt;}
.ls2_c01214{letter-spacing:24.940747pt;}
.ls1_c01214{letter-spacing:40.210667pt;}
.ls0_c01214{letter-spacing:46.701333pt;}
.ws0_c01214{word-spacing:-0.063760pt;}
.ws13_c01214{word-spacing:-0.058181pt;}
.ws1d_c01214{word-spacing:0.000000pt;}
.ws15_c01214{word-spacing:13.439888pt;}
.wsb_c01214{word-spacing:13.556251pt;}
.ws17_c01214{word-spacing:14.487152pt;}
.wsf_c01214{word-spacing:15.476235pt;}
.ws2_c01214{word-spacing:16.116229pt;}
.ws10_c01214{word-spacing:16.174411pt;}
.wse_c01214{word-spacing:16.290773pt;}
.ws4_c01214{word-spacing:17.687125pt;}
.ws6_c01214{word-spacing:17.919851pt;}
.ws3_c01214{word-spacing:18.268939pt;}
.wsc_c01214{word-spacing:18.850752pt;}
.ws18_c01214{word-spacing:19.199840pt;}
.ws9_c01214{word-spacing:19.316203pt;}
.ws19_c01214{word-spacing:19.374384pt;}
.wsd_c01214{word-spacing:19.723472pt;}
.ws8_c01214{word-spacing:20.479829pt;}
.ws1a_c01214{word-spacing:20.654373pt;}
.wsa_c01214{word-spacing:20.770736pt;}
.ws1c_c01214{word-spacing:20.828917pt;}
.ws16_c01214{word-spacing:21.003461pt;}
.ws7_c01214{word-spacing:21.818000pt;}
.ws14_c01214{word-spacing:22.225269pt;}
.ws5_c01214{word-spacing:22.283451pt;}
.ws1b_c01214{word-spacing:23.330715pt;}
.ws1_c01214{word-spacing:23.854347pt;}
.ws11_c01214{word-spacing:26.705232pt;}
.ws12_c01214{word-spacing:32.581547pt;}
._7_c01214{margin-left:-30.777925pt;}
._5_c01214{margin-left:-29.730661pt;}
._1_c01214{margin-left:-28.276128pt;}
._8_c01214{margin-left:-27.112501pt;}
._4_c01214{margin-left:-23.796165pt;}
._c_c01214{margin-left:-22.690720pt;}
._3_c01214{margin-left:-5.876315pt;}
._b_c01214{margin-left:-4.538144pt;}
._2_c01214{margin-left:-2.909067pt;}
._0_c01214{margin-left:-1.512715pt;}
._6_c01214{width:1.687259pt;}
._9_c01214{width:3.781787pt;}
._a_c01214{width:17.628944pt;}
.fs2_c01214{font-size:42.506667pt;}
.fs1_c01214{font-size:58.181333pt;}
.fs0_c01214{font-size:63.760000pt;}
.y0_c01214{bottom:0.000000pt;}
.y25_c01214{bottom:63.976000pt;}
.y24_c01214{bottom:86.394667pt;}
.y23_c01214{bottom:108.814667pt;}
.y22_c01214{bottom:131.233333pt;}
.y21_c01214{bottom:153.653333pt;}
.y20_c01214{bottom:176.072000pt;}
.y1f_c01214{bottom:198.492000pt;}
.y1e_c01214{bottom:220.910667pt;}
.y1d_c01214{bottom:243.330667pt;}
.y1c_c01214{bottom:265.749333pt;}
.y1b_c01214{bottom:288.169333pt;}
.y1a_c01214{bottom:325.581333pt;}
.y19_c01214{bottom:348.001333pt;}
.y18_c01214{bottom:370.420000pt;}
.y17_c01214{bottom:423.206667pt;}
.y16_c01214{bottom:490.986667pt;}
.y15_c01214{bottom:513.405333pt;}
.y14_c01214{bottom:535.825333pt;}
.y13_c01214{bottom:558.244000pt;}
.y12_c01214{bottom:580.664000pt;}
.y11_c01214{bottom:603.082667pt;}
.y10_c01214{bottom:625.502667pt;}
.yf_c01214{bottom:647.921333pt;}
.ye_c01214{bottom:670.341333pt;}
.yd_c01214{bottom:692.760000pt;}
.yc_c01214{bottom:715.180000pt;}
.yb_c01214{bottom:752.592000pt;}
.ya_c01214{bottom:775.012000pt;}
.y9_c01214{bottom:797.430667pt;}
.y8_c01214{bottom:819.850667pt;}
.y7_c01214{bottom:842.269333pt;}
.y6_c01214{bottom:864.689333pt;}
.y5_c01214{bottom:887.108000pt;}
.y4_c01214{bottom:909.528000pt;}
.y3_c01214{bottom:931.946667pt;}
.y2_c01214{bottom:954.366667pt;}
.y1_c01214{bottom:1013.880000pt;}
.h3_c01214{height:43.636000pt;}
.h2_c01214{height:47.820000pt;}
.h1_c01214{height:1123.333333pt;}
.h0_c01214{height:1123.653333pt;}
.w0_c01214{width:794.550667pt;}
.w1_c01214{width:794.666667pt;}
.x0_c01214{left:0.000000pt;}
.x3_c01214{left:113.385333pt;}
.x2_c01214{left:142.078667pt;}
.x4_c01214{left:388.912000pt;}
.x1_c01214{left:657.753333pt;}
}





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

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





.ff0_c01215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01215;src:url('chunks/assets/font_a344c0532d602db2863612ee.woff2')format("woff");}.ff1_c01215{font-family:ff1_c01215;line-height:1.001000;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_c01215;src:url('chunks/assets/font_2fc213fd06e3bb822ad89e42.woff2')format("woff");}.ff2_c01215{font-family:ff2_c01215;line-height:1.000000;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_c01215{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_c01215{vertical-align:0.000000px;}
.ls0_c01215{letter-spacing:0.000000px;}
.sc__c01215{text-shadow:none;}
.sc0_c01215{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__c01215{-webkit-text-stroke:0px transparent;}
.sc0_c01215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01215{word-spacing:-0.071730px;}
.ws20_c01215{word-spacing:-0.065454px;}
.ws1e_c01215{word-spacing:15.119874px;}
.ws1a_c01215{word-spacing:15.185328px;}
.ws6_c01215{word-spacing:15.250782px;}
.ws1d_c01215{word-spacing:15.447144px;}
.ws19_c01215{word-spacing:15.512598px;}
.ws11_c01215{word-spacing:18.981660px;}
.ws12_c01215{word-spacing:19.112568px;}
.wsa_c01215{word-spacing:19.505292px;}
.ws5_c01215{word-spacing:19.636200px;}
.ws8_c01215{word-spacing:20.225286px;}
.ws1b_c01215{word-spacing:20.683464px;}
.ws4_c01215{word-spacing:20.814372px;}
.ws1c_c01215{word-spacing:21.010734px;}
.ws14_c01215{word-spacing:21.338004px;}
.ws2_c01215{word-spacing:21.730728px;}
.ws9_c01215{word-spacing:21.796182px;}
.ws15_c01215{word-spacing:21.861636px;}
.ws17_c01215{word-spacing:22.712538px;}
.ws16_c01215{word-spacing:22.974354px;}
.wsb_c01215{word-spacing:23.170716px;}
.ws13_c01215{word-spacing:24.021618px;}
.wsf_c01215{word-spacing:24.217980px;}
.ws1_c01215{word-spacing:24.414342px;}
.ws7_c01215{word-spacing:24.937974px;}
.wsd_c01215{word-spacing:25.396152px;}
.ws18_c01215{word-spacing:25.592514px;}
.ws3_c01215{word-spacing:25.919784px;}
.ws1f_c01215{word-spacing:26.116146px;}
.wse_c01215{word-spacing:27.294318px;}
.ws10_c01215{word-spacing:27.752496px;}
.wsc_c01215{word-spacing:28.537944px;}
._b_c01215{margin-left:-34.690620px;}
._1_c01215{margin-left:-32.596092px;}
._3_c01215{margin-left:-31.090650px;}
._6_c01215{margin-left:-29.912478px;}
._8_c01215{margin-left:-25.396152px;}
._7_c01215{margin-left:-7.265394px;}
._4_c01215{margin-left:-3.861786px;}
._5_c01215{margin-left:-2.749068px;}
._0_c01215{margin-left:-1.636350px;}
._2_c01215{width:1.898166px;}
._c_c01215{width:3.534516px;}
._9_c01215{width:20.487102px;}
._a_c01215{width:21.534366px;}
._d_c01215{width:27.228864px;}
.fc0_c01215{color:rgb(0,0,0);}
.fs1_c01215{font-size:65.454000px;}
.fs0_c01215{font-size:71.730000px;}
.y0_c01215{bottom:0.000000px;}
.y29_c01215{bottom:90.013500px;}
.y28_c01215{bottom:115.234500px;}
.y27_c01215{bottom:140.457000px;}
.y26_c01215{bottom:165.678000px;}
.y25_c01215{bottom:190.900500px;}
.y24_c01215{bottom:216.121500px;}
.y23_c01215{bottom:241.344000px;}
.y22_c01215{bottom:266.565000px;}
.y21_c01215{bottom:291.787500px;}
.y20_c01215{bottom:317.008500px;}
.y1f_c01215{bottom:342.231000px;}
.y1e_c01215{bottom:367.452000px;}
.y1d_c01215{bottom:392.674500px;}
.y1c_c01215{bottom:417.895500px;}
.y1b_c01215{bottom:443.118000px;}
.y1a_c01215{bottom:468.339000px;}
.y19_c01215{bottom:493.561500px;}
.y18_c01215{bottom:518.782500px;}
.y17_c01215{bottom:544.005000px;}
.y16_c01215{bottom:569.226000px;}
.y15_c01215{bottom:594.448500px;}
.y14_c01215{bottom:619.671000px;}
.y13_c01215{bottom:644.892000px;}
.y12_c01215{bottom:670.114500px;}
.y11_c01215{bottom:695.335500px;}
.y10_c01215{bottom:720.558000px;}
.yf_c01215{bottom:745.779000px;}
.ye_c01215{bottom:771.001500px;}
.yd_c01215{bottom:796.222500px;}
.yc_c01215{bottom:821.445000px;}
.yb_c01215{bottom:846.666000px;}
.ya_c01215{bottom:871.888500px;}
.y9_c01215{bottom:897.109500px;}
.y8_c01215{bottom:922.332000px;}
.y7_c01215{bottom:947.553000px;}
.y6_c01215{bottom:972.775500px;}
.y5_c01215{bottom:997.996500px;}
.y4_c01215{bottom:1023.219000px;}
.y3_c01215{bottom:1048.440000px;}
.y2_c01215{bottom:1073.662500px;}
.y1_c01215{bottom:1140.615000px;}
.h3_c01215{height:49.090500px;}
.h2_c01215{height:53.797500px;}
.h1_c01215{height:1263.750000px;}
.h0_c01215{height:1264.110000px;}
.w0_c01215{width:893.869500px;}
.w1_c01215{width:894.000000px;}
.x0_c01215{left:0.000000px;}
.x2_c01215{left:127.558500px;}
.x3_c01215{left:159.838500px;}
.x1_c01215{left:739.972500px;}
@media print{
.v0_c01215{vertical-align:0.000000pt;}
.ls0_c01215{letter-spacing:0.000000pt;}
.ws0_c01215{word-spacing:-0.063760pt;}
.ws20_c01215{word-spacing:-0.058181pt;}
.ws1e_c01215{word-spacing:13.439888pt;}
.ws1a_c01215{word-spacing:13.498069pt;}
.ws6_c01215{word-spacing:13.556251pt;}
.ws1d_c01215{word-spacing:13.730795pt;}
.ws19_c01215{word-spacing:13.788976pt;}
.ws11_c01215{word-spacing:16.872587pt;}
.ws12_c01215{word-spacing:16.988949pt;}
.wsa_c01215{word-spacing:17.338037pt;}
.ws5_c01215{word-spacing:17.454400pt;}
.ws8_c01215{word-spacing:17.978032pt;}
.ws1b_c01215{word-spacing:18.385301pt;}
.ws4_c01215{word-spacing:18.501664pt;}
.ws1c_c01215{word-spacing:18.676208pt;}
.ws14_c01215{word-spacing:18.967115pt;}
.ws2_c01215{word-spacing:19.316203pt;}
.ws9_c01215{word-spacing:19.374384pt;}
.ws15_c01215{word-spacing:19.432565pt;}
.ws17_c01215{word-spacing:20.188923pt;}
.ws16_c01215{word-spacing:20.421648pt;}
.wsb_c01215{word-spacing:20.596192pt;}
.ws13_c01215{word-spacing:21.352549pt;}
.wsf_c01215{word-spacing:21.527093pt;}
.ws1_c01215{word-spacing:21.701637pt;}
.ws7_c01215{word-spacing:22.167088pt;}
.wsd_c01215{word-spacing:22.574357pt;}
.ws18_c01215{word-spacing:22.748901pt;}
.ws3_c01215{word-spacing:23.039808pt;}
.ws1f_c01215{word-spacing:23.214352pt;}
.wse_c01215{word-spacing:24.261616pt;}
.ws10_c01215{word-spacing:24.668885pt;}
.wsc_c01215{word-spacing:25.367061pt;}
._b_c01215{margin-left:-30.836107pt;}
._1_c01215{margin-left:-28.974304pt;}
._3_c01215{margin-left:-27.636133pt;}
._6_c01215{margin-left:-26.588869pt;}
._8_c01215{margin-left:-22.574357pt;}
._7_c01215{margin-left:-6.458128pt;}
._4_c01215{margin-left:-3.432699pt;}
._5_c01215{margin-left:-2.443616pt;}
._0_c01215{margin-left:-1.454533pt;}
._2_c01215{width:1.687259pt;}
._c_c01215{width:3.141792pt;}
._9_c01215{width:18.210757pt;}
._a_c01215{width:19.141659pt;}
._d_c01215{width:24.203435pt;}
.fs1_c01215{font-size:58.181333pt;}
.fs0_c01215{font-size:63.760000pt;}
.y0_c01215{bottom:0.000000pt;}
.y29_c01215{bottom:80.012000pt;}
.y28_c01215{bottom:102.430667pt;}
.y27_c01215{bottom:124.850667pt;}
.y26_c01215{bottom:147.269333pt;}
.y25_c01215{bottom:169.689333pt;}
.y24_c01215{bottom:192.108000pt;}
.y23_c01215{bottom:214.528000pt;}
.y22_c01215{bottom:236.946667pt;}
.y21_c01215{bottom:259.366667pt;}
.y20_c01215{bottom:281.785333pt;}
.y1f_c01215{bottom:304.205333pt;}
.y1e_c01215{bottom:326.624000pt;}
.y1d_c01215{bottom:349.044000pt;}
.y1c_c01215{bottom:371.462667pt;}
.y1b_c01215{bottom:393.882667pt;}
.y1a_c01215{bottom:416.301333pt;}
.y19_c01215{bottom:438.721333pt;}
.y18_c01215{bottom:461.140000pt;}
.y17_c01215{bottom:483.560000pt;}
.y16_c01215{bottom:505.978667pt;}
.y15_c01215{bottom:528.398667pt;}
.y14_c01215{bottom:550.818667pt;}
.y13_c01215{bottom:573.237333pt;}
.y12_c01215{bottom:595.657333pt;}
.y11_c01215{bottom:618.076000pt;}
.y10_c01215{bottom:640.496000pt;}
.yf_c01215{bottom:662.914667pt;}
.ye_c01215{bottom:685.334667pt;}
.yd_c01215{bottom:707.753333pt;}
.yc_c01215{bottom:730.173333pt;}
.yb_c01215{bottom:752.592000pt;}
.ya_c01215{bottom:775.012000pt;}
.y9_c01215{bottom:797.430667pt;}
.y8_c01215{bottom:819.850667pt;}
.y7_c01215{bottom:842.269333pt;}
.y6_c01215{bottom:864.689333pt;}
.y5_c01215{bottom:887.108000pt;}
.y4_c01215{bottom:909.528000pt;}
.y3_c01215{bottom:931.946667pt;}
.y2_c01215{bottom:954.366667pt;}
.y1_c01215{bottom:1013.880000pt;}
.h3_c01215{height:43.636000pt;}
.h2_c01215{height:47.820000pt;}
.h1_c01215{height:1123.333333pt;}
.h0_c01215{height:1123.653333pt;}
.w0_c01215{width:794.550667pt;}
.w1_c01215{width:794.666667pt;}
.x0_c01215{left:0.000000pt;}
.x2_c01215{left:113.385333pt;}
.x3_c01215{left:142.078667pt;}
.x1_c01215{left:657.753333pt;}
}





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

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





.ff0_c01216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01216;src:url('chunks/assets/font_c6e6612fb0d534fa9d16acad.woff2')format("woff");}.ff1_c01216{font-family:ff1_c01216;line-height:1.001000;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_c01216;src:url('chunks/assets/font_015918381809dffdb505de97.woff2')format("woff");}.ff2_c01216{font-family:ff2_c01216;line-height:1.000000;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_c01216;src:url('chunks/assets/font_d76726b8afa2af93de3a2ff2.woff2')format("woff");}.ff3_c01216{font-family:ff3_c01216;line-height:1.000000;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_c01216{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_c01216{vertical-align:0.000000px;}
.v1_c01216{vertical-align:16.548000px;}
.ls0_c01216{letter-spacing:0.000000px;}
.sc__c01216{text-shadow:none;}
.sc0_c01216{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__c01216{-webkit-text-stroke:0px transparent;}
.sc0_c01216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01216{word-spacing:-0.071730px;}
.ws8_c01216{word-spacing:-0.065454px;}
.ws1d_c01216{word-spacing:0.000000px;}
.ws7_c01216{word-spacing:15.447144px;}
.ws18_c01216{word-spacing:16.298046px;}
.wsc_c01216{word-spacing:18.196212px;}
.ws6_c01216{word-spacing:19.047114px;}
.ws15_c01216{word-spacing:19.112568px;}
.ws12_c01216{word-spacing:19.570746px;}
.ws19_c01216{word-spacing:20.094378px;}
.ws16_c01216{word-spacing:20.159832px;}
.ws5_c01216{word-spacing:20.225286px;}
.wsa_c01216{word-spacing:20.879826px;}
.ws11_c01216{word-spacing:21.272550px;}
.wse_c01216{word-spacing:21.468912px;}
.ws17_c01216{word-spacing:21.534366px;}
.ws3_c01216{word-spacing:21.730728px;}
.ws9_c01216{word-spacing:21.796182px;}
.ws1a_c01216{word-spacing:22.974354px;}
.ws10_c01216{word-spacing:23.825256px;}
.wsf_c01216{word-spacing:24.807066px;}
.wsb_c01216{word-spacing:25.003428px;}
.ws2_c01216{word-spacing:25.068882px;}
.wsd_c01216{word-spacing:25.461606px;}
.ws1c_c01216{word-spacing:25.592514px;}
.ws14_c01216{word-spacing:26.770686px;}
.ws1_c01216{word-spacing:27.032502px;}
.ws1b_c01216{word-spacing:30.436110px;}
.ws4_c01216{word-spacing:30.567018px;}
.ws13_c01216{word-spacing:32.007006px;}
._b_c01216{margin-left:-38.421498px;}
._2_c01216{margin-left:-34.559712px;}
._5_c01216{margin-left:-32.792454px;}
._3_c01216{margin-left:-30.959742px;}
._7_c01216{margin-left:-25.461606px;}
._6_c01216{margin-left:-7.330848px;}
._9_c01216{margin-left:-5.367228px;}
._8_c01216{margin-left:-3.665424px;}
._0_c01216{margin-left:-1.832712px;}
._4_c01216{width:1.767258px;}
._c_c01216{width:3.599970px;}
._a_c01216{width:5.876970px;}
._1_c01216{width:28.865214px;}
.fc0_c01216{color:rgb(0,0,0);}
.fs1_c01216{font-size:65.454000px;}
.fs0_c01216{font-size:71.730000px;}
.y0_c01216{bottom:0.000000px;}
.y24_c01216{bottom:87.604500px;}
.y23_c01216{bottom:112.825500px;}
.y22_c01216{bottom:138.048000px;}
.y21_c01216{bottom:163.269000px;}
.y20_c01216{bottom:188.491500px;}
.y1f_c01216{bottom:213.712500px;}
.y1e_c01216{bottom:238.935000px;}
.y1d_c01216{bottom:264.156000px;}
.y1c_c01216{bottom:289.378500px;}
.y1b_c01216{bottom:314.599500px;}
.y1a_c01216{bottom:339.822000px;}
.y19_c01216{bottom:365.043000px;}
.y18_c01216{bottom:390.265500px;}
.y17_c01216{bottom:415.486500px;}
.y16_c01216{bottom:440.709000px;}
.y15_c01216{bottom:465.930000px;}
.y14_c01216{bottom:491.152500px;}
.y13_c01216{bottom:516.373500px;}
.y12_c01216{bottom:541.596000px;}
.y11_c01216{bottom:566.817000px;}
.y10_c01216{bottom:592.039500px;}
.yf_c01216{bottom:617.260500px;}
.ye_c01216{bottom:642.483000px;}
.yd_c01216{bottom:685.636500px;}
.yc_c01216{bottom:710.859000px;}
.yb_c01216{bottom:773.440500px;}
.ya_c01216{bottom:853.954500px;}
.y9_c01216{bottom:897.109500px;}
.y8_c01216{bottom:922.332000px;}
.y7_c01216{bottom:947.553000px;}
.y6_c01216{bottom:972.775500px;}
.y5_c01216{bottom:997.996500px;}
.y4_c01216{bottom:1023.219000px;}
.y3_c01216{bottom:1048.440000px;}
.y2_c01216{bottom:1073.662500px;}
.y1_c01216{bottom:1140.615000px;}
.h3_c01216{height:49.090500px;}
.h2_c01216{height:53.797500px;}
.h4_c01216{height:65.638500px;}
.h1_c01216{height:1263.750000px;}
.h0_c01216{height:1264.110000px;}
.w0_c01216{width:893.869500px;}
.w1_c01216{width:894.000000px;}
.x0_c01216{left:0.000000px;}
.x3_c01216{left:127.558500px;}
.x2_c01216{left:159.838500px;}
.x6_c01216{left:166.110000px;}
.x4_c01216{left:183.922500px;}
.x5_c01216{left:437.526000px;}
.x1_c01216{left:739.972500px;}
@media print{
.v0_c01216{vertical-align:0.000000pt;}
.v1_c01216{vertical-align:14.709333pt;}
.ls0_c01216{letter-spacing:0.000000pt;}
.ws0_c01216{word-spacing:-0.063760pt;}
.ws8_c01216{word-spacing:-0.058181pt;}
.ws1d_c01216{word-spacing:0.000000pt;}
.ws7_c01216{word-spacing:13.730795pt;}
.ws18_c01216{word-spacing:14.487152pt;}
.wsc_c01216{word-spacing:16.174411pt;}
.ws6_c01216{word-spacing:16.930768pt;}
.ws15_c01216{word-spacing:16.988949pt;}
.ws12_c01216{word-spacing:17.396219pt;}
.ws19_c01216{word-spacing:17.861669pt;}
.ws16_c01216{word-spacing:17.919851pt;}
.ws5_c01216{word-spacing:17.978032pt;}
.wsa_c01216{word-spacing:18.559845pt;}
.ws11_c01216{word-spacing:18.908933pt;}
.wse_c01216{word-spacing:19.083477pt;}
.ws17_c01216{word-spacing:19.141659pt;}
.ws3_c01216{word-spacing:19.316203pt;}
.ws9_c01216{word-spacing:19.374384pt;}
.ws1a_c01216{word-spacing:20.421648pt;}
.ws10_c01216{word-spacing:21.178005pt;}
.wsf_c01216{word-spacing:22.050725pt;}
.wsb_c01216{word-spacing:22.225269pt;}
.ws2_c01216{word-spacing:22.283451pt;}
.wsd_c01216{word-spacing:22.632539pt;}
.ws1c_c01216{word-spacing:22.748901pt;}
.ws14_c01216{word-spacing:23.796165pt;}
.ws1_c01216{word-spacing:24.028891pt;}
.ws1b_c01216{word-spacing:27.054320pt;}
.ws4_c01216{word-spacing:27.170683pt;}
.ws13_c01216{word-spacing:28.450672pt;}
._b_c01216{margin-left:-34.152443pt;}
._2_c01216{margin-left:-30.719744pt;}
._5_c01216{margin-left:-29.148848pt;}
._3_c01216{margin-left:-27.519771pt;}
._7_c01216{margin-left:-22.632539pt;}
._6_c01216{margin-left:-6.516309pt;}
._9_c01216{margin-left:-4.770869pt;}
._8_c01216{margin-left:-3.258155pt;}
._0_c01216{margin-left:-1.629077pt;}
._4_c01216{width:1.570896pt;}
._c_c01216{width:3.199973pt;}
._a_c01216{width:5.223973pt;}
._1_c01216{width:25.657968pt;}
.fs1_c01216{font-size:58.181333pt;}
.fs0_c01216{font-size:63.760000pt;}
.y0_c01216{bottom:0.000000pt;}
.y24_c01216{bottom:77.870667pt;}
.y23_c01216{bottom:100.289333pt;}
.y22_c01216{bottom:122.709333pt;}
.y21_c01216{bottom:145.128000pt;}
.y20_c01216{bottom:167.548000pt;}
.y1f_c01216{bottom:189.966667pt;}
.y1e_c01216{bottom:212.386667pt;}
.y1d_c01216{bottom:234.805333pt;}
.y1c_c01216{bottom:257.225333pt;}
.y1b_c01216{bottom:279.644000pt;}
.y1a_c01216{bottom:302.064000pt;}
.y19_c01216{bottom:324.482667pt;}
.y18_c01216{bottom:346.902667pt;}
.y17_c01216{bottom:369.321333pt;}
.y16_c01216{bottom:391.741333pt;}
.y15_c01216{bottom:414.160000pt;}
.y14_c01216{bottom:436.580000pt;}
.y13_c01216{bottom:458.998667pt;}
.y12_c01216{bottom:481.418667pt;}
.y11_c01216{bottom:503.837333pt;}
.y10_c01216{bottom:526.257333pt;}
.yf_c01216{bottom:548.676000pt;}
.ye_c01216{bottom:571.096000pt;}
.yd_c01216{bottom:609.454667pt;}
.yc_c01216{bottom:631.874667pt;}
.yb_c01216{bottom:687.502667pt;}
.ya_c01216{bottom:759.070667pt;}
.y9_c01216{bottom:797.430667pt;}
.y8_c01216{bottom:819.850667pt;}
.y7_c01216{bottom:842.269333pt;}
.y6_c01216{bottom:864.689333pt;}
.y5_c01216{bottom:887.108000pt;}
.y4_c01216{bottom:909.528000pt;}
.y3_c01216{bottom:931.946667pt;}
.y2_c01216{bottom:954.366667pt;}
.y1_c01216{bottom:1013.880000pt;}
.h3_c01216{height:43.636000pt;}
.h2_c01216{height:47.820000pt;}
.h4_c01216{height:58.345333pt;}
.h1_c01216{height:1123.333333pt;}
.h0_c01216{height:1123.653333pt;}
.w0_c01216{width:794.550667pt;}
.w1_c01216{width:794.666667pt;}
.x0_c01216{left:0.000000pt;}
.x3_c01216{left:113.385333pt;}
.x2_c01216{left:142.078667pt;}
.x6_c01216{left:147.653333pt;}
.x4_c01216{left:163.486667pt;}
.x5_c01216{left:388.912000pt;}
.x1_c01216{left:657.753333pt;}
}





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

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





.ff0_c01217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01217;src:url('chunks/assets/font_a5640f04cf09f8c598da935d.woff2')format("woff");}.ff1_c01217{font-family:ff1_c01217;line-height:1.001000;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_c01217;src:url('chunks/assets/font_ce767038d78d0772aa55b688.woff2')format("woff");}.ff2_c01217{font-family:ff2_c01217;line-height:1.000000;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_c01217;src:url('chunks/assets/font_9994a44559bbeec9e5485abb.woff2')format("woff");}.ff3_c01217{font-family:ff3_c01217;line-height:1.000000;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_c01217;src:url('chunks/assets/font_78d847cacf36e9d7ea8d2827.woff2')format("woff");}.ff4_c01217{font-family:ff4_c01217;line-height:0.697000;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_c01217{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_c01217{vertical-align:0.000000px;}
.v1_c01217{vertical-align:23.754000px;}
.ls1_c01217{letter-spacing:0.000000px;}
.ls0_c01217{letter-spacing:3.005580px;}
.sc__c01217{text-shadow:none;}
.sc0_c01217{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__c01217{-webkit-text-stroke:0px transparent;}
.sc0_c01217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01217{word-spacing:-0.071730px;}
.wsb_c01217{word-spacing:-0.065454px;}
.ws1e_c01217{word-spacing:0.000000px;}
.ws1c_c01217{word-spacing:15.381690px;}
.ws16_c01217{word-spacing:16.101684px;}
.ws17_c01217{word-spacing:16.756224px;}
.ws15_c01217{word-spacing:17.868942px;}
.ws11_c01217{word-spacing:18.196212px;}
.wsc_c01217{word-spacing:18.523482px;}
.ws18_c01217{word-spacing:19.505292px;}
.ws1b_c01217{word-spacing:19.570746px;}
.ws9_c01217{word-spacing:19.963470px;}
.ws1d_c01217{word-spacing:20.028924px;}
.ws14_c01217{word-spacing:20.552556px;}
.ws13_c01217{word-spacing:21.141642px;}
.wsa_c01217{word-spacing:21.665274px;}
.wse_c01217{word-spacing:21.730728px;}
.ws2_c01217{word-spacing:21.796182px;}
.wsf_c01217{word-spacing:22.385268px;}
.ws1a_c01217{word-spacing:22.516176px;}
.ws1_c01217{word-spacing:23.759802px;}
.wsd_c01217{word-spacing:23.956164px;}
.ws12_c01217{word-spacing:24.610704px;}
.ws19_c01217{word-spacing:24.676158px;}
.ws5_c01217{word-spacing:25.003428px;}
.ws3_c01217{word-spacing:25.068882px;}
.ws4_c01217{word-spacing:25.723422px;}
.ws10_c01217{word-spacing:27.228864px;}
.ws8_c01217{word-spacing:28.734306px;}
.ws7_c01217{word-spacing:29.716116px;}
.ws6_c01217{word-spacing:30.567018px;}
._7_c01217{margin-left:-39.730578px;}
._4_c01217{margin-left:-37.112418px;}
._c_c01217{margin-left:-34.431804px;}
._8_c01217{margin-left:-32.792454px;}
._1_c01217{margin-left:-30.763380px;}
._3_c01217{margin-left:-25.461606px;}
._2_c01217{margin-left:-7.330848px;}
._9_c01217{margin-left:-5.432682px;}
._a_c01217{margin-left:-3.534516px;}
._0_c01217{margin-left:-1.963620px;}
._b_c01217{width:1.047264px;}
._6_c01217{width:2.159982px;}
._5_c01217{width:4.712688px;}
.fc0_c01217{color:rgb(0,0,0);}
.fs2_c01217{font-size:47.820000px;}
.fs1_c01217{font-size:65.454000px;}
.fs0_c01217{font-size:71.730000px;}
.y0_c01217{bottom:0.000000px;}
.y23_c01217{bottom:71.973000px;}
.y22_c01217{bottom:97.194000px;}
.y21_c01217{bottom:137.974500px;}
.y20_c01217{bottom:163.195500px;}
.y1f_c01217{bottom:203.974500px;}
.y1e_c01217{bottom:229.197000px;}
.y1d_c01217{bottom:254.418000px;}
.y1c_c01217{bottom:279.640500px;}
.y1b_c01217{bottom:320.419500px;}
.y1a_c01217{bottom:345.640500px;}
.y19_c01217{bottom:370.863000px;}
.y18_c01217{bottom:396.084000px;}
.y17_c01217{bottom:421.306500px;}
.y16_c01217{bottom:446.527500px;}
.y15_c01217{bottom:471.750000px;}
.y14_c01217{bottom:496.971000px;}
.y13_c01217{bottom:522.193500px;}
.y12_c01217{bottom:547.414500px;}
.y11_c01217{bottom:572.637000px;}
.y10_c01217{bottom:597.859500px;}
.yf_c01217{bottom:638.638500px;}
.ye_c01217{bottom:663.859500px;}
.yd_c01217{bottom:689.082000px;}
.yc_c01217{bottom:729.861000px;}
.yb_c01217{bottom:755.082000px;}
.ya_c01217{bottom:780.304500px;}
.y9_c01217{bottom:805.525500px;}
.y8_c01217{bottom:830.748000px;}
.y7_c01217{bottom:871.527000px;}
.y6_c01217{bottom:896.749500px;}
.y5_c01217{bottom:921.970500px;}
.y4_c01217{bottom:977.427000px;}
.y3_c01217{bottom:1048.440000px;}
.y2_c01217{bottom:1073.662500px;}
.y1_c01217{bottom:1140.615000px;}
.h3_c01217{height:49.090500px;}
.h2_c01217{height:53.797500px;}
.h5_c01217{height:56.074320px;}
.h4_c01217{height:56.080320px;}
.h1_c01217{height:1263.750000px;}
.h0_c01217{height:1264.110000px;}
.w0_c01217{width:893.869500px;}
.w1_c01217{width:894.000000px;}
.x0_c01217{left:0.000000px;}
.x3_c01217{left:127.558500px;}
.x2_c01217{left:159.838500px;}
.x4_c01217{left:437.526000px;}
.x1_c01217{left:739.972500px;}
@media print{
.v0_c01217{vertical-align:0.000000pt;}
.v1_c01217{vertical-align:21.114667pt;}
.ls1_c01217{letter-spacing:0.000000pt;}
.ls0_c01217{letter-spacing:2.671627pt;}
.ws0_c01217{word-spacing:-0.063760pt;}
.wsb_c01217{word-spacing:-0.058181pt;}
.ws1e_c01217{word-spacing:0.000000pt;}
.ws1c_c01217{word-spacing:13.672613pt;}
.ws16_c01217{word-spacing:14.312608pt;}
.ws17_c01217{word-spacing:14.894421pt;}
.ws15_c01217{word-spacing:15.883504pt;}
.ws11_c01217{word-spacing:16.174411pt;}
.wsc_c01217{word-spacing:16.465317pt;}
.ws18_c01217{word-spacing:17.338037pt;}
.ws1b_c01217{word-spacing:17.396219pt;}
.ws9_c01217{word-spacing:17.745307pt;}
.ws1d_c01217{word-spacing:17.803488pt;}
.ws14_c01217{word-spacing:18.268939pt;}
.ws13_c01217{word-spacing:18.792571pt;}
.wsa_c01217{word-spacing:19.258021pt;}
.wse_c01217{word-spacing:19.316203pt;}
.ws2_c01217{word-spacing:19.374384pt;}
.wsf_c01217{word-spacing:19.898016pt;}
.ws1a_c01217{word-spacing:20.014379pt;}
.ws1_c01217{word-spacing:21.119824pt;}
.wsd_c01217{word-spacing:21.294368pt;}
.ws12_c01217{word-spacing:21.876181pt;}
.ws19_c01217{word-spacing:21.934363pt;}
.ws5_c01217{word-spacing:22.225269pt;}
.ws3_c01217{word-spacing:22.283451pt;}
.ws4_c01217{word-spacing:22.865264pt;}
.ws10_c01217{word-spacing:24.203435pt;}
.ws8_c01217{word-spacing:25.541605pt;}
.ws7_c01217{word-spacing:26.414325pt;}
.ws6_c01217{word-spacing:27.170683pt;}
._7_c01217{margin-left:-35.316069pt;}
._4_c01217{margin-left:-32.988816pt;}
._c_c01217{margin-left:-30.606048pt;}
._8_c01217{margin-left:-29.148848pt;}
._1_c01217{margin-left:-27.345227pt;}
._3_c01217{margin-left:-22.632539pt;}
._2_c01217{margin-left:-6.516309pt;}
._9_c01217{margin-left:-4.829051pt;}
._a_c01217{margin-left:-3.141792pt;}
._0_c01217{margin-left:-1.745440pt;}
._b_c01217{width:0.930901pt;}
._6_c01217{width:1.919984pt;}
._5_c01217{width:4.189056pt;}
.fs2_c01217{font-size:42.506667pt;}
.fs1_c01217{font-size:58.181333pt;}
.fs0_c01217{font-size:63.760000pt;}
.y0_c01217{bottom:0.000000pt;}
.y23_c01217{bottom:63.976000pt;}
.y22_c01217{bottom:86.394667pt;}
.y21_c01217{bottom:122.644000pt;}
.y20_c01217{bottom:145.062667pt;}
.y1f_c01217{bottom:181.310667pt;}
.y1e_c01217{bottom:203.730667pt;}
.y1d_c01217{bottom:226.149333pt;}
.y1c_c01217{bottom:248.569333pt;}
.y1b_c01217{bottom:284.817333pt;}
.y1a_c01217{bottom:307.236000pt;}
.y19_c01217{bottom:329.656000pt;}
.y18_c01217{bottom:352.074667pt;}
.y17_c01217{bottom:374.494667pt;}
.y16_c01217{bottom:396.913333pt;}
.y15_c01217{bottom:419.333333pt;}
.y14_c01217{bottom:441.752000pt;}
.y13_c01217{bottom:464.172000pt;}
.y12_c01217{bottom:486.590667pt;}
.y11_c01217{bottom:509.010667pt;}
.y10_c01217{bottom:531.430667pt;}
.yf_c01217{bottom:567.678667pt;}
.ye_c01217{bottom:590.097333pt;}
.yd_c01217{bottom:612.517333pt;}
.yc_c01217{bottom:648.765333pt;}
.yb_c01217{bottom:671.184000pt;}
.ya_c01217{bottom:693.604000pt;}
.y9_c01217{bottom:716.022667pt;}
.y8_c01217{bottom:738.442667pt;}
.y7_c01217{bottom:774.690667pt;}
.y6_c01217{bottom:797.110667pt;}
.y5_c01217{bottom:819.529333pt;}
.y4_c01217{bottom:868.824000pt;}
.y3_c01217{bottom:931.946667pt;}
.y2_c01217{bottom:954.366667pt;}
.y1_c01217{bottom:1013.880000pt;}
.h3_c01217{height:43.636000pt;}
.h2_c01217{height:47.820000pt;}
.h5_c01217{height:49.843840pt;}
.h4_c01217{height:49.849173pt;}
.h1_c01217{height:1123.333333pt;}
.h0_c01217{height:1123.653333pt;}
.w0_c01217{width:794.550667pt;}
.w1_c01217{width:794.666667pt;}
.x0_c01217{left:0.000000pt;}
.x3_c01217{left:113.385333pt;}
.x2_c01217{left:142.078667pt;}
.x4_c01217{left:388.912000pt;}
.x1_c01217{left:657.753333pt;}
}





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

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





.ff0_c01218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01218;src:url('chunks/assets/font_2875b061ae544e645fb825fb.woff2')format("woff");}.ff1_c01218{font-family:ff1_c01218;line-height:1.001000;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_c01218;src:url('chunks/assets/font_045005c3da23b57c8676b4db.woff2')format("woff");}.ff2_c01218{font-family:ff2_c01218;line-height:1.000000;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_c01218;src:url('chunks/assets/font_c00a5e3fd9dd1cf8bc0e6fb4.woff2')format("woff");}.ff3_c01218{font-family:ff3_c01218;line-height:0.697000;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_c01218;src:url('chunks/assets/font_a2db34836f18c538b409a1f9.woff2')format("woff");}.ff4_c01218{font-family:ff4_c01218;line-height:1.000000;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_c01218{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_c01218{vertical-align:0.000000px;}
.v1_c01218{vertical-align:23.754000px;}
.ls3_c01218{letter-spacing:0.000000px;}
.ls1_c01218{letter-spacing:2.999580px;}
.ls0_c01218{letter-spacing:3.005580px;}
.ls2_c01218{letter-spacing:32.117580px;}
.sc__c01218{text-shadow:none;}
.sc0_c01218{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__c01218{-webkit-text-stroke:0px transparent;}
.sc0_c01218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01218{word-spacing:-0.071730px;}
.ws6_c01218{word-spacing:-0.065454px;}
.ws1c_c01218{word-spacing:0.000000px;}
.ws1a_c01218{word-spacing:14.465334px;}
.wsd_c01218{word-spacing:15.447144px;}
.ws18_c01218{word-spacing:20.159832px;}
.ws4_c01218{word-spacing:20.290740px;}
.ws17_c01218{word-spacing:20.814372px;}
.wsc_c01218{word-spacing:21.141642px;}
.ws3_c01218{word-spacing:21.403458px;}
.ws11_c01218{word-spacing:21.599820px;}
.ws5_c01218{word-spacing:21.730728px;}
.wsa_c01218{word-spacing:21.796182px;}
.ws14_c01218{word-spacing:22.712538px;}
.ws9_c01218{word-spacing:23.367078px;}
.ws12_c01218{word-spacing:23.825256px;}
.ws13_c01218{word-spacing:23.890710px;}
.ws1b_c01218{word-spacing:24.348888px;}
.ws1_c01218{word-spacing:24.545250px;}
.wsb_c01218{word-spacing:24.741612px;}
.wsf_c01218{word-spacing:25.003428px;}
.ws2_c01218{word-spacing:26.247054px;}
.ws10_c01218{word-spacing:26.377962px;}
.wse_c01218{word-spacing:26.574324px;}
.ws8_c01218{word-spacing:26.639778px;}
.ws19_c01218{word-spacing:28.734306px;}
.ws15_c01218{word-spacing:28.996122px;}
.ws16_c01218{word-spacing:29.061576px;}
.ws7_c01218{word-spacing:32.137914px;}
._9_c01218{margin-left:-39.141492px;}
._8_c01218{margin-left:-34.101534px;}
._2_c01218{margin-left:-32.857908px;}
._6_c01218{margin-left:-30.763380px;}
._5_c01218{margin-left:-25.461606px;}
._4_c01218{margin-left:-7.134486px;}
._0_c01218{margin-left:-5.432682px;}
._7_c01218{margin-left:-3.799332px;}
._3_c01218{margin-left:-1.963620px;}
._1_c01218{width:1.767258px;}
.fc0_c01218{color:rgb(0,0,0);}
.fs2_c01218{font-size:47.820000px;}
.fs1_c01218{font-size:65.454000px;}
.fs0_c01218{font-size:71.730000px;}
.y0_c01218{bottom:0.000000px;}
.y20_c01218{bottom:73.605000px;}
.y1f_c01218{bottom:98.827500px;}
.y1e_c01218{bottom:124.048500px;}
.y1d_c01218{bottom:167.203500px;}
.y1c_c01218{bottom:192.426000px;}
.y1b_c01218{bottom:217.647000px;}
.y1a_c01218{bottom:242.869500px;}
.y19_c01218{bottom:286.023000px;}
.y18_c01218{bottom:311.245500px;}
.y17_c01218{bottom:354.399000px;}
.y16_c01218{bottom:379.621500px;}
.y15_c01218{bottom:404.842500px;}
.y14_c01218{bottom:473.220000px;}
.y13_c01218{bottom:498.441000px;}
.y12_c01218{bottom:541.596000px;}
.y11_c01218{bottom:566.817000px;}
.y10_c01218{bottom:629.398500px;}
.yf_c01218{bottom:709.914000px;}
.ye_c01218{bottom:735.135000px;}
.yd_c01218{bottom:760.357500px;}
.yc_c01218{bottom:785.578500px;}
.yb_c01218{bottom:810.801000px;}
.ya_c01218{bottom:853.954500px;}
.y9_c01218{bottom:879.177000px;}
.y8_c01218{bottom:904.398000px;}
.y7_c01218{bottom:929.620500px;}
.y6_c01218{bottom:972.775500px;}
.y5_c01218{bottom:997.996500px;}
.y4_c01218{bottom:1023.219000px;}
.y3_c01218{bottom:1048.440000px;}
.y2_c01218{bottom:1073.662500px;}
.y1_c01218{bottom:1140.615000px;}
.h3_c01218{height:49.090500px;}
.h2_c01218{height:53.797500px;}
.h5_c01218{height:56.074320px;}
.h4_c01218{height:56.080320px;}
.h1_c01218{height:1263.750000px;}
.h0_c01218{height:1264.110000px;}
.w0_c01218{width:893.869500px;}
.w1_c01218{width:894.000000px;}
.x0_c01218{left:0.000000px;}
.x2_c01218{left:127.558500px;}
.x3_c01218{left:159.838500px;}
.x4_c01218{left:437.526000px;}
.x1_c01218{left:739.972500px;}
@media print{
.v0_c01218{vertical-align:0.000000pt;}
.v1_c01218{vertical-align:21.114667pt;}
.ls3_c01218{letter-spacing:0.000000pt;}
.ls1_c01218{letter-spacing:2.666293pt;}
.ls0_c01218{letter-spacing:2.671627pt;}
.ls2_c01218{letter-spacing:28.548960pt;}
.ws0_c01218{word-spacing:-0.063760pt;}
.ws6_c01218{word-spacing:-0.058181pt;}
.ws1c_c01218{word-spacing:0.000000pt;}
.ws1a_c01218{word-spacing:12.858075pt;}
.wsd_c01218{word-spacing:13.730795pt;}
.ws18_c01218{word-spacing:17.919851pt;}
.ws4_c01218{word-spacing:18.036213pt;}
.ws17_c01218{word-spacing:18.501664pt;}
.wsc_c01218{word-spacing:18.792571pt;}
.ws3_c01218{word-spacing:19.025296pt;}
.ws11_c01218{word-spacing:19.199840pt;}
.ws5_c01218{word-spacing:19.316203pt;}
.wsa_c01218{word-spacing:19.374384pt;}
.ws14_c01218{word-spacing:20.188923pt;}
.ws9_c01218{word-spacing:20.770736pt;}
.ws12_c01218{word-spacing:21.178005pt;}
.ws13_c01218{word-spacing:21.236187pt;}
.ws1b_c01218{word-spacing:21.643456pt;}
.ws1_c01218{word-spacing:21.818000pt;}
.wsb_c01218{word-spacing:21.992544pt;}
.wsf_c01218{word-spacing:22.225269pt;}
.ws2_c01218{word-spacing:23.330715pt;}
.ws10_c01218{word-spacing:23.447077pt;}
.wse_c01218{word-spacing:23.621621pt;}
.ws8_c01218{word-spacing:23.679803pt;}
.ws19_c01218{word-spacing:25.541605pt;}
.ws15_c01218{word-spacing:25.774331pt;}
.ws16_c01218{word-spacing:25.832512pt;}
.ws7_c01218{word-spacing:28.567035pt;}
._9_c01218{margin-left:-34.792437pt;}
._8_c01218{margin-left:-30.312475pt;}
._2_c01218{margin-left:-29.207029pt;}
._6_c01218{margin-left:-27.345227pt;}
._5_c01218{margin-left:-22.632539pt;}
._4_c01218{margin-left:-6.341765pt;}
._0_c01218{margin-left:-4.829051pt;}
._7_c01218{margin-left:-3.377184pt;}
._3_c01218{margin-left:-1.745440pt;}
._1_c01218{width:1.570896pt;}
.fs2_c01218{font-size:42.506667pt;}
.fs1_c01218{font-size:58.181333pt;}
.fs0_c01218{font-size:63.760000pt;}
.y0_c01218{bottom:0.000000pt;}
.y20_c01218{bottom:65.426667pt;}
.y1f_c01218{bottom:87.846667pt;}
.y1e_c01218{bottom:110.265333pt;}
.y1d_c01218{bottom:148.625333pt;}
.y1c_c01218{bottom:171.045333pt;}
.y1b_c01218{bottom:193.464000pt;}
.y1a_c01218{bottom:215.884000pt;}
.y19_c01218{bottom:254.242667pt;}
.y18_c01218{bottom:276.662667pt;}
.y17_c01218{bottom:315.021333pt;}
.y16_c01218{bottom:337.441333pt;}
.y15_c01218{bottom:359.860000pt;}
.y14_c01218{bottom:420.640000pt;}
.y13_c01218{bottom:443.058667pt;}
.y12_c01218{bottom:481.418667pt;}
.y11_c01218{bottom:503.837333pt;}
.y10_c01218{bottom:559.465333pt;}
.yf_c01218{bottom:631.034667pt;}
.ye_c01218{bottom:653.453333pt;}
.yd_c01218{bottom:675.873333pt;}
.yc_c01218{bottom:698.292000pt;}
.yb_c01218{bottom:720.712000pt;}
.ya_c01218{bottom:759.070667pt;}
.y9_c01218{bottom:781.490667pt;}
.y8_c01218{bottom:803.909333pt;}
.y7_c01218{bottom:826.329333pt;}
.y6_c01218{bottom:864.689333pt;}
.y5_c01218{bottom:887.108000pt;}
.y4_c01218{bottom:909.528000pt;}
.y3_c01218{bottom:931.946667pt;}
.y2_c01218{bottom:954.366667pt;}
.y1_c01218{bottom:1013.880000pt;}
.h3_c01218{height:43.636000pt;}
.h2_c01218{height:47.820000pt;}
.h5_c01218{height:49.843840pt;}
.h4_c01218{height:49.849173pt;}
.h1_c01218{height:1123.333333pt;}
.h0_c01218{height:1123.653333pt;}
.w0_c01218{width:794.550667pt;}
.w1_c01218{width:794.666667pt;}
.x0_c01218{left:0.000000pt;}
.x2_c01218{left:113.385333pt;}
.x3_c01218{left:142.078667pt;}
.x4_c01218{left:388.912000pt;}
.x1_c01218{left:657.753333pt;}
}





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

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





.ff0_c01219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01219;src:url('chunks/assets/font_901e4deb936c5c0bf1c79080.woff2')format("woff");}.ff1_c01219{font-family:ff1_c01219;line-height:1.001000;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_c01219;src:url('chunks/assets/font_3baa97ff257438f203e131a7.woff2')format("woff");}.ff2_c01219{font-family:ff2_c01219;line-height:1.000000;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_c01219;src:url('chunks/assets/font_0ba49704a69382cd06ac8c2d.woff2')format("woff");}.ff3_c01219{font-family:ff3_c01219;line-height:0.697000;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_c01219{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_c01219{vertical-align:0.000000px;}
.v1_c01219{vertical-align:23.748000px;}
.ls2_c01219{letter-spacing:0.000000px;}
.ls0_c01219{letter-spacing:2.999580px;}
.ls1_c01219{letter-spacing:3.005580px;}
.sc__c01219{text-shadow:none;}
.sc0_c01219{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__c01219{-webkit-text-stroke:0px transparent;}
.sc0_c01219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01219{word-spacing:-0.071730px;}
.ws1a_c01219{word-spacing:0.000000px;}
.ws12_c01219{word-spacing:14.530788px;}
.wse_c01219{word-spacing:16.167138px;}
.ws18_c01219{word-spacing:16.821678px;}
.ws5_c01219{word-spacing:19.636200px;}
.ws6_c01219{word-spacing:19.701654px;}
.ws17_c01219{word-spacing:20.159832px;}
.wsd_c01219{word-spacing:21.207096px;}
.ws4_c01219{word-spacing:21.730728px;}
.ws7_c01219{word-spacing:21.796182px;}
.ws8_c01219{word-spacing:21.861636px;}
.ws9_c01219{word-spacing:21.927090px;}
.wsf_c01219{word-spacing:22.450722px;}
.ws10_c01219{word-spacing:22.712538px;}
.ws3_c01219{word-spacing:24.348888px;}
.wsa_c01219{word-spacing:24.610704px;}
.ws15_c01219{word-spacing:24.937974px;}
.wsb_c01219{word-spacing:25.003428px;}
.wsc_c01219{word-spacing:25.068882px;}
.ws13_c01219{word-spacing:26.181600px;}
.ws19_c01219{word-spacing:28.865214px;}
.ws16_c01219{word-spacing:29.127030px;}
.ws1_c01219{word-spacing:29.192484px;}
.ws2_c01219{word-spacing:29.257938px;}
.ws11_c01219{word-spacing:31.745190px;}
.ws14_c01219{word-spacing:32.334276px;}
._6_c01219{margin-left:-34.209666px;}
._0_c01219{margin-left:-32.769678px;}
._3_c01219{margin-left:-30.959742px;}
._5_c01219{margin-left:-25.461606px;}
._4_c01219{margin-left:-7.313322px;}
._7_c01219{margin-left:-3.670254px;}
._1_c01219{margin-left:-1.898166px;}
._2_c01219{width:1.548120px;}
.fc0_c01219{color:rgb(0,0,0);}
.fs2_c01219{font-size:47.820000px;}
.fs1_c01219{font-size:65.454000px;}
.fs0_c01219{font-size:71.730000px;}
.y0_c01219{bottom:0.000000px;}
.y21_c01219{bottom:87.238500px;}
.y20_c01219{bottom:112.459500px;}
.y1f_c01219{bottom:155.614500px;}
.y1e_c01219{bottom:180.835500px;}
.y1d_c01219{bottom:206.058000px;}
.y1c_c01219{bottom:231.280500px;}
.y1b_c01219{bottom:274.434000px;}
.y1a_c01219{bottom:299.656500px;}
.y19_c01219{bottom:324.877500px;}
.y18_c01219{bottom:350.100000px;}
.y17_c01219{bottom:393.253500px;}
.y16_c01219{bottom:418.476000px;}
.y15_c01219{bottom:461.631000px;}
.y14_c01219{bottom:504.784500px;}
.y13_c01219{bottom:530.007000px;}
.y12_c01219{bottom:555.228000px;}
.y11_c01219{bottom:580.450500px;}
.y10_c01219{bottom:623.604000px;}
.yf_c01219{bottom:648.826500px;}
.ye_c01219{bottom:674.047500px;}
.yd_c01219{bottom:742.425000px;}
.yc_c01219{bottom:767.646000px;}
.yb_c01219{bottom:792.868500px;}
.ya_c01219{bottom:836.022000px;}
.y9_c01219{bottom:861.244500px;}
.y8_c01219{bottom:886.465500px;}
.y7_c01219{bottom:911.688000px;}
.y6_c01219{bottom:954.841500px;}
.y5_c01219{bottom:980.064000px;}
.y4_c01219{bottom:1023.219000px;}
.y3_c01219{bottom:1048.440000px;}
.y2_c01219{bottom:1073.662500px;}
.y1_c01219{bottom:1140.615000px;}
.h4_c01219{height:49.090500px;}
.h2_c01219{height:53.797500px;}
.h3_c01219{height:56.074320px;}
.h5_c01219{height:56.080320px;}
.h1_c01219{height:1263.750000px;}
.h0_c01219{height:1264.110000px;}
.w0_c01219{width:893.869500px;}
.w1_c01219{width:894.000000px;}
.x0_c01219{left:0.000000px;}
.x3_c01219{left:127.558500px;}
.x2_c01219{left:159.838500px;}
.x1_c01219{left:739.972500px;}
@media print{
.v0_c01219{vertical-align:0.000000pt;}
.v1_c01219{vertical-align:21.109333pt;}
.ls2_c01219{letter-spacing:0.000000pt;}
.ls0_c01219{letter-spacing:2.666293pt;}
.ls1_c01219{letter-spacing:2.671627pt;}
.ws0_c01219{word-spacing:-0.063760pt;}
.ws1a_c01219{word-spacing:0.000000pt;}
.ws12_c01219{word-spacing:12.916256pt;}
.wse_c01219{word-spacing:14.370789pt;}
.ws18_c01219{word-spacing:14.952603pt;}
.ws5_c01219{word-spacing:17.454400pt;}
.ws6_c01219{word-spacing:17.512581pt;}
.ws17_c01219{word-spacing:17.919851pt;}
.wsd_c01219{word-spacing:18.850752pt;}
.ws4_c01219{word-spacing:19.316203pt;}
.ws7_c01219{word-spacing:19.374384pt;}
.ws8_c01219{word-spacing:19.432565pt;}
.ws9_c01219{word-spacing:19.490747pt;}
.wsf_c01219{word-spacing:19.956197pt;}
.ws10_c01219{word-spacing:20.188923pt;}
.ws3_c01219{word-spacing:21.643456pt;}
.wsa_c01219{word-spacing:21.876181pt;}
.ws15_c01219{word-spacing:22.167088pt;}
.wsb_c01219{word-spacing:22.225269pt;}
.wsc_c01219{word-spacing:22.283451pt;}
.ws13_c01219{word-spacing:23.272533pt;}
.ws19_c01219{word-spacing:25.657968pt;}
.ws16_c01219{word-spacing:25.890693pt;}
.ws1_c01219{word-spacing:25.948875pt;}
.ws2_c01219{word-spacing:26.007056pt;}
.ws11_c01219{word-spacing:28.217947pt;}
.ws14_c01219{word-spacing:28.741579pt;}
._6_c01219{margin-left:-30.408592pt;}
._0_c01219{margin-left:-29.128603pt;}
._3_c01219{margin-left:-27.519771pt;}
._5_c01219{margin-left:-22.632539pt;}
._4_c01219{margin-left:-6.500731pt;}
._7_c01219{margin-left:-3.262448pt;}
._1_c01219{margin-left:-1.687259pt;}
._2_c01219{width:1.376107pt;}
.fs2_c01219{font-size:42.506667pt;}
.fs1_c01219{font-size:58.181333pt;}
.fs0_c01219{font-size:63.760000pt;}
.y0_c01219{bottom:0.000000pt;}
.y21_c01219{bottom:77.545333pt;}
.y20_c01219{bottom:99.964000pt;}
.y1f_c01219{bottom:138.324000pt;}
.y1e_c01219{bottom:160.742667pt;}
.y1d_c01219{bottom:183.162667pt;}
.y1c_c01219{bottom:205.582667pt;}
.y1b_c01219{bottom:243.941333pt;}
.y1a_c01219{bottom:266.361333pt;}
.y19_c01219{bottom:288.780000pt;}
.y18_c01219{bottom:311.200000pt;}
.y17_c01219{bottom:349.558667pt;}
.y16_c01219{bottom:371.978667pt;}
.y15_c01219{bottom:410.338667pt;}
.y14_c01219{bottom:448.697333pt;}
.y13_c01219{bottom:471.117333pt;}
.y12_c01219{bottom:493.536000pt;}
.y11_c01219{bottom:515.956000pt;}
.y10_c01219{bottom:554.314667pt;}
.yf_c01219{bottom:576.734667pt;}
.ye_c01219{bottom:599.153333pt;}
.yd_c01219{bottom:659.933333pt;}
.yc_c01219{bottom:682.352000pt;}
.yb_c01219{bottom:704.772000pt;}
.ya_c01219{bottom:743.130667pt;}
.y9_c01219{bottom:765.550667pt;}
.y8_c01219{bottom:787.969333pt;}
.y7_c01219{bottom:810.389333pt;}
.y6_c01219{bottom:848.748000pt;}
.y5_c01219{bottom:871.168000pt;}
.y4_c01219{bottom:909.528000pt;}
.y3_c01219{bottom:931.946667pt;}
.y2_c01219{bottom:954.366667pt;}
.y1_c01219{bottom:1013.880000pt;}
.h4_c01219{height:43.636000pt;}
.h2_c01219{height:47.820000pt;}
.h3_c01219{height:49.843840pt;}
.h5_c01219{height:49.849173pt;}
.h1_c01219{height:1123.333333pt;}
.h0_c01219{height:1123.653333pt;}
.w0_c01219{width:794.550667pt;}
.w1_c01219{width:794.666667pt;}
.x0_c01219{left:0.000000pt;}
.x3_c01219{left:113.385333pt;}
.x2_c01219{left:142.078667pt;}
.x1_c01219{left:657.753333pt;}
}





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

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





.ff0_c01220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01220;src:url('chunks/assets/font_5ff7df196a01452cd6cf11b6.woff2')format("woff");}.ff1_c01220{font-family:ff1_c01220;line-height:1.001000;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_c01220;src:url('chunks/assets/font_82a739fca7639eeba268d8f7.woff2')format("woff");}.ff2_c01220{font-family:ff2_c01220;line-height:1.000000;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_c01220;src:url('chunks/assets/font_60cbafac70db3ef53bac4fab.woff2')format("woff");}.ff3_c01220{font-family:ff3_c01220;line-height:0.697000;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_c01220;src:url('chunks/assets/font_8e9797a2925876b5b09c8084.woff2')format("woff");}.ff4_c01220{font-family:ff4_c01220;line-height:1.000000;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_c01220;src:url('chunks/assets/font_0da071c4d8f8bdf7275a7859.woff2')format("woff");}.ff5_c01220{font-family:ff5_c01220;line-height:0.913000;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_c01220{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_c01220{vertical-align:0.000000px;}
.v1_c01220{vertical-align:23.748000px;}
.ls2_c01220{letter-spacing:0.000000px;}
.ls1_c01220{letter-spacing:2.999580px;}
.ls0_c01220{letter-spacing:3.005580px;}
.sc__c01220{text-shadow:none;}
.sc0_c01220{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__c01220{-webkit-text-stroke:0px transparent;}
.sc0_c01220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01220{word-spacing:-0.071730px;}
.wsa_c01220{word-spacing:-0.065454px;}
.ws1b_c01220{word-spacing:0.000000px;}
.ws14_c01220{word-spacing:15.054420px;}
.ws13_c01220{word-spacing:15.119874px;}
.ws3_c01220{word-spacing:18.458028px;}
.ws1_c01220{word-spacing:18.523482px;}
.ws2_c01220{word-spacing:18.588936px;}
.ws6_c01220{word-spacing:19.243476px;}
.ws12_c01220{word-spacing:20.028924px;}
.ws15_c01220{word-spacing:20.814372px;}
.ws8_c01220{word-spacing:21.730728px;}
.ws5_c01220{word-spacing:21.796182px;}
.ws16_c01220{word-spacing:22.647084px;}
.ws7_c01220{word-spacing:22.712538px;}
.wsc_c01220{word-spacing:23.236170px;}
.ws17_c01220{word-spacing:24.545250px;}
.ws4_c01220{word-spacing:24.610704px;}
.ws9_c01220{word-spacing:25.003428px;}
.wsb_c01220{word-spacing:25.068882px;}
.wsd_c01220{word-spacing:25.396152px;}
.ws1a_c01220{word-spacing:25.788876px;}
.ws11_c01220{word-spacing:25.919784px;}
.wsf_c01220{word-spacing:25.985238px;}
.ws18_c01220{word-spacing:27.556134px;}
.wse_c01220{word-spacing:27.687042px;}
.ws19_c01220{word-spacing:29.847024px;}
.ws10_c01220{word-spacing:30.239748px;}
._5_c01220{margin-left:-37.570596px;}
._7_c01220{margin-left:-34.232442px;}
._4_c01220{margin-left:-32.727000px;}
._8_c01220{margin-left:-30.697926px;}
._3_c01220{margin-left:-25.461606px;}
._2_c01220{margin-left:-7.265394px;}
._6_c01220{margin-left:-3.861786px;}
._1_c01220{margin-left:-1.898166px;}
._0_c01220{width:1.701804px;}
.fc0_c01220{color:rgb(0,0,0);}
.fs2_c01220{font-size:47.820000px;}
.fs1_c01220{font-size:65.454000px;}
.fs0_c01220{font-size:71.730000px;}
.y0_c01220{bottom:0.000000px;}
.y20_c01220{bottom:98.827500px;}
.y1f_c01220{bottom:124.048500px;}
.y1e_c01220{bottom:149.271000px;}
.y1d_c01220{bottom:192.426000px;}
.y1c_c01220{bottom:217.647000px;}
.y1b_c01220{bottom:242.869500px;}
.y1a_c01220{bottom:286.023000px;}
.y19_c01220{bottom:311.245500px;}
.y18_c01220{bottom:354.399000px;}
.y17_c01220{bottom:379.621500px;}
.y16_c01220{bottom:404.842500px;}
.y15_c01220{bottom:447.997500px;}
.y14_c01220{bottom:473.220000px;}
.y13_c01220{bottom:498.441000px;}
.y12_c01220{bottom:541.596000px;}
.y11_c01220{bottom:566.817000px;}
.y10_c01220{bottom:592.039500px;}
.yf_c01220{bottom:617.260500px;}
.ye_c01220{bottom:642.483000px;}
.yd_c01220{bottom:685.638000px;}
.yc_c01220{bottom:710.859000px;}
.yb_c01220{bottom:754.014000px;}
.ya_c01220{bottom:779.235000px;}
.y9_c01220{bottom:841.816500px;}
.y8_c01220{bottom:922.332000px;}
.y7_c01220{bottom:947.553000px;}
.y6_c01220{bottom:972.775500px;}
.y5_c01220{bottom:997.996500px;}
.y4_c01220{bottom:1023.219000px;}
.y3_c01220{bottom:1048.440000px;}
.y2_c01220{bottom:1073.662500px;}
.y1_c01220{bottom:1140.615000px;}
.h4_c01220{height:49.090500px;}
.h2_c01220{height:53.797500px;}
.h3_c01220{height:56.074320px;}
.h5_c01220{height:56.080320px;}
.h1_c01220{height:1263.750000px;}
.h0_c01220{height:1264.110000px;}
.w0_c01220{width:893.869500px;}
.w1_c01220{width:894.000000px;}
.x0_c01220{left:0.000000px;}
.x3_c01220{left:127.558500px;}
.x2_c01220{left:159.838500px;}
.x5_c01220{left:166.110000px;}
.x4_c01220{left:437.526000px;}
.x1_c01220{left:739.972500px;}
@media print{
.v0_c01220{vertical-align:0.000000pt;}
.v1_c01220{vertical-align:21.109333pt;}
.ls2_c01220{letter-spacing:0.000000pt;}
.ls1_c01220{letter-spacing:2.666293pt;}
.ls0_c01220{letter-spacing:2.671627pt;}
.ws0_c01220{word-spacing:-0.063760pt;}
.wsa_c01220{word-spacing:-0.058181pt;}
.ws1b_c01220{word-spacing:0.000000pt;}
.ws14_c01220{word-spacing:13.381707pt;}
.ws13_c01220{word-spacing:13.439888pt;}
.ws3_c01220{word-spacing:16.407136pt;}
.ws1_c01220{word-spacing:16.465317pt;}
.ws2_c01220{word-spacing:16.523499pt;}
.ws6_c01220{word-spacing:17.105312pt;}
.ws12_c01220{word-spacing:17.803488pt;}
.ws15_c01220{word-spacing:18.501664pt;}
.ws8_c01220{word-spacing:19.316203pt;}
.ws5_c01220{word-spacing:19.374384pt;}
.ws16_c01220{word-spacing:20.130741pt;}
.ws7_c01220{word-spacing:20.188923pt;}
.wsc_c01220{word-spacing:20.654373pt;}
.ws17_c01220{word-spacing:21.818000pt;}
.ws4_c01220{word-spacing:21.876181pt;}
.ws9_c01220{word-spacing:22.225269pt;}
.wsb_c01220{word-spacing:22.283451pt;}
.wsd_c01220{word-spacing:22.574357pt;}
.ws1a_c01220{word-spacing:22.923445pt;}
.ws11_c01220{word-spacing:23.039808pt;}
.wsf_c01220{word-spacing:23.097989pt;}
.ws18_c01220{word-spacing:24.494341pt;}
.wse_c01220{word-spacing:24.610704pt;}
.ws19_c01220{word-spacing:26.530688pt;}
.ws10_c01220{word-spacing:26.879776pt;}
._5_c01220{margin-left:-33.396085pt;}
._7_c01220{margin-left:-30.428837pt;}
._4_c01220{margin-left:-29.090667pt;}
._8_c01220{margin-left:-27.287045pt;}
._3_c01220{margin-left:-22.632539pt;}
._2_c01220{margin-left:-6.458128pt;}
._6_c01220{margin-left:-3.432699pt;}
._1_c01220{margin-left:-1.687259pt;}
._0_c01220{width:1.512715pt;}
.fs2_c01220{font-size:42.506667pt;}
.fs1_c01220{font-size:58.181333pt;}
.fs0_c01220{font-size:63.760000pt;}
.y0_c01220{bottom:0.000000pt;}
.y20_c01220{bottom:87.846667pt;}
.y1f_c01220{bottom:110.265333pt;}
.y1e_c01220{bottom:132.685333pt;}
.y1d_c01220{bottom:171.045333pt;}
.y1c_c01220{bottom:193.464000pt;}
.y1b_c01220{bottom:215.884000pt;}
.y1a_c01220{bottom:254.242667pt;}
.y19_c01220{bottom:276.662667pt;}
.y18_c01220{bottom:315.021333pt;}
.y17_c01220{bottom:337.441333pt;}
.y16_c01220{bottom:359.860000pt;}
.y15_c01220{bottom:398.220000pt;}
.y14_c01220{bottom:420.640000pt;}
.y13_c01220{bottom:443.058667pt;}
.y12_c01220{bottom:481.418667pt;}
.y11_c01220{bottom:503.837333pt;}
.y10_c01220{bottom:526.257333pt;}
.yf_c01220{bottom:548.676000pt;}
.ye_c01220{bottom:571.096000pt;}
.yd_c01220{bottom:609.456000pt;}
.yc_c01220{bottom:631.874667pt;}
.yb_c01220{bottom:670.234667pt;}
.ya_c01220{bottom:692.653333pt;}
.y9_c01220{bottom:748.281333pt;}
.y8_c01220{bottom:819.850667pt;}
.y7_c01220{bottom:842.269333pt;}
.y6_c01220{bottom:864.689333pt;}
.y5_c01220{bottom:887.108000pt;}
.y4_c01220{bottom:909.528000pt;}
.y3_c01220{bottom:931.946667pt;}
.y2_c01220{bottom:954.366667pt;}
.y1_c01220{bottom:1013.880000pt;}
.h4_c01220{height:43.636000pt;}
.h2_c01220{height:47.820000pt;}
.h3_c01220{height:49.843840pt;}
.h5_c01220{height:49.849173pt;}
.h1_c01220{height:1123.333333pt;}
.h0_c01220{height:1123.653333pt;}
.w0_c01220{width:794.550667pt;}
.w1_c01220{width:794.666667pt;}
.x0_c01220{left:0.000000pt;}
.x3_c01220{left:113.385333pt;}
.x2_c01220{left:142.078667pt;}
.x5_c01220{left:147.653333pt;}
.x4_c01220{left:388.912000pt;}
.x1_c01220{left:657.753333pt;}
}





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

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





.ff0_c01221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01221;src:url('chunks/assets/font_0160c40d5772315fe0478105.woff2')format("woff");}.ff1_c01221{font-family:ff1_c01221;line-height:1.001000;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_c01221;src:url('chunks/assets/font_b6bbc506cc247f51419f3e30.woff2')format("woff");}.ff2_c01221{font-family:ff2_c01221;line-height:1.000000;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_c01221;src:url('chunks/assets/font_60cbafac70db3ef53bac4fab.woff2')format("woff");}.ff3_c01221{font-family:ff3_c01221;line-height:0.697000;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_c01221;src:url('chunks/assets/font_bd0799ad9c253be68779d946.woff2')format("woff");}.ff4_c01221{font-family:ff4_c01221;line-height:1.000000;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_c01221{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_c01221{vertical-align:0.000000px;}
.v1_c01221{vertical-align:23.748000px;}
.ls1_c01221{letter-spacing:0.000000px;}
.ls0_c01221{letter-spacing:2.999580px;}
.sc__c01221{text-shadow:none;}
.sc0_c01221{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__c01221{-webkit-text-stroke:0px transparent;}
.sc0_c01221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01221{word-spacing:-0.071730px;}
.ws2_c01221{word-spacing:-0.065454px;}
.ws19_c01221{word-spacing:0.000000px;}
.ws18_c01221{word-spacing:14.465334px;}
.wsa_c01221{word-spacing:14.792604px;}
.ws8_c01221{word-spacing:16.101684px;}
.wsb_c01221{word-spacing:19.570746px;}
.ws13_c01221{word-spacing:19.898016px;}
.ws14_c01221{word-spacing:19.963470px;}
.ws7_c01221{word-spacing:20.356194px;}
.wsd_c01221{word-spacing:20.618010px;}
.wsc_c01221{word-spacing:21.207096px;}
.ws5_c01221{word-spacing:21.730728px;}
.ws9_c01221{word-spacing:21.796182px;}
.ws16_c01221{word-spacing:22.123452px;}
.ws15_c01221{word-spacing:23.236170px;}
.ws4_c01221{word-spacing:24.283434px;}
.ws3_c01221{word-spacing:24.348888px;}
.ws6_c01221{word-spacing:25.003428px;}
.ws17_c01221{word-spacing:25.788876px;}
.ws10_c01221{word-spacing:25.985238px;}
.ws11_c01221{word-spacing:26.770686px;}
.ws12_c01221{word-spacing:27.621588px;}
.wse_c01221{word-spacing:29.650662px;}
.ws1_c01221{word-spacing:31.025196px;}
.wsf_c01221{word-spacing:32.334276px;}
._6_c01221{margin-left:-39.100344px;}
._5_c01221{margin-left:-37.202178px;}
._a_c01221{margin-left:-34.518642px;}
._3_c01221{margin-left:-32.489490px;}
._9_c01221{margin-left:-30.460416px;}
._1_c01221{margin-left:-25.396152px;}
._0_c01221{margin-left:-7.330848px;}
._8_c01221{margin-left:-5.449602px;}
._b_c01221{margin-left:-3.755184px;}
._4_c01221{margin-left:-2.249664px;}
._7_c01221{margin-left:-1.178328px;}
._2_c01221{width:1.726110px;}
._c_c01221{width:25.771956px;}
.fc0_c01221{color:rgb(0,0,0);}
.fs2_c01221{font-size:47.820000px;}
.fs1_c01221{font-size:65.454000px;}
.fs0_c01221{font-size:71.730000px;}
.y0_c01221{bottom:0.000000px;}
.y20_c01221{bottom:80.895000px;}
.y1f_c01221{bottom:106.116000px;}
.y1e_c01221{bottom:131.338500px;}
.y1d_c01221{bottom:174.492000px;}
.y1c_c01221{bottom:199.714500px;}
.y1b_c01221{bottom:224.935500px;}
.y1a_c01221{bottom:250.158000px;}
.y19_c01221{bottom:293.313000px;}
.y18_c01221{bottom:318.534000px;}
.y17_c01221{bottom:361.689000px;}
.y16_c01221{bottom:386.910000px;}
.y15_c01221{bottom:412.132500px;}
.y14_c01221{bottom:437.353500px;}
.y13_c01221{bottom:462.576000px;}
.y12_c01221{bottom:487.797000px;}
.y11_c01221{bottom:530.952000px;}
.y10_c01221{bottom:556.173000px;}
.yf_c01221{bottom:581.395500px;}
.ye_c01221{bottom:624.550500px;}
.yd_c01221{bottom:649.771500px;}
.yc_c01221{bottom:692.926500px;}
.yb_c01221{bottom:718.147500px;}
.ya_c01221{bottom:743.370000px;}
.y9_c01221{bottom:768.591000px;}
.y8_c01221{bottom:811.746000px;}
.y7_c01221{bottom:836.968500px;}
.y6_c01221{bottom:899.550000px;}
.y5_c01221{bottom:980.064000px;}
.y4_c01221{bottom:1005.285000px;}
.y3_c01221{bottom:1048.440000px;}
.y2_c01221{bottom:1073.662500px;}
.y1_c01221{bottom:1140.615000px;}
.h4_c01221{height:49.090500px;}
.h2_c01221{height:53.797500px;}
.h3_c01221{height:56.074320px;}
.h5_c01221{height:56.080320px;}
.h1_c01221{height:1263.750000px;}
.h0_c01221{height:1264.110000px;}
.w0_c01221{width:893.869500px;}
.w1_c01221{width:894.000000px;}
.x0_c01221{left:0.000000px;}
.x3_c01221{left:127.558500px;}
.x2_c01221{left:159.838500px;}
.x4_c01221{left:437.526000px;}
.x1_c01221{left:739.972500px;}
@media print{
.v0_c01221{vertical-align:0.000000pt;}
.v1_c01221{vertical-align:21.109333pt;}
.ls1_c01221{letter-spacing:0.000000pt;}
.ls0_c01221{letter-spacing:2.666293pt;}
.ws0_c01221{word-spacing:-0.063760pt;}
.ws2_c01221{word-spacing:-0.058181pt;}
.ws19_c01221{word-spacing:0.000000pt;}
.ws18_c01221{word-spacing:12.858075pt;}
.wsa_c01221{word-spacing:13.148981pt;}
.ws8_c01221{word-spacing:14.312608pt;}
.wsb_c01221{word-spacing:17.396219pt;}
.ws13_c01221{word-spacing:17.687125pt;}
.ws14_c01221{word-spacing:17.745307pt;}
.ws7_c01221{word-spacing:18.094395pt;}
.wsd_c01221{word-spacing:18.327120pt;}
.wsc_c01221{word-spacing:18.850752pt;}
.ws5_c01221{word-spacing:19.316203pt;}
.ws9_c01221{word-spacing:19.374384pt;}
.ws16_c01221{word-spacing:19.665291pt;}
.ws15_c01221{word-spacing:20.654373pt;}
.ws4_c01221{word-spacing:21.585275pt;}
.ws3_c01221{word-spacing:21.643456pt;}
.ws6_c01221{word-spacing:22.225269pt;}
.ws17_c01221{word-spacing:22.923445pt;}
.ws10_c01221{word-spacing:23.097989pt;}
.ws11_c01221{word-spacing:23.796165pt;}
.ws12_c01221{word-spacing:24.552523pt;}
.wse_c01221{word-spacing:26.356144pt;}
.ws1_c01221{word-spacing:27.577952pt;}
.wsf_c01221{word-spacing:28.741579pt;}
._6_c01221{margin-left:-34.755861pt;}
._5_c01221{margin-left:-33.068603pt;}
._a_c01221{margin-left:-30.683237pt;}
._3_c01221{margin-left:-28.879547pt;}
._9_c01221{margin-left:-27.075925pt;}
._1_c01221{margin-left:-22.574357pt;}
._0_c01221{margin-left:-6.516309pt;}
._8_c01221{margin-left:-4.844091pt;}
._b_c01221{margin-left:-3.337941pt;}
._4_c01221{margin-left:-1.999701pt;}
._7_c01221{margin-left:-1.047403pt;}
._2_c01221{width:1.534320pt;}
._c_c01221{width:22.908405pt;}
.fs2_c01221{font-size:42.506667pt;}
.fs1_c01221{font-size:58.181333pt;}
.fs0_c01221{font-size:63.760000pt;}
.y0_c01221{bottom:0.000000pt;}
.y20_c01221{bottom:71.906667pt;}
.y1f_c01221{bottom:94.325333pt;}
.y1e_c01221{bottom:116.745333pt;}
.y1d_c01221{bottom:155.104000pt;}
.y1c_c01221{bottom:177.524000pt;}
.y1b_c01221{bottom:199.942667pt;}
.y1a_c01221{bottom:222.362667pt;}
.y19_c01221{bottom:260.722667pt;}
.y18_c01221{bottom:283.141333pt;}
.y17_c01221{bottom:321.501333pt;}
.y16_c01221{bottom:343.920000pt;}
.y15_c01221{bottom:366.340000pt;}
.y14_c01221{bottom:388.758667pt;}
.y13_c01221{bottom:411.178667pt;}
.y12_c01221{bottom:433.597333pt;}
.y11_c01221{bottom:471.957333pt;}
.y10_c01221{bottom:494.376000pt;}
.yf_c01221{bottom:516.796000pt;}
.ye_c01221{bottom:555.156000pt;}
.yd_c01221{bottom:577.574667pt;}
.yc_c01221{bottom:615.934667pt;}
.yb_c01221{bottom:638.353333pt;}
.ya_c01221{bottom:660.773333pt;}
.y9_c01221{bottom:683.192000pt;}
.y8_c01221{bottom:721.552000pt;}
.y7_c01221{bottom:743.972000pt;}
.y6_c01221{bottom:799.600000pt;}
.y5_c01221{bottom:871.168000pt;}
.y4_c01221{bottom:893.586667pt;}
.y3_c01221{bottom:931.946667pt;}
.y2_c01221{bottom:954.366667pt;}
.y1_c01221{bottom:1013.880000pt;}
.h4_c01221{height:43.636000pt;}
.h2_c01221{height:47.820000pt;}
.h3_c01221{height:49.843840pt;}
.h5_c01221{height:49.849173pt;}
.h1_c01221{height:1123.333333pt;}
.h0_c01221{height:1123.653333pt;}
.w0_c01221{width:794.550667pt;}
.w1_c01221{width:794.666667pt;}
.x0_c01221{left:0.000000pt;}
.x3_c01221{left:113.385333pt;}
.x2_c01221{left:142.078667pt;}
.x4_c01221{left:388.912000pt;}
.x1_c01221{left:657.753333pt;}
}





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

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





.ff0_c01222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01222;src:url('chunks/assets/font_cca6602aa5ad02cab1bc8712.woff2')format("woff");}.ff1_c01222{font-family:ff1_c01222;line-height:1.001000;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_c01222;src:url('chunks/assets/font_3d36617889985c9fc33cfef9.woff2')format("woff");}.ff2_c01222{font-family:ff2_c01222;line-height:1.000000;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_c01222;src:url('chunks/assets/font_b36167802cd640cb26d3f490.woff2')format("woff");}.ff3_c01222{font-family:ff3_c01222;line-height:0.697000;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_c01222;src:url('chunks/assets/font_a770f613fdbbcdf201047446.woff2')format("woff");}.ff4_c01222{font-family:ff4_c01222;line-height:1.000000;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_c01222;src:url('chunks/assets/font_bd5301917a1905aeb83e3776.woff2')format("woff");}.ff5_c01222{font-family:ff5_c01222;line-height:0.913000;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_c01222{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_c01222{vertical-align:0.000000px;}
.v2_c01222{vertical-align:16.542000px;}
.v1_c01222{vertical-align:23.748000px;}
.ls2_c01222{letter-spacing:0.000000px;}
.ls1_c01222{letter-spacing:2.999580px;}
.ls0_c01222{letter-spacing:3.005580px;}
.sc__c01222{text-shadow:none;}
.sc0_c01222{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__c01222{-webkit-text-stroke:0px transparent;}
.sc0_c01222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01222{word-spacing:-0.071730px;}
.ws3_c01222{word-spacing:-0.065454px;}
.ws18_c01222{word-spacing:0.000000px;}
.ws9_c01222{word-spacing:14.465334px;}
.ws16_c01222{word-spacing:17.738034px;}
.ws14_c01222{word-spacing:18.327120px;}
.ws17_c01222{word-spacing:19.178022px;}
.ws5_c01222{word-spacing:20.748918px;}
.ws6_c01222{word-spacing:21.730728px;}
.wse_c01222{word-spacing:21.927090px;}
.ws7_c01222{word-spacing:22.581630px;}
.wsa_c01222{word-spacing:23.301624px;}
.ws15_c01222{word-spacing:23.497986px;}
.wsf_c01222{word-spacing:24.807066px;}
.ws4_c01222{word-spacing:24.937974px;}
.wsb_c01222{word-spacing:25.003428px;}
.wsd_c01222{word-spacing:25.068882px;}
.ws2_c01222{word-spacing:25.788876px;}
.ws13_c01222{word-spacing:26.574324px;}
.wsc_c01222{word-spacing:27.032502px;}
.ws12_c01222{word-spacing:27.359772px;}
.ws8_c01222{word-spacing:28.472490px;}
.ws11_c01222{word-spacing:28.930668px;}
.ws10_c01222{word-spacing:29.061576px;}
.ws1_c01222{word-spacing:29.847024px;}
._7_c01222{margin-left:-38.572884px;}
._5_c01222{margin-left:-34.670142px;}
._4_c01222{margin-left:-32.792454px;}
._a_c01222{margin-left:-30.518022px;}
._1_c01222{margin-left:-25.396152px;}
._0_c01222{margin-left:-7.330848px;}
._8_c01222{margin-left:-5.146368px;}
._6_c01222{margin-left:-3.861786px;}
._2_c01222{margin-left:-1.943142px;}
._3_c01222{width:1.943142px;}
._9_c01222{width:36.584904px;}
.fc0_c01222{color:rgb(0,0,0);}
.fs2_c01222{font-size:47.820000px;}
.fs1_c01222{font-size:65.454000px;}
.fs0_c01222{font-size:71.730000px;}
.y0_c01222{bottom:0.000000px;}
.y22_c01222{bottom:71.973000px;}
.y21_c01222{bottom:97.194000px;}
.y20_c01222{bottom:122.416500px;}
.y1f_c01222{bottom:165.135000px;}
.y1e_c01222{bottom:190.357500px;}
.y1d_c01222{bottom:215.578500px;}
.y1c_c01222{bottom:240.801000px;}
.y1b_c01222{bottom:266.022000px;}
.y1a_c01222{bottom:291.244500px;}
.y19_c01222{bottom:316.465500px;}
.y18_c01222{bottom:359.185500px;}
.y17_c01222{bottom:384.408000px;}
.y16_c01222{bottom:409.629000px;}
.y15_c01222{bottom:434.851500px;}
.y14_c01222{bottom:460.072500px;}
.y13_c01222{bottom:485.295000px;}
.y12_c01222{bottom:510.516000px;}
.y11_c01222{bottom:535.738500px;}
.y10_c01222{bottom:578.457000px;}
.yf_c01222{bottom:603.679500px;}
.ye_c01222{bottom:664.956000px;}
.yd_c01222{bottom:743.730000px;}
.yc_c01222{bottom:768.951000px;}
.yb_c01222{bottom:794.173500px;}
.ya_c01222{bottom:836.892000px;}
.y9_c01222{bottom:862.114500px;}
.y8_c01222{bottom:887.335500px;}
.y7_c01222{bottom:930.055500px;}
.y6_c01222{bottom:955.278000px;}
.y5_c01222{bottom:980.499000px;}
.y4_c01222{bottom:1023.219000px;}
.y3_c01222{bottom:1048.440000px;}
.y2_c01222{bottom:1073.662500px;}
.y1_c01222{bottom:1140.615000px;}
.h4_c01222{height:49.090500px;}
.h2_c01222{height:53.797500px;}
.h3_c01222{height:56.074320px;}
.h5_c01222{height:56.080320px;}
.h6_c01222{height:65.632500px;}
.h1_c01222{height:1263.750000px;}
.h0_c01222{height:1264.110000px;}
.w0_c01222{width:893.869500px;}
.w1_c01222{width:894.000000px;}
.x0_c01222{left:0.000000px;}
.x3_c01222{left:127.558500px;}
.x2_c01222{left:159.838500px;}
.x5_c01222{left:166.110000px;}
.x4_c01222{left:437.526000px;}
.x6_c01222{left:448.033500px;}
.x1_c01222{left:739.972500px;}
@media print{
.v0_c01222{vertical-align:0.000000pt;}
.v2_c01222{vertical-align:14.704000pt;}
.v1_c01222{vertical-align:21.109333pt;}
.ls2_c01222{letter-spacing:0.000000pt;}
.ls1_c01222{letter-spacing:2.666293pt;}
.ls0_c01222{letter-spacing:2.671627pt;}
.ws0_c01222{word-spacing:-0.063760pt;}
.ws3_c01222{word-spacing:-0.058181pt;}
.ws18_c01222{word-spacing:0.000000pt;}
.ws9_c01222{word-spacing:12.858075pt;}
.ws16_c01222{word-spacing:15.767141pt;}
.ws14_c01222{word-spacing:16.290773pt;}
.ws17_c01222{word-spacing:17.047131pt;}
.ws5_c01222{word-spacing:18.443483pt;}
.ws6_c01222{word-spacing:19.316203pt;}
.wse_c01222{word-spacing:19.490747pt;}
.ws7_c01222{word-spacing:20.072560pt;}
.wsa_c01222{word-spacing:20.712555pt;}
.ws15_c01222{word-spacing:20.887099pt;}
.wsf_c01222{word-spacing:22.050725pt;}
.ws4_c01222{word-spacing:22.167088pt;}
.wsb_c01222{word-spacing:22.225269pt;}
.wsd_c01222{word-spacing:22.283451pt;}
.ws2_c01222{word-spacing:22.923445pt;}
.ws13_c01222{word-spacing:23.621621pt;}
.wsc_c01222{word-spacing:24.028891pt;}
.ws12_c01222{word-spacing:24.319797pt;}
.ws8_c01222{word-spacing:25.308880pt;}
.ws11_c01222{word-spacing:25.716149pt;}
.ws10_c01222{word-spacing:25.832512pt;}
.ws1_c01222{word-spacing:26.530688pt;}
._7_c01222{margin-left:-34.287008pt;}
._5_c01222{margin-left:-30.817904pt;}
._4_c01222{margin-left:-29.148848pt;}
._a_c01222{margin-left:-27.127131pt;}
._1_c01222{margin-left:-22.574357pt;}
._0_c01222{margin-left:-6.516309pt;}
._8_c01222{margin-left:-4.574549pt;}
._6_c01222{margin-left:-3.432699pt;}
._2_c01222{margin-left:-1.727237pt;}
._3_c01222{width:1.727237pt;}
._9_c01222{width:32.519915pt;}
.fs2_c01222{font-size:42.506667pt;}
.fs1_c01222{font-size:58.181333pt;}
.fs0_c01222{font-size:63.760000pt;}
.y0_c01222{bottom:0.000000pt;}
.y22_c01222{bottom:63.976000pt;}
.y21_c01222{bottom:86.394667pt;}
.y20_c01222{bottom:108.814667pt;}
.y1f_c01222{bottom:146.786667pt;}
.y1e_c01222{bottom:169.206667pt;}
.y1d_c01222{bottom:191.625333pt;}
.y1c_c01222{bottom:214.045333pt;}
.y1b_c01222{bottom:236.464000pt;}
.y1a_c01222{bottom:258.884000pt;}
.y19_c01222{bottom:281.302667pt;}
.y18_c01222{bottom:319.276000pt;}
.y17_c01222{bottom:341.696000pt;}
.y16_c01222{bottom:364.114667pt;}
.y15_c01222{bottom:386.534667pt;}
.y14_c01222{bottom:408.953333pt;}
.y13_c01222{bottom:431.373333pt;}
.y12_c01222{bottom:453.792000pt;}
.y11_c01222{bottom:476.212000pt;}
.y10_c01222{bottom:514.184000pt;}
.yf_c01222{bottom:536.604000pt;}
.ye_c01222{bottom:591.072000pt;}
.yd_c01222{bottom:661.093333pt;}
.yc_c01222{bottom:683.512000pt;}
.yb_c01222{bottom:705.932000pt;}
.ya_c01222{bottom:743.904000pt;}
.y9_c01222{bottom:766.324000pt;}
.y8_c01222{bottom:788.742667pt;}
.y7_c01222{bottom:826.716000pt;}
.y6_c01222{bottom:849.136000pt;}
.y5_c01222{bottom:871.554667pt;}
.y4_c01222{bottom:909.528000pt;}
.y3_c01222{bottom:931.946667pt;}
.y2_c01222{bottom:954.366667pt;}
.y1_c01222{bottom:1013.880000pt;}
.h4_c01222{height:43.636000pt;}
.h2_c01222{height:47.820000pt;}
.h3_c01222{height:49.843840pt;}
.h5_c01222{height:49.849173pt;}
.h6_c01222{height:58.340000pt;}
.h1_c01222{height:1123.333333pt;}
.h0_c01222{height:1123.653333pt;}
.w0_c01222{width:794.550667pt;}
.w1_c01222{width:794.666667pt;}
.x0_c01222{left:0.000000pt;}
.x3_c01222{left:113.385333pt;}
.x2_c01222{left:142.078667pt;}
.x5_c01222{left:147.653333pt;}
.x4_c01222{left:388.912000pt;}
.x6_c01222{left:398.252000pt;}
.x1_c01222{left:657.753333pt;}
}





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

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





.ff0_c01223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01223;src:url('chunks/assets/font_9e88e860a3655266f1f50a9b.woff2')format("woff");}.ff1_c01223{font-family:ff1_c01223;line-height:1.001000;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_c01223;src:url('chunks/assets/font_ea57a2e6f9a9e4bf5436488a.woff2')format("woff");}.ff2_c01223{font-family:ff2_c01223;line-height:1.000000;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_c01223;src:url('chunks/assets/font_220d42140253939576c077fa.woff2')format("woff");}.ff3_c01223{font-family:ff3_c01223;line-height:1.000000;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_c01223;src:url('chunks/assets/font_3fbb453030025067fbb23f60.woff2')format("woff");}.ff4_c01223{font-family:ff4_c01223;line-height:0.697000;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_c01223{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_c01223{vertical-align:0.000000px;}
.v1_c01223{vertical-align:23.754000px;}
.ls1_c01223{letter-spacing:0.000000px;}
.ls0_c01223{letter-spacing:3.005580px;}
.sc__c01223{text-shadow:none;}
.sc0_c01223{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__c01223{-webkit-text-stroke:0px transparent;}
.sc0_c01223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01223{word-spacing:-0.071730px;}
.ws6_c01223{word-spacing:-0.065454px;}
.ws16_c01223{word-spacing:0.000000px;}
.ws2_c01223{word-spacing:17.672580px;}
.wsb_c01223{word-spacing:17.738034px;}
.ws8_c01223{word-spacing:17.803488px;}
.ws10_c01223{word-spacing:18.916206px;}
.ws9_c01223{word-spacing:19.767108px;}
.wsa_c01223{word-spacing:20.683464px;}
.ws3_c01223{word-spacing:21.403458px;}
.ws4_c01223{word-spacing:21.730728px;}
.ws1_c01223{word-spacing:21.796182px;}
.ws14_c01223{word-spacing:21.992544px;}
.wsf_c01223{word-spacing:23.236170px;}
.wsd_c01223{word-spacing:25.003428px;}
.wse_c01223{word-spacing:25.068882px;}
.ws11_c01223{word-spacing:25.723422px;}
.wsc_c01223{word-spacing:25.919784px;}
.ws12_c01223{word-spacing:26.050692px;}
.ws13_c01223{word-spacing:27.621588px;}
.ws7_c01223{word-spacing:28.603398px;}
.ws5_c01223{word-spacing:31.090650px;}
.ws15_c01223{word-spacing:31.614282px;}
._c_c01223{margin-left:-39.665124px;}
._b_c01223{margin-left:-37.374234px;}
._6_c01223{margin-left:-34.494258px;}
._2_c01223{margin-left:-33.250632px;}
._1_c01223{margin-left:-32.007006px;}
._9_c01223{margin-left:-30.567018px;}
._4_c01223{margin-left:-25.461606px;}
._3_c01223{margin-left:-7.199940px;}
._e_c01223{margin-left:-4.581780px;}
._a_c01223{margin-left:-3.338154px;}
._0_c01223{margin-left:-2.159982px;}
._8_c01223{margin-left:-1.047264px;}
._5_c01223{width:1.963620px;}
._d_c01223{width:3.531516px;}
._10_c01223{width:21.796182px;}
._7_c01223{width:22.843446px;}
._f_c01223{width:27.163410px;}
.fc0_c01223{color:rgb(0,0,0);}
.fs2_c01223{font-size:47.820000px;}
.fs1_c01223{font-size:65.454000px;}
.fs0_c01223{font-size:71.730000px;}
.y0_c01223{bottom:0.000000px;}
.y23_c01223{bottom:76.960500px;}
.y22_c01223{bottom:102.181500px;}
.y21_c01223{bottom:127.404000px;}
.y20_c01223{bottom:170.559000px;}
.y1f_c01223{bottom:195.780000px;}
.y1e_c01223{bottom:221.002500px;}
.y1d_c01223{bottom:246.223500px;}
.y1c_c01223{bottom:271.446000px;}
.y1b_c01223{bottom:296.667000px;}
.y1a_c01223{bottom:339.822000px;}
.y19_c01223{bottom:365.043000px;}
.y18_c01223{bottom:390.265500px;}
.y17_c01223{bottom:433.419000px;}
.y16_c01223{bottom:476.574000px;}
.y15_c01223{bottom:501.796500px;}
.y14_c01223{bottom:564.378000px;}
.y13_c01223{bottom:644.892000px;}
.y12_c01223{bottom:670.114500px;}
.y11_c01223{bottom:695.335500px;}
.y10_c01223{bottom:720.558000px;}
.yf_c01223{bottom:745.779000px;}
.ye_c01223{bottom:771.001500px;}
.yd_c01223{bottom:796.222500px;}
.yc_c01223{bottom:821.445000px;}
.yb_c01223{bottom:846.666000px;}
.ya_c01223{bottom:871.888500px;}
.y9_c01223{bottom:897.109500px;}
.y8_c01223{bottom:922.332000px;}
.y7_c01223{bottom:947.553000px;}
.y6_c01223{bottom:972.775500px;}
.y5_c01223{bottom:997.996500px;}
.y4_c01223{bottom:1023.219000px;}
.y3_c01223{bottom:1048.440000px;}
.y2_c01223{bottom:1073.662500px;}
.y1_c01223{bottom:1140.615000px;}
.h3_c01223{height:49.090500px;}
.h2_c01223{height:53.797500px;}
.h4_c01223{height:56.080320px;}
.h1_c01223{height:1263.750000px;}
.h0_c01223{height:1264.110000px;}
.w0_c01223{width:893.869500px;}
.w1_c01223{width:894.000000px;}
.x0_c01223{left:0.000000px;}
.x3_c01223{left:127.558500px;}
.x2_c01223{left:159.838500px;}
.x4_c01223{left:437.526000px;}
.x1_c01223{left:739.972500px;}
@media print{
.v0_c01223{vertical-align:0.000000pt;}
.v1_c01223{vertical-align:21.114667pt;}
.ls1_c01223{letter-spacing:0.000000pt;}
.ls0_c01223{letter-spacing:2.671627pt;}
.ws0_c01223{word-spacing:-0.063760pt;}
.ws6_c01223{word-spacing:-0.058181pt;}
.ws16_c01223{word-spacing:0.000000pt;}
.ws2_c01223{word-spacing:15.708960pt;}
.wsb_c01223{word-spacing:15.767141pt;}
.ws8_c01223{word-spacing:15.825323pt;}
.ws10_c01223{word-spacing:16.814405pt;}
.ws9_c01223{word-spacing:17.570763pt;}
.wsa_c01223{word-spacing:18.385301pt;}
.ws3_c01223{word-spacing:19.025296pt;}
.ws4_c01223{word-spacing:19.316203pt;}
.ws1_c01223{word-spacing:19.374384pt;}
.ws14_c01223{word-spacing:19.548928pt;}
.wsf_c01223{word-spacing:20.654373pt;}
.wsd_c01223{word-spacing:22.225269pt;}
.wse_c01223{word-spacing:22.283451pt;}
.ws11_c01223{word-spacing:22.865264pt;}
.wsc_c01223{word-spacing:23.039808pt;}
.ws12_c01223{word-spacing:23.156171pt;}
.ws13_c01223{word-spacing:24.552523pt;}
.ws7_c01223{word-spacing:25.425243pt;}
.ws5_c01223{word-spacing:27.636133pt;}
.ws15_c01223{word-spacing:28.101584pt;}
._c_c01223{margin-left:-35.257888pt;}
._b_c01223{margin-left:-33.221541pt;}
._6_c01223{margin-left:-30.661563pt;}
._2_c01223{margin-left:-29.556117pt;}
._1_c01223{margin-left:-28.450672pt;}
._9_c01223{margin-left:-27.170683pt;}
._4_c01223{margin-left:-22.632539pt;}
._3_c01223{margin-left:-6.399947pt;}
._e_c01223{margin-left:-4.072693pt;}
._a_c01223{margin-left:-2.967248pt;}
._0_c01223{margin-left:-1.919984pt;}
._8_c01223{margin-left:-0.930901pt;}
._5_c01223{width:1.745440pt;}
._d_c01223{width:3.139125pt;}
._10_c01223{width:19.374384pt;}
._7_c01223{width:20.305285pt;}
._f_c01223{width:24.145253pt;}
.fs2_c01223{font-size:42.506667pt;}
.fs1_c01223{font-size:58.181333pt;}
.fs0_c01223{font-size:63.760000pt;}
.y0_c01223{bottom:0.000000pt;}
.y23_c01223{bottom:68.409333pt;}
.y22_c01223{bottom:90.828000pt;}
.y21_c01223{bottom:113.248000pt;}
.y20_c01223{bottom:151.608000pt;}
.y1f_c01223{bottom:174.026667pt;}
.y1e_c01223{bottom:196.446667pt;}
.y1d_c01223{bottom:218.865333pt;}
.y1c_c01223{bottom:241.285333pt;}
.y1b_c01223{bottom:263.704000pt;}
.y1a_c01223{bottom:302.064000pt;}
.y19_c01223{bottom:324.482667pt;}
.y18_c01223{bottom:346.902667pt;}
.y17_c01223{bottom:385.261333pt;}
.y16_c01223{bottom:423.621333pt;}
.y15_c01223{bottom:446.041333pt;}
.y14_c01223{bottom:501.669333pt;}
.y13_c01223{bottom:573.237333pt;}
.y12_c01223{bottom:595.657333pt;}
.y11_c01223{bottom:618.076000pt;}
.y10_c01223{bottom:640.496000pt;}
.yf_c01223{bottom:662.914667pt;}
.ye_c01223{bottom:685.334667pt;}
.yd_c01223{bottom:707.753333pt;}
.yc_c01223{bottom:730.173333pt;}
.yb_c01223{bottom:752.592000pt;}
.ya_c01223{bottom:775.012000pt;}
.y9_c01223{bottom:797.430667pt;}
.y8_c01223{bottom:819.850667pt;}
.y7_c01223{bottom:842.269333pt;}
.y6_c01223{bottom:864.689333pt;}
.y5_c01223{bottom:887.108000pt;}
.y4_c01223{bottom:909.528000pt;}
.y3_c01223{bottom:931.946667pt;}
.y2_c01223{bottom:954.366667pt;}
.y1_c01223{bottom:1013.880000pt;}
.h3_c01223{height:43.636000pt;}
.h2_c01223{height:47.820000pt;}
.h4_c01223{height:49.849173pt;}
.h1_c01223{height:1123.333333pt;}
.h0_c01223{height:1123.653333pt;}
.w0_c01223{width:794.550667pt;}
.w1_c01223{width:794.666667pt;}
.x0_c01223{left:0.000000pt;}
.x3_c01223{left:113.385333pt;}
.x2_c01223{left:142.078667pt;}
.x4_c01223{left:388.912000pt;}
.x1_c01223{left:657.753333pt;}
}





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

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





.ff0_c01224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01224;src:url('chunks/assets/font_23178a1f93ab64ced5797efe.woff2')format("woff");}.ff1_c01224{font-family:ff1_c01224;line-height:1.001000;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_c01224;src:url('chunks/assets/font_261cf06c655356550ad25797.woff2')format("woff");}.ff2_c01224{font-family:ff2_c01224;line-height:1.000000;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_c01224;src:url('chunks/assets/font_2a9074097a977d4ca3e25d8a.woff2')format("woff");}.ff3_c01224{font-family:ff3_c01224;line-height:0.697000;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_c01224;src:url('chunks/assets/font_4b12bfc33eca68e51651710b.woff2')format("woff");}.ff4_c01224{font-family:ff4_c01224;line-height:1.000000;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_c01224;src:url('chunks/assets/font_f0da5fc549ce4f43a9473686.woff2')format("woff");}.ff5_c01224{font-family:ff5_c01224;line-height:0.913000;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_c01224;src:url('chunks/assets/font_e4c6ac0a05629a78817419b3.woff2')format("woff");}.ff6_c01224{font-family:ff6_c01224;line-height:1.000000;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_c01224{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_c01224{vertical-align:0.000000px;}
.v2_c01224{vertical-align:15.816000px;}
.v1_c01224{vertical-align:23.748000px;}
.ls2_c01224{letter-spacing:0.000000px;}
.ls1_c01224{letter-spacing:2.999580px;}
.ls0_c01224{letter-spacing:3.005580px;}
.sc__c01224{text-shadow:none;}
.sc0_c01224{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__c01224{-webkit-text-stroke:0px transparent;}
.sc0_c01224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01224{word-spacing:-0.071730px;}
.ws1_c01224{word-spacing:-0.065454px;}
.ws1a_c01224{word-spacing:0.000000px;}
.ws12_c01224{word-spacing:16.101684px;}
.ws4_c01224{word-spacing:19.308930px;}
.ws3_c01224{word-spacing:20.421648px;}
.ws15_c01224{word-spacing:20.487102px;}
.wsc_c01224{word-spacing:20.552556px;}
.ws16_c01224{word-spacing:20.618010px;}
.ws14_c01224{word-spacing:20.945280px;}
.ws6_c01224{word-spacing:21.010734px;}
.ws13_c01224{word-spacing:21.468912px;}
.ws2_c01224{word-spacing:21.730728px;}
.ws19_c01224{word-spacing:23.367078px;}
.ws17_c01224{word-spacing:23.453334px;}
.ws11_c01224{word-spacing:23.759802px;}
.ws8_c01224{word-spacing:24.610704px;}
.ws18_c01224{word-spacing:24.937974px;}
.wsd_c01224{word-spacing:25.003428px;}
.wse_c01224{word-spacing:25.068882px;}
.ws7_c01224{word-spacing:25.199790px;}
.wsb_c01224{word-spacing:25.265244px;}
.ws5_c01224{word-spacing:25.985238px;}
.wsa_c01224{word-spacing:26.705232px;}
.wsf_c01224{word-spacing:27.032502px;}
.ws9_c01224{word-spacing:27.556134px;}
.ws10_c01224{word-spacing:29.192484px;}
._a_c01224{margin-left:-38.617860px;}
._6_c01224{margin-left:-34.425804px;}
._0_c01224{margin-left:-32.599092px;}
._7_c01224{margin-left:-31.156104px;}
._4_c01224{margin-left:-25.461606px;}
._3_c01224{margin-left:-6.938124px;}
._c_c01224{margin-left:-5.498136px;}
._9_c01224{margin-left:-3.861786px;}
._2_c01224{margin-left:-1.898166px;}
._1_c01224{width:1.767258px;}
._5_c01224{width:3.534516px;}
._d_c01224{width:9.288228px;}
._b_c01224{width:22.450722px;}
._8_c01224{width:34.583340px;}
.fc0_c01224{color:rgb(0,0,0);}
.fs2_c01224{font-size:47.820000px;}
.fs1_c01224{font-size:65.454000px;}
.fs0_c01224{font-size:71.730000px;}
.y0_c01224{bottom:0.000000px;}
.y22_c01224{bottom:71.973000px;}
.y21_c01224{bottom:97.194000px;}
.y20_c01224{bottom:122.416500px;}
.y1f_c01224{bottom:147.637500px;}
.y1e_c01224{bottom:189.706500px;}
.y1d_c01224{bottom:231.774000px;}
.y1c_c01224{bottom:256.995000px;}
.y1b_c01224{bottom:282.217500px;}
.y1a_c01224{bottom:307.438500px;}
.y19_c01224{bottom:332.661000px;}
.y18_c01224{bottom:357.882000px;}
.y17_c01224{bottom:383.104500px;}
.y16_c01224{bottom:408.325500px;}
.y15_c01224{bottom:412.462500px;}
.y14_c01224{bottom:450.394500px;}
.y13_c01224{bottom:475.615500px;}
.y12_c01224{bottom:534.937500px;}
.y11_c01224{bottom:611.104500px;}
.y10_c01224{bottom:636.327000px;}
.yf_c01224{bottom:661.548000px;}
.ye_c01224{bottom:686.770500px;}
.yd_c01224{bottom:711.991500px;}
.yc_c01224{bottom:754.060500px;}
.yb_c01224{bottom:779.281500px;}
.ya_c01224{bottom:804.504000px;}
.y9_c01224{bottom:829.725000px;}
.y8_c01224{bottom:871.792500px;}
.y7_c01224{bottom:913.861500px;}
.y6_c01224{bottom:939.082500px;}
.y5_c01224{bottom:981.150000px;}
.y4_c01224{bottom:1006.372500px;}
.y3_c01224{bottom:1031.593500px;}
.y2_c01224{bottom:1073.662500px;}
.y1_c01224{bottom:1140.615000px;}
.h5_c01224{height:49.090500px;}
.h2_c01224{height:53.797500px;}
.h3_c01224{height:56.074320px;}
.h4_c01224{height:56.080320px;}
.h6_c01224{height:64.906500px;}
.h7_c01224{height:65.632500px;}
.h1_c01224{height:1263.750000px;}
.h0_c01224{height:1264.110000px;}
.w0_c01224{width:893.869500px;}
.w1_c01224{width:894.000000px;}
.x0_c01224{left:0.000000px;}
.x3_c01224{left:127.558500px;}
.x2_c01224{left:159.838500px;}
.x7_c01224{left:161.883000px;}
.x6_c01224{left:166.110000px;}
.x5_c01224{left:342.637500px;}
.x4_c01224{left:437.526000px;}
.x8_c01224{left:477.633000px;}
.x1_c01224{left:739.972500px;}
@media print{
.v0_c01224{vertical-align:0.000000pt;}
.v2_c01224{vertical-align:14.058667pt;}
.v1_c01224{vertical-align:21.109333pt;}
.ls2_c01224{letter-spacing:0.000000pt;}
.ls1_c01224{letter-spacing:2.666293pt;}
.ls0_c01224{letter-spacing:2.671627pt;}
.ws0_c01224{word-spacing:-0.063760pt;}
.ws1_c01224{word-spacing:-0.058181pt;}
.ws1a_c01224{word-spacing:0.000000pt;}
.ws12_c01224{word-spacing:14.312608pt;}
.ws4_c01224{word-spacing:17.163493pt;}
.ws3_c01224{word-spacing:18.152576pt;}
.ws15_c01224{word-spacing:18.210757pt;}
.wsc_c01224{word-spacing:18.268939pt;}
.ws16_c01224{word-spacing:18.327120pt;}
.ws14_c01224{word-spacing:18.618027pt;}
.ws6_c01224{word-spacing:18.676208pt;}
.ws13_c01224{word-spacing:19.083477pt;}
.ws2_c01224{word-spacing:19.316203pt;}
.ws19_c01224{word-spacing:20.770736pt;}
.ws17_c01224{word-spacing:20.847408pt;}
.ws11_c01224{word-spacing:21.119824pt;}
.ws8_c01224{word-spacing:21.876181pt;}
.ws18_c01224{word-spacing:22.167088pt;}
.wsd_c01224{word-spacing:22.225269pt;}
.wse_c01224{word-spacing:22.283451pt;}
.ws7_c01224{word-spacing:22.399813pt;}
.wsb_c01224{word-spacing:22.457995pt;}
.ws5_c01224{word-spacing:23.097989pt;}
.wsa_c01224{word-spacing:23.737984pt;}
.wsf_c01224{word-spacing:24.028891pt;}
.ws9_c01224{word-spacing:24.494341pt;}
.ws10_c01224{word-spacing:25.948875pt;}
._a_c01224{margin-left:-34.326987pt;}
._6_c01224{margin-left:-30.600715pt;}
._0_c01224{margin-left:-28.976971pt;}
._7_c01224{margin-left:-27.694315pt;}
._4_c01224{margin-left:-22.632539pt;}
._3_c01224{margin-left:-6.167221pt;}
._c_c01224{margin-left:-4.887232pt;}
._9_c01224{margin-left:-3.432699pt;}
._2_c01224{margin-left:-1.687259pt;}
._1_c01224{width:1.570896pt;}
._5_c01224{width:3.141792pt;}
._d_c01224{width:8.256203pt;}
._b_c01224{width:19.956197pt;}
._8_c01224{width:30.740747pt;}
.fs2_c01224{font-size:42.506667pt;}
.fs1_c01224{font-size:58.181333pt;}
.fs0_c01224{font-size:63.760000pt;}
.y0_c01224{bottom:0.000000pt;}
.y22_c01224{bottom:63.976000pt;}
.y21_c01224{bottom:86.394667pt;}
.y20_c01224{bottom:108.814667pt;}
.y1f_c01224{bottom:131.233333pt;}
.y1e_c01224{bottom:168.628000pt;}
.y1d_c01224{bottom:206.021333pt;}
.y1c_c01224{bottom:228.440000pt;}
.y1b_c01224{bottom:250.860000pt;}
.y1a_c01224{bottom:273.278667pt;}
.y19_c01224{bottom:295.698667pt;}
.y18_c01224{bottom:318.117333pt;}
.y17_c01224{bottom:340.537333pt;}
.y16_c01224{bottom:362.956000pt;}
.y15_c01224{bottom:366.633333pt;}
.y14_c01224{bottom:400.350667pt;}
.y13_c01224{bottom:422.769333pt;}
.y12_c01224{bottom:475.500000pt;}
.y11_c01224{bottom:543.204000pt;}
.y10_c01224{bottom:565.624000pt;}
.yf_c01224{bottom:588.042667pt;}
.ye_c01224{bottom:610.462667pt;}
.yd_c01224{bottom:632.881333pt;}
.yc_c01224{bottom:670.276000pt;}
.yb_c01224{bottom:692.694667pt;}
.ya_c01224{bottom:715.114667pt;}
.y9_c01224{bottom:737.533333pt;}
.y8_c01224{bottom:774.926667pt;}
.y7_c01224{bottom:812.321333pt;}
.y6_c01224{bottom:834.740000pt;}
.y5_c01224{bottom:872.133333pt;}
.y4_c01224{bottom:894.553333pt;}
.y3_c01224{bottom:916.972000pt;}
.y2_c01224{bottom:954.366667pt;}
.y1_c01224{bottom:1013.880000pt;}
.h5_c01224{height:43.636000pt;}
.h2_c01224{height:47.820000pt;}
.h3_c01224{height:49.843840pt;}
.h4_c01224{height:49.849173pt;}
.h6_c01224{height:57.694667pt;}
.h7_c01224{height:58.340000pt;}
.h1_c01224{height:1123.333333pt;}
.h0_c01224{height:1123.653333pt;}
.w0_c01224{width:794.550667pt;}
.w1_c01224{width:794.666667pt;}
.x0_c01224{left:0.000000pt;}
.x3_c01224{left:113.385333pt;}
.x2_c01224{left:142.078667pt;}
.x7_c01224{left:143.896000pt;}
.x6_c01224{left:147.653333pt;}
.x5_c01224{left:304.566667pt;}
.x4_c01224{left:388.912000pt;}
.x8_c01224{left:424.562667pt;}
.x1_c01224{left:657.753333pt;}
}





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

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





.ff0_c01225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01225;src:url('chunks/assets/font_efa8444bd5fd25c5aaa04e37.woff2')format("woff");}.ff1_c01225{font-family:ff1_c01225;line-height:1.001000;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_c01225;src:url('chunks/assets/font_43e69a746640a7362a353ca2.woff2')format("woff");}.ff2_c01225{font-family:ff2_c01225;line-height:1.000000;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_c01225;src:url('chunks/assets/font_f2107f99c9d98f85c250c30d.woff2')format("woff");}.ff3_c01225{font-family:ff3_c01225;line-height:1.000000;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_c01225{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_c01225{vertical-align:0.000000px;}
.ls0_c01225{letter-spacing:0.000000px;}
.sc__c01225{text-shadow:none;}
.sc0_c01225{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__c01225{-webkit-text-stroke:0px transparent;}
.sc0_c01225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01225{word-spacing:-0.071730px;}
.ws17_c01225{word-spacing:-0.065454px;}
.ws13_c01225{word-spacing:15.054420px;}
.ws18_c01225{word-spacing:16.730334px;}
.wsc_c01225{word-spacing:17.009334px;}
.ws19_c01225{word-spacing:18.719844px;}
.wsd_c01225{word-spacing:18.981660px;}
.ws1a_c01225{word-spacing:19.570746px;}
.ws1b_c01225{word-spacing:19.832562px;}
.ws14_c01225{word-spacing:20.381334px;}
.ws10_c01225{word-spacing:20.483334px;}
.ws9_c01225{word-spacing:20.487102px;}
.wsa_c01225{word-spacing:20.885334px;}
.ws8_c01225{word-spacing:21.338004px;}
.ws3_c01225{word-spacing:21.730728px;}
.ws1d_c01225{word-spacing:21.734334px;}
.ws6_c01225{word-spacing:21.737334px;}
.ws5_c01225{word-spacing:21.796182px;}
.ws15_c01225{word-spacing:22.123452px;}
.ws11_c01225{word-spacing:22.188906px;}
.wsb_c01225{word-spacing:22.581630px;}
.ws4_c01225{word-spacing:22.647084px;}
.ws12_c01225{word-spacing:23.301624px;}
.ws7_c01225{word-spacing:23.367078px;}
.ws1c_c01225{word-spacing:23.432532px;}
.ws1_c01225{word-spacing:24.071334px;}
.ws16_c01225{word-spacing:24.087072px;}
.ws2_c01225{word-spacing:25.527060px;}
.wse_c01225{word-spacing:26.247054px;}
.wsf_c01225{word-spacing:27.490680px;}
._6_c01225{margin-left:-34.494258px;}
._5_c01225{margin-left:-32.661546px;}
._c_c01225{margin-left:-30.959742px;}
._2_c01225{margin-left:-26.770686px;}
._9_c01225{margin-left:-25.657968px;}
._1_c01225{margin-left:-6.872670px;}
._0_c01225{margin-left:-3.338154px;}
._4_c01225{margin-left:-1.767258px;}
._3_c01225{width:1.767258px;}
._8_c01225{width:3.599970px;}
._7_c01225{width:10.669002px;}
._b_c01225{width:19.832562px;}
._a_c01225{width:22.385268px;}
.fc0_c01225{color:rgb(0,0,0);}
.fs1_c01225{font-size:65.454000px;}
.fs0_c01225{font-size:71.730000px;}
.y0_c01225{bottom:0.000000px;}
.y23_c01225{bottom:79.948500px;}
.y22_c01225{bottom:105.171000px;}
.y21_c01225{bottom:148.326000px;}
.y20_c01225{bottom:173.547000px;}
.y1f_c01225{bottom:198.769500px;}
.y1e_c01225{bottom:223.990500px;}
.y1d_c01225{bottom:249.213000px;}
.y1c_c01225{bottom:274.434000px;}
.y1b_c01225{bottom:317.589000px;}
.y1a_c01225{bottom:342.810000px;}
.y19_c01225{bottom:368.032500px;}
.y18_c01225{bottom:393.253500px;}
.y17_c01225{bottom:436.408500px;}
.y16_c01225{bottom:461.629500px;}
.y15_c01225{bottom:486.852000px;}
.y14_c01225{bottom:512.073000px;}
.y13_c01225{bottom:555.228000px;}
.y12_c01225{bottom:580.450500px;}
.y11_c01225{bottom:623.604000px;}
.y10_c01225{bottom:648.826500px;}
.yf_c01225{bottom:674.047500px;}
.ye_c01225{bottom:717.202500px;}
.yd_c01225{bottom:742.425000px;}
.yc_c01225{bottom:767.646000px;}
.yb_c01225{bottom:810.801000px;}
.ya_c01225{bottom:836.022000px;}
.y9_c01225{bottom:879.177000px;}
.y8_c01225{bottom:904.398000px;}
.y7_c01225{bottom:929.620500px;}
.y6_c01225{bottom:954.841500px;}
.y5_c01225{bottom:997.996500px;}
.y4_c01225{bottom:1023.219000px;}
.y3_c01225{bottom:1048.440000px;}
.y2_c01225{bottom:1073.662500px;}
.y1_c01225{bottom:1140.615000px;}
.h3_c01225{height:49.090500px;}
.h2_c01225{height:53.797500px;}
.h1_c01225{height:1263.750000px;}
.h0_c01225{height:1264.110000px;}
.w0_c01225{width:893.869500px;}
.w1_c01225{width:894.000000px;}
.x0_c01225{left:0.000000px;}
.x3_c01225{left:127.558500px;}
.x2_c01225{left:159.838500px;}
.x1_c01225{left:739.972500px;}
@media print{
.v0_c01225{vertical-align:0.000000pt;}
.ls0_c01225{letter-spacing:0.000000pt;}
.ws0_c01225{word-spacing:-0.063760pt;}
.ws17_c01225{word-spacing:-0.058181pt;}
.ws13_c01225{word-spacing:13.381707pt;}
.ws18_c01225{word-spacing:14.871408pt;}
.wsc_c01225{word-spacing:15.119408pt;}
.ws19_c01225{word-spacing:16.639861pt;}
.wsd_c01225{word-spacing:16.872587pt;}
.ws1a_c01225{word-spacing:17.396219pt;}
.ws1b_c01225{word-spacing:17.628944pt;}
.ws14_c01225{word-spacing:18.116741pt;}
.ws10_c01225{word-spacing:18.207408pt;}
.ws9_c01225{word-spacing:18.210757pt;}
.wsa_c01225{word-spacing:18.564741pt;}
.ws8_c01225{word-spacing:18.967115pt;}
.ws3_c01225{word-spacing:19.316203pt;}
.ws1d_c01225{word-spacing:19.319408pt;}
.ws6_c01225{word-spacing:19.322075pt;}
.ws5_c01225{word-spacing:19.374384pt;}
.ws15_c01225{word-spacing:19.665291pt;}
.ws11_c01225{word-spacing:19.723472pt;}
.wsb_c01225{word-spacing:20.072560pt;}
.ws4_c01225{word-spacing:20.130741pt;}
.ws12_c01225{word-spacing:20.712555pt;}
.ws7_c01225{word-spacing:20.770736pt;}
.ws1c_c01225{word-spacing:20.828917pt;}
.ws1_c01225{word-spacing:21.396741pt;}
.ws16_c01225{word-spacing:21.410731pt;}
.ws2_c01225{word-spacing:22.690720pt;}
.wse_c01225{word-spacing:23.330715pt;}
.wsf_c01225{word-spacing:24.436160pt;}
._6_c01225{margin-left:-30.661563pt;}
._5_c01225{margin-left:-29.032485pt;}
._c_c01225{margin-left:-27.519771pt;}
._2_c01225{margin-left:-23.796165pt;}
._9_c01225{margin-left:-22.807083pt;}
._1_c01225{margin-left:-6.109040pt;}
._0_c01225{margin-left:-2.967248pt;}
._4_c01225{margin-left:-1.570896pt;}
._3_c01225{width:1.570896pt;}
._8_c01225{width:3.199973pt;}
._7_c01225{width:9.483557pt;}
._b_c01225{width:17.628944pt;}
._a_c01225{width:19.898016pt;}
.fs1_c01225{font-size:58.181333pt;}
.fs0_c01225{font-size:63.760000pt;}
.y0_c01225{bottom:0.000000pt;}
.y23_c01225{bottom:71.065333pt;}
.y22_c01225{bottom:93.485333pt;}
.y21_c01225{bottom:131.845333pt;}
.y20_c01225{bottom:154.264000pt;}
.y1f_c01225{bottom:176.684000pt;}
.y1e_c01225{bottom:199.102667pt;}
.y1d_c01225{bottom:221.522667pt;}
.y1c_c01225{bottom:243.941333pt;}
.y1b_c01225{bottom:282.301333pt;}
.y1a_c01225{bottom:304.720000pt;}
.y19_c01225{bottom:327.140000pt;}
.y18_c01225{bottom:349.558667pt;}
.y17_c01225{bottom:387.918667pt;}
.y16_c01225{bottom:410.337333pt;}
.y15_c01225{bottom:432.757333pt;}
.y14_c01225{bottom:455.176000pt;}
.y13_c01225{bottom:493.536000pt;}
.y12_c01225{bottom:515.956000pt;}
.y11_c01225{bottom:554.314667pt;}
.y10_c01225{bottom:576.734667pt;}
.yf_c01225{bottom:599.153333pt;}
.ye_c01225{bottom:637.513333pt;}
.yd_c01225{bottom:659.933333pt;}
.yc_c01225{bottom:682.352000pt;}
.yb_c01225{bottom:720.712000pt;}
.ya_c01225{bottom:743.130667pt;}
.y9_c01225{bottom:781.490667pt;}
.y8_c01225{bottom:803.909333pt;}
.y7_c01225{bottom:826.329333pt;}
.y6_c01225{bottom:848.748000pt;}
.y5_c01225{bottom:887.108000pt;}
.y4_c01225{bottom:909.528000pt;}
.y3_c01225{bottom:931.946667pt;}
.y2_c01225{bottom:954.366667pt;}
.y1_c01225{bottom:1013.880000pt;}
.h3_c01225{height:43.636000pt;}
.h2_c01225{height:47.820000pt;}
.h1_c01225{height:1123.333333pt;}
.h0_c01225{height:1123.653333pt;}
.w0_c01225{width:794.550667pt;}
.w1_c01225{width:794.666667pt;}
.x0_c01225{left:0.000000pt;}
.x3_c01225{left:113.385333pt;}
.x2_c01225{left:142.078667pt;}
.x1_c01225{left:657.753333pt;}
}





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

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





.ff0_c01226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01226;src:url('chunks/assets/font_6509a1b0f5a690a79c556cd5.woff2')format("woff");}.ff1_c01226{font-family:ff1_c01226;line-height:1.001000;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_c01226;src:url('chunks/assets/font_1427ee3759bcdd4014a7b7c7.woff2')format("woff");}.ff2_c01226{font-family:ff2_c01226;line-height:1.000000;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_c01226;src:url('chunks/assets/font_c323230440edb5b0b6025354.woff2')format("woff");}.ff3_c01226{font-family:ff3_c01226;line-height:1.000000;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_c01226;src:url('chunks/assets/font_31a7c6275367474dedd0850b.woff2')format("woff");}.ff4_c01226{font-family:ff4_c01226;line-height:1.000000;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_c01226{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_c01226{vertical-align:0.000000px;}
.v1_c01226{vertical-align:16.548000px;}
.ls0_c01226{letter-spacing:0.000000px;}
.sc__c01226{text-shadow:none;}
.sc0_c01226{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__c01226{-webkit-text-stroke:0px transparent;}
.sc0_c01226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01226{word-spacing:-0.071730px;}
.wsa_c01226{word-spacing:-0.065454px;}
.ws1d_c01226{word-spacing:0.000000px;}
.ws4_c01226{word-spacing:10.799910px;}
.ws1a_c01226{word-spacing:18.261666px;}
.ws1c_c01226{word-spacing:18.916206px;}
.wsb_c01226{word-spacing:21.010734px;}
.ws5_c01226{word-spacing:21.207096px;}
.wse_c01226{word-spacing:21.534366px;}
.ws6_c01226{word-spacing:21.730728px;}
.ws10_c01226{word-spacing:21.734334px;}
.wsf_c01226{word-spacing:21.796182px;}
.ws16_c01226{word-spacing:22.385268px;}
.wsc_c01226{word-spacing:22.712538px;}
.ws1b_c01226{word-spacing:22.908900px;}
.ws11_c01226{word-spacing:23.301624px;}
.wsd_c01226{word-spacing:23.367078px;}
.ws18_c01226{word-spacing:24.021618px;}
.ws19_c01226{word-spacing:25.003428px;}
.ws15_c01226{word-spacing:25.199790px;}
.ws9_c01226{word-spacing:26.705232px;}
.ws1_c01226{word-spacing:27.986334px;}
.ws3_c01226{word-spacing:28.014312px;}
.ws17_c01226{word-spacing:28.865214px;}
.ws2_c01226{word-spacing:29.061576px;}
.ws7_c01226{word-spacing:30.305202px;}
.ws8_c01226{word-spacing:31.221558px;}
.ws13_c01226{word-spacing:31.304334px;}
.ws14_c01226{word-spacing:32.137914px;}
.ws12_c01226{word-spacing:32.923362px;}
._d_c01226{margin-left:-34.559712px;}
._0_c01226{margin-left:-33.446994px;}
._9_c01226{margin-left:-31.810644px;}
._10_c01226{margin-left:-30.436110px;}
._3_c01226{margin-left:-26.770686px;}
._7_c01226{margin-left:-25.461606px;}
._6_c01226{margin-left:-7.985388px;}
._2_c01226{margin-left:-6.741762px;}
._a_c01226{margin-left:-5.432682px;}
._1_c01226{margin-left:-3.338154px;}
._8_c01226{margin-left:-1.832712px;}
._c_c01226{width:1.112718px;}
._5_c01226{width:2.552706px;}
._e_c01226{width:4.254510px;}
._b_c01226{width:9.175488px;}
._f_c01226{width:20.683464px;}
._4_c01226{width:36.190242px;}
.fc0_c01226{color:rgb(0,0,0);}
.fs1_c01226{font-size:65.454000px;}
.fs0_c01226{font-size:71.730000px;}
.y0_c01226{bottom:0.000000px;}
.y21_c01226{bottom:91.539000px;}
.y20_c01226{bottom:116.760000px;}
.y1f_c01226{bottom:141.982500px;}
.y1e_c01226{bottom:167.203500px;}
.y1d_c01226{bottom:192.426000px;}
.y1c_c01226{bottom:217.647000px;}
.y1b_c01226{bottom:260.802000px;}
.y1a_c01226{bottom:286.023000px;}
.y19_c01226{bottom:348.604500px;}
.y18_c01226{bottom:429.120000px;}
.y17_c01226{bottom:454.341000px;}
.y16_c01226{bottom:479.563500px;}
.y15_c01226{bottom:504.784500px;}
.y14_c01226{bottom:530.007000px;}
.y13_c01226{bottom:555.228000px;}
.y12_c01226{bottom:580.450500px;}
.y11_c01226{bottom:623.604000px;}
.y10_c01226{bottom:648.826500px;}
.yf_c01226{bottom:674.047500px;}
.ye_c01226{bottom:717.202500px;}
.yd_c01226{bottom:742.425000px;}
.yc_c01226{bottom:767.646000px;}
.yb_c01226{bottom:792.868500px;}
.ya_c01226{bottom:836.022000px;}
.y9_c01226{bottom:879.177000px;}
.y8_c01226{bottom:904.398000px;}
.y7_c01226{bottom:929.620500px;}
.y6_c01226{bottom:954.841500px;}
.y5_c01226{bottom:997.996500px;}
.y4_c01226{bottom:1023.219000px;}
.y3_c01226{bottom:1048.440000px;}
.y2_c01226{bottom:1073.662500px;}
.y1_c01226{bottom:1140.615000px;}
.h3_c01226{height:49.090500px;}
.h2_c01226{height:53.797500px;}
.h4_c01226{height:65.638500px;}
.h1_c01226{height:1263.750000px;}
.h0_c01226{height:1264.110000px;}
.w0_c01226{width:893.869500px;}
.w1_c01226{width:894.000000px;}
.x0_c01226{left:0.000000px;}
.x3_c01226{left:127.558500px;}
.x2_c01226{left:159.838500px;}
.x4_c01226{left:384.498000px;}
.x5_c01226{left:437.526000px;}
.x1_c01226{left:739.972500px;}
@media print{
.v0_c01226{vertical-align:0.000000pt;}
.v1_c01226{vertical-align:14.709333pt;}
.ls0_c01226{letter-spacing:0.000000pt;}
.ws0_c01226{word-spacing:-0.063760pt;}
.wsa_c01226{word-spacing:-0.058181pt;}
.ws1d_c01226{word-spacing:0.000000pt;}
.ws4_c01226{word-spacing:9.599920pt;}
.ws1a_c01226{word-spacing:16.232592pt;}
.ws1c_c01226{word-spacing:16.814405pt;}
.wsb_c01226{word-spacing:18.676208pt;}
.ws5_c01226{word-spacing:18.850752pt;}
.wse_c01226{word-spacing:19.141659pt;}
.ws6_c01226{word-spacing:19.316203pt;}
.ws10_c01226{word-spacing:19.319408pt;}
.wsf_c01226{word-spacing:19.374384pt;}
.ws16_c01226{word-spacing:19.898016pt;}
.wsc_c01226{word-spacing:20.188923pt;}
.ws1b_c01226{word-spacing:20.363467pt;}
.ws11_c01226{word-spacing:20.712555pt;}
.wsd_c01226{word-spacing:20.770736pt;}
.ws18_c01226{word-spacing:21.352549pt;}
.ws19_c01226{word-spacing:22.225269pt;}
.ws15_c01226{word-spacing:22.399813pt;}
.ws9_c01226{word-spacing:23.737984pt;}
.ws1_c01226{word-spacing:24.876741pt;}
.ws3_c01226{word-spacing:24.901611pt;}
.ws17_c01226{word-spacing:25.657968pt;}
.ws2_c01226{word-spacing:25.832512pt;}
.ws7_c01226{word-spacing:26.937957pt;}
.ws8_c01226{word-spacing:27.752496pt;}
.ws13_c01226{word-spacing:27.826075pt;}
.ws14_c01226{word-spacing:28.567035pt;}
.ws12_c01226{word-spacing:29.265211pt;}
._d_c01226{margin-left:-30.719744pt;}
._0_c01226{margin-left:-29.730661pt;}
._9_c01226{margin-left:-28.276128pt;}
._10_c01226{margin-left:-27.054320pt;}
._3_c01226{margin-left:-23.796165pt;}
._7_c01226{margin-left:-22.632539pt;}
._6_c01226{margin-left:-7.098123pt;}
._2_c01226{margin-left:-5.992677pt;}
._a_c01226{margin-left:-4.829051pt;}
._1_c01226{margin-left:-2.967248pt;}
._8_c01226{margin-left:-1.629077pt;}
._c_c01226{width:0.989083pt;}
._5_c01226{width:2.269072pt;}
._e_c01226{width:3.781787pt;}
._b_c01226{width:8.155989pt;}
._f_c01226{width:18.385301pt;}
._4_c01226{width:32.169104pt;}
.fs1_c01226{font-size:58.181333pt;}
.fs0_c01226{font-size:63.760000pt;}
.y0_c01226{bottom:0.000000pt;}
.y21_c01226{bottom:81.368000pt;}
.y20_c01226{bottom:103.786667pt;}
.y1f_c01226{bottom:126.206667pt;}
.y1e_c01226{bottom:148.625333pt;}
.y1d_c01226{bottom:171.045333pt;}
.y1c_c01226{bottom:193.464000pt;}
.y1b_c01226{bottom:231.824000pt;}
.y1a_c01226{bottom:254.242667pt;}
.y19_c01226{bottom:309.870667pt;}
.y18_c01226{bottom:381.440000pt;}
.y17_c01226{bottom:403.858667pt;}
.y16_c01226{bottom:426.278667pt;}
.y15_c01226{bottom:448.697333pt;}
.y14_c01226{bottom:471.117333pt;}
.y13_c01226{bottom:493.536000pt;}
.y12_c01226{bottom:515.956000pt;}
.y11_c01226{bottom:554.314667pt;}
.y10_c01226{bottom:576.734667pt;}
.yf_c01226{bottom:599.153333pt;}
.ye_c01226{bottom:637.513333pt;}
.yd_c01226{bottom:659.933333pt;}
.yc_c01226{bottom:682.352000pt;}
.yb_c01226{bottom:704.772000pt;}
.ya_c01226{bottom:743.130667pt;}
.y9_c01226{bottom:781.490667pt;}
.y8_c01226{bottom:803.909333pt;}
.y7_c01226{bottom:826.329333pt;}
.y6_c01226{bottom:848.748000pt;}
.y5_c01226{bottom:887.108000pt;}
.y4_c01226{bottom:909.528000pt;}
.y3_c01226{bottom:931.946667pt;}
.y2_c01226{bottom:954.366667pt;}
.y1_c01226{bottom:1013.880000pt;}
.h3_c01226{height:43.636000pt;}
.h2_c01226{height:47.820000pt;}
.h4_c01226{height:58.345333pt;}
.h1_c01226{height:1123.333333pt;}
.h0_c01226{height:1123.653333pt;}
.w0_c01226{width:794.550667pt;}
.w1_c01226{width:794.666667pt;}
.x0_c01226{left:0.000000pt;}
.x3_c01226{left:113.385333pt;}
.x2_c01226{left:142.078667pt;}
.x4_c01226{left:341.776000pt;}
.x5_c01226{left:388.912000pt;}
.x1_c01226{left:657.753333pt;}
}





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

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





.ff0_c01227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01227;src:url('chunks/assets/font_b6ad3b006875266e0c4d336a.woff2')format("woff");}.ff1_c01227{font-family:ff1_c01227;line-height:1.001000;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_c01227;src:url('chunks/assets/font_96ae4985e5a1d686edb5bc6c.woff2')format("woff");}.ff2_c01227{font-family:ff2_c01227;line-height:1.000000;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_c01227{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_c01227{vertical-align:0.000000px;}
.ls0_c01227{letter-spacing:0.000000px;}
.sc__c01227{text-shadow:none;}
.sc0_c01227{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__c01227{-webkit-text-stroke:0px transparent;}
.sc0_c01227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01227{word-spacing:-0.071730px;}
.ws17_c01227{word-spacing:14.530788px;}
.ws13_c01227{word-spacing:17.607126px;}
.ws14_c01227{word-spacing:18.327120px;}
.ws10_c01227{word-spacing:18.392574px;}
.ws6_c01227{word-spacing:18.458028px;}
.ws12_c01227{word-spacing:18.588936px;}
.ws15_c01227{word-spacing:19.701654px;}
.ws7_c01227{word-spacing:20.290740px;}
.ws8_c01227{word-spacing:20.421648px;}
.ws3_c01227{word-spacing:20.552556px;}
.wsd_c01227{word-spacing:20.748918px;}
.ws18_c01227{word-spacing:21.207096px;}
.ws16_c01227{word-spacing:21.599820px;}
.ws4_c01227{word-spacing:21.665274px;}
.ws2_c01227{word-spacing:21.730728px;}
.ws5_c01227{word-spacing:21.796182px;}
.ws9_c01227{word-spacing:22.385268px;}
.ws1_c01227{word-spacing:22.974354px;}
.wsa_c01227{word-spacing:23.694348px;}
.wsb_c01227{word-spacing:24.676158px;}
.wsc_c01227{word-spacing:24.741612px;}
.ws11_c01227{word-spacing:25.788876px;}
.wse_c01227{word-spacing:28.145220px;}
.wsf_c01227{word-spacing:28.210674px;}
._5_c01227{margin-left:-35.345160px;}
._c_c01227{margin-left:-33.905172px;}
._2_c01227{margin-left:-32.661546px;}
._4_c01227{margin-left:-25.461606px;}
._3_c01227{margin-left:-7.265394px;}
._7_c01227{margin-left:-5.367228px;}
._9_c01227{margin-left:-4.254510px;}
._0_c01227{margin-left:-1.898166px;}
._1_c01227{width:1.963620px;}
._6_c01227{width:4.058148px;}
._a_c01227{width:17.607126px;}
._8_c01227{width:19.308930px;}
._b_c01227{width:21.534366px;}
.fc0_c01227{color:rgb(0,0,0);}
.fs1_c01227{font-size:65.454000px;}
.fs0_c01227{font-size:71.730000px;}
.y0_c01227{bottom:0.000000px;}
.y29_c01227{bottom:90.013500px;}
.y28_c01227{bottom:115.234500px;}
.y27_c01227{bottom:140.457000px;}
.y26_c01227{bottom:165.678000px;}
.y25_c01227{bottom:190.900500px;}
.y24_c01227{bottom:216.121500px;}
.y23_c01227{bottom:241.344000px;}
.y22_c01227{bottom:266.565000px;}
.y21_c01227{bottom:291.787500px;}
.y20_c01227{bottom:317.008500px;}
.y1f_c01227{bottom:342.231000px;}
.y1e_c01227{bottom:367.452000px;}
.y1d_c01227{bottom:392.674500px;}
.y1c_c01227{bottom:417.895500px;}
.y1b_c01227{bottom:443.118000px;}
.y1a_c01227{bottom:468.339000px;}
.y19_c01227{bottom:493.561500px;}
.y18_c01227{bottom:518.782500px;}
.y17_c01227{bottom:544.005000px;}
.y16_c01227{bottom:569.226000px;}
.y15_c01227{bottom:594.448500px;}
.y14_c01227{bottom:619.671000px;}
.y13_c01227{bottom:644.892000px;}
.y12_c01227{bottom:670.114500px;}
.y11_c01227{bottom:695.335500px;}
.y10_c01227{bottom:720.558000px;}
.yf_c01227{bottom:745.779000px;}
.ye_c01227{bottom:771.001500px;}
.yd_c01227{bottom:796.222500px;}
.yc_c01227{bottom:821.445000px;}
.yb_c01227{bottom:846.666000px;}
.ya_c01227{bottom:871.888500px;}
.y9_c01227{bottom:897.109500px;}
.y8_c01227{bottom:922.332000px;}
.y7_c01227{bottom:947.553000px;}
.y6_c01227{bottom:972.775500px;}
.y5_c01227{bottom:997.996500px;}
.y4_c01227{bottom:1023.219000px;}
.y3_c01227{bottom:1048.440000px;}
.y2_c01227{bottom:1073.662500px;}
.y1_c01227{bottom:1140.615000px;}
.h3_c01227{height:49.090500px;}
.h2_c01227{height:53.797500px;}
.h1_c01227{height:1263.750000px;}
.h0_c01227{height:1264.110000px;}
.w0_c01227{width:893.869500px;}
.w1_c01227{width:894.000000px;}
.x0_c01227{left:0.000000px;}
.x3_c01227{left:127.558500px;}
.x2_c01227{left:159.838500px;}
.x1_c01227{left:739.972500px;}
@media print{
.v0_c01227{vertical-align:0.000000pt;}
.ls0_c01227{letter-spacing:0.000000pt;}
.ws0_c01227{word-spacing:-0.063760pt;}
.ws17_c01227{word-spacing:12.916256pt;}
.ws13_c01227{word-spacing:15.650779pt;}
.ws14_c01227{word-spacing:16.290773pt;}
.ws10_c01227{word-spacing:16.348955pt;}
.ws6_c01227{word-spacing:16.407136pt;}
.ws12_c01227{word-spacing:16.523499pt;}
.ws15_c01227{word-spacing:17.512581pt;}
.ws7_c01227{word-spacing:18.036213pt;}
.ws8_c01227{word-spacing:18.152576pt;}
.ws3_c01227{word-spacing:18.268939pt;}
.wsd_c01227{word-spacing:18.443483pt;}
.ws18_c01227{word-spacing:18.850752pt;}
.ws16_c01227{word-spacing:19.199840pt;}
.ws4_c01227{word-spacing:19.258021pt;}
.ws2_c01227{word-spacing:19.316203pt;}
.ws5_c01227{word-spacing:19.374384pt;}
.ws9_c01227{word-spacing:19.898016pt;}
.ws1_c01227{word-spacing:20.421648pt;}
.wsa_c01227{word-spacing:21.061643pt;}
.wsb_c01227{word-spacing:21.934363pt;}
.wsc_c01227{word-spacing:21.992544pt;}
.ws11_c01227{word-spacing:22.923445pt;}
.wse_c01227{word-spacing:25.017973pt;}
.wsf_c01227{word-spacing:25.076155pt;}
._5_c01227{margin-left:-31.417920pt;}
._c_c01227{margin-left:-30.137931pt;}
._2_c01227{margin-left:-29.032485pt;}
._4_c01227{margin-left:-22.632539pt;}
._3_c01227{margin-left:-6.458128pt;}
._7_c01227{margin-left:-4.770869pt;}
._9_c01227{margin-left:-3.781787pt;}
._0_c01227{margin-left:-1.687259pt;}
._1_c01227{width:1.745440pt;}
._6_c01227{width:3.607243pt;}
._a_c01227{width:15.650779pt;}
._8_c01227{width:17.163493pt;}
._b_c01227{width:19.141659pt;}
.fs1_c01227{font-size:58.181333pt;}
.fs0_c01227{font-size:63.760000pt;}
.y0_c01227{bottom:0.000000pt;}
.y29_c01227{bottom:80.012000pt;}
.y28_c01227{bottom:102.430667pt;}
.y27_c01227{bottom:124.850667pt;}
.y26_c01227{bottom:147.269333pt;}
.y25_c01227{bottom:169.689333pt;}
.y24_c01227{bottom:192.108000pt;}
.y23_c01227{bottom:214.528000pt;}
.y22_c01227{bottom:236.946667pt;}
.y21_c01227{bottom:259.366667pt;}
.y20_c01227{bottom:281.785333pt;}
.y1f_c01227{bottom:304.205333pt;}
.y1e_c01227{bottom:326.624000pt;}
.y1d_c01227{bottom:349.044000pt;}
.y1c_c01227{bottom:371.462667pt;}
.y1b_c01227{bottom:393.882667pt;}
.y1a_c01227{bottom:416.301333pt;}
.y19_c01227{bottom:438.721333pt;}
.y18_c01227{bottom:461.140000pt;}
.y17_c01227{bottom:483.560000pt;}
.y16_c01227{bottom:505.978667pt;}
.y15_c01227{bottom:528.398667pt;}
.y14_c01227{bottom:550.818667pt;}
.y13_c01227{bottom:573.237333pt;}
.y12_c01227{bottom:595.657333pt;}
.y11_c01227{bottom:618.076000pt;}
.y10_c01227{bottom:640.496000pt;}
.yf_c01227{bottom:662.914667pt;}
.ye_c01227{bottom:685.334667pt;}
.yd_c01227{bottom:707.753333pt;}
.yc_c01227{bottom:730.173333pt;}
.yb_c01227{bottom:752.592000pt;}
.ya_c01227{bottom:775.012000pt;}
.y9_c01227{bottom:797.430667pt;}
.y8_c01227{bottom:819.850667pt;}
.y7_c01227{bottom:842.269333pt;}
.y6_c01227{bottom:864.689333pt;}
.y5_c01227{bottom:887.108000pt;}
.y4_c01227{bottom:909.528000pt;}
.y3_c01227{bottom:931.946667pt;}
.y2_c01227{bottom:954.366667pt;}
.y1_c01227{bottom:1013.880000pt;}
.h3_c01227{height:43.636000pt;}
.h2_c01227{height:47.820000pt;}
.h1_c01227{height:1123.333333pt;}
.h0_c01227{height:1123.653333pt;}
.w0_c01227{width:794.550667pt;}
.w1_c01227{width:794.666667pt;}
.x0_c01227{left:0.000000pt;}
.x3_c01227{left:113.385333pt;}
.x2_c01227{left:142.078667pt;}
.x1_c01227{left:657.753333pt;}
}





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

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





.ff0_c01228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01228;src:url('chunks/assets/font_27f6b0044269be3cb39abb06.woff2')format("woff");}.ff1_c01228{font-family:ff1_c01228;line-height:1.001000;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_c01228;src:url('chunks/assets/font_acd8c309491f7fab5dda7ac5.woff2')format("woff");}.ff2_c01228{font-family:ff2_c01228;line-height:1.000000;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_c01228;src:url('chunks/assets/font_a05aab724039208a4bfc3ca1.woff2')format("woff");}.ff3_c01228{font-family:ff3_c01228;line-height:1.000000;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_c01228;src:url('chunks/assets/font_7c6e69fabce08a164773b566.woff2')format("woff");}.ff4_c01228{font-family:ff4_c01228;line-height:0.697000;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_c01228{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_c01228{vertical-align:0.000000px;}
.v1_c01228{vertical-align:23.754000px;}
.ls1_c01228{letter-spacing:0.000000px;}
.ls0_c01228{letter-spacing:3.005580px;}
.sc__c01228{text-shadow:none;}
.sc0_c01228{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__c01228{-webkit-text-stroke:0px transparent;}
.sc0_c01228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01228{word-spacing:-0.071730px;}
.ws5_c01228{word-spacing:-0.065454px;}
.ws1a_c01228{word-spacing:0.000000px;}
.ws9_c01228{word-spacing:17.148948px;}
.ws16_c01228{word-spacing:18.130758px;}
.ws17_c01228{word-spacing:18.981660px;}
.ws3_c01228{word-spacing:21.730728px;}
.wsf_c01228{word-spacing:21.796182px;}
.ws15_c01228{word-spacing:22.319814px;}
.ws13_c01228{word-spacing:22.385268px;}
.ws1_c01228{word-spacing:22.843446px;}
.ws2_c01228{word-spacing:23.236170px;}
.ws8_c01228{word-spacing:23.367078px;}
.wsb_c01228{word-spacing:23.890710px;}
.wsd_c01228{word-spacing:24.217980px;}
.wse_c01228{word-spacing:24.479796px;}
.ws4_c01228{word-spacing:25.003428px;}
.ws14_c01228{word-spacing:25.330698px;}
.ws11_c01228{word-spacing:25.657968px;}
.wsa_c01228{word-spacing:25.985238px;}
.wsc_c01228{word-spacing:26.050692px;}
.ws10_c01228{word-spacing:26.377962px;}
.ws7_c01228{word-spacing:26.705232px;}
.ws19_c01228{word-spacing:27.425226px;}
.ws18_c01228{word-spacing:28.668852px;}
.ws12_c01228{word-spacing:30.959742px;}
.ws6_c01228{word-spacing:31.221558px;}
._6_c01228{margin-left:-34.232442px;}
._3_c01228{margin-left:-32.661546px;}
._8_c01228{margin-left:-31.090650px;}
._5_c01228{margin-left:-25.461606px;}
._4_c01228{margin-left:-7.134486px;}
._2_c01228{margin-left:-5.367228px;}
._9_c01228{margin-left:-3.665424px;}
._0_c01228{margin-left:-1.832712px;}
._1_c01228{width:1.767258px;}
._7_c01228{width:3.469062px;}
.fc0_c01228{color:rgb(0,0,0);}
.fs2_c01228{font-size:47.820000px;}
.fs1_c01228{font-size:65.454000px;}
.fs0_c01228{font-size:71.730000px;}
.y0_c01228{bottom:0.000000px;}
.y22_c01228{bottom:102.181500px;}
.y21_c01228{bottom:127.404000px;}
.y20_c01228{bottom:152.625000px;}
.y1f_c01228{bottom:177.847500px;}
.y1e_c01228{bottom:203.068500px;}
.y1d_c01228{bottom:228.291000px;}
.y1c_c01228{bottom:271.446000px;}
.y1b_c01228{bottom:296.667000px;}
.y1a_c01228{bottom:321.889500px;}
.y19_c01228{bottom:365.043000px;}
.y18_c01228{bottom:390.265500px;}
.y17_c01228{bottom:415.486500px;}
.y16_c01228{bottom:440.709000px;}
.y15_c01228{bottom:465.930000px;}
.y14_c01228{bottom:491.152500px;}
.y13_c01228{bottom:516.373500px;}
.y12_c01228{bottom:541.596000px;}
.y11_c01228{bottom:566.817000px;}
.y10_c01228{bottom:609.972000px;}
.yf_c01228{bottom:635.193000px;}
.ye_c01228{bottom:660.415500px;}
.yd_c01228{bottom:685.638000px;}
.yc_c01228{bottom:710.859000px;}
.yb_c01228{bottom:736.081500px;}
.ya_c01228{bottom:761.302500px;}
.y9_c01228{bottom:786.525000px;}
.y8_c01228{bottom:811.746000px;}
.y7_c01228{bottom:854.901000px;}
.y6_c01228{bottom:880.122000px;}
.y5_c01228{bottom:942.703500px;}
.y4_c01228{bottom:1023.219000px;}
.y3_c01228{bottom:1048.440000px;}
.y2_c01228{bottom:1073.662500px;}
.y1_c01228{bottom:1140.615000px;}
.h3_c01228{height:49.090500px;}
.h2_c01228{height:53.797500px;}
.h5_c01228{height:56.074320px;}
.h4_c01228{height:56.080320px;}
.h1_c01228{height:1263.750000px;}
.h0_c01228{height:1264.110000px;}
.w0_c01228{width:893.869500px;}
.w1_c01228{width:894.000000px;}
.x0_c01228{left:0.000000px;}
.x2_c01228{left:127.558500px;}
.x4_c01228{left:159.838500px;}
.x3_c01228{left:437.526000px;}
.x1_c01228{left:739.972500px;}
@media print{
.v0_c01228{vertical-align:0.000000pt;}
.v1_c01228{vertical-align:21.114667pt;}
.ls1_c01228{letter-spacing:0.000000pt;}
.ls0_c01228{letter-spacing:2.671627pt;}
.ws0_c01228{word-spacing:-0.063760pt;}
.ws5_c01228{word-spacing:-0.058181pt;}
.ws1a_c01228{word-spacing:0.000000pt;}
.ws9_c01228{word-spacing:15.243509pt;}
.ws16_c01228{word-spacing:16.116229pt;}
.ws17_c01228{word-spacing:16.872587pt;}
.ws3_c01228{word-spacing:19.316203pt;}
.wsf_c01228{word-spacing:19.374384pt;}
.ws15_c01228{word-spacing:19.839835pt;}
.ws13_c01228{word-spacing:19.898016pt;}
.ws1_c01228{word-spacing:20.305285pt;}
.ws2_c01228{word-spacing:20.654373pt;}
.ws8_c01228{word-spacing:20.770736pt;}
.wsb_c01228{word-spacing:21.236187pt;}
.wsd_c01228{word-spacing:21.527093pt;}
.wse_c01228{word-spacing:21.759819pt;}
.ws4_c01228{word-spacing:22.225269pt;}
.ws14_c01228{word-spacing:22.516176pt;}
.ws11_c01228{word-spacing:22.807083pt;}
.wsa_c01228{word-spacing:23.097989pt;}
.wsc_c01228{word-spacing:23.156171pt;}
.ws10_c01228{word-spacing:23.447077pt;}
.ws7_c01228{word-spacing:23.737984pt;}
.ws19_c01228{word-spacing:24.377979pt;}
.ws18_c01228{word-spacing:25.483424pt;}
.ws12_c01228{word-spacing:27.519771pt;}
.ws6_c01228{word-spacing:27.752496pt;}
._6_c01228{margin-left:-30.428837pt;}
._3_c01228{margin-left:-29.032485pt;}
._8_c01228{margin-left:-27.636133pt;}
._5_c01228{margin-left:-22.632539pt;}
._4_c01228{margin-left:-6.341765pt;}
._2_c01228{margin-left:-4.770869pt;}
._9_c01228{margin-left:-3.258155pt;}
._0_c01228{margin-left:-1.629077pt;}
._1_c01228{width:1.570896pt;}
._7_c01228{width:3.083611pt;}
.fs2_c01228{font-size:42.506667pt;}
.fs1_c01228{font-size:58.181333pt;}
.fs0_c01228{font-size:63.760000pt;}
.y0_c01228{bottom:0.000000pt;}
.y22_c01228{bottom:90.828000pt;}
.y21_c01228{bottom:113.248000pt;}
.y20_c01228{bottom:135.666667pt;}
.y1f_c01228{bottom:158.086667pt;}
.y1e_c01228{bottom:180.505333pt;}
.y1d_c01228{bottom:202.925333pt;}
.y1c_c01228{bottom:241.285333pt;}
.y1b_c01228{bottom:263.704000pt;}
.y1a_c01228{bottom:286.124000pt;}
.y19_c01228{bottom:324.482667pt;}
.y18_c01228{bottom:346.902667pt;}
.y17_c01228{bottom:369.321333pt;}
.y16_c01228{bottom:391.741333pt;}
.y15_c01228{bottom:414.160000pt;}
.y14_c01228{bottom:436.580000pt;}
.y13_c01228{bottom:458.998667pt;}
.y12_c01228{bottom:481.418667pt;}
.y11_c01228{bottom:503.837333pt;}
.y10_c01228{bottom:542.197333pt;}
.yf_c01228{bottom:564.616000pt;}
.ye_c01228{bottom:587.036000pt;}
.yd_c01228{bottom:609.456000pt;}
.yc_c01228{bottom:631.874667pt;}
.yb_c01228{bottom:654.294667pt;}
.ya_c01228{bottom:676.713333pt;}
.y9_c01228{bottom:699.133333pt;}
.y8_c01228{bottom:721.552000pt;}
.y7_c01228{bottom:759.912000pt;}
.y6_c01228{bottom:782.330667pt;}
.y5_c01228{bottom:837.958667pt;}
.y4_c01228{bottom:909.528000pt;}
.y3_c01228{bottom:931.946667pt;}
.y2_c01228{bottom:954.366667pt;}
.y1_c01228{bottom:1013.880000pt;}
.h3_c01228{height:43.636000pt;}
.h2_c01228{height:47.820000pt;}
.h5_c01228{height:49.843840pt;}
.h4_c01228{height:49.849173pt;}
.h1_c01228{height:1123.333333pt;}
.h0_c01228{height:1123.653333pt;}
.w0_c01228{width:794.550667pt;}
.w1_c01228{width:794.666667pt;}
.x0_c01228{left:0.000000pt;}
.x2_c01228{left:113.385333pt;}
.x4_c01228{left:142.078667pt;}
.x3_c01228{left:388.912000pt;}
.x1_c01228{left:657.753333pt;}
}





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

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





.ff0_c01229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01229;src:url('chunks/assets/font_62050f9435b3ec8f3537a78a.woff2')format("woff");}.ff1_c01229{font-family:ff1_c01229;line-height:1.001000;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_c01229;src:url('chunks/assets/font_5716177f07f42622412763eb.woff2')format("woff");}.ff2_c01229{font-family:ff2_c01229;line-height:1.000000;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_c01229;src:url('chunks/assets/font_6b7c980f45507dee622d0987.woff2')format("woff");}.ff3_c01229{font-family:ff3_c01229;line-height:0.697000;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_c01229{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_c01229{vertical-align:0.000000px;}
.v1_c01229{vertical-align:23.748000px;}
.ls2_c01229{letter-spacing:0.000000px;}
.ls1_c01229{letter-spacing:2.999580px;}
.ls0_c01229{letter-spacing:3.005580px;}
.sc__c01229{text-shadow:none;}
.sc0_c01229{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__c01229{-webkit-text-stroke:0px transparent;}
.sc0_c01229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01229{word-spacing:-0.071730px;}
.ws1_c01229{word-spacing:-0.065454px;}
.ws1e_c01229{word-spacing:0.000000px;}
.wsd_c01229{word-spacing:15.512598px;}
.wse_c01229{word-spacing:16.363500px;}
.wsa_c01229{word-spacing:16.625316px;}
.ws3_c01229{word-spacing:16.821678px;}
.wsb_c01229{word-spacing:17.345310px;}
.ws1c_c01229{word-spacing:18.196212px;}
.ws9_c01229{word-spacing:18.327120px;}
.ws1a_c01229{word-spacing:18.523482px;}
.wsc_c01229{word-spacing:19.570746px;}
.ws4_c01229{word-spacing:20.028924px;}
.ws8_c01229{word-spacing:20.290740px;}
.ws5_c01229{word-spacing:20.356194px;}
.ws6_c01229{word-spacing:21.730728px;}
.ws13_c01229{word-spacing:21.796182px;}
.ws10_c01229{word-spacing:22.254360px;}
.ws18_c01229{word-spacing:23.825256px;}
.ws12_c01229{word-spacing:24.414342px;}
.ws7_c01229{word-spacing:24.545250px;}
.ws16_c01229{word-spacing:24.937974px;}
.ws1b_c01229{word-spacing:25.396152px;}
.wsf_c01229{word-spacing:25.723422px;}
.ws19_c01229{word-spacing:25.854330px;}
.ws2_c01229{word-spacing:26.116146px;}
.ws14_c01229{word-spacing:27.490680px;}
.ws11_c01229{word-spacing:27.556134px;}
.ws17_c01229{word-spacing:27.687042px;}
.ws15_c01229{word-spacing:28.603398px;}
.ws1d_c01229{word-spacing:32.399730px;}
._2_c01229{margin-left:-34.559712px;}
._0_c01229{margin-left:-32.664546px;}
._9_c01229{margin-left:-31.608282px;}
._5_c01229{margin-left:-25.396152px;}
._4_c01229{margin-left:-7.524210px;}
._6_c01229{margin-left:-5.498136px;}
._8_c01229{margin-left:-3.730878px;}
._3_c01229{margin-left:-1.767258px;}
._7_c01229{width:1.701804px;}
._1_c01229{width:28.079766px;}
.fc0_c01229{color:rgb(0,0,0);}
.fs2_c01229{font-size:47.820000px;}
.fs1_c01229{font-size:65.454000px;}
.fs0_c01229{font-size:71.730000px;}
.y0_c01229{bottom:0.000000px;}
.y25_c01229{bottom:71.973000px;}
.y24_c01229{bottom:97.194000px;}
.y23_c01229{bottom:122.416500px;}
.y22_c01229{bottom:164.628000px;}
.y21_c01229{bottom:206.839500px;}
.y20_c01229{bottom:232.060500px;}
.y1f_c01229{bottom:274.272000px;}
.y1e_c01229{bottom:299.494500px;}
.y1d_c01229{bottom:324.715500px;}
.y1c_c01229{bottom:349.938000px;}
.y1b_c01229{bottom:375.159000px;}
.y1a_c01229{bottom:400.381500px;}
.y19_c01229{bottom:425.602500px;}
.y18_c01229{bottom:450.825000px;}
.y17_c01229{bottom:476.046000px;}
.y16_c01229{bottom:518.257500px;}
.y15_c01229{bottom:543.480000px;}
.y14_c01229{bottom:585.691500px;}
.y13_c01229{bottom:610.912500px;}
.y12_c01229{bottom:653.124000px;}
.y11_c01229{bottom:678.346500px;}
.y10_c01229{bottom:703.567500px;}
.yf_c01229{bottom:728.790000px;}
.ye_c01229{bottom:754.011000px;}
.yd_c01229{bottom:779.233500px;}
.yc_c01229{bottom:804.454500px;}
.yb_c01229{bottom:829.677000px;}
.ya_c01229{bottom:854.898000px;}
.y9_c01229{bottom:880.120500px;}
.y8_c01229{bottom:905.341500px;}
.y7_c01229{bottom:930.564000px;}
.y6_c01229{bottom:972.775500px;}
.y5_c01229{bottom:997.996500px;}
.y4_c01229{bottom:1023.219000px;}
.y3_c01229{bottom:1048.440000px;}
.y2_c01229{bottom:1073.662500px;}
.y1_c01229{bottom:1140.615000px;}
.h4_c01229{height:49.090500px;}
.h2_c01229{height:53.797500px;}
.h3_c01229{height:56.074320px;}
.h5_c01229{height:56.080320px;}
.h1_c01229{height:1263.750000px;}
.h0_c01229{height:1264.110000px;}
.w0_c01229{width:893.869500px;}
.w1_c01229{width:894.000000px;}
.x0_c01229{left:0.000000px;}
.x3_c01229{left:127.558500px;}
.x2_c01229{left:159.838500px;}
.x1_c01229{left:739.972500px;}
@media print{
.v0_c01229{vertical-align:0.000000pt;}
.v1_c01229{vertical-align:21.109333pt;}
.ls2_c01229{letter-spacing:0.000000pt;}
.ls1_c01229{letter-spacing:2.666293pt;}
.ls0_c01229{letter-spacing:2.671627pt;}
.ws0_c01229{word-spacing:-0.063760pt;}
.ws1_c01229{word-spacing:-0.058181pt;}
.ws1e_c01229{word-spacing:0.000000pt;}
.wsd_c01229{word-spacing:13.788976pt;}
.wse_c01229{word-spacing:14.545333pt;}
.wsa_c01229{word-spacing:14.778059pt;}
.ws3_c01229{word-spacing:14.952603pt;}
.wsb_c01229{word-spacing:15.418053pt;}
.ws1c_c01229{word-spacing:16.174411pt;}
.ws9_c01229{word-spacing:16.290773pt;}
.ws1a_c01229{word-spacing:16.465317pt;}
.wsc_c01229{word-spacing:17.396219pt;}
.ws4_c01229{word-spacing:17.803488pt;}
.ws8_c01229{word-spacing:18.036213pt;}
.ws5_c01229{word-spacing:18.094395pt;}
.ws6_c01229{word-spacing:19.316203pt;}
.ws13_c01229{word-spacing:19.374384pt;}
.ws10_c01229{word-spacing:19.781653pt;}
.ws18_c01229{word-spacing:21.178005pt;}
.ws12_c01229{word-spacing:21.701637pt;}
.ws7_c01229{word-spacing:21.818000pt;}
.ws16_c01229{word-spacing:22.167088pt;}
.ws1b_c01229{word-spacing:22.574357pt;}
.wsf_c01229{word-spacing:22.865264pt;}
.ws19_c01229{word-spacing:22.981627pt;}
.ws2_c01229{word-spacing:23.214352pt;}
.ws14_c01229{word-spacing:24.436160pt;}
.ws11_c01229{word-spacing:24.494341pt;}
.ws17_c01229{word-spacing:24.610704pt;}
.ws15_c01229{word-spacing:25.425243pt;}
.ws1d_c01229{word-spacing:28.799760pt;}
._2_c01229{margin-left:-30.719744pt;}
._0_c01229{margin-left:-29.035152pt;}
._9_c01229{margin-left:-28.096251pt;}
._5_c01229{margin-left:-22.574357pt;}
._4_c01229{margin-left:-6.688187pt;}
._6_c01229{margin-left:-4.887232pt;}
._8_c01229{margin-left:-3.316336pt;}
._3_c01229{margin-left:-1.570896pt;}
._7_c01229{width:1.512715pt;}
._1_c01229{width:24.959792pt;}
.fs2_c01229{font-size:42.506667pt;}
.fs1_c01229{font-size:58.181333pt;}
.fs0_c01229{font-size:63.760000pt;}
.y0_c01229{bottom:0.000000pt;}
.y25_c01229{bottom:63.976000pt;}
.y24_c01229{bottom:86.394667pt;}
.y23_c01229{bottom:108.814667pt;}
.y22_c01229{bottom:146.336000pt;}
.y21_c01229{bottom:183.857333pt;}
.y20_c01229{bottom:206.276000pt;}
.y1f_c01229{bottom:243.797333pt;}
.y1e_c01229{bottom:266.217333pt;}
.y1d_c01229{bottom:288.636000pt;}
.y1c_c01229{bottom:311.056000pt;}
.y1b_c01229{bottom:333.474667pt;}
.y1a_c01229{bottom:355.894667pt;}
.y19_c01229{bottom:378.313333pt;}
.y18_c01229{bottom:400.733333pt;}
.y17_c01229{bottom:423.152000pt;}
.y16_c01229{bottom:460.673333pt;}
.y15_c01229{bottom:483.093333pt;}
.y14_c01229{bottom:520.614667pt;}
.y13_c01229{bottom:543.033333pt;}
.y12_c01229{bottom:580.554667pt;}
.y11_c01229{bottom:602.974667pt;}
.y10_c01229{bottom:625.393333pt;}
.yf_c01229{bottom:647.813333pt;}
.ye_c01229{bottom:670.232000pt;}
.yd_c01229{bottom:692.652000pt;}
.yc_c01229{bottom:715.070667pt;}
.yb_c01229{bottom:737.490667pt;}
.ya_c01229{bottom:759.909333pt;}
.y9_c01229{bottom:782.329333pt;}
.y8_c01229{bottom:804.748000pt;}
.y7_c01229{bottom:827.168000pt;}
.y6_c01229{bottom:864.689333pt;}
.y5_c01229{bottom:887.108000pt;}
.y4_c01229{bottom:909.528000pt;}
.y3_c01229{bottom:931.946667pt;}
.y2_c01229{bottom:954.366667pt;}
.y1_c01229{bottom:1013.880000pt;}
.h4_c01229{height:43.636000pt;}
.h2_c01229{height:47.820000pt;}
.h3_c01229{height:49.843840pt;}
.h5_c01229{height:49.849173pt;}
.h1_c01229{height:1123.333333pt;}
.h0_c01229{height:1123.653333pt;}
.w0_c01229{width:794.550667pt;}
.w1_c01229{width:794.666667pt;}
.x0_c01229{left:0.000000pt;}
.x3_c01229{left:113.385333pt;}
.x2_c01229{left:142.078667pt;}
.x1_c01229{left:657.753333pt;}
}





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

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





.ff0_c01230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01230;src:url('chunks/assets/font_17ac058dd097a7515f919108.woff2')format("woff");}.ff1_c01230{font-family:ff1_c01230;line-height:1.001000;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_c01230;src:url('chunks/assets/font_89215e71a69cb8749ed2c666.woff2')format("woff");}.ff2_c01230{font-family:ff2_c01230;line-height:1.000000;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_c01230;src:url('chunks/assets/font_e5393c0a8eb939501b6f3d8e.woff2')format("woff");}.ff3_c01230{font-family:ff3_c01230;line-height:1.000000;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_c01230;src:url('chunks/assets/font_fa16e3171d2e1400f8d201df.woff2')format("woff");}.ff4_c01230{font-family:ff4_c01230;line-height:0.913000;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_c01230;src:url('chunks/assets/font_afd06d0661b2ac375d07ae0a.woff2')format("woff");}.ff5_c01230{font-family:ff5_c01230;line-height:1.000000;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_c01230{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_c01230{vertical-align:0.000000px;}
.ls1_c01230{letter-spacing:0.000000px;}
.ls0_c01230{letter-spacing:21.819000px;}
.sc__c01230{text-shadow:none;}
.sc0_c01230{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__c01230{-webkit-text-stroke:0px transparent;}
.sc0_c01230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01230{word-spacing:-0.071730px;}
.ws19_c01230{word-spacing:-0.065454px;}
.ws1b_c01230{word-spacing:0.000000px;}
.wsc_c01230{word-spacing:15.708960px;}
.ws17_c01230{word-spacing:17.672580px;}
.wse_c01230{word-spacing:17.868942px;}
.ws18_c01230{word-spacing:19.178022px;}
.ws13_c01230{word-spacing:20.618010px;}
.ws16_c01230{word-spacing:20.683464px;}
.wsf_c01230{word-spacing:21.403458px;}
.ws14_c01230{word-spacing:21.534366px;}
.ws10_c01230{word-spacing:21.730728px;}
.ws1_c01230{word-spacing:21.796182px;}
.ws12_c01230{word-spacing:21.927090px;}
.ws15_c01230{word-spacing:22.319814px;}
.ws11_c01230{word-spacing:23.301624px;}
.wsb_c01230{word-spacing:23.367078px;}
.ws8_c01230{word-spacing:23.694348px;}
.ws2_c01230{word-spacing:25.003428px;}
.ws4_c01230{word-spacing:25.068882px;}
.wsa_c01230{word-spacing:25.657968px;}
.ws9_c01230{word-spacing:26.247054px;}
.ws1a_c01230{word-spacing:26.312508px;}
.ws5_c01230{word-spacing:26.443416px;}
.ws7_c01230{word-spacing:26.901594px;}
.ws3_c01230{word-spacing:27.032502px;}
.wsd_c01230{word-spacing:27.425226px;}
.ws6_c01230{word-spacing:28.014312px;}
._2_c01230{margin-left:-39.730578px;}
._4_c01230{margin-left:-38.707620px;}
._6_c01230{margin-left:-35.214252px;}
._5_c01230{margin-left:-32.988816px;}
._7_c01230{margin-left:-30.894288px;}
._b_c01230{margin-left:-25.461606px;}
._a_c01230{margin-left:-7.396302px;}
._9_c01230{margin-left:-5.432682px;}
._3_c01230{margin-left:-3.837480px;}
._0_c01230{margin-left:-1.832712px;}
._1_c01230{width:2.094528px;}
._c_c01230{width:3.272700px;}
._8_c01230{width:28.210674px;}
.fc0_c01230{color:rgb(0,0,0);}
.fs1_c01230{font-size:65.454000px;}
.fs0_c01230{font-size:71.730000px;}
.y0_c01230{bottom:0.000000px;}
.y23_c01230{bottom:71.973000px;}
.y22_c01230{bottom:97.194000px;}
.y21_c01230{bottom:122.416500px;}
.y20_c01230{bottom:164.491500px;}
.y1f_c01230{bottom:189.714000px;}
.y1e_c01230{bottom:214.935000px;}
.y1d_c01230{bottom:240.157500px;}
.y1c_c01230{bottom:265.378500px;}
.y1b_c01230{bottom:290.601000px;}
.y1a_c01230{bottom:315.822000px;}
.y19_c01230{bottom:341.044500px;}
.y18_c01230{bottom:383.119500px;}
.y17_c01230{bottom:408.342000px;}
.y16_c01230{bottom:433.563000px;}
.y15_c01230{bottom:458.785500px;}
.y14_c01230{bottom:484.006500px;}
.y13_c01230{bottom:509.229000px;}
.y12_c01230{bottom:551.304000px;}
.y11_c01230{bottom:576.526500px;}
.y10_c01230{bottom:601.747500px;}
.yf_c01230{bottom:626.970000px;}
.ye_c01230{bottom:652.191000px;}
.yd_c01230{bottom:677.413500px;}
.yc_c01230{bottom:719.488500px;}
.yb_c01230{bottom:744.711000px;}
.ya_c01230{bottom:769.932000px;}
.y9_c01230{bottom:795.154500px;}
.y8_c01230{bottom:820.375500px;}
.y7_c01230{bottom:845.598000px;}
.y6_c01230{bottom:870.819000px;}
.y5_c01230{bottom:912.895500px;}
.y4_c01230{bottom:938.116500px;}
.y3_c01230{bottom:997.462500px;}
.y2_c01230{bottom:1073.662500px;}
.y1_c01230{bottom:1140.615000px;}
.h3_c01230{height:49.090500px;}
.h2_c01230{height:53.797500px;}
.h1_c01230{height:1263.750000px;}
.h0_c01230{height:1264.110000px;}
.w0_c01230{width:893.869500px;}
.w1_c01230{width:894.000000px;}
.x0_c01230{left:0.000000px;}
.x4_c01230{left:127.558500px;}
.x2_c01230{left:159.838500px;}
.x3_c01230{left:437.526000px;}
.x1_c01230{left:739.972500px;}
@media print{
.v0_c01230{vertical-align:0.000000pt;}
.ls1_c01230{letter-spacing:0.000000pt;}
.ls0_c01230{letter-spacing:19.394667pt;}
.ws0_c01230{word-spacing:-0.063760pt;}
.ws19_c01230{word-spacing:-0.058181pt;}
.ws1b_c01230{word-spacing:0.000000pt;}
.wsc_c01230{word-spacing:13.963520pt;}
.ws17_c01230{word-spacing:15.708960pt;}
.wse_c01230{word-spacing:15.883504pt;}
.ws18_c01230{word-spacing:17.047131pt;}
.ws13_c01230{word-spacing:18.327120pt;}
.ws16_c01230{word-spacing:18.385301pt;}
.wsf_c01230{word-spacing:19.025296pt;}
.ws14_c01230{word-spacing:19.141659pt;}
.ws10_c01230{word-spacing:19.316203pt;}
.ws1_c01230{word-spacing:19.374384pt;}
.ws12_c01230{word-spacing:19.490747pt;}
.ws15_c01230{word-spacing:19.839835pt;}
.ws11_c01230{word-spacing:20.712555pt;}
.wsb_c01230{word-spacing:20.770736pt;}
.ws8_c01230{word-spacing:21.061643pt;}
.ws2_c01230{word-spacing:22.225269pt;}
.ws4_c01230{word-spacing:22.283451pt;}
.wsa_c01230{word-spacing:22.807083pt;}
.ws9_c01230{word-spacing:23.330715pt;}
.ws1a_c01230{word-spacing:23.388896pt;}
.ws5_c01230{word-spacing:23.505259pt;}
.ws7_c01230{word-spacing:23.912528pt;}
.ws3_c01230{word-spacing:24.028891pt;}
.wsd_c01230{word-spacing:24.377979pt;}
.ws6_c01230{word-spacing:24.901611pt;}
._2_c01230{margin-left:-35.316069pt;}
._4_c01230{margin-left:-34.406773pt;}
._6_c01230{margin-left:-31.301557pt;}
._5_c01230{margin-left:-29.323392pt;}
._7_c01230{margin-left:-27.461589pt;}
._b_c01230{margin-left:-22.632539pt;}
._a_c01230{margin-left:-6.574491pt;}
._9_c01230{margin-left:-4.829051pt;}
._3_c01230{margin-left:-3.411093pt;}
._0_c01230{margin-left:-1.629077pt;}
._1_c01230{width:1.861803pt;}
._c_c01230{width:2.909067pt;}
._8_c01230{width:25.076155pt;}
.fs1_c01230{font-size:58.181333pt;}
.fs0_c01230{font-size:63.760000pt;}
.y0_c01230{bottom:0.000000pt;}
.y23_c01230{bottom:63.976000pt;}
.y22_c01230{bottom:86.394667pt;}
.y21_c01230{bottom:108.814667pt;}
.y20_c01230{bottom:146.214667pt;}
.y1f_c01230{bottom:168.634667pt;}
.y1e_c01230{bottom:191.053333pt;}
.y1d_c01230{bottom:213.473333pt;}
.y1c_c01230{bottom:235.892000pt;}
.y1b_c01230{bottom:258.312000pt;}
.y1a_c01230{bottom:280.730667pt;}
.y19_c01230{bottom:303.150667pt;}
.y18_c01230{bottom:340.550667pt;}
.y17_c01230{bottom:362.970667pt;}
.y16_c01230{bottom:385.389333pt;}
.y15_c01230{bottom:407.809333pt;}
.y14_c01230{bottom:430.228000pt;}
.y13_c01230{bottom:452.648000pt;}
.y12_c01230{bottom:490.048000pt;}
.y11_c01230{bottom:512.468000pt;}
.y10_c01230{bottom:534.886667pt;}
.yf_c01230{bottom:557.306667pt;}
.ye_c01230{bottom:579.725333pt;}
.yd_c01230{bottom:602.145333pt;}
.yc_c01230{bottom:639.545333pt;}
.yb_c01230{bottom:661.965333pt;}
.ya_c01230{bottom:684.384000pt;}
.y9_c01230{bottom:706.804000pt;}
.y8_c01230{bottom:729.222667pt;}
.y7_c01230{bottom:751.642667pt;}
.y6_c01230{bottom:774.061333pt;}
.y5_c01230{bottom:811.462667pt;}
.y4_c01230{bottom:833.881333pt;}
.y3_c01230{bottom:886.633333pt;}
.y2_c01230{bottom:954.366667pt;}
.y1_c01230{bottom:1013.880000pt;}
.h3_c01230{height:43.636000pt;}
.h2_c01230{height:47.820000pt;}
.h1_c01230{height:1123.333333pt;}
.h0_c01230{height:1123.653333pt;}
.w0_c01230{width:794.550667pt;}
.w1_c01230{width:794.666667pt;}
.x0_c01230{left:0.000000pt;}
.x4_c01230{left:113.385333pt;}
.x2_c01230{left:142.078667pt;}
.x3_c01230{left:388.912000pt;}
.x1_c01230{left:657.753333pt;}
}





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

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





.ff0_c01231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01231;src:url('chunks/assets/font_a7011d8e283400ce70a944e7.woff2')format("woff");}.ff1_c01231{font-family:ff1_c01231;line-height:1.001000;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_c01231;src:url('chunks/assets/font_4745dccf3322a2513360c1c6.woff2')format("woff");}.ff2_c01231{font-family:ff2_c01231;line-height:1.000000;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_c01231;src:url('chunks/assets/font_7dbfcc809d7c28123510b292.woff2')format("woff");}.ff3_c01231{font-family:ff3_c01231;line-height:1.000000;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_c01231;src:url('chunks/assets/font_b3be7a24391602df60701afe.woff2')format("woff");}.ff4_c01231{font-family:ff4_c01231;line-height:1.000000;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_c01231;src:url('chunks/assets/font_b8876ec05b567bd767cded30.woff2')format("woff");}.ff5_c01231{font-family:ff5_c01231;line-height:0.913000;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_c01231{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_c01231{vertical-align:0.000000px;}
.ls1_c01231{letter-spacing:0.000000px;}
.ls0_c01231{letter-spacing:21.819000px;}
.sc__c01231{text-shadow:none;}
.sc0_c01231{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__c01231{-webkit-text-stroke:0px transparent;}
.sc0_c01231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01231{word-spacing:-0.071730px;}
.ws16_c01231{word-spacing:0.000000px;}
.wsb_c01231{word-spacing:18.327120px;}
.ws3_c01231{word-spacing:18.719844px;}
.wsc_c01231{word-spacing:18.850752px;}
.ws10_c01231{word-spacing:20.618010px;}
.ws4_c01231{word-spacing:21.076188px;}
.ws11_c01231{word-spacing:21.207096px;}
.ws1_c01231{word-spacing:21.730728px;}
.ws12_c01231{word-spacing:23.301624px;}
.ws2_c01231{word-spacing:23.367078px;}
.wsa_c01231{word-spacing:23.890710px;}
.ws13_c01231{word-spacing:24.479796px;}
.ws7_c01231{word-spacing:25.003428px;}
.ws8_c01231{word-spacing:25.086510px;}
.wsd_c01231{word-spacing:26.967048px;}
.ws9_c01231{word-spacing:27.032502px;}
.ws5_c01231{word-spacing:27.490680px;}
.wse_c01231{word-spacing:27.621588px;}
.ws14_c01231{word-spacing:27.883404px;}
.wsf_c01231{word-spacing:27.948858px;}
.ws15_c01231{word-spacing:29.977932px;}
.ws6_c01231{word-spacing:30.763380px;}
._9_c01231{margin-left:-39.468762px;}
._8_c01231{margin-left:-37.570596px;}
._2_c01231{margin-left:-34.559712px;}
._5_c01231{margin-left:-32.727000px;}
._d_c01231{margin-left:-31.614282px;}
._e_c01231{margin-left:-30.370656px;}
._b_c01231{margin-left:-29.257938px;}
._7_c01231{margin-left:-25.396152px;}
._a_c01231{margin-left:-9.163560px;}
._6_c01231{margin-left:-7.396302px;}
._3_c01231{margin-left:-5.432682px;}
._4_c01231{margin-left:-3.338154px;}
._0_c01231{margin-left:-1.832712px;}
._1_c01231{width:1.832712px;}
._c_c01231{width:3.534516px;}
.fc0_c01231{color:rgb(0,0,0);}
.fs1_c01231{font-size:65.454000px;}
.fs0_c01231{font-size:71.730000px;}
.y0_c01231{bottom:0.000000px;}
.y22_c01231{bottom:71.973000px;}
.y21_c01231{bottom:97.194000px;}
.y20_c01231{bottom:122.416500px;}
.y1f_c01231{bottom:165.135000px;}
.y1e_c01231{bottom:190.357500px;}
.y1d_c01231{bottom:215.578500px;}
.y1c_c01231{bottom:240.801000px;}
.y1b_c01231{bottom:283.521000px;}
.y1a_c01231{bottom:308.742000px;}
.y19_c01231{bottom:333.964500px;}
.y18_c01231{bottom:359.185500px;}
.y17_c01231{bottom:401.905500px;}
.y16_c01231{bottom:427.126500px;}
.y15_c01231{bottom:452.349000px;}
.y14_c01231{bottom:477.570000px;}
.y13_c01231{bottom:520.290000px;}
.y12_c01231{bottom:545.511000px;}
.y11_c01231{bottom:570.733500px;}
.y10_c01231{bottom:595.954500px;}
.yf_c01231{bottom:621.177000px;}
.ye_c01231{bottom:646.398000px;}
.yd_c01231{bottom:689.118000px;}
.yc_c01231{bottom:714.339000px;}
.yb_c01231{bottom:739.561500px;}
.ya_c01231{bottom:800.838000px;}
.y9_c01231{bottom:879.612000px;}
.y8_c01231{bottom:904.833000px;}
.y7_c01231{bottom:930.055500px;}
.y6_c01231{bottom:955.278000px;}
.y5_c01231{bottom:980.499000px;}
.y4_c01231{bottom:1005.721500px;}
.y3_c01231{bottom:1048.440000px;}
.y2_c01231{bottom:1073.662500px;}
.y1_c01231{bottom:1140.615000px;}
.h3_c01231{height:49.090500px;}
.h2_c01231{height:53.797500px;}
.h1_c01231{height:1263.750000px;}
.h0_c01231{height:1264.110000px;}
.w0_c01231{width:893.869500px;}
.w1_c01231{width:894.000000px;}
.x0_c01231{left:0.000000px;}
.x2_c01231{left:127.558500px;}
.x3_c01231{left:159.838500px;}
.x4_c01231{left:437.526000px;}
.x1_c01231{left:739.972500px;}
@media print{
.v0_c01231{vertical-align:0.000000pt;}
.ls1_c01231{letter-spacing:0.000000pt;}
.ls0_c01231{letter-spacing:19.394667pt;}
.ws0_c01231{word-spacing:-0.063760pt;}
.ws16_c01231{word-spacing:0.000000pt;}
.wsb_c01231{word-spacing:16.290773pt;}
.ws3_c01231{word-spacing:16.639861pt;}
.wsc_c01231{word-spacing:16.756224pt;}
.ws10_c01231{word-spacing:18.327120pt;}
.ws4_c01231{word-spacing:18.734389pt;}
.ws11_c01231{word-spacing:18.850752pt;}
.ws1_c01231{word-spacing:19.316203pt;}
.ws12_c01231{word-spacing:20.712555pt;}
.ws2_c01231{word-spacing:20.770736pt;}
.wsa_c01231{word-spacing:21.236187pt;}
.ws13_c01231{word-spacing:21.759819pt;}
.ws7_c01231{word-spacing:22.225269pt;}
.ws8_c01231{word-spacing:22.299120pt;}
.wsd_c01231{word-spacing:23.970709pt;}
.ws9_c01231{word-spacing:24.028891pt;}
.ws5_c01231{word-spacing:24.436160pt;}
.wse_c01231{word-spacing:24.552523pt;}
.ws14_c01231{word-spacing:24.785248pt;}
.wsf_c01231{word-spacing:24.843429pt;}
.ws15_c01231{word-spacing:26.647051pt;}
.ws6_c01231{word-spacing:27.345227pt;}
._9_c01231{margin-left:-35.083344pt;}
._8_c01231{margin-left:-33.396085pt;}
._2_c01231{margin-left:-30.719744pt;}
._5_c01231{margin-left:-29.090667pt;}
._d_c01231{margin-left:-28.101584pt;}
._e_c01231{margin-left:-26.996139pt;}
._b_c01231{margin-left:-26.007056pt;}
._7_c01231{margin-left:-22.574357pt;}
._a_c01231{margin-left:-8.145387pt;}
._6_c01231{margin-left:-6.574491pt;}
._3_c01231{margin-left:-4.829051pt;}
._4_c01231{margin-left:-2.967248pt;}
._0_c01231{margin-left:-1.629077pt;}
._1_c01231{width:1.629077pt;}
._c_c01231{width:3.141792pt;}
.fs1_c01231{font-size:58.181333pt;}
.fs0_c01231{font-size:63.760000pt;}
.y0_c01231{bottom:0.000000pt;}
.y22_c01231{bottom:63.976000pt;}
.y21_c01231{bottom:86.394667pt;}
.y20_c01231{bottom:108.814667pt;}
.y1f_c01231{bottom:146.786667pt;}
.y1e_c01231{bottom:169.206667pt;}
.y1d_c01231{bottom:191.625333pt;}
.y1c_c01231{bottom:214.045333pt;}
.y1b_c01231{bottom:252.018667pt;}
.y1a_c01231{bottom:274.437333pt;}
.y19_c01231{bottom:296.857333pt;}
.y18_c01231{bottom:319.276000pt;}
.y17_c01231{bottom:357.249333pt;}
.y16_c01231{bottom:379.668000pt;}
.y15_c01231{bottom:402.088000pt;}
.y14_c01231{bottom:424.506667pt;}
.y13_c01231{bottom:462.480000pt;}
.y12_c01231{bottom:484.898667pt;}
.y11_c01231{bottom:507.318667pt;}
.y10_c01231{bottom:529.737333pt;}
.yf_c01231{bottom:552.157333pt;}
.ye_c01231{bottom:574.576000pt;}
.yd_c01231{bottom:612.549333pt;}
.yc_c01231{bottom:634.968000pt;}
.yb_c01231{bottom:657.388000pt;}
.ya_c01231{bottom:711.856000pt;}
.y9_c01231{bottom:781.877333pt;}
.y8_c01231{bottom:804.296000pt;}
.y7_c01231{bottom:826.716000pt;}
.y6_c01231{bottom:849.136000pt;}
.y5_c01231{bottom:871.554667pt;}
.y4_c01231{bottom:893.974667pt;}
.y3_c01231{bottom:931.946667pt;}
.y2_c01231{bottom:954.366667pt;}
.y1_c01231{bottom:1013.880000pt;}
.h3_c01231{height:43.636000pt;}
.h2_c01231{height:47.820000pt;}
.h1_c01231{height:1123.333333pt;}
.h0_c01231{height:1123.653333pt;}
.w0_c01231{width:794.550667pt;}
.w1_c01231{width:794.666667pt;}
.x0_c01231{left:0.000000pt;}
.x2_c01231{left:113.385333pt;}
.x3_c01231{left:142.078667pt;}
.x4_c01231{left:388.912000pt;}
.x1_c01231{left:657.753333pt;}
}





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

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





.ff0_c01232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01232;src:url('chunks/assets/font_734b93e1f1c56903dfbf6df5.woff2')format("woff");}.ff1_c01232{font-family:ff1_c01232;line-height:1.001000;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_c01232;src:url('chunks/assets/font_8394d2b64264388640f871cb.woff2')format("woff");}.ff2_c01232{font-family:ff2_c01232;line-height:1.000000;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_c01232;src:url('chunks/assets/font_4781a566b56fac7b2a0eda16.woff2')format("woff");}.ff3_c01232{font-family:ff3_c01232;line-height:1.000000;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_c01232;src:url('chunks/assets/font_c1c95b2445270c8d86913e83.woff2')format("woff");}.ff4_c01232{font-family:ff4_c01232;line-height:1.000000;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_c01232{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_c01232{vertical-align:0.000000px;}
.v1_c01232{vertical-align:15.816000px;}
.ls1_c01232{letter-spacing:0.000000px;}
.ls0_c01232{letter-spacing:21.819000px;}
.sc__c01232{text-shadow:none;}
.sc0_c01232{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__c01232{-webkit-text-stroke:0px transparent;}
.sc0_c01232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01232{word-spacing:-0.071730px;}
.wsf_c01232{word-spacing:-0.065454px;}
.ws16_c01232{word-spacing:0.000000px;}
.ws13_c01232{word-spacing:15.447144px;}
.wsd_c01232{word-spacing:16.036230px;}
.ws14_c01232{word-spacing:18.981660px;}
.ws2_c01232{word-spacing:19.112568px;}
.ws10_c01232{word-spacing:20.618010px;}
.wsc_c01232{word-spacing:20.945280px;}
.ws4_c01232{word-spacing:21.730728px;}
.wsb_c01232{word-spacing:21.992544px;}
.wsa_c01232{word-spacing:22.319814px;}
.ws15_c01232{word-spacing:22.450722px;}
.ws1_c01232{word-spacing:23.367078px;}
.ws5_c01232{word-spacing:25.003428px;}
.ws6_c01232{word-spacing:25.068882px;}
.ws7_c01232{word-spacing:25.199790px;}
.ws9_c01232{word-spacing:27.032502px;}
.wse_c01232{word-spacing:27.556134px;}
.ws3_c01232{word-spacing:28.799760px;}
.ws11_c01232{word-spacing:29.192484px;}
.ws8_c01232{word-spacing:29.930790px;}
.ws12_c01232{word-spacing:31.810644px;}
._7_c01232{margin-left:-39.665124px;}
._8_c01232{margin-left:-37.636050px;}
._a_c01232{margin-left:-34.625166px;}
._1_c01232{margin-left:-32.661546px;}
._c_c01232{margin-left:-30.894288px;}
._4_c01232{margin-left:-25.461606px;}
._3_c01232{margin-left:-7.396302px;}
._0_c01232{margin-left:-3.338154px;}
._2_c01232{margin-left:-1.832712px;}
._5_c01232{width:1.832712px;}
._b_c01232{width:19.832562px;}
._d_c01232{width:23.367078px;}
._9_c01232{width:33.474720px;}
._6_c01232{width:34.818576px;}
.fc0_c01232{color:rgb(0,0,0);}
.fs1_c01232{font-size:65.454000px;}
.fs0_c01232{font-size:71.730000px;}
.y0_c01232{bottom:0.000000px;}
.y20_c01232{bottom:71.973000px;}
.y1f_c01232{bottom:97.194000px;}
.y1e_c01232{bottom:138.763500px;}
.y1d_c01232{bottom:163.986000px;}
.y1c_c01232{bottom:205.555500px;}
.y1b_c01232{bottom:247.125000px;}
.y1a_c01232{bottom:272.346000px;}
.y19_c01232{bottom:297.568500px;}
.y18_c01232{bottom:322.789500px;}
.y17_c01232{bottom:364.360500px;}
.y16_c01232{bottom:405.930000px;}
.y15_c01232{bottom:431.151000px;}
.y14_c01232{bottom:456.373500px;}
.y13_c01232{bottom:497.943000px;}
.y12_c01232{bottom:539.512500px;}
.y11_c01232{bottom:564.733500px;}
.y10_c01232{bottom:589.956000px;}
.yf_c01232{bottom:631.525500px;}
.ye_c01232{bottom:656.746500px;}
.yd_c01232{bottom:681.969000px;}
.yc_c01232{bottom:707.190000px;}
.yb_c01232{bottom:732.412500px;}
.ya_c01232{bottom:773.982000px;}
.y9_c01232{bottom:799.203000px;}
.y8_c01232{bottom:840.772500px;}
.y7_c01232{bottom:865.995000px;}
.y6_c01232{bottom:923.821500px;}
.y5_c01232{bottom:997.996500px;}
.y4_c01232{bottom:1023.219000px;}
.y3_c01232{bottom:1048.440000px;}
.y2_c01232{bottom:1073.662500px;}
.y1_c01232{bottom:1140.615000px;}
.h3_c01232{height:49.090500px;}
.h2_c01232{height:53.797500px;}
.h4_c01232{height:64.906500px;}
.h6_c01232{height:65.632500px;}
.h5_c01232{height:65.638500px;}
.h1_c01232{height:1263.750000px;}
.h0_c01232{height:1264.110000px;}
.w0_c01232{width:893.869500px;}
.w1_c01232{width:894.000000px;}
.x0_c01232{left:0.000000px;}
.x3_c01232{left:127.558500px;}
.x2_c01232{left:159.838500px;}
.x7_c01232{left:183.967500px;}
.x6_c01232{left:253.215000px;}
.x5_c01232{left:412.503000px;}
.x4_c01232{left:437.526000px;}
.x1_c01232{left:739.972500px;}
@media print{
.v0_c01232{vertical-align:0.000000pt;}
.v1_c01232{vertical-align:14.058667pt;}
.ls1_c01232{letter-spacing:0.000000pt;}
.ls0_c01232{letter-spacing:19.394667pt;}
.ws0_c01232{word-spacing:-0.063760pt;}
.wsf_c01232{word-spacing:-0.058181pt;}
.ws16_c01232{word-spacing:0.000000pt;}
.ws13_c01232{word-spacing:13.730795pt;}
.wsd_c01232{word-spacing:14.254427pt;}
.ws14_c01232{word-spacing:16.872587pt;}
.ws2_c01232{word-spacing:16.988949pt;}
.ws10_c01232{word-spacing:18.327120pt;}
.wsc_c01232{word-spacing:18.618027pt;}
.ws4_c01232{word-spacing:19.316203pt;}
.wsb_c01232{word-spacing:19.548928pt;}
.wsa_c01232{word-spacing:19.839835pt;}
.ws15_c01232{word-spacing:19.956197pt;}
.ws1_c01232{word-spacing:20.770736pt;}
.ws5_c01232{word-spacing:22.225269pt;}
.ws6_c01232{word-spacing:22.283451pt;}
.ws7_c01232{word-spacing:22.399813pt;}
.ws9_c01232{word-spacing:24.028891pt;}
.wse_c01232{word-spacing:24.494341pt;}
.ws3_c01232{word-spacing:25.599787pt;}
.ws11_c01232{word-spacing:25.948875pt;}
.ws8_c01232{word-spacing:26.605147pt;}
.ws12_c01232{word-spacing:28.276128pt;}
._7_c01232{margin-left:-35.257888pt;}
._8_c01232{margin-left:-33.454267pt;}
._a_c01232{margin-left:-30.777925pt;}
._1_c01232{margin-left:-29.032485pt;}
._c_c01232{margin-left:-27.461589pt;}
._4_c01232{margin-left:-22.632539pt;}
._3_c01232{margin-left:-6.574491pt;}
._0_c01232{margin-left:-2.967248pt;}
._2_c01232{margin-left:-1.629077pt;}
._5_c01232{width:1.629077pt;}
._b_c01232{width:17.628944pt;}
._d_c01232{width:20.770736pt;}
._9_c01232{width:29.755307pt;}
._6_c01232{width:30.949845pt;}
.fs1_c01232{font-size:58.181333pt;}
.fs0_c01232{font-size:63.760000pt;}
.y0_c01232{bottom:0.000000pt;}
.y20_c01232{bottom:63.976000pt;}
.y1f_c01232{bottom:86.394667pt;}
.y1e_c01232{bottom:123.345333pt;}
.y1d_c01232{bottom:145.765333pt;}
.y1c_c01232{bottom:182.716000pt;}
.y1b_c01232{bottom:219.666667pt;}
.y1a_c01232{bottom:242.085333pt;}
.y19_c01232{bottom:264.505333pt;}
.y18_c01232{bottom:286.924000pt;}
.y17_c01232{bottom:323.876000pt;}
.y16_c01232{bottom:360.826667pt;}
.y15_c01232{bottom:383.245333pt;}
.y14_c01232{bottom:405.665333pt;}
.y13_c01232{bottom:442.616000pt;}
.y12_c01232{bottom:479.566667pt;}
.y11_c01232{bottom:501.985333pt;}
.y10_c01232{bottom:524.405333pt;}
.yf_c01232{bottom:561.356000pt;}
.ye_c01232{bottom:583.774667pt;}
.yd_c01232{bottom:606.194667pt;}
.yc_c01232{bottom:628.613333pt;}
.yb_c01232{bottom:651.033333pt;}
.ya_c01232{bottom:687.984000pt;}
.y9_c01232{bottom:710.402667pt;}
.y8_c01232{bottom:747.353333pt;}
.y7_c01232{bottom:769.773333pt;}
.y6_c01232{bottom:821.174667pt;}
.y5_c01232{bottom:887.108000pt;}
.y4_c01232{bottom:909.528000pt;}
.y3_c01232{bottom:931.946667pt;}
.y2_c01232{bottom:954.366667pt;}
.y1_c01232{bottom:1013.880000pt;}
.h3_c01232{height:43.636000pt;}
.h2_c01232{height:47.820000pt;}
.h4_c01232{height:57.694667pt;}
.h6_c01232{height:58.340000pt;}
.h5_c01232{height:58.345333pt;}
.h1_c01232{height:1123.333333pt;}
.h0_c01232{height:1123.653333pt;}
.w0_c01232{width:794.550667pt;}
.w1_c01232{width:794.666667pt;}
.x0_c01232{left:0.000000pt;}
.x3_c01232{left:113.385333pt;}
.x2_c01232{left:142.078667pt;}
.x7_c01232{left:163.526667pt;}
.x6_c01232{left:225.080000pt;}
.x5_c01232{left:366.669333pt;}
.x4_c01232{left:388.912000pt;}
.x1_c01232{left:657.753333pt;}
}





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

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





.ff0_c01233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01233;src:url('chunks/assets/font_fdd2173c07525c142f19b350.woff2')format("woff");}.ff1_c01233{font-family:ff1_c01233;line-height:1.001000;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_c01233;src:url('chunks/assets/font_cac80eb76bc3c33fd0ccac44.woff2')format("woff");}.ff2_c01233{font-family:ff2_c01233;line-height:1.000000;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_c01233;src:url('chunks/assets/font_6eaf71b11eb4d3db8f31c0a5.woff2')format("woff");}.ff3_c01233{font-family:ff3_c01233;line-height:1.000000;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_c01233{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_c01233{vertical-align:0.000000px;}
.v1_c01233{vertical-align:16.542000px;}
.ls0_c01233{letter-spacing:0.000000px;}
.sc__c01233{text-shadow:none;}
.sc0_c01233{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__c01233{-webkit-text-stroke:0px transparent;}
.sc0_c01233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01233{word-spacing:-0.071730px;}
.ws13_c01233{word-spacing:0.000000px;}
.ws1_c01233{word-spacing:18.981660px;}
.ws2_c01233{word-spacing:19.701654px;}
.ws4_c01233{word-spacing:20.356194px;}
.wsa_c01233{word-spacing:20.945280px;}
.ws6_c01233{word-spacing:21.730728px;}
.ws7_c01233{word-spacing:21.796182px;}
.ws5_c01233{word-spacing:22.254360px;}
.wsb_c01233{word-spacing:23.236170px;}
.ws11_c01233{word-spacing:23.563440px;}
.ws10_c01233{word-spacing:24.152526px;}
.ws8_c01233{word-spacing:24.348888px;}
.wsc_c01233{word-spacing:24.676158px;}
.wsf_c01233{word-spacing:24.741612px;}
.ws12_c01233{word-spacing:24.937974px;}
.ws9_c01233{word-spacing:25.003428px;}
.ws3_c01233{word-spacing:26.443416px;}
.wsd_c01233{word-spacing:28.668852px;}
.wse_c01233{word-spacing:32.137914px;}
._5_c01233{margin-left:-39.599670px;}
._4_c01233{margin-left:-37.636050px;}
._3_c01233{margin-left:-34.559712px;}
._0_c01233{margin-left:-32.727000px;}
._a_c01233{margin-left:-31.090650px;}
._6_c01233{margin-left:-5.432682px;}
._9_c01233{margin-left:-3.927240px;}
._1_c01233{margin-left:-1.832712px;}
._2_c01233{width:2.029074px;}
._8_c01233{width:8.661996px;}
._7_c01233{width:10.865364px;}
.fc0_c01233{color:rgb(0,0,0);}
.fs1_c01233{font-size:65.454000px;}
.fs0_c01233{font-size:71.730000px;}
.y0_c01233{bottom:0.000000px;}
.y20_c01233{bottom:91.539000px;}
.y1f_c01233{bottom:116.760000px;}
.y1e_c01233{bottom:141.982500px;}
.y1d_c01233{bottom:167.203500px;}
.y1c_c01233{bottom:192.426000px;}
.y1b_c01233{bottom:217.647000px;}
.y1a_c01233{bottom:242.869500px;}
.y19_c01233{bottom:268.090500px;}
.y18_c01233{bottom:293.313000px;}
.y17_c01233{bottom:336.466500px;}
.y16_c01233{bottom:361.689000px;}
.y15_c01233{bottom:386.910000px;}
.y14_c01233{bottom:412.132500px;}
.y13_c01233{bottom:455.286000px;}
.y12_c01233{bottom:480.508500px;}
.y11_c01233{bottom:505.729500px;}
.y10_c01233{bottom:530.952000px;}
.yf_c01233{bottom:556.173000px;}
.ye_c01233{bottom:599.328000px;}
.yd_c01233{bottom:624.550500px;}
.yc_c01233{bottom:649.771500px;}
.yb_c01233{bottom:712.353000px;}
.ya_c01233{bottom:792.868500px;}
.y9_c01233{bottom:836.022000px;}
.y8_c01233{bottom:861.244500px;}
.y7_c01233{bottom:904.398000px;}
.y6_c01233{bottom:929.620500px;}
.y5_c01233{bottom:954.841500px;}
.y4_c01233{bottom:980.064000px;}
.y3_c01233{bottom:1005.285000px;}
.y2_c01233{bottom:1073.662500px;}
.y1_c01233{bottom:1140.615000px;}
.h3_c01233{height:49.090500px;}
.h2_c01233{height:53.797500px;}
.h4_c01233{height:65.632500px;}
.h1_c01233{height:1263.750000px;}
.h0_c01233{height:1264.110000px;}
.w0_c01233{width:893.869500px;}
.w1_c01233{width:894.000000px;}
.x0_c01233{left:0.000000px;}
.x3_c01233{left:127.558500px;}
.x2_c01233{left:159.838500px;}
.x5_c01233{left:263.247000px;}
.x4_c01233{left:437.526000px;}
.x1_c01233{left:739.972500px;}
@media print{
.v0_c01233{vertical-align:0.000000pt;}
.v1_c01233{vertical-align:14.704000pt;}
.ls0_c01233{letter-spacing:0.000000pt;}
.ws0_c01233{word-spacing:-0.063760pt;}
.ws13_c01233{word-spacing:0.000000pt;}
.ws1_c01233{word-spacing:16.872587pt;}
.ws2_c01233{word-spacing:17.512581pt;}
.ws4_c01233{word-spacing:18.094395pt;}
.wsa_c01233{word-spacing:18.618027pt;}
.ws6_c01233{word-spacing:19.316203pt;}
.ws7_c01233{word-spacing:19.374384pt;}
.ws5_c01233{word-spacing:19.781653pt;}
.wsb_c01233{word-spacing:20.654373pt;}
.ws11_c01233{word-spacing:20.945280pt;}
.ws10_c01233{word-spacing:21.468912pt;}
.ws8_c01233{word-spacing:21.643456pt;}
.wsc_c01233{word-spacing:21.934363pt;}
.wsf_c01233{word-spacing:21.992544pt;}
.ws12_c01233{word-spacing:22.167088pt;}
.ws9_c01233{word-spacing:22.225269pt;}
.ws3_c01233{word-spacing:23.505259pt;}
.wsd_c01233{word-spacing:25.483424pt;}
.wse_c01233{word-spacing:28.567035pt;}
._5_c01233{margin-left:-35.199707pt;}
._4_c01233{margin-left:-33.454267pt;}
._3_c01233{margin-left:-30.719744pt;}
._0_c01233{margin-left:-29.090667pt;}
._a_c01233{margin-left:-27.636133pt;}
._6_c01233{margin-left:-4.829051pt;}
._9_c01233{margin-left:-3.490880pt;}
._1_c01233{margin-left:-1.629077pt;}
._2_c01233{width:1.803621pt;}
._8_c01233{width:7.699552pt;}
._7_c01233{width:9.658101pt;}
.fs1_c01233{font-size:58.181333pt;}
.fs0_c01233{font-size:63.760000pt;}
.y0_c01233{bottom:0.000000pt;}
.y20_c01233{bottom:81.368000pt;}
.y1f_c01233{bottom:103.786667pt;}
.y1e_c01233{bottom:126.206667pt;}
.y1d_c01233{bottom:148.625333pt;}
.y1c_c01233{bottom:171.045333pt;}
.y1b_c01233{bottom:193.464000pt;}
.y1a_c01233{bottom:215.884000pt;}
.y19_c01233{bottom:238.302667pt;}
.y18_c01233{bottom:260.722667pt;}
.y17_c01233{bottom:299.081333pt;}
.y16_c01233{bottom:321.501333pt;}
.y15_c01233{bottom:343.920000pt;}
.y14_c01233{bottom:366.340000pt;}
.y13_c01233{bottom:404.698667pt;}
.y12_c01233{bottom:427.118667pt;}
.y11_c01233{bottom:449.537333pt;}
.y10_c01233{bottom:471.957333pt;}
.yf_c01233{bottom:494.376000pt;}
.ye_c01233{bottom:532.736000pt;}
.yd_c01233{bottom:555.156000pt;}
.yc_c01233{bottom:577.574667pt;}
.yb_c01233{bottom:633.202667pt;}
.ya_c01233{bottom:704.772000pt;}
.y9_c01233{bottom:743.130667pt;}
.y8_c01233{bottom:765.550667pt;}
.y7_c01233{bottom:803.909333pt;}
.y6_c01233{bottom:826.329333pt;}
.y5_c01233{bottom:848.748000pt;}
.y4_c01233{bottom:871.168000pt;}
.y3_c01233{bottom:893.586667pt;}
.y2_c01233{bottom:954.366667pt;}
.y1_c01233{bottom:1013.880000pt;}
.h3_c01233{height:43.636000pt;}
.h2_c01233{height:47.820000pt;}
.h4_c01233{height:58.340000pt;}
.h1_c01233{height:1123.333333pt;}
.h0_c01233{height:1123.653333pt;}
.w0_c01233{width:794.550667pt;}
.w1_c01233{width:794.666667pt;}
.x0_c01233{left:0.000000pt;}
.x3_c01233{left:113.385333pt;}
.x2_c01233{left:142.078667pt;}
.x5_c01233{left:233.997333pt;}
.x4_c01233{left:388.912000pt;}
.x1_c01233{left:657.753333pt;}
}





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

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





.ff0_c01234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01234;src:url('chunks/assets/font_5563de4f5903297abc8f9d54.woff2')format("woff");}.ff1_c01234{font-family:ff1_c01234;line-height:1.001000;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_c01234;src:url('chunks/assets/font_09d2d556f5be59cec357816a.woff2')format("woff");}.ff2_c01234{font-family:ff2_c01234;line-height:1.000000;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_c01234{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_c01234{vertical-align:0.000000px;}
.v1_c01234{vertical-align:16.548000px;}
.ls0_c01234{letter-spacing:0.000000px;}
.sc__c01234{text-shadow:none;}
.sc0_c01234{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__c01234{-webkit-text-stroke:0px transparent;}
.sc0_c01234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01234{word-spacing:-0.071730px;}
.ws4_c01234{word-spacing:-0.065454px;}
.ws16_c01234{word-spacing:0.000000px;}
.ws7_c01234{word-spacing:18.261666px;}
.wsa_c01234{word-spacing:20.356194px;}
.wsf_c01234{word-spacing:20.487102px;}
.wse_c01234{word-spacing:20.814372px;}
.ws2_c01234{word-spacing:21.665274px;}
.ws1_c01234{word-spacing:21.730728px;}
.ws9_c01234{word-spacing:21.796182px;}
.ws8_c01234{word-spacing:22.908900px;}
.ws6_c01234{word-spacing:23.432532px;}
.ws5_c01234{word-spacing:24.021618px;}
.ws13_c01234{word-spacing:24.217980px;}
.ws11_c01234{word-spacing:24.741612px;}
.wsc_c01234{word-spacing:25.396152px;}
.ws14_c01234{word-spacing:25.657968px;}
.ws10_c01234{word-spacing:26.116146px;}
.wsd_c01234{word-spacing:26.508870px;}
.wsb_c01234{word-spacing:27.359772px;}
.ws3_c01234{word-spacing:28.276128px;}
.ws12_c01234{word-spacing:30.370656px;}
.ws15_c01234{word-spacing:32.530638px;}
._5_c01234{margin-left:-34.428804px;}
._3_c01234{margin-left:-32.727000px;}
._a_c01234{margin-left:-30.959742px;}
._1_c01234{margin-left:-25.461606px;}
._0_c01234{margin-left:-7.265394px;}
._9_c01234{margin-left:-5.629044px;}
._6_c01234{margin-left:-4.560462px;}
._2_c01234{margin-left:-1.767258px;}
._4_c01234{width:1.767258px;}
._c_c01234{width:2.945430px;}
._b_c01234{width:4.298646px;}
._7_c01234{width:5.931318px;}
._8_c01234{width:9.078288px;}
.fc0_c01234{color:rgb(0,0,0);}
.fs1_c01234{font-size:65.454000px;}
.fs0_c01234{font-size:71.730000px;}
.y0_c01234{bottom:0.000000px;}
.y26_c01234{bottom:76.015500px;}
.y25_c01234{bottom:101.236500px;}
.y24_c01234{bottom:126.459000px;}
.y23_c01234{bottom:151.680000px;}
.y22_c01234{bottom:176.902500px;}
.y21_c01234{bottom:202.123500px;}
.y20_c01234{bottom:227.346000px;}
.y1f_c01234{bottom:270.499500px;}
.y1e_c01234{bottom:295.722000px;}
.y1d_c01234{bottom:320.943000px;}
.y1c_c01234{bottom:346.165500px;}
.y1b_c01234{bottom:371.386500px;}
.y1a_c01234{bottom:396.609000px;}
.y19_c01234{bottom:421.830000px;}
.y18_c01234{bottom:447.052500px;}
.y17_c01234{bottom:472.273500px;}
.y16_c01234{bottom:497.496000px;}
.y15_c01234{bottom:522.717000px;}
.y14_c01234{bottom:547.939500px;}
.y13_c01234{bottom:591.094500px;}
.y12_c01234{bottom:616.315500px;}
.y11_c01234{bottom:641.538000px;}
.y10_c01234{bottom:666.759000px;}
.yf_c01234{bottom:691.981500px;}
.ye_c01234{bottom:735.135000px;}
.yd_c01234{bottom:760.357500px;}
.yc_c01234{bottom:785.578500px;}
.yb_c01234{bottom:828.733500px;}
.ya_c01234{bottom:853.954500px;}
.y9_c01234{bottom:879.177000px;}
.y8_c01234{bottom:904.398000px;}
.y7_c01234{bottom:947.553000px;}
.y6_c01234{bottom:972.775500px;}
.y5_c01234{bottom:997.996500px;}
.y4_c01234{bottom:1023.219000px;}
.y3_c01234{bottom:1048.440000px;}
.y2_c01234{bottom:1073.662500px;}
.y1_c01234{bottom:1140.615000px;}
.h3_c01234{height:49.090500px;}
.h2_c01234{height:53.797500px;}
.h5_c01234{height:65.632500px;}
.h4_c01234{height:65.638500px;}
.h1_c01234{height:1263.750000px;}
.h0_c01234{height:1264.110000px;}
.w0_c01234{width:893.869500px;}
.w1_c01234{width:894.000000px;}
.x0_c01234{left:0.000000px;}
.x3_c01234{left:127.558500px;}
.x2_c01234{left:159.838500px;}
.x6_c01234{left:266.656500px;}
.x4_c01234{left:276.883500px;}
.x8_c01234{left:279.156000px;}
.x5_c01234{left:360.066000px;}
.x7_c01234{left:415.519500px;}
.x1_c01234{left:739.972500px;}
@media print{
.v0_c01234{vertical-align:0.000000pt;}
.v1_c01234{vertical-align:14.709333pt;}
.ls0_c01234{letter-spacing:0.000000pt;}
.ws0_c01234{word-spacing:-0.063760pt;}
.ws4_c01234{word-spacing:-0.058181pt;}
.ws16_c01234{word-spacing:0.000000pt;}
.ws7_c01234{word-spacing:16.232592pt;}
.wsa_c01234{word-spacing:18.094395pt;}
.wsf_c01234{word-spacing:18.210757pt;}
.wse_c01234{word-spacing:18.501664pt;}
.ws2_c01234{word-spacing:19.258021pt;}
.ws1_c01234{word-spacing:19.316203pt;}
.ws9_c01234{word-spacing:19.374384pt;}
.ws8_c01234{word-spacing:20.363467pt;}
.ws6_c01234{word-spacing:20.828917pt;}
.ws5_c01234{word-spacing:21.352549pt;}
.ws13_c01234{word-spacing:21.527093pt;}
.ws11_c01234{word-spacing:21.992544pt;}
.wsc_c01234{word-spacing:22.574357pt;}
.ws14_c01234{word-spacing:22.807083pt;}
.ws10_c01234{word-spacing:23.214352pt;}
.wsd_c01234{word-spacing:23.563440pt;}
.wsb_c01234{word-spacing:24.319797pt;}
.ws3_c01234{word-spacing:25.134336pt;}
.ws12_c01234{word-spacing:26.996139pt;}
.ws15_c01234{word-spacing:28.916123pt;}
._5_c01234{margin-left:-30.603381pt;}
._3_c01234{margin-left:-29.090667pt;}
._a_c01234{margin-left:-27.519771pt;}
._1_c01234{margin-left:-22.632539pt;}
._0_c01234{margin-left:-6.458128pt;}
._9_c01234{margin-left:-5.003595pt;}
._6_c01234{margin-left:-4.053744pt;}
._2_c01234{margin-left:-1.570896pt;}
._4_c01234{width:1.570896pt;}
._c_c01234{width:2.618160pt;}
._b_c01234{width:3.821019pt;}
._7_c01234{width:5.272283pt;}
._8_c01234{width:8.069589pt;}
.fs1_c01234{font-size:58.181333pt;}
.fs0_c01234{font-size:63.760000pt;}
.y0_c01234{bottom:0.000000pt;}
.y26_c01234{bottom:67.569333pt;}
.y25_c01234{bottom:89.988000pt;}
.y24_c01234{bottom:112.408000pt;}
.y23_c01234{bottom:134.826667pt;}
.y22_c01234{bottom:157.246667pt;}
.y21_c01234{bottom:179.665333pt;}
.y20_c01234{bottom:202.085333pt;}
.y1f_c01234{bottom:240.444000pt;}
.y1e_c01234{bottom:262.864000pt;}
.y1d_c01234{bottom:285.282667pt;}
.y1c_c01234{bottom:307.702667pt;}
.y1b_c01234{bottom:330.121333pt;}
.y1a_c01234{bottom:352.541333pt;}
.y19_c01234{bottom:374.960000pt;}
.y18_c01234{bottom:397.380000pt;}
.y17_c01234{bottom:419.798667pt;}
.y16_c01234{bottom:442.218667pt;}
.y15_c01234{bottom:464.637333pt;}
.y14_c01234{bottom:487.057333pt;}
.y13_c01234{bottom:525.417333pt;}
.y12_c01234{bottom:547.836000pt;}
.y11_c01234{bottom:570.256000pt;}
.y10_c01234{bottom:592.674667pt;}
.yf_c01234{bottom:615.094667pt;}
.ye_c01234{bottom:653.453333pt;}
.yd_c01234{bottom:675.873333pt;}
.yc_c01234{bottom:698.292000pt;}
.yb_c01234{bottom:736.652000pt;}
.ya_c01234{bottom:759.070667pt;}
.y9_c01234{bottom:781.490667pt;}
.y8_c01234{bottom:803.909333pt;}
.y7_c01234{bottom:842.269333pt;}
.y6_c01234{bottom:864.689333pt;}
.y5_c01234{bottom:887.108000pt;}
.y4_c01234{bottom:909.528000pt;}
.y3_c01234{bottom:931.946667pt;}
.y2_c01234{bottom:954.366667pt;}
.y1_c01234{bottom:1013.880000pt;}
.h3_c01234{height:43.636000pt;}
.h2_c01234{height:47.820000pt;}
.h5_c01234{height:58.340000pt;}
.h4_c01234{height:58.345333pt;}
.h1_c01234{height:1123.333333pt;}
.h0_c01234{height:1123.653333pt;}
.w0_c01234{width:794.550667pt;}
.w1_c01234{width:794.666667pt;}
.x0_c01234{left:0.000000pt;}
.x3_c01234{left:113.385333pt;}
.x2_c01234{left:142.078667pt;}
.x6_c01234{left:237.028000pt;}
.x4_c01234{left:246.118667pt;}
.x8_c01234{left:248.138667pt;}
.x5_c01234{left:320.058667pt;}
.x7_c01234{left:369.350667pt;}
.x1_c01234{left:657.753333pt;}
}





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

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





.ff0_c01235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01235;src:url('chunks/assets/font_b66bc922c7cdb6d3f53cd545.woff2')format("woff");}.ff1_c01235{font-family:ff1_c01235;line-height:1.001000;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_c01235;src:url('chunks/assets/font_e2d0c6696cb8174c1c7a655e.woff2')format("woff");}.ff2_c01235{font-family:ff2_c01235;line-height:1.000000;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_c01235;src:url('chunks/assets/font_05d993c362cdee94ee78921d.woff2')format("woff");}.ff3_c01235{font-family:ff3_c01235;line-height:1.000000;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_c01235{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_c01235{vertical-align:0.000000px;}
.ls0_c01235{letter-spacing:0.000000px;}
.sc__c01235{text-shadow:none;}
.sc0_c01235{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__c01235{-webkit-text-stroke:0px transparent;}
.sc0_c01235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01235{word-spacing:-0.071730px;}
.ws17_c01235{word-spacing:0.000000px;}
.ws11_c01235{word-spacing:16.036230px;}
.ws3_c01235{word-spacing:17.083494px;}
.wsa_c01235{word-spacing:18.327120px;}
.ws10_c01235{word-spacing:18.654390px;}
.ws5_c01235{word-spacing:18.719844px;}
.wsf_c01235{word-spacing:19.505292px;}
.ws4_c01235{word-spacing:19.636200px;}
.ws2_c01235{word-spacing:20.618010px;}
.ws13_c01235{word-spacing:20.879826px;}
.ws14_c01235{word-spacing:21.076188px;}
.wsb_c01235{word-spacing:21.207096px;}
.ws6_c01235{word-spacing:21.730728px;}
.ws7_c01235{word-spacing:21.796182px;}
.ws9_c01235{word-spacing:23.497986px;}
.ws15_c01235{word-spacing:24.676158px;}
.ws12_c01235{word-spacing:24.741612px;}
.ws1_c01235{word-spacing:25.003428px;}
.wsd_c01235{word-spacing:25.068882px;}
.wsc_c01235{word-spacing:25.199790px;}
.ws16_c01235{word-spacing:26.705232px;}
.wse_c01235{word-spacing:26.901594px;}
.ws8_c01235{word-spacing:32.399730px;}
._7_c01235{margin-left:-34.821528px;}
._3_c01235{margin-left:-32.727000px;}
._8_c01235{margin-left:-30.632472px;}
._6_c01235{margin-left:-25.461606px;}
._5_c01235{margin-left:-7.330848px;}
._2_c01235{margin-left:-5.563590px;}
._1_c01235{margin-left:-2.029074px;}
._0_c01235{width:2.225436px;}
._4_c01235{width:3.599970px;}
._9_c01235{width:11.061726px;}
.fc0_c01235{color:rgb(0,0,0);}
.fs1_c01235{font-size:65.454000px;}
.fs0_c01235{font-size:71.730000px;}
.y0_c01235{bottom:0.000000px;}
.y21_c01235{bottom:93.033000px;}
.y20_c01235{bottom:118.254000px;}
.y1f_c01235{bottom:143.476500px;}
.y1e_c01235{bottom:186.630000px;}
.y1d_c01235{bottom:229.785000px;}
.y1c_c01235{bottom:255.007500px;}
.y1b_c01235{bottom:298.161000px;}
.y1a_c01235{bottom:323.383500px;}
.y19_c01235{bottom:348.604500px;}
.y18_c01235{bottom:391.759500px;}
.y17_c01235{bottom:416.982000px;}
.y16_c01235{bottom:442.203000px;}
.y15_c01235{bottom:467.425500px;}
.y14_c01235{bottom:492.646500px;}
.y13_c01235{bottom:535.801500px;}
.y12_c01235{bottom:561.022500px;}
.y11_c01235{bottom:586.245000px;}
.y10_c01235{bottom:629.398500px;}
.yf_c01235{bottom:654.621000px;}
.ye_c01235{bottom:679.842000px;}
.yd_c01235{bottom:722.997000px;}
.yc_c01235{bottom:748.219500px;}
.yb_c01235{bottom:773.440500px;}
.ya_c01235{bottom:816.595500px;}
.y9_c01235{bottom:841.816500px;}
.y8_c01235{bottom:867.039000px;}
.y7_c01235{bottom:892.260000px;}
.y6_c01235{bottom:917.482500px;}
.y5_c01235{bottom:942.703500px;}
.y4_c01235{bottom:985.858500px;}
.y3_c01235{bottom:1011.081000px;}
.y2_c01235{bottom:1073.662500px;}
.y1_c01235{bottom:1140.615000px;}
.h3_c01235{height:49.090500px;}
.h2_c01235{height:53.797500px;}
.h1_c01235{height:1263.750000px;}
.h0_c01235{height:1264.110000px;}
.w0_c01235{width:893.869500px;}
.w1_c01235{width:894.000000px;}
.x0_c01235{left:0.000000px;}
.x4_c01235{left:127.558500px;}
.x3_c01235{left:159.838500px;}
.x2_c01235{left:437.526000px;}
.x1_c01235{left:739.972500px;}
@media print{
.v0_c01235{vertical-align:0.000000pt;}
.ls0_c01235{letter-spacing:0.000000pt;}
.ws0_c01235{word-spacing:-0.063760pt;}
.ws17_c01235{word-spacing:0.000000pt;}
.ws11_c01235{word-spacing:14.254427pt;}
.ws3_c01235{word-spacing:15.185328pt;}
.wsa_c01235{word-spacing:16.290773pt;}
.ws10_c01235{word-spacing:16.581680pt;}
.ws5_c01235{word-spacing:16.639861pt;}
.wsf_c01235{word-spacing:17.338037pt;}
.ws4_c01235{word-spacing:17.454400pt;}
.ws2_c01235{word-spacing:18.327120pt;}
.ws13_c01235{word-spacing:18.559845pt;}
.ws14_c01235{word-spacing:18.734389pt;}
.wsb_c01235{word-spacing:18.850752pt;}
.ws6_c01235{word-spacing:19.316203pt;}
.ws7_c01235{word-spacing:19.374384pt;}
.ws9_c01235{word-spacing:20.887099pt;}
.ws15_c01235{word-spacing:21.934363pt;}
.ws12_c01235{word-spacing:21.992544pt;}
.ws1_c01235{word-spacing:22.225269pt;}
.wsd_c01235{word-spacing:22.283451pt;}
.wsc_c01235{word-spacing:22.399813pt;}
.ws16_c01235{word-spacing:23.737984pt;}
.wse_c01235{word-spacing:23.912528pt;}
.ws8_c01235{word-spacing:28.799760pt;}
._7_c01235{margin-left:-30.952469pt;}
._3_c01235{margin-left:-29.090667pt;}
._8_c01235{margin-left:-27.228864pt;}
._6_c01235{margin-left:-22.632539pt;}
._5_c01235{margin-left:-6.516309pt;}
._2_c01235{margin-left:-4.945413pt;}
._1_c01235{margin-left:-1.803621pt;}
._0_c01235{width:1.978165pt;}
._4_c01235{width:3.199973pt;}
._9_c01235{width:9.832645pt;}
.fs1_c01235{font-size:58.181333pt;}
.fs0_c01235{font-size:63.760000pt;}
.y0_c01235{bottom:0.000000pt;}
.y21_c01235{bottom:82.696000pt;}
.y20_c01235{bottom:105.114667pt;}
.y1f_c01235{bottom:127.534667pt;}
.y1e_c01235{bottom:165.893333pt;}
.y1d_c01235{bottom:204.253333pt;}
.y1c_c01235{bottom:226.673333pt;}
.y1b_c01235{bottom:265.032000pt;}
.y1a_c01235{bottom:287.452000pt;}
.y19_c01235{bottom:309.870667pt;}
.y18_c01235{bottom:348.230667pt;}
.y17_c01235{bottom:370.650667pt;}
.y16_c01235{bottom:393.069333pt;}
.y15_c01235{bottom:415.489333pt;}
.y14_c01235{bottom:437.908000pt;}
.y13_c01235{bottom:476.268000pt;}
.y12_c01235{bottom:498.686667pt;}
.y11_c01235{bottom:521.106667pt;}
.y10_c01235{bottom:559.465333pt;}
.yf_c01235{bottom:581.885333pt;}
.ye_c01235{bottom:604.304000pt;}
.yd_c01235{bottom:642.664000pt;}
.yc_c01235{bottom:665.084000pt;}
.yb_c01235{bottom:687.502667pt;}
.ya_c01235{bottom:725.862667pt;}
.y9_c01235{bottom:748.281333pt;}
.y8_c01235{bottom:770.701333pt;}
.y7_c01235{bottom:793.120000pt;}
.y6_c01235{bottom:815.540000pt;}
.y5_c01235{bottom:837.958667pt;}
.y4_c01235{bottom:876.318667pt;}
.y3_c01235{bottom:898.738667pt;}
.y2_c01235{bottom:954.366667pt;}
.y1_c01235{bottom:1013.880000pt;}
.h3_c01235{height:43.636000pt;}
.h2_c01235{height:47.820000pt;}
.h1_c01235{height:1123.333333pt;}
.h0_c01235{height:1123.653333pt;}
.w0_c01235{width:794.550667pt;}
.w1_c01235{width:794.666667pt;}
.x0_c01235{left:0.000000pt;}
.x4_c01235{left:113.385333pt;}
.x3_c01235{left:142.078667pt;}
.x2_c01235{left:388.912000pt;}
.x1_c01235{left:657.753333pt;}
}





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

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





.ff0_c01236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01236;src:url('chunks/assets/font_eeb7cc056de1cdcb23a0a93f.woff2')format("woff");}.ff1_c01236{font-family:ff1_c01236;line-height:1.001000;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_c01236;src:url('chunks/assets/font_595cb7fbcc3df73333001469.woff2')format("woff");}.ff2_c01236{font-family:ff2_c01236;line-height:1.000000;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_c01236;src:url('chunks/assets/font_ab1a2c124e7d1ef279c245c7.woff2')format("woff");}.ff3_c01236{font-family:ff3_c01236;line-height:0.697000;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_c01236{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_c01236{vertical-align:0.000000px;}
.v1_c01236{vertical-align:23.754000px;}
.ls2_c01236{letter-spacing:0.000000px;}
.ls0_c01236{letter-spacing:27.131580px;}
.ls1_c01236{letter-spacing:27.479580px;}
.sc__c01236{text-shadow:none;}
.sc0_c01236{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__c01236{-webkit-text-stroke:0px transparent;}
.sc0_c01236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01236{word-spacing:-0.071730px;}
.ws11_c01236{word-spacing:-0.065454px;}
.ws15_c01236{word-spacing:0.000000px;}
.ws4_c01236{word-spacing:16.363500px;}
.ws5_c01236{word-spacing:16.559862px;}
.ws6_c01236{word-spacing:17.607126px;}
.wsc_c01236{word-spacing:18.981660px;}
.wsa_c01236{word-spacing:19.963470px;}
.wsb_c01236{word-spacing:21.338004px;}
.ws3_c01236{word-spacing:21.730728px;}
.ws7_c01236{word-spacing:21.796182px;}
.ws1_c01236{word-spacing:22.450722px;}
.wsf_c01236{word-spacing:22.581630px;}
.wse_c01236{word-spacing:23.301624px;}
.wsd_c01236{word-spacing:23.563440px;}
.ws14_c01236{word-spacing:23.890710px;}
.ws10_c01236{word-spacing:24.021618px;}
.ws13_c01236{word-spacing:24.348888px;}
.ws12_c01236{word-spacing:24.414342px;}
.ws9_c01236{word-spacing:25.592514px;}
.ws2_c01236{word-spacing:27.752496px;}
.ws8_c01236{word-spacing:30.959742px;}
._3_c01236{margin-left:-34.494258px;}
._1_c01236{margin-left:-32.661546px;}
._8_c01236{margin-left:-30.959742px;}
._5_c01236{margin-left:-25.461606px;}
._4_c01236{margin-left:-7.461756px;}
._6_c01236{margin-left:-3.207246px;}
._0_c01236{margin-left:-1.898166px;}
._2_c01236{width:1.767258px;}
._9_c01236{width:3.665424px;}
._7_c01236{width:10.865364px;}
._a_c01236{width:19.898016px;}
.fc0_c01236{color:rgb(0,0,0);}
.fs2_c01236{font-size:47.820000px;}
.fs1_c01236{font-size:65.454000px;}
.fs0_c01236{font-size:71.730000px;}
.y0_c01236{bottom:0.000000px;}
.y1c_c01236{bottom:274.434000px;}
.y1b_c01236{bottom:317.589000px;}
.y1a_c01236{bottom:360.742500px;}
.y19_c01236{bottom:385.965000px;}
.y18_c01236{bottom:411.186000px;}
.y17_c01236{bottom:436.408500px;}
.y16_c01236{bottom:461.629500px;}
.y15_c01236{bottom:504.784500px;}
.y14_c01236{bottom:530.007000px;}
.y13_c01236{bottom:555.228000px;}
.y12_c01236{bottom:598.383000px;}
.y11_c01236{bottom:623.604000px;}
.y10_c01236{bottom:648.826500px;}
.yf_c01236{bottom:674.047500px;}
.ye_c01236{bottom:717.202500px;}
.yd_c01236{bottom:742.425000px;}
.yc_c01236{bottom:767.646000px;}
.yb_c01236{bottom:792.868500px;}
.ya_c01236{bottom:818.089500px;}
.y9_c01236{bottom:861.244500px;}
.y8_c01236{bottom:886.465500px;}
.y7_c01236{bottom:911.688000px;}
.y6_c01236{bottom:954.841500px;}
.y5_c01236{bottom:980.064000px;}
.y4_c01236{bottom:1023.219000px;}
.y3_c01236{bottom:1048.440000px;}
.y2_c01236{bottom:1073.662500px;}
.y1_c01236{bottom:1140.615000px;}
.h3_c01236{height:49.090500px;}
.h2_c01236{height:53.797500px;}
.h4_c01236{height:56.080320px;}
.h1_c01236{height:1263.750000px;}
.h0_c01236{height:1264.110000px;}
.w0_c01236{width:893.869500px;}
.w1_c01236{width:894.000000px;}
.x0_c01236{left:0.000000px;}
.x3_c01236{left:127.558500px;}
.x2_c01236{left:159.838500px;}
.x1_c01236{left:739.972500px;}
@media print{
.v0_c01236{vertical-align:0.000000pt;}
.v1_c01236{vertical-align:21.114667pt;}
.ls2_c01236{letter-spacing:0.000000pt;}
.ls0_c01236{letter-spacing:24.116960pt;}
.ls1_c01236{letter-spacing:24.426293pt;}
.ws0_c01236{word-spacing:-0.063760pt;}
.ws11_c01236{word-spacing:-0.058181pt;}
.ws15_c01236{word-spacing:0.000000pt;}
.ws4_c01236{word-spacing:14.545333pt;}
.ws5_c01236{word-spacing:14.719877pt;}
.ws6_c01236{word-spacing:15.650779pt;}
.wsc_c01236{word-spacing:16.872587pt;}
.wsa_c01236{word-spacing:17.745307pt;}
.wsb_c01236{word-spacing:18.967115pt;}
.ws3_c01236{word-spacing:19.316203pt;}
.ws7_c01236{word-spacing:19.374384pt;}
.ws1_c01236{word-spacing:19.956197pt;}
.wsf_c01236{word-spacing:20.072560pt;}
.wse_c01236{word-spacing:20.712555pt;}
.wsd_c01236{word-spacing:20.945280pt;}
.ws14_c01236{word-spacing:21.236187pt;}
.ws10_c01236{word-spacing:21.352549pt;}
.ws13_c01236{word-spacing:21.643456pt;}
.ws12_c01236{word-spacing:21.701637pt;}
.ws9_c01236{word-spacing:22.748901pt;}
.ws2_c01236{word-spacing:24.668885pt;}
.ws8_c01236{word-spacing:27.519771pt;}
._3_c01236{margin-left:-30.661563pt;}
._1_c01236{margin-left:-29.032485pt;}
._8_c01236{margin-left:-27.519771pt;}
._5_c01236{margin-left:-22.632539pt;}
._4_c01236{margin-left:-6.632672pt;}
._6_c01236{margin-left:-2.850885pt;}
._0_c01236{margin-left:-1.687259pt;}
._2_c01236{width:1.570896pt;}
._9_c01236{width:3.258155pt;}
._7_c01236{width:9.658101pt;}
._a_c01236{width:17.687125pt;}
.fs2_c01236{font-size:42.506667pt;}
.fs1_c01236{font-size:58.181333pt;}
.fs0_c01236{font-size:63.760000pt;}
.y0_c01236{bottom:0.000000pt;}
.y1c_c01236{bottom:243.941333pt;}
.y1b_c01236{bottom:282.301333pt;}
.y1a_c01236{bottom:320.660000pt;}
.y19_c01236{bottom:343.080000pt;}
.y18_c01236{bottom:365.498667pt;}
.y17_c01236{bottom:387.918667pt;}
.y16_c01236{bottom:410.337333pt;}
.y15_c01236{bottom:448.697333pt;}
.y14_c01236{bottom:471.117333pt;}
.y13_c01236{bottom:493.536000pt;}
.y12_c01236{bottom:531.896000pt;}
.y11_c01236{bottom:554.314667pt;}
.y10_c01236{bottom:576.734667pt;}
.yf_c01236{bottom:599.153333pt;}
.ye_c01236{bottom:637.513333pt;}
.yd_c01236{bottom:659.933333pt;}
.yc_c01236{bottom:682.352000pt;}
.yb_c01236{bottom:704.772000pt;}
.ya_c01236{bottom:727.190667pt;}
.y9_c01236{bottom:765.550667pt;}
.y8_c01236{bottom:787.969333pt;}
.y7_c01236{bottom:810.389333pt;}
.y6_c01236{bottom:848.748000pt;}
.y5_c01236{bottom:871.168000pt;}
.y4_c01236{bottom:909.528000pt;}
.y3_c01236{bottom:931.946667pt;}
.y2_c01236{bottom:954.366667pt;}
.y1_c01236{bottom:1013.880000pt;}
.h3_c01236{height:43.636000pt;}
.h2_c01236{height:47.820000pt;}
.h4_c01236{height:49.849173pt;}
.h1_c01236{height:1123.333333pt;}
.h0_c01236{height:1123.653333pt;}
.w0_c01236{width:794.550667pt;}
.w1_c01236{width:794.666667pt;}
.x0_c01236{left:0.000000pt;}
.x3_c01236{left:113.385333pt;}
.x2_c01236{left:142.078667pt;}
.x1_c01236{left:657.753333pt;}
}





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

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





.ff0_c01237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01237;src:url('chunks/assets/font_77d38a73cff6954b07ec9553.woff2')format("woff");}.ff1_c01237{font-family:ff1_c01237;line-height:1.001000;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_c01237;src:url('chunks/assets/font_d4f8564b281804ae95599417.woff2')format("woff");}.ff2_c01237{font-family:ff2_c01237;line-height:1.000000;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_c01237;src:url('chunks/assets/font_1cc3d17288b11e27d417ff03.woff2')format("woff");}.ff3_c01237{font-family:ff3_c01237;line-height:1.000000;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_c01237{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_c01237{vertical-align:0.000000px;}
.ls0_c01237{letter-spacing:0.000000px;}
.sc__c01237{text-shadow:none;}
.sc0_c01237{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__c01237{-webkit-text-stroke:0px transparent;}
.sc0_c01237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01237{word-spacing:-0.071730px;}
.wsa_c01237{word-spacing:-0.065454px;}
.ws17_c01237{word-spacing:0.000000px;}
.wse_c01237{word-spacing:18.916206px;}
.ws6_c01237{word-spacing:19.898016px;}
.ws14_c01237{word-spacing:20.159832px;}
.ws15_c01237{word-spacing:20.421648px;}
.ws3_c01237{word-spacing:20.552556px;}
.ws5_c01237{word-spacing:20.683464px;}
.wsb_c01237{word-spacing:20.748918px;}
.ws4_c01237{word-spacing:21.730728px;}
.ws2_c01237{word-spacing:21.796182px;}
.ws7_c01237{word-spacing:21.927090px;}
.ws10_c01237{word-spacing:22.908900px;}
.wsf_c01237{word-spacing:22.974354px;}
.wsd_c01237{word-spacing:23.301624px;}
.ws12_c01237{word-spacing:23.367078px;}
.ws16_c01237{word-spacing:24.676158px;}
.ws13_c01237{word-spacing:24.872520px;}
.ws1_c01237{word-spacing:25.003428px;}
.wsc_c01237{word-spacing:25.134336px;}
.ws9_c01237{word-spacing:28.079766px;}
.ws11_c01237{word-spacing:29.716116px;}
.ws8_c01237{word-spacing:30.108840px;}
._1_c01237{margin-left:-37.570596px;}
._b_c01237{margin-left:-34.559712px;}
._4_c01237{margin-left:-32.988816px;}
._d_c01237{margin-left:-31.876098px;}
._9_c01237{margin-left:-30.370656px;}
._6_c01237{margin-left:-25.396152px;}
._5_c01237{margin-left:-8.312658px;}
._7_c01237{margin-left:-7.265394px;}
._2_c01237{margin-left:-6.218130px;}
._e_c01237{margin-left:-4.778142px;}
._f_c01237{margin-left:-3.010884px;}
._3_c01237{margin-left:-1.963620px;}
._a_c01237{width:1.112718px;}
._0_c01237{width:2.159982px;}
._8_c01237{width:3.469062px;}
._c_c01237{width:24.414342px;}
.fc0_c01237{color:rgb(0,0,0);}
.fs1_c01237{font-size:65.454000px;}
.fs0_c01237{font-size:71.730000px;}
.y0_c01237{bottom:0.000000px;}
.y25_c01237{bottom:71.973000px;}
.y24_c01237{bottom:114.115500px;}
.y23_c01237{bottom:139.336500px;}
.y22_c01237{bottom:164.559000px;}
.y21_c01237{bottom:189.780000px;}
.y20_c01237{bottom:215.002500px;}
.y1f_c01237{bottom:240.223500px;}
.y1e_c01237{bottom:265.446000px;}
.y1d_c01237{bottom:290.667000px;}
.y1c_c01237{bottom:332.809500px;}
.y1b_c01237{bottom:358.032000px;}
.y1a_c01237{bottom:383.253000px;}
.y19_c01237{bottom:408.475500px;}
.y18_c01237{bottom:433.696500px;}
.y17_c01237{bottom:458.919000px;}
.y16_c01237{bottom:501.061500px;}
.y15_c01237{bottom:526.282500px;}
.y14_c01237{bottom:551.505000px;}
.y13_c01237{bottom:576.726000px;}
.y12_c01237{bottom:601.948500px;}
.y11_c01237{bottom:627.169500px;}
.y10_c01237{bottom:652.392000px;}
.yf_c01237{bottom:677.613000px;}
.ye_c01237{bottom:702.835500px;}
.yd_c01237{bottom:728.056500px;}
.yc_c01237{bottom:753.279000px;}
.yb_c01237{bottom:778.500000px;}
.ya_c01237{bottom:803.722500px;}
.y9_c01237{bottom:828.943500px;}
.y8_c01237{bottom:854.166000px;}
.y7_c01237{bottom:896.308500px;}
.y6_c01237{bottom:921.531000px;}
.y5_c01237{bottom:946.752000px;}
.y4_c01237{bottom:988.894500px;}
.y3_c01237{bottom:1014.117000px;}
.y2_c01237{bottom:1073.662500px;}
.y1_c01237{bottom:1140.615000px;}
.h3_c01237{height:49.090500px;}
.h2_c01237{height:53.797500px;}
.h1_c01237{height:1263.750000px;}
.h0_c01237{height:1264.110000px;}
.w0_c01237{width:893.869500px;}
.w1_c01237{width:894.000000px;}
.x0_c01237{left:0.000000px;}
.x4_c01237{left:127.558500px;}
.x3_c01237{left:159.838500px;}
.x2_c01237{left:437.526000px;}
.x1_c01237{left:739.972500px;}
@media print{
.v0_c01237{vertical-align:0.000000pt;}
.ls0_c01237{letter-spacing:0.000000pt;}
.ws0_c01237{word-spacing:-0.063760pt;}
.wsa_c01237{word-spacing:-0.058181pt;}
.ws17_c01237{word-spacing:0.000000pt;}
.wse_c01237{word-spacing:16.814405pt;}
.ws6_c01237{word-spacing:17.687125pt;}
.ws14_c01237{word-spacing:17.919851pt;}
.ws15_c01237{word-spacing:18.152576pt;}
.ws3_c01237{word-spacing:18.268939pt;}
.ws5_c01237{word-spacing:18.385301pt;}
.wsb_c01237{word-spacing:18.443483pt;}
.ws4_c01237{word-spacing:19.316203pt;}
.ws2_c01237{word-spacing:19.374384pt;}
.ws7_c01237{word-spacing:19.490747pt;}
.ws10_c01237{word-spacing:20.363467pt;}
.wsf_c01237{word-spacing:20.421648pt;}
.wsd_c01237{word-spacing:20.712555pt;}
.ws12_c01237{word-spacing:20.770736pt;}
.ws16_c01237{word-spacing:21.934363pt;}
.ws13_c01237{word-spacing:22.108907pt;}
.ws1_c01237{word-spacing:22.225269pt;}
.wsc_c01237{word-spacing:22.341632pt;}
.ws9_c01237{word-spacing:24.959792pt;}
.ws11_c01237{word-spacing:26.414325pt;}
.ws8_c01237{word-spacing:26.763413pt;}
._1_c01237{margin-left:-33.396085pt;}
._b_c01237{margin-left:-30.719744pt;}
._4_c01237{margin-left:-29.323392pt;}
._d_c01237{margin-left:-28.334309pt;}
._9_c01237{margin-left:-26.996139pt;}
._6_c01237{margin-left:-22.574357pt;}
._5_c01237{margin-left:-7.389029pt;}
._7_c01237{margin-left:-6.458128pt;}
._2_c01237{margin-left:-5.527227pt;}
._e_c01237{margin-left:-4.247237pt;}
._f_c01237{margin-left:-2.676341pt;}
._3_c01237{margin-left:-1.745440pt;}
._a_c01237{width:0.989083pt;}
._0_c01237{width:1.919984pt;}
._8_c01237{width:3.083611pt;}
._c_c01237{width:21.701637pt;}
.fs1_c01237{font-size:58.181333pt;}
.fs0_c01237{font-size:63.760000pt;}
.y0_c01237{bottom:0.000000pt;}
.y25_c01237{bottom:63.976000pt;}
.y24_c01237{bottom:101.436000pt;}
.y23_c01237{bottom:123.854667pt;}
.y22_c01237{bottom:146.274667pt;}
.y21_c01237{bottom:168.693333pt;}
.y20_c01237{bottom:191.113333pt;}
.y1f_c01237{bottom:213.532000pt;}
.y1e_c01237{bottom:235.952000pt;}
.y1d_c01237{bottom:258.370667pt;}
.y1c_c01237{bottom:295.830667pt;}
.y1b_c01237{bottom:318.250667pt;}
.y1a_c01237{bottom:340.669333pt;}
.y19_c01237{bottom:363.089333pt;}
.y18_c01237{bottom:385.508000pt;}
.y17_c01237{bottom:407.928000pt;}
.y16_c01237{bottom:445.388000pt;}
.y15_c01237{bottom:467.806667pt;}
.y14_c01237{bottom:490.226667pt;}
.y13_c01237{bottom:512.645333pt;}
.y12_c01237{bottom:535.065333pt;}
.y11_c01237{bottom:557.484000pt;}
.y10_c01237{bottom:579.904000pt;}
.yf_c01237{bottom:602.322667pt;}
.ye_c01237{bottom:624.742667pt;}
.yd_c01237{bottom:647.161333pt;}
.yc_c01237{bottom:669.581333pt;}
.yb_c01237{bottom:692.000000pt;}
.ya_c01237{bottom:714.420000pt;}
.y9_c01237{bottom:736.838667pt;}
.y8_c01237{bottom:759.258667pt;}
.y7_c01237{bottom:796.718667pt;}
.y6_c01237{bottom:819.138667pt;}
.y5_c01237{bottom:841.557333pt;}
.y4_c01237{bottom:879.017333pt;}
.y3_c01237{bottom:901.437333pt;}
.y2_c01237{bottom:954.366667pt;}
.y1_c01237{bottom:1013.880000pt;}
.h3_c01237{height:43.636000pt;}
.h2_c01237{height:47.820000pt;}
.h1_c01237{height:1123.333333pt;}
.h0_c01237{height:1123.653333pt;}
.w0_c01237{width:794.550667pt;}
.w1_c01237{width:794.666667pt;}
.x0_c01237{left:0.000000pt;}
.x4_c01237{left:113.385333pt;}
.x3_c01237{left:142.078667pt;}
.x2_c01237{left:388.912000pt;}
.x1_c01237{left:657.753333pt;}
}





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

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





.ff0_c01238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01238;src:url('chunks/assets/font_aac8b745630632ce1efb90bc.woff2')format("woff");}.ff1_c01238{font-family:ff1_c01238;line-height:1.001000;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_c01238;src:url('chunks/assets/font_51f4992fb91e7e4b540bfdae.woff2')format("woff");}.ff2_c01238{font-family:ff2_c01238;line-height:1.000000;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_c01238;src:url('chunks/assets/font_cd49cee3373750bb1e88eaf5.woff2')format("woff");}.ff3_c01238{font-family:ff3_c01238;line-height:0.697000;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_c01238{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_c01238{vertical-align:0.000000px;}
.v1_c01238{vertical-align:16.548000px;}
.v2_c01238{vertical-align:23.748000px;}
.ls1_c01238{letter-spacing:0.000000px;}
.ls0_c01238{letter-spacing:22.469580px;}
.sc__c01238{text-shadow:none;}
.sc0_c01238{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__c01238{-webkit-text-stroke:0px transparent;}
.sc0_c01238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01238{word-spacing:-0.071730px;}
.ws1e_c01238{word-spacing:0.000000px;}
.ws10_c01238{word-spacing:14.465334px;}
.ws12_c01238{word-spacing:14.858058px;}
.ws1b_c01238{word-spacing:15.905322px;}
.ws18_c01238{word-spacing:16.363500px;}
.ws13_c01238{word-spacing:19.178022px;}
.ws11_c01238{word-spacing:19.374384px;}
.ws1_c01238{word-spacing:19.636200px;}
.wsb_c01238{word-spacing:19.963470px;}
.wsa_c01238{word-spacing:20.028924px;}
.ws9_c01238{word-spacing:20.879826px;}
.ws8_c01238{word-spacing:20.945280px;}
.ws6_c01238{word-spacing:21.730728px;}
.wsf_c01238{word-spacing:21.796182px;}
.ws15_c01238{word-spacing:25.134336px;}
.ws17_c01238{word-spacing:25.919784px;}
.wsd_c01238{word-spacing:26.050692px;}
.ws5_c01238{word-spacing:26.247054px;}
.ws1d_c01238{word-spacing:26.639778px;}
.wse_c01238{word-spacing:26.705232px;}
.ws1a_c01238{word-spacing:27.687042px;}
.ws2_c01238{word-spacing:27.752496px;}
.ws16_c01238{word-spacing:28.145220px;}
.ws7_c01238{word-spacing:28.865214px;}
.ws3_c01238{word-spacing:29.061576px;}
.ws19_c01238{word-spacing:29.977932px;}
.ws4_c01238{word-spacing:30.043386px;}
.wsc_c01238{word-spacing:30.239748px;}
.ws1c_c01238{word-spacing:31.025196px;}
.ws14_c01238{word-spacing:31.287012px;}
._5_c01238{margin-left:-34.494258px;}
._1_c01238{margin-left:-32.727000px;}
._a_c01238{margin-left:-31.417920px;}
._3_c01238{margin-left:-25.461606px;}
._2_c01238{margin-left:-7.396302px;}
._8_c01238{margin-left:-5.563590px;}
._6_c01238{margin-left:-3.665424px;}
._0_c01238{margin-left:-1.832712px;}
._4_c01238{width:1.832712px;}
._7_c01238{width:3.796332px;}
._9_c01238{width:9.130842px;}
._b_c01238{width:11.323542px;}
.fc0_c01238{color:rgb(0,0,0);}
.fs2_c01238{font-size:47.820000px;}
.fs1_c01238{font-size:65.454000px;}
.fs0_c01238{font-size:71.730000px;}
.y0_c01238{bottom:0.000000px;}
.y27_c01238{bottom:71.973000px;}
.y26_c01238{bottom:97.194000px;}
.y25_c01238{bottom:122.416500px;}
.y24_c01238{bottom:164.758500px;}
.y23_c01238{bottom:189.981000px;}
.y22_c01238{bottom:215.202000px;}
.y21_c01238{bottom:240.424500px;}
.y20_c01238{bottom:265.645500px;}
.y1f_c01238{bottom:290.868000px;}
.y1e_c01238{bottom:316.089000px;}
.y1d_c01238{bottom:358.432500px;}
.y1c_c01238{bottom:383.653500px;}
.y1b_c01238{bottom:408.876000px;}
.y1a_c01238{bottom:434.097000px;}
.y19_c01238{bottom:459.319500px;}
.y18_c01238{bottom:484.540500px;}
.y17_c01238{bottom:509.763000px;}
.y16_c01238{bottom:534.984000px;}
.y15_c01238{bottom:560.206500px;}
.y14_c01238{bottom:585.427500px;}
.y13_c01238{bottom:627.771000px;}
.y12_c01238{bottom:652.993500px;}
.y11_c01238{bottom:678.214500px;}
.y10_c01238{bottom:703.437000px;}
.yf_c01238{bottom:745.779000px;}
.ye_c01238{bottom:771.001500px;}
.yd_c01238{bottom:796.222500px;}
.yc_c01238{bottom:821.445000px;}
.yb_c01238{bottom:846.666000px;}
.ya_c01238{bottom:871.888500px;}
.y9_c01238{bottom:897.109500px;}
.y8_c01238{bottom:922.332000px;}
.y7_c01238{bottom:947.553000px;}
.y6_c01238{bottom:972.775500px;}
.y5_c01238{bottom:997.996500px;}
.y4_c01238{bottom:1023.219000px;}
.y3_c01238{bottom:1048.440000px;}
.y2_c01238{bottom:1073.662500px;}
.y1_c01238{bottom:1140.615000px;}
.h3_c01238{height:49.090500px;}
.h2_c01238{height:53.797500px;}
.h6_c01238{height:56.074320px;}
.h5_c01238{height:65.632500px;}
.h4_c01238{height:65.638500px;}
.h1_c01238{height:1263.750000px;}
.h0_c01238{height:1264.110000px;}
.w0_c01238{width:893.869500px;}
.w1_c01238{width:894.000000px;}
.x0_c01238{left:0.000000px;}
.x3_c01238{left:127.558500px;}
.x2_c01238{left:159.838500px;}
.x6_c01238{left:327.636000px;}
.x4_c01238{left:534.643500px;}
.x5_c01238{left:720.856500px;}
.x1_c01238{left:739.972500px;}
@media print{
.v0_c01238{vertical-align:0.000000pt;}
.v1_c01238{vertical-align:14.709333pt;}
.v2_c01238{vertical-align:21.109333pt;}
.ls1_c01238{letter-spacing:0.000000pt;}
.ls0_c01238{letter-spacing:19.972960pt;}
.ws0_c01238{word-spacing:-0.063760pt;}
.ws1e_c01238{word-spacing:0.000000pt;}
.ws10_c01238{word-spacing:12.858075pt;}
.ws12_c01238{word-spacing:13.207163pt;}
.ws1b_c01238{word-spacing:14.138064pt;}
.ws18_c01238{word-spacing:14.545333pt;}
.ws13_c01238{word-spacing:17.047131pt;}
.ws11_c01238{word-spacing:17.221675pt;}
.ws1_c01238{word-spacing:17.454400pt;}
.wsb_c01238{word-spacing:17.745307pt;}
.wsa_c01238{word-spacing:17.803488pt;}
.ws9_c01238{word-spacing:18.559845pt;}
.ws8_c01238{word-spacing:18.618027pt;}
.ws6_c01238{word-spacing:19.316203pt;}
.wsf_c01238{word-spacing:19.374384pt;}
.ws15_c01238{word-spacing:22.341632pt;}
.ws17_c01238{word-spacing:23.039808pt;}
.wsd_c01238{word-spacing:23.156171pt;}
.ws5_c01238{word-spacing:23.330715pt;}
.ws1d_c01238{word-spacing:23.679803pt;}
.wse_c01238{word-spacing:23.737984pt;}
.ws1a_c01238{word-spacing:24.610704pt;}
.ws2_c01238{word-spacing:24.668885pt;}
.ws16_c01238{word-spacing:25.017973pt;}
.ws7_c01238{word-spacing:25.657968pt;}
.ws3_c01238{word-spacing:25.832512pt;}
.ws19_c01238{word-spacing:26.647051pt;}
.ws4_c01238{word-spacing:26.705232pt;}
.wsc_c01238{word-spacing:26.879776pt;}
.ws1c_c01238{word-spacing:27.577952pt;}
.ws14_c01238{word-spacing:27.810677pt;}
._5_c01238{margin-left:-30.661563pt;}
._1_c01238{margin-left:-29.090667pt;}
._a_c01238{margin-left:-27.927040pt;}
._3_c01238{margin-left:-22.632539pt;}
._2_c01238{margin-left:-6.574491pt;}
._8_c01238{margin-left:-4.945413pt;}
._6_c01238{margin-left:-3.258155pt;}
._0_c01238{margin-left:-1.629077pt;}
._4_c01238{width:1.629077pt;}
._7_c01238{width:3.374517pt;}
._9_c01238{width:8.116304pt;}
._b_c01238{width:10.065371pt;}
.fs2_c01238{font-size:42.506667pt;}
.fs1_c01238{font-size:58.181333pt;}
.fs0_c01238{font-size:63.760000pt;}
.y0_c01238{bottom:0.000000pt;}
.y27_c01238{bottom:63.976000pt;}
.y26_c01238{bottom:86.394667pt;}
.y25_c01238{bottom:108.814667pt;}
.y24_c01238{bottom:146.452000pt;}
.y23_c01238{bottom:168.872000pt;}
.y22_c01238{bottom:191.290667pt;}
.y21_c01238{bottom:213.710667pt;}
.y20_c01238{bottom:236.129333pt;}
.y1f_c01238{bottom:258.549333pt;}
.y1e_c01238{bottom:280.968000pt;}
.y1d_c01238{bottom:318.606667pt;}
.y1c_c01238{bottom:341.025333pt;}
.y1b_c01238{bottom:363.445333pt;}
.y1a_c01238{bottom:385.864000pt;}
.y19_c01238{bottom:408.284000pt;}
.y18_c01238{bottom:430.702667pt;}
.y17_c01238{bottom:453.122667pt;}
.y16_c01238{bottom:475.541333pt;}
.y15_c01238{bottom:497.961333pt;}
.y14_c01238{bottom:520.380000pt;}
.y13_c01238{bottom:558.018667pt;}
.y12_c01238{bottom:580.438667pt;}
.y11_c01238{bottom:602.857333pt;}
.y10_c01238{bottom:625.277333pt;}
.yf_c01238{bottom:662.914667pt;}
.ye_c01238{bottom:685.334667pt;}
.yd_c01238{bottom:707.753333pt;}
.yc_c01238{bottom:730.173333pt;}
.yb_c01238{bottom:752.592000pt;}
.ya_c01238{bottom:775.012000pt;}
.y9_c01238{bottom:797.430667pt;}
.y8_c01238{bottom:819.850667pt;}
.y7_c01238{bottom:842.269333pt;}
.y6_c01238{bottom:864.689333pt;}
.y5_c01238{bottom:887.108000pt;}
.y4_c01238{bottom:909.528000pt;}
.y3_c01238{bottom:931.946667pt;}
.y2_c01238{bottom:954.366667pt;}
.y1_c01238{bottom:1013.880000pt;}
.h3_c01238{height:43.636000pt;}
.h2_c01238{height:47.820000pt;}
.h6_c01238{height:49.843840pt;}
.h5_c01238{height:58.340000pt;}
.h4_c01238{height:58.345333pt;}
.h1_c01238{height:1123.333333pt;}
.h0_c01238{height:1123.653333pt;}
.w0_c01238{width:794.550667pt;}
.w1_c01238{width:794.666667pt;}
.x0_c01238{left:0.000000pt;}
.x3_c01238{left:113.385333pt;}
.x2_c01238{left:142.078667pt;}
.x6_c01238{left:291.232000pt;}
.x4_c01238{left:475.238667pt;}
.x5_c01238{left:640.761333pt;}
.x1_c01238{left:657.753333pt;}
}





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

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





.ff0_c01239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01239;src:url('chunks/assets/font_183e4617ed69bd69ff7c710d.woff2')format("woff");}.ff1_c01239{font-family:ff1_c01239;line-height:1.001000;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_c01239;src:url('chunks/assets/font_92b259cfc38860c14d0bcef7.woff2')format("woff");}.ff2_c01239{font-family:ff2_c01239;line-height:1.000000;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_c01239;src:url('chunks/assets/font_298f0eadd1152c953d061e71.woff2')format("woff");}.ff3_c01239{font-family:ff3_c01239;line-height:1.000000;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_c01239{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_c01239{vertical-align:0.000000px;}
.v1_c01239{vertical-align:16.542000px;}
.ls0_c01239{letter-spacing:0.000000px;}
.sc__c01239{text-shadow:none;}
.sc0_c01239{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__c01239{-webkit-text-stroke:0px transparent;}
.sc0_c01239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01239{word-spacing:-0.071730px;}
.ws12_c01239{word-spacing:0.000000px;}
.wsd_c01239{word-spacing:14.792604px;}
.ws11_c01239{word-spacing:17.672580px;}
.wse_c01239{word-spacing:17.803488px;}
.wsf_c01239{word-spacing:18.850752px;}
.ws3_c01239{word-spacing:20.356194px;}
.ws2_c01239{word-spacing:20.748918px;}
.wsb_c01239{word-spacing:21.403458px;}
.wsc_c01239{word-spacing:21.665274px;}
.ws1_c01239{word-spacing:21.730728px;}
.ws6_c01239{word-spacing:21.796182px;}
.ws5_c01239{word-spacing:23.236170px;}
.ws10_c01239{word-spacing:24.087072px;}
.wsa_c01239{word-spacing:25.003428px;}
.ws7_c01239{word-spacing:27.556134px;}
.ws9_c01239{word-spacing:29.388846px;}
.ws8_c01239{word-spacing:30.894288px;}
.ws4_c01239{word-spacing:31.352466px;}
._9_c01239{margin-left:-36.850602px;}
._a_c01239{margin-left:-34.952436px;}
._c_c01239{margin-left:-33.905172px;}
._2_c01239{margin-left:-32.661546px;}
._1_c01239{margin-left:-30.894288px;}
._6_c01239{margin-left:-25.461606px;}
._5_c01239{margin-left:-6.807216px;}
._4_c01239{margin-left:-5.563590px;}
._8_c01239{margin-left:-3.665424px;}
._0_c01239{margin-left:-1.832712px;}
._3_c01239{width:1.309080px;}
._7_c01239{width:2.749068px;}
._b_c01239{width:5.938674px;}
.fc0_c01239{color:rgb(0,0,0);}
.fs1_c01239{font-size:65.454000px;}
.fs0_c01239{font-size:71.730000px;}
.y0_c01239{bottom:0.000000px;}
.y22_c01239{bottom:71.973000px;}
.y21_c01239{bottom:97.194000px;}
.y20_c01239{bottom:122.416500px;}
.y1f_c01239{bottom:147.637500px;}
.y1e_c01239{bottom:172.860000px;}
.y1d_c01239{bottom:198.081000px;}
.y1c_c01239{bottom:223.303500px;}
.y1b_c01239{bottom:248.524500px;}
.y1a_c01239{bottom:273.747000px;}
.y19_c01239{bottom:298.968000px;}
.y18_c01239{bottom:324.190500px;}
.y17_c01239{bottom:366.909000px;}
.y16_c01239{bottom:392.131500px;}
.y15_c01239{bottom:434.851500px;}
.y14_c01239{bottom:460.072500px;}
.y13_c01239{bottom:485.295000px;}
.y12_c01239{bottom:528.013500px;}
.y11_c01239{bottom:553.236000px;}
.y10_c01239{bottom:614.512500px;}
.yf_c01239{bottom:693.286500px;}
.ye_c01239{bottom:736.005000px;}
.yd_c01239{bottom:761.227500px;}
.yc_c01239{bottom:786.448500px;}
.yb_c01239{bottom:811.671000px;}
.ya_c01239{bottom:836.892000px;}
.y9_c01239{bottom:879.612000px;}
.y8_c01239{bottom:904.833000px;}
.y7_c01239{bottom:930.055500px;}
.y6_c01239{bottom:955.278000px;}
.y5_c01239{bottom:997.996500px;}
.y4_c01239{bottom:1023.219000px;}
.y3_c01239{bottom:1048.440000px;}
.y2_c01239{bottom:1073.662500px;}
.y1_c01239{bottom:1140.615000px;}
.h3_c01239{height:49.090500px;}
.h2_c01239{height:53.797500px;}
.h4_c01239{height:65.632500px;}
.h1_c01239{height:1263.750000px;}
.h0_c01239{height:1264.110000px;}
.w0_c01239{width:893.869500px;}
.w1_c01239{width:894.000000px;}
.x0_c01239{left:0.000000px;}
.x3_c01239{left:127.558500px;}
.x2_c01239{left:159.838500px;}
.x5_c01239{left:201.883500px;}
.x4_c01239{left:437.526000px;}
.x1_c01239{left:739.972500px;}
@media print{
.v0_c01239{vertical-align:0.000000pt;}
.v1_c01239{vertical-align:14.704000pt;}
.ls0_c01239{letter-spacing:0.000000pt;}
.ws0_c01239{word-spacing:-0.063760pt;}
.ws12_c01239{word-spacing:0.000000pt;}
.wsd_c01239{word-spacing:13.148981pt;}
.ws11_c01239{word-spacing:15.708960pt;}
.wse_c01239{word-spacing:15.825323pt;}
.wsf_c01239{word-spacing:16.756224pt;}
.ws3_c01239{word-spacing:18.094395pt;}
.ws2_c01239{word-spacing:18.443483pt;}
.wsb_c01239{word-spacing:19.025296pt;}
.wsc_c01239{word-spacing:19.258021pt;}
.ws1_c01239{word-spacing:19.316203pt;}
.ws6_c01239{word-spacing:19.374384pt;}
.ws5_c01239{word-spacing:20.654373pt;}
.ws10_c01239{word-spacing:21.410731pt;}
.wsa_c01239{word-spacing:22.225269pt;}
.ws7_c01239{word-spacing:24.494341pt;}
.ws9_c01239{word-spacing:26.123419pt;}
.ws8_c01239{word-spacing:27.461589pt;}
.ws4_c01239{word-spacing:27.868859pt;}
._9_c01239{margin-left:-32.756091pt;}
._a_c01239{margin-left:-31.068832pt;}
._c_c01239{margin-left:-30.137931pt;}
._2_c01239{margin-left:-29.032485pt;}
._1_c01239{margin-left:-27.461589pt;}
._6_c01239{margin-left:-22.632539pt;}
._5_c01239{margin-left:-6.050859pt;}
._4_c01239{margin-left:-4.945413pt;}
._8_c01239{margin-left:-3.258155pt;}
._0_c01239{margin-left:-1.629077pt;}
._3_c01239{width:1.163627pt;}
._7_c01239{width:2.443616pt;}
._b_c01239{width:5.278821pt;}
.fs1_c01239{font-size:58.181333pt;}
.fs0_c01239{font-size:63.760000pt;}
.y0_c01239{bottom:0.000000pt;}
.y22_c01239{bottom:63.976000pt;}
.y21_c01239{bottom:86.394667pt;}
.y20_c01239{bottom:108.814667pt;}
.y1f_c01239{bottom:131.233333pt;}
.y1e_c01239{bottom:153.653333pt;}
.y1d_c01239{bottom:176.072000pt;}
.y1c_c01239{bottom:198.492000pt;}
.y1b_c01239{bottom:220.910667pt;}
.y1a_c01239{bottom:243.330667pt;}
.y19_c01239{bottom:265.749333pt;}
.y18_c01239{bottom:288.169333pt;}
.y17_c01239{bottom:326.141333pt;}
.y16_c01239{bottom:348.561333pt;}
.y15_c01239{bottom:386.534667pt;}
.y14_c01239{bottom:408.953333pt;}
.y13_c01239{bottom:431.373333pt;}
.y12_c01239{bottom:469.345333pt;}
.y11_c01239{bottom:491.765333pt;}
.y10_c01239{bottom:546.233333pt;}
.yf_c01239{bottom:616.254667pt;}
.ye_c01239{bottom:654.226667pt;}
.yd_c01239{bottom:676.646667pt;}
.yc_c01239{bottom:699.065333pt;}
.yb_c01239{bottom:721.485333pt;}
.ya_c01239{bottom:743.904000pt;}
.y9_c01239{bottom:781.877333pt;}
.y8_c01239{bottom:804.296000pt;}
.y7_c01239{bottom:826.716000pt;}
.y6_c01239{bottom:849.136000pt;}
.y5_c01239{bottom:887.108000pt;}
.y4_c01239{bottom:909.528000pt;}
.y3_c01239{bottom:931.946667pt;}
.y2_c01239{bottom:954.366667pt;}
.y1_c01239{bottom:1013.880000pt;}
.h3_c01239{height:43.636000pt;}
.h2_c01239{height:47.820000pt;}
.h4_c01239{height:58.340000pt;}
.h1_c01239{height:1123.333333pt;}
.h0_c01239{height:1123.653333pt;}
.w0_c01239{width:794.550667pt;}
.w1_c01239{width:794.666667pt;}
.x0_c01239{left:0.000000pt;}
.x3_c01239{left:113.385333pt;}
.x2_c01239{left:142.078667pt;}
.x5_c01239{left:179.452000pt;}
.x4_c01239{left:388.912000pt;}
.x1_c01239{left:657.753333pt;}
}





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

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





.ff0_c01240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01240;src:url('chunks/assets/font_704090e87e38fa5ff8e7a06e.woff2')format("woff");}.ff1_c01240{font-family:ff1_c01240;line-height:1.001000;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_c01240;src:url('chunks/assets/font_aafd5c554ca823cb1429c7dd.woff2')format("woff");}.ff2_c01240{font-family:ff2_c01240;line-height:1.000000;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_c01240{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_c01240{vertical-align:0.000000px;}
.v1_c01240{vertical-align:16.548000px;}
.ls0_c01240{letter-spacing:0.000000px;}
.sc__c01240{text-shadow:none;}
.sc0_c01240{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__c01240{-webkit-text-stroke:0px transparent;}
.sc0_c01240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01240{word-spacing:-0.071730px;}
.ws5_c01240{word-spacing:-0.065454px;}
.ws19_c01240{word-spacing:0.000000px;}
.ws17_c01240{word-spacing:18.523482px;}
.ws1_c01240{word-spacing:19.374384px;}
.ws15_c01240{word-spacing:20.159832px;}
.wsc_c01240{word-spacing:20.945280px;}
.ws3_c01240{word-spacing:21.599820px;}
.ws2_c01240{word-spacing:21.730728px;}
.ws16_c01240{word-spacing:21.796182px;}
.ws6_c01240{word-spacing:21.861636px;}
.ws14_c01240{word-spacing:23.105262px;}
.ws10_c01240{word-spacing:24.545250px;}
.wsa_c01240{word-spacing:24.676158px;}
.ws9_c01240{word-spacing:24.741612px;}
.ws4_c01240{word-spacing:25.134336px;}
.ws18_c01240{word-spacing:25.265244px;}
.wsd_c01240{word-spacing:25.854330px;}
.ws8_c01240{word-spacing:26.050692px;}
.wsb_c01240{word-spacing:26.181600px;}
.wsf_c01240{word-spacing:26.967048px;}
.wse_c01240{word-spacing:27.752496px;}
.ws13_c01240{word-spacing:30.959742px;}
.ws7_c01240{word-spacing:31.221558px;}
.ws12_c01240{word-spacing:31.810644px;}
.ws11_c01240{word-spacing:32.072460px;}
._c_c01240{margin-left:-35.214252px;}
._5_c01240{margin-left:-33.970626px;}
._0_c01240{margin-left:-32.857908px;}
._d_c01240{margin-left:-30.501564px;}
._7_c01240{margin-left:-25.461606px;}
._6_c01240{margin-left:-7.265394px;}
._3_c01240{margin-left:-5.170866px;}
._8_c01240{margin-left:-3.469062px;}
._1_c01240{margin-left:-2.029074px;}
._4_c01240{width:1.832712px;}
._9_c01240{width:3.861786px;}
._2_c01240{width:8.155326px;}
._e_c01240{width:9.335748px;}
._f_c01240{width:23.367078px;}
._b_c01240{width:28.668852px;}
._a_c01240{width:33.093618px;}
.fc0_c01240{color:rgb(0,0,0);}
.fs1_c01240{font-size:65.454000px;}
.fs0_c01240{font-size:71.730000px;}
.y0_c01240{bottom:0.000000px;}
.y26_c01240{bottom:76.015500px;}
.y25_c01240{bottom:101.236500px;}
.y24_c01240{bottom:126.459000px;}
.y23_c01240{bottom:151.680000px;}
.y22_c01240{bottom:194.835000px;}
.y21_c01240{bottom:220.056000px;}
.y20_c01240{bottom:245.278500px;}
.y1f_c01240{bottom:270.499500px;}
.y1e_c01240{bottom:295.722000px;}
.y1d_c01240{bottom:320.943000px;}
.y1c_c01240{bottom:346.165500px;}
.y1b_c01240{bottom:371.386500px;}
.y1a_c01240{bottom:396.609000px;}
.y19_c01240{bottom:421.830000px;}
.y18_c01240{bottom:447.052500px;}
.y17_c01240{bottom:472.273500px;}
.y16_c01240{bottom:497.496000px;}
.y15_c01240{bottom:522.717000px;}
.y14_c01240{bottom:547.939500px;}
.y13_c01240{bottom:573.160500px;}
.y12_c01240{bottom:616.315500px;}
.y11_c01240{bottom:641.538000px;}
.y10_c01240{bottom:666.759000px;}
.yf_c01240{bottom:691.981500px;}
.ye_c01240{bottom:717.202500px;}
.yd_c01240{bottom:760.357500px;}
.yc_c01240{bottom:803.511000px;}
.yb_c01240{bottom:828.733500px;}
.ya_c01240{bottom:853.954500px;}
.y9_c01240{bottom:879.177000px;}
.y8_c01240{bottom:904.398000px;}
.y7_c01240{bottom:929.620500px;}
.y6_c01240{bottom:954.841500px;}
.y5_c01240{bottom:980.064000px;}
.y4_c01240{bottom:1005.285000px;}
.y3_c01240{bottom:1048.440000px;}
.y2_c01240{bottom:1073.662500px;}
.y1_c01240{bottom:1140.615000px;}
.h3_c01240{height:49.090500px;}
.h2_c01240{height:53.797500px;}
.h5_c01240{height:65.632500px;}
.h4_c01240{height:65.638500px;}
.h1_c01240{height:1263.750000px;}
.h0_c01240{height:1264.110000px;}
.w0_c01240{width:893.869500px;}
.w1_c01240{width:894.000000px;}
.x0_c01240{left:0.000000px;}
.x3_c01240{left:127.558500px;}
.x2_c01240{left:159.838500px;}
.x4_c01240{left:215.974500px;}
.x9_c01240{left:283.248000px;}
.x6_c01240{left:297.565500px;}
.x8_c01240{left:356.422500px;}
.x5_c01240{left:483.702000px;}
.x7_c01240{left:565.747500px;}
.x1_c01240{left:739.972500px;}
@media print{
.v0_c01240{vertical-align:0.000000pt;}
.v1_c01240{vertical-align:14.709333pt;}
.ls0_c01240{letter-spacing:0.000000pt;}
.ws0_c01240{word-spacing:-0.063760pt;}
.ws5_c01240{word-spacing:-0.058181pt;}
.ws19_c01240{word-spacing:0.000000pt;}
.ws17_c01240{word-spacing:16.465317pt;}
.ws1_c01240{word-spacing:17.221675pt;}
.ws15_c01240{word-spacing:17.919851pt;}
.wsc_c01240{word-spacing:18.618027pt;}
.ws3_c01240{word-spacing:19.199840pt;}
.ws2_c01240{word-spacing:19.316203pt;}
.ws16_c01240{word-spacing:19.374384pt;}
.ws6_c01240{word-spacing:19.432565pt;}
.ws14_c01240{word-spacing:20.538011pt;}
.ws10_c01240{word-spacing:21.818000pt;}
.wsa_c01240{word-spacing:21.934363pt;}
.ws9_c01240{word-spacing:21.992544pt;}
.ws4_c01240{word-spacing:22.341632pt;}
.ws18_c01240{word-spacing:22.457995pt;}
.wsd_c01240{word-spacing:22.981627pt;}
.ws8_c01240{word-spacing:23.156171pt;}
.wsb_c01240{word-spacing:23.272533pt;}
.wsf_c01240{word-spacing:23.970709pt;}
.wse_c01240{word-spacing:24.668885pt;}
.ws13_c01240{word-spacing:27.519771pt;}
.ws7_c01240{word-spacing:27.752496pt;}
.ws12_c01240{word-spacing:28.276128pt;}
.ws11_c01240{word-spacing:28.508853pt;}
._c_c01240{margin-left:-31.301557pt;}
._5_c01240{margin-left:-30.196112pt;}
._0_c01240{margin-left:-29.207029pt;}
._d_c01240{margin-left:-27.112501pt;}
._7_c01240{margin-left:-22.632539pt;}
._6_c01240{margin-left:-6.458128pt;}
._3_c01240{margin-left:-4.596325pt;}
._8_c01240{margin-left:-3.083611pt;}
._1_c01240{margin-left:-1.803621pt;}
._4_c01240{width:1.629077pt;}
._9_c01240{width:3.432699pt;}
._2_c01240{width:7.249179pt;}
._e_c01240{width:8.298443pt;}
._f_c01240{width:20.770736pt;}
._b_c01240{width:25.483424pt;}
._a_c01240{width:29.416549pt;}
.fs1_c01240{font-size:58.181333pt;}
.fs0_c01240{font-size:63.760000pt;}
.y0_c01240{bottom:0.000000pt;}
.y26_c01240{bottom:67.569333pt;}
.y25_c01240{bottom:89.988000pt;}
.y24_c01240{bottom:112.408000pt;}
.y23_c01240{bottom:134.826667pt;}
.y22_c01240{bottom:173.186667pt;}
.y21_c01240{bottom:195.605333pt;}
.y20_c01240{bottom:218.025333pt;}
.y1f_c01240{bottom:240.444000pt;}
.y1e_c01240{bottom:262.864000pt;}
.y1d_c01240{bottom:285.282667pt;}
.y1c_c01240{bottom:307.702667pt;}
.y1b_c01240{bottom:330.121333pt;}
.y1a_c01240{bottom:352.541333pt;}
.y19_c01240{bottom:374.960000pt;}
.y18_c01240{bottom:397.380000pt;}
.y17_c01240{bottom:419.798667pt;}
.y16_c01240{bottom:442.218667pt;}
.y15_c01240{bottom:464.637333pt;}
.y14_c01240{bottom:487.057333pt;}
.y13_c01240{bottom:509.476000pt;}
.y12_c01240{bottom:547.836000pt;}
.y11_c01240{bottom:570.256000pt;}
.y10_c01240{bottom:592.674667pt;}
.yf_c01240{bottom:615.094667pt;}
.ye_c01240{bottom:637.513333pt;}
.yd_c01240{bottom:675.873333pt;}
.yc_c01240{bottom:714.232000pt;}
.yb_c01240{bottom:736.652000pt;}
.ya_c01240{bottom:759.070667pt;}
.y9_c01240{bottom:781.490667pt;}
.y8_c01240{bottom:803.909333pt;}
.y7_c01240{bottom:826.329333pt;}
.y6_c01240{bottom:848.748000pt;}
.y5_c01240{bottom:871.168000pt;}
.y4_c01240{bottom:893.586667pt;}
.y3_c01240{bottom:931.946667pt;}
.y2_c01240{bottom:954.366667pt;}
.y1_c01240{bottom:1013.880000pt;}
.h3_c01240{height:43.636000pt;}
.h2_c01240{height:47.820000pt;}
.h5_c01240{height:58.340000pt;}
.h4_c01240{height:58.345333pt;}
.h1_c01240{height:1123.333333pt;}
.h0_c01240{height:1123.653333pt;}
.w0_c01240{width:794.550667pt;}
.w1_c01240{width:794.666667pt;}
.x0_c01240{left:0.000000pt;}
.x3_c01240{left:113.385333pt;}
.x2_c01240{left:142.078667pt;}
.x4_c01240{left:191.977333pt;}
.x9_c01240{left:251.776000pt;}
.x6_c01240{left:264.502667pt;}
.x8_c01240{left:316.820000pt;}
.x5_c01240{left:429.957333pt;}
.x7_c01240{left:502.886667pt;}
.x1_c01240{left:657.753333pt;}
}





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

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





.ff0_c01241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01241;src:url('chunks/assets/font_f4a4ea81c454c5bcc3c80b4c.woff2')format("woff");}.ff1_c01241{font-family:ff1_c01241;line-height:1.001000;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_c01241;src:url('chunks/assets/font_109ab63a0f44cd37d48764e7.woff2')format("woff");}.ff2_c01241{font-family:ff2_c01241;line-height:1.000000;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_c01241{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_c01241{vertical-align:0.000000px;}
.v1_c01241{vertical-align:16.542000px;}
.ls0_c01241{letter-spacing:0.000000px;}
.sc__c01241{text-shadow:none;}
.sc0_c01241{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__c01241{-webkit-text-stroke:0px transparent;}
.sc0_c01241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01241{word-spacing:-0.071730px;}
.ws9_c01241{word-spacing:-0.065454px;}
.ws1a_c01241{word-spacing:0.000000px;}
.wse_c01241{word-spacing:14.792604px;}
.ws8_c01241{word-spacing:18.065304px;}
.wsf_c01241{word-spacing:18.130758px;}
.ws18_c01241{word-spacing:19.505292px;}
.ws17_c01241{word-spacing:19.636200px;}
.ws14_c01241{word-spacing:20.748918px;}
.ws5_c01241{word-spacing:21.468912px;}
.ws2_c01241{word-spacing:21.730728px;}
.ws7_c01241{word-spacing:21.796182px;}
.ws12_c01241{word-spacing:23.759802px;}
.ws6_c01241{word-spacing:24.152526px;}
.wsb_c01241{word-spacing:24.217980px;}
.ws3_c01241{word-spacing:24.610704px;}
.ws4_c01241{word-spacing:24.676158px;}
.ws1_c01241{word-spacing:24.937974px;}
.ws19_c01241{word-spacing:27.359772px;}
.wsa_c01241{word-spacing:28.145220px;}
.ws10_c01241{word-spacing:28.865214px;}
.ws16_c01241{word-spacing:28.996122px;}
.ws15_c01241{word-spacing:30.436110px;}
.wsd_c01241{word-spacing:30.894288px;}
.ws13_c01241{word-spacing:31.352466px;}
.ws11_c01241{word-spacing:32.007006px;}
.wsc_c01241{word-spacing:39.050334px;}
._0_c01241{margin-left:-32.727000px;}
._7_c01241{margin-left:-30.894288px;}
._3_c01241{margin-left:-25.461606px;}
._2_c01241{margin-left:-7.265394px;}
._9_c01241{margin-left:-5.694498px;}
._8_c01241{margin-left:-3.730878px;}
._1_c01241{margin-left:-1.898166px;}
._4_c01241{width:1.832712px;}
._a_c01241{width:9.041508px;}
._6_c01241{width:20.028924px;}
._5_c01241{width:33.249936px;}
.fc0_c01241{color:rgb(0,0,0);}
.fs1_c01241{font-size:65.454000px;}
.fs0_c01241{font-size:71.730000px;}
.y0_c01241{bottom:0.000000px;}
.y23_c01241{bottom:79.948500px;}
.y22_c01241{bottom:123.103500px;}
.y21_c01241{bottom:148.326000px;}
.y20_c01241{bottom:191.479500px;}
.y1f_c01241{bottom:216.702000px;}
.y1e_c01241{bottom:259.855500px;}
.y1d_c01241{bottom:303.010500px;}
.y1c_c01241{bottom:328.233000px;}
.y1b_c01241{bottom:353.454000px;}
.y1a_c01241{bottom:378.676500px;}
.y19_c01241{bottom:421.830000px;}
.y18_c01241{bottom:447.052500px;}
.y17_c01241{bottom:472.273500px;}
.y16_c01241{bottom:515.428500px;}
.y15_c01241{bottom:540.649500px;}
.y14_c01241{bottom:565.872000px;}
.y13_c01241{bottom:591.094500px;}
.y12_c01241{bottom:616.315500px;}
.y11_c01241{bottom:641.538000px;}
.y10_c01241{bottom:666.759000px;}
.yf_c01241{bottom:691.981500px;}
.ye_c01241{bottom:717.202500px;}
.yd_c01241{bottom:742.425000px;}
.yc_c01241{bottom:767.646000px;}
.yb_c01241{bottom:792.868500px;}
.ya_c01241{bottom:836.022000px;}
.y9_c01241{bottom:861.244500px;}
.y8_c01241{bottom:904.398000px;}
.y7_c01241{bottom:929.620500px;}
.y6_c01241{bottom:954.841500px;}
.y5_c01241{bottom:997.996500px;}
.y4_c01241{bottom:1023.219000px;}
.y3_c01241{bottom:1048.440000px;}
.y2_c01241{bottom:1073.662500px;}
.y1_c01241{bottom:1140.615000px;}
.h3_c01241{height:49.090500px;}
.h2_c01241{height:53.797500px;}
.h4_c01241{height:65.632500px;}
.h5_c01241{height:65.638500px;}
.h1_c01241{height:1263.750000px;}
.h0_c01241{height:1264.110000px;}
.w0_c01241{width:893.869500px;}
.w1_c01241{width:894.000000px;}
.x0_c01241{left:0.000000px;}
.x2_c01241{left:127.558500px;}
.x5_c01241{left:156.204000px;}
.x3_c01241{left:159.838500px;}
.x6_c01241{left:275.974500px;}
.x4_c01241{left:709.635000px;}
.x1_c01241{left:739.972500px;}
@media print{
.v0_c01241{vertical-align:0.000000pt;}
.v1_c01241{vertical-align:14.704000pt;}
.ls0_c01241{letter-spacing:0.000000pt;}
.ws0_c01241{word-spacing:-0.063760pt;}
.ws9_c01241{word-spacing:-0.058181pt;}
.ws1a_c01241{word-spacing:0.000000pt;}
.wse_c01241{word-spacing:13.148981pt;}
.ws8_c01241{word-spacing:16.058048pt;}
.wsf_c01241{word-spacing:16.116229pt;}
.ws18_c01241{word-spacing:17.338037pt;}
.ws17_c01241{word-spacing:17.454400pt;}
.ws14_c01241{word-spacing:18.443483pt;}
.ws5_c01241{word-spacing:19.083477pt;}
.ws2_c01241{word-spacing:19.316203pt;}
.ws7_c01241{word-spacing:19.374384pt;}
.ws12_c01241{word-spacing:21.119824pt;}
.ws6_c01241{word-spacing:21.468912pt;}
.wsb_c01241{word-spacing:21.527093pt;}
.ws3_c01241{word-spacing:21.876181pt;}
.ws4_c01241{word-spacing:21.934363pt;}
.ws1_c01241{word-spacing:22.167088pt;}
.ws19_c01241{word-spacing:24.319797pt;}
.wsa_c01241{word-spacing:25.017973pt;}
.ws10_c01241{word-spacing:25.657968pt;}
.ws16_c01241{word-spacing:25.774331pt;}
.ws15_c01241{word-spacing:27.054320pt;}
.wsd_c01241{word-spacing:27.461589pt;}
.ws13_c01241{word-spacing:27.868859pt;}
.ws11_c01241{word-spacing:28.450672pt;}
.wsc_c01241{word-spacing:34.711408pt;}
._0_c01241{margin-left:-29.090667pt;}
._7_c01241{margin-left:-27.461589pt;}
._3_c01241{margin-left:-22.632539pt;}
._2_c01241{margin-left:-6.458128pt;}
._9_c01241{margin-left:-5.061776pt;}
._8_c01241{margin-left:-3.316336pt;}
._1_c01241{margin-left:-1.687259pt;}
._4_c01241{width:1.629077pt;}
._a_c01241{width:8.036896pt;}
._6_c01241{width:17.803488pt;}
._5_c01241{width:29.555499pt;}
.fs1_c01241{font-size:58.181333pt;}
.fs0_c01241{font-size:63.760000pt;}
.y0_c01241{bottom:0.000000pt;}
.y23_c01241{bottom:71.065333pt;}
.y22_c01241{bottom:109.425333pt;}
.y21_c01241{bottom:131.845333pt;}
.y20_c01241{bottom:170.204000pt;}
.y1f_c01241{bottom:192.624000pt;}
.y1e_c01241{bottom:230.982667pt;}
.y1d_c01241{bottom:269.342667pt;}
.y1c_c01241{bottom:291.762667pt;}
.y1b_c01241{bottom:314.181333pt;}
.y1a_c01241{bottom:336.601333pt;}
.y19_c01241{bottom:374.960000pt;}
.y18_c01241{bottom:397.380000pt;}
.y17_c01241{bottom:419.798667pt;}
.y16_c01241{bottom:458.158667pt;}
.y15_c01241{bottom:480.577333pt;}
.y14_c01241{bottom:502.997333pt;}
.y13_c01241{bottom:525.417333pt;}
.y12_c01241{bottom:547.836000pt;}
.y11_c01241{bottom:570.256000pt;}
.y10_c01241{bottom:592.674667pt;}
.yf_c01241{bottom:615.094667pt;}
.ye_c01241{bottom:637.513333pt;}
.yd_c01241{bottom:659.933333pt;}
.yc_c01241{bottom:682.352000pt;}
.yb_c01241{bottom:704.772000pt;}
.ya_c01241{bottom:743.130667pt;}
.y9_c01241{bottom:765.550667pt;}
.y8_c01241{bottom:803.909333pt;}
.y7_c01241{bottom:826.329333pt;}
.y6_c01241{bottom:848.748000pt;}
.y5_c01241{bottom:887.108000pt;}
.y4_c01241{bottom:909.528000pt;}
.y3_c01241{bottom:931.946667pt;}
.y2_c01241{bottom:954.366667pt;}
.y1_c01241{bottom:1013.880000pt;}
.h3_c01241{height:43.636000pt;}
.h2_c01241{height:47.820000pt;}
.h4_c01241{height:58.340000pt;}
.h5_c01241{height:58.345333pt;}
.h1_c01241{height:1123.333333pt;}
.h0_c01241{height:1123.653333pt;}
.w0_c01241{width:794.550667pt;}
.w1_c01241{width:794.666667pt;}
.x0_c01241{left:0.000000pt;}
.x2_c01241{left:113.385333pt;}
.x5_c01241{left:138.848000pt;}
.x3_c01241{left:142.078667pt;}
.x6_c01241{left:245.310667pt;}
.x4_c01241{left:630.786667pt;}
.x1_c01241{left:657.753333pt;}
}





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

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





.ff0_c01242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01242;src:url('chunks/assets/font_42c8f72dd8731e8e76920a6e.woff2')format("woff");}.ff1_c01242{font-family:ff1_c01242;line-height:1.001000;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_c01242;src:url('chunks/assets/font_5d21b84db939ea511c126cf1.woff2')format("woff");}.ff2_c01242{font-family:ff2_c01242;line-height:1.000000;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_c01242;src:url('chunks/assets/font_697099acbdc829fd9ffef4da.woff2')format("woff");}.ff3_c01242{font-family:ff3_c01242;line-height:0.697000;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_c01242{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_c01242{vertical-align:0.000000px;}
.v1_c01242{vertical-align:16.548000px;}
.v2_c01242{vertical-align:23.754000px;}
.ls2_c01242{letter-spacing:0.000000px;}
.ls0_c01242{letter-spacing:20.645580px;}
.ls1_c01242{letter-spacing:24.929580px;}
.sc__c01242{text-shadow:none;}
.sc0_c01242{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__c01242{-webkit-text-stroke:0px transparent;}
.sc0_c01242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01242{word-spacing:-0.071730px;}
.ws1c_c01242{word-spacing:0.000000px;}
.ws13_c01242{word-spacing:17.018040px;}
.wse_c01242{word-spacing:17.476218px;}
.ws8_c01242{word-spacing:17.541672px;}
.ws9_c01242{word-spacing:17.607126px;}
.ws5_c01242{word-spacing:17.803488px;}
.ws11_c01242{word-spacing:18.065304px;}
.ws15_c01242{word-spacing:18.196212px;}
.wsd_c01242{word-spacing:18.523482px;}
.ws19_c01242{word-spacing:18.719844px;}
.ws18_c01242{word-spacing:18.785298px;}
.wsc_c01242{word-spacing:20.159832px;}
.ws4_c01242{word-spacing:21.730728px;}
.ws6_c01242{word-spacing:21.796182px;}
.ws17_c01242{word-spacing:21.861636px;}
.ws1a_c01242{word-spacing:22.254360px;}
.wsa_c01242{word-spacing:22.712538px;}
.wsf_c01242{word-spacing:23.694348px;}
.wsb_c01242{word-spacing:25.068882px;}
.ws7_c01242{word-spacing:25.592514px;}
.ws14_c01242{word-spacing:26.967048px;}
.ws16_c01242{word-spacing:28.734306px;}
.ws2_c01242{word-spacing:28.799760px;}
.ws1b_c01242{word-spacing:29.323392px;}
.ws3_c01242{word-spacing:29.388846px;}
.ws10_c01242{word-spacing:29.912478px;}
.ws12_c01242{word-spacing:30.632472px;}
.ws1_c01242{word-spacing:31.876098px;}
._7_c01242{margin-left:-34.625166px;}
._0_c01242{margin-left:-32.857908px;}
._a_c01242{margin-left:-30.763380px;}
._4_c01242{margin-left:-25.396152px;}
._3_c01242{margin-left:-7.069032px;}
._5_c01242{margin-left:-4.516326px;}
._9_c01242{margin-left:-3.403608px;}
._1_c01242{margin-left:-1.963620px;}
._2_c01242{width:1.963620px;}
._8_c01242{width:3.469062px;}
._6_c01242{width:9.024546px;}
._b_c01242{width:19.178022px;}
._c_c01242{width:26.901594px;}
.fc0_c01242{color:rgb(0,0,0);}
.fs2_c01242{font-size:47.820000px;}
.fs1_c01242{font-size:65.454000px;}
.fs0_c01242{font-size:71.730000px;}
.y0_c01242{bottom:0.000000px;}
.y26_c01242{bottom:93.948000px;}
.y25_c01242{bottom:119.169000px;}
.y24_c01242{bottom:144.391500px;}
.y23_c01242{bottom:187.545000px;}
.y22_c01242{bottom:212.767500px;}
.y21_c01242{bottom:237.988500px;}
.y20_c01242{bottom:263.211000px;}
.y1f_c01242{bottom:288.432000px;}
.y1e_c01242{bottom:313.654500px;}
.y1d_c01242{bottom:356.809500px;}
.y1c_c01242{bottom:382.030500px;}
.y1b_c01242{bottom:407.253000px;}
.y1a_c01242{bottom:432.474000px;}
.y19_c01242{bottom:457.696500px;}
.y18_c01242{bottom:482.917500px;}
.y17_c01242{bottom:508.140000px;}
.y16_c01242{bottom:533.361000px;}
.y15_c01242{bottom:558.583500px;}
.y14_c01242{bottom:583.804500px;}
.y13_c01242{bottom:609.027000px;}
.y12_c01242{bottom:652.180500px;}
.y11_c01242{bottom:677.403000px;}
.y10_c01242{bottom:702.624000px;}
.yf_c01242{bottom:727.846500px;}
.ye_c01242{bottom:753.067500px;}
.yd_c01242{bottom:778.290000px;}
.yc_c01242{bottom:803.511000px;}
.yb_c01242{bottom:828.733500px;}
.ya_c01242{bottom:853.954500px;}
.y9_c01242{bottom:879.177000px;}
.y8_c01242{bottom:904.398000px;}
.y7_c01242{bottom:947.553000px;}
.y6_c01242{bottom:972.775500px;}
.y5_c01242{bottom:997.996500px;}
.y4_c01242{bottom:1023.219000px;}
.y3_c01242{bottom:1048.440000px;}
.y2_c01242{bottom:1073.662500px;}
.y1_c01242{bottom:1140.615000px;}
.h3_c01242{height:49.090500px;}
.h2_c01242{height:53.797500px;}
.h5_c01242{height:56.080320px;}
.h6_c01242{height:65.632500px;}
.h4_c01242{height:65.638500px;}
.h1_c01242{height:1263.750000px;}
.h0_c01242{height:1264.110000px;}
.w0_c01242{width:893.869500px;}
.w1_c01242{width:894.000000px;}
.x0_c01242{left:0.000000px;}
.x3_c01242{left:127.558500px;}
.x2_c01242{left:159.838500px;}
.x4_c01242{left:258.019500px;}
.x7_c01242{left:276.997500px;}
.x5_c01242{left:573.021000px;}
.x6_c01242{left:703.248000px;}
.x1_c01242{left:739.972500px;}
@media print{
.v0_c01242{vertical-align:0.000000pt;}
.v1_c01242{vertical-align:14.709333pt;}
.v2_c01242{vertical-align:21.114667pt;}
.ls2_c01242{letter-spacing:0.000000pt;}
.ls0_c01242{letter-spacing:18.351627pt;}
.ls1_c01242{letter-spacing:22.159627pt;}
.ws0_c01242{word-spacing:-0.063760pt;}
.ws1c_c01242{word-spacing:0.000000pt;}
.ws13_c01242{word-spacing:15.127147pt;}
.wse_c01242{word-spacing:15.534416pt;}
.ws8_c01242{word-spacing:15.592597pt;}
.ws9_c01242{word-spacing:15.650779pt;}
.ws5_c01242{word-spacing:15.825323pt;}
.ws11_c01242{word-spacing:16.058048pt;}
.ws15_c01242{word-spacing:16.174411pt;}
.wsd_c01242{word-spacing:16.465317pt;}
.ws19_c01242{word-spacing:16.639861pt;}
.ws18_c01242{word-spacing:16.698043pt;}
.wsc_c01242{word-spacing:17.919851pt;}
.ws4_c01242{word-spacing:19.316203pt;}
.ws6_c01242{word-spacing:19.374384pt;}
.ws17_c01242{word-spacing:19.432565pt;}
.ws1a_c01242{word-spacing:19.781653pt;}
.wsa_c01242{word-spacing:20.188923pt;}
.wsf_c01242{word-spacing:21.061643pt;}
.wsb_c01242{word-spacing:22.283451pt;}
.ws7_c01242{word-spacing:22.748901pt;}
.ws14_c01242{word-spacing:23.970709pt;}
.ws16_c01242{word-spacing:25.541605pt;}
.ws2_c01242{word-spacing:25.599787pt;}
.ws1b_c01242{word-spacing:26.065237pt;}
.ws3_c01242{word-spacing:26.123419pt;}
.ws10_c01242{word-spacing:26.588869pt;}
.ws12_c01242{word-spacing:27.228864pt;}
.ws1_c01242{word-spacing:28.334309pt;}
._7_c01242{margin-left:-30.777925pt;}
._0_c01242{margin-left:-29.207029pt;}
._a_c01242{margin-left:-27.345227pt;}
._4_c01242{margin-left:-22.574357pt;}
._3_c01242{margin-left:-6.283584pt;}
._5_c01242{margin-left:-4.014512pt;}
._9_c01242{margin-left:-3.025429pt;}
._1_c01242{margin-left:-1.745440pt;}
._2_c01242{width:1.745440pt;}
._8_c01242{width:3.083611pt;}
._6_c01242{width:8.021819pt;}
._b_c01242{width:17.047131pt;}
._c_c01242{width:23.912528pt;}
.fs2_c01242{font-size:42.506667pt;}
.fs1_c01242{font-size:58.181333pt;}
.fs0_c01242{font-size:63.760000pt;}
.y0_c01242{bottom:0.000000pt;}
.y26_c01242{bottom:83.509333pt;}
.y25_c01242{bottom:105.928000pt;}
.y24_c01242{bottom:128.348000pt;}
.y23_c01242{bottom:166.706667pt;}
.y22_c01242{bottom:189.126667pt;}
.y21_c01242{bottom:211.545333pt;}
.y20_c01242{bottom:233.965333pt;}
.y1f_c01242{bottom:256.384000pt;}
.y1e_c01242{bottom:278.804000pt;}
.y1d_c01242{bottom:317.164000pt;}
.y1c_c01242{bottom:339.582667pt;}
.y1b_c01242{bottom:362.002667pt;}
.y1a_c01242{bottom:384.421333pt;}
.y19_c01242{bottom:406.841333pt;}
.y18_c01242{bottom:429.260000pt;}
.y17_c01242{bottom:451.680000pt;}
.y16_c01242{bottom:474.098667pt;}
.y15_c01242{bottom:496.518667pt;}
.y14_c01242{bottom:518.937333pt;}
.y13_c01242{bottom:541.357333pt;}
.y12_c01242{bottom:579.716000pt;}
.y11_c01242{bottom:602.136000pt;}
.y10_c01242{bottom:624.554667pt;}
.yf_c01242{bottom:646.974667pt;}
.ye_c01242{bottom:669.393333pt;}
.yd_c01242{bottom:691.813333pt;}
.yc_c01242{bottom:714.232000pt;}
.yb_c01242{bottom:736.652000pt;}
.ya_c01242{bottom:759.070667pt;}
.y9_c01242{bottom:781.490667pt;}
.y8_c01242{bottom:803.909333pt;}
.y7_c01242{bottom:842.269333pt;}
.y6_c01242{bottom:864.689333pt;}
.y5_c01242{bottom:887.108000pt;}
.y4_c01242{bottom:909.528000pt;}
.y3_c01242{bottom:931.946667pt;}
.y2_c01242{bottom:954.366667pt;}
.y1_c01242{bottom:1013.880000pt;}
.h3_c01242{height:43.636000pt;}
.h2_c01242{height:47.820000pt;}
.h5_c01242{height:49.849173pt;}
.h6_c01242{height:58.340000pt;}
.h4_c01242{height:58.345333pt;}
.h1_c01242{height:1123.333333pt;}
.h0_c01242{height:1123.653333pt;}
.w0_c01242{width:794.550667pt;}
.w1_c01242{width:794.666667pt;}
.x0_c01242{left:0.000000pt;}
.x3_c01242{left:113.385333pt;}
.x2_c01242{left:142.078667pt;}
.x4_c01242{left:229.350667pt;}
.x7_c01242{left:246.220000pt;}
.x5_c01242{left:509.352000pt;}
.x6_c01242{left:625.109333pt;}
.x1_c01242{left:657.753333pt;}
}





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

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





.ff0_c01243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01243;src:url('chunks/assets/font_4fbe84c5ebec3023c5f0b4e9.woff2')format("woff");}.ff1_c01243{font-family:ff1_c01243;line-height:1.001000;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_c01243;src:url('chunks/assets/font_5aa3cb81986a211acac572ee.woff2')format("woff");}.ff2_c01243{font-family:ff2_c01243;line-height:1.000000;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_c01243;src:url('chunks/assets/font_2ff7a80273cb208785c2ebaf.woff2')format("woff");}.ff3_c01243{font-family:ff3_c01243;line-height:1.000000;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_c01243{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_c01243{vertical-align:0.000000px;}
.v1_c01243{vertical-align:16.542000px;}
.ls1_c01243{letter-spacing:0.000000px;}
.ls0_c01243{letter-spacing:5.905500px;}
.sc__c01243{text-shadow:none;}
.sc0_c01243{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__c01243{-webkit-text-stroke:0px transparent;}
.sc0_c01243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01243{word-spacing:-0.071730px;}
.ws11_c01243{word-spacing:0.000000px;}
.ws3_c01243{word-spacing:18.130758px;}
.ws1_c01243{word-spacing:18.785298px;}
.ws6_c01243{word-spacing:19.047114px;}
.wsc_c01243{word-spacing:19.636200px;}
.wsd_c01243{word-spacing:20.487102px;}
.wse_c01243{word-spacing:20.945280px;}
.ws7_c01243{word-spacing:21.076188px;}
.ws2_c01243{word-spacing:21.730728px;}
.ws4_c01243{word-spacing:21.796182px;}
.ws8_c01243{word-spacing:22.385268px;}
.wsf_c01243{word-spacing:24.545250px;}
.wsa_c01243{word-spacing:24.807066px;}
.ws5_c01243{word-spacing:25.003428px;}
.ws9_c01243{word-spacing:29.192484px;}
.wsb_c01243{word-spacing:29.323392px;}
.ws10_c01243{word-spacing:32.268822px;}
._a_c01243{margin-left:-34.428804px;}
._2_c01243{margin-left:-32.727000px;}
._8_c01243{margin-left:-30.894288px;}
._4_c01243{margin-left:-25.461606px;}
._3_c01243{margin-left:-7.265394px;}
._7_c01243{margin-left:-5.432682px;}
._5_c01243{margin-left:-3.469062px;}
._0_c01243{margin-left:-1.832712px;}
._1_c01243{width:1.832712px;}
._9_c01243{width:3.665424px;}
._6_c01243{width:8.141214px;}
.fc0_c01243{color:rgb(0,0,0);}
.fs1_c01243{font-size:65.454000px;}
.fs0_c01243{font-size:71.730000px;}
.y0_c01243{bottom:0.000000px;}
.y1f_c01243{bottom:106.116000px;}
.y1e_c01243{bottom:131.338500px;}
.y1d_c01243{bottom:156.559500px;}
.y1c_c01243{bottom:181.782000px;}
.y1b_c01243{bottom:224.935500px;}
.y1a_c01243{bottom:250.158000px;}
.y19_c01243{bottom:275.379000px;}
.y18_c01243{bottom:300.601500px;}
.y17_c01243{bottom:343.756500px;}
.y16_c01243{bottom:368.977500px;}
.y15_c01243{bottom:394.200000px;}
.y14_c01243{bottom:419.421000px;}
.y13_c01243{bottom:462.576000px;}
.y12_c01243{bottom:487.797000px;}
.y11_c01243{bottom:530.952000px;}
.y10_c01243{bottom:556.173000px;}
.yf_c01243{bottom:599.328000px;}
.ye_c01243{bottom:624.550500px;}
.yd_c01243{bottom:649.771500px;}
.yc_c01243{bottom:692.926500px;}
.yb_c01243{bottom:718.147500px;}
.ya_c01243{bottom:780.729000px;}
.y9_c01243{bottom:861.244500px;}
.y8_c01243{bottom:886.465500px;}
.y7_c01243{bottom:929.620500px;}
.y6_c01243{bottom:972.775500px;}
.y5_c01243{bottom:997.996500px;}
.y4_c01243{bottom:1023.219000px;}
.y3_c01243{bottom:1048.440000px;}
.y2_c01243{bottom:1073.662500px;}
.y1_c01243{bottom:1140.615000px;}
.h3_c01243{height:49.090500px;}
.h2_c01243{height:53.797500px;}
.h4_c01243{height:65.632500px;}
.h1_c01243{height:1263.750000px;}
.h0_c01243{height:1264.110000px;}
.w0_c01243{width:893.869500px;}
.w1_c01243{width:894.000000px;}
.x0_c01243{left:0.000000px;}
.x2_c01243{left:127.558500px;}
.x3_c01243{left:159.838500px;}
.x4_c01243{left:299.883000px;}
.x5_c01243{left:392.611500px;}
.x6_c01243{left:404.883000px;}
.x7_c01243{left:437.526000px;}
.x1_c01243{left:739.972500px;}
@media print{
.v0_c01243{vertical-align:0.000000pt;}
.v1_c01243{vertical-align:14.704000pt;}
.ls1_c01243{letter-spacing:0.000000pt;}
.ls0_c01243{letter-spacing:5.249333pt;}
.ws0_c01243{word-spacing:-0.063760pt;}
.ws11_c01243{word-spacing:0.000000pt;}
.ws3_c01243{word-spacing:16.116229pt;}
.ws1_c01243{word-spacing:16.698043pt;}
.ws6_c01243{word-spacing:16.930768pt;}
.wsc_c01243{word-spacing:17.454400pt;}
.wsd_c01243{word-spacing:18.210757pt;}
.wse_c01243{word-spacing:18.618027pt;}
.ws7_c01243{word-spacing:18.734389pt;}
.ws2_c01243{word-spacing:19.316203pt;}
.ws4_c01243{word-spacing:19.374384pt;}
.ws8_c01243{word-spacing:19.898016pt;}
.wsf_c01243{word-spacing:21.818000pt;}
.wsa_c01243{word-spacing:22.050725pt;}
.ws5_c01243{word-spacing:22.225269pt;}
.ws9_c01243{word-spacing:25.948875pt;}
.wsb_c01243{word-spacing:26.065237pt;}
.ws10_c01243{word-spacing:28.683397pt;}
._a_c01243{margin-left:-30.603381pt;}
._2_c01243{margin-left:-29.090667pt;}
._8_c01243{margin-left:-27.461589pt;}
._4_c01243{margin-left:-22.632539pt;}
._3_c01243{margin-left:-6.458128pt;}
._7_c01243{margin-left:-4.829051pt;}
._5_c01243{margin-left:-3.083611pt;}
._0_c01243{margin-left:-1.629077pt;}
._1_c01243{width:1.629077pt;}
._9_c01243{width:3.258155pt;}
._6_c01243{width:7.236635pt;}
.fs1_c01243{font-size:58.181333pt;}
.fs0_c01243{font-size:63.760000pt;}
.y0_c01243{bottom:0.000000pt;}
.y1f_c01243{bottom:94.325333pt;}
.y1e_c01243{bottom:116.745333pt;}
.y1d_c01243{bottom:139.164000pt;}
.y1c_c01243{bottom:161.584000pt;}
.y1b_c01243{bottom:199.942667pt;}
.y1a_c01243{bottom:222.362667pt;}
.y19_c01243{bottom:244.781333pt;}
.y18_c01243{bottom:267.201333pt;}
.y17_c01243{bottom:305.561333pt;}
.y16_c01243{bottom:327.980000pt;}
.y15_c01243{bottom:350.400000pt;}
.y14_c01243{bottom:372.818667pt;}
.y13_c01243{bottom:411.178667pt;}
.y12_c01243{bottom:433.597333pt;}
.y11_c01243{bottom:471.957333pt;}
.y10_c01243{bottom:494.376000pt;}
.yf_c01243{bottom:532.736000pt;}
.ye_c01243{bottom:555.156000pt;}
.yd_c01243{bottom:577.574667pt;}
.yc_c01243{bottom:615.934667pt;}
.yb_c01243{bottom:638.353333pt;}
.ya_c01243{bottom:693.981333pt;}
.y9_c01243{bottom:765.550667pt;}
.y8_c01243{bottom:787.969333pt;}
.y7_c01243{bottom:826.329333pt;}
.y6_c01243{bottom:864.689333pt;}
.y5_c01243{bottom:887.108000pt;}
.y4_c01243{bottom:909.528000pt;}
.y3_c01243{bottom:931.946667pt;}
.y2_c01243{bottom:954.366667pt;}
.y1_c01243{bottom:1013.880000pt;}
.h3_c01243{height:43.636000pt;}
.h2_c01243{height:47.820000pt;}
.h4_c01243{height:58.340000pt;}
.h1_c01243{height:1123.333333pt;}
.h0_c01243{height:1123.653333pt;}
.w0_c01243{width:794.550667pt;}
.w1_c01243{width:794.666667pt;}
.x0_c01243{left:0.000000pt;}
.x2_c01243{left:113.385333pt;}
.x3_c01243{left:142.078667pt;}
.x4_c01243{left:266.562667pt;}
.x5_c01243{left:348.988000pt;}
.x6_c01243{left:359.896000pt;}
.x7_c01243{left:388.912000pt;}
.x1_c01243{left:657.753333pt;}
}





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

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





.ff0_c01244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01244;src:url('chunks/assets/font_87d0e59d3ab45a5287416308.woff2')format("woff");}.ff1_c01244{font-family:ff1_c01244;line-height:1.001000;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_c01244;src:url('chunks/assets/font_59858b9db475edefb512fd5d.woff2')format("woff");}.ff2_c01244{font-family:ff2_c01244;line-height:1.000000;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_c01244{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_c01244{vertical-align:0.000000px;}
.ls0_c01244{letter-spacing:0.000000px;}
.sc__c01244{text-shadow:none;}
.sc0_c01244{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__c01244{-webkit-text-stroke:0px transparent;}
.sc0_c01244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01244{word-spacing:-0.071730px;}
.ws18_c01244{word-spacing:-0.065454px;}
.ws7_c01244{word-spacing:14.465334px;}
.wsa_c01244{word-spacing:16.298046px;}
.wsb_c01244{word-spacing:16.363500px;}
.ws16_c01244{word-spacing:18.065304px;}
.ws8_c01244{word-spacing:19.178022px;}
.ws5_c01244{word-spacing:19.439838px;}
.wsd_c01244{word-spacing:19.636200px;}
.ws6_c01244{word-spacing:20.225286px;}
.ws4_c01244{word-spacing:20.421648px;}
.ws3_c01244{word-spacing:21.730728px;}
.ws2_c01244{word-spacing:21.796182px;}
.wse_c01244{word-spacing:22.123452px;}
.ws1_c01244{word-spacing:22.516176px;}
.ws13_c01244{word-spacing:22.843446px;}
.ws9_c01244{word-spacing:23.236170px;}
.wsf_c01244{word-spacing:23.628894px;}
.ws11_c01244{word-spacing:24.479796px;}
.ws12_c01244{word-spacing:25.592514px;}
.wsc_c01244{word-spacing:25.985238px;}
.ws15_c01244{word-spacing:26.116146px;}
.ws17_c01244{word-spacing:26.312508px;}
.ws14_c01244{word-spacing:30.697926px;}
.ws10_c01244{word-spacing:31.352466px;}
._7_c01244{margin-left:-34.886982px;}
._2_c01244{margin-left:-32.727000px;}
._9_c01244{margin-left:-31.679736px;}
._4_c01244{margin-left:-25.461606px;}
._3_c01244{margin-left:-7.330848px;}
._8_c01244{margin-left:-5.563590px;}
._6_c01244{margin-left:-3.861786px;}
._0_c01244{margin-left:-1.701804px;}
._1_c01244{width:1.963620px;}
._5_c01244{width:3.141792px;}
.fc0_c01244{color:rgb(0,0,0);}
.fs1_c01244{font-size:65.454000px;}
.fs0_c01244{font-size:71.730000px;}
.y0_c01244{bottom:0.000000px;}
.y24_c01244{bottom:90.592500px;}
.y23_c01244{bottom:115.815000px;}
.y22_c01244{bottom:141.036000px;}
.y21_c01244{bottom:184.191000px;}
.y20_c01244{bottom:209.412000px;}
.y1f_c01244{bottom:234.634500px;}
.y1e_c01244{bottom:277.789500px;}
.y1d_c01244{bottom:303.010500px;}
.y1c_c01244{bottom:328.233000px;}
.y1b_c01244{bottom:353.454000px;}
.y1a_c01244{bottom:396.609000px;}
.y19_c01244{bottom:421.830000px;}
.y18_c01244{bottom:464.985000px;}
.y17_c01244{bottom:490.206000px;}
.y16_c01244{bottom:515.428500px;}
.y15_c01244{bottom:540.649500px;}
.y14_c01244{bottom:565.872000px;}
.y13_c01244{bottom:609.027000px;}
.y12_c01244{bottom:634.248000px;}
.y11_c01244{bottom:659.470500px;}
.y10_c01244{bottom:702.624000px;}
.yf_c01244{bottom:727.846500px;}
.ye_c01244{bottom:753.067500px;}
.yd_c01244{bottom:778.290000px;}
.yc_c01244{bottom:803.511000px;}
.yb_c01244{bottom:828.733500px;}
.ya_c01244{bottom:853.954500px;}
.y9_c01244{bottom:879.177000px;}
.y8_c01244{bottom:904.398000px;}
.y7_c01244{bottom:929.620500px;}
.y6_c01244{bottom:954.841500px;}
.y5_c01244{bottom:980.064000px;}
.y4_c01244{bottom:1005.285000px;}
.y3_c01244{bottom:1048.440000px;}
.y2_c01244{bottom:1073.662500px;}
.y1_c01244{bottom:1140.615000px;}
.h3_c01244{height:49.090500px;}
.h2_c01244{height:53.797500px;}
.h1_c01244{height:1263.750000px;}
.h0_c01244{height:1264.110000px;}
.w0_c01244{width:893.869500px;}
.w1_c01244{width:894.000000px;}
.x0_c01244{left:0.000000px;}
.x3_c01244{left:127.558500px;}
.x2_c01244{left:159.838500px;}
.x1_c01244{left:739.972500px;}
@media print{
.v0_c01244{vertical-align:0.000000pt;}
.ls0_c01244{letter-spacing:0.000000pt;}
.ws0_c01244{word-spacing:-0.063760pt;}
.ws18_c01244{word-spacing:-0.058181pt;}
.ws7_c01244{word-spacing:12.858075pt;}
.wsa_c01244{word-spacing:14.487152pt;}
.wsb_c01244{word-spacing:14.545333pt;}
.ws16_c01244{word-spacing:16.058048pt;}
.ws8_c01244{word-spacing:17.047131pt;}
.ws5_c01244{word-spacing:17.279856pt;}
.wsd_c01244{word-spacing:17.454400pt;}
.ws6_c01244{word-spacing:17.978032pt;}
.ws4_c01244{word-spacing:18.152576pt;}
.ws3_c01244{word-spacing:19.316203pt;}
.ws2_c01244{word-spacing:19.374384pt;}
.wse_c01244{word-spacing:19.665291pt;}
.ws1_c01244{word-spacing:20.014379pt;}
.ws13_c01244{word-spacing:20.305285pt;}
.ws9_c01244{word-spacing:20.654373pt;}
.wsf_c01244{word-spacing:21.003461pt;}
.ws11_c01244{word-spacing:21.759819pt;}
.ws12_c01244{word-spacing:22.748901pt;}
.wsc_c01244{word-spacing:23.097989pt;}
.ws15_c01244{word-spacing:23.214352pt;}
.ws17_c01244{word-spacing:23.388896pt;}
.ws14_c01244{word-spacing:27.287045pt;}
.ws10_c01244{word-spacing:27.868859pt;}
._7_c01244{margin-left:-31.010651pt;}
._2_c01244{margin-left:-29.090667pt;}
._9_c01244{margin-left:-28.159765pt;}
._4_c01244{margin-left:-22.632539pt;}
._3_c01244{margin-left:-6.516309pt;}
._8_c01244{margin-left:-4.945413pt;}
._6_c01244{margin-left:-3.432699pt;}
._0_c01244{margin-left:-1.512715pt;}
._1_c01244{width:1.745440pt;}
._5_c01244{width:2.792704pt;}
.fs1_c01244{font-size:58.181333pt;}
.fs0_c01244{font-size:63.760000pt;}
.y0_c01244{bottom:0.000000pt;}
.y24_c01244{bottom:80.526667pt;}
.y23_c01244{bottom:102.946667pt;}
.y22_c01244{bottom:125.365333pt;}
.y21_c01244{bottom:163.725333pt;}
.y20_c01244{bottom:186.144000pt;}
.y1f_c01244{bottom:208.564000pt;}
.y1e_c01244{bottom:246.924000pt;}
.y1d_c01244{bottom:269.342667pt;}
.y1c_c01244{bottom:291.762667pt;}
.y1b_c01244{bottom:314.181333pt;}
.y1a_c01244{bottom:352.541333pt;}
.y19_c01244{bottom:374.960000pt;}
.y18_c01244{bottom:413.320000pt;}
.y17_c01244{bottom:435.738667pt;}
.y16_c01244{bottom:458.158667pt;}
.y15_c01244{bottom:480.577333pt;}
.y14_c01244{bottom:502.997333pt;}
.y13_c01244{bottom:541.357333pt;}
.y12_c01244{bottom:563.776000pt;}
.y11_c01244{bottom:586.196000pt;}
.y10_c01244{bottom:624.554667pt;}
.yf_c01244{bottom:646.974667pt;}
.ye_c01244{bottom:669.393333pt;}
.yd_c01244{bottom:691.813333pt;}
.yc_c01244{bottom:714.232000pt;}
.yb_c01244{bottom:736.652000pt;}
.ya_c01244{bottom:759.070667pt;}
.y9_c01244{bottom:781.490667pt;}
.y8_c01244{bottom:803.909333pt;}
.y7_c01244{bottom:826.329333pt;}
.y6_c01244{bottom:848.748000pt;}
.y5_c01244{bottom:871.168000pt;}
.y4_c01244{bottom:893.586667pt;}
.y3_c01244{bottom:931.946667pt;}
.y2_c01244{bottom:954.366667pt;}
.y1_c01244{bottom:1013.880000pt;}
.h3_c01244{height:43.636000pt;}
.h2_c01244{height:47.820000pt;}
.h1_c01244{height:1123.333333pt;}
.h0_c01244{height:1123.653333pt;}
.w0_c01244{width:794.550667pt;}
.w1_c01244{width:794.666667pt;}
.x0_c01244{left:0.000000pt;}
.x3_c01244{left:113.385333pt;}
.x2_c01244{left:142.078667pt;}
.x1_c01244{left:657.753333pt;}
}





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

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





.ff0_c01245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01245;src:url('chunks/assets/font_1a7bb00eeaf19d49a3b6d2b0.woff2')format("woff");}.ff1_c01245{font-family:ff1_c01245;line-height:1.001000;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_c01245;src:url('chunks/assets/font_105095f52f6b327b4dcd9019.woff2')format("woff");}.ff2_c01245{font-family:ff2_c01245;line-height:1.000000;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_c01245{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_c01245{vertical-align:0.000000px;}
.ls0_c01245{letter-spacing:0.000000px;}
.sc__c01245{text-shadow:none;}
.sc0_c01245{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__c01245{-webkit-text-stroke:0px transparent;}
.sc0_c01245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01245{word-spacing:-0.071730px;}
.ws1d_c01245{word-spacing:0.000000px;}
.ws1b_c01245{word-spacing:14.465334px;}
.ws18_c01245{word-spacing:14.530788px;}
.ws2_c01245{word-spacing:15.578052px;}
.wsc_c01245{word-spacing:17.868942px;}
.ws1_c01245{word-spacing:18.850752px;}
.ws8_c01245{word-spacing:18.981660px;}
.ws7_c01245{word-spacing:20.683464px;}
.ws12_c01245{word-spacing:20.879826px;}
.wse_c01245{word-spacing:21.141642px;}
.ws10_c01245{word-spacing:21.403458px;}
.wsa_c01245{word-spacing:21.468912px;}
.ws4_c01245{word-spacing:21.730728px;}
.ws1a_c01245{word-spacing:21.796182px;}
.wsf_c01245{word-spacing:22.450722px;}
.ws5_c01245{word-spacing:22.581630px;}
.ws19_c01245{word-spacing:22.974354px;}
.ws6_c01245{word-spacing:23.170716px;}
.wsb_c01245{word-spacing:23.301624px;}
.ws17_c01245{word-spacing:23.497986px;}
.ws3_c01245{word-spacing:25.134336px;}
.ws1c_c01245{word-spacing:25.396152px;}
.ws16_c01245{word-spacing:25.657968px;}
.ws9_c01245{word-spacing:27.948858px;}
.ws14_c01245{word-spacing:28.145220px;}
.ws15_c01245{word-spacing:29.388846px;}
.wsd_c01245{word-spacing:29.650662px;}
.ws11_c01245{word-spacing:31.221558px;}
.ws13_c01245{word-spacing:31.941552px;}
._6_c01245{margin-left:-34.494258px;}
._0_c01245{margin-left:-32.727000px;}
._7_c01245{margin-left:-31.287012px;}
._5_c01245{margin-left:-25.461606px;}
._4_c01245{margin-left:-7.330848px;}
._3_c01245{margin-left:-3.665424px;}
._1_c01245{margin-left:-1.636350px;}
._2_c01245{width:1.767258px;}
._8_c01245{width:3.796332px;}
.fc0_c01245{color:rgb(0,0,0);}
.fs1_c01245{font-size:65.454000px;}
.fs0_c01245{font-size:71.730000px;}
.y0_c01245{bottom:0.000000px;}
.y24_c01245{bottom:71.973000px;}
.y23_c01245{bottom:97.194000px;}
.y22_c01245{bottom:122.416500px;}
.y21_c01245{bottom:164.628000px;}
.y20_c01245{bottom:189.849000px;}
.y1f_c01245{bottom:215.071500px;}
.y1e_c01245{bottom:240.292500px;}
.y1d_c01245{bottom:282.504000px;}
.y1c_c01245{bottom:307.726500px;}
.y1b_c01245{bottom:332.947500px;}
.y1a_c01245{bottom:358.170000px;}
.y19_c01245{bottom:383.391000px;}
.y18_c01245{bottom:408.613500px;}
.y17_c01245{bottom:450.825000px;}
.y16_c01245{bottom:476.046000px;}
.y15_c01245{bottom:501.268500px;}
.y14_c01245{bottom:526.489500px;}
.y13_c01245{bottom:568.701000px;}
.y12_c01245{bottom:593.923500px;}
.y11_c01245{bottom:619.144500px;}
.y10_c01245{bottom:644.367000px;}
.yf_c01245{bottom:669.588000px;}
.ye_c01245{bottom:694.810500px;}
.yd_c01245{bottom:720.031500px;}
.yc_c01245{bottom:745.254000px;}
.yb_c01245{bottom:812.686500px;}
.ya_c01245{bottom:837.909000px;}
.y9_c01245{bottom:863.130000px;}
.y8_c01245{bottom:905.341500px;}
.y7_c01245{bottom:930.564000px;}
.y6_c01245{bottom:955.785000px;}
.y5_c01245{bottom:997.996500px;}
.y4_c01245{bottom:1023.219000px;}
.y3_c01245{bottom:1048.440000px;}
.y2_c01245{bottom:1073.662500px;}
.y1_c01245{bottom:1140.615000px;}
.h3_c01245{height:49.090500px;}
.h2_c01245{height:53.797500px;}
.h1_c01245{height:1263.750000px;}
.h0_c01245{height:1264.110000px;}
.w0_c01245{width:893.869500px;}
.w1_c01245{width:894.000000px;}
.x0_c01245{left:0.000000px;}
.x3_c01245{left:127.558500px;}
.x2_c01245{left:159.838500px;}
.x1_c01245{left:739.972500px;}
@media print{
.v0_c01245{vertical-align:0.000000pt;}
.ls0_c01245{letter-spacing:0.000000pt;}
.ws0_c01245{word-spacing:-0.063760pt;}
.ws1d_c01245{word-spacing:0.000000pt;}
.ws1b_c01245{word-spacing:12.858075pt;}
.ws18_c01245{word-spacing:12.916256pt;}
.ws2_c01245{word-spacing:13.847157pt;}
.wsc_c01245{word-spacing:15.883504pt;}
.ws1_c01245{word-spacing:16.756224pt;}
.ws8_c01245{word-spacing:16.872587pt;}
.ws7_c01245{word-spacing:18.385301pt;}
.ws12_c01245{word-spacing:18.559845pt;}
.wse_c01245{word-spacing:18.792571pt;}
.ws10_c01245{word-spacing:19.025296pt;}
.wsa_c01245{word-spacing:19.083477pt;}
.ws4_c01245{word-spacing:19.316203pt;}
.ws1a_c01245{word-spacing:19.374384pt;}
.wsf_c01245{word-spacing:19.956197pt;}
.ws5_c01245{word-spacing:20.072560pt;}
.ws19_c01245{word-spacing:20.421648pt;}
.ws6_c01245{word-spacing:20.596192pt;}
.wsb_c01245{word-spacing:20.712555pt;}
.ws17_c01245{word-spacing:20.887099pt;}
.ws3_c01245{word-spacing:22.341632pt;}
.ws1c_c01245{word-spacing:22.574357pt;}
.ws16_c01245{word-spacing:22.807083pt;}
.ws9_c01245{word-spacing:24.843429pt;}
.ws14_c01245{word-spacing:25.017973pt;}
.ws15_c01245{word-spacing:26.123419pt;}
.wsd_c01245{word-spacing:26.356144pt;}
.ws11_c01245{word-spacing:27.752496pt;}
.ws13_c01245{word-spacing:28.392491pt;}
._6_c01245{margin-left:-30.661563pt;}
._0_c01245{margin-left:-29.090667pt;}
._7_c01245{margin-left:-27.810677pt;}
._5_c01245{margin-left:-22.632539pt;}
._4_c01245{margin-left:-6.516309pt;}
._3_c01245{margin-left:-3.258155pt;}
._1_c01245{margin-left:-1.454533pt;}
._2_c01245{width:1.570896pt;}
._8_c01245{width:3.374517pt;}
.fs1_c01245{font-size:58.181333pt;}
.fs0_c01245{font-size:63.760000pt;}
.y0_c01245{bottom:0.000000pt;}
.y24_c01245{bottom:63.976000pt;}
.y23_c01245{bottom:86.394667pt;}
.y22_c01245{bottom:108.814667pt;}
.y21_c01245{bottom:146.336000pt;}
.y20_c01245{bottom:168.754667pt;}
.y1f_c01245{bottom:191.174667pt;}
.y1e_c01245{bottom:213.593333pt;}
.y1d_c01245{bottom:251.114667pt;}
.y1c_c01245{bottom:273.534667pt;}
.y1b_c01245{bottom:295.953333pt;}
.y1a_c01245{bottom:318.373333pt;}
.y19_c01245{bottom:340.792000pt;}
.y18_c01245{bottom:363.212000pt;}
.y17_c01245{bottom:400.733333pt;}
.y16_c01245{bottom:423.152000pt;}
.y15_c01245{bottom:445.572000pt;}
.y14_c01245{bottom:467.990667pt;}
.y13_c01245{bottom:505.512000pt;}
.y12_c01245{bottom:527.932000pt;}
.y11_c01245{bottom:550.350667pt;}
.y10_c01245{bottom:572.770667pt;}
.yf_c01245{bottom:595.189333pt;}
.ye_c01245{bottom:617.609333pt;}
.yd_c01245{bottom:640.028000pt;}
.yc_c01245{bottom:662.448000pt;}
.yb_c01245{bottom:722.388000pt;}
.ya_c01245{bottom:744.808000pt;}
.y9_c01245{bottom:767.226667pt;}
.y8_c01245{bottom:804.748000pt;}
.y7_c01245{bottom:827.168000pt;}
.y6_c01245{bottom:849.586667pt;}
.y5_c01245{bottom:887.108000pt;}
.y4_c01245{bottom:909.528000pt;}
.y3_c01245{bottom:931.946667pt;}
.y2_c01245{bottom:954.366667pt;}
.y1_c01245{bottom:1013.880000pt;}
.h3_c01245{height:43.636000pt;}
.h2_c01245{height:47.820000pt;}
.h1_c01245{height:1123.333333pt;}
.h0_c01245{height:1123.653333pt;}
.w0_c01245{width:794.550667pt;}
.w1_c01245{width:794.666667pt;}
.x0_c01245{left:0.000000pt;}
.x3_c01245{left:113.385333pt;}
.x2_c01245{left:142.078667pt;}
.x1_c01245{left:657.753333pt;}
}





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

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





.ff0_c01246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01246;src:url('chunks/assets/font_dda7e7b633d9e5e3ac15c613.woff2')format("woff");}.ff1_c01246{font-family:ff1_c01246;line-height:1.001000;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_c01246;src:url('chunks/assets/font_6786fb2c7b5a184a21cf0900.woff2')format("woff");}.ff2_c01246{font-family:ff2_c01246;line-height:1.000000;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_c01246;src:url('chunks/assets/font_8e406d0120f505139050a1ee.woff2')format("woff");}.ff3_c01246{font-family:ff3_c01246;line-height:1.000000;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_c01246{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_c01246{vertical-align:0.000000px;}
.ls0_c01246{letter-spacing:0.000000px;}
.sc__c01246{text-shadow:none;}
.sc0_c01246{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__c01246{-webkit-text-stroke:0px transparent;}
.sc0_c01246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01246{word-spacing:-0.071730px;}
.ws3_c01246{word-spacing:-0.065454px;}
.ws15_c01246{word-spacing:0.000000px;}
.ws4_c01246{word-spacing:17.148948px;}
.wsf_c01246{word-spacing:17.738034px;}
.wsb_c01246{word-spacing:18.588936px;}
.ws8_c01246{word-spacing:19.243476px;}
.ws10_c01246{word-spacing:19.570746px;}
.wsd_c01246{word-spacing:19.636200px;}
.wse_c01246{word-spacing:20.028924px;}
.wsc_c01246{word-spacing:20.290740px;}
.ws14_c01246{word-spacing:20.748918px;}
.ws12_c01246{word-spacing:20.945280px;}
.ws6_c01246{word-spacing:21.468912px;}
.ws5_c01246{word-spacing:21.730728px;}
.ws11_c01246{word-spacing:21.796182px;}
.ws9_c01246{word-spacing:22.450722px;}
.ws2_c01246{word-spacing:22.843446px;}
.ws7_c01246{word-spacing:25.003428px;}
.wsa_c01246{word-spacing:27.817950px;}
.ws1_c01246{word-spacing:28.472490px;}
.ws13_c01246{word-spacing:30.959742px;}
._5_c01246{margin-left:-32.792454px;}
._7_c01246{margin-left:-31.287012px;}
._2_c01246{margin-left:-25.461606px;}
._1_c01246{margin-left:-7.919934px;}
._6_c01246{margin-left:-6.872670px;}
._8_c01246{margin-left:-5.432682px;}
._0_c01246{margin-left:-1.636350px;}
._3_c01246{width:1.178172px;}
._4_c01246{width:2.421798px;}
.fc0_c01246{color:rgb(0,0,0);}
.fs1_c01246{font-size:65.454000px;}
.fs0_c01246{font-size:71.730000px;}
.y0_c01246{bottom:0.000000px;}
.y20_c01246{bottom:98.827500px;}
.y1f_c01246{bottom:124.048500px;}
.y1e_c01246{bottom:149.271000px;}
.y1d_c01246{bottom:174.492000px;}
.y1c_c01246{bottom:199.714500px;}
.y1b_c01246{bottom:224.935500px;}
.y1a_c01246{bottom:268.090500px;}
.y19_c01246{bottom:293.313000px;}
.y18_c01246{bottom:318.534000px;}
.y17_c01246{bottom:343.756500px;}
.y16_c01246{bottom:368.977500px;}
.y15_c01246{bottom:394.200000px;}
.y14_c01246{bottom:437.353500px;}
.y13_c01246{bottom:462.576000px;}
.y12_c01246{bottom:487.797000px;}
.y11_c01246{bottom:530.952000px;}
.y10_c01246{bottom:556.173000px;}
.yf_c01246{bottom:581.395500px;}
.ye_c01246{bottom:606.618000px;}
.yd_c01246{bottom:631.839000px;}
.yc_c01246{bottom:674.994000px;}
.yb_c01246{bottom:700.215000px;}
.ya_c01246{bottom:762.796500px;}
.y9_c01246{bottom:843.312000px;}
.y8_c01246{bottom:886.465500px;}
.y7_c01246{bottom:911.688000px;}
.y6_c01246{bottom:954.841500px;}
.y5_c01246{bottom:980.064000px;}
.y4_c01246{bottom:1023.219000px;}
.y3_c01246{bottom:1048.440000px;}
.y2_c01246{bottom:1073.662500px;}
.y1_c01246{bottom:1140.615000px;}
.h3_c01246{height:49.090500px;}
.h2_c01246{height:53.797500px;}
.h1_c01246{height:1263.750000px;}
.h0_c01246{height:1264.110000px;}
.w0_c01246{width:893.869500px;}
.w1_c01246{width:894.000000px;}
.x0_c01246{left:0.000000px;}
.x3_c01246{left:127.558500px;}
.x2_c01246{left:159.838500px;}
.x4_c01246{left:437.526000px;}
.x1_c01246{left:739.972500px;}
@media print{
.v0_c01246{vertical-align:0.000000pt;}
.ls0_c01246{letter-spacing:0.000000pt;}
.ws0_c01246{word-spacing:-0.063760pt;}
.ws3_c01246{word-spacing:-0.058181pt;}
.ws15_c01246{word-spacing:0.000000pt;}
.ws4_c01246{word-spacing:15.243509pt;}
.wsf_c01246{word-spacing:15.767141pt;}
.wsb_c01246{word-spacing:16.523499pt;}
.ws8_c01246{word-spacing:17.105312pt;}
.ws10_c01246{word-spacing:17.396219pt;}
.wsd_c01246{word-spacing:17.454400pt;}
.wse_c01246{word-spacing:17.803488pt;}
.wsc_c01246{word-spacing:18.036213pt;}
.ws14_c01246{word-spacing:18.443483pt;}
.ws12_c01246{word-spacing:18.618027pt;}
.ws6_c01246{word-spacing:19.083477pt;}
.ws5_c01246{word-spacing:19.316203pt;}
.ws11_c01246{word-spacing:19.374384pt;}
.ws9_c01246{word-spacing:19.956197pt;}
.ws2_c01246{word-spacing:20.305285pt;}
.ws7_c01246{word-spacing:22.225269pt;}
.wsa_c01246{word-spacing:24.727067pt;}
.ws1_c01246{word-spacing:25.308880pt;}
.ws13_c01246{word-spacing:27.519771pt;}
._5_c01246{margin-left:-29.148848pt;}
._7_c01246{margin-left:-27.810677pt;}
._2_c01246{margin-left:-22.632539pt;}
._1_c01246{margin-left:-7.039941pt;}
._6_c01246{margin-left:-6.109040pt;}
._8_c01246{margin-left:-4.829051pt;}
._0_c01246{margin-left:-1.454533pt;}
._3_c01246{width:1.047264pt;}
._4_c01246{width:2.152709pt;}
.fs1_c01246{font-size:58.181333pt;}
.fs0_c01246{font-size:63.760000pt;}
.y0_c01246{bottom:0.000000pt;}
.y20_c01246{bottom:87.846667pt;}
.y1f_c01246{bottom:110.265333pt;}
.y1e_c01246{bottom:132.685333pt;}
.y1d_c01246{bottom:155.104000pt;}
.y1c_c01246{bottom:177.524000pt;}
.y1b_c01246{bottom:199.942667pt;}
.y1a_c01246{bottom:238.302667pt;}
.y19_c01246{bottom:260.722667pt;}
.y18_c01246{bottom:283.141333pt;}
.y17_c01246{bottom:305.561333pt;}
.y16_c01246{bottom:327.980000pt;}
.y15_c01246{bottom:350.400000pt;}
.y14_c01246{bottom:388.758667pt;}
.y13_c01246{bottom:411.178667pt;}
.y12_c01246{bottom:433.597333pt;}
.y11_c01246{bottom:471.957333pt;}
.y10_c01246{bottom:494.376000pt;}
.yf_c01246{bottom:516.796000pt;}
.ye_c01246{bottom:539.216000pt;}
.yd_c01246{bottom:561.634667pt;}
.yc_c01246{bottom:599.994667pt;}
.yb_c01246{bottom:622.413333pt;}
.ya_c01246{bottom:678.041333pt;}
.y9_c01246{bottom:749.610667pt;}
.y8_c01246{bottom:787.969333pt;}
.y7_c01246{bottom:810.389333pt;}
.y6_c01246{bottom:848.748000pt;}
.y5_c01246{bottom:871.168000pt;}
.y4_c01246{bottom:909.528000pt;}
.y3_c01246{bottom:931.946667pt;}
.y2_c01246{bottom:954.366667pt;}
.y1_c01246{bottom:1013.880000pt;}
.h3_c01246{height:43.636000pt;}
.h2_c01246{height:47.820000pt;}
.h1_c01246{height:1123.333333pt;}
.h0_c01246{height:1123.653333pt;}
.w0_c01246{width:794.550667pt;}
.w1_c01246{width:794.666667pt;}
.x0_c01246{left:0.000000pt;}
.x3_c01246{left:113.385333pt;}
.x2_c01246{left:142.078667pt;}
.x4_c01246{left:388.912000pt;}
.x1_c01246{left:657.753333pt;}
}





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

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





.ff0_c01247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01247;src:url('chunks/assets/font_e8d3eaa8c8ad84ee2be38a2a.woff2')format("woff");}.ff1_c01247{font-family:ff1_c01247;line-height:1.001000;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_c01247;src:url('chunks/assets/font_0649f8ea292eb0028264e48f.woff2')format("woff");}.ff2_c01247{font-family:ff2_c01247;line-height:1.000000;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_c01247{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_c01247{vertical-align:0.000000px;}
.ls0_c01247{letter-spacing:0.000000px;}
.sc__c01247{text-shadow:none;}
.sc0_c01247{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__c01247{-webkit-text-stroke:0px transparent;}
.sc0_c01247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01247{word-spacing:-0.071730px;}
.ws10_c01247{word-spacing:0.000000px;}
.wsb_c01247{word-spacing:16.952586px;}
.wsd_c01247{word-spacing:19.243476px;}
.wse_c01247{word-spacing:19.636200px;}
.wsf_c01247{word-spacing:21.010734px;}
.ws7_c01247{word-spacing:21.076188px;}
.ws5_c01247{word-spacing:21.141642px;}
.wsa_c01247{word-spacing:21.730728px;}
.ws3_c01247{word-spacing:21.796182px;}
.ws4_c01247{word-spacing:21.927090px;}
.wsc_c01247{word-spacing:23.236170px;}
.ws8_c01247{word-spacing:24.610704px;}
.ws2_c01247{word-spacing:26.443416px;}
.ws6_c01247{word-spacing:29.650662px;}
.ws9_c01247{word-spacing:30.567018px;}
.ws1_c01247{word-spacing:33.054270px;}
._3_c01247{margin-left:-34.559712px;}
._1_c01247{margin-left:-32.727000px;}
._7_c01247{margin-left:-30.894288px;}
._5_c01247{margin-left:-25.461606px;}
._4_c01247{margin-left:-7.265394px;}
._0_c01247{margin-left:-1.767258px;}
._2_c01247{width:2.029074px;}
._6_c01247{width:3.599970px;}
.fc0_c01247{color:rgb(0,0,0);}
.fs1_c01247{font-size:65.454000px;}
.fs0_c01247{font-size:71.730000px;}
.y0_c01247{bottom:0.000000px;}
.y1a_c01247{bottom:360.742500px;}
.y19_c01247{bottom:385.965000px;}
.y18_c01247{bottom:411.186000px;}
.y17_c01247{bottom:454.341000px;}
.y16_c01247{bottom:479.563500px;}
.y15_c01247{bottom:522.717000px;}
.y14_c01247{bottom:547.939500px;}
.y13_c01247{bottom:573.160500px;}
.y12_c01247{bottom:616.315500px;}
.y11_c01247{bottom:641.538000px;}
.y10_c01247{bottom:666.759000px;}
.yf_c01247{bottom:691.981500px;}
.ye_c01247{bottom:735.135000px;}
.yd_c01247{bottom:760.357500px;}
.yc_c01247{bottom:785.578500px;}
.yb_c01247{bottom:810.801000px;}
.ya_c01247{bottom:853.954500px;}
.y9_c01247{bottom:879.177000px;}
.y8_c01247{bottom:904.398000px;}
.y7_c01247{bottom:929.620500px;}
.y6_c01247{bottom:972.775500px;}
.y5_c01247{bottom:997.996500px;}
.y4_c01247{bottom:1023.219000px;}
.y3_c01247{bottom:1048.440000px;}
.y2_c01247{bottom:1073.662500px;}
.y1_c01247{bottom:1140.615000px;}
.h3_c01247{height:49.090500px;}
.h2_c01247{height:53.797500px;}
.h1_c01247{height:1263.750000px;}
.h0_c01247{height:1264.110000px;}
.w0_c01247{width:893.869500px;}
.w1_c01247{width:894.000000px;}
.x0_c01247{left:0.000000px;}
.x3_c01247{left:127.558500px;}
.x2_c01247{left:159.838500px;}
.x1_c01247{left:739.972500px;}
@media print{
.v0_c01247{vertical-align:0.000000pt;}
.ls0_c01247{letter-spacing:0.000000pt;}
.ws0_c01247{word-spacing:-0.063760pt;}
.ws10_c01247{word-spacing:0.000000pt;}
.wsb_c01247{word-spacing:15.068965pt;}
.wsd_c01247{word-spacing:17.105312pt;}
.wse_c01247{word-spacing:17.454400pt;}
.wsf_c01247{word-spacing:18.676208pt;}
.ws7_c01247{word-spacing:18.734389pt;}
.ws5_c01247{word-spacing:18.792571pt;}
.wsa_c01247{word-spacing:19.316203pt;}
.ws3_c01247{word-spacing:19.374384pt;}
.ws4_c01247{word-spacing:19.490747pt;}
.wsc_c01247{word-spacing:20.654373pt;}
.ws8_c01247{word-spacing:21.876181pt;}
.ws2_c01247{word-spacing:23.505259pt;}
.ws6_c01247{word-spacing:26.356144pt;}
.ws9_c01247{word-spacing:27.170683pt;}
.ws1_c01247{word-spacing:29.381573pt;}
._3_c01247{margin-left:-30.719744pt;}
._1_c01247{margin-left:-29.090667pt;}
._7_c01247{margin-left:-27.461589pt;}
._5_c01247{margin-left:-22.632539pt;}
._4_c01247{margin-left:-6.458128pt;}
._0_c01247{margin-left:-1.570896pt;}
._2_c01247{width:1.803621pt;}
._6_c01247{width:3.199973pt;}
.fs1_c01247{font-size:58.181333pt;}
.fs0_c01247{font-size:63.760000pt;}
.y0_c01247{bottom:0.000000pt;}
.y1a_c01247{bottom:320.660000pt;}
.y19_c01247{bottom:343.080000pt;}
.y18_c01247{bottom:365.498667pt;}
.y17_c01247{bottom:403.858667pt;}
.y16_c01247{bottom:426.278667pt;}
.y15_c01247{bottom:464.637333pt;}
.y14_c01247{bottom:487.057333pt;}
.y13_c01247{bottom:509.476000pt;}
.y12_c01247{bottom:547.836000pt;}
.y11_c01247{bottom:570.256000pt;}
.y10_c01247{bottom:592.674667pt;}
.yf_c01247{bottom:615.094667pt;}
.ye_c01247{bottom:653.453333pt;}
.yd_c01247{bottom:675.873333pt;}
.yc_c01247{bottom:698.292000pt;}
.yb_c01247{bottom:720.712000pt;}
.ya_c01247{bottom:759.070667pt;}
.y9_c01247{bottom:781.490667pt;}
.y8_c01247{bottom:803.909333pt;}
.y7_c01247{bottom:826.329333pt;}
.y6_c01247{bottom:864.689333pt;}
.y5_c01247{bottom:887.108000pt;}
.y4_c01247{bottom:909.528000pt;}
.y3_c01247{bottom:931.946667pt;}
.y2_c01247{bottom:954.366667pt;}
.y1_c01247{bottom:1013.880000pt;}
.h3_c01247{height:43.636000pt;}
.h2_c01247{height:47.820000pt;}
.h1_c01247{height:1123.333333pt;}
.h0_c01247{height:1123.653333pt;}
.w0_c01247{width:794.550667pt;}
.w1_c01247{width:794.666667pt;}
.x0_c01247{left:0.000000pt;}
.x3_c01247{left:113.385333pt;}
.x2_c01247{left:142.078667pt;}
.x1_c01247{left:657.753333pt;}
}





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

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





.ff0_c01248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01248;src:url('chunks/assets/font_5645fac1908d4a966481b86c.woff2')format("woff");}.ff1_c01248{font-family:ff1_c01248;line-height:1.001000;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_c01248;src:url('chunks/assets/font_68fb7229be26aae7ed8a030c.woff2')format("woff");}.ff2_c01248{font-family:ff2_c01248;line-height:1.000000;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_c01248;src:url('chunks/assets/font_876dda00882f8b6274a115e9.woff2')format("woff");}.ff3_c01248{font-family:ff3_c01248;line-height:0.462000;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_c01248;src:url('chunks/assets/font_1840b6321d8c6f0aa3e476ac.woff2')format("woff");}.ff4_c01248{font-family:ff4_c01248;line-height:1.000000;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_c01248;src:url('chunks/assets/font_4fd686571aff8c8f502428fb.woff2')format("woff");}.ff5_c01248{font-family:ff5_c01248;line-height:1.000000;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_c01248{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_c01248{vertical-align:0.000000px;}
.v1_c01248{vertical-align:23.748000px;}
.ls1_c01248{letter-spacing:0.000000px;}
.ls0_c01248{letter-spacing:28.058340px;}
.sc__c01248{text-shadow:none;}
.sc0_c01248{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__c01248{-webkit-text-stroke:0px transparent;}
.sc0_c01248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01248{word-spacing:-0.071730px;}
.ws20_c01248{word-spacing:0.000000px;}
.wse_c01248{word-spacing:16.036230px;}
.ws11_c01248{word-spacing:16.559862px;}
.ws7_c01248{word-spacing:18.916206px;}
.ws1_c01248{word-spacing:18.981660px;}
.ws1d_c01248{word-spacing:19.374384px;}
.ws1e_c01248{word-spacing:19.439838px;}
.wsf_c01248{word-spacing:19.505292px;}
.ws1c_c01248{word-spacing:21.141642px;}
.ws5_c01248{word-spacing:21.730728px;}
.wsb_c01248{word-spacing:21.796182px;}
.ws2_c01248{word-spacing:22.319814px;}
.ws1f_c01248{word-spacing:22.843446px;}
.ws13_c01248{word-spacing:24.807066px;}
.ws4_c01248{word-spacing:25.003428px;}
.ws3_c01248{word-spacing:25.068882px;}
.ws6_c01248{word-spacing:25.265244px;}
.wsc_c01248{word-spacing:25.788876px;}
.ws1b_c01248{word-spacing:25.854330px;}
.ws8_c01248{word-spacing:26.181600px;}
.ws1a_c01248{word-spacing:27.097956px;}
.wsd_c01248{word-spacing:27.294318px;}
.ws14_c01248{word-spacing:27.556134px;}
.ws19_c01248{word-spacing:27.948858px;}
.ws10_c01248{word-spacing:28.079766px;}
.wsa_c01248{word-spacing:28.341582px;}
.ws17_c01248{word-spacing:28.537944px;}
.ws12_c01248{word-spacing:29.847024px;}
.ws16_c01248{word-spacing:31.221558px;}
.ws9_c01248{word-spacing:32.007006px;}
.ws18_c01248{word-spacing:32.137914px;}
.ws15_c01248{word-spacing:32.334276px;}
._0_c01248{margin-left:-37.832412px;}
._5_c01248{margin-left:-33.185178px;}
._6_c01248{margin-left:-31.941552px;}
._3_c01248{margin-left:-29.323392px;}
._b_c01248{margin-left:-25.461606px;}
._f_c01248{margin-left:-24.414342px;}
._2_c01248{margin-left:-8.247204px;}
._a_c01248{margin-left:-7.069032px;}
._e_c01248{margin-left:-3.338154px;}
._1_c01248{margin-left:-2.159982px;}
._d_c01248{margin-left:-1.112718px;}
._7_c01248{width:1.243626px;}
._4_c01248{width:2.290890px;}
._8_c01248{width:3.599970px;}
._c_c01248{width:20.618010px;}
._9_c01248{width:31.025196px;}
.fc0_c01248{color:rgb(0,0,0);}
.fs2_c01248{font-size:47.820000px;}
.fs1_c01248{font-size:65.454000px;}
.fs0_c01248{font-size:71.730000px;}
.y0_c01248{bottom:0.000000px;}
.y27_c01248{bottom:71.973000px;}
.y26_c01248{bottom:97.194000px;}
.y25_c01248{bottom:122.416500px;}
.y24_c01248{bottom:147.637500px;}
.y23_c01248{bottom:172.860000px;}
.y22_c01248{bottom:198.081000px;}
.y21_c01248{bottom:223.303500px;}
.y20_c01248{bottom:248.524500px;}
.y1f_c01248{bottom:273.747000px;}
.y1e_c01248{bottom:298.968000px;}
.y1d_c01248{bottom:324.190500px;}
.y1c_c01248{bottom:349.411500px;}
.y1b_c01248{bottom:374.634000px;}
.y1a_c01248{bottom:399.855000px;}
.y19_c01248{bottom:425.077500px;}
.y18_c01248{bottom:450.298500px;}
.y17_c01248{bottom:475.521000px;}
.y16_c01248{bottom:500.742000px;}
.y15_c01248{bottom:525.964500px;}
.y14_c01248{bottom:551.185500px;}
.y13_c01248{bottom:576.408000px;}
.y12_c01248{bottom:618.613500px;}
.y11_c01248{bottom:643.836000px;}
.y10_c01248{bottom:669.057000px;}
.yf_c01248{bottom:694.279500px;}
.ye_c01248{bottom:719.500500px;}
.yd_c01248{bottom:744.723000px;}
.yc_c01248{bottom:769.944000px;}
.yb_c01248{bottom:795.166500px;}
.ya_c01248{bottom:820.389000px;}
.y9_c01248{bottom:845.610000px;}
.y8_c01248{bottom:870.832500px;}
.y7_c01248{bottom:896.053500px;}
.y6_c01248{bottom:938.260500px;}
.y5_c01248{bottom:963.481500px;}
.y4_c01248{bottom:988.704000px;}
.y3_c01248{bottom:1013.925000px;}
.y2_c01248{bottom:1073.662500px;}
.y1_c01248{bottom:1140.615000px;}
.h3_c01248{height:49.090500px;}
.h2_c01248{height:53.797500px;}
.h1_c01248{height:1263.750000px;}
.h0_c01248{height:1264.110000px;}
.w0_c01248{width:893.869500px;}
.w1_c01248{width:894.000000px;}
.x0_c01248{left:0.000000px;}
.x4_c01248{left:127.558500px;}
.x3_c01248{left:159.838500px;}
.x2_c01248{left:437.526000px;}
.x1_c01248{left:739.972500px;}
@media print{
.v0_c01248{vertical-align:0.000000pt;}
.v1_c01248{vertical-align:21.109333pt;}
.ls1_c01248{letter-spacing:0.000000pt;}
.ls0_c01248{letter-spacing:24.940747pt;}
.ws0_c01248{word-spacing:-0.063760pt;}
.ws20_c01248{word-spacing:0.000000pt;}
.wse_c01248{word-spacing:14.254427pt;}
.ws11_c01248{word-spacing:14.719877pt;}
.ws7_c01248{word-spacing:16.814405pt;}
.ws1_c01248{word-spacing:16.872587pt;}
.ws1d_c01248{word-spacing:17.221675pt;}
.ws1e_c01248{word-spacing:17.279856pt;}
.wsf_c01248{word-spacing:17.338037pt;}
.ws1c_c01248{word-spacing:18.792571pt;}
.ws5_c01248{word-spacing:19.316203pt;}
.wsb_c01248{word-spacing:19.374384pt;}
.ws2_c01248{word-spacing:19.839835pt;}
.ws1f_c01248{word-spacing:20.305285pt;}
.ws13_c01248{word-spacing:22.050725pt;}
.ws4_c01248{word-spacing:22.225269pt;}
.ws3_c01248{word-spacing:22.283451pt;}
.ws6_c01248{word-spacing:22.457995pt;}
.wsc_c01248{word-spacing:22.923445pt;}
.ws1b_c01248{word-spacing:22.981627pt;}
.ws8_c01248{word-spacing:23.272533pt;}
.ws1a_c01248{word-spacing:24.087072pt;}
.wsd_c01248{word-spacing:24.261616pt;}
.ws14_c01248{word-spacing:24.494341pt;}
.ws19_c01248{word-spacing:24.843429pt;}
.ws10_c01248{word-spacing:24.959792pt;}
.wsa_c01248{word-spacing:25.192517pt;}
.ws17_c01248{word-spacing:25.367061pt;}
.ws12_c01248{word-spacing:26.530688pt;}
.ws16_c01248{word-spacing:27.752496pt;}
.ws9_c01248{word-spacing:28.450672pt;}
.ws18_c01248{word-spacing:28.567035pt;}
.ws15_c01248{word-spacing:28.741579pt;}
._0_c01248{margin-left:-33.628811pt;}
._5_c01248{margin-left:-29.497936pt;}
._6_c01248{margin-left:-28.392491pt;}
._3_c01248{margin-left:-26.065237pt;}
._b_c01248{margin-left:-22.632539pt;}
._f_c01248{margin-left:-21.701637pt;}
._2_c01248{margin-left:-7.330848pt;}
._a_c01248{margin-left:-6.283584pt;}
._e_c01248{margin-left:-2.967248pt;}
._1_c01248{margin-left:-1.919984pt;}
._d_c01248{margin-left:-0.989083pt;}
._7_c01248{width:1.105445pt;}
._4_c01248{width:2.036347pt;}
._8_c01248{width:3.199973pt;}
._c_c01248{width:18.327120pt;}
._9_c01248{width:27.577952pt;}
.fs2_c01248{font-size:42.506667pt;}
.fs1_c01248{font-size:58.181333pt;}
.fs0_c01248{font-size:63.760000pt;}
.y0_c01248{bottom:0.000000pt;}
.y27_c01248{bottom:63.976000pt;}
.y26_c01248{bottom:86.394667pt;}
.y25_c01248{bottom:108.814667pt;}
.y24_c01248{bottom:131.233333pt;}
.y23_c01248{bottom:153.653333pt;}
.y22_c01248{bottom:176.072000pt;}
.y21_c01248{bottom:198.492000pt;}
.y20_c01248{bottom:220.910667pt;}
.y1f_c01248{bottom:243.330667pt;}
.y1e_c01248{bottom:265.749333pt;}
.y1d_c01248{bottom:288.169333pt;}
.y1c_c01248{bottom:310.588000pt;}
.y1b_c01248{bottom:333.008000pt;}
.y1a_c01248{bottom:355.426667pt;}
.y19_c01248{bottom:377.846667pt;}
.y18_c01248{bottom:400.265333pt;}
.y17_c01248{bottom:422.685333pt;}
.y16_c01248{bottom:445.104000pt;}
.y15_c01248{bottom:467.524000pt;}
.y14_c01248{bottom:489.942667pt;}
.y13_c01248{bottom:512.362667pt;}
.y12_c01248{bottom:549.878667pt;}
.y11_c01248{bottom:572.298667pt;}
.y10_c01248{bottom:594.717333pt;}
.yf_c01248{bottom:617.137333pt;}
.ye_c01248{bottom:639.556000pt;}
.yd_c01248{bottom:661.976000pt;}
.yc_c01248{bottom:684.394667pt;}
.yb_c01248{bottom:706.814667pt;}
.ya_c01248{bottom:729.234667pt;}
.y9_c01248{bottom:751.653333pt;}
.y8_c01248{bottom:774.073333pt;}
.y7_c01248{bottom:796.492000pt;}
.y6_c01248{bottom:834.009333pt;}
.y5_c01248{bottom:856.428000pt;}
.y4_c01248{bottom:878.848000pt;}
.y3_c01248{bottom:901.266667pt;}
.y2_c01248{bottom:954.366667pt;}
.y1_c01248{bottom:1013.880000pt;}
.h3_c01248{height:43.636000pt;}
.h2_c01248{height:47.820000pt;}
.h1_c01248{height:1123.333333pt;}
.h0_c01248{height:1123.653333pt;}
.w0_c01248{width:794.550667pt;}
.w1_c01248{width:794.666667pt;}
.x0_c01248{left:0.000000pt;}
.x4_c01248{left:113.385333pt;}
.x3_c01248{left:142.078667pt;}
.x2_c01248{left:388.912000pt;}
.x1_c01248{left:657.753333pt;}
}





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

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





.ff0_c01249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01249;src:url('chunks/assets/font_bac9f1a844fcebc9ba6dac01.woff2')format("woff");}.ff1_c01249{font-family:ff1_c01249;line-height:1.001000;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_c01249;src:url('chunks/assets/font_5fd3d960d231d1177dd33d94.woff2')format("woff");}.ff2_c01249{font-family:ff2_c01249;line-height:1.000000;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_c01249;src:url('chunks/assets/font_2afecb3c9276726f9370b3d6.woff2')format("woff");}.ff3_c01249{font-family:ff3_c01249;line-height:0.697000;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_c01249{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_c01249{vertical-align:0.000000px;}
.v1_c01249{vertical-align:16.542000px;}
.v2_c01249{vertical-align:23.754000px;}
.ls1_c01249{letter-spacing:0.000000px;}
.ls0_c01249{letter-spacing:28.763580px;}
.sc__c01249{text-shadow:none;}
.sc0_c01249{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__c01249{-webkit-text-stroke:0px transparent;}
.sc0_c01249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01249{word-spacing:-0.071730px;}
.ws3_c01249{word-spacing:-0.065454px;}
.ws19_c01249{word-spacing:0.000000px;}
.ws14_c01249{word-spacing:15.774414px;}
.wsa_c01249{word-spacing:16.625316px;}
.ws6_c01249{word-spacing:17.148948px;}
.wsf_c01249{word-spacing:17.607126px;}
.ws7_c01249{word-spacing:21.730728px;}
.ws9_c01249{word-spacing:21.796182px;}
.wse_c01249{word-spacing:22.057998px;}
.wsd_c01249{word-spacing:22.254360px;}
.ws15_c01249{word-spacing:22.908900px;}
.ws13_c01249{word-spacing:24.217980px;}
.ws12_c01249{word-spacing:24.348888px;}
.ws11_c01249{word-spacing:24.414342px;}
.wsb_c01249{word-spacing:24.545250px;}
.ws2_c01249{word-spacing:24.872520px;}
.wsc_c01249{word-spacing:25.003428px;}
.ws10_c01249{word-spacing:25.657968px;}
.ws8_c01249{word-spacing:26.377962px;}
.ws5_c01249{word-spacing:26.705232px;}
.ws1_c01249{word-spacing:27.556134px;}
.ws16_c01249{word-spacing:28.145220px;}
.ws4_c01249{word-spacing:30.043386px;}
.ws18_c01249{word-spacing:32.007006px;}
.ws17_c01249{word-spacing:32.399730px;}
._3_c01249{margin-left:-34.559712px;}
._1_c01249{margin-left:-32.661546px;}
._b_c01249{margin-left:-31.090650px;}
._6_c01249{margin-left:-25.461606px;}
._5_c01249{margin-left:-7.658118px;}
._9_c01249{margin-left:-5.498136px;}
._4_c01249{margin-left:-3.796332px;}
._0_c01249{margin-left:-1.701804px;}
._2_c01249{width:1.832712px;}
._8_c01249{width:3.665424px;}
._7_c01249{width:10.472640px;}
._a_c01249{width:32.728650px;}
.fc0_c01249{color:rgb(0,0,0);}
.fs2_c01249{font-size:47.820000px;}
.fs1_c01249{font-size:65.454000px;}
.fs0_c01249{font-size:71.730000px;}
.y0_c01249{bottom:0.000000px;}
.y27_c01249{bottom:86.658000px;}
.y26_c01249{bottom:111.880500px;}
.y25_c01249{bottom:155.035500px;}
.y24_c01249{bottom:198.189000px;}
.y23_c01249{bottom:223.411500px;}
.y22_c01249{bottom:248.632500px;}
.y21_c01249{bottom:273.855000px;}
.y20_c01249{bottom:299.076000px;}
.y1f_c01249{bottom:324.298500px;}
.y1e_c01249{bottom:349.519500px;}
.y1d_c01249{bottom:374.742000px;}
.y1c_c01249{bottom:399.963000px;}
.y1b_c01249{bottom:425.185500px;}
.y1a_c01249{bottom:450.406500px;}
.y19_c01249{bottom:475.629000px;}
.y18_c01249{bottom:500.850000px;}
.y17_c01249{bottom:526.072500px;}
.y16_c01249{bottom:551.293500px;}
.y15_c01249{bottom:576.516000px;}
.y14_c01249{bottom:619.671000px;}
.y13_c01249{bottom:644.892000px;}
.y12_c01249{bottom:670.114500px;}
.y11_c01249{bottom:695.335500px;}
.y10_c01249{bottom:720.558000px;}
.yf_c01249{bottom:745.779000px;}
.ye_c01249{bottom:771.001500px;}
.yd_c01249{bottom:796.222500px;}
.yc_c01249{bottom:821.445000px;}
.yb_c01249{bottom:846.666000px;}
.ya_c01249{bottom:871.888500px;}
.y9_c01249{bottom:897.109500px;}
.y8_c01249{bottom:922.332000px;}
.y7_c01249{bottom:947.553000px;}
.y6_c01249{bottom:972.775500px;}
.y5_c01249{bottom:997.996500px;}
.y4_c01249{bottom:1023.219000px;}
.y3_c01249{bottom:1048.440000px;}
.y2_c01249{bottom:1073.662500px;}
.y1_c01249{bottom:1140.615000px;}
.h3_c01249{height:49.090500px;}
.h2_c01249{height:53.797500px;}
.h5_c01249{height:56.080320px;}
.h4_c01249{height:65.632500px;}
.h6_c01249{height:65.638500px;}
.h1_c01249{height:1263.750000px;}
.h0_c01249{height:1264.110000px;}
.w0_c01249{width:893.869500px;}
.w1_c01249{width:894.000000px;}
.x0_c01249{left:0.000000px;}
.x3_c01249{left:127.558500px;}
.x2_c01249{left:159.838500px;}
.x6_c01249{left:247.822500px;}
.x4_c01249{left:268.020000px;}
.x5_c01249{left:518.199000px;}
.x1_c01249{left:739.972500px;}
@media print{
.v0_c01249{vertical-align:0.000000pt;}
.v1_c01249{vertical-align:14.704000pt;}
.v2_c01249{vertical-align:21.114667pt;}
.ls1_c01249{letter-spacing:0.000000pt;}
.ls0_c01249{letter-spacing:25.567627pt;}
.ws0_c01249{word-spacing:-0.063760pt;}
.ws3_c01249{word-spacing:-0.058181pt;}
.ws19_c01249{word-spacing:0.000000pt;}
.ws14_c01249{word-spacing:14.021701pt;}
.wsa_c01249{word-spacing:14.778059pt;}
.ws6_c01249{word-spacing:15.243509pt;}
.wsf_c01249{word-spacing:15.650779pt;}
.ws7_c01249{word-spacing:19.316203pt;}
.ws9_c01249{word-spacing:19.374384pt;}
.wse_c01249{word-spacing:19.607109pt;}
.wsd_c01249{word-spacing:19.781653pt;}
.ws15_c01249{word-spacing:20.363467pt;}
.ws13_c01249{word-spacing:21.527093pt;}
.ws12_c01249{word-spacing:21.643456pt;}
.ws11_c01249{word-spacing:21.701637pt;}
.wsb_c01249{word-spacing:21.818000pt;}
.ws2_c01249{word-spacing:22.108907pt;}
.wsc_c01249{word-spacing:22.225269pt;}
.ws10_c01249{word-spacing:22.807083pt;}
.ws8_c01249{word-spacing:23.447077pt;}
.ws5_c01249{word-spacing:23.737984pt;}
.ws1_c01249{word-spacing:24.494341pt;}
.ws16_c01249{word-spacing:25.017973pt;}
.ws4_c01249{word-spacing:26.705232pt;}
.ws18_c01249{word-spacing:28.450672pt;}
.ws17_c01249{word-spacing:28.799760pt;}
._3_c01249{margin-left:-30.719744pt;}
._1_c01249{margin-left:-29.032485pt;}
._b_c01249{margin-left:-27.636133pt;}
._6_c01249{margin-left:-22.632539pt;}
._5_c01249{margin-left:-6.807216pt;}
._9_c01249{margin-left:-4.887232pt;}
._4_c01249{margin-left:-3.374517pt;}
._0_c01249{margin-left:-1.512715pt;}
._2_c01249{width:1.629077pt;}
._8_c01249{width:3.258155pt;}
._7_c01249{width:9.309013pt;}
._a_c01249{width:29.092133pt;}
.fs2_c01249{font-size:42.506667pt;}
.fs1_c01249{font-size:58.181333pt;}
.fs0_c01249{font-size:63.760000pt;}
.y0_c01249{bottom:0.000000pt;}
.y27_c01249{bottom:77.029333pt;}
.y26_c01249{bottom:99.449333pt;}
.y25_c01249{bottom:137.809333pt;}
.y24_c01249{bottom:176.168000pt;}
.y23_c01249{bottom:198.588000pt;}
.y22_c01249{bottom:221.006667pt;}
.y21_c01249{bottom:243.426667pt;}
.y20_c01249{bottom:265.845333pt;}
.y1f_c01249{bottom:288.265333pt;}
.y1e_c01249{bottom:310.684000pt;}
.y1d_c01249{bottom:333.104000pt;}
.y1c_c01249{bottom:355.522667pt;}
.y1b_c01249{bottom:377.942667pt;}
.y1a_c01249{bottom:400.361333pt;}
.y19_c01249{bottom:422.781333pt;}
.y18_c01249{bottom:445.200000pt;}
.y17_c01249{bottom:467.620000pt;}
.y16_c01249{bottom:490.038667pt;}
.y15_c01249{bottom:512.458667pt;}
.y14_c01249{bottom:550.818667pt;}
.y13_c01249{bottom:573.237333pt;}
.y12_c01249{bottom:595.657333pt;}
.y11_c01249{bottom:618.076000pt;}
.y10_c01249{bottom:640.496000pt;}
.yf_c01249{bottom:662.914667pt;}
.ye_c01249{bottom:685.334667pt;}
.yd_c01249{bottom:707.753333pt;}
.yc_c01249{bottom:730.173333pt;}
.yb_c01249{bottom:752.592000pt;}
.ya_c01249{bottom:775.012000pt;}
.y9_c01249{bottom:797.430667pt;}
.y8_c01249{bottom:819.850667pt;}
.y7_c01249{bottom:842.269333pt;}
.y6_c01249{bottom:864.689333pt;}
.y5_c01249{bottom:887.108000pt;}
.y4_c01249{bottom:909.528000pt;}
.y3_c01249{bottom:931.946667pt;}
.y2_c01249{bottom:954.366667pt;}
.y1_c01249{bottom:1013.880000pt;}
.h3_c01249{height:43.636000pt;}
.h2_c01249{height:47.820000pt;}
.h5_c01249{height:49.849173pt;}
.h4_c01249{height:58.340000pt;}
.h6_c01249{height:58.345333pt;}
.h1_c01249{height:1123.333333pt;}
.h0_c01249{height:1123.653333pt;}
.w0_c01249{width:794.550667pt;}
.w1_c01249{width:794.666667pt;}
.x0_c01249{left:0.000000pt;}
.x3_c01249{left:113.385333pt;}
.x2_c01249{left:142.078667pt;}
.x6_c01249{left:220.286667pt;}
.x4_c01249{left:238.240000pt;}
.x5_c01249{left:460.621333pt;}
.x1_c01249{left:657.753333pt;}
}





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

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





.ff0_c01250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01250;src:url('chunks/assets/font_43cef5b3e472896165507b55.woff2')format("woff");}.ff1_c01250{font-family:ff1_c01250;line-height:1.001000;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_c01250;src:url('chunks/assets/font_1d3675ae8ce30cd4e5468849.woff2')format("woff");}.ff2_c01250{font-family:ff2_c01250;line-height:1.000000;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_c01250{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_c01250{vertical-align:0.000000px;}
.ls0_c01250{letter-spacing:0.000000px;}
.sc__c01250{text-shadow:none;}
.sc0_c01250{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__c01250{-webkit-text-stroke:0px transparent;}
.sc0_c01250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01250{word-spacing:-0.071730px;}
.ws8_c01250{word-spacing:-0.065454px;}
.ws9_c01250{word-spacing:16.232592px;}
.wsf_c01250{word-spacing:18.196212px;}
.ws14_c01250{word-spacing:19.243476px;}
.ws19_c01250{word-spacing:19.439838px;}
.wsc_c01250{word-spacing:19.963470px;}
.wsd_c01250{word-spacing:20.814372px;}
.ws1a_c01250{word-spacing:21.010734px;}
.ws5_c01250{word-spacing:21.272550px;}
.ws18_c01250{word-spacing:21.338004px;}
.ws1_c01250{word-spacing:21.730728px;}
.ws3_c01250{word-spacing:22.516176px;}
.ws12_c01250{word-spacing:23.563440px;}
.ws7_c01250{word-spacing:24.545250px;}
.ws6_c01250{word-spacing:25.068882px;}
.ws16_c01250{word-spacing:25.330698px;}
.ws13_c01250{word-spacing:25.461606px;}
.wsa_c01250{word-spacing:25.657968px;}
.wse_c01250{word-spacing:25.854330px;}
.ws15_c01250{word-spacing:27.097956px;}
.ws11_c01250{word-spacing:27.687042px;}
.wsb_c01250{word-spacing:28.930668px;}
.ws10_c01250{word-spacing:29.781570px;}
.ws4_c01250{word-spacing:29.977932px;}
.ws17_c01250{word-spacing:31.221558px;}
.ws2_c01250{word-spacing:31.352466px;}
._4_c01250{margin-left:-34.559712px;}
._0_c01250{margin-left:-32.661546px;}
._9_c01250{margin-left:-30.239748px;}
._7_c01250{margin-left:-25.461606px;}
._6_c01250{margin-left:-7.330848px;}
._5_c01250{margin-left:-5.498136px;}
._8_c01250{margin-left:-3.796332px;}
._1_c01250{margin-left:-1.898166px;}
._2_c01250{width:1.701804px;}
._3_c01250{width:3.599970px;}
.fc0_c01250{color:rgb(0,0,0);}
.fs1_c01250{font-size:65.454000px;}
.fs0_c01250{font-size:71.730000px;}
.y0_c01250{bottom:0.000000px;}
.y27_c01250{bottom:86.658000px;}
.y26_c01250{bottom:129.813000px;}
.y25_c01250{bottom:155.035500px;}
.y24_c01250{bottom:180.256500px;}
.y23_c01250{bottom:205.479000px;}
.y22_c01250{bottom:230.700000px;}
.y21_c01250{bottom:255.922500px;}
.y20_c01250{bottom:281.143500px;}
.y1f_c01250{bottom:306.366000px;}
.y1e_c01250{bottom:331.587000px;}
.y1d_c01250{bottom:356.809500px;}
.y1c_c01250{bottom:399.963000px;}
.y1b_c01250{bottom:425.185500px;}
.y1a_c01250{bottom:450.406500px;}
.y19_c01250{bottom:475.629000px;}
.y18_c01250{bottom:500.850000px;}
.y17_c01250{bottom:526.072500px;}
.y16_c01250{bottom:551.293500px;}
.y15_c01250{bottom:576.516000px;}
.y14_c01250{bottom:601.737000px;}
.y13_c01250{bottom:626.959500px;}
.y12_c01250{bottom:652.180500px;}
.y11_c01250{bottom:677.403000px;}
.y10_c01250{bottom:702.624000px;}
.yf_c01250{bottom:727.846500px;}
.ye_c01250{bottom:771.001500px;}
.yd_c01250{bottom:796.222500px;}
.yc_c01250{bottom:821.445000px;}
.yb_c01250{bottom:846.666000px;}
.ya_c01250{bottom:871.888500px;}
.y9_c01250{bottom:897.109500px;}
.y8_c01250{bottom:922.332000px;}
.y7_c01250{bottom:947.553000px;}
.y6_c01250{bottom:972.775500px;}
.y5_c01250{bottom:997.996500px;}
.y4_c01250{bottom:1023.219000px;}
.y3_c01250{bottom:1048.440000px;}
.y2_c01250{bottom:1073.662500px;}
.y1_c01250{bottom:1140.615000px;}
.h3_c01250{height:49.090500px;}
.h2_c01250{height:53.797500px;}
.h1_c01250{height:1263.750000px;}
.h0_c01250{height:1264.110000px;}
.w0_c01250{width:893.869500px;}
.w1_c01250{width:894.000000px;}
.x0_c01250{left:0.000000px;}
.x3_c01250{left:127.558500px;}
.x2_c01250{left:159.838500px;}
.x1_c01250{left:739.972500px;}
@media print{
.v0_c01250{vertical-align:0.000000pt;}
.ls0_c01250{letter-spacing:0.000000pt;}
.ws0_c01250{word-spacing:-0.063760pt;}
.ws8_c01250{word-spacing:-0.058181pt;}
.ws9_c01250{word-spacing:14.428971pt;}
.wsf_c01250{word-spacing:16.174411pt;}
.ws14_c01250{word-spacing:17.105312pt;}
.ws19_c01250{word-spacing:17.279856pt;}
.wsc_c01250{word-spacing:17.745307pt;}
.wsd_c01250{word-spacing:18.501664pt;}
.ws1a_c01250{word-spacing:18.676208pt;}
.ws5_c01250{word-spacing:18.908933pt;}
.ws18_c01250{word-spacing:18.967115pt;}
.ws1_c01250{word-spacing:19.316203pt;}
.ws3_c01250{word-spacing:20.014379pt;}
.ws12_c01250{word-spacing:20.945280pt;}
.ws7_c01250{word-spacing:21.818000pt;}
.ws6_c01250{word-spacing:22.283451pt;}
.ws16_c01250{word-spacing:22.516176pt;}
.ws13_c01250{word-spacing:22.632539pt;}
.wsa_c01250{word-spacing:22.807083pt;}
.wse_c01250{word-spacing:22.981627pt;}
.ws15_c01250{word-spacing:24.087072pt;}
.ws11_c01250{word-spacing:24.610704pt;}
.wsb_c01250{word-spacing:25.716149pt;}
.ws10_c01250{word-spacing:26.472507pt;}
.ws4_c01250{word-spacing:26.647051pt;}
.ws17_c01250{word-spacing:27.752496pt;}
.ws2_c01250{word-spacing:27.868859pt;}
._4_c01250{margin-left:-30.719744pt;}
._0_c01250{margin-left:-29.032485pt;}
._9_c01250{margin-left:-26.879776pt;}
._7_c01250{margin-left:-22.632539pt;}
._6_c01250{margin-left:-6.516309pt;}
._5_c01250{margin-left:-4.887232pt;}
._8_c01250{margin-left:-3.374517pt;}
._1_c01250{margin-left:-1.687259pt;}
._2_c01250{width:1.512715pt;}
._3_c01250{width:3.199973pt;}
.fs1_c01250{font-size:58.181333pt;}
.fs0_c01250{font-size:63.760000pt;}
.y0_c01250{bottom:0.000000pt;}
.y27_c01250{bottom:77.029333pt;}
.y26_c01250{bottom:115.389333pt;}
.y25_c01250{bottom:137.809333pt;}
.y24_c01250{bottom:160.228000pt;}
.y23_c01250{bottom:182.648000pt;}
.y22_c01250{bottom:205.066667pt;}
.y21_c01250{bottom:227.486667pt;}
.y20_c01250{bottom:249.905333pt;}
.y1f_c01250{bottom:272.325333pt;}
.y1e_c01250{bottom:294.744000pt;}
.y1d_c01250{bottom:317.164000pt;}
.y1c_c01250{bottom:355.522667pt;}
.y1b_c01250{bottom:377.942667pt;}
.y1a_c01250{bottom:400.361333pt;}
.y19_c01250{bottom:422.781333pt;}
.y18_c01250{bottom:445.200000pt;}
.y17_c01250{bottom:467.620000pt;}
.y16_c01250{bottom:490.038667pt;}
.y15_c01250{bottom:512.458667pt;}
.y14_c01250{bottom:534.877333pt;}
.y13_c01250{bottom:557.297333pt;}
.y12_c01250{bottom:579.716000pt;}
.y11_c01250{bottom:602.136000pt;}
.y10_c01250{bottom:624.554667pt;}
.yf_c01250{bottom:646.974667pt;}
.ye_c01250{bottom:685.334667pt;}
.yd_c01250{bottom:707.753333pt;}
.yc_c01250{bottom:730.173333pt;}
.yb_c01250{bottom:752.592000pt;}
.ya_c01250{bottom:775.012000pt;}
.y9_c01250{bottom:797.430667pt;}
.y8_c01250{bottom:819.850667pt;}
.y7_c01250{bottom:842.269333pt;}
.y6_c01250{bottom:864.689333pt;}
.y5_c01250{bottom:887.108000pt;}
.y4_c01250{bottom:909.528000pt;}
.y3_c01250{bottom:931.946667pt;}
.y2_c01250{bottom:954.366667pt;}
.y1_c01250{bottom:1013.880000pt;}
.h3_c01250{height:43.636000pt;}
.h2_c01250{height:47.820000pt;}
.h1_c01250{height:1123.333333pt;}
.h0_c01250{height:1123.653333pt;}
.w0_c01250{width:794.550667pt;}
.w1_c01250{width:794.666667pt;}
.x0_c01250{left:0.000000pt;}
.x3_c01250{left:113.385333pt;}
.x2_c01250{left:142.078667pt;}
.x1_c01250{left:657.753333pt;}
}





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

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





.ff0_c01251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01251;src:url('chunks/assets/font_9124751cddc8b79c2bba2ff9.woff2')format("woff");}.ff1_c01251{font-family:ff1_c01251;line-height:1.001000;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_c01251;src:url('chunks/assets/font_0a4ef073ee868e6416ad597f.woff2')format("woff");}.ff2_c01251{font-family:ff2_c01251;line-height:1.000000;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_c01251;src:url('chunks/assets/font_c7de122712c3796c87cf27ca.woff2')format("woff");}.ff3_c01251{font-family:ff3_c01251;line-height:0.697000;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_c01251{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_c01251{vertical-align:0.000000px;}
.v2_c01251{vertical-align:16.548000px;}
.v1_c01251{vertical-align:23.754000px;}
.ls1_c01251{letter-spacing:0.000000px;}
.ls0_c01251{letter-spacing:24.815580px;}
.sc__c01251{text-shadow:none;}
.sc0_c01251{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__c01251{-webkit-text-stroke:0px transparent;}
.sc0_c01251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01251{word-spacing:-0.071730px;}
.ws1b_c01251{word-spacing:-0.065454px;}
.ws1c_c01251{word-spacing:0.000000px;}
.ws12_c01251{word-spacing:15.250782px;}
.ws16_c01251{word-spacing:18.719844px;}
.ws17_c01251{word-spacing:19.701654px;}
.ws13_c01251{word-spacing:19.767108px;}
.wsa_c01251{word-spacing:20.356194px;}
.wse_c01251{word-spacing:20.683464px;}
.ws1_c01251{word-spacing:21.338004px;}
.ws2_c01251{word-spacing:21.730728px;}
.ws7_c01251{word-spacing:21.796182px;}
.ws1a_c01251{word-spacing:23.301624px;}
.ws4_c01251{word-spacing:23.759802px;}
.ws19_c01251{word-spacing:23.825256px;}
.ws11_c01251{word-spacing:23.956164px;}
.ws5_c01251{word-spacing:24.087072px;}
.ws3_c01251{word-spacing:24.152526px;}
.ws14_c01251{word-spacing:25.003428px;}
.ws10_c01251{word-spacing:26.116146px;}
.ws18_c01251{word-spacing:26.443416px;}
.wsc_c01251{word-spacing:26.705232px;}
.ws6_c01251{word-spacing:26.836140px;}
.wsb_c01251{word-spacing:27.228864px;}
.ws15_c01251{word-spacing:27.752496px;}
.wsd_c01251{word-spacing:27.948858px;}
.ws9_c01251{word-spacing:28.996122px;}
.ws8_c01251{word-spacing:31.941552px;}
.wsf_c01251{word-spacing:32.007006px;}
._8_c01251{margin-left:-34.428804px;}
._2_c01251{margin-left:-32.661546px;}
._a_c01251{margin-left:-30.894288px;}
._5_c01251{margin-left:-25.461606px;}
._4_c01251{margin-left:-7.592664px;}
._1_c01251{margin-left:-5.367228px;}
._6_c01251{margin-left:-3.534516px;}
._0_c01251{margin-left:-1.832712px;}
._3_c01251{width:1.767258px;}
._7_c01251{width:3.730878px;}
._b_c01251{width:8.846040px;}
._9_c01251{width:23.497986px;}
.fc0_c01251{color:rgb(0,0,0);}
.fs2_c01251{font-size:47.820000px;}
.fs1_c01251{font-size:65.454000px;}
.fs0_c01251{font-size:71.730000px;}
.y0_c01251{bottom:0.000000px;}
.y26_c01251{bottom:71.973000px;}
.y25_c01251{bottom:97.194000px;}
.y24_c01251{bottom:122.416500px;}
.y23_c01251{bottom:147.637500px;}
.y22_c01251{bottom:172.860000px;}
.y21_c01251{bottom:198.081000px;}
.y20_c01251{bottom:238.921500px;}
.y1f_c01251{bottom:264.142500px;}
.y1e_c01251{bottom:289.365000px;}
.y1d_c01251{bottom:314.586000px;}
.y1c_c01251{bottom:339.808500px;}
.y1b_c01251{bottom:365.029500px;}
.y1a_c01251{bottom:405.868500px;}
.y19_c01251{bottom:446.709000px;}
.y18_c01251{bottom:471.930000px;}
.y17_c01251{bottom:497.152500px;}
.y16_c01251{bottom:522.373500px;}
.y15_c01251{bottom:547.596000px;}
.y14_c01251{bottom:572.817000px;}
.y13_c01251{bottom:598.039500px;}
.y12_c01251{bottom:623.260500px;}
.y11_c01251{bottom:664.101000px;}
.y10_c01251{bottom:689.322000px;}
.yf_c01251{bottom:714.544500px;}
.ye_c01251{bottom:739.765500px;}
.yd_c01251{bottom:764.988000px;}
.yc_c01251{bottom:790.209000px;}
.yb_c01251{bottom:815.431500px;}
.ya_c01251{bottom:840.652500px;}
.y9_c01251{bottom:865.875000px;}
.y8_c01251{bottom:906.714000px;}
.y7_c01251{bottom:931.935000px;}
.y6_c01251{bottom:957.157500px;}
.y5_c01251{bottom:982.378500px;}
.y4_c01251{bottom:1007.601000px;}
.y3_c01251{bottom:1048.440000px;}
.y2_c01251{bottom:1073.662500px;}
.y1_c01251{bottom:1140.615000px;}
.h3_c01251{height:49.090500px;}
.h2_c01251{height:53.797500px;}
.h4_c01251{height:56.080320px;}
.h5_c01251{height:65.638500px;}
.h1_c01251{height:1263.750000px;}
.h0_c01251{height:1264.110000px;}
.w0_c01251{width:893.869500px;}
.w1_c01251{width:894.000000px;}
.x0_c01251{left:0.000000px;}
.x3_c01251{left:127.558500px;}
.x2_c01251{left:159.838500px;}
.x4_c01251{left:433.702500px;}
.x1_c01251{left:739.972500px;}
@media print{
.v0_c01251{vertical-align:0.000000pt;}
.v2_c01251{vertical-align:14.709333pt;}
.v1_c01251{vertical-align:21.114667pt;}
.ls1_c01251{letter-spacing:0.000000pt;}
.ls0_c01251{letter-spacing:22.058293pt;}
.ws0_c01251{word-spacing:-0.063760pt;}
.ws1b_c01251{word-spacing:-0.058181pt;}
.ws1c_c01251{word-spacing:0.000000pt;}
.ws12_c01251{word-spacing:13.556251pt;}
.ws16_c01251{word-spacing:16.639861pt;}
.ws17_c01251{word-spacing:17.512581pt;}
.ws13_c01251{word-spacing:17.570763pt;}
.wsa_c01251{word-spacing:18.094395pt;}
.wse_c01251{word-spacing:18.385301pt;}
.ws1_c01251{word-spacing:18.967115pt;}
.ws2_c01251{word-spacing:19.316203pt;}
.ws7_c01251{word-spacing:19.374384pt;}
.ws1a_c01251{word-spacing:20.712555pt;}
.ws4_c01251{word-spacing:21.119824pt;}
.ws19_c01251{word-spacing:21.178005pt;}
.ws11_c01251{word-spacing:21.294368pt;}
.ws5_c01251{word-spacing:21.410731pt;}
.ws3_c01251{word-spacing:21.468912pt;}
.ws14_c01251{word-spacing:22.225269pt;}
.ws10_c01251{word-spacing:23.214352pt;}
.ws18_c01251{word-spacing:23.505259pt;}
.wsc_c01251{word-spacing:23.737984pt;}
.ws6_c01251{word-spacing:23.854347pt;}
.wsb_c01251{word-spacing:24.203435pt;}
.ws15_c01251{word-spacing:24.668885pt;}
.wsd_c01251{word-spacing:24.843429pt;}
.ws9_c01251{word-spacing:25.774331pt;}
.ws8_c01251{word-spacing:28.392491pt;}
.wsf_c01251{word-spacing:28.450672pt;}
._8_c01251{margin-left:-30.603381pt;}
._2_c01251{margin-left:-29.032485pt;}
._a_c01251{margin-left:-27.461589pt;}
._5_c01251{margin-left:-22.632539pt;}
._4_c01251{margin-left:-6.749035pt;}
._1_c01251{margin-left:-4.770869pt;}
._6_c01251{margin-left:-3.141792pt;}
._0_c01251{margin-left:-1.629077pt;}
._3_c01251{width:1.570896pt;}
._7_c01251{width:3.316336pt;}
._b_c01251{width:7.863147pt;}
._9_c01251{width:20.887099pt;}
.fs2_c01251{font-size:42.506667pt;}
.fs1_c01251{font-size:58.181333pt;}
.fs0_c01251{font-size:63.760000pt;}
.y0_c01251{bottom:0.000000pt;}
.y26_c01251{bottom:63.976000pt;}
.y25_c01251{bottom:86.394667pt;}
.y24_c01251{bottom:108.814667pt;}
.y23_c01251{bottom:131.233333pt;}
.y22_c01251{bottom:153.653333pt;}
.y21_c01251{bottom:176.072000pt;}
.y20_c01251{bottom:212.374667pt;}
.y1f_c01251{bottom:234.793333pt;}
.y1e_c01251{bottom:257.213333pt;}
.y1d_c01251{bottom:279.632000pt;}
.y1c_c01251{bottom:302.052000pt;}
.y1b_c01251{bottom:324.470667pt;}
.y1a_c01251{bottom:360.772000pt;}
.y19_c01251{bottom:397.074667pt;}
.y18_c01251{bottom:419.493333pt;}
.y17_c01251{bottom:441.913333pt;}
.y16_c01251{bottom:464.332000pt;}
.y15_c01251{bottom:486.752000pt;}
.y14_c01251{bottom:509.170667pt;}
.y13_c01251{bottom:531.590667pt;}
.y12_c01251{bottom:554.009333pt;}
.y11_c01251{bottom:590.312000pt;}
.y10_c01251{bottom:612.730667pt;}
.yf_c01251{bottom:635.150667pt;}
.ye_c01251{bottom:657.569333pt;}
.yd_c01251{bottom:679.989333pt;}
.yc_c01251{bottom:702.408000pt;}
.yb_c01251{bottom:724.828000pt;}
.ya_c01251{bottom:747.246667pt;}
.y9_c01251{bottom:769.666667pt;}
.y8_c01251{bottom:805.968000pt;}
.y7_c01251{bottom:828.386667pt;}
.y6_c01251{bottom:850.806667pt;}
.y5_c01251{bottom:873.225333pt;}
.y4_c01251{bottom:895.645333pt;}
.y3_c01251{bottom:931.946667pt;}
.y2_c01251{bottom:954.366667pt;}
.y1_c01251{bottom:1013.880000pt;}
.h3_c01251{height:43.636000pt;}
.h2_c01251{height:47.820000pt;}
.h4_c01251{height:49.849173pt;}
.h5_c01251{height:58.345333pt;}
.h1_c01251{height:1123.333333pt;}
.h0_c01251{height:1123.653333pt;}
.w0_c01251{width:794.550667pt;}
.w1_c01251{width:794.666667pt;}
.x0_c01251{left:0.000000pt;}
.x3_c01251{left:113.385333pt;}
.x2_c01251{left:142.078667pt;}
.x4_c01251{left:385.513333pt;}
.x1_c01251{left:657.753333pt;}
}





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

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





.ff0_c01252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01252;src:url('chunks/assets/font_e75908d4e9a0ab0c6d7ff3e0.woff2')format("woff");}.ff1_c01252{font-family:ff1_c01252;line-height:1.001000;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_c01252;src:url('chunks/assets/font_07c71697f81d42dc55a6c9a3.woff2')format("woff");}.ff2_c01252{font-family:ff2_c01252;line-height:1.000000;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_c01252;src:url('chunks/assets/font_1b05cd1b23709c0d092ef11f.woff2')format("woff");}.ff3_c01252{font-family:ff3_c01252;line-height:0.697000;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_c01252{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);}
.v3_c01252{vertical-align:-23.748000px;}
.v0_c01252{vertical-align:0.000000px;}
.v1_c01252{vertical-align:16.542000px;}
.v2_c01252{vertical-align:23.748000px;}
.ls2_c01252{letter-spacing:0.000000px;}
.ls1_c01252{letter-spacing:21.796182px;}
.ls0_c01252{letter-spacing:24.821580px;}
.sc__c01252{text-shadow:none;}
.sc0_c01252{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__c01252{-webkit-text-stroke:0px transparent;}
.sc0_c01252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c01252{word-spacing:-21.861636px;}
.ws0_c01252{word-spacing:-0.071730px;}
.ws7_c01252{word-spacing:-0.065454px;}
.ws1a_c01252{word-spacing:0.000000px;}
.ws13_c01252{word-spacing:16.428954px;}
.ws18_c01252{word-spacing:16.625316px;}
.ws4_c01252{word-spacing:18.719844px;}
.ws1_c01252{word-spacing:21.010734px;}
.wsb_c01252{word-spacing:21.468912px;}
.ws6_c01252{word-spacing:21.730728px;}
.ws2_c01252{word-spacing:21.796182px;}
.ws11_c01252{word-spacing:22.254360px;}
.ws17_c01252{word-spacing:22.516176px;}
.ws16_c01252{word-spacing:22.581630px;}
.ws3_c01252{word-spacing:23.759802px;}
.wsf_c01252{word-spacing:24.152526px;}
.ws9_c01252{word-spacing:24.217980px;}
.wsd_c01252{word-spacing:24.741612px;}
.ws10_c01252{word-spacing:25.068882px;}
.ws12_c01252{word-spacing:25.592514px;}
.wsc_c01252{word-spacing:27.752496px;}
.ws14_c01252{word-spacing:28.145220px;}
.ws15_c01252{word-spacing:28.996122px;}
.wse_c01252{word-spacing:30.043386px;}
.ws5_c01252{word-spacing:30.567018px;}
.ws19_c01252{word-spacing:31.352466px;}
.ws8_c01252{word-spacing:33.643356px;}
._2_c01252{margin-left:-32.727000px;}
._5_c01252{margin-left:-30.697926px;}
._4_c01252{margin-left:-25.461606px;}
._8_c01252{margin-left:-21.788382px;}
._3_c01252{margin-left:-7.330848px;}
._7_c01252{margin-left:-5.498136px;}
._9_c01252{margin-left:-3.534516px;}
._1_c01252{margin-left:-1.832712px;}
._0_c01252{width:1.767258px;}
._6_c01252{width:9.091500px;}
._a_c01252{width:30.684012px;}
.fc0_c01252{color:rgb(0,0,0);}
.fs2_c01252{font-size:47.820000px;}
.fs1_c01252{font-size:65.454000px;}
.fs0_c01252{font-size:71.730000px;}
.y0_c01252{bottom:0.000000px;}
.y27_c01252{bottom:86.658000px;}
.y26_c01252{bottom:129.813000px;}
.y25_c01252{bottom:155.035500px;}
.y24_c01252{bottom:180.256500px;}
.y23_c01252{bottom:205.479000px;}
.y22_c01252{bottom:230.700000px;}
.y21_c01252{bottom:255.922500px;}
.y20_c01252{bottom:281.143500px;}
.y1f_c01252{bottom:324.298500px;}
.y1e_c01252{bottom:349.519500px;}
.y1d_c01252{bottom:374.742000px;}
.y1c_c01252{bottom:399.963000px;}
.y1b_c01252{bottom:425.185500px;}
.y1a_c01252{bottom:450.406500px;}
.y19_c01252{bottom:475.629000px;}
.y18_c01252{bottom:500.850000px;}
.y17_c01252{bottom:526.072500px;}
.y16_c01252{bottom:551.293500px;}
.y15_c01252{bottom:576.516000px;}
.y14_c01252{bottom:601.737000px;}
.y13_c01252{bottom:644.892000px;}
.y12_c01252{bottom:670.114500px;}
.y11_c01252{bottom:695.335500px;}
.y10_c01252{bottom:720.558000px;}
.yf_c01252{bottom:745.779000px;}
.ye_c01252{bottom:771.001500px;}
.yd_c01252{bottom:796.222500px;}
.yc_c01252{bottom:821.445000px;}
.yb_c01252{bottom:846.666000px;}
.ya_c01252{bottom:871.888500px;}
.y9_c01252{bottom:897.109500px;}
.y8_c01252{bottom:922.332000px;}
.y7_c01252{bottom:947.553000px;}
.y6_c01252{bottom:972.775500px;}
.y5_c01252{bottom:997.996500px;}
.y4_c01252{bottom:1023.219000px;}
.y3_c01252{bottom:1048.440000px;}
.y2_c01252{bottom:1073.662500px;}
.y1_c01252{bottom:1140.615000px;}
.h3_c01252{height:49.090500px;}
.h2_c01252{height:53.797500px;}
.h5_c01252{height:56.074320px;}
.h6_c01252{height:56.080320px;}
.h4_c01252{height:65.632500px;}
.h7_c01252{height:65.638500px;}
.h1_c01252{height:1263.750000px;}
.h0_c01252{height:1264.110000px;}
.w0_c01252{width:893.869500px;}
.w1_c01252{width:894.000000px;}
.x0_c01252{left:0.000000px;}
.x3_c01252{left:127.558500px;}
.x2_c01252{left:159.838500px;}
.x7_c01252{left:198.997500px;}
.x4_c01252{left:253.929000px;}
.x6_c01252{left:442.900500px;}
.x8_c01252{left:477.300000px;}
.x5_c01252{left:728.128500px;}
.x1_c01252{left:739.972500px;}
@media print{
.v3_c01252{vertical-align:-21.109333pt;}
.v0_c01252{vertical-align:0.000000pt;}
.v1_c01252{vertical-align:14.704000pt;}
.v2_c01252{vertical-align:21.109333pt;}
.ls2_c01252{letter-spacing:0.000000pt;}
.ls1_c01252{letter-spacing:19.374384pt;}
.ls0_c01252{letter-spacing:22.063627pt;}
.wsa_c01252{word-spacing:-19.432565pt;}
.ws0_c01252{word-spacing:-0.063760pt;}
.ws7_c01252{word-spacing:-0.058181pt;}
.ws1a_c01252{word-spacing:0.000000pt;}
.ws13_c01252{word-spacing:14.603515pt;}
.ws18_c01252{word-spacing:14.778059pt;}
.ws4_c01252{word-spacing:16.639861pt;}
.ws1_c01252{word-spacing:18.676208pt;}
.wsb_c01252{word-spacing:19.083477pt;}
.ws6_c01252{word-spacing:19.316203pt;}
.ws2_c01252{word-spacing:19.374384pt;}
.ws11_c01252{word-spacing:19.781653pt;}
.ws17_c01252{word-spacing:20.014379pt;}
.ws16_c01252{word-spacing:20.072560pt;}
.ws3_c01252{word-spacing:21.119824pt;}
.wsf_c01252{word-spacing:21.468912pt;}
.ws9_c01252{word-spacing:21.527093pt;}
.wsd_c01252{word-spacing:21.992544pt;}
.ws10_c01252{word-spacing:22.283451pt;}
.ws12_c01252{word-spacing:22.748901pt;}
.wsc_c01252{word-spacing:24.668885pt;}
.ws14_c01252{word-spacing:25.017973pt;}
.ws15_c01252{word-spacing:25.774331pt;}
.wse_c01252{word-spacing:26.705232pt;}
.ws5_c01252{word-spacing:27.170683pt;}
.ws19_c01252{word-spacing:27.868859pt;}
.ws8_c01252{word-spacing:29.905205pt;}
._2_c01252{margin-left:-29.090667pt;}
._5_c01252{margin-left:-27.287045pt;}
._4_c01252{margin-left:-22.632539pt;}
._8_c01252{margin-left:-19.367451pt;}
._3_c01252{margin-left:-6.516309pt;}
._7_c01252{margin-left:-4.887232pt;}
._9_c01252{margin-left:-3.141792pt;}
._1_c01252{margin-left:-1.629077pt;}
._0_c01252{width:1.570896pt;}
._6_c01252{width:8.081333pt;}
._a_c01252{width:27.274677pt;}
.fs2_c01252{font-size:42.506667pt;}
.fs1_c01252{font-size:58.181333pt;}
.fs0_c01252{font-size:63.760000pt;}
.y0_c01252{bottom:0.000000pt;}
.y27_c01252{bottom:77.029333pt;}
.y26_c01252{bottom:115.389333pt;}
.y25_c01252{bottom:137.809333pt;}
.y24_c01252{bottom:160.228000pt;}
.y23_c01252{bottom:182.648000pt;}
.y22_c01252{bottom:205.066667pt;}
.y21_c01252{bottom:227.486667pt;}
.y20_c01252{bottom:249.905333pt;}
.y1f_c01252{bottom:288.265333pt;}
.y1e_c01252{bottom:310.684000pt;}
.y1d_c01252{bottom:333.104000pt;}
.y1c_c01252{bottom:355.522667pt;}
.y1b_c01252{bottom:377.942667pt;}
.y1a_c01252{bottom:400.361333pt;}
.y19_c01252{bottom:422.781333pt;}
.y18_c01252{bottom:445.200000pt;}
.y17_c01252{bottom:467.620000pt;}
.y16_c01252{bottom:490.038667pt;}
.y15_c01252{bottom:512.458667pt;}
.y14_c01252{bottom:534.877333pt;}
.y13_c01252{bottom:573.237333pt;}
.y12_c01252{bottom:595.657333pt;}
.y11_c01252{bottom:618.076000pt;}
.y10_c01252{bottom:640.496000pt;}
.yf_c01252{bottom:662.914667pt;}
.ye_c01252{bottom:685.334667pt;}
.yd_c01252{bottom:707.753333pt;}
.yc_c01252{bottom:730.173333pt;}
.yb_c01252{bottom:752.592000pt;}
.ya_c01252{bottom:775.012000pt;}
.y9_c01252{bottom:797.430667pt;}
.y8_c01252{bottom:819.850667pt;}
.y7_c01252{bottom:842.269333pt;}
.y6_c01252{bottom:864.689333pt;}
.y5_c01252{bottom:887.108000pt;}
.y4_c01252{bottom:909.528000pt;}
.y3_c01252{bottom:931.946667pt;}
.y2_c01252{bottom:954.366667pt;}
.y1_c01252{bottom:1013.880000pt;}
.h3_c01252{height:43.636000pt;}
.h2_c01252{height:47.820000pt;}
.h5_c01252{height:49.843840pt;}
.h6_c01252{height:49.849173pt;}
.h4_c01252{height:58.340000pt;}
.h7_c01252{height:58.345333pt;}
.h1_c01252{height:1123.333333pt;}
.h0_c01252{height:1123.653333pt;}
.w0_c01252{width:794.550667pt;}
.w1_c01252{width:794.666667pt;}
.x0_c01252{left:0.000000pt;}
.x3_c01252{left:113.385333pt;}
.x2_c01252{left:142.078667pt;}
.x7_c01252{left:176.886667pt;}
.x4_c01252{left:225.714667pt;}
.x6_c01252{left:393.689333pt;}
.x8_c01252{left:424.266667pt;}
.x5_c01252{left:647.225333pt;}
.x1_c01252{left:657.753333pt;}
}





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

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





.ff0_c01253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01253;src:url('chunks/assets/font_1d876e266e0590e9bc685806.woff2')format("woff");}.ff1_c01253{font-family:ff1_c01253;line-height:1.001000;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_c01253;src:url('chunks/assets/font_4fe225013890ded43569ca02.woff2')format("woff");}.ff2_c01253{font-family:ff2_c01253;line-height:1.000000;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_c01253;src:url('chunks/assets/font_83e36a55f84c95bd13c60adf.woff2')format("woff");}.ff3_c01253{font-family:ff3_c01253;line-height:0.697000;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_c01253{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_c01253{vertical-align:0.000000px;}
.v2_c01253{vertical-align:16.548000px;}
.v1_c01253{vertical-align:23.748000px;}
.ls1_c01253{letter-spacing:0.000000px;}
.ls0_c01253{letter-spacing:28.355580px;}
.sc__c01253{text-shadow:none;}
.sc0_c01253{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__c01253{-webkit-text-stroke:0px transparent;}
.sc0_c01253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01253{word-spacing:-0.071730px;}
.ws3_c01253{word-spacing:-0.065454px;}
.ws12_c01253{word-spacing:0.000000px;}
.ws5_c01253{word-spacing:15.970776px;}
.ws10_c01253{word-spacing:17.738034px;}
.ws1_c01253{word-spacing:18.785298px;}
.ws11_c01253{word-spacing:19.047114px;}
.ws2_c01253{word-spacing:21.730728px;}
.wsd_c01253{word-spacing:21.796182px;}
.wsc_c01253{word-spacing:22.385268px;}
.wsb_c01253{word-spacing:22.777992px;}
.ws7_c01253{word-spacing:23.039808px;}
.wsf_c01253{word-spacing:23.563440px;}
.wsa_c01253{word-spacing:24.545250px;}
.ws4_c01253{word-spacing:25.265244px;}
.ws9_c01253{word-spacing:29.127030px;}
.wse_c01253{word-spacing:30.959742px;}
.ws6_c01253{word-spacing:31.025196px;}
.ws8_c01253{word-spacing:35.083344px;}
._8_c01253{margin-left:-34.494258px;}
._1_c01253{margin-left:-32.727000px;}
._6_c01253{margin-left:-31.090650px;}
._5_c01253{margin-left:-25.461606px;}
._4_c01253{margin-left:-7.330848px;}
._3_c01253{margin-left:-5.432682px;}
._a_c01253{margin-left:-3.534516px;}
._2_c01253{margin-left:-1.767258px;}
._0_c01253{width:1.832712px;}
._b_c01253{width:22.057998px;}
._7_c01253{width:30.032424px;}
._9_c01253{width:31.271040px;}
.fc0_c01253{color:rgb(0,0,0);}
.fs2_c01253{font-size:47.820000px;}
.fs1_c01253{font-size:65.454000px;}
.fs0_c01253{font-size:71.730000px;}
.y0_c01253{bottom:0.000000px;}
.y28_c01253{bottom:97.302000px;}
.y27_c01253{bottom:122.524500px;}
.y26_c01253{bottom:147.745500px;}
.y25_c01253{bottom:172.968000px;}
.y24_c01253{bottom:198.189000px;}
.y23_c01253{bottom:223.411500px;}
.y22_c01253{bottom:248.632500px;}
.y21_c01253{bottom:273.855000px;}
.y20_c01253{bottom:299.076000px;}
.y1f_c01253{bottom:324.298500px;}
.y1e_c01253{bottom:349.519500px;}
.y1d_c01253{bottom:392.674500px;}
.y1c_c01253{bottom:417.895500px;}
.y1b_c01253{bottom:443.118000px;}
.y1a_c01253{bottom:468.339000px;}
.y19_c01253{bottom:493.561500px;}
.y18_c01253{bottom:518.782500px;}
.y17_c01253{bottom:544.005000px;}
.y16_c01253{bottom:569.226000px;}
.y15_c01253{bottom:594.448500px;}
.y14_c01253{bottom:619.671000px;}
.y13_c01253{bottom:644.892000px;}
.y12_c01253{bottom:670.114500px;}
.y11_c01253{bottom:695.335500px;}
.y10_c01253{bottom:720.558000px;}
.yf_c01253{bottom:745.779000px;}
.ye_c01253{bottom:771.001500px;}
.yd_c01253{bottom:796.222500px;}
.yc_c01253{bottom:821.445000px;}
.yb_c01253{bottom:846.666000px;}
.ya_c01253{bottom:871.888500px;}
.y9_c01253{bottom:897.109500px;}
.y8_c01253{bottom:922.332000px;}
.y7_c01253{bottom:947.553000px;}
.y6_c01253{bottom:972.775500px;}
.y5_c01253{bottom:997.996500px;}
.y4_c01253{bottom:1023.219000px;}
.y3_c01253{bottom:1048.440000px;}
.y2_c01253{bottom:1073.662500px;}
.y1_c01253{bottom:1140.615000px;}
.h3_c01253{height:49.090500px;}
.h2_c01253{height:53.797500px;}
.h4_c01253{height:56.074320px;}
.h5_c01253{height:65.638500px;}
.h1_c01253{height:1263.750000px;}
.h0_c01253{height:1264.110000px;}
.w0_c01253{width:893.869500px;}
.w1_c01253{width:894.000000px;}
.x0_c01253{left:0.000000px;}
.x3_c01253{left:127.558500px;}
.x2_c01253{left:159.838500px;}
.x5_c01253{left:251.356500px;}
.x4_c01253{left:254.383500px;}
.x1_c01253{left:739.972500px;}
@media print{
.v0_c01253{vertical-align:0.000000pt;}
.v2_c01253{vertical-align:14.709333pt;}
.v1_c01253{vertical-align:21.109333pt;}
.ls1_c01253{letter-spacing:0.000000pt;}
.ls0_c01253{letter-spacing:25.204960pt;}
.ws0_c01253{word-spacing:-0.063760pt;}
.ws3_c01253{word-spacing:-0.058181pt;}
.ws12_c01253{word-spacing:0.000000pt;}
.ws5_c01253{word-spacing:14.196245pt;}
.ws10_c01253{word-spacing:15.767141pt;}
.ws1_c01253{word-spacing:16.698043pt;}
.ws11_c01253{word-spacing:16.930768pt;}
.ws2_c01253{word-spacing:19.316203pt;}
.wsd_c01253{word-spacing:19.374384pt;}
.wsc_c01253{word-spacing:19.898016pt;}
.wsb_c01253{word-spacing:20.247104pt;}
.ws7_c01253{word-spacing:20.479829pt;}
.wsf_c01253{word-spacing:20.945280pt;}
.wsa_c01253{word-spacing:21.818000pt;}
.ws4_c01253{word-spacing:22.457995pt;}
.ws9_c01253{word-spacing:25.890693pt;}
.wse_c01253{word-spacing:27.519771pt;}
.ws6_c01253{word-spacing:27.577952pt;}
.ws8_c01253{word-spacing:31.185195pt;}
._8_c01253{margin-left:-30.661563pt;}
._1_c01253{margin-left:-29.090667pt;}
._6_c01253{margin-left:-27.636133pt;}
._5_c01253{margin-left:-22.632539pt;}
._4_c01253{margin-left:-6.516309pt;}
._3_c01253{margin-left:-4.829051pt;}
._a_c01253{margin-left:-3.141792pt;}
._2_c01253{margin-left:-1.570896pt;}
._0_c01253{width:1.629077pt;}
._b_c01253{width:19.607109pt;}
._7_c01253{width:26.695488pt;}
._9_c01253{width:27.796480pt;}
.fs2_c01253{font-size:42.506667pt;}
.fs1_c01253{font-size:58.181333pt;}
.fs0_c01253{font-size:63.760000pt;}
.y0_c01253{bottom:0.000000pt;}
.y28_c01253{bottom:86.490667pt;}
.y27_c01253{bottom:108.910667pt;}
.y26_c01253{bottom:131.329333pt;}
.y25_c01253{bottom:153.749333pt;}
.y24_c01253{bottom:176.168000pt;}
.y23_c01253{bottom:198.588000pt;}
.y22_c01253{bottom:221.006667pt;}
.y21_c01253{bottom:243.426667pt;}
.y20_c01253{bottom:265.845333pt;}
.y1f_c01253{bottom:288.265333pt;}
.y1e_c01253{bottom:310.684000pt;}
.y1d_c01253{bottom:349.044000pt;}
.y1c_c01253{bottom:371.462667pt;}
.y1b_c01253{bottom:393.882667pt;}
.y1a_c01253{bottom:416.301333pt;}
.y19_c01253{bottom:438.721333pt;}
.y18_c01253{bottom:461.140000pt;}
.y17_c01253{bottom:483.560000pt;}
.y16_c01253{bottom:505.978667pt;}
.y15_c01253{bottom:528.398667pt;}
.y14_c01253{bottom:550.818667pt;}
.y13_c01253{bottom:573.237333pt;}
.y12_c01253{bottom:595.657333pt;}
.y11_c01253{bottom:618.076000pt;}
.y10_c01253{bottom:640.496000pt;}
.yf_c01253{bottom:662.914667pt;}
.ye_c01253{bottom:685.334667pt;}
.yd_c01253{bottom:707.753333pt;}
.yc_c01253{bottom:730.173333pt;}
.yb_c01253{bottom:752.592000pt;}
.ya_c01253{bottom:775.012000pt;}
.y9_c01253{bottom:797.430667pt;}
.y8_c01253{bottom:819.850667pt;}
.y7_c01253{bottom:842.269333pt;}
.y6_c01253{bottom:864.689333pt;}
.y5_c01253{bottom:887.108000pt;}
.y4_c01253{bottom:909.528000pt;}
.y3_c01253{bottom:931.946667pt;}
.y2_c01253{bottom:954.366667pt;}
.y1_c01253{bottom:1013.880000pt;}
.h3_c01253{height:43.636000pt;}
.h2_c01253{height:47.820000pt;}
.h4_c01253{height:49.843840pt;}
.h5_c01253{height:58.345333pt;}
.h1_c01253{height:1123.333333pt;}
.h0_c01253{height:1123.653333pt;}
.w0_c01253{width:794.550667pt;}
.w1_c01253{width:794.666667pt;}
.x0_c01253{left:0.000000pt;}
.x3_c01253{left:113.385333pt;}
.x2_c01253{left:142.078667pt;}
.x5_c01253{left:223.428000pt;}
.x4_c01253{left:226.118667pt;}
.x1_c01253{left:657.753333pt;}
}





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

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





.ff0_c01254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01254;src:url('chunks/assets/font_831377dbb23cf17d8c6f4cb0.woff2')format("woff");}.ff1_c01254{font-family:ff1_c01254;line-height:1.001000;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_c01254;src:url('chunks/assets/font_97e12f170b866ed7b0b3c51e.woff2')format("woff");}.ff2_c01254{font-family:ff2_c01254;line-height:1.000000;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_c01254;src:url('chunks/assets/font_2cd56ac11c9899b19569f6a3.woff2')format("woff");}.ff3_c01254{font-family:ff3_c01254;line-height:0.697000;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_c01254{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_c01254{vertical-align:0.000000px;}
.v1_c01254{vertical-align:23.754000px;}
.ls2_c01254{letter-spacing:0.000000px;}
.ls1_c01254{letter-spacing:22.385580px;}
.ls0_c01254{letter-spacing:24.815580px;}
.sc__c01254{text-shadow:none;}
.sc0_c01254{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__c01254{-webkit-text-stroke:0px transparent;}
.sc0_c01254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01254{word-spacing:-0.071730px;}
.ws15_c01254{word-spacing:-0.065454px;}
.ws18_c01254{word-spacing:0.000000px;}
.ws13_c01254{word-spacing:14.465334px;}
.ws12_c01254{word-spacing:15.119874px;}
.ws6_c01254{word-spacing:15.381690px;}
.wsb_c01254{word-spacing:16.363500px;}
.ws1_c01254{word-spacing:17.279856px;}
.wsa_c01254{word-spacing:18.130758px;}
.wsd_c01254{word-spacing:18.327120px;}
.ws14_c01254{word-spacing:18.719844px;}
.ws7_c01254{word-spacing:19.308930px;}
.ws16_c01254{word-spacing:20.356194px;}
.ws11_c01254{word-spacing:20.748918px;}
.ws9_c01254{word-spacing:21.665274px;}
.ws3_c01254{word-spacing:21.730728px;}
.ws2_c01254{word-spacing:21.796182px;}
.ws17_c01254{word-spacing:22.057998px;}
.ws4_c01254{word-spacing:22.450722px;}
.wsf_c01254{word-spacing:22.908900px;}
.ws10_c01254{word-spacing:23.432532px;}
.ws5_c01254{word-spacing:23.825256px;}
.wsc_c01254{word-spacing:24.741612px;}
.ws8_c01254{word-spacing:31.941552px;}
.wse_c01254{word-spacing:35.148798px;}
._2_c01254{margin-left:-34.559712px;}
._0_c01254{margin-left:-32.596092px;}
._6_c01254{margin-left:-31.025196px;}
._a_c01254{margin-left:-25.396152px;}
._9_c01254{margin-left:-6.872670px;}
._5_c01254{margin-left:-5.563590px;}
._4_c01254{margin-left:-3.665424px;}
._3_c01254{margin-left:-1.898166px;}
._1_c01254{width:1.505442px;}
._b_c01254{width:3.599970px;}
._7_c01254{width:19.898016px;}
._8_c01254{width:24.021618px;}
.fc0_c01254{color:rgb(0,0,0);}
.fs2_c01254{font-size:47.820000px;}
.fs1_c01254{font-size:65.454000px;}
.fs0_c01254{font-size:71.730000px;}
.y0_c01254{bottom:0.000000px;}
.y26_c01254{bottom:76.015500px;}
.y25_c01254{bottom:101.236500px;}
.y24_c01254{bottom:126.459000px;}
.y23_c01254{bottom:151.680000px;}
.y22_c01254{bottom:176.902500px;}
.y21_c01254{bottom:202.123500px;}
.y20_c01254{bottom:227.346000px;}
.y1f_c01254{bottom:252.567000px;}
.y1e_c01254{bottom:295.722000px;}
.y1d_c01254{bottom:338.875500px;}
.y1c_c01254{bottom:364.098000px;}
.y1b_c01254{bottom:389.319000px;}
.y1a_c01254{bottom:414.541500px;}
.y19_c01254{bottom:439.764000px;}
.y18_c01254{bottom:464.985000px;}
.y17_c01254{bottom:490.207500px;}
.y16_c01254{bottom:515.428500px;}
.y15_c01254{bottom:540.651000px;}
.y14_c01254{bottom:565.872000px;}
.y13_c01254{bottom:591.094500px;}
.y12_c01254{bottom:634.248000px;}
.y11_c01254{bottom:659.470500px;}
.y10_c01254{bottom:684.691500px;}
.yf_c01254{bottom:709.914000px;}
.ye_c01254{bottom:735.135000px;}
.yd_c01254{bottom:760.357500px;}
.yc_c01254{bottom:803.511000px;}
.yb_c01254{bottom:828.733500px;}
.ya_c01254{bottom:853.954500px;}
.y9_c01254{bottom:879.177000px;}
.y8_c01254{bottom:904.398000px;}
.y7_c01254{bottom:929.620500px;}
.y6_c01254{bottom:954.841500px;}
.y5_c01254{bottom:980.064000px;}
.y4_c01254{bottom:1023.219000px;}
.y3_c01254{bottom:1048.440000px;}
.y2_c01254{bottom:1073.662500px;}
.y1_c01254{bottom:1140.615000px;}
.h3_c01254{height:49.090500px;}
.h2_c01254{height:53.797500px;}
.h5_c01254{height:56.074320px;}
.h4_c01254{height:56.080320px;}
.h1_c01254{height:1263.750000px;}
.h0_c01254{height:1264.110000px;}
.w0_c01254{width:893.869500px;}
.w1_c01254{width:894.000000px;}
.x0_c01254{left:0.000000px;}
.x3_c01254{left:127.558500px;}
.x2_c01254{left:159.838500px;}
.x1_c01254{left:739.972500px;}
@media print{
.v0_c01254{vertical-align:0.000000pt;}
.v1_c01254{vertical-align:21.114667pt;}
.ls2_c01254{letter-spacing:0.000000pt;}
.ls1_c01254{letter-spacing:19.898293pt;}
.ls0_c01254{letter-spacing:22.058293pt;}
.ws0_c01254{word-spacing:-0.063760pt;}
.ws15_c01254{word-spacing:-0.058181pt;}
.ws18_c01254{word-spacing:0.000000pt;}
.ws13_c01254{word-spacing:12.858075pt;}
.ws12_c01254{word-spacing:13.439888pt;}
.ws6_c01254{word-spacing:13.672613pt;}
.wsb_c01254{word-spacing:14.545333pt;}
.ws1_c01254{word-spacing:15.359872pt;}
.wsa_c01254{word-spacing:16.116229pt;}
.wsd_c01254{word-spacing:16.290773pt;}
.ws14_c01254{word-spacing:16.639861pt;}
.ws7_c01254{word-spacing:17.163493pt;}
.ws16_c01254{word-spacing:18.094395pt;}
.ws11_c01254{word-spacing:18.443483pt;}
.ws9_c01254{word-spacing:19.258021pt;}
.ws3_c01254{word-spacing:19.316203pt;}
.ws2_c01254{word-spacing:19.374384pt;}
.ws17_c01254{word-spacing:19.607109pt;}
.ws4_c01254{word-spacing:19.956197pt;}
.wsf_c01254{word-spacing:20.363467pt;}
.ws10_c01254{word-spacing:20.828917pt;}
.ws5_c01254{word-spacing:21.178005pt;}
.wsc_c01254{word-spacing:21.992544pt;}
.ws8_c01254{word-spacing:28.392491pt;}
.wse_c01254{word-spacing:31.243376pt;}
._2_c01254{margin-left:-30.719744pt;}
._0_c01254{margin-left:-28.974304pt;}
._6_c01254{margin-left:-27.577952pt;}
._a_c01254{margin-left:-22.574357pt;}
._9_c01254{margin-left:-6.109040pt;}
._5_c01254{margin-left:-4.945413pt;}
._4_c01254{margin-left:-3.258155pt;}
._3_c01254{margin-left:-1.687259pt;}
._1_c01254{width:1.338171pt;}
._b_c01254{width:3.199973pt;}
._7_c01254{width:17.687125pt;}
._8_c01254{width:21.352549pt;}
.fs2_c01254{font-size:42.506667pt;}
.fs1_c01254{font-size:58.181333pt;}
.fs0_c01254{font-size:63.760000pt;}
.y0_c01254{bottom:0.000000pt;}
.y26_c01254{bottom:67.569333pt;}
.y25_c01254{bottom:89.988000pt;}
.y24_c01254{bottom:112.408000pt;}
.y23_c01254{bottom:134.826667pt;}
.y22_c01254{bottom:157.246667pt;}
.y21_c01254{bottom:179.665333pt;}
.y20_c01254{bottom:202.085333pt;}
.y1f_c01254{bottom:224.504000pt;}
.y1e_c01254{bottom:262.864000pt;}
.y1d_c01254{bottom:301.222667pt;}
.y1c_c01254{bottom:323.642667pt;}
.y1b_c01254{bottom:346.061333pt;}
.y1a_c01254{bottom:368.481333pt;}
.y19_c01254{bottom:390.901333pt;}
.y18_c01254{bottom:413.320000pt;}
.y17_c01254{bottom:435.740000pt;}
.y16_c01254{bottom:458.158667pt;}
.y15_c01254{bottom:480.578667pt;}
.y14_c01254{bottom:502.997333pt;}
.y13_c01254{bottom:525.417333pt;}
.y12_c01254{bottom:563.776000pt;}
.y11_c01254{bottom:586.196000pt;}
.y10_c01254{bottom:608.614667pt;}
.yf_c01254{bottom:631.034667pt;}
.ye_c01254{bottom:653.453333pt;}
.yd_c01254{bottom:675.873333pt;}
.yc_c01254{bottom:714.232000pt;}
.yb_c01254{bottom:736.652000pt;}
.ya_c01254{bottom:759.070667pt;}
.y9_c01254{bottom:781.490667pt;}
.y8_c01254{bottom:803.909333pt;}
.y7_c01254{bottom:826.329333pt;}
.y6_c01254{bottom:848.748000pt;}
.y5_c01254{bottom:871.168000pt;}
.y4_c01254{bottom:909.528000pt;}
.y3_c01254{bottom:931.946667pt;}
.y2_c01254{bottom:954.366667pt;}
.y1_c01254{bottom:1013.880000pt;}
.h3_c01254{height:43.636000pt;}
.h2_c01254{height:47.820000pt;}
.h5_c01254{height:49.843840pt;}
.h4_c01254{height:49.849173pt;}
.h1_c01254{height:1123.333333pt;}
.h0_c01254{height:1123.653333pt;}
.w0_c01254{width:794.550667pt;}
.w1_c01254{width:794.666667pt;}
.x0_c01254{left:0.000000pt;}
.x3_c01254{left:113.385333pt;}
.x2_c01254{left:142.078667pt;}
.x1_c01254{left:657.753333pt;}
}





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

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





.ff0_c01255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01255;src:url('chunks/assets/font_58f64e7335a08a80cadf5f8b.woff2')format("woff");}.ff1_c01255{font-family:ff1_c01255;line-height:1.001000;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_c01255;src:url('chunks/assets/font_9172f49b41acd8bed512b05d.woff2')format("woff");}.ff2_c01255{font-family:ff2_c01255;line-height:1.000000;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_c01255{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_c01255{vertical-align:0.000000px;}
.v1_c01255{vertical-align:16.548000px;}
.ls0_c01255{letter-spacing:0.000000px;}
.sc__c01255{text-shadow:none;}
.sc0_c01255{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__c01255{-webkit-text-stroke:0px transparent;}
.sc0_c01255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01255{word-spacing:-0.071730px;}
.ws5_c01255{word-spacing:-0.065454px;}
.ws16_c01255{word-spacing:0.000000px;}
.ws6_c01255{word-spacing:17.868942px;}
.ws11_c01255{word-spacing:18.719844px;}
.ws3_c01255{word-spacing:20.094378px;}
.ws15_c01255{word-spacing:20.879826px;}
.ws10_c01255{word-spacing:21.338004px;}
.ws2_c01255{word-spacing:21.730728px;}
.ws8_c01255{word-spacing:21.796182px;}
.wse_c01255{word-spacing:21.992544px;}
.ws4_c01255{word-spacing:22.450722px;}
.ws1_c01255{word-spacing:22.712538px;}
.wsa_c01255{word-spacing:22.843446px;}
.ws9_c01255{word-spacing:23.628894px;}
.wsf_c01255{word-spacing:24.676158px;}
.ws7_c01255{word-spacing:25.592514px;}
.ws13_c01255{word-spacing:26.508870px;}
.ws14_c01255{word-spacing:27.490680px;}
.wsd_c01255{word-spacing:28.079766px;}
.ws12_c01255{word-spacing:29.716116px;}
.wsc_c01255{word-spacing:29.781570px;}
.wsb_c01255{word-spacing:31.287012px;}
._5_c01255{margin-left:-34.756074px;}
._3_c01255{margin-left:-32.727000px;}
._4_c01255{margin-left:-30.828834px;}
._7_c01255{margin-left:-25.461606px;}
._6_c01255{margin-left:-7.330848px;}
._2_c01255{margin-left:-3.599970px;}
._0_c01255{margin-left:-1.898166px;}
._1_c01255{width:1.832712px;}
._8_c01255{width:9.046758px;}
.fc0_c01255{color:rgb(0,0,0);}
.fs1_c01255{font-size:65.454000px;}
.fs0_c01255{font-size:71.730000px;}
.y0_c01255{bottom:0.000000px;}
.y27_c01255{bottom:71.973000px;}
.y26_c01255{bottom:97.194000px;}
.y25_c01255{bottom:122.416500px;}
.y24_c01255{bottom:147.637500px;}
.y23_c01255{bottom:172.860000px;}
.y22_c01255{bottom:198.081000px;}
.y21_c01255{bottom:223.303500px;}
.y20_c01255{bottom:248.524500px;}
.y1f_c01255{bottom:290.868000px;}
.y1e_c01255{bottom:316.089000px;}
.y1d_c01255{bottom:341.311500px;}
.y1c_c01255{bottom:366.532500px;}
.y1b_c01255{bottom:391.755000px;}
.y1a_c01255{bottom:416.976000px;}
.y19_c01255{bottom:442.198500px;}
.y18_c01255{bottom:484.540500px;}
.y17_c01255{bottom:509.763000px;}
.y16_c01255{bottom:534.984000px;}
.y15_c01255{bottom:560.206500px;}
.y14_c01255{bottom:585.427500px;}
.y13_c01255{bottom:610.650000px;}
.y12_c01255{bottom:652.993500px;}
.y11_c01255{bottom:678.214500px;}
.y10_c01255{bottom:703.437000px;}
.yf_c01255{bottom:728.658000px;}
.ye_c01255{bottom:753.880500px;}
.yd_c01255{bottom:779.101500px;}
.yc_c01255{bottom:804.324000px;}
.yb_c01255{bottom:829.545000px;}
.ya_c01255{bottom:871.888500px;}
.y9_c01255{bottom:897.109500px;}
.y8_c01255{bottom:922.332000px;}
.y7_c01255{bottom:947.553000px;}
.y6_c01255{bottom:972.775500px;}
.y5_c01255{bottom:997.996500px;}
.y4_c01255{bottom:1023.219000px;}
.y3_c01255{bottom:1048.440000px;}
.y2_c01255{bottom:1073.662500px;}
.y1_c01255{bottom:1140.615000px;}
.h3_c01255{height:49.090500px;}
.h2_c01255{height:53.797500px;}
.h4_c01255{height:65.638500px;}
.h1_c01255{height:1263.750000px;}
.h0_c01255{height:1264.110000px;}
.w0_c01255{width:893.869500px;}
.w1_c01255{width:894.000000px;}
.x0_c01255{left:0.000000px;}
.x3_c01255{left:127.558500px;}
.x2_c01255{left:159.838500px;}
.x4_c01255{left:384.384000px;}
.x1_c01255{left:739.972500px;}
@media print{
.v0_c01255{vertical-align:0.000000pt;}
.v1_c01255{vertical-align:14.709333pt;}
.ls0_c01255{letter-spacing:0.000000pt;}
.ws0_c01255{word-spacing:-0.063760pt;}
.ws5_c01255{word-spacing:-0.058181pt;}
.ws16_c01255{word-spacing:0.000000pt;}
.ws6_c01255{word-spacing:15.883504pt;}
.ws11_c01255{word-spacing:16.639861pt;}
.ws3_c01255{word-spacing:17.861669pt;}
.ws15_c01255{word-spacing:18.559845pt;}
.ws10_c01255{word-spacing:18.967115pt;}
.ws2_c01255{word-spacing:19.316203pt;}
.ws8_c01255{word-spacing:19.374384pt;}
.wse_c01255{word-spacing:19.548928pt;}
.ws4_c01255{word-spacing:19.956197pt;}
.ws1_c01255{word-spacing:20.188923pt;}
.wsa_c01255{word-spacing:20.305285pt;}
.ws9_c01255{word-spacing:21.003461pt;}
.wsf_c01255{word-spacing:21.934363pt;}
.ws7_c01255{word-spacing:22.748901pt;}
.ws13_c01255{word-spacing:23.563440pt;}
.ws14_c01255{word-spacing:24.436160pt;}
.wsd_c01255{word-spacing:24.959792pt;}
.ws12_c01255{word-spacing:26.414325pt;}
.wsc_c01255{word-spacing:26.472507pt;}
.wsb_c01255{word-spacing:27.810677pt;}
._5_c01255{margin-left:-30.894288pt;}
._3_c01255{margin-left:-29.090667pt;}
._4_c01255{margin-left:-27.403408pt;}
._7_c01255{margin-left:-22.632539pt;}
._6_c01255{margin-left:-6.516309pt;}
._2_c01255{margin-left:-3.199973pt;}
._0_c01255{margin-left:-1.687259pt;}
._1_c01255{width:1.629077pt;}
._8_c01255{width:8.041563pt;}
.fs1_c01255{font-size:58.181333pt;}
.fs0_c01255{font-size:63.760000pt;}
.y0_c01255{bottom:0.000000pt;}
.y27_c01255{bottom:63.976000pt;}
.y26_c01255{bottom:86.394667pt;}
.y25_c01255{bottom:108.814667pt;}
.y24_c01255{bottom:131.233333pt;}
.y23_c01255{bottom:153.653333pt;}
.y22_c01255{bottom:176.072000pt;}
.y21_c01255{bottom:198.492000pt;}
.y20_c01255{bottom:220.910667pt;}
.y1f_c01255{bottom:258.549333pt;}
.y1e_c01255{bottom:280.968000pt;}
.y1d_c01255{bottom:303.388000pt;}
.y1c_c01255{bottom:325.806667pt;}
.y1b_c01255{bottom:348.226667pt;}
.y1a_c01255{bottom:370.645333pt;}
.y19_c01255{bottom:393.065333pt;}
.y18_c01255{bottom:430.702667pt;}
.y17_c01255{bottom:453.122667pt;}
.y16_c01255{bottom:475.541333pt;}
.y15_c01255{bottom:497.961333pt;}
.y14_c01255{bottom:520.380000pt;}
.y13_c01255{bottom:542.800000pt;}
.y12_c01255{bottom:580.438667pt;}
.y11_c01255{bottom:602.857333pt;}
.y10_c01255{bottom:625.277333pt;}
.yf_c01255{bottom:647.696000pt;}
.ye_c01255{bottom:670.116000pt;}
.yd_c01255{bottom:692.534667pt;}
.yc_c01255{bottom:714.954667pt;}
.yb_c01255{bottom:737.373333pt;}
.ya_c01255{bottom:775.012000pt;}
.y9_c01255{bottom:797.430667pt;}
.y8_c01255{bottom:819.850667pt;}
.y7_c01255{bottom:842.269333pt;}
.y6_c01255{bottom:864.689333pt;}
.y5_c01255{bottom:887.108000pt;}
.y4_c01255{bottom:909.528000pt;}
.y3_c01255{bottom:931.946667pt;}
.y2_c01255{bottom:954.366667pt;}
.y1_c01255{bottom:1013.880000pt;}
.h3_c01255{height:43.636000pt;}
.h2_c01255{height:47.820000pt;}
.h4_c01255{height:58.345333pt;}
.h1_c01255{height:1123.333333pt;}
.h0_c01255{height:1123.653333pt;}
.w0_c01255{width:794.550667pt;}
.w1_c01255{width:794.666667pt;}
.x0_c01255{left:0.000000pt;}
.x3_c01255{left:113.385333pt;}
.x2_c01255{left:142.078667pt;}
.x4_c01255{left:341.674667pt;}
.x1_c01255{left:657.753333pt;}
}





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

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





.ff0_c01256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01256;src:url('chunks/assets/font_bd10c4a38deb5c434854b577.woff2')format("woff");}.ff1_c01256{font-family:ff1_c01256;line-height:1.001000;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_c01256;src:url('chunks/assets/font_b880200a7227d252458e90f8.woff2')format("woff");}.ff2_c01256{font-family:ff2_c01256;line-height:1.000000;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_c01256;src:url('chunks/assets/font_7c90ea59989f5b6b94beb338.woff2')format("woff");}.ff3_c01256{font-family:ff3_c01256;line-height:0.697000;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_c01256{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_c01256{vertical-align:0.000000px;}
.v1_c01256{vertical-align:16.548000px;}
.v2_c01256{vertical-align:23.754000px;}
.ls1_c01256{letter-spacing:0.000000px;}
.ls0_c01256{letter-spacing:31.547580px;}
.sc__c01256{text-shadow:none;}
.sc0_c01256{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__c01256{-webkit-text-stroke:0px transparent;}
.sc0_c01256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01256{word-spacing:-0.071730px;}
.wsd_c01256{word-spacing:-0.065454px;}
.ws15_c01256{word-spacing:0.000000px;}
.ws9_c01256{word-spacing:16.298046px;}
.wsa_c01256{word-spacing:17.672580px;}
.ws12_c01256{word-spacing:18.654390px;}
.ws3_c01256{word-spacing:18.850752px;}
.ws8_c01256{word-spacing:19.178022px;}
.ws5_c01256{word-spacing:19.439838px;}
.ws2_c01256{word-spacing:21.730728px;}
.ws6_c01256{word-spacing:21.796182px;}
.ws4_c01256{word-spacing:22.581630px;}
.ws14_c01256{word-spacing:23.694348px;}
.ws1_c01256{word-spacing:24.807066px;}
.ws10_c01256{word-spacing:26.116146px;}
.ws13_c01256{word-spacing:26.901594px;}
.ws7_c01256{word-spacing:27.883404px;}
.wsb_c01256{word-spacing:27.948858px;}
.wsf_c01256{word-spacing:28.472490px;}
.ws11_c01256{word-spacing:28.865214px;}
.wse_c01256{word-spacing:28.930668px;}
.wsc_c01256{word-spacing:32.596092px;}
._8_c01256{margin-left:-34.297896px;}
._0_c01256{margin-left:-32.792454px;}
._5_c01256{margin-left:-25.396152px;}
._4_c01256{margin-left:-7.330848px;}
._7_c01256{margin-left:-5.105412px;}
._2_c01256{margin-left:-3.665424px;}
._1_c01256{margin-left:-1.832712px;}
._6_c01256{width:1.767258px;}
._3_c01256{width:3.338154px;}
._9_c01256{width:9.027546px;}
.fc0_c01256{color:rgb(0,0,0);}
.fs2_c01256{font-size:47.820000px;}
.fs1_c01256{font-size:65.454000px;}
.fs0_c01256{font-size:71.730000px;}
.y0_c01256{bottom:0.000000px;}
.y24_c01256{bottom:90.592500px;}
.y23_c01256{bottom:133.747500px;}
.y22_c01256{bottom:158.968500px;}
.y21_c01256{bottom:184.191000px;}
.y20_c01256{bottom:209.412000px;}
.y1f_c01256{bottom:234.634500px;}
.y1e_c01256{bottom:259.855500px;}
.y1d_c01256{bottom:303.010500px;}
.y1c_c01256{bottom:328.233000px;}
.y1b_c01256{bottom:371.386500px;}
.y1a_c01256{bottom:396.609000px;}
.y19_c01256{bottom:421.830000px;}
.y18_c01256{bottom:447.052500px;}
.y17_c01256{bottom:472.273500px;}
.y16_c01256{bottom:515.428500px;}
.y15_c01256{bottom:540.649500px;}
.y14_c01256{bottom:565.872000px;}
.y13_c01256{bottom:591.094500px;}
.y12_c01256{bottom:616.315500px;}
.y11_c01256{bottom:641.538000px;}
.y10_c01256{bottom:666.759000px;}
.yf_c01256{bottom:691.981500px;}
.ye_c01256{bottom:717.202500px;}
.yd_c01256{bottom:760.357500px;}
.yc_c01256{bottom:785.578500px;}
.yb_c01256{bottom:810.801000px;}
.ya_c01256{bottom:853.954500px;}
.y9_c01256{bottom:879.177000px;}
.y8_c01256{bottom:904.398000px;}
.y7_c01256{bottom:947.553000px;}
.y6_c01256{bottom:972.775500px;}
.y5_c01256{bottom:997.996500px;}
.y4_c01256{bottom:1023.219000px;}
.y3_c01256{bottom:1048.440000px;}
.y2_c01256{bottom:1073.662500px;}
.y1_c01256{bottom:1140.615000px;}
.h3_c01256{height:49.090500px;}
.h2_c01256{height:53.797500px;}
.h5_c01256{height:56.080320px;}
.h4_c01256{height:65.638500px;}
.h1_c01256{height:1263.750000px;}
.h0_c01256{height:1264.110000px;}
.w0_c01256{width:893.869500px;}
.w1_c01256{width:894.000000px;}
.x0_c01256{left:0.000000px;}
.x3_c01256{left:127.558500px;}
.x2_c01256{left:159.838500px;}
.x4_c01256{left:266.202000px;}
.x1_c01256{left:739.972500px;}
@media print{
.v0_c01256{vertical-align:0.000000pt;}
.v1_c01256{vertical-align:14.709333pt;}
.v2_c01256{vertical-align:21.114667pt;}
.ls1_c01256{letter-spacing:0.000000pt;}
.ls0_c01256{letter-spacing:28.042293pt;}
.ws0_c01256{word-spacing:-0.063760pt;}
.wsd_c01256{word-spacing:-0.058181pt;}
.ws15_c01256{word-spacing:0.000000pt;}
.ws9_c01256{word-spacing:14.487152pt;}
.wsa_c01256{word-spacing:15.708960pt;}
.ws12_c01256{word-spacing:16.581680pt;}
.ws3_c01256{word-spacing:16.756224pt;}
.ws8_c01256{word-spacing:17.047131pt;}
.ws5_c01256{word-spacing:17.279856pt;}
.ws2_c01256{word-spacing:19.316203pt;}
.ws6_c01256{word-spacing:19.374384pt;}
.ws4_c01256{word-spacing:20.072560pt;}
.ws14_c01256{word-spacing:21.061643pt;}
.ws1_c01256{word-spacing:22.050725pt;}
.ws10_c01256{word-spacing:23.214352pt;}
.ws13_c01256{word-spacing:23.912528pt;}
.ws7_c01256{word-spacing:24.785248pt;}
.wsb_c01256{word-spacing:24.843429pt;}
.wsf_c01256{word-spacing:25.308880pt;}
.ws11_c01256{word-spacing:25.657968pt;}
.wse_c01256{word-spacing:25.716149pt;}
.wsc_c01256{word-spacing:28.974304pt;}
._8_c01256{margin-left:-30.487019pt;}
._0_c01256{margin-left:-29.148848pt;}
._5_c01256{margin-left:-22.574357pt;}
._4_c01256{margin-left:-6.516309pt;}
._7_c01256{margin-left:-4.538144pt;}
._2_c01256{margin-left:-3.258155pt;}
._1_c01256{margin-left:-1.629077pt;}
._6_c01256{width:1.570896pt;}
._3_c01256{width:2.967248pt;}
._9_c01256{width:8.024485pt;}
.fs2_c01256{font-size:42.506667pt;}
.fs1_c01256{font-size:58.181333pt;}
.fs0_c01256{font-size:63.760000pt;}
.y0_c01256{bottom:0.000000pt;}
.y24_c01256{bottom:80.526667pt;}
.y23_c01256{bottom:118.886667pt;}
.y22_c01256{bottom:141.305333pt;}
.y21_c01256{bottom:163.725333pt;}
.y20_c01256{bottom:186.144000pt;}
.y1f_c01256{bottom:208.564000pt;}
.y1e_c01256{bottom:230.982667pt;}
.y1d_c01256{bottom:269.342667pt;}
.y1c_c01256{bottom:291.762667pt;}
.y1b_c01256{bottom:330.121333pt;}
.y1a_c01256{bottom:352.541333pt;}
.y19_c01256{bottom:374.960000pt;}
.y18_c01256{bottom:397.380000pt;}
.y17_c01256{bottom:419.798667pt;}
.y16_c01256{bottom:458.158667pt;}
.y15_c01256{bottom:480.577333pt;}
.y14_c01256{bottom:502.997333pt;}
.y13_c01256{bottom:525.417333pt;}
.y12_c01256{bottom:547.836000pt;}
.y11_c01256{bottom:570.256000pt;}
.y10_c01256{bottom:592.674667pt;}
.yf_c01256{bottom:615.094667pt;}
.ye_c01256{bottom:637.513333pt;}
.yd_c01256{bottom:675.873333pt;}
.yc_c01256{bottom:698.292000pt;}
.yb_c01256{bottom:720.712000pt;}
.ya_c01256{bottom:759.070667pt;}
.y9_c01256{bottom:781.490667pt;}
.y8_c01256{bottom:803.909333pt;}
.y7_c01256{bottom:842.269333pt;}
.y6_c01256{bottom:864.689333pt;}
.y5_c01256{bottom:887.108000pt;}
.y4_c01256{bottom:909.528000pt;}
.y3_c01256{bottom:931.946667pt;}
.y2_c01256{bottom:954.366667pt;}
.y1_c01256{bottom:1013.880000pt;}
.h3_c01256{height:43.636000pt;}
.h2_c01256{height:47.820000pt;}
.h5_c01256{height:49.849173pt;}
.h4_c01256{height:58.345333pt;}
.h1_c01256{height:1123.333333pt;}
.h0_c01256{height:1123.653333pt;}
.w0_c01256{width:794.550667pt;}
.w1_c01256{width:794.666667pt;}
.x0_c01256{left:0.000000pt;}
.x3_c01256{left:113.385333pt;}
.x2_c01256{left:142.078667pt;}
.x4_c01256{left:236.624000pt;}
.x1_c01256{left:657.753333pt;}
}





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

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





.ff0_c01257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01257;src:url('chunks/assets/font_b1b8233d31a8bf7b1916b721.woff2')format("woff");}.ff1_c01257{font-family:ff1_c01257;line-height:1.001000;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_c01257;src:url('chunks/assets/font_9319ec380a1fd18c281f6cd7.woff2')format("woff");}.ff2_c01257{font-family:ff2_c01257;line-height:1.000000;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_c01257{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_c01257{vertical-align:0.000000px;}
.v1_c01257{vertical-align:16.548000px;}
.ls0_c01257{letter-spacing:0.000000px;}
.sc__c01257{text-shadow:none;}
.sc0_c01257{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__c01257{-webkit-text-stroke:0px transparent;}
.sc0_c01257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01257{word-spacing:-0.071730px;}
.ws1e_c01257{word-spacing:0.000000px;}
.ws17_c01257{word-spacing:15.839868px;}
.ws18_c01257{word-spacing:17.148948px;}
.ws15_c01257{word-spacing:17.279856px;}
.ws1d_c01257{word-spacing:18.785298px;}
.ws1b_c01257{word-spacing:18.916206px;}
.ws1c_c01257{word-spacing:19.636200px;}
.wsb_c01257{word-spacing:19.832562px;}
.ws12_c01257{word-spacing:21.076188px;}
.ws19_c01257{word-spacing:21.207096px;}
.wsd_c01257{word-spacing:21.468912px;}
.wsf_c01257{word-spacing:21.730728px;}
.ws2_c01257{word-spacing:21.796182px;}
.ws1_c01257{word-spacing:22.908900px;}
.ws4_c01257{word-spacing:23.694348px;}
.wse_c01257{word-spacing:24.676158px;}
.ws6_c01257{word-spacing:24.741612px;}
.ws13_c01257{word-spacing:25.003428px;}
.ws7_c01257{word-spacing:25.134336px;}
.ws3_c01257{word-spacing:25.527060px;}
.ws9_c01257{word-spacing:25.919784px;}
.wsa_c01257{word-spacing:26.247054px;}
.ws10_c01257{word-spacing:27.032502px;}
.ws8_c01257{word-spacing:27.556134px;}
.ws11_c01257{word-spacing:27.687042px;}
.ws16_c01257{word-spacing:28.799760px;}
.wsc_c01257{word-spacing:28.930668px;}
.ws14_c01257{word-spacing:30.108840px;}
.ws1a_c01257{word-spacing:30.763380px;}
.ws5_c01257{word-spacing:31.352466px;}
._4_c01257{margin-left:-34.625166px;}
._2_c01257{margin-left:-32.792454px;}
._a_c01257{margin-left:-30.959742px;}
._6_c01257{margin-left:-25.461606px;}
._5_c01257{margin-left:-7.199940px;}
._7_c01257{margin-left:-5.432682px;}
._1_c01257{margin-left:-3.599970px;}
._0_c01257{margin-left:-1.767258px;}
._3_c01257{width:1.832712px;}
._8_c01257{width:3.599970px;}
._c_c01257{width:9.016584px;}
._b_c01257{width:10.145370px;}
._9_c01257{width:19.898016px;}
.fc0_c01257{color:rgb(0,0,0);}
.fs1_c01257{font-size:65.454000px;}
.fs0_c01257{font-size:71.730000px;}
.y0_c01257{bottom:0.000000px;}
.y27_c01257{bottom:71.973000px;}
.y26_c01257{bottom:97.194000px;}
.y25_c01257{bottom:139.537500px;}
.y24_c01257{bottom:181.879500px;}
.y23_c01257{bottom:207.102000px;}
.y22_c01257{bottom:232.323000px;}
.y21_c01257{bottom:257.545500px;}
.y20_c01257{bottom:299.887500px;}
.y1f_c01257{bottom:325.110000px;}
.y1e_c01257{bottom:350.331000px;}
.y1d_c01257{bottom:375.553500px;}
.y1c_c01257{bottom:400.774500px;}
.y1b_c01257{bottom:443.118000px;}
.y1a_c01257{bottom:468.339000px;}
.y19_c01257{bottom:493.561500px;}
.y18_c01257{bottom:518.782500px;}
.y17_c01257{bottom:544.005000px;}
.y16_c01257{bottom:569.226000px;}
.y15_c01257{bottom:594.448500px;}
.y14_c01257{bottom:619.671000px;}
.y13_c01257{bottom:644.892000px;}
.y12_c01257{bottom:670.114500px;}
.y11_c01257{bottom:695.335500px;}
.y10_c01257{bottom:720.558000px;}
.yf_c01257{bottom:745.779000px;}
.ye_c01257{bottom:771.001500px;}
.yd_c01257{bottom:796.222500px;}
.yc_c01257{bottom:821.445000px;}
.yb_c01257{bottom:846.666000px;}
.ya_c01257{bottom:871.888500px;}
.y9_c01257{bottom:897.109500px;}
.y8_c01257{bottom:922.332000px;}
.y7_c01257{bottom:947.553000px;}
.y6_c01257{bottom:972.775500px;}
.y5_c01257{bottom:997.996500px;}
.y4_c01257{bottom:1023.219000px;}
.y3_c01257{bottom:1048.440000px;}
.y2_c01257{bottom:1073.662500px;}
.y1_c01257{bottom:1140.615000px;}
.h3_c01257{height:49.090500px;}
.h2_c01257{height:53.797500px;}
.h4_c01257{height:65.638500px;}
.h1_c01257{height:1263.750000px;}
.h0_c01257{height:1264.110000px;}
.w0_c01257{width:893.869500px;}
.w1_c01257{width:894.000000px;}
.x0_c01257{left:0.000000px;}
.x3_c01257{left:127.558500px;}
.x2_c01257{left:159.838500px;}
.x4_c01257{left:313.701000px;}
.x1_c01257{left:739.972500px;}
@media print{
.v0_c01257{vertical-align:0.000000pt;}
.v1_c01257{vertical-align:14.709333pt;}
.ls0_c01257{letter-spacing:0.000000pt;}
.ws0_c01257{word-spacing:-0.063760pt;}
.ws1e_c01257{word-spacing:0.000000pt;}
.ws17_c01257{word-spacing:14.079883pt;}
.ws18_c01257{word-spacing:15.243509pt;}
.ws15_c01257{word-spacing:15.359872pt;}
.ws1d_c01257{word-spacing:16.698043pt;}
.ws1b_c01257{word-spacing:16.814405pt;}
.ws1c_c01257{word-spacing:17.454400pt;}
.wsb_c01257{word-spacing:17.628944pt;}
.ws12_c01257{word-spacing:18.734389pt;}
.ws19_c01257{word-spacing:18.850752pt;}
.wsd_c01257{word-spacing:19.083477pt;}
.wsf_c01257{word-spacing:19.316203pt;}
.ws2_c01257{word-spacing:19.374384pt;}
.ws1_c01257{word-spacing:20.363467pt;}
.ws4_c01257{word-spacing:21.061643pt;}
.wse_c01257{word-spacing:21.934363pt;}
.ws6_c01257{word-spacing:21.992544pt;}
.ws13_c01257{word-spacing:22.225269pt;}
.ws7_c01257{word-spacing:22.341632pt;}
.ws3_c01257{word-spacing:22.690720pt;}
.ws9_c01257{word-spacing:23.039808pt;}
.wsa_c01257{word-spacing:23.330715pt;}
.ws10_c01257{word-spacing:24.028891pt;}
.ws8_c01257{word-spacing:24.494341pt;}
.ws11_c01257{word-spacing:24.610704pt;}
.ws16_c01257{word-spacing:25.599787pt;}
.wsc_c01257{word-spacing:25.716149pt;}
.ws14_c01257{word-spacing:26.763413pt;}
.ws1a_c01257{word-spacing:27.345227pt;}
.ws5_c01257{word-spacing:27.868859pt;}
._4_c01257{margin-left:-30.777925pt;}
._2_c01257{margin-left:-29.148848pt;}
._a_c01257{margin-left:-27.519771pt;}
._6_c01257{margin-left:-22.632539pt;}
._5_c01257{margin-left:-6.399947pt;}
._7_c01257{margin-left:-4.829051pt;}
._1_c01257{margin-left:-3.199973pt;}
._0_c01257{margin-left:-1.570896pt;}
._3_c01257{width:1.629077pt;}
._8_c01257{width:3.199973pt;}
._c_c01257{width:8.014741pt;}
._b_c01257{width:9.018107pt;}
._9_c01257{width:17.687125pt;}
.fs1_c01257{font-size:58.181333pt;}
.fs0_c01257{font-size:63.760000pt;}
.y0_c01257{bottom:0.000000pt;}
.y27_c01257{bottom:63.976000pt;}
.y26_c01257{bottom:86.394667pt;}
.y25_c01257{bottom:124.033333pt;}
.y24_c01257{bottom:161.670667pt;}
.y23_c01257{bottom:184.090667pt;}
.y22_c01257{bottom:206.509333pt;}
.y21_c01257{bottom:228.929333pt;}
.y20_c01257{bottom:266.566667pt;}
.y1f_c01257{bottom:288.986667pt;}
.y1e_c01257{bottom:311.405333pt;}
.y1d_c01257{bottom:333.825333pt;}
.y1c_c01257{bottom:356.244000pt;}
.y1b_c01257{bottom:393.882667pt;}
.y1a_c01257{bottom:416.301333pt;}
.y19_c01257{bottom:438.721333pt;}
.y18_c01257{bottom:461.140000pt;}
.y17_c01257{bottom:483.560000pt;}
.y16_c01257{bottom:505.978667pt;}
.y15_c01257{bottom:528.398667pt;}
.y14_c01257{bottom:550.818667pt;}
.y13_c01257{bottom:573.237333pt;}
.y12_c01257{bottom:595.657333pt;}
.y11_c01257{bottom:618.076000pt;}
.y10_c01257{bottom:640.496000pt;}
.yf_c01257{bottom:662.914667pt;}
.ye_c01257{bottom:685.334667pt;}
.yd_c01257{bottom:707.753333pt;}
.yc_c01257{bottom:730.173333pt;}
.yb_c01257{bottom:752.592000pt;}
.ya_c01257{bottom:775.012000pt;}
.y9_c01257{bottom:797.430667pt;}
.y8_c01257{bottom:819.850667pt;}
.y7_c01257{bottom:842.269333pt;}
.y6_c01257{bottom:864.689333pt;}
.y5_c01257{bottom:887.108000pt;}
.y4_c01257{bottom:909.528000pt;}
.y3_c01257{bottom:931.946667pt;}
.y2_c01257{bottom:954.366667pt;}
.y1_c01257{bottom:1013.880000pt;}
.h3_c01257{height:43.636000pt;}
.h2_c01257{height:47.820000pt;}
.h4_c01257{height:58.345333pt;}
.h1_c01257{height:1123.333333pt;}
.h0_c01257{height:1123.653333pt;}
.w0_c01257{width:794.550667pt;}
.w1_c01257{width:794.666667pt;}
.x0_c01257{left:0.000000pt;}
.x3_c01257{left:113.385333pt;}
.x2_c01257{left:142.078667pt;}
.x4_c01257{left:278.845333pt;}
.x1_c01257{left:657.753333pt;}
}





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

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





.ff0_c01258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01258;src:url('chunks/assets/font_2d721d2db04aa9ae31cc29e6.woff2')format("woff");}.ff1_c01258{font-family:ff1_c01258;line-height:1.001000;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_c01258;src:url('chunks/assets/font_8f3953f9e84093494940cd80.woff2')format("woff");}.ff2_c01258{font-family:ff2_c01258;line-height:1.000000;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_c01258{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_c01258{vertical-align:0.000000px;}
.v1_c01258{vertical-align:16.542000px;}
.ls0_c01258{letter-spacing:0.000000px;}
.sc__c01258{text-shadow:none;}
.sc0_c01258{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__c01258{-webkit-text-stroke:0px transparent;}
.sc0_c01258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01258{word-spacing:-0.071730px;}
.ws5_c01258{word-spacing:0.000000px;}
.ws2_c01258{word-spacing:19.570746px;}
.ws1_c01258{word-spacing:19.636200px;}
.ws4_c01258{word-spacing:21.730728px;}
.ws3_c01258{word-spacing:24.217980px;}
._3_c01258{margin-left:-32.792454px;}
._5_c01258{margin-left:-25.461606px;}
._4_c01258{margin-left:-7.396302px;}
._2_c01258{margin-left:-1.767258px;}
._0_c01258{width:1.767258px;}
._1_c01258{width:28.753464px;}
.fc0_c01258{color:rgb(0,0,0);}
.fs1_c01258{font-size:65.454000px;}
.fs0_c01258{font-size:71.730000px;}
.y0_c01258{bottom:0.000000px;}
.y5_c01258{bottom:1023.219000px;}
.y4_c01258{bottom:1027.354500px;}
.y3_c01258{bottom:1048.440000px;}
.y2_c01258{bottom:1073.662500px;}
.y1_c01258{bottom:1140.615000px;}
.h4_c01258{height:49.090500px;}
.h2_c01258{height:53.797500px;}
.h3_c01258{height:65.632500px;}
.h1_c01258{height:1263.750000px;}
.h0_c01258{height:1264.110000px;}
.w0_c01258{width:893.869500px;}
.w1_c01258{width:894.000000px;}
.x0_c01258{left:0.000000px;}
.x2_c01258{left:127.558500px;}
.x4_c01258{left:129.604500px;}
.x3_c01258{left:258.211500px;}
.x1_c01258{left:739.972500px;}
@media print{
.v0_c01258{vertical-align:0.000000pt;}
.v1_c01258{vertical-align:14.704000pt;}
.ls0_c01258{letter-spacing:0.000000pt;}
.ws0_c01258{word-spacing:-0.063760pt;}
.ws5_c01258{word-spacing:0.000000pt;}
.ws2_c01258{word-spacing:17.396219pt;}
.ws1_c01258{word-spacing:17.454400pt;}
.ws4_c01258{word-spacing:19.316203pt;}
.ws3_c01258{word-spacing:21.527093pt;}
._3_c01258{margin-left:-29.148848pt;}
._5_c01258{margin-left:-22.632539pt;}
._4_c01258{margin-left:-6.574491pt;}
._2_c01258{margin-left:-1.570896pt;}
._0_c01258{width:1.570896pt;}
._1_c01258{width:25.558635pt;}
.fs1_c01258{font-size:58.181333pt;}
.fs0_c01258{font-size:63.760000pt;}
.y0_c01258{bottom:0.000000pt;}
.y5_c01258{bottom:909.528000pt;}
.y4_c01258{bottom:913.204000pt;}
.y3_c01258{bottom:931.946667pt;}
.y2_c01258{bottom:954.366667pt;}
.y1_c01258{bottom:1013.880000pt;}
.h4_c01258{height:43.636000pt;}
.h2_c01258{height:47.820000pt;}
.h3_c01258{height:58.340000pt;}
.h1_c01258{height:1123.333333pt;}
.h0_c01258{height:1123.653333pt;}
.w0_c01258{width:794.550667pt;}
.w1_c01258{width:794.666667pt;}
.x0_c01258{left:0.000000pt;}
.x2_c01258{left:113.385333pt;}
.x4_c01258{left:115.204000pt;}
.x3_c01258{left:229.521333pt;}
.x1_c01258{left:657.753333pt;}
}





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

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





.ff0_c01259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01259;src:url('chunks/assets/font_8508835782ef1307e255ae42.woff2')format("woff");}.ff1_c01259{font-family:ff1_c01259;line-height:1.001000;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_c01259;src:url('chunks/assets/font_5a9b6f111a56fd6173c3f9f4.woff2')format("woff");}.ff2_c01259{font-family:ff2_c01259;line-height:1.001000;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_c01259{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_c01259{vertical-align:0.000000px;}
.v1_c01259{vertical-align:35.940000px;}
.ls0_c01259{letter-spacing:0.000000px;}
.sc__c01259{text-shadow:none;}
.sc0_c01259{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__c01259{-webkit-text-stroke:0px transparent;}
.sc0_c01259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01259{word-spacing:-0.148722px;}
.ws2_c01259{word-spacing:-0.071730px;}
.ws3_c01259{word-spacing:0.000000px;}
.ws0_c01259{word-spacing:55.622028px;}
._0_c01259{margin-left:-4.759104px;}
._1_c01259{width:12.941082px;}
._2_c01259{width:21.760932px;}
.fc0_c01259{color:rgb(0,0,0);}
.fs1_c01259{font-size:71.730000px;}
.fs0_c01259{font-size:148.722000px;}
.y0_c01259{bottom:0.000000px;}
.y3_c01259{bottom:40.083000px;}
.y2_c01259{bottom:645.669000px;}
.y1_c01259{bottom:731.193000px;}
.h4_c01259{height:53.797500px;}
.h2_c01259{height:111.541500px;}
.h3_c01259{height:147.481500px;}
.h1_c01259{height:1263.750000px;}
.h0_c01259{height:1264.110000px;}
.w0_c01259{width:893.869500px;}
.w1_c01259{width:894.000000px;}
.x0_c01259{left:0.000000px;}
.x2_c01259{left:169.048500px;}
.x3_c01259{left:229.209000px;}
.x1_c01259{left:366.291000px;}
.x5_c01259{left:433.765500px;}
.x4_c01259{left:589.740000px;}
@media print{
.v0_c01259{vertical-align:0.000000pt;}
.v1_c01259{vertical-align:31.946667pt;}
.ls0_c01259{letter-spacing:0.000000pt;}
.ws1_c01259{word-spacing:-0.132197pt;}
.ws2_c01259{word-spacing:-0.063760pt;}
.ws3_c01259{word-spacing:0.000000pt;}
.ws0_c01259{word-spacing:49.441803pt;}
._0_c01259{margin-left:-4.230315pt;}
._1_c01259{width:11.503184pt;}
._2_c01259{width:19.343051pt;}
.fs1_c01259{font-size:63.760000pt;}
.fs0_c01259{font-size:132.197333pt;}
.y0_c01259{bottom:0.000000pt;}
.y3_c01259{bottom:35.629333pt;}
.y2_c01259{bottom:573.928000pt;}
.y1_c01259{bottom:649.949333pt;}
.h4_c01259{height:47.820000pt;}
.h2_c01259{height:99.148000pt;}
.h3_c01259{height:131.094667pt;}
.h1_c01259{height:1123.333333pt;}
.h0_c01259{height:1123.653333pt;}
.w0_c01259{width:794.550667pt;}
.w1_c01259{width:794.666667pt;}
.x0_c01259{left:0.000000pt;}
.x2_c01259{left:150.265333pt;}
.x3_c01259{left:203.741333pt;}
.x1_c01259{left:325.592000pt;}
.x5_c01259{left:385.569333pt;}
.x4_c01259{left:524.213333pt;}
}





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

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





.ff0_c01260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01260;src:url('chunks/assets/font_e967a15c0ec852f1d3e88dbd.woff2')format("woff");}.ff1_c01260{font-family:ff1_c01260;line-height:1.001000;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_c01260;src:url('chunks/assets/font_9451e210c792f2aec9d4bb74.woff2')format("woff");}.ff2_c01260{font-family:ff2_c01260;line-height:1.000000;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_c01260;src:url('chunks/assets/font_76f4a38628e6e5681c8b8e55.woff2')format("woff");}.ff3_c01260{font-family:ff3_c01260;line-height:1.000000;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_c01260;src:url('chunks/assets/font_f54bb2fda686a03e971baf72.woff2')format("woff");}.ff4_c01260{font-family:ff4_c01260;line-height:1.001000;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_c01260{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_c01260{vertical-align:0.000000px;}
.v1_c01260{vertical-align:16.548000px;}
.ls1_c01260{letter-spacing:0.000000px;}
.ls0_c01260{letter-spacing:32.727000px;}
.sc__c01260{text-shadow:none;}
.sc0_c01260{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__c01260{-webkit-text-stroke:0px transparent;}
.sc0_c01260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c01260{word-spacing:-32.792454px;}
.ws14_c01260{word-spacing:-19.898016px;}
.ws11_c01260{word-spacing:-14.530788px;}
.wsb_c01260{word-spacing:-7.330848px;}
.ws16_c01260{word-spacing:-7.265394px;}
.ws19_c01260{word-spacing:-0.071730px;}
.ws1a_c01260{word-spacing:0.000000px;}
.ws6_c01260{word-spacing:21.707004px;}
.ws17_c01260{word-spacing:21.710454px;}
.ws15_c01260{word-spacing:21.724194px;}
.ws2_c01260{word-spacing:21.730728px;}
.ws18_c01260{word-spacing:21.731322px;}
.ws5_c01260{word-spacing:21.734322px;}
.wsa_c01260{word-spacing:21.744834px;}
.ws12_c01260{word-spacing:21.768552px;}
.wsc_c01260{word-spacing:21.796182px;}
.ws7_c01260{word-spacing:23.301624px;}
.ws4_c01260{word-spacing:23.367078px;}
.ws3_c01260{word-spacing:25.908564px;}
.ws10_c01260{word-spacing:26.769000px;}
.ws8_c01260{word-spacing:26.776002px;}
.ws13_c01260{word-spacing:27.099918px;}
.wsf_c01260{word-spacing:27.144228px;}
.wsd_c01260{word-spacing:28.507650px;}
.wse_c01260{word-spacing:29.866056px;}
.ws1_c01260{word-spacing:32.661546px;}
.ws0_c01260{word-spacing:55.622028px;}
._13_c01260{margin-left:-35.321448px;}
._22_c01260{margin-left:-33.806604px;}
._e_c01260{margin-left:-32.727000px;}
._12_c01260{margin-left:-30.894288px;}
._8_c01260{margin-left:-25.461606px;}
._7_c01260{margin-left:-7.330848px;}
._9_c01260{margin-left:-5.498136px;}
._a_c01260{margin-left:-3.110046px;}
._3_c01260{margin-left:-1.832712px;}
._1_c01260{width:1.832712px;}
._1f_c01260{width:3.665424px;}
._14_c01260{width:9.294468px;}
._f_c01260{width:17.083494px;}
._2_c01260{width:21.796182px;}
._c_c01260{width:26.247636px;}
._1e_c01260{width:27.590832px;}
._4_c01260{width:28.865214px;}
._10_c01260{width:30.938622px;}
._16_c01260{width:32.072460px;}
._15_c01260{width:33.381540px;}
._1d_c01260{width:37.112418px;}
._1a_c01260{width:41.497836px;}
._18_c01260{width:42.586842px;}
._21_c01260{width:43.788726px;}
._1c_c01260{width:45.752346px;}
._20_c01260{width:47.126880px;}
._19_c01260{width:48.697776px;}
._1b_c01260{width:51.054120px;}
._11_c01260{width:52.990680px;}
._d_c01260{width:54.654090px;}
._17_c01260{width:55.743096px;}
._23_c01260{width:60.212388px;}
._b_c01260{width:65.618616px;}
._6_c01260{width:81.424776px;}
._5_c01260{width:94.842846px;}
._0_c01260{width:165.074988px;}
.fc0_c01260{color:rgb(0,0,0);}
.fs1_c01260{font-size:65.454000px;}
.fs2_c01260{font-size:71.730000px;}
.fs0_c01260{font-size:148.722000px;}
.y0_c01260{bottom:0.000000px;}
.y22_c01260{bottom:40.083000px;}
.y21_c01260{bottom:86.712000px;}
.y20_c01260{bottom:111.933000px;}
.y1f_c01260{bottom:137.155500px;}
.y1e_c01260{bottom:162.376500px;}
.y1d_c01260{bottom:187.599000px;}
.y1c_c01260{bottom:212.820000px;}
.y1b_c01260{bottom:238.042500px;}
.y1a_c01260{bottom:263.263500px;}
.y19_c01260{bottom:288.486000px;}
.y18_c01260{bottom:313.707000px;}
.y17_c01260{bottom:338.929500px;}
.y16_c01260{bottom:364.150500px;}
.y15_c01260{bottom:389.373000px;}
.y14_c01260{bottom:414.594000px;}
.y13_c01260{bottom:439.816500px;}
.y12_c01260{bottom:465.037500px;}
.y11_c01260{bottom:490.260000px;}
.y10_c01260{bottom:515.481000px;}
.yf_c01260{bottom:540.703500px;}
.ye_c01260{bottom:565.924500px;}
.yd_c01260{bottom:591.147000px;}
.yc_c01260{bottom:616.368000px;}
.yb_c01260{bottom:641.590500px;}
.ya_c01260{bottom:666.811500px;}
.y9_c01260{bottom:692.034000px;}
.y8_c01260{bottom:717.255000px;}
.y7_c01260{bottom:742.477500px;}
.y6_c01260{bottom:767.698500px;}
.y5_c01260{bottom:792.921000px;}
.y4_c01260{bottom:818.142000px;}
.y3_c01260{bottom:858.309000px;}
.y2_c01260{bottom:943.306500px;}
.y1_c01260{bottom:952.291500px;}
.h3_c01260{height:49.090500px;}
.h5_c01260{height:53.797500px;}
.h4_c01260{height:65.638500px;}
.h2_c01260{height:111.541500px;}
.h1_c01260{height:1263.750000px;}
.h0_c01260{height:1264.110000px;}
.w0_c01260{width:893.869500px;}
.w1_c01260{width:894.000000px;}
.x0_c01260{left:0.000000px;}
.x1_c01260{left:124.891500px;}
.x2_c01260{left:127.558500px;}
.x3_c01260{left:152.104500px;}
.x4_c01260{left:268.150500px;}
.x5_c01260{left:433.765500px;}
@media print{
.v0_c01260{vertical-align:0.000000pt;}
.v1_c01260{vertical-align:14.709333pt;}
.ls1_c01260{letter-spacing:0.000000pt;}
.ls0_c01260{letter-spacing:29.090667pt;}
.ws9_c01260{word-spacing:-29.148848pt;}
.ws14_c01260{word-spacing:-17.687125pt;}
.ws11_c01260{word-spacing:-12.916256pt;}
.wsb_c01260{word-spacing:-6.516309pt;}
.ws16_c01260{word-spacing:-6.458128pt;}
.ws19_c01260{word-spacing:-0.063760pt;}
.ws1a_c01260{word-spacing:0.000000pt;}
.ws6_c01260{word-spacing:19.295115pt;}
.ws17_c01260{word-spacing:19.298181pt;}
.ws15_c01260{word-spacing:19.310395pt;}
.ws2_c01260{word-spacing:19.316203pt;}
.ws18_c01260{word-spacing:19.316731pt;}
.ws5_c01260{word-spacing:19.319397pt;}
.wsa_c01260{word-spacing:19.328741pt;}
.ws12_c01260{word-spacing:19.349824pt;}
.wsc_c01260{word-spacing:19.374384pt;}
.ws7_c01260{word-spacing:20.712555pt;}
.ws4_c01260{word-spacing:20.770736pt;}
.ws3_c01260{word-spacing:23.029835pt;}
.ws10_c01260{word-spacing:23.794667pt;}
.ws8_c01260{word-spacing:23.800891pt;}
.ws13_c01260{word-spacing:24.088816pt;}
.wsf_c01260{word-spacing:24.128203pt;}
.wsd_c01260{word-spacing:25.340133pt;}
.wse_c01260{word-spacing:26.547605pt;}
.ws1_c01260{word-spacing:29.032485pt;}
.ws0_c01260{word-spacing:49.441803pt;}
._13_c01260{margin-left:-31.396843pt;}
._22_c01260{margin-left:-30.050315pt;}
._e_c01260{margin-left:-29.090667pt;}
._12_c01260{margin-left:-27.461589pt;}
._8_c01260{margin-left:-22.632539pt;}
._7_c01260{margin-left:-6.516309pt;}
._9_c01260{margin-left:-4.887232pt;}
._a_c01260{margin-left:-2.764485pt;}
._3_c01260{margin-left:-1.629077pt;}
._1_c01260{width:1.629077pt;}
._1f_c01260{width:3.258155pt;}
._14_c01260{width:8.261749pt;}
._f_c01260{width:15.185328pt;}
._2_c01260{width:19.374384pt;}
._c_c01260{width:23.331232pt;}
._1e_c01260{width:24.525184pt;}
._4_c01260{width:25.657968pt;}
._10_c01260{width:27.500997pt;}
._16_c01260{width:28.508853pt;}
._15_c01260{width:29.672480pt;}
._1d_c01260{width:32.988816pt;}
._1a_c01260{width:36.886965pt;}
._18_c01260{width:37.854971pt;}
._21_c01260{width:38.923312pt;}
._1c_c01260{width:40.668752pt;}
._20_c01260{width:41.890560pt;}
._19_c01260{width:43.286912pt;}
._1b_c01260{width:45.381440pt;}
._11_c01260{width:47.102827pt;}
._d_c01260{width:48.581413pt;}
._17_c01260{width:49.549419pt;}
._23_c01260{width:53.522123pt;}
._b_c01260{width:58.327659pt;}
._6_c01260{width:72.377579pt;}
._5_c01260{width:84.304752pt;}
._0_c01260{width:146.733323pt;}
.fs1_c01260{font-size:58.181333pt;}
.fs2_c01260{font-size:63.760000pt;}
.fs0_c01260{font-size:132.197333pt;}
.y0_c01260{bottom:0.000000pt;}
.y22_c01260{bottom:35.629333pt;}
.y21_c01260{bottom:77.077333pt;}
.y20_c01260{bottom:99.496000pt;}
.y1f_c01260{bottom:121.916000pt;}
.y1e_c01260{bottom:144.334667pt;}
.y1d_c01260{bottom:166.754667pt;}
.y1c_c01260{bottom:189.173333pt;}
.y1b_c01260{bottom:211.593333pt;}
.y1a_c01260{bottom:234.012000pt;}
.y19_c01260{bottom:256.432000pt;}
.y18_c01260{bottom:278.850667pt;}
.y17_c01260{bottom:301.270667pt;}
.y16_c01260{bottom:323.689333pt;}
.y15_c01260{bottom:346.109333pt;}
.y14_c01260{bottom:368.528000pt;}
.y13_c01260{bottom:390.948000pt;}
.y12_c01260{bottom:413.366667pt;}
.y11_c01260{bottom:435.786667pt;}
.y10_c01260{bottom:458.205333pt;}
.yf_c01260{bottom:480.625333pt;}
.ye_c01260{bottom:503.044000pt;}
.yd_c01260{bottom:525.464000pt;}
.yc_c01260{bottom:547.882667pt;}
.yb_c01260{bottom:570.302667pt;}
.ya_c01260{bottom:592.721333pt;}
.y9_c01260{bottom:615.141333pt;}
.y8_c01260{bottom:637.560000pt;}
.y7_c01260{bottom:659.980000pt;}
.y6_c01260{bottom:682.398667pt;}
.y5_c01260{bottom:704.818667pt;}
.y4_c01260{bottom:727.237333pt;}
.y3_c01260{bottom:762.941333pt;}
.y2_c01260{bottom:838.494667pt;}
.y1_c01260{bottom:846.481333pt;}
.h3_c01260{height:43.636000pt;}
.h5_c01260{height:47.820000pt;}
.h4_c01260{height:58.345333pt;}
.h2_c01260{height:99.148000pt;}
.h1_c01260{height:1123.333333pt;}
.h0_c01260{height:1123.653333pt;}
.w0_c01260{width:794.550667pt;}
.w1_c01260{width:794.666667pt;}
.x0_c01260{left:0.000000pt;}
.x1_c01260{left:111.014667pt;}
.x2_c01260{left:113.385333pt;}
.x3_c01260{left:135.204000pt;}
.x4_c01260{left:238.356000pt;}
.x5_c01260{left:385.569333pt;}
}





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

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





.ff0_c01261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01261;src:url('chunks/assets/font_ba443b6039ca15aff4245212.woff2')format("woff");}.ff1_c01261{font-family:ff1_c01261;line-height:1.001000;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_c01261;src:url('chunks/assets/font_997827218372eeb549a37187.woff2')format("woff");}.ff2_c01261{font-family:ff2_c01261;line-height:1.000000;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_c01261;src:url('chunks/assets/font_d64337335a55abf76a34582e.woff2')format("woff");}.ff3_c01261{font-family:ff3_c01261;line-height:1.000000;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_c01261{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_c01261{vertical-align:0.000000px;}
.v1_c01261{vertical-align:16.542000px;}
.ls1_c01261{letter-spacing:0.000000px;}
.ls0_c01261{letter-spacing:32.727000px;}
.sc__c01261{text-shadow:none;}
.sc0_c01261{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__c01261{-webkit-text-stroke:0px transparent;}
.sc0_c01261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c01261{word-spacing:-32.792454px;}
.ws11_c01261{word-spacing:-16.428954px;}
.ws23_c01261{word-spacing:-14.138064px;}
.ws1f_c01261{word-spacing:-8.967198px;}
.ws15_c01261{word-spacing:-8.836290px;}
.ws3_c01261{word-spacing:-0.523632px;}
.ws24_c01261{word-spacing:0.000000px;}
.ws16_c01261{word-spacing:21.706254px;}
.wse_c01261{word-spacing:21.710454px;}
.ws1d_c01261{word-spacing:21.711204px;}
.ws1b_c01261{word-spacing:21.714060px;}
.wsc_c01261{word-spacing:21.722016px;}
.ws13_c01261{word-spacing:21.724266px;}
.ws5_c01261{word-spacing:21.729972px;}
.ws4_c01261{word-spacing:21.730728px;}
.ws1_c01261{word-spacing:21.731322px;}
.ws8_c01261{word-spacing:21.736428px;}
.ws12_c01261{word-spacing:21.737478px;}
.ws22_c01261{word-spacing:21.750666px;}
.ws18_c01261{word-spacing:21.761346px;}
.ws19_c01261{word-spacing:21.768402px;}
.ws2_c01261{word-spacing:23.301624px;}
.ws0_c01261{word-spacing:23.312250px;}
.wsb_c01261{word-spacing:23.367078px;}
.ws10_c01261{word-spacing:25.862328px;}
.ws14_c01261{word-spacing:25.874910px;}
.ws6_c01261{word-spacing:25.879560px;}
.ws1c_c01261{word-spacing:25.908804px;}
.wsa_c01261{word-spacing:25.912380px;}
.ws1a_c01261{word-spacing:26.756094px;}
.wsf_c01261{word-spacing:27.140178px;}
.wsd_c01261{word-spacing:28.507650px;}
.ws20_c01261{word-spacing:29.428512px;}
.ws1e_c01261{word-spacing:29.796486px;}
.ws21_c01261{word-spacing:30.436110px;}
.ws9_c01261{word-spacing:32.661546px;}
.ws17_c01261{word-spacing:56.818122px;}
._19_c01261{margin-left:-35.331804px;}
._1f_c01261{margin-left:-34.133514px;}
._5_c01261{margin-left:-32.727000px;}
._12_c01261{margin-left:-30.873420px;}
._8_c01261{margin-left:-25.461606px;}
._e_c01261{margin-left:-13.715958px;}
._d_c01261{margin-left:-11.359434px;}
._7_c01261{margin-left:-7.265394px;}
._6_c01261{margin-left:-5.498136px;}
._3_c01261{margin-left:-3.338154px;}
._2_c01261{margin-left:-1.898760px;}
._15_c01261{width:1.767258px;}
._c_c01261{width:3.338910px;}
._13_c01261{width:7.310574px;}
._17_c01261{width:18.983562px;}
._18_c01261{width:20.778414px;}
._10_c01261{width:21.813282px;}
._1b_c01261{width:22.828698px;}
._f_c01261{width:25.101474px;}
._4_c01261{width:26.888322px;}
._b_c01261{width:29.454300px;}
._21_c01261{width:30.532968px;}
._1d_c01261{width:31.713786px;}
._a_c01261{width:32.727000px;}
._23_c01261{width:35.673876px;}
._20_c01261{width:37.769928px;}
._1c_c01261{width:40.874550px;}
._1a_c01261{width:44.225772px;}
._1_c01261{width:48.697776px;}
._14_c01261{width:50.732220px;}
._22_c01261{width:52.491954px;}
._11_c01261{width:56.404248px;}
._16_c01261{width:58.475178px;}
._1e_c01261{width:61.209306px;}
._9_c01261{width:67.024896px;}
._0_c01261{width:1723.743630px;}
.fc0_c01261{color:rgb(0,0,0);}
.fs1_c01261{font-size:65.454000px;}
.fs0_c01261{font-size:71.730000px;}
.y0_c01261{bottom:0.000000px;}
.y2a_c01261{bottom:90.013500px;}
.y29_c01261{bottom:115.234500px;}
.y28_c01261{bottom:140.457000px;}
.y27_c01261{bottom:165.678000px;}
.y26_c01261{bottom:190.900500px;}
.y25_c01261{bottom:216.121500px;}
.y24_c01261{bottom:241.344000px;}
.y23_c01261{bottom:266.565000px;}
.y22_c01261{bottom:291.787500px;}
.y21_c01261{bottom:317.008500px;}
.y20_c01261{bottom:342.231000px;}
.y1f_c01261{bottom:367.452000px;}
.y1e_c01261{bottom:392.674500px;}
.y1d_c01261{bottom:417.895500px;}
.y1c_c01261{bottom:443.118000px;}
.y1b_c01261{bottom:468.339000px;}
.y1a_c01261{bottom:493.561500px;}
.y19_c01261{bottom:518.782500px;}
.y18_c01261{bottom:544.005000px;}
.y17_c01261{bottom:569.226000px;}
.y16_c01261{bottom:594.448500px;}
.y15_c01261{bottom:619.671000px;}
.y14_c01261{bottom:644.892000px;}
.y13_c01261{bottom:670.114500px;}
.y12_c01261{bottom:695.335500px;}
.y11_c01261{bottom:720.558000px;}
.y10_c01261{bottom:745.779000px;}
.yf_c01261{bottom:771.001500px;}
.ye_c01261{bottom:796.222500px;}
.yd_c01261{bottom:821.445000px;}
.yc_c01261{bottom:846.666000px;}
.yb_c01261{bottom:871.888500px;}
.ya_c01261{bottom:897.109500px;}
.y9_c01261{bottom:922.332000px;}
.y8_c01261{bottom:947.553000px;}
.y7_c01261{bottom:972.775500px;}
.y6_c01261{bottom:997.996500px;}
.y5_c01261{bottom:1023.219000px;}
.y4_c01261{bottom:1048.440000px;}
.y3_c01261{bottom:1073.662500px;}
.y2_c01261{bottom:1140.615000px;}
.y1_c01261{bottom:1145.148000px;}
.h3_c01261{height:49.090500px;}
.h2_c01261{height:53.797500px;}
.h4_c01261{height:65.632500px;}
.h5_c01261{height:65.638500px;}
.h1_c01261{height:1263.750000px;}
.h0_c01261{height:1264.110000px;}
.w0_c01261{width:893.869500px;}
.w1_c01261{width:894.000000px;}
.x0_c01261{left:0.000000px;}
.x1_c01261{left:126.336000px;}
.x2_c01261{left:127.558500px;}
.x3_c01261{left:152.104500px;}
.x4_c01261{left:206.104500px;}
@media print{
.v0_c01261{vertical-align:0.000000pt;}
.v1_c01261{vertical-align:14.704000pt;}
.ls1_c01261{letter-spacing:0.000000pt;}
.ls0_c01261{letter-spacing:29.090667pt;}
.ws7_c01261{word-spacing:-29.148848pt;}
.ws11_c01261{word-spacing:-14.603515pt;}
.ws23_c01261{word-spacing:-12.567168pt;}
.ws1f_c01261{word-spacing:-7.970843pt;}
.ws15_c01261{word-spacing:-7.854480pt;}
.ws3_c01261{word-spacing:-0.465451pt;}
.ws24_c01261{word-spacing:0.000000pt;}
.ws16_c01261{word-spacing:19.294448pt;}
.wse_c01261{word-spacing:19.298181pt;}
.ws1d_c01261{word-spacing:19.298848pt;}
.ws1b_c01261{word-spacing:19.301387pt;}
.wsc_c01261{word-spacing:19.308459pt;}
.ws13_c01261{word-spacing:19.310459pt;}
.ws5_c01261{word-spacing:19.315531pt;}
.ws4_c01261{word-spacing:19.316203pt;}
.ws1_c01261{word-spacing:19.316731pt;}
.ws8_c01261{word-spacing:19.321269pt;}
.ws12_c01261{word-spacing:19.322203pt;}
.ws22_c01261{word-spacing:19.333925pt;}
.ws18_c01261{word-spacing:19.343419pt;}
.ws19_c01261{word-spacing:19.349691pt;}
.ws2_c01261{word-spacing:20.712555pt;}
.ws0_c01261{word-spacing:20.722000pt;}
.wsb_c01261{word-spacing:20.770736pt;}
.ws10_c01261{word-spacing:22.988736pt;}
.ws14_c01261{word-spacing:22.999920pt;}
.ws6_c01261{word-spacing:23.004053pt;}
.ws1c_c01261{word-spacing:23.030048pt;}
.wsa_c01261{word-spacing:23.033227pt;}
.ws1a_c01261{word-spacing:23.783195pt;}
.wsf_c01261{word-spacing:24.124603pt;}
.wsd_c01261{word-spacing:25.340133pt;}
.ws20_c01261{word-spacing:26.158677pt;}
.ws1e_c01261{word-spacing:26.485765pt;}
.ws21_c01261{word-spacing:27.054320pt;}
.ws9_c01261{word-spacing:29.032485pt;}
.ws17_c01261{word-spacing:50.504997pt;}
._19_c01261{margin-left:-31.406048pt;}
._1f_c01261{margin-left:-30.340901pt;}
._5_c01261{margin-left:-29.090667pt;}
._12_c01261{margin-left:-27.443040pt;}
._8_c01261{margin-left:-22.632539pt;}
._e_c01261{margin-left:-12.191963pt;}
._d_c01261{margin-left:-10.097275pt;}
._7_c01261{margin-left:-6.458128pt;}
._6_c01261{margin-left:-4.887232pt;}
._3_c01261{margin-left:-2.967248pt;}
._2_c01261{margin-left:-1.687787pt;}
._15_c01261{width:1.570896pt;}
._c_c01261{width:2.967920pt;}
._13_c01261{width:6.498288pt;}
._17_c01261{width:16.874277pt;}
._18_c01261{width:18.469701pt;}
._10_c01261{width:19.389584pt;}
._1b_c01261{width:20.292176pt;}
._f_c01261{width:22.312421pt;}
._4_c01261{width:23.900731pt;}
._b_c01261{width:26.181600pt;}
._21_c01261{width:27.140416pt;}
._1d_c01261{width:28.190032pt;}
._a_c01261{width:29.090667pt;}
._23_c01261{width:31.710112pt;}
._20_c01261{width:33.573269pt;}
._1c_c01261{width:36.332933pt;}
._1a_c01261{width:39.311797pt;}
._1_c01261{width:43.286912pt;}
._14_c01261{width:45.095307pt;}
._22_c01261{width:46.659515pt;}
._11_c01261{width:50.137109pt;}
._16_c01261{width:51.977936pt;}
._1e_c01261{width:54.408272pt;}
._9_c01261{width:59.577685pt;}
._0_c01261{width:1532.216560pt;}
.fs1_c01261{font-size:58.181333pt;}
.fs0_c01261{font-size:63.760000pt;}
.y0_c01261{bottom:0.000000pt;}
.y2a_c01261{bottom:80.012000pt;}
.y29_c01261{bottom:102.430667pt;}
.y28_c01261{bottom:124.850667pt;}
.y27_c01261{bottom:147.269333pt;}
.y26_c01261{bottom:169.689333pt;}
.y25_c01261{bottom:192.108000pt;}
.y24_c01261{bottom:214.528000pt;}
.y23_c01261{bottom:236.946667pt;}
.y22_c01261{bottom:259.366667pt;}
.y21_c01261{bottom:281.785333pt;}
.y20_c01261{bottom:304.205333pt;}
.y1f_c01261{bottom:326.624000pt;}
.y1e_c01261{bottom:349.044000pt;}
.y1d_c01261{bottom:371.462667pt;}
.y1c_c01261{bottom:393.882667pt;}
.y1b_c01261{bottom:416.301333pt;}
.y1a_c01261{bottom:438.721333pt;}
.y19_c01261{bottom:461.140000pt;}
.y18_c01261{bottom:483.560000pt;}
.y17_c01261{bottom:505.978667pt;}
.y16_c01261{bottom:528.398667pt;}
.y15_c01261{bottom:550.818667pt;}
.y14_c01261{bottom:573.237333pt;}
.y13_c01261{bottom:595.657333pt;}
.y12_c01261{bottom:618.076000pt;}
.y11_c01261{bottom:640.496000pt;}
.y10_c01261{bottom:662.914667pt;}
.yf_c01261{bottom:685.334667pt;}
.ye_c01261{bottom:707.753333pt;}
.yd_c01261{bottom:730.173333pt;}
.yc_c01261{bottom:752.592000pt;}
.yb_c01261{bottom:775.012000pt;}
.ya_c01261{bottom:797.430667pt;}
.y9_c01261{bottom:819.850667pt;}
.y8_c01261{bottom:842.269333pt;}
.y7_c01261{bottom:864.689333pt;}
.y6_c01261{bottom:887.108000pt;}
.y5_c01261{bottom:909.528000pt;}
.y4_c01261{bottom:931.946667pt;}
.y3_c01261{bottom:954.366667pt;}
.y2_c01261{bottom:1013.880000pt;}
.y1_c01261{bottom:1017.909333pt;}
.h3_c01261{height:43.636000pt;}
.h2_c01261{height:47.820000pt;}
.h4_c01261{height:58.340000pt;}
.h5_c01261{height:58.345333pt;}
.h1_c01261{height:1123.333333pt;}
.h0_c01261{height:1123.653333pt;}
.w0_c01261{width:794.550667pt;}
.w1_c01261{width:794.666667pt;}
.x0_c01261{left:0.000000pt;}
.x1_c01261{left:112.298667pt;}
.x2_c01261{left:113.385333pt;}
.x3_c01261{left:135.204000pt;}
.x4_c01261{left:183.204000pt;}
}





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

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





.ff0_c01262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01262;src:url('chunks/assets/font_3a5a7ff563338fcdce380ccc.woff2')format("woff");}.ff1_c01262{font-family:ff1_c01262;line-height:1.001000;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_c01262;src:url('chunks/assets/font_9e4e15cba3784968bd00f389.woff2')format("woff");}.ff2_c01262{font-family:ff2_c01262;line-height:1.000000;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_c01262;src:url('chunks/assets/font_eb24ed2ec60b1675e9ef1da0.woff2')format("woff");}.ff3_c01262{font-family:ff3_c01262;line-height:1.000000;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_c01262;src:url('chunks/assets/font_3ebc2fabdf244f4f57a2e86a.woff2')format("woff");}.ff4_c01262{font-family:ff4_c01262;line-height:0.451000;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_c01262{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_c01262{vertical-align:-23.748000px;}
.v0_c01262{vertical-align:0.000000px;}
.v3_c01262{vertical-align:16.542000px;}
.v1_c01262{vertical-align:23.748000px;}
.ls5_c01262{letter-spacing:0.000000px;}
.ls1_c01262{letter-spacing:23.432532px;}
.ls0_c01262{letter-spacing:26.384820px;}
.ls2_c01262{letter-spacing:26.390820px;}
.ls3_c01262{letter-spacing:30.693006px;}
.ls4_c01262{letter-spacing:32.727000px;}
.sc__c01262{text-shadow:none;}
.sc0_c01262{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__c01262{-webkit-text-stroke:0px transparent;}
.sc0_c01262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c01262{word-spacing:-32.792454px;}
.ws6_c01262{word-spacing:-23.497986px;}
.ws13_c01262{word-spacing:-21.599820px;}
.wsf_c01262{word-spacing:-1.047264px;}
.ws7_c01262{word-spacing:-0.785448px;}
.ws1d_c01262{word-spacing:0.000000px;}
.ws16_c01262{word-spacing:1.570896px;}
.ws1c_c01262{word-spacing:15.905322px;}
.ws11_c01262{word-spacing:21.707154px;}
.ws14_c01262{word-spacing:21.714060px;}
.ws19_c01262{word-spacing:21.714210px;}
.ws15_c01262{word-spacing:21.723852px;}
.ws17_c01262{word-spacing:21.726516px;}
.wsa_c01262{word-spacing:21.726666px;}
.ws1_c01262{word-spacing:21.730728px;}
.ws1b_c01262{word-spacing:21.731550px;}
.ws12_c01262{word-spacing:21.747462px;}
.wsd_c01262{word-spacing:21.759342px;}
.wsb_c01262{word-spacing:21.761346px;}
.ws10_c01262{word-spacing:21.766152px;}
.ws5_c01262{word-spacing:21.768252px;}
.ws18_c01262{word-spacing:21.796182px;}
.ws2_c01262{word-spacing:23.301624px;}
.ws0_c01262{word-spacing:23.312250px;}
.ws4_c01262{word-spacing:23.367078px;}
.wsc_c01262{word-spacing:25.858098px;}
.wse_c01262{word-spacing:26.775174px;}
.ws1a_c01262{word-spacing:27.099522px;}
.ws8_c01262{word-spacing:28.513650px;}
.ws3_c01262{word-spacing:32.661546px;}
._1a_c01262{margin-left:-35.322648px;}
._23_c01262{margin-left:-34.282128px;}
._11_c01262{margin-left:-32.727000px;}
._22_c01262{margin-left:-30.959742px;}
._7_c01262{margin-left:-25.461606px;}
._e_c01262{margin-left:-23.956260px;}
._26_c01262{margin-left:-10.902198px;}
._12_c01262{margin-left:-8.367006px;}
._6_c01262{margin-left:-7.265394px;}
._c_c01262{margin-left:-5.498136px;}
._2_c01262{margin-left:-3.324798px;}
._8_c01262{margin-left:-1.767258px;}
._b_c01262{width:1.767258px;}
._14_c01262{width:3.599970px;}
._19_c01262{width:5.872272px;}
._9_c01262{width:7.032252px;}
._27_c01262{width:15.970776px;}
._1c_c01262{width:17.906286px;}
._a_c01262{width:19.047114px;}
._13_c01262{width:21.796182px;}
._1e_c01262{width:22.799838px;}
._3_c01262{width:26.004132px;}
._20_c01262{width:27.168288px;}
._16_c01262{width:28.362948px;}
._5_c01262{width:29.388846px;}
._18_c01262{width:31.145952px;}
._10_c01262{width:32.522568px;}
._15_c01262{width:34.074984px;}
._d_c01262{width:36.202728px;}
._17_c01262{width:42.414192px;}
._1d_c01262{width:44.246904px;}
._24_c01262{width:47.264856px;}
._1_c01262{width:48.697776px;}
._25_c01262{width:52.027176px;}
._1b_c01262{width:54.798858px;}
._21_c01262{width:58.782990px;}
._4_c01262{width:62.639478px;}
._1f_c01262{width:64.383780px;}
._f_c01262{width:67.090350px;}
._0_c01262{width:1723.743630px;}
.fc0_c01262{color:rgb(0,0,0);}
.fs2_c01262{font-size:47.820000px;}
.fs1_c01262{font-size:65.454000px;}
.fs0_c01262{font-size:71.730000px;}
.y0_c01262{bottom:0.000000px;}
.y2a_c01262{bottom:90.013500px;}
.y29_c01262{bottom:115.234500px;}
.y28_c01262{bottom:140.457000px;}
.y27_c01262{bottom:165.678000px;}
.y26_c01262{bottom:190.900500px;}
.y25_c01262{bottom:216.121500px;}
.y24_c01262{bottom:241.344000px;}
.y23_c01262{bottom:266.565000px;}
.y22_c01262{bottom:291.787500px;}
.y21_c01262{bottom:317.008500px;}
.y20_c01262{bottom:342.231000px;}
.y1f_c01262{bottom:367.452000px;}
.y1e_c01262{bottom:392.674500px;}
.y1d_c01262{bottom:417.895500px;}
.y1c_c01262{bottom:443.118000px;}
.y1b_c01262{bottom:468.339000px;}
.y1a_c01262{bottom:493.561500px;}
.y19_c01262{bottom:518.782500px;}
.y18_c01262{bottom:544.005000px;}
.y17_c01262{bottom:569.226000px;}
.y16_c01262{bottom:594.448500px;}
.y15_c01262{bottom:619.671000px;}
.y14_c01262{bottom:644.892000px;}
.y13_c01262{bottom:670.114500px;}
.y12_c01262{bottom:695.335500px;}
.y11_c01262{bottom:720.558000px;}
.y10_c01262{bottom:745.779000px;}
.yf_c01262{bottom:771.001500px;}
.ye_c01262{bottom:796.222500px;}
.yd_c01262{bottom:821.445000px;}
.yc_c01262{bottom:846.666000px;}
.yb_c01262{bottom:871.888500px;}
.ya_c01262{bottom:897.109500px;}
.y9_c01262{bottom:922.332000px;}
.y8_c01262{bottom:947.553000px;}
.y7_c01262{bottom:972.775500px;}
.y6_c01262{bottom:997.996500px;}
.y5_c01262{bottom:1023.219000px;}
.y4_c01262{bottom:1048.440000px;}
.y3_c01262{bottom:1073.662500px;}
.y2_c01262{bottom:1140.615000px;}
.y1_c01262{bottom:1145.148000px;}
.h3_c01262{height:49.090500px;}
.h2_c01262{height:53.797500px;}
.h4_c01262{height:65.632500px;}
.h1_c01262{height:1263.750000px;}
.h0_c01262{height:1264.110000px;}
.w0_c01262{width:893.869500px;}
.w1_c01262{width:894.000000px;}
.x0_c01262{left:0.000000px;}
.x1_c01262{left:126.336000px;}
.x2_c01262{left:127.558500px;}
.x3_c01262{left:152.104500px;}
.x4_c01262{left:260.196000px;}
@media print{
.v2_c01262{vertical-align:-21.109333pt;}
.v0_c01262{vertical-align:0.000000pt;}
.v3_c01262{vertical-align:14.704000pt;}
.v1_c01262{vertical-align:21.109333pt;}
.ls5_c01262{letter-spacing:0.000000pt;}
.ls1_c01262{letter-spacing:20.828917pt;}
.ls0_c01262{letter-spacing:23.453173pt;}
.ls2_c01262{letter-spacing:23.458507pt;}
.ls3_c01262{letter-spacing:27.282672pt;}
.ls4_c01262{letter-spacing:29.090667pt;}
.ws9_c01262{word-spacing:-29.148848pt;}
.ws6_c01262{word-spacing:-20.887099pt;}
.ws13_c01262{word-spacing:-19.199840pt;}
.wsf_c01262{word-spacing:-0.930901pt;}
.ws7_c01262{word-spacing:-0.698176pt;}
.ws1d_c01262{word-spacing:0.000000pt;}
.ws16_c01262{word-spacing:1.396352pt;}
.ws1c_c01262{word-spacing:14.138064pt;}
.ws11_c01262{word-spacing:19.295248pt;}
.ws14_c01262{word-spacing:19.301387pt;}
.ws19_c01262{word-spacing:19.301520pt;}
.ws15_c01262{word-spacing:19.310091pt;}
.ws17_c01262{word-spacing:19.312459pt;}
.wsa_c01262{word-spacing:19.312592pt;}
.ws1_c01262{word-spacing:19.316203pt;}
.ws1b_c01262{word-spacing:19.316933pt;}
.ws12_c01262{word-spacing:19.331077pt;}
.wsd_c01262{word-spacing:19.341637pt;}
.wsb_c01262{word-spacing:19.343419pt;}
.ws10_c01262{word-spacing:19.347691pt;}
.ws5_c01262{word-spacing:19.349557pt;}
.ws18_c01262{word-spacing:19.374384pt;}
.ws2_c01262{word-spacing:20.712555pt;}
.ws0_c01262{word-spacing:20.722000pt;}
.ws4_c01262{word-spacing:20.770736pt;}
.wsc_c01262{word-spacing:22.984976pt;}
.wse_c01262{word-spacing:23.800155pt;}
.ws1a_c01262{word-spacing:24.088464pt;}
.ws8_c01262{word-spacing:25.345467pt;}
.ws3_c01262{word-spacing:29.032485pt;}
._1a_c01262{margin-left:-31.397909pt;}
._23_c01262{margin-left:-30.473003pt;}
._11_c01262{margin-left:-29.090667pt;}
._22_c01262{margin-left:-27.519771pt;}
._7_c01262{margin-left:-22.632539pt;}
._e_c01262{margin-left:-21.294453pt;}
._26_c01262{margin-left:-9.690843pt;}
._12_c01262{margin-left:-7.437339pt;}
._6_c01262{margin-left:-6.458128pt;}
._c_c01262{margin-left:-4.887232pt;}
._2_c01262{margin-left:-2.955376pt;}
._8_c01262{margin-left:-1.570896pt;}
._b_c01262{width:1.570896pt;}
._14_c01262{width:3.199973pt;}
._19_c01262{width:5.219797pt;}
._9_c01262{width:6.250891pt;}
._27_c01262{width:14.196245pt;}
._1c_c01262{width:15.916699pt;}
._a_c01262{width:16.930768pt;}
._13_c01262{width:19.374384pt;}
._1e_c01262{width:20.266523pt;}
._3_c01262{width:23.114784pt;}
._20_c01262{width:24.149589pt;}
._16_c01262{width:25.211509pt;}
._5_c01262{width:26.123419pt;}
._18_c01262{width:27.685291pt;}
._10_c01262{width:28.908949pt;}
._15_c01262{width:30.288875pt;}
._d_c01262{width:32.180203pt;}
._17_c01262{width:37.701504pt;}
._1d_c01262{width:39.330581pt;}
._24_c01262{width:42.013205pt;}
._1_c01262{width:43.286912pt;}
._25_c01262{width:46.246379pt;}
._1b_c01262{width:48.710096pt;}
._21_c01262{width:52.251547pt;}
._4_c01262{width:55.679536pt;}
._1f_c01262{width:57.230027pt;}
._f_c01262{width:59.635867pt;}
._0_c01262{width:1532.216560pt;}
.fs2_c01262{font-size:42.506667pt;}
.fs1_c01262{font-size:58.181333pt;}
.fs0_c01262{font-size:63.760000pt;}
.y0_c01262{bottom:0.000000pt;}
.y2a_c01262{bottom:80.012000pt;}
.y29_c01262{bottom:102.430667pt;}
.y28_c01262{bottom:124.850667pt;}
.y27_c01262{bottom:147.269333pt;}
.y26_c01262{bottom:169.689333pt;}
.y25_c01262{bottom:192.108000pt;}
.y24_c01262{bottom:214.528000pt;}
.y23_c01262{bottom:236.946667pt;}
.y22_c01262{bottom:259.366667pt;}
.y21_c01262{bottom:281.785333pt;}
.y20_c01262{bottom:304.205333pt;}
.y1f_c01262{bottom:326.624000pt;}
.y1e_c01262{bottom:349.044000pt;}
.y1d_c01262{bottom:371.462667pt;}
.y1c_c01262{bottom:393.882667pt;}
.y1b_c01262{bottom:416.301333pt;}
.y1a_c01262{bottom:438.721333pt;}
.y19_c01262{bottom:461.140000pt;}
.y18_c01262{bottom:483.560000pt;}
.y17_c01262{bottom:505.978667pt;}
.y16_c01262{bottom:528.398667pt;}
.y15_c01262{bottom:550.818667pt;}
.y14_c01262{bottom:573.237333pt;}
.y13_c01262{bottom:595.657333pt;}
.y12_c01262{bottom:618.076000pt;}
.y11_c01262{bottom:640.496000pt;}
.y10_c01262{bottom:662.914667pt;}
.yf_c01262{bottom:685.334667pt;}
.ye_c01262{bottom:707.753333pt;}
.yd_c01262{bottom:730.173333pt;}
.yc_c01262{bottom:752.592000pt;}
.yb_c01262{bottom:775.012000pt;}
.ya_c01262{bottom:797.430667pt;}
.y9_c01262{bottom:819.850667pt;}
.y8_c01262{bottom:842.269333pt;}
.y7_c01262{bottom:864.689333pt;}
.y6_c01262{bottom:887.108000pt;}
.y5_c01262{bottom:909.528000pt;}
.y4_c01262{bottom:931.946667pt;}
.y3_c01262{bottom:954.366667pt;}
.y2_c01262{bottom:1013.880000pt;}
.y1_c01262{bottom:1017.909333pt;}
.h3_c01262{height:43.636000pt;}
.h2_c01262{height:47.820000pt;}
.h4_c01262{height:58.340000pt;}
.h1_c01262{height:1123.333333pt;}
.h0_c01262{height:1123.653333pt;}
.w0_c01262{width:794.550667pt;}
.w1_c01262{width:794.666667pt;}
.x0_c01262{left:0.000000pt;}
.x1_c01262{left:112.298667pt;}
.x2_c01262{left:113.385333pt;}
.x3_c01262{left:135.204000pt;}
.x4_c01262{left:231.285333pt;}
}





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

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





.ff0_c01263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01263;src:url('chunks/assets/font_f5f351daf34cf8c32ab88663.woff2')format("woff");}.ff1_c01263{font-family:ff1_c01263;line-height:1.001000;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_c01263;src:url('chunks/assets/font_d5a085e651d7fb2a75ec3f8f.woff2')format("woff");}.ff2_c01263{font-family:ff2_c01263;line-height:1.000000;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_c01263;src:url('chunks/assets/font_506d64f83aca97d1c3f9d0fc.woff2')format("woff");}.ff3_c01263{font-family:ff3_c01263;line-height:1.000000;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_c01263{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_c01263{vertical-align:0.000000px;}
.ls1_c01263{letter-spacing:0.000000px;}
.ls0_c01263{letter-spacing:32.727000px;}
.sc__c01263{text-shadow:none;}
.sc0_c01263{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__c01263{-webkit-text-stroke:0px transparent;}
.sc0_c01263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c01263{word-spacing:-32.792454px;}
.ws10_c01263{word-spacing:0.000000px;}
.ws1_c01263{word-spacing:15.905322px;}
.ws7_c01263{word-spacing:21.730728px;}
.ws6_c01263{word-spacing:21.761682px;}
.ws5_c01263{word-spacing:21.796182px;}
.ws4_c01263{word-spacing:23.301624px;}
.ws0_c01263{word-spacing:23.312250px;}
.ws2_c01263{word-spacing:23.367078px;}
.wsc_c01263{word-spacing:25.915080px;}
.wsd_c01263{word-spacing:26.686398px;}
.ws8_c01263{word-spacing:26.689656px;}
.wsf_c01263{word-spacing:26.750898px;}
.wse_c01263{word-spacing:26.772156px;}
.ws9_c01263{word-spacing:26.793654px;}
.wsb_c01263{word-spacing:26.814672px;}
.ws3_c01263{word-spacing:32.661546px;}
._5_c01263{margin-left:-33.512448px;}
._4_c01263{margin-left:-31.745190px;}
._f_c01263{margin-left:-26.770686px;}
._14_c01263{margin-left:-13.297830px;}
._1a_c01263{margin-left:-8.916294px;}
._e_c01263{margin-left:-7.001334px;}
._2_c01263{margin-left:-5.143926px;}
._6_c01263{margin-left:-3.338154px;}
._3_c01263{margin-left:-1.767258px;}
._13_c01263{width:1.832712px;}
._19_c01263{width:4.380882px;}
._c_c01263{width:15.970776px;}
._17_c01263{width:19.341432px;}
._1_c01263{width:21.861636px;}
._15_c01263{width:24.661572px;}
._7_c01263{width:25.910580px;}
._18_c01263{width:27.368472px;}
._9_c01263{width:29.454300px;}
._a_c01263{width:31.469430px;}
._8_c01263{width:37.112418px;}
._11_c01263{width:39.650838px;}
._1b_c01263{width:41.189532px;}
._d_c01263{width:43.005522px;}
._b_c01263{width:45.883254px;}
._16_c01263{width:55.826250px;}
._10_c01263{width:62.439480px;}
._12_c01263{width:65.197662px;}
._0_c01263{width:1723.743630px;}
.fc0_c01263{color:rgb(0,0,0);}
.fs1_c01263{font-size:65.454000px;}
.fs0_c01263{font-size:71.730000px;}
.y0_c01263{bottom:0.000000px;}
.y1a_c01263{bottom:493.561500px;}
.y19_c01263{bottom:518.782500px;}
.y18_c01263{bottom:544.005000px;}
.y17_c01263{bottom:569.226000px;}
.y16_c01263{bottom:594.448500px;}
.y15_c01263{bottom:619.671000px;}
.y14_c01263{bottom:644.892000px;}
.y13_c01263{bottom:670.114500px;}
.y12_c01263{bottom:695.335500px;}
.y11_c01263{bottom:720.558000px;}
.y10_c01263{bottom:745.779000px;}
.yf_c01263{bottom:771.001500px;}
.ye_c01263{bottom:796.222500px;}
.yd_c01263{bottom:821.445000px;}
.yc_c01263{bottom:846.666000px;}
.yb_c01263{bottom:871.888500px;}
.ya_c01263{bottom:897.109500px;}
.y9_c01263{bottom:922.332000px;}
.y8_c01263{bottom:947.553000px;}
.y7_c01263{bottom:972.775500px;}
.y6_c01263{bottom:997.996500px;}
.y5_c01263{bottom:1023.219000px;}
.y4_c01263{bottom:1048.440000px;}
.y3_c01263{bottom:1073.662500px;}
.y2_c01263{bottom:1140.615000px;}
.y1_c01263{bottom:1145.148000px;}
.h3_c01263{height:49.090500px;}
.h2_c01263{height:53.797500px;}
.h1_c01263{height:1263.750000px;}
.h0_c01263{height:1264.110000px;}
.w0_c01263{width:893.869500px;}
.w1_c01263{width:894.000000px;}
.x0_c01263{left:0.000000px;}
.x1_c01263{left:126.336000px;}
.x2_c01263{left:127.558500px;}
.x3_c01263{left:152.104500px;}
@media print{
.v0_c01263{vertical-align:0.000000pt;}
.ls1_c01263{letter-spacing:0.000000pt;}
.ls0_c01263{letter-spacing:29.090667pt;}
.wsa_c01263{word-spacing:-29.148848pt;}
.ws10_c01263{word-spacing:0.000000pt;}
.ws1_c01263{word-spacing:14.138064pt;}
.ws7_c01263{word-spacing:19.316203pt;}
.ws6_c01263{word-spacing:19.343717pt;}
.ws5_c01263{word-spacing:19.374384pt;}
.ws4_c01263{word-spacing:20.712555pt;}
.ws0_c01263{word-spacing:20.722000pt;}
.ws2_c01263{word-spacing:20.770736pt;}
.wsc_c01263{word-spacing:23.035627pt;}
.wsd_c01263{word-spacing:23.721243pt;}
.ws8_c01263{word-spacing:23.724139pt;}
.wsf_c01263{word-spacing:23.778576pt;}
.wse_c01263{word-spacing:23.797472pt;}
.ws9_c01263{word-spacing:23.816581pt;}
.wsb_c01263{word-spacing:23.835264pt;}
.ws3_c01263{word-spacing:29.032485pt;}
._5_c01263{margin-left:-29.788843pt;}
._4_c01263{margin-left:-28.217947pt;}
._f_c01263{margin-left:-23.796165pt;}
._14_c01263{margin-left:-11.820293pt;}
._1a_c01263{margin-left:-7.925595pt;}
._e_c01263{margin-left:-6.223408pt;}
._2_c01263{margin-left:-4.572379pt;}
._6_c01263{margin-left:-2.967248pt;}
._3_c01263{margin-left:-1.570896pt;}
._13_c01263{width:1.629077pt;}
._19_c01263{width:3.894117pt;}
._c_c01263{width:14.196245pt;}
._17_c01263{width:17.192384pt;}
._1_c01263{width:19.432565pt;}
._15_c01263{width:21.921397pt;}
._7_c01263{width:23.031627pt;}
._18_c01263{width:24.327531pt;}
._9_c01263{width:26.181600pt;}
._a_c01263{width:27.972827pt;}
._8_c01263{width:32.988816pt;}
._11_c01263{width:35.245189pt;}
._1b_c01263{width:36.612917pt;}
._d_c01263{width:38.227131pt;}
._b_c01263{width:40.785115pt;}
._16_c01263{width:49.623333pt;}
._10_c01263{width:55.501760pt;}
._12_c01263{width:57.953477pt;}
._0_c01263{width:1532.216560pt;}
.fs1_c01263{font-size:58.181333pt;}
.fs0_c01263{font-size:63.760000pt;}
.y0_c01263{bottom:0.000000pt;}
.y1a_c01263{bottom:438.721333pt;}
.y19_c01263{bottom:461.140000pt;}
.y18_c01263{bottom:483.560000pt;}
.y17_c01263{bottom:505.978667pt;}
.y16_c01263{bottom:528.398667pt;}
.y15_c01263{bottom:550.818667pt;}
.y14_c01263{bottom:573.237333pt;}
.y13_c01263{bottom:595.657333pt;}
.y12_c01263{bottom:618.076000pt;}
.y11_c01263{bottom:640.496000pt;}
.y10_c01263{bottom:662.914667pt;}
.yf_c01263{bottom:685.334667pt;}
.ye_c01263{bottom:707.753333pt;}
.yd_c01263{bottom:730.173333pt;}
.yc_c01263{bottom:752.592000pt;}
.yb_c01263{bottom:775.012000pt;}
.ya_c01263{bottom:797.430667pt;}
.y9_c01263{bottom:819.850667pt;}
.y8_c01263{bottom:842.269333pt;}
.y7_c01263{bottom:864.689333pt;}
.y6_c01263{bottom:887.108000pt;}
.y5_c01263{bottom:909.528000pt;}
.y4_c01263{bottom:931.946667pt;}
.y3_c01263{bottom:954.366667pt;}
.y2_c01263{bottom:1013.880000pt;}
.y1_c01263{bottom:1017.909333pt;}
.h3_c01263{height:43.636000pt;}
.h2_c01263{height:47.820000pt;}
.h1_c01263{height:1123.333333pt;}
.h0_c01263{height:1123.653333pt;}
.w0_c01263{width:794.550667pt;}
.w1_c01263{width:794.666667pt;}
.x0_c01263{left:0.000000pt;}
.x1_c01263{left:112.298667pt;}
.x2_c01263{left:113.385333pt;}
.x3_c01263{left:135.204000pt;}
}





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

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





.ff0_c01264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01264;src:url('chunks/assets/font_3b7267e923dcfb4a9a715ce8.woff2')format("woff");}.ff1_c01264{font-family:ff1_c01264;line-height:1.001000;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_c01264;src:url('chunks/assets/font_e84ab1f9629691f572f4973b.woff2')format("woff");}.ff2_c01264{font-family:ff2_c01264;line-height:1.001000;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_c01264{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_c01264{vertical-align:0.000000px;}
.ls0_c01264{letter-spacing:0.000000px;}
.sc__c01264{text-shadow:none;}
.sc0_c01264{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__c01264{-webkit-text-stroke:0px transparent;}
.sc0_c01264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01264{word-spacing:-0.071730px;}
.ws3_c01264{word-spacing:0.000000px;}
.ws0_c01264{word-spacing:23.312250px;}
.ws1_c01264{word-spacing:27.735810px;}
._2_c01264{margin-left:-27.329130px;}
._1_c01264{margin-left:-8.033760px;}
._4_c01264{margin-left:-5.810130px;}
._5_c01264{margin-left:-3.450810px;}
._3_c01264{margin-left:-2.008440px;}
._0_c01264{width:1723.743630px;}
.fc0_c01264{color:rgb(0,0,0);}
.fs0_c01264{font-size:71.730000px;}
.y0_c01264{bottom:0.000000px;}
.y3_c01264{bottom:347.440500px;}
.y2_c01264{bottom:1140.615000px;}
.y1_c01264{bottom:1145.148000px;}
.h2_c01264{height:53.797500px;}
.h1_c01264{height:1263.750000px;}
.h0_c01264{height:1264.110000px;}
.w0_c01264{width:893.869500px;}
.w1_c01264{width:894.000000px;}
.x0_c01264{left:0.000000px;}
.x1_c01264{left:126.336000px;}
.x2_c01264{left:127.558500px;}
.x3_c01264{left:221.358000px;}
@media print{
.v0_c01264{vertical-align:0.000000pt;}
.ls0_c01264{letter-spacing:0.000000pt;}
.ws2_c01264{word-spacing:-0.063760pt;}
.ws3_c01264{word-spacing:0.000000pt;}
.ws0_c01264{word-spacing:20.722000pt;}
.ws1_c01264{word-spacing:24.654053pt;}
._2_c01264{margin-left:-24.292560pt;}
._1_c01264{margin-left:-7.141120pt;}
._4_c01264{margin-left:-5.164560pt;}
._5_c01264{margin-left:-3.067387pt;}
._3_c01264{margin-left:-1.785280pt;}
._0_c01264{width:1532.216560pt;}
.fs0_c01264{font-size:63.760000pt;}
.y0_c01264{bottom:0.000000pt;}
.y3_c01264{bottom:308.836000pt;}
.y2_c01264{bottom:1013.880000pt;}
.y1_c01264{bottom:1017.909333pt;}
.h2_c01264{height:47.820000pt;}
.h1_c01264{height:1123.333333pt;}
.h0_c01264{height:1123.653333pt;}
.w0_c01264{width:794.550667pt;}
.w1_c01264{width:794.666667pt;}
.x0_c01264{left:0.000000pt;}
.x1_c01264{left:112.298667pt;}
.x2_c01264{left:113.385333pt;}
.x3_c01264{left:196.762667pt;}
}





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

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





.ff0_c01265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01265;src:url('chunks/assets/font_81af0928f549d608b6558d90.woff2')format("woff");}.ff1_c01265{font-family:ff1_c01265;line-height:1.001000;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_c01265;src:url('chunks/assets/font_f9b075aabce52a6786586024.woff2')format("woff");}.ff2_c01265{font-family:ff2_c01265;line-height:1.001000;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_c01265{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_c01265{vertical-align:0.000000px;}
.ls0_c01265{letter-spacing:0.000000px;}
.sc__c01265{text-shadow:none;}
.sc0_c01265{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__c01265{-webkit-text-stroke:0px transparent;}
.sc0_c01265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01265{word-spacing:-0.071730px;}
.ws3_c01265{word-spacing:0.000000px;}
.ws0_c01265{word-spacing:23.312250px;}
.ws1_c01265{word-spacing:25.033770px;}
._2_c01265{margin-left:-27.329130px;}
._1_c01265{margin-left:-8.033760px;}
._4_c01265{margin-left:-5.810130px;}
._5_c01265{margin-left:-3.594270px;}
._3_c01265{margin-left:-2.008440px;}
._6_c01265{width:28.789290px;}
._0_c01265{width:1723.743630px;}
.fc0_c01265{color:rgb(0,0,0);}
.fs0_c01265{font-size:71.730000px;}
.y0_c01265{bottom:0.000000px;}
.y3_c01265{bottom:193.537500px;}
.y2_c01265{bottom:1140.615000px;}
.y1_c01265{bottom:1145.148000px;}
.h2_c01265{height:53.797500px;}
.h1_c01265{height:1263.750000px;}
.h0_c01265{height:1264.110000px;}
.w0_c01265{width:893.869500px;}
.w1_c01265{width:894.000000px;}
.x0_c01265{left:0.000000px;}
.x1_c01265{left:126.336000px;}
.x2_c01265{left:127.558500px;}
.x3_c01265{left:240.298500px;}
@media print{
.v0_c01265{vertical-align:0.000000pt;}
.ls0_c01265{letter-spacing:0.000000pt;}
.ws2_c01265{word-spacing:-0.063760pt;}
.ws3_c01265{word-spacing:0.000000pt;}
.ws0_c01265{word-spacing:20.722000pt;}
.ws1_c01265{word-spacing:22.252240pt;}
._2_c01265{margin-left:-24.292560pt;}
._1_c01265{margin-left:-7.141120pt;}
._4_c01265{margin-left:-5.164560pt;}
._5_c01265{margin-left:-3.194907pt;}
._3_c01265{margin-left:-1.785280pt;}
._6_c01265{width:25.590480pt;}
._0_c01265{width:1532.216560pt;}
.fs0_c01265{font-size:63.760000pt;}
.y0_c01265{bottom:0.000000pt;}
.y3_c01265{bottom:172.033333pt;}
.y2_c01265{bottom:1013.880000pt;}
.y1_c01265{bottom:1017.909333pt;}
.h2_c01265{height:47.820000pt;}
.h1_c01265{height:1123.333333pt;}
.h0_c01265{height:1123.653333pt;}
.w0_c01265{width:794.550667pt;}
.w1_c01265{width:794.666667pt;}
.x0_c01265{left:0.000000pt;}
.x1_c01265{left:112.298667pt;}
.x2_c01265{left:113.385333pt;}
.x3_c01265{left:213.598667pt;}
}





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

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





.ff0_c01266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01266;src:url('chunks/assets/font_50842734eb5c840490a2c918.woff2')format("woff");}.ff1_c01266{font-family:ff1_c01266;line-height:1.001000;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_c01266{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_c01266{vertical-align:0.000000px;}
.ls0_c01266{letter-spacing:0.000000px;}
.sc__c01266{text-shadow:none;}
.sc0_c01266{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__c01266{-webkit-text-stroke:0px transparent;}
.sc0_c01266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01266{word-spacing:0.000000px;}
.ws0_c01266{word-spacing:23.312250px;}
._1_c01266{margin-left:-35.219430px;}
._2_c01266{margin-left:-1.936710px;}
._3_c01266{width:1.936710px;}
._0_c01266{width:1723.743630px;}
.fc0_c01266{color:rgb(0,0,0);}
.fs0_c01266{font-size:71.730000px;}
.y0_c01266{bottom:0.000000px;}
.y3_c01266{bottom:360.375000px;}
.y2_c01266{bottom:1140.615000px;}
.y1_c01266{bottom:1145.148000px;}
.h2_c01266{height:53.797500px;}
.h1_c01266{height:1263.750000px;}
.h0_c01266{height:1264.110000px;}
.w0_c01266{width:893.869500px;}
.w1_c01266{width:894.000000px;}
.x0_c01266{left:0.000000px;}
.x1_c01266{left:126.336000px;}
.x2_c01266{left:127.558500px;}
.x3_c01266{left:262.575000px;}
@media print{
.v0_c01266{vertical-align:0.000000pt;}
.ls0_c01266{letter-spacing:0.000000pt;}
.ws1_c01266{word-spacing:0.000000pt;}
.ws0_c01266{word-spacing:20.722000pt;}
._1_c01266{margin-left:-31.306160pt;}
._2_c01266{margin-left:-1.721520pt;}
._3_c01266{width:1.721520pt;}
._0_c01266{width:1532.216560pt;}
.fs0_c01266{font-size:63.760000pt;}
.y0_c01266{bottom:0.000000pt;}
.y3_c01266{bottom:320.333333pt;}
.y2_c01266{bottom:1013.880000pt;}
.y1_c01266{bottom:1017.909333pt;}
.h2_c01266{height:47.820000pt;}
.h1_c01266{height:1123.333333pt;}
.h0_c01266{height:1123.653333pt;}
.w0_c01266{width:794.550667pt;}
.w1_c01266{width:794.666667pt;}
.x0_c01266{left:0.000000pt;}
.x1_c01266{left:112.298667pt;}
.x2_c01266{left:113.385333pt;}
.x3_c01266{left:233.400000pt;}
}





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

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





.ff0_c01267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01267;src:url('chunks/assets/font_8709dad877c13c88de44efb7.woff2')format("woff");}.ff1_c01267{font-family:ff1_c01267;line-height:1.001000;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_c01267;src:url('chunks/assets/font_61c1608080c77ad9075b3fc9.woff2')format("woff");}.ff2_c01267{font-family:ff2_c01267;line-height:1.001000;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_c01267{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_c01267{vertical-align:0.000000px;}
.ls0_c01267{letter-spacing:0.000000px;}
.sc__c01267{text-shadow:none;}
.sc0_c01267{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__c01267{-webkit-text-stroke:0px transparent;}
.sc0_c01267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01267{word-spacing:-0.071730px;}
.ws3_c01267{word-spacing:0.000000px;}
.ws0_c01267{word-spacing:23.312250px;}
.ws1_c01267{word-spacing:25.033770px;}
._1_c01267{margin-left:-3.750060px;}
._2_c01267{width:28.813050px;}
._0_c01267{width:1723.743630px;}
.fc0_c01267{color:rgb(0,0,0);}
.fs0_c01267{font-size:71.730000px;}
.y0_c01267{bottom:0.000000px;}
.y3_c01267{bottom:106.635000px;}
.y2_c01267{bottom:1140.615000px;}
.y1_c01267{bottom:1145.148000px;}
.h2_c01267{height:53.797500px;}
.h1_c01267{height:1263.750000px;}
.h0_c01267{height:1264.110000px;}
.w0_c01267{width:893.869500px;}
.w1_c01267{width:894.000000px;}
.x0_c01267{left:0.000000px;}
.x1_c01267{left:126.336000px;}
.x2_c01267{left:127.558500px;}
.x3_c01267{left:202.996500px;}
@media print{
.v0_c01267{vertical-align:0.000000pt;}
.ls0_c01267{letter-spacing:0.000000pt;}
.ws2_c01267{word-spacing:-0.063760pt;}
.ws3_c01267{word-spacing:0.000000pt;}
.ws0_c01267{word-spacing:20.722000pt;}
.ws1_c01267{word-spacing:22.252240pt;}
._1_c01267{margin-left:-3.333387pt;}
._2_c01267{width:25.611600pt;}
._0_c01267{width:1532.216560pt;}
.fs0_c01267{font-size:63.760000pt;}
.y0_c01267{bottom:0.000000pt;}
.y3_c01267{bottom:94.786667pt;}
.y2_c01267{bottom:1013.880000pt;}
.y1_c01267{bottom:1017.909333pt;}
.h2_c01267{height:47.820000pt;}
.h1_c01267{height:1123.333333pt;}
.h0_c01267{height:1123.653333pt;}
.w0_c01267{width:794.550667pt;}
.w1_c01267{width:794.666667pt;}
.x0_c01267{left:0.000000pt;}
.x1_c01267{left:112.298667pt;}
.x2_c01267{left:113.385333pt;}
.x3_c01267{left:180.441333pt;}
}





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

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





.ff0_c01268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01268;src:url('chunks/assets/font_81562900563aeeff6fe891db.woff2')format("woff");}.ff1_c01268{font-family:ff1_c01268;line-height:1.001000;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_c01268;src:url('chunks/assets/font_244c64600f68ddf1d37f91ef.woff2')format("woff");}.ff2_c01268{font-family:ff2_c01268;line-height:1.001000;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_c01268{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_c01268{vertical-align:0.000000px;}
.ls0_c01268{letter-spacing:0.000000px;}
.sc__c01268{text-shadow:none;}
.sc0_c01268{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__c01268{-webkit-text-stroke:0px transparent;}
.sc0_c01268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01268{word-spacing:-0.071730px;}
.ws3_c01268{word-spacing:0.000000px;}
.ws0_c01268{word-spacing:23.312250px;}
.ws1_c01268{word-spacing:25.033770px;}
._2_c01268{margin-left:-5.881860px;}
._3_c01268{margin-left:-3.575400px;}
._1_c01268{margin-left:-2.080170px;}
._4_c01268{width:30.853560px;}
._0_c01268{width:1723.743630px;}
.fc0_c01268{color:rgb(0,0,0);}
.fs0_c01268{font-size:71.730000px;}
.y0_c01268{bottom:0.000000px;}
.y3_c01268{bottom:113.649000px;}
.y2_c01268{bottom:1140.615000px;}
.y1_c01268{bottom:1145.148000px;}
.h2_c01268{height:53.797500px;}
.h1_c01268{height:1263.750000px;}
.h0_c01268{height:1264.110000px;}
.w0_c01268{width:893.869500px;}
.w1_c01268{width:894.000000px;}
.x0_c01268{left:0.000000px;}
.x1_c01268{left:126.336000px;}
.x2_c01268{left:127.558500px;}
.x3_c01268{left:212.842500px;}
@media print{
.v0_c01268{vertical-align:0.000000pt;}
.ls0_c01268{letter-spacing:0.000000pt;}
.ws2_c01268{word-spacing:-0.063760pt;}
.ws3_c01268{word-spacing:0.000000pt;}
.ws0_c01268{word-spacing:20.722000pt;}
.ws1_c01268{word-spacing:22.252240pt;}
._2_c01268{margin-left:-5.228320pt;}
._3_c01268{margin-left:-3.178133pt;}
._1_c01268{margin-left:-1.849040pt;}
._4_c01268{width:27.425387pt;}
._0_c01268{width:1532.216560pt;}
.fs0_c01268{font-size:63.760000pt;}
.y0_c01268{bottom:0.000000pt;}
.y3_c01268{bottom:101.021333pt;}
.y2_c01268{bottom:1013.880000pt;}
.y1_c01268{bottom:1017.909333pt;}
.h2_c01268{height:47.820000pt;}
.h1_c01268{height:1123.333333pt;}
.h0_c01268{height:1123.653333pt;}
.w0_c01268{width:794.550667pt;}
.w1_c01268{width:794.666667pt;}
.x0_c01268{left:0.000000pt;}
.x1_c01268{left:112.298667pt;}
.x2_c01268{left:113.385333pt;}
.x3_c01268{left:189.193333pt;}
}





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

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





.ff0_c01269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01269;src:url('chunks/assets/font_6c631aca373dd81211eac29a.woff2')format("woff");}.ff1_c01269{font-family:ff1_c01269;line-height:1.001000;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_c01269;src:url('chunks/assets/font_d908add6ebead6b628e1a4d2.woff2')format("woff");}.ff2_c01269{font-family:ff2_c01269;line-height:1.001000;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_c01269{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_c01269{vertical-align:0.000000px;}
.ls0_c01269{letter-spacing:0.000000px;}
.sc__c01269{text-shadow:none;}
.sc0_c01269{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__c01269{-webkit-text-stroke:0px transparent;}
.sc0_c01269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01269{word-spacing:-0.071730px;}
.ws3_c01269{word-spacing:0.000000px;}
.ws0_c01269{word-spacing:23.312250px;}
.ws1_c01269{word-spacing:28.739280px;}
._4_c01269{margin-left:-37.658250px;}
._2_c01269{margin-left:-33.210990px;}
._1_c01269{margin-left:-2.080170px;}
._3_c01269{width:1.890840px;}
._0_c01269{width:1723.743630px;}
.fc0_c01269{color:rgb(0,0,0);}
.fs0_c01269{font-size:71.730000px;}
.y0_c01269{bottom:0.000000px;}
.y3_c01269{bottom:98.925000px;}
.y2_c01269{bottom:1140.615000px;}
.y1_c01269{bottom:1145.148000px;}
.h2_c01269{height:53.797500px;}
.h1_c01269{height:1263.750000px;}
.h0_c01269{height:1264.110000px;}
.w0_c01269{width:893.869500px;}
.w1_c01269{width:894.000000px;}
.x0_c01269{left:0.000000px;}
.x1_c01269{left:126.336000px;}
.x2_c01269{left:127.558500px;}
.x3_c01269{left:286.413000px;}
@media print{
.v0_c01269{vertical-align:0.000000pt;}
.ls0_c01269{letter-spacing:0.000000pt;}
.ws2_c01269{word-spacing:-0.063760pt;}
.ws3_c01269{word-spacing:0.000000pt;}
.ws0_c01269{word-spacing:20.722000pt;}
.ws1_c01269{word-spacing:25.546027pt;}
._4_c01269{margin-left:-33.474000pt;}
._2_c01269{margin-left:-29.520880pt;}
._1_c01269{margin-left:-1.849040pt;}
._3_c01269{width:1.680747pt;}
._0_c01269{width:1532.216560pt;}
.fs0_c01269{font-size:63.760000pt;}
.y0_c01269{bottom:0.000000pt;}
.y3_c01269{bottom:87.933333pt;}
.y2_c01269{bottom:1013.880000pt;}
.y1_c01269{bottom:1017.909333pt;}
.h2_c01269{height:47.820000pt;}
.h1_c01269{height:1123.333333pt;}
.h0_c01269{height:1123.653333pt;}
.w0_c01269{width:794.550667pt;}
.w1_c01269{width:794.666667pt;}
.x0_c01269{left:0.000000pt;}
.x1_c01269{left:112.298667pt;}
.x2_c01269{left:113.385333pt;}
.x3_c01269{left:254.589333pt;}
}





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

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





.ff0_c01270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01270;src:url('chunks/assets/font_02b44c109b5c96d4b3187de7.woff2')format("woff");}.ff1_c01270{font-family:ff1_c01270;line-height:1.001000;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_c01270{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_c01270{vertical-align:0.000000px;}
.ls0_c01270{letter-spacing:0.000000px;}
.sc__c01270{text-shadow:none;}
.sc0_c01270{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__c01270{-webkit-text-stroke:0px transparent;}
.sc0_c01270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01270{word-spacing:0.000000px;}
.ws0_c01270{word-spacing:23.312250px;}
._2_c01270{margin-left:-33.210990px;}
._4_c01270{margin-left:-27.400860px;}
._3_c01270{margin-left:-7.316460px;}
._1_c01270{margin-left:-2.080170px;}
._0_c01270{width:1723.743630px;}
.fc0_c01270{color:rgb(0,0,0);}
.fs0_c01270{font-size:71.730000px;}
.y0_c01270{bottom:0.000000px;}
.y3_c01270{bottom:409.240500px;}
.y2_c01270{bottom:1140.615000px;}
.y1_c01270{bottom:1145.148000px;}
.h2_c01270{height:53.797500px;}
.h1_c01270{height:1263.750000px;}
.h0_c01270{height:1264.110000px;}
.w0_c01270{width:893.869500px;}
.w1_c01270{width:894.000000px;}
.x0_c01270{left:0.000000px;}
.x1_c01270{left:126.336000px;}
.x2_c01270{left:127.558500px;}
.x3_c01270{left:146.536500px;}
@media print{
.v0_c01270{vertical-align:0.000000pt;}
.ls0_c01270{letter-spacing:0.000000pt;}
.ws1_c01270{word-spacing:0.000000pt;}
.ws0_c01270{word-spacing:20.722000pt;}
._2_c01270{margin-left:-29.520880pt;}
._4_c01270{margin-left:-24.356320pt;}
._3_c01270{margin-left:-6.503520pt;}
._1_c01270{margin-left:-1.849040pt;}
._0_c01270{width:1532.216560pt;}
.fs0_c01270{font-size:63.760000pt;}
.y0_c01270{bottom:0.000000pt;}
.y3_c01270{bottom:363.769333pt;}
.y2_c01270{bottom:1013.880000pt;}
.y1_c01270{bottom:1017.909333pt;}
.h2_c01270{height:47.820000pt;}
.h1_c01270{height:1123.333333pt;}
.h0_c01270{height:1123.653333pt;}
.w0_c01270{width:794.550667pt;}
.w1_c01270{width:794.666667pt;}
.x0_c01270{left:0.000000pt;}
.x1_c01270{left:112.298667pt;}
.x2_c01270{left:113.385333pt;}
.x3_c01270{left:130.254667pt;}
}





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

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





.ff0_c01271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01271;src:url('chunks/assets/font_8a11299e2ceb88e2dab78a61.woff2')format("woff");}.ff1_c01271{font-family:ff1_c01271;line-height:1.001000;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_c01271{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_c01271{vertical-align:0.000000px;}
.ls0_c01271{letter-spacing:0.000000px;}
.sc__c01271{text-shadow:none;}
.sc0_c01271{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__c01271{-webkit-text-stroke:0px transparent;}
.sc0_c01271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01271{word-spacing:0.000000px;}
.ws0_c01271{word-spacing:23.312250px;}
._5_c01271{margin-left:-37.084410px;}
._3_c01271{margin-left:-34.932510px;}
._2_c01271{margin-left:-33.210990px;}
._1_c01271{margin-left:-2.080170px;}
._4_c01271{width:2.008440px;}
._0_c01271{width:1723.743630px;}
.fc0_c01271{color:rgb(0,0,0);}
.fs0_c01271{font-size:71.730000px;}
.y0_c01271{bottom:0.000000px;}
.y3_c01271{bottom:193.360500px;}
.y2_c01271{bottom:1140.615000px;}
.y1_c01271{bottom:1145.148000px;}
.h2_c01271{height:53.797500px;}
.h1_c01271{height:1263.750000px;}
.h0_c01271{height:1264.110000px;}
.w0_c01271{width:893.869500px;}
.w1_c01271{width:894.000000px;}
.x0_c01271{left:0.000000px;}
.x1_c01271{left:126.336000px;}
.x2_c01271{left:127.558500px;}
.x3_c01271{left:158.418000px;}
@media print{
.v0_c01271{vertical-align:0.000000pt;}
.ls0_c01271{letter-spacing:0.000000pt;}
.ws1_c01271{word-spacing:0.000000pt;}
.ws0_c01271{word-spacing:20.722000pt;}
._5_c01271{margin-left:-32.963920pt;}
._3_c01271{margin-left:-31.051120pt;}
._2_c01271{margin-left:-29.520880pt;}
._1_c01271{margin-left:-1.849040pt;}
._4_c01271{width:1.785280pt;}
._0_c01271{width:1532.216560pt;}
.fs0_c01271{font-size:63.760000pt;}
.y0_c01271{bottom:0.000000pt;}
.y3_c01271{bottom:171.876000pt;}
.y2_c01271{bottom:1013.880000pt;}
.y1_c01271{bottom:1017.909333pt;}
.h2_c01271{height:47.820000pt;}
.h1_c01271{height:1123.333333pt;}
.h0_c01271{height:1123.653333pt;}
.w0_c01271{width:794.550667pt;}
.w1_c01271{width:794.666667pt;}
.x0_c01271{left:0.000000pt;}
.x1_c01271{left:112.298667pt;}
.x2_c01271{left:113.385333pt;}
.x3_c01271{left:140.816000pt;}
}





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

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





.ff0_c01272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01272;src:url('chunks/assets/font_b15b2e5c4d8c63987de05c48.woff2')format("woff");}.ff1_c01272{font-family:ff1_c01272;line-height:1.001000;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_c01272{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_c01272{vertical-align:0.000000px;}
.ls0_c01272{letter-spacing:0.000000px;}
.sc__c01272{text-shadow:none;}
.sc0_c01272{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__c01272{-webkit-text-stroke:0px transparent;}
.sc0_c01272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01272{word-spacing:0.000000px;}
.ws0_c01272{word-spacing:23.312250px;}
._4_c01272{margin-left:-37.012680px;}
._2_c01272{margin-left:-35.147700px;}
._5_c01272{margin-left:-33.282720px;}
._3_c01272{margin-left:-1.864980px;}
._1_c01272{width:1.864980px;}
._0_c01272{width:1723.743630px;}
.fc0_c01272{color:rgb(0,0,0);}
.fs0_c01272{font-size:71.730000px;}
.y0_c01272{bottom:0.000000px;}
.y3_c01272{bottom:361.125000px;}
.y2_c01272{bottom:1140.615000px;}
.y1_c01272{bottom:1145.148000px;}
.h2_c01272{height:53.797500px;}
.h1_c01272{height:1263.750000px;}
.h0_c01272{height:1264.110000px;}
.w0_c01272{width:893.869500px;}
.w1_c01272{width:894.000000px;}
.x0_c01272{left:0.000000px;}
.x1_c01272{left:126.336000px;}
.x2_c01272{left:127.558500px;}
.x3_c01272{left:258.991500px;}
@media print{
.v0_c01272{vertical-align:0.000000pt;}
.ls0_c01272{letter-spacing:0.000000pt;}
.ws1_c01272{word-spacing:0.000000pt;}
.ws0_c01272{word-spacing:20.722000pt;}
._4_c01272{margin-left:-32.900160pt;}
._2_c01272{margin-left:-31.242400pt;}
._5_c01272{margin-left:-29.584640pt;}
._3_c01272{margin-left:-1.657760pt;}
._1_c01272{width:1.657760pt;}
._0_c01272{width:1532.216560pt;}
.fs0_c01272{font-size:63.760000pt;}
.y0_c01272{bottom:0.000000pt;}
.y3_c01272{bottom:321.000000pt;}
.y2_c01272{bottom:1013.880000pt;}
.y1_c01272{bottom:1017.909333pt;}
.h2_c01272{height:47.820000pt;}
.h1_c01272{height:1123.333333pt;}
.h0_c01272{height:1123.653333pt;}
.w0_c01272{width:794.550667pt;}
.w1_c01272{width:794.666667pt;}
.x0_c01272{left:0.000000pt;}
.x1_c01272{left:112.298667pt;}
.x2_c01272{left:113.385333pt;}
.x3_c01272{left:230.214667pt;}
}





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

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





.ff0_c01273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01273;src:url('chunks/assets/font_d6cd4065dbf06e5370c3a483.woff2')format("woff");}.ff1_c01273{font-family:ff1_c01273;line-height:1.001000;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_c01273{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_c01273{vertical-align:0.000000px;}
.ls0_c01273{letter-spacing:0.000000px;}
.sc__c01273{text-shadow:none;}
.sc0_c01273{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__c01273{-webkit-text-stroke:0px transparent;}
.sc0_c01273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01273{word-spacing:0.000000px;}
.ws0_c01273{word-spacing:23.312250px;}
._2_c01273{margin-left:-33.210990px;}
._3_c01273{margin-left:-5.666670px;}
._1_c01273{margin-left:-2.080170px;}
._0_c01273{width:1723.743630px;}
.fc0_c01273{color:rgb(0,0,0);}
.fs0_c01273{font-size:71.730000px;}
.y0_c01273{bottom:0.000000px;}
.y3_c01273{bottom:171.390000px;}
.y2_c01273{bottom:1140.615000px;}
.y1_c01273{bottom:1145.148000px;}
.h2_c01273{height:53.797500px;}
.h1_c01273{height:1263.750000px;}
.h0_c01273{height:1264.110000px;}
.w0_c01273{width:893.869500px;}
.w1_c01273{width:894.000000px;}
.x0_c01273{left:0.000000px;}
.x1_c01273{left:126.336000px;}
.x2_c01273{left:127.558500px;}
.x3_c01273{left:191.656500px;}
@media print{
.v0_c01273{vertical-align:0.000000pt;}
.ls0_c01273{letter-spacing:0.000000pt;}
.ws1_c01273{word-spacing:0.000000pt;}
.ws0_c01273{word-spacing:20.722000pt;}
._2_c01273{margin-left:-29.520880pt;}
._3_c01273{margin-left:-5.037040pt;}
._1_c01273{margin-left:-1.849040pt;}
._0_c01273{width:1532.216560pt;}
.fs0_c01273{font-size:63.760000pt;}
.y0_c01273{bottom:0.000000pt;}
.y3_c01273{bottom:152.346667pt;}
.y2_c01273{bottom:1013.880000pt;}
.y1_c01273{bottom:1017.909333pt;}
.h2_c01273{height:47.820000pt;}
.h1_c01273{height:1123.333333pt;}
.h0_c01273{height:1123.653333pt;}
.w0_c01273{width:794.550667pt;}
.w1_c01273{width:794.666667pt;}
.x0_c01273{left:0.000000pt;}
.x1_c01273{left:112.298667pt;}
.x2_c01273{left:113.385333pt;}
.x3_c01273{left:170.361333pt;}
}





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

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





.ff0_c01274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01274;src:url('chunks/assets/font_733eb1758c3c301f3d00a475.woff2')format("woff");}.ff1_c01274{font-family:ff1_c01274;line-height:1.001000;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_c01274{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_c01274{vertical-align:0.000000px;}
.ls0_c01274{letter-spacing:0.000000px;}
.sc__c01274{text-shadow:none;}
.sc0_c01274{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__c01274{-webkit-text-stroke:0px transparent;}
.sc0_c01274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01274{word-spacing:0.000000px;}
.ws0_c01274{word-spacing:23.312250px;}
._2_c01274{margin-left:-33.210990px;}
._1_c01274{margin-left:-2.080170px;}
._3_c01274{width:2.008440px;}
._0_c01274{width:1723.743630px;}
.fc0_c01274{color:rgb(0,0,0);}
.fs0_c01274{font-size:71.730000px;}
.y0_c01274{bottom:0.000000px;}
.y3_c01274{bottom:335.697000px;}
.y2_c01274{bottom:1140.615000px;}
.y1_c01274{bottom:1145.148000px;}
.h2_c01274{height:53.797500px;}
.h1_c01274{height:1263.750000px;}
.h0_c01274{height:1264.110000px;}
.w0_c01274{width:893.869500px;}
.w1_c01274{width:894.000000px;}
.x0_c01274{left:0.000000px;}
.x1_c01274{left:126.336000px;}
.x2_c01274{left:127.558500px;}
.x3_c01274{left:199.908000px;}
@media print{
.v0_c01274{vertical-align:0.000000pt;}
.ls0_c01274{letter-spacing:0.000000pt;}
.ws1_c01274{word-spacing:0.000000pt;}
.ws0_c01274{word-spacing:20.722000pt;}
._2_c01274{margin-left:-29.520880pt;}
._1_c01274{margin-left:-1.849040pt;}
._3_c01274{width:1.785280pt;}
._0_c01274{width:1532.216560pt;}
.fs0_c01274{font-size:63.760000pt;}
.y0_c01274{bottom:0.000000pt;}
.y3_c01274{bottom:298.397333pt;}
.y2_c01274{bottom:1013.880000pt;}
.y1_c01274{bottom:1017.909333pt;}
.h2_c01274{height:47.820000pt;}
.h1_c01274{height:1123.333333pt;}
.h0_c01274{height:1123.653333pt;}
.w0_c01274{width:794.550667pt;}
.w1_c01274{width:794.666667pt;}
.x0_c01274{left:0.000000pt;}
.x1_c01274{left:112.298667pt;}
.x2_c01274{left:113.385333pt;}
.x3_c01274{left:177.696000pt;}
}





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

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





.ff0_c01275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01275;src:url('chunks/assets/font_3a5b2b70e735147b4149a01a.woff2')format("woff");}.ff1_c01275{font-family:ff1_c01275;line-height:1.001000;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_c01275;src:url('chunks/assets/font_c8565941a4ae9951b4bddcf0.woff2')format("woff");}.ff2_c01275{font-family:ff2_c01275;line-height:1.001000;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_c01275{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_c01275{vertical-align:0.000000px;}
.ls0_c01275{letter-spacing:0.000000px;}
.sc__c01275{text-shadow:none;}
.sc0_c01275{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__c01275{-webkit-text-stroke:0px transparent;}
.sc0_c01275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01275{word-spacing:-0.071730px;}
.ws3_c01275{word-spacing:0.000000px;}
.ws0_c01275{word-spacing:23.312250px;}
.ws1_c01275{word-spacing:25.033770px;}
._2_c01275{margin-left:-33.210990px;}
._3_c01275{margin-left:-5.381700px;}
._1_c01275{margin-left:-2.080170px;}
._4_c01275{width:28.811280px;}
._0_c01275{width:1723.743630px;}
.fc0_c01275{color:rgb(0,0,0);}
.fs0_c01275{font-size:71.730000px;}
.y0_c01275{bottom:0.000000px;}
.y3_c01275{bottom:167.226000px;}
.y2_c01275{bottom:1140.615000px;}
.y1_c01275{bottom:1145.148000px;}
.h2_c01275{height:53.797500px;}
.h1_c01275{height:1263.750000px;}
.h0_c01275{height:1264.110000px;}
.w0_c01275{width:893.869500px;}
.w1_c01275{width:894.000000px;}
.x0_c01275{left:0.000000px;}
.x1_c01275{left:126.336000px;}
.x2_c01275{left:127.558500px;}
.x3_c01275{left:256.845000px;}
@media print{
.v0_c01275{vertical-align:0.000000pt;}
.ls0_c01275{letter-spacing:0.000000pt;}
.ws2_c01275{word-spacing:-0.063760pt;}
.ws3_c01275{word-spacing:0.000000pt;}
.ws0_c01275{word-spacing:20.722000pt;}
.ws1_c01275{word-spacing:22.252240pt;}
._2_c01275{margin-left:-29.520880pt;}
._3_c01275{margin-left:-4.783733pt;}
._1_c01275{margin-left:-1.849040pt;}
._4_c01275{width:25.610027pt;}
._0_c01275{width:1532.216560pt;}
.fs0_c01275{font-size:63.760000pt;}
.y0_c01275{bottom:0.000000pt;}
.y3_c01275{bottom:148.645333pt;}
.y2_c01275{bottom:1013.880000pt;}
.y1_c01275{bottom:1017.909333pt;}
.h2_c01275{height:47.820000pt;}
.h1_c01275{height:1123.333333pt;}
.h0_c01275{height:1123.653333pt;}
.w0_c01275{width:794.550667pt;}
.w1_c01275{width:794.666667pt;}
.x0_c01275{left:0.000000pt;}
.x1_c01275{left:112.298667pt;}
.x2_c01275{left:113.385333pt;}
.x3_c01275{left:228.306667pt;}
}





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

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





.ff0_c01276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01276;src:url('chunks/assets/font_aa53c767e4cdf4061b7d94ef.woff2')format("woff");}.ff1_c01276{font-family:ff1_c01276;line-height:1.001000;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_c01276{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_c01276{vertical-align:0.000000px;}
.ls0_c01276{letter-spacing:0.000000px;}
.sc__c01276{text-shadow:none;}
.sc0_c01276{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__c01276{-webkit-text-stroke:0px transparent;}
.sc0_c01276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01276{word-spacing:0.000000px;}
.ws0_c01276{word-spacing:23.312250px;}
._1_c01276{margin-left:-35.362890px;}
._2_c01276{margin-left:-1.936710px;}
._0_c01276{width:1723.743630px;}
.fc0_c01276{color:rgb(0,0,0);}
.fs0_c01276{font-size:71.730000px;}
.y0_c01276{bottom:0.000000px;}
.y4_c01276{bottom:111.144000px;}
.y3_c01276{bottom:630.567000px;}
.y2_c01276{bottom:1140.615000px;}
.y1_c01276{bottom:1145.148000px;}
.h2_c01276{height:53.797500px;}
.h1_c01276{height:1263.750000px;}
.h0_c01276{height:1264.110000px;}
.w0_c01276{width:893.869500px;}
.w1_c01276{width:894.000000px;}
.x0_c01276{left:0.000000px;}
.x1_c01276{left:126.336000px;}
.x2_c01276{left:127.558500px;}
.x4_c01276{left:152.860500px;}
.x3_c01276{left:180.828000px;}
@media print{
.v0_c01276{vertical-align:0.000000pt;}
.ls0_c01276{letter-spacing:0.000000pt;}
.ws1_c01276{word-spacing:0.000000pt;}
.ws0_c01276{word-spacing:20.722000pt;}
._1_c01276{margin-left:-31.433680pt;}
._2_c01276{margin-left:-1.721520pt;}
._0_c01276{width:1532.216560pt;}
.fs0_c01276{font-size:63.760000pt;}
.y0_c01276{bottom:0.000000pt;}
.y4_c01276{bottom:98.794667pt;}
.y3_c01276{bottom:560.504000pt;}
.y2_c01276{bottom:1013.880000pt;}
.y1_c01276{bottom:1017.909333pt;}
.h2_c01276{height:47.820000pt;}
.h1_c01276{height:1123.333333pt;}
.h0_c01276{height:1123.653333pt;}
.w0_c01276{width:794.550667pt;}
.w1_c01276{width:794.666667pt;}
.x0_c01276{left:0.000000pt;}
.x1_c01276{left:112.298667pt;}
.x2_c01276{left:113.385333pt;}
.x4_c01276{left:135.876000pt;}
.x3_c01276{left:160.736000pt;}
}





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

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





.ff0_c01277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01277;src:url('chunks/assets/font_e9a382d0a9b6c34ea7c287ea.woff2')format("woff");}.ff1_c01277{font-family:ff1_c01277;line-height:1.001000;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_c01277;src:url('chunks/assets/font_de13cd511e8bb9cc4159cbac.woff2')format("woff");}.ff2_c01277{font-family:ff2_c01277;line-height:1.001000;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_c01277{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_c01277{vertical-align:0.000000px;}
.ls0_c01277{letter-spacing:0.000000px;}
.sc__c01277{text-shadow:none;}
.sc0_c01277{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__c01277{-webkit-text-stroke:0px transparent;}
.sc0_c01277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01277{word-spacing:-0.071730px;}
.ws3_c01277{word-spacing:0.000000px;}
.ws0_c01277{word-spacing:23.312250px;}
.ws1_c01277{word-spacing:30.811050px;}
._2_c01277{margin-left:-33.210990px;}
._1_c01277{margin-left:-2.080170px;}
._0_c01277{width:1723.743630px;}
.fc0_c01277{color:rgb(0,0,0);}
.fs0_c01277{font-size:71.730000px;}
.y0_c01277{bottom:0.000000px;}
.y3_c01277{bottom:363.759000px;}
.y2_c01277{bottom:1140.615000px;}
.y1_c01277{bottom:1145.148000px;}
.h2_c01277{height:53.797500px;}
.h1_c01277{height:1263.750000px;}
.h0_c01277{height:1264.110000px;}
.w0_c01277{width:893.869500px;}
.w1_c01277{width:894.000000px;}
.x0_c01277{left:0.000000px;}
.x1_c01277{left:126.336000px;}
.x2_c01277{left:127.558500px;}
.x3_c01277{left:266.961000px;}
@media print{
.v0_c01277{vertical-align:0.000000pt;}
.ls0_c01277{letter-spacing:0.000000pt;}
.ws2_c01277{word-spacing:-0.063760pt;}
.ws3_c01277{word-spacing:0.000000pt;}
.ws0_c01277{word-spacing:20.722000pt;}
.ws1_c01277{word-spacing:27.387600pt;}
._2_c01277{margin-left:-29.520880pt;}
._1_c01277{margin-left:-1.849040pt;}
._0_c01277{width:1532.216560pt;}
.fs0_c01277{font-size:63.760000pt;}
.y0_c01277{bottom:0.000000pt;}
.y3_c01277{bottom:323.341333pt;}
.y2_c01277{bottom:1013.880000pt;}
.y1_c01277{bottom:1017.909333pt;}
.h2_c01277{height:47.820000pt;}
.h1_c01277{height:1123.333333pt;}
.h0_c01277{height:1123.653333pt;}
.w0_c01277{width:794.550667pt;}
.w1_c01277{width:794.666667pt;}
.x0_c01277{left:0.000000pt;}
.x1_c01277{left:112.298667pt;}
.x2_c01277{left:113.385333pt;}
.x3_c01277{left:237.298667pt;}
}





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

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





.ff0_c01278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01278;src:url('chunks/assets/font_47d28f5c31d871086a3fe395.woff2')format("woff");}.ff1_c01278{font-family:ff1_c01278;line-height:1.001000;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_c01278;src:url('chunks/assets/font_760f2df587b7609d542fd6f7.woff2')format("woff");}.ff2_c01278{font-family:ff2_c01278;line-height:1.001000;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_c01278{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_c01278{vertical-align:0.000000px;}
.ls0_c01278{letter-spacing:0.000000px;}
.sc__c01278{text-shadow:none;}
.sc0_c01278{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__c01278{-webkit-text-stroke:0px transparent;}
.sc0_c01278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01278{word-spacing:-0.071730px;}
.ws3_c01278{word-spacing:0.000000px;}
.ws0_c01278{word-spacing:23.312250px;}
.ws1_c01278{word-spacing:32.089410px;}
._2_c01278{margin-left:-35.075970px;}
._1_c01278{margin-left:-6.025320px;}
._0_c01278{width:1723.743630px;}
.fc0_c01278{color:rgb(0,0,0);}
.fs0_c01278{font-size:71.730000px;}
.y0_c01278{bottom:0.000000px;}
.y3_c01278{bottom:167.212500px;}
.y2_c01278{bottom:1140.615000px;}
.y1_c01278{bottom:1145.148000px;}
.h2_c01278{height:53.797500px;}
.h1_c01278{height:1263.750000px;}
.h0_c01278{height:1264.110000px;}
.w0_c01278{width:893.869500px;}
.w1_c01278{width:894.000000px;}
.x0_c01278{left:0.000000px;}
.x1_c01278{left:126.336000px;}
.x2_c01278{left:127.558500px;}
.x3_c01278{left:273.358500px;}
@media print{
.v0_c01278{vertical-align:0.000000pt;}
.ls0_c01278{letter-spacing:0.000000pt;}
.ws2_c01278{word-spacing:-0.063760pt;}
.ws3_c01278{word-spacing:0.000000pt;}
.ws0_c01278{word-spacing:20.722000pt;}
.ws1_c01278{word-spacing:28.523920pt;}
._2_c01278{margin-left:-31.178640pt;}
._1_c01278{margin-left:-5.355840pt;}
._0_c01278{width:1532.216560pt;}
.fs0_c01278{font-size:63.760000pt;}
.y0_c01278{bottom:0.000000pt;}
.y3_c01278{bottom:148.633333pt;}
.y2_c01278{bottom:1013.880000pt;}
.y1_c01278{bottom:1017.909333pt;}
.h2_c01278{height:47.820000pt;}
.h1_c01278{height:1123.333333pt;}
.h0_c01278{height:1123.653333pt;}
.w0_c01278{width:794.550667pt;}
.w1_c01278{width:794.666667pt;}
.x0_c01278{left:0.000000pt;}
.x1_c01278{left:112.298667pt;}
.x2_c01278{left:113.385333pt;}
.x3_c01278{left:242.985333pt;}
}





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

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





.ff0_c01279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01279;src:url('chunks/assets/font_492d7372e783e3b208b4254e.woff2')format("woff");}.ff1_c01279{font-family:ff1_c01279;line-height:1.001000;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_c01279{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_c01279{vertical-align:0.000000px;}
.ls0_c01279{letter-spacing:0.000000px;}
.sc__c01279{text-shadow:none;}
.sc0_c01279{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__c01279{-webkit-text-stroke:0px transparent;}
.sc0_c01279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01279{word-spacing:0.000000px;}
.ws0_c01279{word-spacing:23.312250px;}
._2_c01279{margin-left:-35.075970px;}
._1_c01279{margin-left:-6.025320px;}
._0_c01279{width:1723.743630px;}
.fc0_c01279{color:rgb(0,0,0);}
.fs0_c01279{font-size:71.730000px;}
.y0_c01279{bottom:0.000000px;}
.y3_c01279{bottom:167.212500px;}
.y2_c01279{bottom:1140.615000px;}
.y1_c01279{bottom:1145.148000px;}
.h2_c01279{height:53.797500px;}
.h1_c01279{height:1263.750000px;}
.h0_c01279{height:1264.110000px;}
.w0_c01279{width:893.869500px;}
.w1_c01279{width:894.000000px;}
.x0_c01279{left:0.000000px;}
.x1_c01279{left:126.336000px;}
.x2_c01279{left:127.558500px;}
.x3_c01279{left:158.512500px;}
@media print{
.v0_c01279{vertical-align:0.000000pt;}
.ls0_c01279{letter-spacing:0.000000pt;}
.ws1_c01279{word-spacing:0.000000pt;}
.ws0_c01279{word-spacing:20.722000pt;}
._2_c01279{margin-left:-31.178640pt;}
._1_c01279{margin-left:-5.355840pt;}
._0_c01279{width:1532.216560pt;}
.fs0_c01279{font-size:63.760000pt;}
.y0_c01279{bottom:0.000000pt;}
.y3_c01279{bottom:148.633333pt;}
.y2_c01279{bottom:1013.880000pt;}
.y1_c01279{bottom:1017.909333pt;}
.h2_c01279{height:47.820000pt;}
.h1_c01279{height:1123.333333pt;}
.h0_c01279{height:1123.653333pt;}
.w0_c01279{width:794.550667pt;}
.w1_c01279{width:794.666667pt;}
.x0_c01279{left:0.000000pt;}
.x1_c01279{left:112.298667pt;}
.x2_c01279{left:113.385333pt;}
.x3_c01279{left:140.900000pt;}
}





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

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





.ff0_c01280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01280;src:url('chunks/assets/font_335cdfe4c84ca00bc42e171a.woff2')format("woff");}.ff1_c01280{font-family:ff1_c01280;line-height:1.001000;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_c01280{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_c01280{vertical-align:0.000000px;}
.ls0_c01280{letter-spacing:0.000000px;}
.sc__c01280{text-shadow:none;}
.sc0_c01280{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__c01280{-webkit-text-stroke:0px transparent;}
.sc0_c01280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01280{word-spacing:0.000000px;}
.ws0_c01280{word-spacing:23.312250px;}
._4_c01280{margin-left:-33.067530px;}
._3_c01280{margin-left:-27.329130px;}
._2_c01280{margin-left:-7.675110px;}
._1_c01280{margin-left:-2.080170px;}
._0_c01280{width:1723.743630px;}
.fc0_c01280{color:rgb(0,0,0);}
.fs0_c01280{font-size:71.730000px;}
.y0_c01280{bottom:0.000000px;}
.y3_c01280{bottom:167.226000px;}
.y2_c01280{bottom:1140.615000px;}
.y1_c01280{bottom:1145.148000px;}
.h2_c01280{height:53.797500px;}
.h1_c01280{height:1263.750000px;}
.h0_c01280{height:1264.110000px;}
.w0_c01280{width:893.869500px;}
.w1_c01280{width:894.000000px;}
.x0_c01280{left:0.000000px;}
.x1_c01280{left:126.336000px;}
.x2_c01280{left:127.558500px;}
.x3_c01280{left:170.953500px;}
@media print{
.v0_c01280{vertical-align:0.000000pt;}
.ls0_c01280{letter-spacing:0.000000pt;}
.ws1_c01280{word-spacing:0.000000pt;}
.ws0_c01280{word-spacing:20.722000pt;}
._4_c01280{margin-left:-29.393360pt;}
._3_c01280{margin-left:-24.292560pt;}
._2_c01280{margin-left:-6.822320pt;}
._1_c01280{margin-left:-1.849040pt;}
._0_c01280{width:1532.216560pt;}
.fs0_c01280{font-size:63.760000pt;}
.y0_c01280{bottom:0.000000pt;}
.y3_c01280{bottom:148.645333pt;}
.y2_c01280{bottom:1013.880000pt;}
.y1_c01280{bottom:1017.909333pt;}
.h2_c01280{height:47.820000pt;}
.h1_c01280{height:1123.333333pt;}
.h0_c01280{height:1123.653333pt;}
.w0_c01280{width:794.550667pt;}
.w1_c01280{width:794.666667pt;}
.x0_c01280{left:0.000000pt;}
.x1_c01280{left:112.298667pt;}
.x2_c01280{left:113.385333pt;}
.x3_c01280{left:151.958667pt;}
}





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

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





.ff0_c01281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01281;src:url('chunks/assets/font_dfe56216c1a3354ef515f690.woff2')format("woff");}.ff1_c01281{font-family:ff1_c01281;line-height:1.001000;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_c01281;src:url('chunks/assets/font_ad1a9b80e22377f09d00c516.woff2')format("woff");}.ff2_c01281{font-family:ff2_c01281;line-height:1.001000;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_c01281{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_c01281{vertical-align:0.000000px;}
.ls0_c01281{letter-spacing:0.000000px;}
.sc__c01281{text-shadow:none;}
.sc0_c01281{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__c01281{-webkit-text-stroke:0px transparent;}
.sc0_c01281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01281{word-spacing:-0.071730px;}
.ws3_c01281{word-spacing:0.000000px;}
.ws0_c01281{word-spacing:23.312250px;}
.ws1_c01281{word-spacing:29.294550px;}
._2_c01281{margin-left:-5.881860px;}
._1_c01281{margin-left:-2.080170px;}
._0_c01281{width:1723.743630px;}
.fc0_c01281{color:rgb(0,0,0);}
.fs0_c01281{font-size:71.730000px;}
.y0_c01281{bottom:0.000000px;}
.y3_c01281{bottom:80.533500px;}
.y2_c01281{bottom:1140.615000px;}
.y1_c01281{bottom:1145.148000px;}
.h2_c01281{height:53.797500px;}
.h1_c01281{height:1263.750000px;}
.h0_c01281{height:1264.110000px;}
.w0_c01281{width:893.869500px;}
.w1_c01281{width:894.000000px;}
.x0_c01281{left:0.000000px;}
.x1_c01281{left:126.336000px;}
.x2_c01281{left:127.558500px;}
.x3_c01281{left:280.942500px;}
@media print{
.v0_c01281{vertical-align:0.000000pt;}
.ls0_c01281{letter-spacing:0.000000pt;}
.ws2_c01281{word-spacing:-0.063760pt;}
.ws3_c01281{word-spacing:0.000000pt;}
.ws0_c01281{word-spacing:20.722000pt;}
.ws1_c01281{word-spacing:26.039600pt;}
._2_c01281{margin-left:-5.228320pt;}
._1_c01281{margin-left:-1.849040pt;}
._0_c01281{width:1532.216560pt;}
.fs0_c01281{font-size:63.760000pt;}
.y0_c01281{bottom:0.000000pt;}
.y3_c01281{bottom:71.585333pt;}
.y2_c01281{bottom:1013.880000pt;}
.y1_c01281{bottom:1017.909333pt;}
.h2_c01281{height:47.820000pt;}
.h1_c01281{height:1123.333333pt;}
.h0_c01281{height:1123.653333pt;}
.w0_c01281{width:794.550667pt;}
.w1_c01281{width:794.666667pt;}
.x0_c01281{left:0.000000pt;}
.x1_c01281{left:112.298667pt;}
.x2_c01281{left:113.385333pt;}
.x3_c01281{left:249.726667pt;}
}





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

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





.ff0_c01282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01282;src:url('chunks/assets/font_fb2f661c969e67c16e72aa37.woff2')format("woff");}.ff1_c01282{font-family:ff1_c01282;line-height:1.001000;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_c01282;src:url('chunks/assets/font_e5252c167df8b831978e3a12.woff2')format("woff");}.ff2_c01282{font-family:ff2_c01282;line-height:1.001000;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_c01282{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_c01282{vertical-align:0.000000px;}
.ls0_c01282{letter-spacing:0.000000px;}
.sc__c01282{text-shadow:none;}
.sc0_c01282{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__c01282{-webkit-text-stroke:0px transparent;}
.sc0_c01282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01282{word-spacing:-0.071730px;}
.ws3_c01282{word-spacing:0.000000px;}
.ws0_c01282{word-spacing:23.312250px;}
.ws1_c01282{word-spacing:25.033770px;}
._2_c01282{margin-left:-5.881860px;}
._3_c01282{margin-left:-3.605100px;}
._1_c01282{margin-left:-2.080170px;}
._4_c01282{width:30.290130px;}
._0_c01282{width:1723.743630px;}
.fc0_c01282{color:rgb(0,0,0);}
.fs0_c01282{font-size:71.730000px;}
.y0_c01282{bottom:0.000000px;}
.y3_c01282{bottom:78.136500px;}
.y2_c01282{bottom:1140.615000px;}
.y1_c01282{bottom:1145.148000px;}
.h2_c01282{height:53.797500px;}
.h1_c01282{height:1263.750000px;}
.h0_c01282{height:1264.110000px;}
.w0_c01282{width:893.869500px;}
.w1_c01282{width:894.000000px;}
.x0_c01282{left:0.000000px;}
.x1_c01282{left:126.336000px;}
.x2_c01282{left:127.558500px;}
.x3_c01282{left:239.808000px;}
@media print{
.v0_c01282{vertical-align:0.000000pt;}
.ls0_c01282{letter-spacing:0.000000pt;}
.ws2_c01282{word-spacing:-0.063760pt;}
.ws3_c01282{word-spacing:0.000000pt;}
.ws0_c01282{word-spacing:20.722000pt;}
.ws1_c01282{word-spacing:22.252240pt;}
._2_c01282{margin-left:-5.228320pt;}
._3_c01282{margin-left:-3.204533pt;}
._1_c01282{margin-left:-1.849040pt;}
._4_c01282{width:26.924560pt;}
._0_c01282{width:1532.216560pt;}
.fs0_c01282{font-size:63.760000pt;}
.y0_c01282{bottom:0.000000pt;}
.y3_c01282{bottom:69.454667pt;}
.y2_c01282{bottom:1013.880000pt;}
.y1_c01282{bottom:1017.909333pt;}
.h2_c01282{height:47.820000pt;}
.h1_c01282{height:1123.333333pt;}
.h0_c01282{height:1123.653333pt;}
.w0_c01282{width:794.550667pt;}
.w1_c01282{width:794.666667pt;}
.x0_c01282{left:0.000000pt;}
.x1_c01282{left:112.298667pt;}
.x2_c01282{left:113.385333pt;}
.x3_c01282{left:213.162667pt;}
}





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

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





.ff0_c01283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01283;src:url('chunks/assets/font_22e782aa3ee7a2eb3dfa07fa.woff2')format("woff");}.ff1_c01283{font-family:ff1_c01283;line-height:1.001000;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_c01283;src:url('chunks/assets/font_46b99936db0fe342ab52fb2f.woff2')format("woff");}.ff2_c01283{font-family:ff2_c01283;line-height:1.001000;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_c01283{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_c01283{vertical-align:0.000000px;}
.ls0_c01283{letter-spacing:0.000000px;}
.sc__c01283{text-shadow:none;}
.sc0_c01283{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__c01283{-webkit-text-stroke:0px transparent;}
.sc0_c01283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01283{word-spacing:-0.071730px;}
.ws3_c01283{word-spacing:0.000000px;}
.ws0_c01283{word-spacing:23.312250px;}
.ws1_c01283{word-spacing:28.704540px;}
._2_c01283{margin-left:-5.881860px;}
._3_c01283{margin-left:-3.605100px;}
._1_c01283{margin-left:-2.080170px;}
._0_c01283{width:1723.743630px;}
.fc0_c01283{color:rgb(0,0,0);}
.fs0_c01283{font-size:71.730000px;}
.y0_c01283{bottom:0.000000px;}
.y3_c01283{bottom:236.767500px;}
.y2_c01283{bottom:1140.615000px;}
.y1_c01283{bottom:1145.148000px;}
.h2_c01283{height:53.797500px;}
.h1_c01283{height:1263.750000px;}
.h0_c01283{height:1264.110000px;}
.w0_c01283{width:893.869500px;}
.w1_c01283{width:894.000000px;}
.x0_c01283{left:0.000000px;}
.x1_c01283{left:126.336000px;}
.x2_c01283{left:127.558500px;}
.x3_c01283{left:262.752000px;}
@media print{
.v0_c01283{vertical-align:0.000000pt;}
.ls0_c01283{letter-spacing:0.000000pt;}
.ws2_c01283{word-spacing:-0.063760pt;}
.ws3_c01283{word-spacing:0.000000pt;}
.ws0_c01283{word-spacing:20.722000pt;}
.ws1_c01283{word-spacing:25.515147pt;}
._2_c01283{margin-left:-5.228320pt;}
._3_c01283{margin-left:-3.204533pt;}
._1_c01283{margin-left:-1.849040pt;}
._0_c01283{width:1532.216560pt;}
.fs0_c01283{font-size:63.760000pt;}
.y0_c01283{bottom:0.000000pt;}
.y3_c01283{bottom:210.460000pt;}
.y2_c01283{bottom:1013.880000pt;}
.y1_c01283{bottom:1017.909333pt;}
.h2_c01283{height:47.820000pt;}
.h1_c01283{height:1123.333333pt;}
.h0_c01283{height:1123.653333pt;}
.w0_c01283{width:794.550667pt;}
.w1_c01283{width:794.666667pt;}
.x0_c01283{left:0.000000pt;}
.x1_c01283{left:112.298667pt;}
.x2_c01283{left:113.385333pt;}
.x3_c01283{left:233.557333pt;}
}





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

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





.ff0_c01284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01284;src:url('chunks/assets/font_8ce582db18ef52c6925a03f8.woff2')format("woff");}.ff1_c01284{font-family:ff1_c01284;line-height:1.001000;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_c01284;src:url('chunks/assets/font_159606b55d6ca69e3deb0b7d.woff2')format("woff");}.ff2_c01284{font-family:ff2_c01284;line-height:1.001000;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_c01284{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_c01284{vertical-align:0.000000px;}
.ls0_c01284{letter-spacing:0.000000px;}
.sc__c01284{text-shadow:none;}
.sc0_c01284{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__c01284{-webkit-text-stroke:0px transparent;}
.sc0_c01284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01284{word-spacing:-0.071730px;}
.ws3_c01284{word-spacing:0.000000px;}
.ws0_c01284{word-spacing:23.312250px;}
.ws1_c01284{word-spacing:29.232780px;}
._1_c01284{margin-left:-3.832140px;}
._0_c01284{width:1723.743630px;}
.fc0_c01284{color:rgb(0,0,0);}
.fs0_c01284{font-size:71.730000px;}
.y0_c01284{bottom:0.000000px;}
.y3_c01284{bottom:227.236500px;}
.y2_c01284{bottom:1140.615000px;}
.y1_c01284{bottom:1145.148000px;}
.h2_c01284{height:53.797500px;}
.h1_c01284{height:1263.750000px;}
.h0_c01284{height:1264.110000px;}
.w0_c01284{width:893.869500px;}
.w1_c01284{width:894.000000px;}
.x0_c01284{left:0.000000px;}
.x1_c01284{left:126.336000px;}
.x2_c01284{left:127.558500px;}
.x3_c01284{left:275.625000px;}
@media print{
.v0_c01284{vertical-align:0.000000pt;}
.ls0_c01284{letter-spacing:0.000000pt;}
.ws2_c01284{word-spacing:-0.063760pt;}
.ws3_c01284{word-spacing:0.000000pt;}
.ws0_c01284{word-spacing:20.722000pt;}
.ws1_c01284{word-spacing:25.984693pt;}
._1_c01284{margin-left:-3.406347pt;}
._0_c01284{width:1532.216560pt;}
.fs0_c01284{font-size:63.760000pt;}
.y0_c01284{bottom:0.000000pt;}
.y3_c01284{bottom:201.988000pt;}
.y2_c01284{bottom:1013.880000pt;}
.y1_c01284{bottom:1017.909333pt;}
.h2_c01284{height:47.820000pt;}
.h1_c01284{height:1123.333333pt;}
.h0_c01284{height:1123.653333pt;}
.w0_c01284{width:794.550667pt;}
.w1_c01284{width:794.666667pt;}
.x0_c01284{left:0.000000pt;}
.x1_c01284{left:112.298667pt;}
.x2_c01284{left:113.385333pt;}
.x3_c01284{left:245.000000pt;}
}





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

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





.ff0_c01285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01285;src:url('chunks/assets/font_633ccb6655baf76b8d71c38b.woff2')format("woff");}.ff1_c01285{font-family:ff1_c01285;line-height:1.001000;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_c01285{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_c01285{vertical-align:0.000000px;}
.ls0_c01285{letter-spacing:0.000000px;}
.sc__c01285{text-shadow:none;}
.sc0_c01285{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__c01285{-webkit-text-stroke:0px transparent;}
.sc0_c01285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01285{word-spacing:0.000000px;}
.ws0_c01285{word-spacing:23.312250px;}
._2_c01285{margin-left:-27.329130px;}
._1_c01285{margin-left:-8.033760px;}
._3_c01285{width:3.873420px;}
._0_c01285{width:1723.743630px;}
.fc0_c01285{color:rgb(0,0,0);}
.fs0_c01285{font-size:71.730000px;}
.y0_c01285{bottom:0.000000px;}
.y3_c01285{bottom:666.627000px;}
.y2_c01285{bottom:1140.615000px;}
.y1_c01285{bottom:1145.148000px;}
.h2_c01285{height:53.797500px;}
.h1_c01285{height:1263.750000px;}
.h0_c01285{height:1264.110000px;}
.w0_c01285{width:893.869500px;}
.w1_c01285{width:894.000000px;}
.x0_c01285{left:0.000000px;}
.x1_c01285{left:126.336000px;}
.x2_c01285{left:127.558500px;}
.x3_c01285{left:172.830000px;}
@media print{
.v0_c01285{vertical-align:0.000000pt;}
.ls0_c01285{letter-spacing:0.000000pt;}
.ws1_c01285{word-spacing:0.000000pt;}
.ws0_c01285{word-spacing:20.722000pt;}
._2_c01285{margin-left:-24.292560pt;}
._1_c01285{margin-left:-7.141120pt;}
._3_c01285{width:3.443040pt;}
._0_c01285{width:1532.216560pt;}
.fs0_c01285{font-size:63.760000pt;}
.y0_c01285{bottom:0.000000pt;}
.y3_c01285{bottom:592.557333pt;}
.y2_c01285{bottom:1013.880000pt;}
.y1_c01285{bottom:1017.909333pt;}
.h2_c01285{height:47.820000pt;}
.h1_c01285{height:1123.333333pt;}
.h0_c01285{height:1123.653333pt;}
.w0_c01285{width:794.550667pt;}
.w1_c01285{width:794.666667pt;}
.x0_c01285{left:0.000000pt;}
.x1_c01285{left:112.298667pt;}
.x2_c01285{left:113.385333pt;}
.x3_c01285{left:153.626667pt;}
}





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

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





.ff0_c01286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01286;src:url('chunks/assets/font_564bcda9aa12683b273f93c6.woff2')format("woff");}.ff1_c01286{font-family:ff1_c01286;line-height:1.001000;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_c01286{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_c01286{vertical-align:0.000000px;}
.ls0_c01286{letter-spacing:0.000000px;}
.sc__c01286{text-shadow:none;}
.sc0_c01286{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__c01286{-webkit-text-stroke:0px transparent;}
.sc0_c01286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01286{word-spacing:0.000000px;}
.ws1_c01286{word-spacing:20.658240px;}
.ws0_c01286{word-spacing:23.312250px;}
._2_c01286{margin-left:-35.219430px;}
._1_c01286{margin-left:-2.080170px;}
._3_c01286{width:1.936710px;}
._0_c01286{width:1723.743630px;}
.fc0_c01286{color:rgb(0,0,0);}
.fs0_c01286{font-size:71.730000px;}
.y0_c01286{bottom:0.000000px;}
.y3_c01286{bottom:192.298500px;}
.y2_c01286{bottom:1140.615000px;}
.y1_c01286{bottom:1145.148000px;}
.h2_c01286{height:53.797500px;}
.h1_c01286{height:1263.750000px;}
.h0_c01286{height:1264.110000px;}
.w0_c01286{width:893.869500px;}
.w1_c01286{width:894.000000px;}
.x0_c01286{left:0.000000px;}
.x1_c01286{left:126.336000px;}
.x2_c01286{left:127.558500px;}
@media print{
.v0_c01286{vertical-align:0.000000pt;}
.ls0_c01286{letter-spacing:0.000000pt;}
.ws2_c01286{word-spacing:0.000000pt;}
.ws1_c01286{word-spacing:18.362880pt;}
.ws0_c01286{word-spacing:20.722000pt;}
._2_c01286{margin-left:-31.306160pt;}
._1_c01286{margin-left:-1.849040pt;}
._3_c01286{width:1.721520pt;}
._0_c01286{width:1532.216560pt;}
.fs0_c01286{font-size:63.760000pt;}
.y0_c01286{bottom:0.000000pt;}
.y3_c01286{bottom:170.932000pt;}
.y2_c01286{bottom:1013.880000pt;}
.y1_c01286{bottom:1017.909333pt;}
.h2_c01286{height:47.820000pt;}
.h1_c01286{height:1123.333333pt;}
.h0_c01286{height:1123.653333pt;}
.w0_c01286{width:794.550667pt;}
.w1_c01286{width:794.666667pt;}
.x0_c01286{left:0.000000pt;}
.x1_c01286{left:112.298667pt;}
.x2_c01286{left:113.385333pt;}
}





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

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





.ff0_c01287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01287;src:url('chunks/assets/font_f1d8dc9cc608bb48f0e6ad1f.woff2')format("woff");}.ff1_c01287{font-family:ff1_c01287;line-height:1.001000;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_c01287{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_c01287{vertical-align:0.000000px;}
.ls0_c01287{letter-spacing:0.000000px;}
.sc__c01287{text-shadow:none;}
.sc0_c01287{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__c01287{-webkit-text-stroke:0px transparent;}
.sc0_c01287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01287{word-spacing:0.000000px;}
.ws0_c01287{word-spacing:23.312250px;}
._3_c01287{margin-left:-33.210990px;}
._1_c01287{margin-left:-6.025320px;}
._2_c01287{margin-left:-1.936710px;}
._0_c01287{width:1723.743630px;}
.fc0_c01287{color:rgb(0,0,0);}
.fs0_c01287{font-size:71.730000px;}
.y0_c01287{bottom:0.000000px;}
.y3_c01287{bottom:108.034500px;}
.y2_c01287{bottom:1140.615000px;}
.y1_c01287{bottom:1145.148000px;}
.h2_c01287{height:53.797500px;}
.h1_c01287{height:1263.750000px;}
.h0_c01287{height:1264.110000px;}
.w0_c01287{width:893.869500px;}
.w1_c01287{width:894.000000px;}
.x0_c01287{left:0.000000px;}
.x1_c01287{left:126.336000px;}
.x2_c01287{left:127.558500px;}
.x3_c01287{left:159.792000px;}
@media print{
.v0_c01287{vertical-align:0.000000pt;}
.ls0_c01287{letter-spacing:0.000000pt;}
.ws1_c01287{word-spacing:0.000000pt;}
.ws0_c01287{word-spacing:20.722000pt;}
._3_c01287{margin-left:-29.520880pt;}
._1_c01287{margin-left:-5.355840pt;}
._2_c01287{margin-left:-1.721520pt;}
._0_c01287{width:1532.216560pt;}
.fs0_c01287{font-size:63.760000pt;}
.y0_c01287{bottom:0.000000pt;}
.y3_c01287{bottom:96.030667pt;}
.y2_c01287{bottom:1013.880000pt;}
.y1_c01287{bottom:1017.909333pt;}
.h2_c01287{height:47.820000pt;}
.h1_c01287{height:1123.333333pt;}
.h0_c01287{height:1123.653333pt;}
.w0_c01287{width:794.550667pt;}
.w1_c01287{width:794.666667pt;}
.x0_c01287{left:0.000000pt;}
.x1_c01287{left:112.298667pt;}
.x2_c01287{left:113.385333pt;}
.x3_c01287{left:142.037333pt;}
}





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

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





.ff0_c01288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01288;src:url('chunks/assets/font_0f5964969fc4ec8b46b5fcd0.woff2')format("woff");}.ff1_c01288{font-family:ff1_c01288;line-height:1.001000;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_c01288{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_c01288{vertical-align:0.000000px;}
.ls0_c01288{letter-spacing:0.000000px;}
.sc__c01288{text-shadow:none;}
.sc0_c01288{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__c01288{-webkit-text-stroke:0px transparent;}
.sc0_c01288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01288{word-spacing:0.000000px;}
.ws0_c01288{word-spacing:23.312250px;}
._3_c01288{margin-left:-33.210990px;}
._1_c01288{margin-left:-6.025320px;}
._2_c01288{margin-left:-1.936710px;}
._0_c01288{width:1723.743630px;}
.fc0_c01288{color:rgb(0,0,0);}
.fs0_c01288{font-size:71.730000px;}
.y0_c01288{bottom:0.000000px;}
.y3_c01288{bottom:370.545000px;}
.y2_c01288{bottom:1140.615000px;}
.y1_c01288{bottom:1145.148000px;}
.h2_c01288{height:53.797500px;}
.h1_c01288{height:1263.750000px;}
.h0_c01288{height:1264.110000px;}
.w0_c01288{width:893.869500px;}
.w1_c01288{width:894.000000px;}
.x0_c01288{left:0.000000px;}
.x1_c01288{left:126.336000px;}
.x2_c01288{left:127.558500px;}
.x3_c01288{left:186.618000px;}
@media print{
.v0_c01288{vertical-align:0.000000pt;}
.ls0_c01288{letter-spacing:0.000000pt;}
.ws1_c01288{word-spacing:0.000000pt;}
.ws0_c01288{word-spacing:20.722000pt;}
._3_c01288{margin-left:-29.520880pt;}
._1_c01288{margin-left:-5.355840pt;}
._2_c01288{margin-left:-1.721520pt;}
._0_c01288{width:1532.216560pt;}
.fs0_c01288{font-size:63.760000pt;}
.y0_c01288{bottom:0.000000pt;}
.y3_c01288{bottom:329.373333pt;}
.y2_c01288{bottom:1013.880000pt;}
.y1_c01288{bottom:1017.909333pt;}
.h2_c01288{height:47.820000pt;}
.h1_c01288{height:1123.333333pt;}
.h0_c01288{height:1123.653333pt;}
.w0_c01288{width:794.550667pt;}
.w1_c01288{width:794.666667pt;}
.x0_c01288{left:0.000000pt;}
.x1_c01288{left:112.298667pt;}
.x2_c01288{left:113.385333pt;}
.x3_c01288{left:165.882667pt;}
}





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

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





.ff0_c01289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01289;src:url('chunks/assets/font_ce2b4437ea856f36a9cf6544.woff2')format("woff");}.ff1_c01289{font-family:ff1_c01289;line-height:1.001000;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_c01289{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_c01289{vertical-align:0.000000px;}
.v1_c01289{vertical-align:18.132000px;}
.ls0_c01289{letter-spacing:0.000000px;}
.sc__c01289{text-shadow:none;}
.sc0_c01289{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__c01289{-webkit-text-stroke:0px transparent;}
.sc0_c01289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01289{word-spacing:0.000000px;}
.ws0_c01289{word-spacing:23.312250px;}
._5_c01289{margin-left:-35.219430px;}
._4_c01289{margin-left:-5.881860px;}
._2_c01289{margin-left:-3.945150px;}
._3_c01289{margin-left:-1.936710px;}
._1_c01289{width:32.046660px;}
._0_c01289{width:1723.743630px;}
.fc0_c01289{color:rgb(0,0,0);}
.fs0_c01289{font-size:71.730000px;}
.y0_c01289{bottom:0.000000px;}
.y3_c01289{bottom:167.212500px;}
.y2_c01289{bottom:1140.615000px;}
.y1_c01289{bottom:1145.148000px;}
.h2_c01289{height:53.797500px;}
.h3_c01289{height:71.929500px;}
.h1_c01289{height:1263.750000px;}
.h0_c01289{height:1264.110000px;}
.w0_c01289{width:893.869500px;}
.w1_c01289{width:894.000000px;}
.x0_c01289{left:0.000000px;}
.x1_c01289{left:126.336000px;}
.x2_c01289{left:127.558500px;}
.x3_c01289{left:167.292000px;}
.x4_c01289{left:340.924500px;}
@media print{
.v0_c01289{vertical-align:0.000000pt;}
.v1_c01289{vertical-align:16.117333pt;}
.ls0_c01289{letter-spacing:0.000000pt;}
.ws1_c01289{word-spacing:0.000000pt;}
.ws0_c01289{word-spacing:20.722000pt;}
._5_c01289{margin-left:-31.306160pt;}
._4_c01289{margin-left:-5.228320pt;}
._2_c01289{margin-left:-3.506800pt;}
._3_c01289{margin-left:-1.721520pt;}
._1_c01289{width:28.485920pt;}
._0_c01289{width:1532.216560pt;}
.fs0_c01289{font-size:63.760000pt;}
.y0_c01289{bottom:0.000000pt;}
.y3_c01289{bottom:148.633333pt;}
.y2_c01289{bottom:1013.880000pt;}
.y1_c01289{bottom:1017.909333pt;}
.h2_c01289{height:47.820000pt;}
.h3_c01289{height:63.937333pt;}
.h1_c01289{height:1123.333333pt;}
.h0_c01289{height:1123.653333pt;}
.w0_c01289{width:794.550667pt;}
.w1_c01289{width:794.666667pt;}
.x0_c01289{left:0.000000pt;}
.x1_c01289{left:112.298667pt;}
.x2_c01289{left:113.385333pt;}
.x3_c01289{left:148.704000pt;}
.x4_c01289{left:303.044000pt;}
}





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

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





.ff0_c01290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01290;src:url('chunks/assets/font_b3049d6a8ff5decf1f489134.woff2')format("woff");}.ff1_c01290{font-family:ff1_c01290;line-height:1.001000;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_c01290;src:url('chunks/assets/font_e19039ba7ba6153c4ef2d166.woff2')format("woff");}.ff2_c01290{font-family:ff2_c01290;line-height:1.001000;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_c01290{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_c01290{vertical-align:0.000000px;}
.ls0_c01290{letter-spacing:0.000000px;}
.sc__c01290{text-shadow:none;}
.sc0_c01290{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__c01290{-webkit-text-stroke:0px transparent;}
.sc0_c01290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01290{word-spacing:-0.071730px;}
.ws3_c01290{word-spacing:0.000000px;}
.ws0_c01290{word-spacing:23.312250px;}
.ws1_c01290{word-spacing:25.033770px;}
._1_c01290{margin-left:-35.291160px;}
._2_c01290{margin-left:-3.565020px;}
._3_c01290{width:28.814760px;}
._0_c01290{width:1723.743630px;}
.fc0_c01290{color:rgb(0,0,0);}
.fs0_c01290{font-size:71.730000px;}
.y0_c01290{bottom:0.000000px;}
.y3_c01290{bottom:399.150000px;}
.y2_c01290{bottom:1140.615000px;}
.y1_c01290{bottom:1145.148000px;}
.h2_c01290{height:53.797500px;}
.h1_c01290{height:1263.750000px;}
.h0_c01290{height:1264.110000px;}
.w0_c01290{width:893.869500px;}
.w1_c01290{width:894.000000px;}
.x0_c01290{left:0.000000px;}
.x1_c01290{left:126.336000px;}
.x2_c01290{left:127.558500px;}
.x3_c01290{left:263.719500px;}
@media print{
.v0_c01290{vertical-align:0.000000pt;}
.ls0_c01290{letter-spacing:0.000000pt;}
.ws2_c01290{word-spacing:-0.063760pt;}
.ws3_c01290{word-spacing:0.000000pt;}
.ws0_c01290{word-spacing:20.722000pt;}
.ws1_c01290{word-spacing:22.252240pt;}
._1_c01290{margin-left:-31.369920pt;}
._2_c01290{margin-left:-3.168907pt;}
._3_c01290{width:25.613120pt;}
._0_c01290{width:1532.216560pt;}
.fs0_c01290{font-size:63.760000pt;}
.y0_c01290{bottom:0.000000pt;}
.y3_c01290{bottom:354.800000pt;}
.y2_c01290{bottom:1013.880000pt;}
.y1_c01290{bottom:1017.909333pt;}
.h2_c01290{height:47.820000pt;}
.h1_c01290{height:1123.333333pt;}
.h0_c01290{height:1123.653333pt;}
.w0_c01290{width:794.550667pt;}
.w1_c01290{width:794.666667pt;}
.x0_c01290{left:0.000000pt;}
.x1_c01290{left:112.298667pt;}
.x2_c01290{left:113.385333pt;}
.x3_c01290{left:234.417333pt;}
}





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

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





.ff0_c01291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01291;src:url('chunks/assets/font_7cb16db7fdd85fd7f9ae458d.woff2')format("woff");}.ff1_c01291{font-family:ff1_c01291;line-height:1.001000;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_c01291;src:url('chunks/assets/font_315e3b01cf120bb16b7de6e6.woff2')format("woff");}.ff2_c01291{font-family:ff2_c01291;line-height:1.001000;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_c01291{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_c01291{vertical-align:0.000000px;}
.ls0_c01291{letter-spacing:0.000000px;}
.sc__c01291{text-shadow:none;}
.sc0_c01291{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__c01291{-webkit-text-stroke:0px transparent;}
.sc0_c01291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01291{word-spacing:-0.071730px;}
.ws3_c01291{word-spacing:0.000000px;}
.ws0_c01291{word-spacing:23.312250px;}
.ws1_c01291{word-spacing:25.033770px;}
._2_c01291{margin-left:-3.583770px;}
._1_c01291{margin-left:-2.080170px;}
._3_c01291{width:27.813270px;}
._0_c01291{width:1723.743630px;}
.fc0_c01291{color:rgb(0,0,0);}
.fs0_c01291{font-size:71.730000px;}
.y0_c01291{bottom:0.000000px;}
.y3_c01291{bottom:167.212500px;}
.y2_c01291{bottom:1140.615000px;}
.y1_c01291{bottom:1145.148000px;}
.h2_c01291{height:53.797500px;}
.h1_c01291{height:1263.750000px;}
.h0_c01291{height:1264.110000px;}
.w0_c01291{width:893.869500px;}
.w1_c01291{width:894.000000px;}
.x0_c01291{left:0.000000px;}
.x1_c01291{left:126.336000px;}
.x2_c01291{left:127.558500px;}
.x3_c01291{left:202.087500px;}
@media print{
.v0_c01291{vertical-align:0.000000pt;}
.ls0_c01291{letter-spacing:0.000000pt;}
.ws2_c01291{word-spacing:-0.063760pt;}
.ws3_c01291{word-spacing:0.000000pt;}
.ws0_c01291{word-spacing:20.722000pt;}
.ws1_c01291{word-spacing:22.252240pt;}
._2_c01291{margin-left:-3.185573pt;}
._1_c01291{margin-left:-1.849040pt;}
._3_c01291{width:24.722907pt;}
._0_c01291{width:1532.216560pt;}
.fs0_c01291{font-size:63.760000pt;}
.y0_c01291{bottom:0.000000pt;}
.y3_c01291{bottom:148.633333pt;}
.y2_c01291{bottom:1013.880000pt;}
.y1_c01291{bottom:1017.909333pt;}
.h2_c01291{height:47.820000pt;}
.h1_c01291{height:1123.333333pt;}
.h0_c01291{height:1123.653333pt;}
.w0_c01291{width:794.550667pt;}
.w1_c01291{width:794.666667pt;}
.x0_c01291{left:0.000000pt;}
.x1_c01291{left:112.298667pt;}
.x2_c01291{left:113.385333pt;}
.x3_c01291{left:179.633333pt;}
}





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

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





.ff0_c01292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01292;src:url('chunks/assets/font_6fdd678be0cd2a6e6a18036f.woff2')format("woff");}.ff1_c01292{font-family:ff1_c01292;line-height:1.001000;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_c01292;src:url('chunks/assets/font_4af2cb6dbe1cfb03dc680b13.woff2')format("woff");}.ff2_c01292{font-family:ff2_c01292;line-height:1.001000;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_c01292{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_c01292{vertical-align:0.000000px;}
.ls0_c01292{letter-spacing:0.000000px;}
.sc__c01292{text-shadow:none;}
.sc0_c01292{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__c01292{-webkit-text-stroke:0px transparent;}
.sc0_c01292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01292{word-spacing:0.000000px;}
.ws2_c01292{word-spacing:23.240520px;}
.ws0_c01292{word-spacing:23.312250px;}
.ws1_c01292{word-spacing:25.033770px;}
._3_c01292{margin-left:-35.865000px;}
._2_c01292{margin-left:-3.588240px;}
._1_c01292{margin-left:-2.080170px;}
._4_c01292{width:27.816030px;}
._0_c01292{width:1723.743630px;}
.fc0_c01292{color:rgb(0,0,0);}
.fs0_c01292{font-size:71.730000px;}
.y0_c01292{bottom:0.000000px;}
.y3_c01292{bottom:268.362000px;}
.y2_c01292{bottom:1140.615000px;}
.y1_c01292{bottom:1145.148000px;}
.h2_c01292{height:53.797500px;}
.h1_c01292{height:1263.750000px;}
.h0_c01292{height:1264.110000px;}
.w0_c01292{width:893.869500px;}
.w1_c01292{width:894.000000px;}
.x0_c01292{left:0.000000px;}
.x1_c01292{left:126.336000px;}
.x2_c01292{left:127.558500px;}
.x3_c01292{left:188.946000px;}
@media print{
.v0_c01292{vertical-align:0.000000pt;}
.ls0_c01292{letter-spacing:0.000000pt;}
.ws3_c01292{word-spacing:0.000000pt;}
.ws2_c01292{word-spacing:20.658240pt;}
.ws0_c01292{word-spacing:20.722000pt;}
.ws1_c01292{word-spacing:22.252240pt;}
._3_c01292{margin-left:-31.880000pt;}
._2_c01292{margin-left:-3.189547pt;}
._1_c01292{margin-left:-1.849040pt;}
._4_c01292{width:24.725360pt;}
._0_c01292{width:1532.216560pt;}
.fs0_c01292{font-size:63.760000pt;}
.y0_c01292{bottom:0.000000pt;}
.y3_c01292{bottom:238.544000pt;}
.y2_c01292{bottom:1013.880000pt;}
.y1_c01292{bottom:1017.909333pt;}
.h2_c01292{height:47.820000pt;}
.h1_c01292{height:1123.333333pt;}
.h0_c01292{height:1123.653333pt;}
.w0_c01292{width:794.550667pt;}
.w1_c01292{width:794.666667pt;}
.x0_c01292{left:0.000000pt;}
.x1_c01292{left:112.298667pt;}
.x2_c01292{left:113.385333pt;}
.x3_c01292{left:167.952000pt;}
}





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

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





.ff0_c01293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01293;src:url('chunks/assets/font_025525893d7c3f1c0127ed57.woff2')format("woff");}.ff1_c01293{font-family:ff1_c01293;line-height:1.001000;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_c01293;src:url('chunks/assets/font_c24447a9ffca289acdf17e86.woff2')format("woff");}.ff2_c01293{font-family:ff2_c01293;line-height:1.001000;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_c01293{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_c01293{vertical-align:0.000000px;}
.ls0_c01293{letter-spacing:0.000000px;}
.sc__c01293{text-shadow:none;}
.sc0_c01293{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__c01293{-webkit-text-stroke:0px transparent;}
.sc0_c01293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01293{word-spacing:-0.071730px;}
.ws3_c01293{word-spacing:0.000000px;}
.ws0_c01293{word-spacing:23.312250px;}
.ws1_c01293{word-spacing:24.962040px;}
._2_c01293{margin-left:-3.516510px;}
._1_c01293{margin-left:-2.080170px;}
._3_c01293{width:28.651020px;}
._0_c01293{width:1723.743630px;}
.fc0_c01293{color:rgb(0,0,0);}
.fs0_c01293{font-size:71.730000px;}
.y0_c01293{bottom:0.000000px;}
.y3_c01293{bottom:167.226000px;}
.y2_c01293{bottom:1140.615000px;}
.y1_c01293{bottom:1145.148000px;}
.h2_c01293{height:53.797500px;}
.h1_c01293{height:1263.750000px;}
.h0_c01293{height:1264.110000px;}
.w0_c01293{width:893.869500px;}
.w1_c01293{width:894.000000px;}
.x0_c01293{left:0.000000px;}
.x1_c01293{left:126.336000px;}
.x2_c01293{left:127.558500px;}
.x3_c01293{left:250.939500px;}
@media print{
.v0_c01293{vertical-align:0.000000pt;}
.ls0_c01293{letter-spacing:0.000000pt;}
.ws2_c01293{word-spacing:-0.063760pt;}
.ws3_c01293{word-spacing:0.000000pt;}
.ws0_c01293{word-spacing:20.722000pt;}
.ws1_c01293{word-spacing:22.188480pt;}
._2_c01293{margin-left:-3.125787pt;}
._1_c01293{margin-left:-1.849040pt;}
._3_c01293{width:25.467573pt;}
._0_c01293{width:1532.216560pt;}
.fs0_c01293{font-size:63.760000pt;}
.y0_c01293{bottom:0.000000pt;}
.y3_c01293{bottom:148.645333pt;}
.y2_c01293{bottom:1013.880000pt;}
.y1_c01293{bottom:1017.909333pt;}
.h2_c01293{height:47.820000pt;}
.h1_c01293{height:1123.333333pt;}
.h0_c01293{height:1123.653333pt;}
.w0_c01293{width:794.550667pt;}
.w1_c01293{width:794.666667pt;}
.x0_c01293{left:0.000000pt;}
.x1_c01293{left:112.298667pt;}
.x2_c01293{left:113.385333pt;}
.x3_c01293{left:223.057333pt;}
}





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

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





.ff0_c01294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01294;src:url('chunks/assets/font_727a78bee461e20c38e29526.woff2')format("woff");}.ff1_c01294{font-family:ff1_c01294;line-height:1.001000;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_c01294;src:url('chunks/assets/font_8ff5f94147867f76d5d53c7e.woff2')format("woff");}.ff2_c01294{font-family:ff2_c01294;line-height:1.001000;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_c01294{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_c01294{vertical-align:0.000000px;}
.ls0_c01294{letter-spacing:0.000000px;}
.sc__c01294{text-shadow:none;}
.sc0_c01294{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__c01294{-webkit-text-stroke:0px transparent;}
.sc0_c01294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01294{word-spacing:-0.071730px;}
.ws3_c01294{word-spacing:0.000000px;}
.ws0_c01294{word-spacing:23.312250px;}
.ws1_c01294{word-spacing:27.737520px;}
._3_c01294{margin-left:-27.329130px;}
._2_c01294{margin-left:-7.890300px;}
._1_c01294{margin-left:-6.025320px;}
._4_c01294{margin-left:-3.617670px;}
._5_c01294{width:3.586500px;}
._0_c01294{width:1723.743630px;}
.fc0_c01294{color:rgb(0,0,0);}
.fs0_c01294{font-size:71.730000px;}
.y0_c01294{bottom:0.000000px;}
.y4_c01294{bottom:83.170500px;}
.y3_c01294{bottom:599.955000px;}
.y2_c01294{bottom:1140.615000px;}
.y1_c01294{bottom:1145.148000px;}
.h2_c01294{height:53.797500px;}
.h1_c01294{height:1263.750000px;}
.h0_c01294{height:1264.110000px;}
.w0_c01294{width:893.869500px;}
.w1_c01294{width:894.000000px;}
.x0_c01294{left:0.000000px;}
.x1_c01294{left:126.336000px;}
.x2_c01294{left:127.558500px;}
.x3_c01294{left:169.266000px;}
.x4_c01294{left:267.510000px;}
@media print{
.v0_c01294{vertical-align:0.000000pt;}
.ls0_c01294{letter-spacing:0.000000pt;}
.ws2_c01294{word-spacing:-0.063760pt;}
.ws3_c01294{word-spacing:0.000000pt;}
.ws0_c01294{word-spacing:20.722000pt;}
.ws1_c01294{word-spacing:24.655573pt;}
._3_c01294{margin-left:-24.292560pt;}
._2_c01294{margin-left:-7.013600pt;}
._1_c01294{margin-left:-5.355840pt;}
._4_c01294{margin-left:-3.215707pt;}
._5_c01294{width:3.188000pt;}
._0_c01294{width:1532.216560pt;}
.fs0_c01294{font-size:63.760000pt;}
.y0_c01294{bottom:0.000000pt;}
.y4_c01294{bottom:73.929333pt;}
.y3_c01294{bottom:533.293333pt;}
.y2_c01294{bottom:1013.880000pt;}
.y1_c01294{bottom:1017.909333pt;}
.h2_c01294{height:47.820000pt;}
.h1_c01294{height:1123.333333pt;}
.h0_c01294{height:1123.653333pt;}
.w0_c01294{width:794.550667pt;}
.w1_c01294{width:794.666667pt;}
.x0_c01294{left:0.000000pt;}
.x1_c01294{left:112.298667pt;}
.x2_c01294{left:113.385333pt;}
.x3_c01294{left:150.458667pt;}
.x4_c01294{left:237.786667pt;}
}





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

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





.ff0_c01295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01295;src:url('chunks/assets/font_bbddd23bc3e74c1cb8b7b05e.woff2')format("woff");}.ff1_c01295{font-family:ff1_c01295;line-height:1.001000;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_c01295;src:url('chunks/assets/font_6261c8dc7443a1015b9d9ce1.woff2')format("woff");}.ff2_c01295{font-family:ff2_c01295;line-height:1.001000;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_c01295{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_c01295{vertical-align:0.000000px;}
.ls0_c01295{letter-spacing:0.000000px;}
.sc__c01295{text-shadow:none;}
.sc0_c01295{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__c01295{-webkit-text-stroke:0px transparent;}
.sc0_c01295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01295{word-spacing:-0.071730px;}
.ws3_c01295{word-spacing:0.000000px;}
.ws0_c01295{word-spacing:23.312250px;}
.ws1_c01295{word-spacing:25.033770px;}
._2_c01295{margin-left:-35.004240px;}
._1_c01295{margin-left:-6.025320px;}
._3_c01295{margin-left:-3.656700px;}
._4_c01295{width:28.916490px;}
._0_c01295{width:1723.743630px;}
.fc0_c01295{color:rgb(0,0,0);}
.fs0_c01295{font-size:71.730000px;}
.y0_c01295{bottom:0.000000px;}
.y3_c01295{bottom:257.383500px;}
.y2_c01295{bottom:1140.615000px;}
.y1_c01295{bottom:1145.148000px;}
.h2_c01295{height:53.797500px;}
.h1_c01295{height:1263.750000px;}
.h0_c01295{height:1264.110000px;}
.w0_c01295{width:893.869500px;}
.w1_c01295{width:894.000000px;}
.x0_c01295{left:0.000000px;}
.x1_c01295{left:126.336000px;}
.x2_c01295{left:127.558500px;}
.x3_c01295{left:228.265500px;}
@media print{
.v0_c01295{vertical-align:0.000000pt;}
.ls0_c01295{letter-spacing:0.000000pt;}
.ws2_c01295{word-spacing:-0.063760pt;}
.ws3_c01295{word-spacing:0.000000pt;}
.ws0_c01295{word-spacing:20.722000pt;}
.ws1_c01295{word-spacing:22.252240pt;}
._2_c01295{margin-left:-31.114880pt;}
._1_c01295{margin-left:-5.355840pt;}
._3_c01295{margin-left:-3.250400pt;}
._4_c01295{width:25.703547pt;}
._0_c01295{width:1532.216560pt;}
.fs0_c01295{font-size:63.760000pt;}
.y0_c01295{bottom:0.000000pt;}
.y3_c01295{bottom:228.785333pt;}
.y2_c01295{bottom:1013.880000pt;}
.y1_c01295{bottom:1017.909333pt;}
.h2_c01295{height:47.820000pt;}
.h1_c01295{height:1123.333333pt;}
.h0_c01295{height:1123.653333pt;}
.w0_c01295{width:794.550667pt;}
.w1_c01295{width:794.666667pt;}
.x0_c01295{left:0.000000pt;}
.x1_c01295{left:112.298667pt;}
.x2_c01295{left:113.385333pt;}
.x3_c01295{left:202.902667pt;}
}





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

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





.ff0_c01296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01296;src:url('chunks/assets/font_d508945a8b6ab11148aedb57.woff2')format("woff");}.ff1_c01296{font-family:ff1_c01296;line-height:1.001000;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_c01296;src:url('chunks/assets/font_cf6a11b29a4d9b75e7540860.woff2')format("woff");}.ff2_c01296{font-family:ff2_c01296;line-height:1.001000;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_c01296{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_c01296{vertical-align:0.000000px;}
.ls0_c01296{letter-spacing:0.000000px;}
.sc__c01296{text-shadow:none;}
.sc0_c01296{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__c01296{-webkit-text-stroke:0px transparent;}
.sc0_c01296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01296{word-spacing:-0.071730px;}
.ws3_c01296{word-spacing:0.000000px;}
.ws0_c01296{word-spacing:23.312250px;}
.ws1_c01296{word-spacing:27.764280px;}
._2_c01296{margin-left:-35.147700px;}
._3_c01296{margin-left:-3.571590px;}
._1_c01296{margin-left:-2.080170px;}
._0_c01296{width:1723.743630px;}
.fc0_c01296{color:rgb(0,0,0);}
.fs0_c01296{font-size:71.730000px;}
.y0_c01296{bottom:0.000000px;}
.y3_c01296{bottom:352.536000px;}
.y2_c01296{bottom:1140.615000px;}
.y1_c01296{bottom:1145.148000px;}
.h2_c01296{height:53.797500px;}
.h1_c01296{height:1263.750000px;}
.h0_c01296{height:1264.110000px;}
.w0_c01296{width:893.869500px;}
.w1_c01296{width:894.000000px;}
.x0_c01296{left:0.000000px;}
.x1_c01296{left:126.336000px;}
.x2_c01296{left:127.558500px;}
.x3_c01296{left:279.228000px;}
@media print{
.v0_c01296{vertical-align:0.000000pt;}
.ls0_c01296{letter-spacing:0.000000pt;}
.ws2_c01296{word-spacing:-0.063760pt;}
.ws3_c01296{word-spacing:0.000000pt;}
.ws0_c01296{word-spacing:20.722000pt;}
.ws1_c01296{word-spacing:24.679360pt;}
._2_c01296{margin-left:-31.242400pt;}
._3_c01296{margin-left:-3.174747pt;}
._1_c01296{margin-left:-1.849040pt;}
._0_c01296{width:1532.216560pt;}
.fs0_c01296{font-size:63.760000pt;}
.y0_c01296{bottom:0.000000pt;}
.y3_c01296{bottom:313.365333pt;}
.y2_c01296{bottom:1013.880000pt;}
.y1_c01296{bottom:1017.909333pt;}
.h2_c01296{height:47.820000pt;}
.h1_c01296{height:1123.333333pt;}
.h0_c01296{height:1123.653333pt;}
.w0_c01296{width:794.550667pt;}
.w1_c01296{width:794.666667pt;}
.x0_c01296{left:0.000000pt;}
.x1_c01296{left:112.298667pt;}
.x2_c01296{left:113.385333pt;}
.x3_c01296{left:248.202667pt;}
}





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

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





.ff0_c01297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01297;src:url('chunks/assets/font_9b0245ef95695a814d7febcb.woff2')format("woff");}.ff1_c01297{font-family:ff1_c01297;line-height:1.001000;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_c01297;src:url('chunks/assets/font_fcf80ec7ffe7182b3c6ab577.woff2')format("woff");}.ff2_c01297{font-family:ff2_c01297;line-height:1.001000;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_c01297{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_c01297{vertical-align:0.000000px;}
.ls0_c01297{letter-spacing:0.000000px;}
.sc__c01297{text-shadow:none;}
.sc0_c01297{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__c01297{-webkit-text-stroke:0px transparent;}
.sc0_c01297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01297{word-spacing:-0.071730px;}
.ws3_c01297{word-spacing:0.000000px;}
.ws0_c01297{word-spacing:23.312250px;}
.ws1_c01297{word-spacing:25.033770px;}
._2_c01297{margin-left:-35.147700px;}
._1_c01297{margin-left:-2.080170px;}
._3_c01297{width:28.073400px;}
._0_c01297{width:1723.743630px;}
.fc0_c01297{color:rgb(0,0,0);}
.fs0_c01297{font-size:71.730000px;}
.y0_c01297{bottom:0.000000px;}
.y3_c01297{bottom:276.595500px;}
.y2_c01297{bottom:1140.615000px;}
.y1_c01297{bottom:1145.148000px;}
.h2_c01297{height:53.797500px;}
.h1_c01297{height:1263.750000px;}
.h0_c01297{height:1264.110000px;}
.w0_c01297{width:893.869500px;}
.w1_c01297{width:894.000000px;}
.x0_c01297{left:0.000000px;}
.x1_c01297{left:126.336000px;}
.x2_c01297{left:127.558500px;}
.x3_c01297{left:244.914000px;}
@media print{
.v0_c01297{vertical-align:0.000000pt;}
.ls0_c01297{letter-spacing:0.000000pt;}
.ws2_c01297{word-spacing:-0.063760pt;}
.ws3_c01297{word-spacing:0.000000pt;}
.ws0_c01297{word-spacing:20.722000pt;}
.ws1_c01297{word-spacing:22.252240pt;}
._2_c01297{margin-left:-31.242400pt;}
._1_c01297{margin-left:-1.849040pt;}
._3_c01297{width:24.954133pt;}
._0_c01297{width:1532.216560pt;}
.fs0_c01297{font-size:63.760000pt;}
.y0_c01297{bottom:0.000000pt;}
.y3_c01297{bottom:245.862667pt;}
.y2_c01297{bottom:1013.880000pt;}
.y1_c01297{bottom:1017.909333pt;}
.h2_c01297{height:47.820000pt;}
.h1_c01297{height:1123.333333pt;}
.h0_c01297{height:1123.653333pt;}
.w0_c01297{width:794.550667pt;}
.w1_c01297{width:794.666667pt;}
.x0_c01297{left:0.000000pt;}
.x1_c01297{left:112.298667pt;}
.x2_c01297{left:113.385333pt;}
.x3_c01297{left:217.701333pt;}
}





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

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





.ff0_c01298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01298;src:url('chunks/assets/font_997eb71d0ee7a191ab7f0861.woff2')format("woff");}.ff1_c01298{font-family:ff1_c01298;line-height:1.001000;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_c01298;src:url('chunks/assets/font_a70eae310d36d76803751f82.woff2')format("woff");}.ff2_c01298{font-family:ff2_c01298;line-height:1.001000;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_c01298{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_c01298{vertical-align:0.000000px;}
.ls0_c01298{letter-spacing:0.000000px;}
.sc__c01298{text-shadow:none;}
.sc0_c01298{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__c01298{-webkit-text-stroke:0px transparent;}
.sc0_c01298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01298{word-spacing:-0.071730px;}
.ws3_c01298{word-spacing:0.000000px;}
.ws0_c01298{word-spacing:23.312250px;}
.ws1_c01298{word-spacing:25.033770px;}
._2_c01298{margin-left:-35.147700px;}
._1_c01298{margin-left:-2.080170px;}
._3_c01298{width:28.797660px;}
._0_c01298{width:1723.743630px;}
.fc0_c01298{color:rgb(0,0,0);}
.fs0_c01298{font-size:71.730000px;}
.y0_c01298{bottom:0.000000px;}
.y3_c01298{bottom:167.226000px;}
.y2_c01298{bottom:1140.615000px;}
.y1_c01298{bottom:1145.148000px;}
.h2_c01298{height:53.797500px;}
.h1_c01298{height:1263.750000px;}
.h0_c01298{height:1264.110000px;}
.w0_c01298{width:893.869500px;}
.w1_c01298{width:894.000000px;}
.x0_c01298{left:0.000000px;}
.x1_c01298{left:126.336000px;}
.x2_c01298{left:127.558500px;}
.x3_c01298{left:246.276000px;}
@media print{
.v0_c01298{vertical-align:0.000000pt;}
.ls0_c01298{letter-spacing:0.000000pt;}
.ws2_c01298{word-spacing:-0.063760pt;}
.ws3_c01298{word-spacing:0.000000pt;}
.ws0_c01298{word-spacing:20.722000pt;}
.ws1_c01298{word-spacing:22.252240pt;}
._2_c01298{margin-left:-31.242400pt;}
._1_c01298{margin-left:-1.849040pt;}
._3_c01298{width:25.597920pt;}
._0_c01298{width:1532.216560pt;}
.fs0_c01298{font-size:63.760000pt;}
.y0_c01298{bottom:0.000000pt;}
.y3_c01298{bottom:148.645333pt;}
.y2_c01298{bottom:1013.880000pt;}
.y1_c01298{bottom:1017.909333pt;}
.h2_c01298{height:47.820000pt;}
.h1_c01298{height:1123.333333pt;}
.h0_c01298{height:1123.653333pt;}
.w0_c01298{width:794.550667pt;}
.w1_c01298{width:794.666667pt;}
.x0_c01298{left:0.000000pt;}
.x1_c01298{left:112.298667pt;}
.x2_c01298{left:113.385333pt;}
.x3_c01298{left:218.912000pt;}
}





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

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





.ff0_c01299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01299;src:url('chunks/assets/font_3121d1faf6c4bc5049d850fc.woff2')format("woff");}.ff1_c01299{font-family:ff1_c01299;line-height:1.001000;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_c01299;src:url('chunks/assets/font_093391f76a647f91a0e54d1c.woff2')format("woff");}.ff2_c01299{font-family:ff2_c01299;line-height:1.001000;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_c01299{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_c01299{vertical-align:0.000000px;}
.ls0_c01299{letter-spacing:0.000000px;}
.sc__c01299{text-shadow:none;}
.sc0_c01299{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__c01299{-webkit-text-stroke:0px transparent;}
.sc0_c01299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01299{word-spacing:-0.071730px;}
.ws3_c01299{word-spacing:0.000000px;}
.ws0_c01299{word-spacing:23.312250px;}
.ws1_c01299{word-spacing:25.033770px;}
._4_c01299{margin-left:-28.692000px;}
._3_c01299{margin-left:-7.173000px;}
._1_c01299{margin-left:-5.953590px;}
._2_c01299{margin-left:-3.652860px;}
._5_c01299{width:27.906120px;}
._0_c01299{width:1723.743630px;}
.fc0_c01299{color:rgb(0,0,0);}
.fs0_c01299{font-size:71.730000px;}
.y0_c01299{bottom:0.000000px;}
.y3_c01299{bottom:225.312000px;}
.y2_c01299{bottom:1140.615000px;}
.y1_c01299{bottom:1145.148000px;}
.h2_c01299{height:53.797500px;}
.h1_c01299{height:1263.750000px;}
.h0_c01299{height:1264.110000px;}
.w0_c01299{width:893.869500px;}
.w1_c01299{width:894.000000px;}
.x0_c01299{left:0.000000px;}
.x1_c01299{left:126.336000px;}
.x2_c01299{left:127.558500px;}
.x3_c01299{left:259.297500px;}
@media print{
.v0_c01299{vertical-align:0.000000pt;}
.ls0_c01299{letter-spacing:0.000000pt;}
.ws2_c01299{word-spacing:-0.063760pt;}
.ws3_c01299{word-spacing:0.000000pt;}
.ws0_c01299{word-spacing:20.722000pt;}
.ws1_c01299{word-spacing:22.252240pt;}
._4_c01299{margin-left:-25.504000pt;}
._3_c01299{margin-left:-6.376000pt;}
._1_c01299{margin-left:-5.292080pt;}
._2_c01299{margin-left:-3.246987pt;}
._5_c01299{width:24.805440pt;}
._0_c01299{width:1532.216560pt;}
.fs0_c01299{font-size:63.760000pt;}
.y0_c01299{bottom:0.000000pt;}
.y3_c01299{bottom:200.277333pt;}
.y2_c01299{bottom:1013.880000pt;}
.y1_c01299{bottom:1017.909333pt;}
.h2_c01299{height:47.820000pt;}
.h1_c01299{height:1123.333333pt;}
.h0_c01299{height:1123.653333pt;}
.w0_c01299{width:794.550667pt;}
.w1_c01299{width:794.666667pt;}
.x0_c01299{left:0.000000pt;}
.x1_c01299{left:112.298667pt;}
.x2_c01299{left:113.385333pt;}
.x3_c01299{left:230.486667pt;}
}





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

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





.ff0_c01300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01300;src:url('chunks/assets/font_bf180825841c0ae3e095f3b2.woff2')format("woff");}.ff1_c01300{font-family:ff1_c01300;line-height:1.001000;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_c01300;src:url('chunks/assets/font_85a771eb6bc50d33b8dd4ab8.woff2')format("woff");}.ff2_c01300{font-family:ff2_c01300;line-height:1.001000;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_c01300{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_c01300{vertical-align:0.000000px;}
.ls0_c01300{letter-spacing:0.000000px;}
.sc__c01300{text-shadow:none;}
.sc0_c01300{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__c01300{-webkit-text-stroke:0px transparent;}
.sc0_c01300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01300{word-spacing:0.000000px;}
.ws2_c01300{word-spacing:23.240520px;}
.ws0_c01300{word-spacing:23.312250px;}
.ws1_c01300{word-spacing:30.811050px;}
._2_c01300{margin-left:-27.329130px;}
._1_c01300{margin-left:-7.962030px;}
._3_c01300{margin-left:-1.936710px;}
._0_c01300{width:1723.743630px;}
.fc0_c01300{color:rgb(0,0,0);}
.fs0_c01300{font-size:71.730000px;}
.y0_c01300{bottom:0.000000px;}
.y3_c01300{bottom:214.390500px;}
.y2_c01300{bottom:1140.615000px;}
.y1_c01300{bottom:1145.148000px;}
.h2_c01300{height:53.797500px;}
.h1_c01300{height:1263.750000px;}
.h0_c01300{height:1264.110000px;}
.w0_c01300{width:893.869500px;}
.w1_c01300{width:894.000000px;}
.x0_c01300{left:0.000000px;}
.x1_c01300{left:126.336000px;}
.x2_c01300{left:127.558500px;}
.x3_c01300{left:188.316000px;}
@media print{
.v0_c01300{vertical-align:0.000000pt;}
.ls0_c01300{letter-spacing:0.000000pt;}
.ws3_c01300{word-spacing:0.000000pt;}
.ws2_c01300{word-spacing:20.658240pt;}
.ws0_c01300{word-spacing:20.722000pt;}
.ws1_c01300{word-spacing:27.387600pt;}
._2_c01300{margin-left:-24.292560pt;}
._1_c01300{margin-left:-7.077360pt;}
._3_c01300{margin-left:-1.721520pt;}
._0_c01300{width:1532.216560pt;}
.fs0_c01300{font-size:63.760000pt;}
.y0_c01300{bottom:0.000000pt;}
.y3_c01300{bottom:190.569333pt;}
.y2_c01300{bottom:1013.880000pt;}
.y1_c01300{bottom:1017.909333pt;}
.h2_c01300{height:47.820000pt;}
.h1_c01300{height:1123.333333pt;}
.h0_c01300{height:1123.653333pt;}
.w0_c01300{width:794.550667pt;}
.w1_c01300{width:794.666667pt;}
.x0_c01300{left:0.000000pt;}
.x1_c01300{left:112.298667pt;}
.x2_c01300{left:113.385333pt;}
.x3_c01300{left:167.392000pt;}
}





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

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





.ff0_c01301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01301;src:url('chunks/assets/font_d881cdbeb6a9ff7d2a4a7223.woff2')format("woff");}.ff1_c01301{font-family:ff1_c01301;line-height:1.001000;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_c01301;src:url('chunks/assets/font_653b1174c22dc8ae2c02322d.woff2')format("woff");}.ff2_c01301{font-family:ff2_c01301;line-height:1.001000;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_c01301{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_c01301{vertical-align:0.000000px;}
.ls0_c01301{letter-spacing:0.000000px;}
.sc__c01301{text-shadow:none;}
.sc0_c01301{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__c01301{-webkit-text-stroke:0px transparent;}
.sc0_c01301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01301{word-spacing:-0.071730px;}
.ws3_c01301{word-spacing:0.000000px;}
.ws0_c01301{word-spacing:23.312250px;}
.ws1_c01301{word-spacing:29.260560px;}
._2_c01301{margin-left:-33.210990px;}
._1_c01301{margin-left:-2.080170px;}
._0_c01301{width:1723.743630px;}
.fc0_c01301{color:rgb(0,0,0);}
.fs0_c01301{font-size:71.730000px;}
.y0_c01301{bottom:0.000000px;}
.y3_c01301{bottom:208.263000px;}
.y2_c01301{bottom:1140.615000px;}
.y1_c01301{bottom:1145.148000px;}
.h2_c01301{height:53.797500px;}
.h1_c01301{height:1263.750000px;}
.h0_c01301{height:1264.110000px;}
.w0_c01301{width:893.869500px;}
.w1_c01301{width:894.000000px;}
.x0_c01301{left:0.000000px;}
.x1_c01301{left:126.336000px;}
.x2_c01301{left:127.558500px;}
.x3_c01301{left:281.800500px;}
@media print{
.v0_c01301{vertical-align:0.000000pt;}
.ls0_c01301{letter-spacing:0.000000pt;}
.ws2_c01301{word-spacing:-0.063760pt;}
.ws3_c01301{word-spacing:0.000000pt;}
.ws0_c01301{word-spacing:20.722000pt;}
.ws1_c01301{word-spacing:26.009387pt;}
._2_c01301{margin-left:-29.520880pt;}
._1_c01301{margin-left:-1.849040pt;}
._0_c01301{width:1532.216560pt;}
.fs0_c01301{font-size:63.760000pt;}
.y0_c01301{bottom:0.000000pt;}
.y3_c01301{bottom:185.122667pt;}
.y2_c01301{bottom:1013.880000pt;}
.y1_c01301{bottom:1017.909333pt;}
.h2_c01301{height:47.820000pt;}
.h1_c01301{height:1123.333333pt;}
.h0_c01301{height:1123.653333pt;}
.w0_c01301{width:794.550667pt;}
.w1_c01301{width:794.666667pt;}
.x0_c01301{left:0.000000pt;}
.x1_c01301{left:112.298667pt;}
.x2_c01301{left:113.385333pt;}
.x3_c01301{left:250.489333pt;}
}





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

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





.ff0_c01302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01302;src:url('chunks/assets/font_91fb577d072b3f0f35e693b2.woff2')format("woff");}.ff1_c01302{font-family:ff1_c01302;line-height:1.001000;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_c01302{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_c01302{vertical-align:0.000000px;}
.ls0_c01302{letter-spacing:0.000000px;}
.sc__c01302{text-shadow:none;}
.sc0_c01302{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__c01302{-webkit-text-stroke:0px transparent;}
.sc0_c01302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01302{word-spacing:0.000000px;}
.ws0_c01302{word-spacing:23.312250px;}
._2_c01302{margin-left:-33.210990px;}
._1_c01302{margin-left:-2.080170px;}
._0_c01302{width:1723.743630px;}
.fc0_c01302{color:rgb(0,0,0);}
.fs0_c01302{font-size:71.730000px;}
.y0_c01302{bottom:0.000000px;}
.y3_c01302{bottom:606.699000px;}
.y2_c01302{bottom:1140.615000px;}
.y1_c01302{bottom:1145.148000px;}
.h2_c01302{height:53.797500px;}
.h1_c01302{height:1263.750000px;}
.h0_c01302{height:1264.110000px;}
.w0_c01302{width:893.869500px;}
.w1_c01302{width:894.000000px;}
.x0_c01302{left:0.000000px;}
.x1_c01302{left:126.336000px;}
.x2_c01302{left:127.558500px;}
.x3_c01302{left:156.685500px;}
@media print{
.v0_c01302{vertical-align:0.000000pt;}
.ls0_c01302{letter-spacing:0.000000pt;}
.ws1_c01302{word-spacing:0.000000pt;}
.ws0_c01302{word-spacing:20.722000pt;}
._2_c01302{margin-left:-29.520880pt;}
._1_c01302{margin-left:-1.849040pt;}
._0_c01302{width:1532.216560pt;}
.fs0_c01302{font-size:63.760000pt;}
.y0_c01302{bottom:0.000000pt;}
.y3_c01302{bottom:539.288000pt;}
.y2_c01302{bottom:1013.880000pt;}
.y1_c01302{bottom:1017.909333pt;}
.h2_c01302{height:47.820000pt;}
.h1_c01302{height:1123.333333pt;}
.h0_c01302{height:1123.653333pt;}
.w0_c01302{width:794.550667pt;}
.w1_c01302{width:794.666667pt;}
.x0_c01302{left:0.000000pt;}
.x1_c01302{left:112.298667pt;}
.x2_c01302{left:113.385333pt;}
.x3_c01302{left:139.276000pt;}
}





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

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





.ff0_c01303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01303;src:url('chunks/assets/font_ddf00e9704a35139a635f9dd.woff2')format("woff");}.ff1_c01303{font-family:ff1_c01303;line-height:1.001000;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_c01303;src:url('chunks/assets/font_67b39ee194b9b7b74fd4ebdb.woff2')format("woff");}.ff2_c01303{font-family:ff2_c01303;line-height:1.001000;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_c01303{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_c01303{vertical-align:0.000000px;}
.ls0_c01303{letter-spacing:0.000000px;}
.sc__c01303{text-shadow:none;}
.sc0_c01303{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__c01303{-webkit-text-stroke:0px transparent;}
.sc0_c01303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01303{word-spacing:-0.071730px;}
.ws3_c01303{word-spacing:0.000000px;}
.ws0_c01303{word-spacing:23.312250px;}
.ws1_c01303{word-spacing:25.033770px;}
._2_c01303{margin-left:-33.210990px;}
._5_c01303{margin-left:-28.692000px;}
._4_c01303{margin-left:-7.189020px;}
._3_c01303{margin-left:-5.810130px;}
._1_c01303{margin-left:-2.080170px;}
._6_c01303{width:28.772040px;}
._0_c01303{width:1723.743630px;}
.fc0_c01303{color:rgb(0,0,0);}
.fs0_c01303{font-size:71.730000px;}
.y0_c01303{bottom:0.000000px;}
.y3_c01303{bottom:350.982000px;}
.y2_c01303{bottom:1140.615000px;}
.y1_c01303{bottom:1145.148000px;}
.h2_c01303{height:53.797500px;}
.h1_c01303{height:1263.750000px;}
.h0_c01303{height:1264.110000px;}
.w0_c01303{width:893.869500px;}
.w1_c01303{width:894.000000px;}
.x0_c01303{left:0.000000px;}
.x1_c01303{left:126.336000px;}
.x2_c01303{left:127.558500px;}
.x3_c01303{left:242.085000px;}
@media print{
.v0_c01303{vertical-align:0.000000pt;}
.ls0_c01303{letter-spacing:0.000000pt;}
.ws2_c01303{word-spacing:-0.063760pt;}
.ws3_c01303{word-spacing:0.000000pt;}
.ws0_c01303{word-spacing:20.722000pt;}
.ws1_c01303{word-spacing:22.252240pt;}
._2_c01303{margin-left:-29.520880pt;}
._5_c01303{margin-left:-25.504000pt;}
._4_c01303{margin-left:-6.390240pt;}
._3_c01303{margin-left:-5.164560pt;}
._1_c01303{margin-left:-1.849040pt;}
._6_c01303{width:25.575147pt;}
._0_c01303{width:1532.216560pt;}
.fs0_c01303{font-size:63.760000pt;}
.y0_c01303{bottom:0.000000pt;}
.y3_c01303{bottom:311.984000pt;}
.y2_c01303{bottom:1013.880000pt;}
.y1_c01303{bottom:1017.909333pt;}
.h2_c01303{height:47.820000pt;}
.h1_c01303{height:1123.333333pt;}
.h0_c01303{height:1123.653333pt;}
.w0_c01303{width:794.550667pt;}
.w1_c01303{width:794.666667pt;}
.x0_c01303{left:0.000000pt;}
.x1_c01303{left:112.298667pt;}
.x2_c01303{left:113.385333pt;}
.x3_c01303{left:215.186667pt;}
}





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

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





.ff0_c01304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01304;src:url('chunks/assets/font_1383b679d544d1fa30e0d377.woff2')format("woff");}.ff1_c01304{font-family:ff1_c01304;line-height:1.001000;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_c01304;src:url('chunks/assets/font_2c43dfaafdf109c8e8f9bc32.woff2')format("woff");}.ff2_c01304{font-family:ff2_c01304;line-height:1.001000;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_c01304{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_c01304{vertical-align:0.000000px;}
.ls0_c01304{letter-spacing:0.000000px;}
.sc__c01304{text-shadow:none;}
.sc0_c01304{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__c01304{-webkit-text-stroke:0px transparent;}
.sc0_c01304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01304{word-spacing:-0.071730px;}
.ws3_c01304{word-spacing:0.000000px;}
.ws0_c01304{word-spacing:23.312250px;}
.ws1_c01304{word-spacing:27.731310px;}
._2_c01304{margin-left:-33.210990px;}
._3_c01304{margin-left:-5.810130px;}
._4_c01304{margin-left:-3.315600px;}
._1_c01304{margin-left:-2.080170px;}
._0_c01304{width:1723.743630px;}
.fc0_c01304{color:rgb(0,0,0);}
.fs0_c01304{font-size:71.730000px;}
.y0_c01304{bottom:0.000000px;}
.y3_c01304{bottom:308.676000px;}
.y2_c01304{bottom:1140.615000px;}
.y1_c01304{bottom:1145.148000px;}
.h2_c01304{height:53.797500px;}
.h1_c01304{height:1263.750000px;}
.h0_c01304{height:1264.110000px;}
.w0_c01304{width:893.869500px;}
.w1_c01304{width:894.000000px;}
.x0_c01304{left:0.000000px;}
.x1_c01304{left:126.336000px;}
.x2_c01304{left:127.558500px;}
.x3_c01304{left:255.655500px;}
@media print{
.v0_c01304{vertical-align:0.000000pt;}
.ls0_c01304{letter-spacing:0.000000pt;}
.ws2_c01304{word-spacing:-0.063760pt;}
.ws3_c01304{word-spacing:0.000000pt;}
.ws0_c01304{word-spacing:20.722000pt;}
.ws1_c01304{word-spacing:24.650053pt;}
._2_c01304{margin-left:-29.520880pt;}
._3_c01304{margin-left:-5.164560pt;}
._4_c01304{margin-left:-2.947200pt;}
._1_c01304{margin-left:-1.849040pt;}
._0_c01304{width:1532.216560pt;}
.fs0_c01304{font-size:63.760000pt;}
.y0_c01304{bottom:0.000000pt;}
.y3_c01304{bottom:274.378667pt;}
.y2_c01304{bottom:1013.880000pt;}
.y1_c01304{bottom:1017.909333pt;}
.h2_c01304{height:47.820000pt;}
.h1_c01304{height:1123.333333pt;}
.h0_c01304{height:1123.653333pt;}
.w0_c01304{width:794.550667pt;}
.w1_c01304{width:794.666667pt;}
.x0_c01304{left:0.000000pt;}
.x1_c01304{left:112.298667pt;}
.x2_c01304{left:113.385333pt;}
.x3_c01304{left:227.249333pt;}
}





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

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





.ff0_c01305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01305;src:url('chunks/assets/font_a408a3b15bcfe9fd18aabce0.woff2')format("woff");}.ff1_c01305{font-family:ff1_c01305;line-height:1.001000;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_c01305;src:url('chunks/assets/font_1f50e809c1bb59689f272b92.woff2')format("woff");}.ff2_c01305{font-family:ff2_c01305;line-height:1.001000;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_c01305{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_c01305{vertical-align:0.000000px;}
.ls0_c01305{letter-spacing:0.000000px;}
.sc__c01305{text-shadow:none;}
.sc0_c01305{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__c01305{-webkit-text-stroke:0px transparent;}
.sc0_c01305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01305{word-spacing:-0.071730px;}
.ws3_c01305{word-spacing:0.000000px;}
.ws0_c01305{word-spacing:23.312250px;}
.ws1_c01305{word-spacing:25.033770px;}
._2_c01305{margin-left:-35.147700px;}
._3_c01305{margin-left:-3.572970px;}
._1_c01305{width:1.793250px;}
._4_c01305{width:29.310000px;}
._0_c01305{width:1723.743630px;}
.fc0_c01305{color:rgb(0,0,0);}
.fs0_c01305{font-size:71.730000px;}
.y0_c01305{bottom:0.000000px;}
.y3_c01305{bottom:174.199500px;}
.y2_c01305{bottom:1140.615000px;}
.y1_c01305{bottom:1145.148000px;}
.h2_c01305{height:53.797500px;}
.h1_c01305{height:1263.750000px;}
.h0_c01305{height:1264.110000px;}
.w0_c01305{width:893.869500px;}
.w1_c01305{width:894.000000px;}
.x0_c01305{left:0.000000px;}
.x1_c01305{left:126.336000px;}
.x2_c01305{left:127.558500px;}
.x3_c01305{left:190.438500px;}
@media print{
.v0_c01305{vertical-align:0.000000pt;}
.ls0_c01305{letter-spacing:0.000000pt;}
.ws2_c01305{word-spacing:-0.063760pt;}
.ws3_c01305{word-spacing:0.000000pt;}
.ws0_c01305{word-spacing:20.722000pt;}
.ws1_c01305{word-spacing:22.252240pt;}
._2_c01305{margin-left:-31.242400pt;}
._3_c01305{margin-left:-3.175973pt;}
._1_c01305{width:1.594000pt;}
._4_c01305{width:26.053333pt;}
._0_c01305{width:1532.216560pt;}
.fs0_c01305{font-size:63.760000pt;}
.y0_c01305{bottom:0.000000pt;}
.y3_c01305{bottom:154.844000pt;}
.y2_c01305{bottom:1013.880000pt;}
.y1_c01305{bottom:1017.909333pt;}
.h2_c01305{height:47.820000pt;}
.h1_c01305{height:1123.333333pt;}
.h0_c01305{height:1123.653333pt;}
.w0_c01305{width:794.550667pt;}
.w1_c01305{width:794.666667pt;}
.x0_c01305{left:0.000000pt;}
.x1_c01305{left:112.298667pt;}
.x2_c01305{left:113.385333pt;}
.x3_c01305{left:169.278667pt;}
}





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

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





.ff0_c01306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01306;src:url('chunks/assets/font_3de0a874902154727943ed43.woff2')format("woff");}.ff1_c01306{font-family:ff1_c01306;line-height:1.001000;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_c01306;src:url('chunks/assets/font_76b6ab540c0b534fc5510e1d.woff2')format("woff");}.ff2_c01306{font-family:ff2_c01306;line-height:1.001000;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_c01306{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_c01306{vertical-align:0.000000px;}
.ls0_c01306{letter-spacing:0.000000px;}
.sc__c01306{text-shadow:none;}
.sc0_c01306{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__c01306{-webkit-text-stroke:0px transparent;}
.sc0_c01306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01306{word-spacing:-0.071730px;}
.ws3_c01306{word-spacing:0.000000px;}
.ws0_c01306{word-spacing:23.312250px;}
.ws1_c01306{word-spacing:27.766800px;}
._1_c01306{margin-left:-6.025320px;}
._2_c01306{margin-left:-3.487320px;}
._0_c01306{width:1723.743630px;}
.fc0_c01306{color:rgb(0,0,0);}
.fs0_c01306{font-size:71.730000px;}
.y0_c01306{bottom:0.000000px;}
.y3_c01306{bottom:220.915500px;}
.y2_c01306{bottom:1140.615000px;}
.y1_c01306{bottom:1145.148000px;}
.h2_c01306{height:53.797500px;}
.h1_c01306{height:1263.750000px;}
.h0_c01306{height:1264.110000px;}
.w0_c01306{width:893.869500px;}
.w1_c01306{width:894.000000px;}
.x0_c01306{left:0.000000px;}
.x1_c01306{left:126.336000px;}
.x2_c01306{left:127.558500px;}
.x3_c01306{left:249.835500px;}
@media print{
.v0_c01306{vertical-align:0.000000pt;}
.ls0_c01306{letter-spacing:0.000000pt;}
.ws2_c01306{word-spacing:-0.063760pt;}
.ws3_c01306{word-spacing:0.000000pt;}
.ws0_c01306{word-spacing:20.722000pt;}
.ws1_c01306{word-spacing:24.681600pt;}
._1_c01306{margin-left:-5.355840pt;}
._2_c01306{margin-left:-3.099840pt;}
._0_c01306{width:1532.216560pt;}
.fs0_c01306{font-size:63.760000pt;}
.y0_c01306{bottom:0.000000pt;}
.y3_c01306{bottom:196.369333pt;}
.y2_c01306{bottom:1013.880000pt;}
.y1_c01306{bottom:1017.909333pt;}
.h2_c01306{height:47.820000pt;}
.h1_c01306{height:1123.333333pt;}
.h0_c01306{height:1123.653333pt;}
.w0_c01306{width:794.550667pt;}
.w1_c01306{width:794.666667pt;}
.x0_c01306{left:0.000000pt;}
.x1_c01306{left:112.298667pt;}
.x2_c01306{left:113.385333pt;}
.x3_c01306{left:222.076000pt;}
}





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

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





.ff0_c01307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01307;src:url('chunks/assets/font_0b2a809f4d530474998f7277.woff2')format("woff");}.ff1_c01307{font-family:ff1_c01307;line-height:1.001000;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_c01307;src:url('chunks/assets/font_0d6fcd35e2ae21e8c069af4f.woff2')format("woff");}.ff2_c01307{font-family:ff2_c01307;line-height:1.001000;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_c01307{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_c01307{vertical-align:0.000000px;}
.ls0_c01307{letter-spacing:0.000000px;}
.sc__c01307{text-shadow:none;}
.sc0_c01307{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__c01307{-webkit-text-stroke:0px transparent;}
.sc0_c01307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01307{word-spacing:-0.071730px;}
.ws3_c01307{word-spacing:0.000000px;}
.ws0_c01307{word-spacing:23.312250px;}
.ws1_c01307{word-spacing:25.033770px;}
._5_c01307{margin-left:-33.726750px;}
._3_c01307{margin-left:-27.329130px;}
._2_c01307{margin-left:-7.962030px;}
._4_c01307{margin-left:-3.572850px;}
._1_c01307{margin-left:-2.151900px;}
._6_c01307{width:28.780770px;}
._0_c01307{width:1723.743630px;}
.fc0_c01307{color:rgb(0,0,0);}
.fs0_c01307{font-size:71.730000px;}
.y0_c01307{bottom:0.000000px;}
.y3_c01307{bottom:167.226000px;}
.y2_c01307{bottom:1140.615000px;}
.y1_c01307{bottom:1145.148000px;}
.h2_c01307{height:53.797500px;}
.h1_c01307{height:1263.750000px;}
.h0_c01307{height:1264.110000px;}
.w0_c01307{width:893.869500px;}
.w1_c01307{width:894.000000px;}
.x0_c01307{left:0.000000px;}
.x1_c01307{left:126.336000px;}
.x2_c01307{left:127.558500px;}
.x3_c01307{left:239.211000px;}
@media print{
.v0_c01307{vertical-align:0.000000pt;}
.ls0_c01307{letter-spacing:0.000000pt;}
.ws2_c01307{word-spacing:-0.063760pt;}
.ws3_c01307{word-spacing:0.000000pt;}
.ws0_c01307{word-spacing:20.722000pt;}
.ws1_c01307{word-spacing:22.252240pt;}
._5_c01307{margin-left:-29.979333pt;}
._3_c01307{margin-left:-24.292560pt;}
._2_c01307{margin-left:-7.077360pt;}
._4_c01307{margin-left:-3.175867pt;}
._1_c01307{margin-left:-1.912800pt;}
._6_c01307{width:25.582907pt;}
._0_c01307{width:1532.216560pt;}
.fs0_c01307{font-size:63.760000pt;}
.y0_c01307{bottom:0.000000pt;}
.y3_c01307{bottom:148.645333pt;}
.y2_c01307{bottom:1013.880000pt;}
.y1_c01307{bottom:1017.909333pt;}
.h2_c01307{height:47.820000pt;}
.h1_c01307{height:1123.333333pt;}
.h0_c01307{height:1123.653333pt;}
.w0_c01307{width:794.550667pt;}
.w1_c01307{width:794.666667pt;}
.x0_c01307{left:0.000000pt;}
.x1_c01307{left:112.298667pt;}
.x2_c01307{left:113.385333pt;}
.x3_c01307{left:212.632000pt;}
}





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

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





.ff0_c01308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01308;src:url('chunks/assets/font_05c22d5cb4f8b055463fcae9.woff2')format("woff");}.ff1_c01308{font-family:ff1_c01308;line-height:1.001000;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_c01308;src:url('chunks/assets/font_1fd48c6e49332357dcfd1b85.woff2')format("woff");}.ff2_c01308{font-family:ff2_c01308;line-height:1.001000;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_c01308{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_c01308{vertical-align:0.000000px;}
.ls0_c01308{letter-spacing:0.000000px;}
.sc__c01308{text-shadow:none;}
.sc0_c01308{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__c01308{-webkit-text-stroke:0px transparent;}
.sc0_c01308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01308{word-spacing:-0.071730px;}
.ws3_c01308{word-spacing:0.000000px;}
.ws0_c01308{word-spacing:23.312250px;}
.ws1_c01308{word-spacing:25.033770px;}
._3_c01308{margin-left:-27.329130px;}
._2_c01308{margin-left:-7.890300px;}
._4_c01308{margin-left:-3.644580px;}
._1_c01308{margin-left:-2.223630px;}
._5_c01308{width:28.783290px;}
._0_c01308{width:1723.743630px;}
.fc0_c01308{color:rgb(0,0,0);}
.fs0_c01308{font-size:71.730000px;}
.y0_c01308{bottom:0.000000px;}
.y3_c01308{bottom:167.226000px;}
.y2_c01308{bottom:1140.615000px;}
.y1_c01308{bottom:1145.148000px;}
.h2_c01308{height:53.797500px;}
.h1_c01308{height:1263.750000px;}
.h0_c01308{height:1264.110000px;}
.w0_c01308{width:893.869500px;}
.w1_c01308{width:894.000000px;}
.x0_c01308{left:0.000000px;}
.x1_c01308{left:126.336000px;}
.x2_c01308{left:127.558500px;}
.x3_c01308{left:161.419500px;}
@media print{
.v0_c01308{vertical-align:0.000000pt;}
.ls0_c01308{letter-spacing:0.000000pt;}
.ws2_c01308{word-spacing:-0.063760pt;}
.ws3_c01308{word-spacing:0.000000pt;}
.ws0_c01308{word-spacing:20.722000pt;}
.ws1_c01308{word-spacing:22.252240pt;}
._3_c01308{margin-left:-24.292560pt;}
._2_c01308{margin-left:-7.013600pt;}
._4_c01308{margin-left:-3.239627pt;}
._1_c01308{margin-left:-1.976560pt;}
._5_c01308{width:25.585147pt;}
._0_c01308{width:1532.216560pt;}
.fs0_c01308{font-size:63.760000pt;}
.y0_c01308{bottom:0.000000pt;}
.y3_c01308{bottom:148.645333pt;}
.y2_c01308{bottom:1013.880000pt;}
.y1_c01308{bottom:1017.909333pt;}
.h2_c01308{height:47.820000pt;}
.h1_c01308{height:1123.333333pt;}
.h0_c01308{height:1123.653333pt;}
.w0_c01308{width:794.550667pt;}
.w1_c01308{width:794.666667pt;}
.x0_c01308{left:0.000000pt;}
.x1_c01308{left:112.298667pt;}
.x2_c01308{left:113.385333pt;}
.x3_c01308{left:143.484000pt;}
}





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

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





.ff0_c01309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01309;src:url('chunks/assets/font_3b65e0f32b7c710f87ee0392.woff2')format("woff");}.ff1_c01309{font-family:ff1_c01309;line-height:1.001000;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_c01309;src:url('chunks/assets/font_8f39ae565dffb930b6c6d317.woff2')format("woff");}.ff2_c01309{font-family:ff2_c01309;line-height:1.001000;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_c01309{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_c01309{vertical-align:0.000000px;}
.ls0_c01309{letter-spacing:0.000000px;}
.sc__c01309{text-shadow:none;}
.sc0_c01309{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__c01309{-webkit-text-stroke:0px transparent;}
.sc0_c01309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01309{word-spacing:-0.071730px;}
.ws3_c01309{word-spacing:0.000000px;}
.ws0_c01309{word-spacing:23.312250px;}
.ws1_c01309{word-spacing:25.033770px;}
._2_c01309{margin-left:-5.810130px;}
._3_c01309{margin-left:-3.524130px;}
._1_c01309{margin-left:-2.080170px;}
._4_c01309{width:28.769310px;}
._0_c01309{width:1723.743630px;}
.fc0_c01309{color:rgb(0,0,0);}
.fs0_c01309{font-size:71.730000px;}
.y0_c01309{bottom:0.000000px;}
.y3_c01309{bottom:257.481000px;}
.y2_c01309{bottom:1140.615000px;}
.y1_c01309{bottom:1145.148000px;}
.h2_c01309{height:53.797500px;}
.h1_c01309{height:1263.750000px;}
.h0_c01309{height:1264.110000px;}
.w0_c01309{width:893.869500px;}
.w1_c01309{width:894.000000px;}
.x0_c01309{left:0.000000px;}
.x1_c01309{left:126.336000px;}
.x2_c01309{left:127.558500px;}
.x3_c01309{left:237.969000px;}
@media print{
.v0_c01309{vertical-align:0.000000pt;}
.ls0_c01309{letter-spacing:0.000000pt;}
.ws2_c01309{word-spacing:-0.063760pt;}
.ws3_c01309{word-spacing:0.000000pt;}
.ws0_c01309{word-spacing:20.722000pt;}
.ws1_c01309{word-spacing:22.252240pt;}
._2_c01309{margin-left:-5.164560pt;}
._3_c01309{margin-left:-3.132560pt;}
._1_c01309{margin-left:-1.849040pt;}
._4_c01309{width:25.572720pt;}
._0_c01309{width:1532.216560pt;}
.fs0_c01309{font-size:63.760000pt;}
.y0_c01309{bottom:0.000000pt;}
.y3_c01309{bottom:228.872000pt;}
.y2_c01309{bottom:1013.880000pt;}
.y1_c01309{bottom:1017.909333pt;}
.h2_c01309{height:47.820000pt;}
.h1_c01309{height:1123.333333pt;}
.h0_c01309{height:1123.653333pt;}
.w0_c01309{width:794.550667pt;}
.w1_c01309{width:794.666667pt;}
.x0_c01309{left:0.000000pt;}
.x1_c01309{left:112.298667pt;}
.x2_c01309{left:113.385333pt;}
.x3_c01309{left:211.528000pt;}
}





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

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





.ff0_c01310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01310;src:url('chunks/assets/font_587e1e6084b63513d7202757.woff2')format("woff");}.ff1_c01310{font-family:ff1_c01310;line-height:1.001000;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_c01310;src:url('chunks/assets/font_c7b629b0d03de36ad9c294dd.woff2')format("woff");}.ff2_c01310{font-family:ff2_c01310;line-height:1.001000;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_c01310{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_c01310{vertical-align:0.000000px;}
.v1_c01310{vertical-align:18.132000px;}
.ls0_c01310{letter-spacing:0.000000px;}
.sc__c01310{text-shadow:none;}
.sc0_c01310{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__c01310{-webkit-text-stroke:0px transparent;}
.sc0_c01310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01310{word-spacing:-0.071730px;}
.ws3_c01310{word-spacing:0.000000px;}
.ws0_c01310{word-spacing:23.312250px;}
.ws1_c01310{word-spacing:25.033770px;}
._2_c01310{width:30.862290px;}
._1_c01310{width:32.016420px;}
._0_c01310{width:1723.743630px;}
.fc0_c01310{color:rgb(0,0,0);}
.fs0_c01310{font-size:71.730000px;}
.y0_c01310{bottom:0.000000px;}
.y3_c01310{bottom:194.524500px;}
.y2_c01310{bottom:1140.615000px;}
.y1_c01310{bottom:1145.148000px;}
.h2_c01310{height:53.797500px;}
.h3_c01310{height:71.929500px;}
.h1_c01310{height:1263.750000px;}
.h0_c01310{height:1264.110000px;}
.w0_c01310{width:893.869500px;}
.w1_c01310{width:894.000000px;}
.x0_c01310{left:0.000000px;}
.x1_c01310{left:126.336000px;}
.x2_c01310{left:127.558500px;}
.x3_c01310{left:238.494000px;}
.x4_c01310{left:345.552000px;}
@media print{
.v0_c01310{vertical-align:0.000000pt;}
.v1_c01310{vertical-align:16.117333pt;}
.ls0_c01310{letter-spacing:0.000000pt;}
.ws2_c01310{word-spacing:-0.063760pt;}
.ws3_c01310{word-spacing:0.000000pt;}
.ws0_c01310{word-spacing:20.722000pt;}
.ws1_c01310{word-spacing:22.252240pt;}
._2_c01310{width:27.433147pt;}
._1_c01310{width:28.459040pt;}
._0_c01310{width:1532.216560pt;}
.fs0_c01310{font-size:63.760000pt;}
.y0_c01310{bottom:0.000000pt;}
.y3_c01310{bottom:172.910667pt;}
.y2_c01310{bottom:1013.880000pt;}
.y1_c01310{bottom:1017.909333pt;}
.h2_c01310{height:47.820000pt;}
.h3_c01310{height:63.937333pt;}
.h1_c01310{height:1123.333333pt;}
.h0_c01310{height:1123.653333pt;}
.w0_c01310{width:794.550667pt;}
.w1_c01310{width:794.666667pt;}
.x0_c01310{left:0.000000pt;}
.x1_c01310{left:112.298667pt;}
.x2_c01310{left:113.385333pt;}
.x3_c01310{left:211.994667pt;}
.x4_c01310{left:307.157333pt;}
}





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

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





.ff0_c01311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01311;src:url('chunks/assets/font_008eef4994a906b840e16ebc.woff2')format("woff");}.ff1_c01311{font-family:ff1_c01311;line-height:1.001000;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_c01311{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_c01311{vertical-align:0.000000px;}
.v1_c01311{vertical-align:18.132000px;}
.ls0_c01311{letter-spacing:0.000000px;}
.sc__c01311{text-shadow:none;}
.sc0_c01311{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__c01311{-webkit-text-stroke:0px transparent;}
.sc0_c01311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01311{word-spacing:0.000000px;}
.ws0_c01311{word-spacing:23.312250px;}
._4_c01311{margin-left:-27.329130px;}
._3_c01311{margin-left:-7.746840px;}
._2_c01311{margin-left:-2.008440px;}
._1_c01311{width:32.010420px;}
._0_c01311{width:1723.743630px;}
.fc0_c01311{color:rgb(0,0,0);}
.fs0_c01311{font-size:71.730000px;}
.y0_c01311{bottom:0.000000px;}
.y3_c01311{bottom:167.212500px;}
.y2_c01311{bottom:1140.615000px;}
.y1_c01311{bottom:1145.148000px;}
.h2_c01311{height:53.797500px;}
.h3_c01311{height:71.929500px;}
.h1_c01311{height:1263.750000px;}
.h0_c01311{height:1264.110000px;}
.w0_c01311{width:893.869500px;}
.w1_c01311{width:894.000000px;}
.x0_c01311{left:0.000000px;}
.x1_c01311{left:126.336000px;}
.x2_c01311{left:127.558500px;}
.x3_c01311{left:205.701000px;}
.x4_c01311{left:312.759000px;}
@media print{
.v0_c01311{vertical-align:0.000000pt;}
.v1_c01311{vertical-align:16.117333pt;}
.ls0_c01311{letter-spacing:0.000000pt;}
.ws1_c01311{word-spacing:0.000000pt;}
.ws0_c01311{word-spacing:20.722000pt;}
._4_c01311{margin-left:-24.292560pt;}
._3_c01311{margin-left:-6.886080pt;}
._2_c01311{margin-left:-1.785280pt;}
._1_c01311{width:28.453707pt;}
._0_c01311{width:1532.216560pt;}
.fs0_c01311{font-size:63.760000pt;}
.y0_c01311{bottom:0.000000pt;}
.y3_c01311{bottom:148.633333pt;}
.y2_c01311{bottom:1013.880000pt;}
.y1_c01311{bottom:1017.909333pt;}
.h2_c01311{height:47.820000pt;}
.h3_c01311{height:63.937333pt;}
.h1_c01311{height:1123.333333pt;}
.h0_c01311{height:1123.653333pt;}
.w0_c01311{width:794.550667pt;}
.w1_c01311{width:794.666667pt;}
.x0_c01311{left:0.000000pt;}
.x1_c01311{left:112.298667pt;}
.x2_c01311{left:113.385333pt;}
.x3_c01311{left:182.845333pt;}
.x4_c01311{left:278.008000pt;}
}





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

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





.ff0_c01312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01312;src:url('chunks/assets/font_34488a61e64c33efa223df7a.woff2')format("woff");}.ff1_c01312{font-family:ff1_c01312;line-height:1.001000;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_c01312{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_c01312{vertical-align:0.000000px;}
.v1_c01312{vertical-align:18.132000px;}
.ls0_c01312{letter-spacing:0.000000px;}
.sc__c01312{text-shadow:none;}
.sc0_c01312{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__c01312{-webkit-text-stroke:0px transparent;}
.sc0_c01312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01312{word-spacing:0.000000px;}
.ws0_c01312{word-spacing:23.312250px;}
._2_c01312{margin-left:-1.936710px;}
._1_c01312{width:32.010420px;}
._0_c01312{width:1723.743630px;}
.fc0_c01312{color:rgb(0,0,0);}
.fs0_c01312{font-size:71.730000px;}
.y0_c01312{bottom:0.000000px;}
.y3_c01312{bottom:164.520000px;}
.y2_c01312{bottom:1140.615000px;}
.y1_c01312{bottom:1145.148000px;}
.h2_c01312{height:53.797500px;}
.h3_c01312{height:71.929500px;}
.h1_c01312{height:1263.750000px;}
.h0_c01312{height:1264.110000px;}
.w0_c01312{width:893.869500px;}
.w1_c01312{width:894.000000px;}
.x0_c01312{left:0.000000px;}
.x1_c01312{left:126.336000px;}
.x2_c01312{left:127.558500px;}
.x3_c01312{left:217.653000px;}
.x4_c01312{left:324.711000px;}
@media print{
.v0_c01312{vertical-align:0.000000pt;}
.v1_c01312{vertical-align:16.117333pt;}
.ls0_c01312{letter-spacing:0.000000pt;}
.ws1_c01312{word-spacing:0.000000pt;}
.ws0_c01312{word-spacing:20.722000pt;}
._2_c01312{margin-left:-1.721520pt;}
._1_c01312{width:28.453707pt;}
._0_c01312{width:1532.216560pt;}
.fs0_c01312{font-size:63.760000pt;}
.y0_c01312{bottom:0.000000pt;}
.y3_c01312{bottom:146.240000pt;}
.y2_c01312{bottom:1013.880000pt;}
.y1_c01312{bottom:1017.909333pt;}
.h2_c01312{height:47.820000pt;}
.h3_c01312{height:63.937333pt;}
.h1_c01312{height:1123.333333pt;}
.h0_c01312{height:1123.653333pt;}
.w0_c01312{width:794.550667pt;}
.w1_c01312{width:794.666667pt;}
.x0_c01312{left:0.000000pt;}
.x1_c01312{left:112.298667pt;}
.x2_c01312{left:113.385333pt;}
.x3_c01312{left:193.469333pt;}
.x4_c01312{left:288.632000pt;}
}





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

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





.ff0_c01313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01313;src:url('chunks/assets/font_936fcd34938279746ec5442c.woff2')format("woff");}.ff1_c01313{font-family:ff1_c01313;line-height:1.001000;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_c01313;src:url('chunks/assets/font_f4b5531095c2e6b0544dbe9b.woff2')format("woff");}.ff2_c01313{font-family:ff2_c01313;line-height:1.001000;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_c01313{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_c01313{vertical-align:0.000000px;}
.ls0_c01313{letter-spacing:0.000000px;}
.sc__c01313{text-shadow:none;}
.sc0_c01313{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__c01313{-webkit-text-stroke:0px transparent;}
.sc0_c01313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01313{word-spacing:-0.071730px;}
.ws3_c01313{word-spacing:0.000000px;}
.ws0_c01313{word-spacing:23.312250px;}
.ws1_c01313{word-spacing:25.033770px;}
._2_c01313{margin-left:-37.658250px;}
._1_c01313{width:1.566330px;}
._3_c01313{width:29.355750px;}
._0_c01313{width:1723.743630px;}
.fc0_c01313{color:rgb(0,0,0);}
.fs0_c01313{font-size:71.730000px;}
.y0_c01313{bottom:0.000000px;}
.y3_c01313{bottom:325.492500px;}
.y2_c01313{bottom:1140.615000px;}
.y1_c01313{bottom:1145.148000px;}
.h2_c01313{height:53.797500px;}
.h1_c01313{height:1263.750000px;}
.h0_c01313{height:1264.110000px;}
.w0_c01313{width:893.869500px;}
.w1_c01313{width:894.000000px;}
.x0_c01313{left:0.000000px;}
.x1_c01313{left:126.336000px;}
.x2_c01313{left:127.558500px;}
.x3_c01313{left:227.665500px;}
@media print{
.v0_c01313{vertical-align:0.000000pt;}
.ls0_c01313{letter-spacing:0.000000pt;}
.ws2_c01313{word-spacing:-0.063760pt;}
.ws3_c01313{word-spacing:0.000000pt;}
.ws0_c01313{word-spacing:20.722000pt;}
.ws1_c01313{word-spacing:22.252240pt;}
._2_c01313{margin-left:-33.474000pt;}
._1_c01313{width:1.392293pt;}
._3_c01313{width:26.094000pt;}
._0_c01313{width:1532.216560pt;}
.fs0_c01313{font-size:63.760000pt;}
.y0_c01313{bottom:0.000000pt;}
.y3_c01313{bottom:289.326667pt;}
.y2_c01313{bottom:1013.880000pt;}
.y1_c01313{bottom:1017.909333pt;}
.h2_c01313{height:47.820000pt;}
.h1_c01313{height:1123.333333pt;}
.h0_c01313{height:1123.653333pt;}
.w0_c01313{width:794.550667pt;}
.w1_c01313{width:794.666667pt;}
.x0_c01313{left:0.000000pt;}
.x1_c01313{left:112.298667pt;}
.x2_c01313{left:113.385333pt;}
.x3_c01313{left:202.369333pt;}
}





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

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





.ff0_c01314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01314;src:url('chunks/assets/font_6586de9ee23a0a5f9254cafc.woff2')format("woff");}.ff1_c01314{font-family:ff1_c01314;line-height:1.001000;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_c01314;src:url('chunks/assets/font_e819fbdab39ee0b0df7fc9bd.woff2')format("woff");}.ff2_c01314{font-family:ff2_c01314;line-height:1.001000;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_c01314{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_c01314{vertical-align:0.000000px;}
.ls0_c01314{letter-spacing:0.000000px;}
.sc__c01314{text-shadow:none;}
.sc0_c01314{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__c01314{-webkit-text-stroke:0px transparent;}
.sc0_c01314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01314{word-spacing:-0.071730px;}
.ws3_c01314{word-spacing:0.000000px;}
.ws0_c01314{word-spacing:23.312250px;}
.ws1_c01314{word-spacing:25.033770px;}
._2_c01314{margin-left:-35.219430px;}
._1_c01314{margin-left:-5.953590px;}
._3_c01314{margin-left:-3.576840px;}
._4_c01314{width:27.793860px;}
._0_c01314{width:1723.743630px;}
.fc0_c01314{color:rgb(0,0,0);}
.fs0_c01314{font-size:71.730000px;}
.y0_c01314{bottom:0.000000px;}
.y3_c01314{bottom:220.422000px;}
.y2_c01314{bottom:1140.615000px;}
.y1_c01314{bottom:1145.148000px;}
.h2_c01314{height:53.797500px;}
.h1_c01314{height:1263.750000px;}
.h0_c01314{height:1264.110000px;}
.w0_c01314{width:893.869500px;}
.w1_c01314{width:894.000000px;}
.x0_c01314{left:0.000000px;}
.x1_c01314{left:126.336000px;}
.x2_c01314{left:127.558500px;}
.x3_c01314{left:266.340000px;}
@media print{
.v0_c01314{vertical-align:0.000000pt;}
.ls0_c01314{letter-spacing:0.000000pt;}
.ws2_c01314{word-spacing:-0.063760pt;}
.ws3_c01314{word-spacing:0.000000pt;}
.ws0_c01314{word-spacing:20.722000pt;}
.ws1_c01314{word-spacing:22.252240pt;}
._2_c01314{margin-left:-31.306160pt;}
._1_c01314{margin-left:-5.292080pt;}
._3_c01314{margin-left:-3.179413pt;}
._4_c01314{width:24.705653pt;}
._0_c01314{width:1532.216560pt;}
.fs0_c01314{font-size:63.760000pt;}
.y0_c01314{bottom:0.000000pt;}
.y3_c01314{bottom:195.930667pt;}
.y2_c01314{bottom:1013.880000pt;}
.y1_c01314{bottom:1017.909333pt;}
.h2_c01314{height:47.820000pt;}
.h1_c01314{height:1123.333333pt;}
.h0_c01314{height:1123.653333pt;}
.w0_c01314{width:794.550667pt;}
.w1_c01314{width:794.666667pt;}
.x0_c01314{left:0.000000pt;}
.x1_c01314{left:112.298667pt;}
.x2_c01314{left:113.385333pt;}
.x3_c01314{left:236.746667pt;}
}





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

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





.ff0_c01315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01315;src:url('chunks/assets/font_11ab155ef66b14f44061ee65.woff2')format("woff");}.ff1_c01315{font-family:ff1_c01315;line-height:1.001000;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_c01315{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_c01315{vertical-align:0.000000px;}
.ls0_c01315{letter-spacing:0.000000px;}
.sc__c01315{text-shadow:none;}
.sc0_c01315{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__c01315{-webkit-text-stroke:0px transparent;}
.sc0_c01315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01315{word-spacing:0.000000px;}
.ws0_c01315{word-spacing:23.312250px;}
._3_c01315{margin-left:-35.147700px;}
._2_c01315{margin-left:-33.210990px;}
._1_c01315{margin-left:-2.080170px;}
._0_c01315{width:1723.743630px;}
.fc0_c01315{color:rgb(0,0,0);}
.fs0_c01315{font-size:71.730000px;}
.y0_c01315{bottom:0.000000px;}
.y3_c01315{bottom:167.226000px;}
.y2_c01315{bottom:1140.615000px;}
.y1_c01315{bottom:1145.148000px;}
.h2_c01315{height:53.797500px;}
.h1_c01315{height:1263.750000px;}
.h0_c01315{height:1264.110000px;}
.w0_c01315{width:893.869500px;}
.w1_c01315{width:894.000000px;}
.x0_c01315{left:0.000000px;}
.x1_c01315{left:126.336000px;}
.x2_c01315{left:127.558500px;}
.x3_c01315{left:193.143000px;}
@media print{
.v0_c01315{vertical-align:0.000000pt;}
.ls0_c01315{letter-spacing:0.000000pt;}
.ws1_c01315{word-spacing:0.000000pt;}
.ws0_c01315{word-spacing:20.722000pt;}
._3_c01315{margin-left:-31.242400pt;}
._2_c01315{margin-left:-29.520880pt;}
._1_c01315{margin-left:-1.849040pt;}
._0_c01315{width:1532.216560pt;}
.fs0_c01315{font-size:63.760000pt;}
.y0_c01315{bottom:0.000000pt;}
.y3_c01315{bottom:148.645333pt;}
.y2_c01315{bottom:1013.880000pt;}
.y1_c01315{bottom:1017.909333pt;}
.h2_c01315{height:47.820000pt;}
.h1_c01315{height:1123.333333pt;}
.h0_c01315{height:1123.653333pt;}
.w0_c01315{width:794.550667pt;}
.w1_c01315{width:794.666667pt;}
.x0_c01315{left:0.000000pt;}
.x1_c01315{left:112.298667pt;}
.x2_c01315{left:113.385333pt;}
.x3_c01315{left:171.682667pt;}
}





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

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





.ff0_c01316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01316;src:url('chunks/assets/font_d0dd8a769ba7fc5a0736d4ca.woff2')format("woff");}.ff1_c01316{font-family:ff1_c01316;line-height:1.001000;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_c01316{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_c01316{vertical-align:0.000000px;}
.ls0_c01316{letter-spacing:0.000000px;}
.sc__c01316{text-shadow:none;}
.sc0_c01316{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__c01316{-webkit-text-stroke:0px transparent;}
.sc0_c01316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01316{word-spacing:0.000000px;}
.ws0_c01316{word-spacing:23.312250px;}
._1_c01316{margin-left:-35.291160px;}
._3_c01316{margin-left:-1.936710px;}
._2_c01316{width:1.864980px;}
._0_c01316{width:1723.743630px;}
.fc0_c01316{color:rgb(0,0,0);}
.fs0_c01316{font-size:71.730000px;}
.y0_c01316{bottom:0.000000px;}
.y3_c01316{bottom:138.885000px;}
.y2_c01316{bottom:1140.615000px;}
.y1_c01316{bottom:1145.148000px;}
.h2_c01316{height:53.797500px;}
.h1_c01316{height:1263.750000px;}
.h0_c01316{height:1264.110000px;}
.w0_c01316{width:893.869500px;}
.w1_c01316{width:894.000000px;}
.x0_c01316{left:0.000000px;}
.x1_c01316{left:126.336000px;}
.x2_c01316{left:127.558500px;}
.x3_c01316{left:149.856000px;}
@media print{
.v0_c01316{vertical-align:0.000000pt;}
.ls0_c01316{letter-spacing:0.000000pt;}
.ws1_c01316{word-spacing:0.000000pt;}
.ws0_c01316{word-spacing:20.722000pt;}
._1_c01316{margin-left:-31.369920pt;}
._3_c01316{margin-left:-1.721520pt;}
._2_c01316{width:1.657760pt;}
._0_c01316{width:1532.216560pt;}
.fs0_c01316{font-size:63.760000pt;}
.y0_c01316{bottom:0.000000pt;}
.y3_c01316{bottom:123.453333pt;}
.y2_c01316{bottom:1013.880000pt;}
.y1_c01316{bottom:1017.909333pt;}
.h2_c01316{height:47.820000pt;}
.h1_c01316{height:1123.333333pt;}
.h0_c01316{height:1123.653333pt;}
.w0_c01316{width:794.550667pt;}
.w1_c01316{width:794.666667pt;}
.x0_c01316{left:0.000000pt;}
.x1_c01316{left:112.298667pt;}
.x2_c01316{left:113.385333pt;}
.x3_c01316{left:133.205333pt;}
}





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

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





.ff0_c01317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01317;src:url('chunks/assets/font_3d107a343ce0efc10ffc2908.woff2')format("woff");}.ff1_c01317{font-family:ff1_c01317;line-height:1.001000;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_c01317{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_c01317{vertical-align:0.000000px;}
.ls0_c01317{letter-spacing:0.000000px;}
.sc__c01317{text-shadow:none;}
.sc0_c01317{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__c01317{-webkit-text-stroke:0px transparent;}
.sc0_c01317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01317{word-spacing:0.000000px;}
.ws0_c01317{word-spacing:23.312250px;}
._3_c01317{margin-left:-35.147700px;}
._1_c01317{margin-left:-2.080170px;}
._2_c01317{width:1.864980px;}
._0_c01317{width:1723.743630px;}
.fc0_c01317{color:rgb(0,0,0);}
.fs0_c01317{font-size:71.730000px;}
.y0_c01317{bottom:0.000000px;}
.y3_c01317{bottom:162.715500px;}
.y2_c01317{bottom:1140.615000px;}
.y1_c01317{bottom:1145.148000px;}
.h2_c01317{height:53.797500px;}
.h1_c01317{height:1263.750000px;}
.h0_c01317{height:1264.110000px;}
.w0_c01317{width:893.869500px;}
.w1_c01317{width:894.000000px;}
.x0_c01317{left:0.000000px;}
.x1_c01317{left:126.336000px;}
.x2_c01317{left:127.558500px;}
.x3_c01317{left:136.902000px;}
@media print{
.v0_c01317{vertical-align:0.000000pt;}
.ls0_c01317{letter-spacing:0.000000pt;}
.ws1_c01317{word-spacing:0.000000pt;}
.ws0_c01317{word-spacing:20.722000pt;}
._3_c01317{margin-left:-31.242400pt;}
._1_c01317{margin-left:-1.849040pt;}
._2_c01317{width:1.657760pt;}
._0_c01317{width:1532.216560pt;}
.fs0_c01317{font-size:63.760000pt;}
.y0_c01317{bottom:0.000000pt;}
.y3_c01317{bottom:144.636000pt;}
.y2_c01317{bottom:1013.880000pt;}
.y1_c01317{bottom:1017.909333pt;}
.h2_c01317{height:47.820000pt;}
.h1_c01317{height:1123.333333pt;}
.h0_c01317{height:1123.653333pt;}
.w0_c01317{width:794.550667pt;}
.w1_c01317{width:794.666667pt;}
.x0_c01317{left:0.000000pt;}
.x1_c01317{left:112.298667pt;}
.x2_c01317{left:113.385333pt;}
.x3_c01317{left:121.690667pt;}
}





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

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





.ff0_c01318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01318;src:url('chunks/assets/font_adbecd6262400ffd00f8bea9.woff2')format("woff");}.ff1_c01318{font-family:ff1_c01318;line-height:1.001000;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_c01318;src:url('chunks/assets/font_ae5e19a8cb10bd59fa7d5a67.woff2')format("woff");}.ff2_c01318{font-family:ff2_c01318;line-height:1.001000;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_c01318{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_c01318{vertical-align:0.000000px;}
.ls0_c01318{letter-spacing:0.000000px;}
.sc__c01318{text-shadow:none;}
.sc0_c01318{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__c01318{-webkit-text-stroke:0px transparent;}
.sc0_c01318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01318{word-spacing:0.000000px;}
.ws0_c01318{word-spacing:23.312250px;}
.ws1_c01318{word-spacing:28.703790px;}
._2_c01318{margin-left:-3.672120px;}
._1_c01318{margin-left:-2.080170px;}
._0_c01318{width:1723.743630px;}
.fc0_c01318{color:rgb(0,0,0);}
.fs0_c01318{font-size:71.730000px;}
.y0_c01318{bottom:0.000000px;}
.y3_c01318{bottom:165.756000px;}
.y2_c01318{bottom:1140.615000px;}
.y1_c01318{bottom:1145.148000px;}
.h2_c01318{height:53.797500px;}
.h1_c01318{height:1263.750000px;}
.h0_c01318{height:1264.110000px;}
.w0_c01318{width:893.869500px;}
.w1_c01318{width:894.000000px;}
.x0_c01318{left:0.000000px;}
.x1_c01318{left:126.336000px;}
.x2_c01318{left:127.558500px;}
.x3_c01318{left:253.348500px;}
@media print{
.v0_c01318{vertical-align:0.000000pt;}
.ls0_c01318{letter-spacing:0.000000pt;}
.ws2_c01318{word-spacing:0.000000pt;}
.ws0_c01318{word-spacing:20.722000pt;}
.ws1_c01318{word-spacing:25.514480pt;}
._2_c01318{margin-left:-3.264107pt;}
._1_c01318{margin-left:-1.849040pt;}
._0_c01318{width:1532.216560pt;}
.fs0_c01318{font-size:63.760000pt;}
.y0_c01318{bottom:0.000000pt;}
.y3_c01318{bottom:147.338667pt;}
.y2_c01318{bottom:1013.880000pt;}
.y1_c01318{bottom:1017.909333pt;}
.h2_c01318{height:47.820000pt;}
.h1_c01318{height:1123.333333pt;}
.h0_c01318{height:1123.653333pt;}
.w0_c01318{width:794.550667pt;}
.w1_c01318{width:794.666667pt;}
.x0_c01318{left:0.000000pt;}
.x1_c01318{left:112.298667pt;}
.x2_c01318{left:113.385333pt;}
.x3_c01318{left:225.198667pt;}
}





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

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





.ff0_c01319{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01319;src:url('chunks/assets/font_5c1b2a8803ede27f7d6ce799.woff2')format("woff");}.ff1_c01319{font-family:ff1_c01319;line-height:1.001000;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_c01319;src:url('chunks/assets/font_958f3bc6aad90480a2fea7d5.woff2')format("woff");}.ff2_c01319{font-family:ff2_c01319;line-height:1.001000;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_c01319{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_c01319{vertical-align:0.000000px;}
.ls0_c01319{letter-spacing:0.000000px;}
.sc__c01319{text-shadow:none;}
.sc0_c01319{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__c01319{-webkit-text-stroke:0px transparent;}
.sc0_c01319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01319{word-spacing:-0.071730px;}
.ws3_c01319{word-spacing:0.000000px;}
.ws0_c01319{word-spacing:23.312250px;}
.ws1_c01319{word-spacing:25.033770px;}
._2_c01319{margin-left:-35.944620px;}
._3_c01319{margin-left:-3.586500px;}
._1_c01319{margin-left:-2.080170px;}
._4_c01319{width:28.751280px;}
._0_c01319{width:1723.743630px;}
.fc0_c01319{color:rgb(0,0,0);}
.fs0_c01319{font-size:71.730000px;}
.y0_c01319{bottom:0.000000px;}
.y3_c01319{bottom:358.170000px;}
.y2_c01319{bottom:1140.615000px;}
.y1_c01319{bottom:1145.148000px;}
.h2_c01319{height:53.797500px;}
.h1_c01319{height:1263.750000px;}
.h0_c01319{height:1264.110000px;}
.w0_c01319{width:893.869500px;}
.w1_c01319{width:894.000000px;}
.x0_c01319{left:0.000000px;}
.x1_c01319{left:126.336000px;}
.x2_c01319{left:127.558500px;}
.x3_c01319{left:215.806500px;}
@media print{
.v0_c01319{vertical-align:0.000000pt;}
.ls0_c01319{letter-spacing:0.000000pt;}
.ws2_c01319{word-spacing:-0.063760pt;}
.ws3_c01319{word-spacing:0.000000pt;}
.ws0_c01319{word-spacing:20.722000pt;}
.ws1_c01319{word-spacing:22.252240pt;}
._2_c01319{margin-left:-31.950773pt;}
._3_c01319{margin-left:-3.188000pt;}
._1_c01319{margin-left:-1.849040pt;}
._4_c01319{width:25.556693pt;}
._0_c01319{width:1532.216560pt;}
.fs0_c01319{font-size:63.760000pt;}
.y0_c01319{bottom:0.000000pt;}
.y3_c01319{bottom:318.373333pt;}
.y2_c01319{bottom:1013.880000pt;}
.y1_c01319{bottom:1017.909333pt;}
.h2_c01319{height:47.820000pt;}
.h1_c01319{height:1123.333333pt;}
.h0_c01319{height:1123.653333pt;}
.w0_c01319{width:794.550667pt;}
.w1_c01319{width:794.666667pt;}
.x0_c01319{left:0.000000pt;}
.x1_c01319{left:112.298667pt;}
.x2_c01319{left:113.385333pt;}
.x3_c01319{left:191.828000pt;}
}





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

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





.ff0_c01320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01320;src:url('chunks/assets/font_abf85a9f11e42f07ea535f3d.woff2')format("woff");}.ff1_c01320{font-family:ff1_c01320;line-height:1.001000;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_c01320;src:url('chunks/assets/font_881046947c00c6125b676387.woff2')format("woff");}.ff2_c01320{font-family:ff2_c01320;line-height:1.001000;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_c01320{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_c01320{vertical-align:0.000000px;}
.ls0_c01320{letter-spacing:0.000000px;}
.sc__c01320{text-shadow:none;}
.sc0_c01320{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__c01320{-webkit-text-stroke:0px transparent;}
.sc0_c01320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01320{word-spacing:-0.071730px;}
.ws3_c01320{word-spacing:0.000000px;}
.ws0_c01320{word-spacing:23.312250px;}
.ws1_c01320{word-spacing:25.033770px;}
._1_c01320{margin-left:-6.025320px;}
._2_c01320{margin-left:-3.578970px;}
._3_c01320{width:27.800190px;}
._0_c01320{width:1723.743630px;}
.fc0_c01320{color:rgb(0,0,0);}
.fs0_c01320{font-size:71.730000px;}
.y0_c01320{bottom:0.000000px;}
.y3_c01320{bottom:168.985500px;}
.y2_c01320{bottom:1140.615000px;}
.y1_c01320{bottom:1145.148000px;}
.h2_c01320{height:53.797500px;}
.h1_c01320{height:1263.750000px;}
.h0_c01320{height:1264.110000px;}
.w0_c01320{width:893.869500px;}
.w1_c01320{width:894.000000px;}
.x0_c01320{left:0.000000px;}
.x1_c01320{left:126.336000px;}
.x2_c01320{left:127.558500px;}
.x3_c01320{left:220.789500px;}
@media print{
.v0_c01320{vertical-align:0.000000pt;}
.ls0_c01320{letter-spacing:0.000000pt;}
.ws2_c01320{word-spacing:-0.063760pt;}
.ws3_c01320{word-spacing:0.000000pt;}
.ws0_c01320{word-spacing:20.722000pt;}
.ws1_c01320{word-spacing:22.252240pt;}
._1_c01320{margin-left:-5.355840pt;}
._2_c01320{margin-left:-3.181307pt;}
._3_c01320{width:24.711280pt;}
._0_c01320{width:1532.216560pt;}
.fs0_c01320{font-size:63.760000pt;}
.y0_c01320{bottom:0.000000pt;}
.y3_c01320{bottom:150.209333pt;}
.y2_c01320{bottom:1013.880000pt;}
.y1_c01320{bottom:1017.909333pt;}
.h2_c01320{height:47.820000pt;}
.h1_c01320{height:1123.333333pt;}
.h0_c01320{height:1123.653333pt;}
.w0_c01320{width:794.550667pt;}
.w1_c01320{width:794.666667pt;}
.x0_c01320{left:0.000000pt;}
.x1_c01320{left:112.298667pt;}
.x2_c01320{left:113.385333pt;}
.x3_c01320{left:196.257333pt;}
}





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

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





.ff0_c01321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01321;src:url('chunks/assets/font_bf1dce258a0669db4fa8a13b.woff2')format("woff");}.ff1_c01321{font-family:ff1_c01321;line-height:1.001000;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_c01321{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_c01321{vertical-align:0.000000px;}
.ls0_c01321{letter-spacing:0.000000px;}
.sc__c01321{text-shadow:none;}
.sc0_c01321{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__c01321{-webkit-text-stroke:0px transparent;}
.sc0_c01321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01321{word-spacing:0.000000px;}
.ws0_c01321{word-spacing:23.312250px;}
._4_c01321{margin-left:-37.156140px;}
._2_c01321{margin-left:-33.210990px;}
._1_c01321{margin-left:-2.080170px;}
._3_c01321{width:2.080170px;}
._0_c01321{width:1723.743630px;}
.fc0_c01321{color:rgb(0,0,0);}
.fs0_c01321{font-size:71.730000px;}
.y0_c01321{bottom:0.000000px;}
.y3_c01321{bottom:167.226000px;}
.y2_c01321{bottom:1140.615000px;}
.y1_c01321{bottom:1145.148000px;}
.h2_c01321{height:53.797500px;}
.h1_c01321{height:1263.750000px;}
.h0_c01321{height:1264.110000px;}
.w0_c01321{width:893.869500px;}
.w1_c01321{width:894.000000px;}
.x0_c01321{left:0.000000px;}
.x1_c01321{left:126.336000px;}
.x2_c01321{left:127.558500px;}
.x3_c01321{left:169.584000px;}
@media print{
.v0_c01321{vertical-align:0.000000pt;}
.ls0_c01321{letter-spacing:0.000000pt;}
.ws1_c01321{word-spacing:0.000000pt;}
.ws0_c01321{word-spacing:20.722000pt;}
._4_c01321{margin-left:-33.027680pt;}
._2_c01321{margin-left:-29.520880pt;}
._1_c01321{margin-left:-1.849040pt;}
._3_c01321{width:1.849040pt;}
._0_c01321{width:1532.216560pt;}
.fs0_c01321{font-size:63.760000pt;}
.y0_c01321{bottom:0.000000pt;}
.y3_c01321{bottom:148.645333pt;}
.y2_c01321{bottom:1013.880000pt;}
.y1_c01321{bottom:1017.909333pt;}
.h2_c01321{height:47.820000pt;}
.h1_c01321{height:1123.333333pt;}
.h0_c01321{height:1123.653333pt;}
.w0_c01321{width:794.550667pt;}
.w1_c01321{width:794.666667pt;}
.x0_c01321{left:0.000000pt;}
.x1_c01321{left:112.298667pt;}
.x2_c01321{left:113.385333pt;}
.x3_c01321{left:150.741333pt;}
}





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

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





.ff0_c01322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01322;src:url('chunks/assets/font_346b6f29e698dbce7f82cc00.woff2')format("woff");}.ff1_c01322{font-family:ff1_c01322;line-height:1.001000;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_c01322{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_c01322{vertical-align:0.000000px;}
.ls0_c01322{letter-spacing:0.000000px;}
.sc__c01322{text-shadow:none;}
.sc0_c01322{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__c01322{-webkit-text-stroke:0px transparent;}
.sc0_c01322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01322{word-spacing:0.000000px;}
.ws0_c01322{word-spacing:23.312250px;}
._2_c01322{margin-left:-33.210990px;}
._4_c01322{margin-left:-27.329130px;}
._3_c01322{margin-left:-7.531650px;}
._1_c01322{margin-left:-2.080170px;}
._0_c01322{width:1723.743630px;}
.fc0_c01322{color:rgb(0,0,0);}
.fs0_c01322{font-size:71.730000px;}
.y0_c01322{bottom:0.000000px;}
.y3_c01322{bottom:167.226000px;}
.y2_c01322{bottom:1140.615000px;}
.y1_c01322{bottom:1145.148000px;}
.h2_c01322{height:53.797500px;}
.h1_c01322{height:1263.750000px;}
.h0_c01322{height:1264.110000px;}
.w0_c01322{width:893.869500px;}
.w1_c01322{width:894.000000px;}
.x0_c01322{left:0.000000px;}
.x1_c01322{left:126.336000px;}
.x2_c01322{left:127.558500px;}
.x3_c01322{left:195.712500px;}
@media print{
.v0_c01322{vertical-align:0.000000pt;}
.ls0_c01322{letter-spacing:0.000000pt;}
.ws1_c01322{word-spacing:0.000000pt;}
.ws0_c01322{word-spacing:20.722000pt;}
._2_c01322{margin-left:-29.520880pt;}
._4_c01322{margin-left:-24.292560pt;}
._3_c01322{margin-left:-6.694800pt;}
._1_c01322{margin-left:-1.849040pt;}
._0_c01322{width:1532.216560pt;}
.fs0_c01322{font-size:63.760000pt;}
.y0_c01322{bottom:0.000000pt;}
.y3_c01322{bottom:148.645333pt;}
.y2_c01322{bottom:1013.880000pt;}
.y1_c01322{bottom:1017.909333pt;}
.h2_c01322{height:47.820000pt;}
.h1_c01322{height:1123.333333pt;}
.h0_c01322{height:1123.653333pt;}
.w0_c01322{width:794.550667pt;}
.w1_c01322{width:794.666667pt;}
.x0_c01322{left:0.000000pt;}
.x1_c01322{left:112.298667pt;}
.x2_c01322{left:113.385333pt;}
.x3_c01322{left:173.966667pt;}
}





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

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





.ff0_c01323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01323;src:url('chunks/assets/font_750d45a1a1823398ff80d59e.woff2')format("woff");}.ff1_c01323{font-family:ff1_c01323;line-height:1.001000;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_c01323;src:url('chunks/assets/font_bef143c415d7e72f83480b05.woff2')format("woff");}.ff2_c01323{font-family:ff2_c01323;line-height:1.001000;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_c01323{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_c01323{vertical-align:0.000000px;}
.ls0_c01323{letter-spacing:0.000000px;}
.sc__c01323{text-shadow:none;}
.sc0_c01323{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__c01323{-webkit-text-stroke:0px transparent;}
.sc0_c01323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01323{word-spacing:-0.071730px;}
.ws3_c01323{word-spacing:0.000000px;}
.ws0_c01323{word-spacing:23.312250px;}
.ws1_c01323{word-spacing:25.033770px;}
._3_c01323{margin-left:-35.865000px;}
._1_c01323{margin-left:-6.025320px;}
._2_c01323{margin-left:-3.634320px;}
._4_c01323{width:27.846780px;}
._0_c01323{width:1723.743630px;}
.fc0_c01323{color:rgb(0,0,0);}
.fs0_c01323{font-size:71.730000px;}
.y0_c01323{bottom:0.000000px;}
.y3_c01323{bottom:156.444000px;}
.y2_c01323{bottom:1140.615000px;}
.y1_c01323{bottom:1145.148000px;}
.h2_c01323{height:53.797500px;}
.h1_c01323{height:1263.750000px;}
.h0_c01323{height:1264.110000px;}
.w0_c01323{width:893.869500px;}
.w1_c01323{width:894.000000px;}
.x0_c01323{left:0.000000px;}
.x1_c01323{left:126.336000px;}
.x2_c01323{left:127.558500px;}
.x3_c01323{left:228.558000px;}
@media print{
.v0_c01323{vertical-align:0.000000pt;}
.ls0_c01323{letter-spacing:0.000000pt;}
.ws2_c01323{word-spacing:-0.063760pt;}
.ws3_c01323{word-spacing:0.000000pt;}
.ws0_c01323{word-spacing:20.722000pt;}
.ws1_c01323{word-spacing:22.252240pt;}
._3_c01323{margin-left:-31.880000pt;}
._1_c01323{margin-left:-5.355840pt;}
._2_c01323{margin-left:-3.230507pt;}
._4_c01323{width:24.752693pt;}
._0_c01323{width:1532.216560pt;}
.fs0_c01323{font-size:63.760000pt;}
.y0_c01323{bottom:0.000000pt;}
.y3_c01323{bottom:139.061333pt;}
.y2_c01323{bottom:1013.880000pt;}
.y1_c01323{bottom:1017.909333pt;}
.h2_c01323{height:47.820000pt;}
.h1_c01323{height:1123.333333pt;}
.h0_c01323{height:1123.653333pt;}
.w0_c01323{width:794.550667pt;}
.w1_c01323{width:794.666667pt;}
.x0_c01323{left:0.000000pt;}
.x1_c01323{left:112.298667pt;}
.x2_c01323{left:113.385333pt;}
.x3_c01323{left:203.162667pt;}
}





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

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





.ff0_c01324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01324;src:url('chunks/assets/font_677751af41e2028888772169.woff2')format("woff");}.ff1_c01324{font-family:ff1_c01324;line-height:1.001000;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_c01324{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_c01324{vertical-align:0.000000px;}
.ls0_c01324{letter-spacing:0.000000px;}
.sc__c01324{text-shadow:none;}
.sc0_c01324{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__c01324{-webkit-text-stroke:0px transparent;}
.sc0_c01324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01324{word-spacing:0.000000px;}
.ws0_c01324{word-spacing:23.312250px;}
._2_c01324{margin-left:-37.156140px;}
._3_c01324{margin-left:-2.008440px;}
._1_c01324{width:1.864980px;}
._0_c01324{width:1723.743630px;}
.fc0_c01324{color:rgb(0,0,0);}
.fs0_c01324{font-size:71.730000px;}
.y0_c01324{bottom:0.000000px;}
.y3_c01324{bottom:167.226000px;}
.y2_c01324{bottom:1140.615000px;}
.y1_c01324{bottom:1145.148000px;}
.h2_c01324{height:53.797500px;}
.h1_c01324{height:1263.750000px;}
.h0_c01324{height:1264.110000px;}
.w0_c01324{width:893.869500px;}
.w1_c01324{width:894.000000px;}
.x0_c01324{left:0.000000px;}
.x1_c01324{left:126.336000px;}
.x2_c01324{left:127.558500px;}
.x3_c01324{left:222.516000px;}
@media print{
.v0_c01324{vertical-align:0.000000pt;}
.ls0_c01324{letter-spacing:0.000000pt;}
.ws1_c01324{word-spacing:0.000000pt;}
.ws0_c01324{word-spacing:20.722000pt;}
._2_c01324{margin-left:-33.027680pt;}
._3_c01324{margin-left:-1.785280pt;}
._1_c01324{width:1.657760pt;}
._0_c01324{width:1532.216560pt;}
.fs0_c01324{font-size:63.760000pt;}
.y0_c01324{bottom:0.000000pt;}
.y3_c01324{bottom:148.645333pt;}
.y2_c01324{bottom:1013.880000pt;}
.y1_c01324{bottom:1017.909333pt;}
.h2_c01324{height:47.820000pt;}
.h1_c01324{height:1123.333333pt;}
.h0_c01324{height:1123.653333pt;}
.w0_c01324{width:794.550667pt;}
.w1_c01324{width:794.666667pt;}
.x0_c01324{left:0.000000pt;}
.x1_c01324{left:112.298667pt;}
.x2_c01324{left:113.385333pt;}
.x3_c01324{left:197.792000pt;}
}





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

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





.ff0_c01325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01325;src:url('chunks/assets/font_79ce7316d239ea29d5559aea.woff2')format("woff");}.ff1_c01325{font-family:ff1_c01325;line-height:1.001000;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_c01325{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_c01325{vertical-align:0.000000px;}
.ls0_c01325{letter-spacing:0.000000px;}
.sc__c01325{text-shadow:none;}
.sc0_c01325{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__c01325{-webkit-text-stroke:0px transparent;}
.sc0_c01325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01325{word-spacing:0.000000px;}
.ws0_c01325{word-spacing:23.312250px;}
._1_c01325{margin-left:-2.080170px;}
._0_c01325{width:1723.743630px;}
.fc0_c01325{color:rgb(0,0,0);}
.fs0_c01325{font-size:71.730000px;}
.y0_c01325{bottom:0.000000px;}
.y3_c01325{bottom:190.356000px;}
.y2_c01325{bottom:1140.615000px;}
.y1_c01325{bottom:1145.148000px;}
.h2_c01325{height:53.797500px;}
.h1_c01325{height:1263.750000px;}
.h0_c01325{height:1264.110000px;}
.w0_c01325{width:893.869500px;}
.w1_c01325{width:894.000000px;}
.x0_c01325{left:0.000000px;}
.x1_c01325{left:126.336000px;}
.x2_c01325{left:127.558500px;}
.x3_c01325{left:138.012000px;}
@media print{
.v0_c01325{vertical-align:0.000000pt;}
.ls0_c01325{letter-spacing:0.000000pt;}
.ws1_c01325{word-spacing:0.000000pt;}
.ws0_c01325{word-spacing:20.722000pt;}
._1_c01325{margin-left:-1.849040pt;}
._0_c01325{width:1532.216560pt;}
.fs0_c01325{font-size:63.760000pt;}
.y0_c01325{bottom:0.000000pt;}
.y3_c01325{bottom:169.205333pt;}
.y2_c01325{bottom:1013.880000pt;}
.y1_c01325{bottom:1017.909333pt;}
.h2_c01325{height:47.820000pt;}
.h1_c01325{height:1123.333333pt;}
.h0_c01325{height:1123.653333pt;}
.w0_c01325{width:794.550667pt;}
.w1_c01325{width:794.666667pt;}
.x0_c01325{left:0.000000pt;}
.x1_c01325{left:112.298667pt;}
.x2_c01325{left:113.385333pt;}
.x3_c01325{left:122.677333pt;}
}





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

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





.ff0_c01326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01326;src:url('chunks/assets/font_33a6f1b2301db4d621d596d3.woff2')format("woff");}.ff1_c01326{font-family:ff1_c01326;line-height:1.001000;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_c01326;src:url('chunks/assets/font_10e28afdae1ebd71720e0d50.woff2')format("woff");}.ff2_c01326{font-family:ff2_c01326;line-height:1.001000;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_c01326{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_c01326{vertical-align:0.000000px;}
.ls0_c01326{letter-spacing:0.000000px;}
.sc__c01326{text-shadow:none;}
.sc0_c01326{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__c01326{-webkit-text-stroke:0px transparent;}
.sc0_c01326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01326{word-spacing:-0.071730px;}
.ws3_c01326{word-spacing:0.000000px;}
.ws0_c01326{word-spacing:23.312250px;}
.ws1_c01326{word-spacing:27.737790px;}
._2_c01326{margin-left:-3.549900px;}
._1_c01326{margin-left:-2.080170px;}
._0_c01326{width:1723.743630px;}
.fc0_c01326{color:rgb(0,0,0);}
.fs0_c01326{font-size:71.730000px;}
.y0_c01326{bottom:0.000000px;}
.y3_c01326{bottom:410.628000px;}
.y2_c01326{bottom:1140.615000px;}
.y1_c01326{bottom:1145.148000px;}
.h2_c01326{height:53.797500px;}
.h1_c01326{height:1263.750000px;}
.h0_c01326{height:1264.110000px;}
.w0_c01326{width:893.869500px;}
.w1_c01326{width:894.000000px;}
.x0_c01326{left:0.000000px;}
.x1_c01326{left:126.336000px;}
.x2_c01326{left:127.558500px;}
.x3_c01326{left:207.858000px;}
@media print{
.v0_c01326{vertical-align:0.000000pt;}
.ls0_c01326{letter-spacing:0.000000pt;}
.ws2_c01326{word-spacing:-0.063760pt;}
.ws3_c01326{word-spacing:0.000000pt;}
.ws0_c01326{word-spacing:20.722000pt;}
.ws1_c01326{word-spacing:24.655813pt;}
._2_c01326{margin-left:-3.155467pt;}
._1_c01326{margin-left:-1.849040pt;}
._0_c01326{width:1532.216560pt;}
.fs0_c01326{font-size:63.760000pt;}
.y0_c01326{bottom:0.000000pt;}
.y3_c01326{bottom:365.002667pt;}
.y2_c01326{bottom:1013.880000pt;}
.y1_c01326{bottom:1017.909333pt;}
.h2_c01326{height:47.820000pt;}
.h1_c01326{height:1123.333333pt;}
.h0_c01326{height:1123.653333pt;}
.w0_c01326{width:794.550667pt;}
.w1_c01326{width:794.666667pt;}
.x0_c01326{left:0.000000pt;}
.x1_c01326{left:112.298667pt;}
.x2_c01326{left:113.385333pt;}
.x3_c01326{left:184.762667pt;}
}





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

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





.ff0_c01327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01327;src:url('chunks/assets/font_deb739c2d42ef8e613d5582c.woff2')format("woff");}.ff1_c01327{font-family:ff1_c01327;line-height:1.001000;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_c01327;src:url('chunks/assets/font_78f61b9f49b767c81d4256e6.woff2')format("woff");}.ff2_c01327{font-family:ff2_c01327;line-height:1.001000;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_c01327{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_c01327{vertical-align:0.000000px;}
.ls0_c01327{letter-spacing:0.000000px;}
.sc__c01327{text-shadow:none;}
.sc0_c01327{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__c01327{-webkit-text-stroke:0px transparent;}
.sc0_c01327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01327{word-spacing:-0.071730px;}
.ws3_c01327{word-spacing:0.000000px;}
.ws0_c01327{word-spacing:23.312250px;}
.ws1_c01327{word-spacing:32.053560px;}
._1_c01327{margin-left:-6.025320px;}
._0_c01327{width:1723.743630px;}
.fc0_c01327{color:rgb(0,0,0);}
.fs0_c01327{font-size:71.730000px;}
.y0_c01327{bottom:0.000000px;}
.y3_c01327{bottom:222.591000px;}
.y2_c01327{bottom:1140.615000px;}
.y1_c01327{bottom:1145.148000px;}
.h2_c01327{height:53.797500px;}
.h1_c01327{height:1263.750000px;}
.h0_c01327{height:1264.110000px;}
.w0_c01327{width:893.869500px;}
.w1_c01327{width:894.000000px;}
.x0_c01327{left:0.000000px;}
.x1_c01327{left:126.336000px;}
.x2_c01327{left:127.558500px;}
.x3_c01327{left:270.274500px;}
@media print{
.v0_c01327{vertical-align:0.000000pt;}
.ls0_c01327{letter-spacing:0.000000pt;}
.ws2_c01327{word-spacing:-0.063760pt;}
.ws3_c01327{word-spacing:0.000000pt;}
.ws0_c01327{word-spacing:20.722000pt;}
.ws1_c01327{word-spacing:28.492053pt;}
._1_c01327{margin-left:-5.355840pt;}
._0_c01327{width:1532.216560pt;}
.fs0_c01327{font-size:63.760000pt;}
.y0_c01327{bottom:0.000000pt;}
.y3_c01327{bottom:197.858667pt;}
.y2_c01327{bottom:1013.880000pt;}
.y1_c01327{bottom:1017.909333pt;}
.h2_c01327{height:47.820000pt;}
.h1_c01327{height:1123.333333pt;}
.h0_c01327{height:1123.653333pt;}
.w0_c01327{width:794.550667pt;}
.w1_c01327{width:794.666667pt;}
.x0_c01327{left:0.000000pt;}
.x1_c01327{left:112.298667pt;}
.x2_c01327{left:113.385333pt;}
.x3_c01327{left:240.244000pt;}
}





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

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





.ff0_c01328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01328;src:url('chunks/assets/font_b77d8d9e69caf59871f394bd.woff2')format("woff");}.ff1_c01328{font-family:ff1_c01328;line-height:1.001000;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_c01328;src:url('chunks/assets/font_9c1bd463da56c054874dbaf1.woff2')format("woff");}.ff2_c01328{font-family:ff2_c01328;line-height:1.001000;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_c01328{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_c01328{vertical-align:0.000000px;}
.ls0_c01328{letter-spacing:0.000000px;}
.sc__c01328{text-shadow:none;}
.sc0_c01328{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__c01328{-webkit-text-stroke:0px transparent;}
.sc0_c01328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01328{word-spacing:-0.071730px;}
.ws3_c01328{word-spacing:0.000000px;}
.ws0_c01328{word-spacing:23.312250px;}
.ws1_c01328{word-spacing:25.033770px;}
._1_c01328{margin-left:-5.600670px;}
._2_c01328{width:27.773760px;}
._0_c01328{width:1723.743630px;}
.fc0_c01328{color:rgb(0,0,0);}
.fs0_c01328{font-size:71.730000px;}
.y0_c01328{bottom:0.000000px;}
.y3_c01328{bottom:189.417000px;}
.y2_c01328{bottom:1140.615000px;}
.y1_c01328{bottom:1145.148000px;}
.h2_c01328{height:53.797500px;}
.h1_c01328{height:1263.750000px;}
.h0_c01328{height:1264.110000px;}
.w0_c01328{width:893.869500px;}
.w1_c01328{width:894.000000px;}
.x0_c01328{left:0.000000px;}
.x1_c01328{left:126.336000px;}
.x2_c01328{left:127.558500px;}
.x3_c01328{left:242.539500px;}
@media print{
.v0_c01328{vertical-align:0.000000pt;}
.ls0_c01328{letter-spacing:0.000000pt;}
.ws2_c01328{word-spacing:-0.063760pt;}
.ws3_c01328{word-spacing:0.000000pt;}
.ws0_c01328{word-spacing:20.722000pt;}
.ws1_c01328{word-spacing:22.252240pt;}
._1_c01328{margin-left:-4.978373pt;}
._2_c01328{width:24.687787pt;}
._0_c01328{width:1532.216560pt;}
.fs0_c01328{font-size:63.760000pt;}
.y0_c01328{bottom:0.000000pt;}
.y3_c01328{bottom:168.370667pt;}
.y2_c01328{bottom:1013.880000pt;}
.y1_c01328{bottom:1017.909333pt;}
.h2_c01328{height:47.820000pt;}
.h1_c01328{height:1123.333333pt;}
.h0_c01328{height:1123.653333pt;}
.w0_c01328{width:794.550667pt;}
.w1_c01328{width:794.666667pt;}
.x0_c01328{left:0.000000pt;}
.x1_c01328{left:112.298667pt;}
.x2_c01328{left:113.385333pt;}
.x3_c01328{left:215.590667pt;}
}





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

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





.ff0_c01329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01329;src:url('chunks/assets/font_74252128970cf7424837b71b.woff2')format("woff");}.ff1_c01329{font-family:ff1_c01329;line-height:1.001000;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_c01329;src:url('chunks/assets/font_5acb16d73b173b881180a648.woff2')format("woff");}.ff2_c01329{font-family:ff2_c01329;line-height:1.001000;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_c01329{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_c01329{vertical-align:0.000000px;}
.ls0_c01329{letter-spacing:0.000000px;}
.sc__c01329{text-shadow:none;}
.sc0_c01329{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__c01329{-webkit-text-stroke:0px transparent;}
.sc0_c01329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c01329{word-spacing:-0.071730px;}
.ws6_c01329{word-spacing:0.000000px;}
.ws1_c01329{word-spacing:21.662460px;}
.ws0_c01329{word-spacing:23.312250px;}
.ws3_c01329{word-spacing:23.344770px;}
.ws2_c01329{word-spacing:23.455710px;}
.ws5_c01329{word-spacing:25.033770px;}
._1_c01329{margin-left:-3.964530px;}
._2_c01329{margin-left:-2.902170px;}
._3_c01329{width:29.848650px;}
._0_c01329{width:1723.743630px;}
.fc0_c01329{color:rgb(0,0,0);}
.fs0_c01329{font-size:71.730000px;}
.y0_c01329{bottom:0.000000px;}
.y5_c01329{bottom:155.487000px;}
.y4_c01329{bottom:579.847500px;}
.y3_c01329{bottom:601.516500px;}
.y2_c01329{bottom:1140.615000px;}
.y1_c01329{bottom:1145.148000px;}
.h2_c01329{height:53.797500px;}
.h1_c01329{height:1263.750000px;}
.h0_c01329{height:1264.110000px;}
.w0_c01329{width:893.869500px;}
.w1_c01329{width:894.000000px;}
.x0_c01329{left:0.000000px;}
.x1_c01329{left:126.336000px;}
.x2_c01329{left:127.558500px;}
.x3_c01329{left:219.708000px;}
@media print{
.v0_c01329{vertical-align:0.000000pt;}
.ls0_c01329{letter-spacing:0.000000pt;}
.ws4_c01329{word-spacing:-0.063760pt;}
.ws6_c01329{word-spacing:0.000000pt;}
.ws1_c01329{word-spacing:19.255520pt;}
.ws0_c01329{word-spacing:20.722000pt;}
.ws3_c01329{word-spacing:20.750907pt;}
.ws2_c01329{word-spacing:20.849520pt;}
.ws5_c01329{word-spacing:22.252240pt;}
._1_c01329{margin-left:-3.524027pt;}
._2_c01329{margin-left:-2.579707pt;}
._3_c01329{width:26.532133pt;}
._0_c01329{width:1532.216560pt;}
.fs0_c01329{font-size:63.760000pt;}
.y0_c01329{bottom:0.000000pt;}
.y5_c01329{bottom:138.210667pt;}
.y4_c01329{bottom:515.420000pt;}
.y3_c01329{bottom:534.681333pt;}
.y2_c01329{bottom:1013.880000pt;}
.y1_c01329{bottom:1017.909333pt;}
.h2_c01329{height:47.820000pt;}
.h1_c01329{height:1123.333333pt;}
.h0_c01329{height:1123.653333pt;}
.w0_c01329{width:794.550667pt;}
.w1_c01329{width:794.666667pt;}
.x0_c01329{left:0.000000pt;}
.x1_c01329{left:112.298667pt;}
.x2_c01329{left:113.385333pt;}
.x3_c01329{left:195.296000pt;}
}





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

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





.ff0_c01330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01330;src:url('chunks/assets/font_0784670249a6d07acfc2cfc2.woff2')format("woff");}.ff1_c01330{font-family:ff1_c01330;line-height:1.001000;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_c01330;src:url('chunks/assets/font_95344ea25957020732b099a5.woff2')format("woff");}.ff2_c01330{font-family:ff2_c01330;line-height:1.001000;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_c01330{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_c01330{vertical-align:0.000000px;}
.ls0_c01330{letter-spacing:0.000000px;}
.sc__c01330{text-shadow:none;}
.sc0_c01330{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__c01330{-webkit-text-stroke:0px transparent;}
.sc0_c01330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01330{word-spacing:-0.071730px;}
.ws3_c01330{word-spacing:0.000000px;}
.ws0_c01330{word-spacing:23.312250px;}
.ws1_c01330{word-spacing:25.033770px;}
._1_c01330{margin-left:-3.813420px;}
._2_c01330{width:27.845010px;}
._0_c01330{width:1723.743630px;}
.fc0_c01330{color:rgb(0,0,0);}
.fs0_c01330{font-size:71.730000px;}
.y0_c01330{bottom:0.000000px;}
.y3_c01330{bottom:328.329000px;}
.y2_c01330{bottom:1140.615000px;}
.y1_c01330{bottom:1145.148000px;}
.h2_c01330{height:53.797500px;}
.h1_c01330{height:1263.750000px;}
.h0_c01330{height:1264.110000px;}
.w0_c01330{width:893.869500px;}
.w1_c01330{width:894.000000px;}
.x0_c01330{left:0.000000px;}
.x1_c01330{left:126.336000px;}
.x2_c01330{left:127.558500px;}
.x3_c01330{left:230.203500px;}
@media print{
.v0_c01330{vertical-align:0.000000pt;}
.ls0_c01330{letter-spacing:0.000000pt;}
.ws2_c01330{word-spacing:-0.063760pt;}
.ws3_c01330{word-spacing:0.000000pt;}
.ws0_c01330{word-spacing:20.722000pt;}
.ws1_c01330{word-spacing:22.252240pt;}
._1_c01330{margin-left:-3.389707pt;}
._2_c01330{width:24.751120pt;}
._0_c01330{width:1532.216560pt;}
.fs0_c01330{font-size:63.760000pt;}
.y0_c01330{bottom:0.000000pt;}
.y3_c01330{bottom:291.848000pt;}
.y2_c01330{bottom:1013.880000pt;}
.y1_c01330{bottom:1017.909333pt;}
.h2_c01330{height:47.820000pt;}
.h1_c01330{height:1123.333333pt;}
.h0_c01330{height:1123.653333pt;}
.w0_c01330{width:794.550667pt;}
.w1_c01330{width:794.666667pt;}
.x0_c01330{left:0.000000pt;}
.x1_c01330{left:112.298667pt;}
.x2_c01330{left:113.385333pt;}
.x3_c01330{left:204.625333pt;}
}





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

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





.ff0_c01331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01331;src:url('chunks/assets/font_dbc8b9adffb3aabee21b1f84.woff2')format("woff");}.ff1_c01331{font-family:ff1_c01331;line-height:1.001000;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_c01331;src:url('chunks/assets/font_f604cf8a15303f5295bb0d6d.woff2')format("woff");}.ff2_c01331{font-family:ff2_c01331;line-height:1.001000;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_c01331{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_c01331{vertical-align:0.000000px;}
.ls0_c01331{letter-spacing:0.000000px;}
.sc__c01331{text-shadow:none;}
.sc0_c01331{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__c01331{-webkit-text-stroke:0px transparent;}
.sc0_c01331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01331{word-spacing:-0.071730px;}
.ws3_c01331{word-spacing:0.000000px;}
.ws0_c01331{word-spacing:23.312250px;}
.ws1_c01331{word-spacing:25.105500px;}
._2_c01331{margin-left:-27.329130px;}
._1_c01331{margin-left:-7.962030px;}
._3_c01331{margin-left:-1.936710px;}
._4_c01331{width:7.723470px;}
._0_c01331{width:1723.743630px;}
.fc0_c01331{color:rgb(0,0,0);}
.fs0_c01331{font-size:71.730000px;}
.y0_c01331{bottom:0.000000px;}
.y3_c01331{bottom:164.793000px;}
.y2_c01331{bottom:1140.615000px;}
.y1_c01331{bottom:1145.148000px;}
.h2_c01331{height:53.797500px;}
.h1_c01331{height:1263.750000px;}
.h0_c01331{height:1264.110000px;}
.w0_c01331{width:893.869500px;}
.w1_c01331{width:894.000000px;}
.x0_c01331{left:0.000000px;}
.x1_c01331{left:126.336000px;}
.x2_c01331{left:127.558500px;}
.x3_c01331{left:217.501500px;}
@media print{
.v0_c01331{vertical-align:0.000000pt;}
.ls0_c01331{letter-spacing:0.000000pt;}
.ws2_c01331{word-spacing:-0.063760pt;}
.ws3_c01331{word-spacing:0.000000pt;}
.ws0_c01331{word-spacing:20.722000pt;}
.ws1_c01331{word-spacing:22.316000pt;}
._2_c01331{margin-left:-24.292560pt;}
._1_c01331{margin-left:-7.077360pt;}
._3_c01331{margin-left:-1.721520pt;}
._4_c01331{width:6.865307pt;}
._0_c01331{width:1532.216560pt;}
.fs0_c01331{font-size:63.760000pt;}
.y0_c01331{bottom:0.000000pt;}
.y3_c01331{bottom:146.482667pt;}
.y2_c01331{bottom:1013.880000pt;}
.y1_c01331{bottom:1017.909333pt;}
.h2_c01331{height:47.820000pt;}
.h1_c01331{height:1123.333333pt;}
.h0_c01331{height:1123.653333pt;}
.w0_c01331{width:794.550667pt;}
.w1_c01331{width:794.666667pt;}
.x0_c01331{left:0.000000pt;}
.x1_c01331{left:112.298667pt;}
.x2_c01331{left:113.385333pt;}
.x3_c01331{left:193.334667pt;}
}





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

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





.ff0_c01332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01332;src:url('chunks/assets/font_fce068ab872cb84cfad9a165.woff2')format("woff");}.ff1_c01332{font-family:ff1_c01332;line-height:1.001000;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_c01332{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_c01332{vertical-align:0.000000px;}
.ls0_c01332{letter-spacing:0.000000px;}
.sc__c01332{text-shadow:none;}
.sc0_c01332{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__c01332{-webkit-text-stroke:0px transparent;}
.sc0_c01332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01332{word-spacing:-0.071730px;}
.ws3_c01332{word-spacing:0.000000px;}
.ws0_c01332{word-spacing:23.312250px;}
.ws1_c01332{word-spacing:32.063310px;}
._2_c01332{margin-left:-27.400860px;}
._1_c01332{margin-left:-7.962030px;}
._3_c01332{margin-left:-1.864980px;}
._4_c01332{width:1.864980px;}
._0_c01332{width:1723.743630px;}
.fc0_c01332{color:rgb(0,0,0);}
.fs0_c01332{font-size:71.730000px;}
.y0_c01332{bottom:0.000000px;}
.y4_c01332{bottom:305.916000px;}
.y3_c01332{bottom:327.583500px;}
.y2_c01332{bottom:1140.615000px;}
.y1_c01332{bottom:1145.148000px;}
.h2_c01332{height:53.797500px;}
.h1_c01332{height:1263.750000px;}
.h0_c01332{height:1264.110000px;}
.w0_c01332{width:893.869500px;}
.w1_c01332{width:894.000000px;}
.x0_c01332{left:0.000000px;}
.x1_c01332{left:126.336000px;}
.x2_c01332{left:127.558500px;}
@media print{
.v0_c01332{vertical-align:0.000000pt;}
.ls0_c01332{letter-spacing:0.000000pt;}
.ws2_c01332{word-spacing:-0.063760pt;}
.ws3_c01332{word-spacing:0.000000pt;}
.ws0_c01332{word-spacing:20.722000pt;}
.ws1_c01332{word-spacing:28.500720pt;}
._2_c01332{margin-left:-24.356320pt;}
._1_c01332{margin-left:-7.077360pt;}
._3_c01332{margin-left:-1.657760pt;}
._4_c01332{width:1.657760pt;}
._0_c01332{width:1532.216560pt;}
.fs0_c01332{font-size:63.760000pt;}
.y0_c01332{bottom:0.000000pt;}
.y4_c01332{bottom:271.925333pt;}
.y3_c01332{bottom:291.185333pt;}
.y2_c01332{bottom:1013.880000pt;}
.y1_c01332{bottom:1017.909333pt;}
.h2_c01332{height:47.820000pt;}
.h1_c01332{height:1123.333333pt;}
.h0_c01332{height:1123.653333pt;}
.w0_c01332{width:794.550667pt;}
.w1_c01332{width:794.666667pt;}
.x0_c01332{left:0.000000pt;}
.x1_c01332{left:112.298667pt;}
.x2_c01332{left:113.385333pt;}
}





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

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





.ff0_c01333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01333;src:url('chunks/assets/font_2f95299dae6f87779393605f.woff2')format("woff");}.ff1_c01333{font-family:ff1_c01333;line-height:1.001000;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_c01333;src:url('chunks/assets/font_becb955e60cdd1a255b26e0a.woff2')format("woff");}.ff2_c01333{font-family:ff2_c01333;line-height:1.001000;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_c01333{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_c01333{vertical-align:0.000000px;}
.ls0_c01333{letter-spacing:0.000000px;}
.sc__c01333{text-shadow:none;}
.sc0_c01333{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__c01333{-webkit-text-stroke:0px transparent;}
.sc0_c01333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01333{word-spacing:-0.071730px;}
.ws3_c01333{word-spacing:0.000000px;}
.ws0_c01333{word-spacing:23.312250px;}
.ws1_c01333{word-spacing:25.033770px;}
._1_c01333{margin-left:-6.025320px;}
._3_c01333{margin-left:-3.873420px;}
._2_c01333{margin-left:-2.008440px;}
._4_c01333{width:29.046540px;}
._0_c01333{width:1723.743630px;}
.fc0_c01333{color:rgb(0,0,0);}
.fs0_c01333{font-size:71.730000px;}
.y0_c01333{bottom:0.000000px;}
.y3_c01333{bottom:329.466000px;}
.y2_c01333{bottom:1140.615000px;}
.y1_c01333{bottom:1145.148000px;}
.h2_c01333{height:53.797500px;}
.h1_c01333{height:1263.750000px;}
.h0_c01333{height:1264.110000px;}
.w0_c01333{width:893.869500px;}
.w1_c01333{width:894.000000px;}
.x0_c01333{left:0.000000px;}
.x1_c01333{left:126.336000px;}
.x2_c01333{left:127.558500px;}
.x3_c01333{left:253.920000px;}
@media print{
.v0_c01333{vertical-align:0.000000pt;}
.ls0_c01333{letter-spacing:0.000000pt;}
.ws2_c01333{word-spacing:-0.063760pt;}
.ws3_c01333{word-spacing:0.000000pt;}
.ws0_c01333{word-spacing:20.722000pt;}
.ws1_c01333{word-spacing:22.252240pt;}
._1_c01333{margin-left:-5.355840pt;}
._3_c01333{margin-left:-3.443040pt;}
._2_c01333{margin-left:-1.785280pt;}
._4_c01333{width:25.819147pt;}
._0_c01333{width:1532.216560pt;}
.fs0_c01333{font-size:63.760000pt;}
.y0_c01333{bottom:0.000000pt;}
.y3_c01333{bottom:292.858667pt;}
.y2_c01333{bottom:1013.880000pt;}
.y1_c01333{bottom:1017.909333pt;}
.h2_c01333{height:47.820000pt;}
.h1_c01333{height:1123.333333pt;}
.h0_c01333{height:1123.653333pt;}
.w0_c01333{width:794.550667pt;}
.w1_c01333{width:794.666667pt;}
.x0_c01333{left:0.000000pt;}
.x1_c01333{left:112.298667pt;}
.x2_c01333{left:113.385333pt;}
.x3_c01333{left:225.706667pt;}
}





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

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





.ff0_c01334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01334;src:url('chunks/assets/font_cba7f5fde0b47d7a39187996.woff2')format("woff");}.ff1_c01334{font-family:ff1_c01334;line-height:1.001000;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_c01334;src:url('chunks/assets/font_d2a5363b55bdfa0850149179.woff2')format("woff");}.ff2_c01334{font-family:ff2_c01334;line-height:1.001000;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_c01334;src:url('chunks/assets/font_ba62b3d5577a3effb3bb1111.woff2')format("woff");}.ff3_c01334{font-family:ff3_c01334;line-height:0.451000;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_c01334{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_c01334{vertical-align:-26.034000px;}
.v0_c01334{vertical-align:0.000000px;}
.v1_c01334{vertical-align:26.034000px;}
.ls3_c01334{letter-spacing:0.000000px;}
.ls1_c01334{letter-spacing:25.105500px;}
.ls0_c01334{letter-spacing:28.076820px;}
.ls2_c01334{letter-spacing:33.177000px;}
.sc__c01334{text-shadow:none;}
.sc0_c01334{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__c01334{-webkit-text-stroke:0px transparent;}
.sc0_c01334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01334{word-spacing:-25.177230px;}
.ws3_c01334{word-spacing:-0.071730px;}
.ws4_c01334{word-spacing:0.000000px;}
.ws0_c01334{word-spacing:23.312250px;}
.ws1_c01334{word-spacing:25.033770px;}
._4_c01334{margin-left:-24.175890px;}
._1_c01334{margin-left:-6.025320px;}
._3_c01334{margin-left:-3.873420px;}
._2_c01334{margin-left:-2.008440px;}
._0_c01334{width:1723.743630px;}
.fc0_c01334{color:rgb(0,0,0);}
.fs1_c01334{font-size:47.820000px;}
.fs0_c01334{font-size:71.730000px;}
.y0_c01334{bottom:0.000000px;}
.y3_c01334{bottom:208.024500px;}
.y2_c01334{bottom:1140.615000px;}
.y1_c01334{bottom:1145.148000px;}
.h2_c01334{height:53.797500px;}
.h1_c01334{height:1263.750000px;}
.h0_c01334{height:1264.110000px;}
.w0_c01334{width:893.869500px;}
.w1_c01334{width:894.000000px;}
.x0_c01334{left:0.000000px;}
.x1_c01334{left:126.336000px;}
.x2_c01334{left:127.558500px;}
.x3_c01334{left:197.196000px;}
@media print{
.v2_c01334{vertical-align:-23.141333pt;}
.v0_c01334{vertical-align:0.000000pt;}
.v1_c01334{vertical-align:23.141333pt;}
.ls3_c01334{letter-spacing:0.000000pt;}
.ls1_c01334{letter-spacing:22.316000pt;}
.ls0_c01334{letter-spacing:24.957173pt;}
.ls2_c01334{letter-spacing:29.490667pt;}
.ws2_c01334{word-spacing:-22.379760pt;}
.ws3_c01334{word-spacing:-0.063760pt;}
.ws4_c01334{word-spacing:0.000000pt;}
.ws0_c01334{word-spacing:20.722000pt;}
.ws1_c01334{word-spacing:22.252240pt;}
._4_c01334{margin-left:-21.489680pt;}
._1_c01334{margin-left:-5.355840pt;}
._3_c01334{margin-left:-3.443040pt;}
._2_c01334{margin-left:-1.785280pt;}
._0_c01334{width:1532.216560pt;}
.fs1_c01334{font-size:42.506667pt;}
.fs0_c01334{font-size:63.760000pt;}
.y0_c01334{bottom:0.000000pt;}
.y3_c01334{bottom:184.910667pt;}
.y2_c01334{bottom:1013.880000pt;}
.y1_c01334{bottom:1017.909333pt;}
.h2_c01334{height:47.820000pt;}
.h1_c01334{height:1123.333333pt;}
.h0_c01334{height:1123.653333pt;}
.w0_c01334{width:794.550667pt;}
.w1_c01334{width:794.666667pt;}
.x0_c01334{left:0.000000pt;}
.x1_c01334{left:112.298667pt;}
.x2_c01334{left:113.385333pt;}
.x3_c01334{left:175.285333pt;}
}





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

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





.ff0_c01335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01335;src:url('chunks/assets/font_287b88ae808912577ab3072f.woff2')format("woff");}.ff1_c01335{font-family:ff1_c01335;line-height:1.001000;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_c01335;src:url('chunks/assets/font_0adc1118dbf90a0bb8a4fa14.woff2')format("woff");}.ff2_c01335{font-family:ff2_c01335;line-height:1.001000;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_c01335{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_c01335{vertical-align:0.000000px;}
.ls0_c01335{letter-spacing:0.000000px;}
.sc__c01335{text-shadow:none;}
.sc0_c01335{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__c01335{-webkit-text-stroke:0px transparent;}
.sc0_c01335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01335{word-spacing:-0.071730px;}
.ws3_c01335{word-spacing:0.000000px;}
.ws0_c01335{word-spacing:23.312250px;}
.ws1_c01335{word-spacing:25.033770px;}
._2_c01335{margin-left:-5.470800px;}
._1_c01335{margin-left:-2.080170px;}
._3_c01335{width:34.737390px;}
._0_c01335{width:1723.743630px;}
.fc0_c01335{color:rgb(0,0,0);}
.fs0_c01335{font-size:71.730000px;}
.y0_c01335{bottom:0.000000px;}
.y3_c01335{bottom:312.286500px;}
.y2_c01335{bottom:1140.615000px;}
.y1_c01335{bottom:1145.148000px;}
.h2_c01335{height:53.797500px;}
.h1_c01335{height:1263.750000px;}
.h0_c01335{height:1264.110000px;}
.w0_c01335{width:893.869500px;}
.w1_c01335{width:894.000000px;}
.x0_c01335{left:0.000000px;}
.x1_c01335{left:126.336000px;}
.x2_c01335{left:127.558500px;}
.x3_c01335{left:264.517500px;}
@media print{
.v0_c01335{vertical-align:0.000000pt;}
.ls0_c01335{letter-spacing:0.000000pt;}
.ws2_c01335{word-spacing:-0.063760pt;}
.ws3_c01335{word-spacing:0.000000pt;}
.ws0_c01335{word-spacing:20.722000pt;}
.ws1_c01335{word-spacing:22.252240pt;}
._2_c01335{margin-left:-4.862933pt;}
._1_c01335{margin-left:-1.849040pt;}
._3_c01335{width:30.877680pt;}
._0_c01335{width:1532.216560pt;}
.fs0_c01335{font-size:63.760000pt;}
.y0_c01335{bottom:0.000000pt;}
.y3_c01335{bottom:277.588000pt;}
.y2_c01335{bottom:1013.880000pt;}
.y1_c01335{bottom:1017.909333pt;}
.h2_c01335{height:47.820000pt;}
.h1_c01335{height:1123.333333pt;}
.h0_c01335{height:1123.653333pt;}
.w0_c01335{width:794.550667pt;}
.w1_c01335{width:794.666667pt;}
.x0_c01335{left:0.000000pt;}
.x1_c01335{left:112.298667pt;}
.x2_c01335{left:113.385333pt;}
.x3_c01335{left:235.126667pt;}
}





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

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





.ff0_c01336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01336;src:url('chunks/assets/font_4408bb6b3df5d5505fe5ccb9.woff2')format("woff");}.ff1_c01336{font-family:ff1_c01336;line-height:1.001000;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_c01336;src:url('chunks/assets/font_75ea13a38a7b5e3b82646cb0.woff2')format("woff");}.ff2_c01336{font-family:ff2_c01336;line-height:1.001000;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_c01336{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_c01336{vertical-align:0.000000px;}
.ls0_c01336{letter-spacing:0.000000px;}
.sc__c01336{text-shadow:none;}
.sc0_c01336{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__c01336{-webkit-text-stroke:0px transparent;}
.sc0_c01336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01336{word-spacing:-0.071730px;}
.ws3_c01336{word-spacing:0.000000px;}
.ws0_c01336{word-spacing:23.312250px;}
.ws1_c01336{word-spacing:30.811050px;}
._1_c01336{margin-left:-2.080170px;}
._0_c01336{width:1723.743630px;}
.fc0_c01336{color:rgb(0,0,0);}
.fs0_c01336{font-size:71.730000px;}
.y0_c01336{bottom:0.000000px;}
.y3_c01336{bottom:209.530500px;}
.y2_c01336{bottom:1140.615000px;}
.y1_c01336{bottom:1145.148000px;}
.h2_c01336{height:53.797500px;}
.h1_c01336{height:1263.750000px;}
.h0_c01336{height:1264.110000px;}
.w0_c01336{width:893.869500px;}
.w1_c01336{width:894.000000px;}
.x0_c01336{left:0.000000px;}
.x1_c01336{left:126.336000px;}
.x2_c01336{left:127.558500px;}
.x3_c01336{left:259.108500px;}
@media print{
.v0_c01336{vertical-align:0.000000pt;}
.ls0_c01336{letter-spacing:0.000000pt;}
.ws2_c01336{word-spacing:-0.063760pt;}
.ws3_c01336{word-spacing:0.000000pt;}
.ws0_c01336{word-spacing:20.722000pt;}
.ws1_c01336{word-spacing:27.387600pt;}
._1_c01336{margin-left:-1.849040pt;}
._0_c01336{width:1532.216560pt;}
.fs0_c01336{font-size:63.760000pt;}
.y0_c01336{bottom:0.000000pt;}
.y3_c01336{bottom:186.249333pt;}
.y2_c01336{bottom:1013.880000pt;}
.y1_c01336{bottom:1017.909333pt;}
.h2_c01336{height:47.820000pt;}
.h1_c01336{height:1123.333333pt;}
.h0_c01336{height:1123.653333pt;}
.w0_c01336{width:794.550667pt;}
.w1_c01336{width:794.666667pt;}
.x0_c01336{left:0.000000pt;}
.x1_c01336{left:112.298667pt;}
.x2_c01336{left:113.385333pt;}
.x3_c01336{left:230.318667pt;}
}





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

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





.ff0_c01337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01337;src:url('chunks/assets/font_e0688be84f1643ad550d11fe.woff2')format("woff");}.ff1_c01337{font-family:ff1_c01337;line-height:1.001000;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_c01337{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_c01337{vertical-align:0.000000px;}
.ls0_c01337{letter-spacing:0.000000px;}
.sc__c01337{text-shadow:none;}
.sc0_c01337{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__c01337{-webkit-text-stroke:0px transparent;}
.sc0_c01337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01337{word-spacing:0.000000px;}
.ws0_c01337{word-spacing:23.312250px;}
._2_c01337{margin-left:-1.936710px;}
._1_c01337{width:3.729960px;}
._0_c01337{width:1723.743630px;}
.fc0_c01337{color:rgb(0,0,0);}
.fs0_c01337{font-size:71.730000px;}
.y0_c01337{bottom:0.000000px;}
.y3_c01337{bottom:166.714500px;}
.y2_c01337{bottom:1140.615000px;}
.y1_c01337{bottom:1145.148000px;}
.h2_c01337{height:53.797500px;}
.h1_c01337{height:1263.750000px;}
.h0_c01337{height:1264.110000px;}
.w0_c01337{width:893.869500px;}
.w1_c01337{width:894.000000px;}
.x0_c01337{left:0.000000px;}
.x1_c01337{left:126.336000px;}
.x2_c01337{left:127.558500px;}
.x3_c01337{left:176.436000px;}
@media print{
.v0_c01337{vertical-align:0.000000pt;}
.ls0_c01337{letter-spacing:0.000000pt;}
.ws1_c01337{word-spacing:0.000000pt;}
.ws0_c01337{word-spacing:20.722000pt;}
._2_c01337{margin-left:-1.721520pt;}
._1_c01337{width:3.315520pt;}
._0_c01337{width:1532.216560pt;}
.fs0_c01337{font-size:63.760000pt;}
.y0_c01337{bottom:0.000000pt;}
.y3_c01337{bottom:148.190667pt;}
.y2_c01337{bottom:1013.880000pt;}
.y1_c01337{bottom:1017.909333pt;}
.h2_c01337{height:47.820000pt;}
.h1_c01337{height:1123.333333pt;}
.h0_c01337{height:1123.653333pt;}
.w0_c01337{width:794.550667pt;}
.w1_c01337{width:794.666667pt;}
.x0_c01337{left:0.000000pt;}
.x1_c01337{left:112.298667pt;}
.x2_c01337{left:113.385333pt;}
.x3_c01337{left:156.832000pt;}
}





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

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





.ff0_c01338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01338;src:url('chunks/assets/font_b1929f2dc8e019a7eed9adb4.woff2')format("woff");}.ff1_c01338{font-family:ff1_c01338;line-height:1.001000;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_c01338;src:url('chunks/assets/font_bf548fa4ad83c5fa649f653d.woff2')format("woff");}.ff2_c01338{font-family:ff2_c01338;line-height:1.001000;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_c01338{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_c01338{vertical-align:0.000000px;}
.ls0_c01338{letter-spacing:0.000000px;}
.sc__c01338{text-shadow:none;}
.sc0_c01338{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__c01338{-webkit-text-stroke:0px transparent;}
.sc0_c01338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01338{word-spacing:-0.071730px;}
.ws3_c01338{word-spacing:0.000000px;}
.ws0_c01338{word-spacing:23.312250px;}
.ws1_c01338{word-spacing:25.033770px;}
._1_c01338{margin-left:-35.291160px;}
._3_c01338{margin-left:-3.658230px;}
._2_c01338{margin-left:-1.789020px;}
._4_c01338{width:28.913250px;}
._0_c01338{width:1723.743630px;}
.fc0_c01338{color:rgb(0,0,0);}
.fs0_c01338{font-size:71.730000px;}
.y0_c01338{bottom:0.000000px;}
.y3_c01338{bottom:351.960000px;}
.y2_c01338{bottom:1140.615000px;}
.y1_c01338{bottom:1145.148000px;}
.h2_c01338{height:53.797500px;}
.h1_c01338{height:1263.750000px;}
.h0_c01338{height:1264.110000px;}
.w0_c01338{width:893.869500px;}
.w1_c01338{width:894.000000px;}
.x0_c01338{left:0.000000px;}
.x1_c01338{left:126.336000px;}
.x2_c01338{left:127.558500px;}
.x3_c01338{left:252.841500px;}
@media print{
.v0_c01338{vertical-align:0.000000pt;}
.ls0_c01338{letter-spacing:0.000000pt;}
.ws2_c01338{word-spacing:-0.063760pt;}
.ws3_c01338{word-spacing:0.000000pt;}
.ws0_c01338{word-spacing:20.722000pt;}
.ws1_c01338{word-spacing:22.252240pt;}
._1_c01338{margin-left:-31.369920pt;}
._3_c01338{margin-left:-3.251760pt;}
._2_c01338{margin-left:-1.590240pt;}
._4_c01338{width:25.700667pt;}
._0_c01338{width:1532.216560pt;}
.fs0_c01338{font-size:63.760000pt;}
.y0_c01338{bottom:0.000000pt;}
.y3_c01338{bottom:312.853333pt;}
.y2_c01338{bottom:1013.880000pt;}
.y1_c01338{bottom:1017.909333pt;}
.h2_c01338{height:47.820000pt;}
.h1_c01338{height:1123.333333pt;}
.h0_c01338{height:1123.653333pt;}
.w0_c01338{width:794.550667pt;}
.w1_c01338{width:794.666667pt;}
.x0_c01338{left:0.000000pt;}
.x1_c01338{left:112.298667pt;}
.x2_c01338{left:113.385333pt;}
.x3_c01338{left:224.748000pt;}
}





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

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





.ff0_c01339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01339;src:url('chunks/assets/font_cf9f8dd6362746f833bf5fd3.woff2')format("woff");}.ff1_c01339{font-family:ff1_c01339;line-height:1.001000;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_c01339;src:url('chunks/assets/font_72afd09597ac658f8af76d38.woff2')format("woff");}.ff2_c01339{font-family:ff2_c01339;line-height:1.001000;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_c01339{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_c01339{vertical-align:0.000000px;}
.ls0_c01339{letter-spacing:0.000000px;}
.sc__c01339{text-shadow:none;}
.sc0_c01339{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__c01339{-webkit-text-stroke:0px transparent;}
.sc0_c01339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01339{word-spacing:0.000000px;}
.ws2_c01339{word-spacing:23.240520px;}
.ws0_c01339{word-spacing:23.312250px;}
.ws1_c01339{word-spacing:25.033770px;}
._1_c01339{margin-left:-35.291160px;}
._2_c01339{width:28.729320px;}
._0_c01339{width:1723.743630px;}
.fc0_c01339{color:rgb(0,0,0);}
.fs0_c01339{font-size:71.730000px;}
.y0_c01339{bottom:0.000000px;}
.y3_c01339{bottom:421.510500px;}
.y2_c01339{bottom:1140.615000px;}
.y1_c01339{bottom:1145.148000px;}
.h2_c01339{height:53.797500px;}
.h1_c01339{height:1263.750000px;}
.h0_c01339{height:1264.110000px;}
.w0_c01339{width:893.869500px;}
.w1_c01339{width:894.000000px;}
.x0_c01339{left:0.000000px;}
.x1_c01339{left:126.336000px;}
.x2_c01339{left:127.558500px;}
.x3_c01339{left:212.583000px;}
@media print{
.v0_c01339{vertical-align:0.000000pt;}
.ls0_c01339{letter-spacing:0.000000pt;}
.ws3_c01339{word-spacing:0.000000pt;}
.ws2_c01339{word-spacing:20.658240pt;}
.ws0_c01339{word-spacing:20.722000pt;}
.ws1_c01339{word-spacing:22.252240pt;}
._1_c01339{margin-left:-31.369920pt;}
._2_c01339{width:25.537173pt;}
._0_c01339{width:1532.216560pt;}
.fs0_c01339{font-size:63.760000pt;}
.y0_c01339{bottom:0.000000pt;}
.y3_c01339{bottom:374.676000pt;}
.y2_c01339{bottom:1013.880000pt;}
.y1_c01339{bottom:1017.909333pt;}
.h2_c01339{height:47.820000pt;}
.h1_c01339{height:1123.333333pt;}
.h0_c01339{height:1123.653333pt;}
.w0_c01339{width:794.550667pt;}
.w1_c01339{width:794.666667pt;}
.x0_c01339{left:0.000000pt;}
.x1_c01339{left:112.298667pt;}
.x2_c01339{left:113.385333pt;}
.x3_c01339{left:188.962667pt;}
}





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

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





.ff0_c01340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01340;src:url('chunks/assets/font_8d91161eb1a1d1022e9028ba.woff2')format("woff");}.ff1_c01340{font-family:ff1_c01340;line-height:1.001000;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_c01340;src:url('chunks/assets/font_75de95354818ea5fff8e8376.woff2')format("woff");}.ff2_c01340{font-family:ff2_c01340;line-height:1.001000;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_c01340{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_c01340{vertical-align:0.000000px;}
.ls0_c01340{letter-spacing:0.000000px;}
.sc__c01340{text-shadow:none;}
.sc0_c01340{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__c01340{-webkit-text-stroke:0px transparent;}
.sc0_c01340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01340{word-spacing:-0.071730px;}
.ws3_c01340{word-spacing:0.000000px;}
.ws0_c01340{word-spacing:23.312250px;}
.ws1_c01340{word-spacing:25.033770px;}
._1_c01340{margin-left:-35.291160px;}
._2_c01340{margin-left:-3.660000px;}
._3_c01340{width:30.617130px;}
._0_c01340{width:1723.743630px;}
.fc0_c01340{color:rgb(0,0,0);}
.fs0_c01340{font-size:71.730000px;}
.y0_c01340{bottom:0.000000px;}
.y3_c01340{bottom:335.373000px;}
.y2_c01340{bottom:1140.615000px;}
.y1_c01340{bottom:1145.148000px;}
.h2_c01340{height:53.797500px;}
.h1_c01340{height:1263.750000px;}
.h0_c01340{height:1264.110000px;}
.w0_c01340{width:893.869500px;}
.w1_c01340{width:894.000000px;}
.x0_c01340{left:0.000000px;}
.x1_c01340{left:126.336000px;}
.x2_c01340{left:127.558500px;}
.x3_c01340{left:234.303000px;}
@media print{
.v0_c01340{vertical-align:0.000000pt;}
.ls0_c01340{letter-spacing:0.000000pt;}
.ws2_c01340{word-spacing:-0.063760pt;}
.ws3_c01340{word-spacing:0.000000pt;}
.ws0_c01340{word-spacing:20.722000pt;}
.ws1_c01340{word-spacing:22.252240pt;}
._1_c01340{margin-left:-31.369920pt;}
._2_c01340{margin-left:-3.253333pt;}
._3_c01340{width:27.215227pt;}
._0_c01340{width:1532.216560pt;}
.fs0_c01340{font-size:63.760000pt;}
.y0_c01340{bottom:0.000000pt;}
.y3_c01340{bottom:298.109333pt;}
.y2_c01340{bottom:1013.880000pt;}
.y1_c01340{bottom:1017.909333pt;}
.h2_c01340{height:47.820000pt;}
.h1_c01340{height:1123.333333pt;}
.h0_c01340{height:1123.653333pt;}
.w0_c01340{width:794.550667pt;}
.w1_c01340{width:794.666667pt;}
.x0_c01340{left:0.000000pt;}
.x1_c01340{left:112.298667pt;}
.x2_c01340{left:113.385333pt;}
.x3_c01340{left:208.269333pt;}
}





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

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





.ff0_c01341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01341;src:url('chunks/assets/font_b4d2176c1261a92fc344f25b.woff2')format("woff");}.ff1_c01341{font-family:ff1_c01341;line-height:1.001000;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_c01341;src:url('chunks/assets/font_2f0b0259312dc75051de8328.woff2')format("woff");}.ff2_c01341{font-family:ff2_c01341;line-height:1.001000;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_c01341{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_c01341{vertical-align:0.000000px;}
.ls0_c01341{letter-spacing:0.000000px;}
.sc__c01341{text-shadow:none;}
.sc0_c01341{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__c01341{-webkit-text-stroke:0px transparent;}
.sc0_c01341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01341{word-spacing:-0.071730px;}
.ws3_c01341{word-spacing:0.000000px;}
.ws0_c01341{word-spacing:23.312250px;}
.ws1_c01341{word-spacing:25.033770px;}
._1_c01341{margin-left:-36.043500px;}
._2_c01341{margin-left:-3.586500px;}
._3_c01341{width:27.740790px;}
._0_c01341{width:1723.743630px;}
.fc0_c01341{color:rgb(0,0,0);}
.fs0_c01341{font-size:71.730000px;}
.y0_c01341{bottom:0.000000px;}
.y3_c01341{bottom:229.569000px;}
.y2_c01341{bottom:1140.615000px;}
.y1_c01341{bottom:1145.148000px;}
.h2_c01341{height:53.797500px;}
.h1_c01341{height:1263.750000px;}
.h0_c01341{height:1264.110000px;}
.w0_c01341{width:893.869500px;}
.w1_c01341{width:894.000000px;}
.x0_c01341{left:0.000000px;}
.x1_c01341{left:126.336000px;}
.x2_c01341{left:127.558500px;}
.x3_c01341{left:226.086000px;}
@media print{
.v0_c01341{vertical-align:0.000000pt;}
.ls0_c01341{letter-spacing:0.000000pt;}
.ws2_c01341{word-spacing:-0.063760pt;}
.ws3_c01341{word-spacing:0.000000pt;}
.ws0_c01341{word-spacing:20.722000pt;}
.ws1_c01341{word-spacing:22.252240pt;}
._1_c01341{margin-left:-32.038667pt;}
._2_c01341{margin-left:-3.188000pt;}
._3_c01341{width:24.658480pt;}
._0_c01341{width:1532.216560pt;}
.fs0_c01341{font-size:63.760000pt;}
.y0_c01341{bottom:0.000000pt;}
.y3_c01341{bottom:204.061333pt;}
.y2_c01341{bottom:1013.880000pt;}
.y1_c01341{bottom:1017.909333pt;}
.h2_c01341{height:47.820000pt;}
.h1_c01341{height:1123.333333pt;}
.h0_c01341{height:1123.653333pt;}
.w0_c01341{width:794.550667pt;}
.w1_c01341{width:794.666667pt;}
.x0_c01341{left:0.000000pt;}
.x1_c01341{left:112.298667pt;}
.x2_c01341{left:113.385333pt;}
.x3_c01341{left:200.965333pt;}
}





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

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





.ff0_c01342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01342;src:url('chunks/assets/font_432e752a91d65a1f4c64b320.woff2')format("woff");}.ff1_c01342{font-family:ff1_c01342;line-height:1.001000;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_c01342;src:url('chunks/assets/font_5e44ccce7ceff793cb256d82.woff2')format("woff");}.ff2_c01342{font-family:ff2_c01342;line-height:1.001000;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_c01342{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_c01342{vertical-align:0.000000px;}
.ls0_c01342{letter-spacing:0.000000px;}
.sc__c01342{text-shadow:none;}
.sc0_c01342{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__c01342{-webkit-text-stroke:0px transparent;}
.sc0_c01342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01342{word-spacing:-0.071730px;}
.ws3_c01342{word-spacing:0.000000px;}
.ws0_c01342{word-spacing:23.312250px;}
.ws1_c01342{word-spacing:27.765780px;}
._2_c01342{margin-left:-35.219430px;}
._1_c01342{margin-left:-5.953590px;}
._3_c01342{margin-left:-3.570840px;}
._0_c01342{width:1723.743630px;}
.fc0_c01342{color:rgb(0,0,0);}
.fs0_c01342{font-size:71.730000px;}
.y0_c01342{bottom:0.000000px;}
.y3_c01342{bottom:182.925000px;}
.y2_c01342{bottom:1140.615000px;}
.y1_c01342{bottom:1145.148000px;}
.h2_c01342{height:53.797500px;}
.h1_c01342{height:1263.750000px;}
.h0_c01342{height:1264.110000px;}
.w0_c01342{width:893.869500px;}
.w1_c01342{width:894.000000px;}
.x0_c01342{left:0.000000px;}
.x1_c01342{left:126.336000px;}
.x2_c01342{left:127.558500px;}
.x3_c01342{left:266.002500px;}
@media print{
.v0_c01342{vertical-align:0.000000pt;}
.ls0_c01342{letter-spacing:0.000000pt;}
.ws2_c01342{word-spacing:-0.063760pt;}
.ws3_c01342{word-spacing:0.000000pt;}
.ws0_c01342{word-spacing:20.722000pt;}
.ws1_c01342{word-spacing:24.680693pt;}
._2_c01342{margin-left:-31.306160pt;}
._1_c01342{margin-left:-5.292080pt;}
._3_c01342{margin-left:-3.174080pt;}
._0_c01342{width:1532.216560pt;}
.fs0_c01342{font-size:63.760000pt;}
.y0_c01342{bottom:0.000000pt;}
.y3_c01342{bottom:162.600000pt;}
.y2_c01342{bottom:1013.880000pt;}
.y1_c01342{bottom:1017.909333pt;}
.h2_c01342{height:47.820000pt;}
.h1_c01342{height:1123.333333pt;}
.h0_c01342{height:1123.653333pt;}
.w0_c01342{width:794.550667pt;}
.w1_c01342{width:794.666667pt;}
.x0_c01342{left:0.000000pt;}
.x1_c01342{left:112.298667pt;}
.x2_c01342{left:113.385333pt;}
.x3_c01342{left:236.446667pt;}
}





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

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





.ff0_c01343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01343;src:url('chunks/assets/font_8e0f3039ab13c590164cc76b.woff2')format("woff");}.ff1_c01343{font-family:ff1_c01343;line-height:1.001000;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_c01343;src:url('chunks/assets/font_baeabfc1b5d613cb6419692c.woff2')format("woff");}.ff2_c01343{font-family:ff2_c01343;line-height:1.001000;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_c01343{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_c01343{vertical-align:0.000000px;}
.ls0_c01343{letter-spacing:0.000000px;}
.sc__c01343{text-shadow:none;}
.sc0_c01343{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__c01343{-webkit-text-stroke:0px transparent;}
.sc0_c01343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01343{word-spacing:-0.071730px;}
.ws3_c01343{word-spacing:0.000000px;}
.ws0_c01343{word-spacing:23.312250px;}
.ws1_c01343{word-spacing:23.374050px;}
._2_c01343{margin-left:-35.219430px;}
._1_c01343{margin-left:-5.953590px;}
._3_c01343{margin-left:-3.648570px;}
._0_c01343{width:1723.743630px;}
.fc0_c01343{color:rgb(0,0,0);}
.fs0_c01343{font-size:71.730000px;}
.y0_c01343{bottom:0.000000px;}
.y3_c01343{bottom:271.494000px;}
.y2_c01343{bottom:1140.615000px;}
.y1_c01343{bottom:1145.148000px;}
.h2_c01343{height:53.797500px;}
.h1_c01343{height:1263.750000px;}
.h0_c01343{height:1264.110000px;}
.w0_c01343{width:893.869500px;}
.w1_c01343{width:894.000000px;}
.x0_c01343{left:0.000000px;}
.x1_c01343{left:126.336000px;}
.x2_c01343{left:127.558500px;}
.x3_c01343{left:261.163500px;}
@media print{
.v0_c01343{vertical-align:0.000000pt;}
.ls0_c01343{letter-spacing:0.000000pt;}
.ws2_c01343{word-spacing:-0.063760pt;}
.ws3_c01343{word-spacing:0.000000pt;}
.ws0_c01343{word-spacing:20.722000pt;}
.ws1_c01343{word-spacing:20.776933pt;}
._2_c01343{margin-left:-31.306160pt;}
._1_c01343{margin-left:-5.292080pt;}
._3_c01343{margin-left:-3.243173pt;}
._0_c01343{width:1532.216560pt;}
.fs0_c01343{font-size:63.760000pt;}
.y0_c01343{bottom:0.000000pt;}
.y3_c01343{bottom:241.328000pt;}
.y2_c01343{bottom:1013.880000pt;}
.y1_c01343{bottom:1017.909333pt;}
.h2_c01343{height:47.820000pt;}
.h1_c01343{height:1123.333333pt;}
.h0_c01343{height:1123.653333pt;}
.w0_c01343{width:794.550667pt;}
.w1_c01343{width:794.666667pt;}
.x0_c01343{left:0.000000pt;}
.x1_c01343{left:112.298667pt;}
.x2_c01343{left:113.385333pt;}
.x3_c01343{left:232.145333pt;}
}





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

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





.ff0_c01344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01344;src:url('chunks/assets/font_cf6b9eb051ff271c88c2b83f.woff2')format("woff");}.ff1_c01344{font-family:ff1_c01344;line-height:1.001000;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_c01344;src:url('chunks/assets/font_ab26cbc2f82b1b9b437c22f7.woff2')format("woff");}.ff2_c01344{font-family:ff2_c01344;line-height:1.001000;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_c01344{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_c01344{vertical-align:0.000000px;}
.ls0_c01344{letter-spacing:0.000000px;}
.sc__c01344{text-shadow:none;}
.sc0_c01344{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__c01344{-webkit-text-stroke:0px transparent;}
.sc0_c01344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01344{word-spacing:-0.071730px;}
.ws3_c01344{word-spacing:0.000000px;}
.ws0_c01344{word-spacing:23.312250px;}
.ws1_c01344{word-spacing:25.033770px;}
._4_c01344{margin-left:-37.658250px;}
._1_c01344{margin-left:-6.025320px;}
._2_c01344{margin-left:-1.936710px;}
._3_c01344{width:1.768440px;}
._5_c01344{width:28.790250px;}
._0_c01344{width:1723.743630px;}
.fc0_c01344{color:rgb(0,0,0);}
.fs0_c01344{font-size:71.730000px;}
.y0_c01344{bottom:0.000000px;}
.y3_c01344{bottom:275.806500px;}
.y2_c01344{bottom:1140.615000px;}
.y1_c01344{bottom:1145.148000px;}
.h2_c01344{height:53.797500px;}
.h1_c01344{height:1263.750000px;}
.h0_c01344{height:1264.110000px;}
.w0_c01344{width:893.869500px;}
.w1_c01344{width:894.000000px;}
.x0_c01344{left:0.000000px;}
.x1_c01344{left:126.336000px;}
.x2_c01344{left:127.558500px;}
.x3_c01344{left:231.808500px;}
@media print{
.v0_c01344{vertical-align:0.000000pt;}
.ls0_c01344{letter-spacing:0.000000pt;}
.ws2_c01344{word-spacing:-0.063760pt;}
.ws3_c01344{word-spacing:0.000000pt;}
.ws0_c01344{word-spacing:20.722000pt;}
.ws1_c01344{word-spacing:22.252240pt;}
._4_c01344{margin-left:-33.474000pt;}
._1_c01344{margin-left:-5.355840pt;}
._2_c01344{margin-left:-1.721520pt;}
._3_c01344{width:1.571947pt;}
._5_c01344{width:25.591333pt;}
._0_c01344{width:1532.216560pt;}
.fs0_c01344{font-size:63.760000pt;}
.y0_c01344{bottom:0.000000pt;}
.y3_c01344{bottom:245.161333pt;}
.y2_c01344{bottom:1013.880000pt;}
.y1_c01344{bottom:1017.909333pt;}
.h2_c01344{height:47.820000pt;}
.h1_c01344{height:1123.333333pt;}
.h0_c01344{height:1123.653333pt;}
.w0_c01344{width:794.550667pt;}
.w1_c01344{width:794.666667pt;}
.x0_c01344{left:0.000000pt;}
.x1_c01344{left:112.298667pt;}
.x2_c01344{left:113.385333pt;}
.x3_c01344{left:206.052000pt;}
}





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

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





.ff0_c01345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01345;src:url('chunks/assets/font_8aa8d2b88b69b4f9f6acd682.woff2')format("woff");}.ff1_c01345{font-family:ff1_c01345;line-height:1.001000;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_c01345;src:url('chunks/assets/font_ed79290184013f498dd967fd.woff2')format("woff");}.ff2_c01345{font-family:ff2_c01345;line-height:1.001000;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_c01345{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_c01345{vertical-align:0.000000px;}
.ls0_c01345{letter-spacing:0.000000px;}
.sc__c01345{text-shadow:none;}
.sc0_c01345{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__c01345{-webkit-text-stroke:0px transparent;}
.sc0_c01345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01345{word-spacing:-0.071730px;}
.ws3_c01345{word-spacing:0.000000px;}
.ws0_c01345{word-spacing:23.312250px;}
.ws1_c01345{word-spacing:28.686660px;}
._1_c01345{margin-left:-35.984250px;}
._0_c01345{width:1723.743630px;}
.fc0_c01345{color:rgb(0,0,0);}
.fs0_c01345{font-size:71.730000px;}
.y0_c01345{bottom:0.000000px;}
.y3_c01345{bottom:255.484500px;}
.y2_c01345{bottom:1140.615000px;}
.y1_c01345{bottom:1145.148000px;}
.h2_c01345{height:53.797500px;}
.h1_c01345{height:1263.750000px;}
.h0_c01345{height:1264.110000px;}
.w0_c01345{width:893.869500px;}
.w1_c01345{width:894.000000px;}
.x0_c01345{left:0.000000px;}
.x1_c01345{left:126.336000px;}
.x2_c01345{left:127.558500px;}
.x3_c01345{left:291.808500px;}
@media print{
.v0_c01345{vertical-align:0.000000pt;}
.ls0_c01345{letter-spacing:0.000000pt;}
.ws2_c01345{word-spacing:-0.063760pt;}
.ws3_c01345{word-spacing:0.000000pt;}
.ws0_c01345{word-spacing:20.722000pt;}
.ws1_c01345{word-spacing:25.499253pt;}
._1_c01345{margin-left:-31.986000pt;}
._0_c01345{width:1532.216560pt;}
.fs0_c01345{font-size:63.760000pt;}
.y0_c01345{bottom:0.000000pt;}
.y3_c01345{bottom:227.097333pt;}
.y2_c01345{bottom:1013.880000pt;}
.y1_c01345{bottom:1017.909333pt;}
.h2_c01345{height:47.820000pt;}
.h1_c01345{height:1123.333333pt;}
.h0_c01345{height:1123.653333pt;}
.w0_c01345{width:794.550667pt;}
.w1_c01345{width:794.666667pt;}
.x0_c01345{left:0.000000pt;}
.x1_c01345{left:112.298667pt;}
.x2_c01345{left:113.385333pt;}
.x3_c01345{left:259.385333pt;}
}





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

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





.ff0_c01346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01346;src:url('chunks/assets/font_0a349dde8a02ee814c2f1ccc.woff2')format("woff");}.ff1_c01346{font-family:ff1_c01346;line-height:1.001000;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_c01346;src:url('chunks/assets/font_69c0b649cca5c0e0fc0ebd2d.woff2')format("woff");}.ff2_c01346{font-family:ff2_c01346;line-height:1.001000;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_c01346{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_c01346{vertical-align:0.000000px;}
.ls0_c01346{letter-spacing:0.000000px;}
.sc__c01346{text-shadow:none;}
.sc0_c01346{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__c01346{-webkit-text-stroke:0px transparent;}
.sc0_c01346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01346{word-spacing:-0.071730px;}
.ws3_c01346{word-spacing:0.000000px;}
.ws0_c01346{word-spacing:23.312250px;}
.ws1_c01346{word-spacing:25.033770px;}
._2_c01346{margin-left:-3.352410px;}
._1_c01346{margin-left:-2.080170px;}
._3_c01346{width:27.571200px;}
._0_c01346{width:1723.743630px;}
.fc0_c01346{color:rgb(0,0,0);}
.fs0_c01346{font-size:71.730000px;}
.y0_c01346{bottom:0.000000px;}
.y3_c01346{bottom:289.062000px;}
.y2_c01346{bottom:1140.615000px;}
.y1_c01346{bottom:1145.148000px;}
.h2_c01346{height:53.797500px;}
.h1_c01346{height:1263.750000px;}
.h0_c01346{height:1264.110000px;}
.w0_c01346{width:893.869500px;}
.w1_c01346{width:894.000000px;}
.x0_c01346{left:0.000000px;}
.x1_c01346{left:126.336000px;}
.x2_c01346{left:127.558500px;}
.x3_c01346{left:249.634500px;}
@media print{
.v0_c01346{vertical-align:0.000000pt;}
.ls0_c01346{letter-spacing:0.000000pt;}
.ws2_c01346{word-spacing:-0.063760pt;}
.ws3_c01346{word-spacing:0.000000pt;}
.ws0_c01346{word-spacing:20.722000pt;}
.ws1_c01346{word-spacing:22.252240pt;}
._2_c01346{margin-left:-2.979920pt;}
._1_c01346{margin-left:-1.849040pt;}
._3_c01346{width:24.507733pt;}
._0_c01346{width:1532.216560pt;}
.fs0_c01346{font-size:63.760000pt;}
.y0_c01346{bottom:0.000000pt;}
.y3_c01346{bottom:256.944000pt;}
.y2_c01346{bottom:1013.880000pt;}
.y1_c01346{bottom:1017.909333pt;}
.h2_c01346{height:47.820000pt;}
.h1_c01346{height:1123.333333pt;}
.h0_c01346{height:1123.653333pt;}
.w0_c01346{width:794.550667pt;}
.w1_c01346{width:794.666667pt;}
.x0_c01346{left:0.000000pt;}
.x1_c01346{left:112.298667pt;}
.x2_c01346{left:113.385333pt;}
.x3_c01346{left:221.897333pt;}
}





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

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





.ff0_c01347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01347;src:url('chunks/assets/font_6e6f969a8330d32a6aeff077.woff2')format("woff");}.ff1_c01347{font-family:ff1_c01347;line-height:1.001000;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_c01347;src:url('chunks/assets/font_732faebf5fbbb61f6dc88211.woff2')format("woff");}.ff2_c01347{font-family:ff2_c01347;line-height:1.001000;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_c01347{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_c01347{vertical-align:0.000000px;}
.ls0_c01347{letter-spacing:0.000000px;}
.sc__c01347{text-shadow:none;}
.sc0_c01347{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__c01347{-webkit-text-stroke:0px transparent;}
.sc0_c01347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01347{word-spacing:-0.071730px;}
.ws3_c01347{word-spacing:0.000000px;}
.ws0_c01347{word-spacing:23.312250px;}
.ws1_c01347{word-spacing:25.033770px;}
._2_c01347{margin-left:-3.597990px;}
._1_c01347{margin-left:-2.151900px;}
._3_c01347{width:28.785540px;}
._0_c01347{width:1723.743630px;}
.fc0_c01347{color:rgb(0,0,0);}
.fs0_c01347{font-size:71.730000px;}
.y0_c01347{bottom:0.000000px;}
.y3_c01347{bottom:182.326500px;}
.y2_c01347{bottom:1140.615000px;}
.y1_c01347{bottom:1145.148000px;}
.h2_c01347{height:53.797500px;}
.h1_c01347{height:1263.750000px;}
.h0_c01347{height:1264.110000px;}
.w0_c01347{width:893.869500px;}
.w1_c01347{width:894.000000px;}
.x0_c01347{left:0.000000px;}
.x1_c01347{left:126.336000px;}
.x2_c01347{left:127.558500px;}
.x3_c01347{left:203.626500px;}
@media print{
.v0_c01347{vertical-align:0.000000pt;}
.ls0_c01347{letter-spacing:0.000000pt;}
.ws2_c01347{word-spacing:-0.063760pt;}
.ws3_c01347{word-spacing:0.000000pt;}
.ws0_c01347{word-spacing:20.722000pt;}
.ws1_c01347{word-spacing:22.252240pt;}
._2_c01347{margin-left:-3.198213pt;}
._1_c01347{margin-left:-1.912800pt;}
._3_c01347{width:25.587147pt;}
._0_c01347{width:1532.216560pt;}
.fs0_c01347{font-size:63.760000pt;}
.y0_c01347{bottom:0.000000pt;}
.y3_c01347{bottom:162.068000pt;}
.y2_c01347{bottom:1013.880000pt;}
.y1_c01347{bottom:1017.909333pt;}
.h2_c01347{height:47.820000pt;}
.h1_c01347{height:1123.333333pt;}
.h0_c01347{height:1123.653333pt;}
.w0_c01347{width:794.550667pt;}
.w1_c01347{width:794.666667pt;}
.x0_c01347{left:0.000000pt;}
.x1_c01347{left:112.298667pt;}
.x2_c01347{left:113.385333pt;}
.x3_c01347{left:181.001333pt;}
}





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

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





.ff0_c01348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01348;src:url('chunks/assets/font_0f6f3ef676cbed7d79cd4a38.woff2')format("woff");}.ff1_c01348{font-family:ff1_c01348;line-height:1.001000;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_c01348{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_c01348{vertical-align:0.000000px;}
.ls0_c01348{letter-spacing:0.000000px;}
.sc__c01348{text-shadow:none;}
.sc0_c01348{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__c01348{-webkit-text-stroke:0px transparent;}
.sc0_c01348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01348{word-spacing:0.000000px;}
.ws0_c01348{word-spacing:23.312250px;}
._1_c01348{margin-left:-2.151900px;}
._0_c01348{width:1723.743630px;}
.fc0_c01348{color:rgb(0,0,0);}
.fs0_c01348{font-size:71.730000px;}
.y0_c01348{bottom:0.000000px;}
.y3_c01348{bottom:266.833500px;}
.y2_c01348{bottom:1140.615000px;}
.y1_c01348{bottom:1145.148000px;}
.h2_c01348{height:53.797500px;}
.h1_c01348{height:1263.750000px;}
.h0_c01348{height:1264.110000px;}
.w0_c01348{width:893.869500px;}
.w1_c01348{width:894.000000px;}
.x0_c01348{left:0.000000px;}
.x1_c01348{left:126.336000px;}
.x2_c01348{left:127.558500px;}
.x3_c01348{left:227.646000px;}
@media print{
.v0_c01348{vertical-align:0.000000pt;}
.ls0_c01348{letter-spacing:0.000000pt;}
.ws1_c01348{word-spacing:0.000000pt;}
.ws0_c01348{word-spacing:20.722000pt;}
._1_c01348{margin-left:-1.912800pt;}
._0_c01348{width:1532.216560pt;}
.fs0_c01348{font-size:63.760000pt;}
.y0_c01348{bottom:0.000000pt;}
.y3_c01348{bottom:237.185333pt;}
.y2_c01348{bottom:1013.880000pt;}
.y1_c01348{bottom:1017.909333pt;}
.h2_c01348{height:47.820000pt;}
.h1_c01348{height:1123.333333pt;}
.h0_c01348{height:1123.653333pt;}
.w0_c01348{width:794.550667pt;}
.w1_c01348{width:794.666667pt;}
.x0_c01348{left:0.000000pt;}
.x1_c01348{left:112.298667pt;}
.x2_c01348{left:113.385333pt;}
.x3_c01348{left:202.352000pt;}
}





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

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





.ff0_c01349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01349;src:url('chunks/assets/font_d5be9e41caf06798779f4c5f.woff2')format("woff");}.ff1_c01349{font-family:ff1_c01349;line-height:1.001000;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_c01349;src:url('chunks/assets/font_e794355e28a60abcbc49e159.woff2')format("woff");}.ff2_c01349{font-family:ff2_c01349;line-height:1.001000;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_c01349{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_c01349{vertical-align:0.000000px;}
.ls0_c01349{letter-spacing:0.000000px;}
.sc__c01349{text-shadow:none;}
.sc0_c01349{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__c01349{-webkit-text-stroke:0px transparent;}
.sc0_c01349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01349{word-spacing:-0.071730px;}
.ws3_c01349{word-spacing:0.000000px;}
.ws0_c01349{word-spacing:23.312250px;}
.ws1_c01349{word-spacing:25.033770px;}
._1_c01349{margin-left:-3.756660px;}
._2_c01349{width:27.978930px;}
._0_c01349{width:1723.743630px;}
.fc0_c01349{color:rgb(0,0,0);}
.fs0_c01349{font-size:71.730000px;}
.y0_c01349{bottom:0.000000px;}
.y3_c01349{bottom:265.285500px;}
.y2_c01349{bottom:1140.615000px;}
.y1_c01349{bottom:1145.148000px;}
.h2_c01349{height:53.797500px;}
.h1_c01349{height:1263.750000px;}
.h0_c01349{height:1264.110000px;}
.w0_c01349{width:893.869500px;}
.w1_c01349{width:894.000000px;}
.x0_c01349{left:0.000000px;}
.x1_c01349{left:126.336000px;}
.x2_c01349{left:127.558500px;}
.x3_c01349{left:261.798000px;}
@media print{
.v0_c01349{vertical-align:0.000000pt;}
.ls0_c01349{letter-spacing:0.000000pt;}
.ws2_c01349{word-spacing:-0.063760pt;}
.ws3_c01349{word-spacing:0.000000pt;}
.ws0_c01349{word-spacing:20.722000pt;}
.ws1_c01349{word-spacing:22.252240pt;}
._1_c01349{margin-left:-3.339253pt;}
._2_c01349{width:24.870160pt;}
._0_c01349{width:1532.216560pt;}
.fs0_c01349{font-size:63.760000pt;}
.y0_c01349{bottom:0.000000pt;}
.y3_c01349{bottom:235.809333pt;}
.y2_c01349{bottom:1013.880000pt;}
.y1_c01349{bottom:1017.909333pt;}
.h2_c01349{height:47.820000pt;}
.h1_c01349{height:1123.333333pt;}
.h0_c01349{height:1123.653333pt;}
.w0_c01349{width:794.550667pt;}
.w1_c01349{width:794.666667pt;}
.x0_c01349{left:0.000000pt;}
.x1_c01349{left:112.298667pt;}
.x2_c01349{left:113.385333pt;}
.x3_c01349{left:232.709333pt;}
}





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

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





.ff0_c01350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01350;src:url('chunks/assets/font_a3fb6be9d5296fac0bc04537.woff2')format("woff");}.ff1_c01350{font-family:ff1_c01350;line-height:1.001000;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_c01350;src:url('chunks/assets/font_74c8c57a36cd8e0128b2d6d1.woff2')format("woff");}.ff2_c01350{font-family:ff2_c01350;line-height:1.001000;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_c01350{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_c01350{vertical-align:0.000000px;}
.ls0_c01350{letter-spacing:0.000000px;}
.sc__c01350{text-shadow:none;}
.sc0_c01350{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__c01350{-webkit-text-stroke:0px transparent;}
.sc0_c01350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01350{word-spacing:-0.071730px;}
.ws3_c01350{word-spacing:0.000000px;}
.ws0_c01350{word-spacing:23.312250px;}
.ws1_c01350{word-spacing:25.033770px;}
._2_c01350{margin-left:-3.609660px;}
._1_c01350{margin-left:-2.151900px;}
._3_c01350{width:27.811770px;}
._0_c01350{width:1723.743630px;}
.fc0_c01350{color:rgb(0,0,0);}
.fs0_c01350{font-size:71.730000px;}
.y0_c01350{bottom:0.000000px;}
.y3_c01350{bottom:218.919000px;}
.y2_c01350{bottom:1140.615000px;}
.y1_c01350{bottom:1145.148000px;}
.h2_c01350{height:53.797500px;}
.h1_c01350{height:1263.750000px;}
.h0_c01350{height:1264.110000px;}
.w0_c01350{width:893.869500px;}
.w1_c01350{width:894.000000px;}
.x0_c01350{left:0.000000px;}
.x1_c01350{left:126.336000px;}
.x2_c01350{left:127.558500px;}
.x3_c01350{left:238.467000px;}
@media print{
.v0_c01350{vertical-align:0.000000pt;}
.ls0_c01350{letter-spacing:0.000000pt;}
.ws2_c01350{word-spacing:-0.063760pt;}
.ws3_c01350{word-spacing:0.000000pt;}
.ws0_c01350{word-spacing:20.722000pt;}
.ws1_c01350{word-spacing:22.252240pt;}
._2_c01350{margin-left:-3.208587pt;}
._1_c01350{margin-left:-1.912800pt;}
._3_c01350{width:24.721573pt;}
._0_c01350{width:1532.216560pt;}
.fs0_c01350{font-size:63.760000pt;}
.y0_c01350{bottom:0.000000pt;}
.y3_c01350{bottom:194.594667pt;}
.y2_c01350{bottom:1013.880000pt;}
.y1_c01350{bottom:1017.909333pt;}
.h2_c01350{height:47.820000pt;}
.h1_c01350{height:1123.333333pt;}
.h0_c01350{height:1123.653333pt;}
.w0_c01350{width:794.550667pt;}
.w1_c01350{width:794.666667pt;}
.x0_c01350{left:0.000000pt;}
.x1_c01350{left:112.298667pt;}
.x2_c01350{left:113.385333pt;}
.x3_c01350{left:211.970667pt;}
}





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

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





.ff0_c01351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01351;src:url('chunks/assets/font_6d89a3f609f7782aaa3fc200.woff2')format("woff");}.ff1_c01351{font-family:ff1_c01351;line-height:1.001000;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_c01351;src:url('chunks/assets/font_2571c13be4c8a27b1a1406fa.woff2')format("woff");}.ff2_c01351{font-family:ff2_c01351;line-height:1.001000;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_c01351{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_c01351{vertical-align:0.000000px;}
.ls0_c01351{letter-spacing:0.000000px;}
.sc__c01351{text-shadow:none;}
.sc0_c01351{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__c01351{-webkit-text-stroke:0px transparent;}
.sc0_c01351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01351{word-spacing:-0.071730px;}
.ws3_c01351{word-spacing:0.000000px;}
.ws0_c01351{word-spacing:23.312250px;}
.ws1_c01351{word-spacing:25.033770px;}
._1_c01351{margin-left:-2.151900px;}
._2_c01351{width:29.653890px;}
._0_c01351{width:1723.743630px;}
.fc0_c01351{color:rgb(0,0,0);}
.fs0_c01351{font-size:71.730000px;}
.y0_c01351{bottom:0.000000px;}
.y3_c01351{bottom:164.851500px;}
.y2_c01351{bottom:1140.615000px;}
.y1_c01351{bottom:1145.148000px;}
.h2_c01351{height:53.797500px;}
.h1_c01351{height:1263.750000px;}
.h0_c01351{height:1264.110000px;}
.w0_c01351{width:893.869500px;}
.w1_c01351{width:894.000000px;}
.x0_c01351{left:0.000000px;}
.x1_c01351{left:126.336000px;}
.x2_c01351{left:127.558500px;}
.x3_c01351{left:230.487000px;}
@media print{
.v0_c01351{vertical-align:0.000000pt;}
.ls0_c01351{letter-spacing:0.000000pt;}
.ws2_c01351{word-spacing:-0.063760pt;}
.ws3_c01351{word-spacing:0.000000pt;}
.ws0_c01351{word-spacing:20.722000pt;}
.ws1_c01351{word-spacing:22.252240pt;}
._1_c01351{margin-left:-1.912800pt;}
._2_c01351{width:26.359013pt;}
._0_c01351{width:1532.216560pt;}
.fs0_c01351{font-size:63.760000pt;}
.y0_c01351{bottom:0.000000pt;}
.y3_c01351{bottom:146.534667pt;}
.y2_c01351{bottom:1013.880000pt;}
.y1_c01351{bottom:1017.909333pt;}
.h2_c01351{height:47.820000pt;}
.h1_c01351{height:1123.333333pt;}
.h0_c01351{height:1123.653333pt;}
.w0_c01351{width:794.550667pt;}
.w1_c01351{width:794.666667pt;}
.x0_c01351{left:0.000000pt;}
.x1_c01351{left:112.298667pt;}
.x2_c01351{left:113.385333pt;}
.x3_c01351{left:204.877333pt;}
}





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

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





.ff0_c01352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01352;src:url('chunks/assets/font_fd16c420159060279920217c.woff2')format("woff");}.ff1_c01352{font-family:ff1_c01352;line-height:1.001000;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_c01352;src:url('chunks/assets/font_8da9dfcbfb89ae5a2212694d.woff2')format("woff");}.ff2_c01352{font-family:ff2_c01352;line-height:1.001000;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_c01352{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_c01352{vertical-align:0.000000px;}
.ls0_c01352{letter-spacing:0.000000px;}
.sc__c01352{text-shadow:none;}
.sc0_c01352{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__c01352{-webkit-text-stroke:0px transparent;}
.sc0_c01352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01352{word-spacing:-0.071730px;}
.ws3_c01352{word-spacing:0.000000px;}
.ws0_c01352{word-spacing:23.312250px;}
.ws1_c01352{word-spacing:25.033770px;}
._1_c01352{margin-left:-2.151900px;}
._2_c01352{width:28.731600px;}
._0_c01352{width:1723.743630px;}
.fc0_c01352{color:rgb(0,0,0);}
.fs0_c01352{font-size:71.730000px;}
.y0_c01352{bottom:0.000000px;}
.y3_c01352{bottom:218.439000px;}
.y2_c01352{bottom:1140.615000px;}
.y1_c01352{bottom:1145.148000px;}
.h2_c01352{height:53.797500px;}
.h1_c01352{height:1263.750000px;}
.h0_c01352{height:1264.110000px;}
.w0_c01352{width:893.869500px;}
.w1_c01352{width:894.000000px;}
.x0_c01352{left:0.000000px;}
.x1_c01352{left:126.336000px;}
.x2_c01352{left:127.558500px;}
.x3_c01352{left:224.568000px;}
@media print{
.v0_c01352{vertical-align:0.000000pt;}
.ls0_c01352{letter-spacing:0.000000pt;}
.ws2_c01352{word-spacing:-0.063760pt;}
.ws3_c01352{word-spacing:0.000000pt;}
.ws0_c01352{word-spacing:20.722000pt;}
.ws1_c01352{word-spacing:22.252240pt;}
._1_c01352{margin-left:-1.912800pt;}
._2_c01352{width:25.539200pt;}
._0_c01352{width:1532.216560pt;}
.fs0_c01352{font-size:63.760000pt;}
.y0_c01352{bottom:0.000000pt;}
.y3_c01352{bottom:194.168000pt;}
.y2_c01352{bottom:1013.880000pt;}
.y1_c01352{bottom:1017.909333pt;}
.h2_c01352{height:47.820000pt;}
.h1_c01352{height:1123.333333pt;}
.h0_c01352{height:1123.653333pt;}
.w0_c01352{width:794.550667pt;}
.w1_c01352{width:794.666667pt;}
.x0_c01352{left:0.000000pt;}
.x1_c01352{left:112.298667pt;}
.x2_c01352{left:113.385333pt;}
.x3_c01352{left:199.616000pt;}
}





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

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





.ff0_c01353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01353;src:url('chunks/assets/font_415d3860bc2c11d77969dc14.woff2')format("woff");}.ff1_c01353{font-family:ff1_c01353;line-height:1.001000;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_c01353;src:url('chunks/assets/font_5c6259bb2caf1e5bf5cf86c9.woff2')format("woff");}.ff2_c01353{font-family:ff2_c01353;line-height:1.001000;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_c01353{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_c01353{vertical-align:0.000000px;}
.ls0_c01353{letter-spacing:0.000000px;}
.sc__c01353{text-shadow:none;}
.sc0_c01353{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__c01353{-webkit-text-stroke:0px transparent;}
.sc0_c01353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01353{word-spacing:-0.071730px;}
.ws3_c01353{word-spacing:0.000000px;}
.ws0_c01353{word-spacing:23.312250px;}
.ws1_c01353{word-spacing:25.033770px;}
._2_c01353{margin-left:-3.577770px;}
._1_c01353{margin-left:-2.151900px;}
._3_c01353{width:29.363070px;}
._0_c01353{width:1723.743630px;}
.fc0_c01353{color:rgb(0,0,0);}
.fs0_c01353{font-size:71.730000px;}
.y0_c01353{bottom:0.000000px;}
.y3_c01353{bottom:344.368500px;}
.y2_c01353{bottom:1140.615000px;}
.y1_c01353{bottom:1145.148000px;}
.h2_c01353{height:53.797500px;}
.h1_c01353{height:1263.750000px;}
.h0_c01353{height:1264.110000px;}
.w0_c01353{width:893.869500px;}
.w1_c01353{width:894.000000px;}
.x0_c01353{left:0.000000px;}
.x1_c01353{left:126.336000px;}
.x2_c01353{left:127.558500px;}
.x3_c01353{left:232.027500px;}
@media print{
.v0_c01353{vertical-align:0.000000pt;}
.ls0_c01353{letter-spacing:0.000000pt;}
.ws2_c01353{word-spacing:-0.063760pt;}
.ws3_c01353{word-spacing:0.000000pt;}
.ws0_c01353{word-spacing:20.722000pt;}
.ws1_c01353{word-spacing:22.252240pt;}
._2_c01353{margin-left:-3.180240pt;}
._1_c01353{margin-left:-1.912800pt;}
._3_c01353{width:26.100507pt;}
._0_c01353{width:1532.216560pt;}
.fs0_c01353{font-size:63.760000pt;}
.y0_c01353{bottom:0.000000pt;}
.y3_c01353{bottom:306.105333pt;}
.y2_c01353{bottom:1013.880000pt;}
.y1_c01353{bottom:1017.909333pt;}
.h2_c01353{height:47.820000pt;}
.h1_c01353{height:1123.333333pt;}
.h0_c01353{height:1123.653333pt;}
.w0_c01353{width:794.550667pt;}
.w1_c01353{width:794.666667pt;}
.x0_c01353{left:0.000000pt;}
.x1_c01353{left:112.298667pt;}
.x2_c01353{left:113.385333pt;}
.x3_c01353{left:206.246667pt;}
}





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

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





.ff0_c01354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01354;src:url('chunks/assets/font_7bf81ac17114300002b43395.woff2')format("woff");}.ff1_c01354{font-family:ff1_c01354;line-height:1.001000;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_c01354;src:url('chunks/assets/font_f3ec619cd4120922af9ba308.woff2')format("woff");}.ff2_c01354{font-family:ff2_c01354;line-height:1.001000;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_c01354{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_c01354{vertical-align:0.000000px;}
.ls0_c01354{letter-spacing:0.000000px;}
.sc__c01354{text-shadow:none;}
.sc0_c01354{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__c01354{-webkit-text-stroke:0px transparent;}
.sc0_c01354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01354{word-spacing:-0.071730px;}
.ws3_c01354{word-spacing:0.000000px;}
.ws0_c01354{word-spacing:23.312250px;}
.ws1_c01354{word-spacing:23.368320px;}
._3_c01354{margin-left:-36.940950px;}
._2_c01354{margin-left:-35.147700px;}
._1_c01354{width:1.793250px;}
._0_c01354{width:1723.743630px;}
.fc0_c01354{color:rgb(0,0,0);}
.fs0_c01354{font-size:71.730000px;}
.y0_c01354{bottom:0.000000px;}
.y3_c01354{bottom:175.147500px;}
.y2_c01354{bottom:1140.615000px;}
.y1_c01354{bottom:1145.148000px;}
.h2_c01354{height:53.797500px;}
.h1_c01354{height:1263.750000px;}
.h0_c01354{height:1264.110000px;}
.w0_c01354{width:893.869500px;}
.w1_c01354{width:894.000000px;}
.x0_c01354{left:0.000000px;}
.x1_c01354{left:126.336000px;}
.x2_c01354{left:127.558500px;}
.x3_c01354{left:285.352500px;}
@media print{
.v0_c01354{vertical-align:0.000000pt;}
.ls0_c01354{letter-spacing:0.000000pt;}
.ws2_c01354{word-spacing:-0.063760pt;}
.ws3_c01354{word-spacing:0.000000pt;}
.ws0_c01354{word-spacing:20.722000pt;}
.ws1_c01354{word-spacing:20.771840pt;}
._3_c01354{margin-left:-32.836400pt;}
._2_c01354{margin-left:-31.242400pt;}
._1_c01354{width:1.594000pt;}
._0_c01354{width:1532.216560pt;}
.fs0_c01354{font-size:63.760000pt;}
.y0_c01354{bottom:0.000000pt;}
.y3_c01354{bottom:155.686667pt;}
.y2_c01354{bottom:1013.880000pt;}
.y1_c01354{bottom:1017.909333pt;}
.h2_c01354{height:47.820000pt;}
.h1_c01354{height:1123.333333pt;}
.h0_c01354{height:1123.653333pt;}
.w0_c01354{width:794.550667pt;}
.w1_c01354{width:794.666667pt;}
.x0_c01354{left:0.000000pt;}
.x1_c01354{left:112.298667pt;}
.x2_c01354{left:113.385333pt;}
.x3_c01354{left:253.646667pt;}
}





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

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





.ff0_c01355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01355;src:url('chunks/assets/font_e26fbac256015a4d66e863f9.woff2')format("woff");}.ff1_c01355{font-family:ff1_c01355;line-height:1.001000;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_c01355;src:url('chunks/assets/font_047df43072e10c1c49917e8c.woff2')format("woff");}.ff2_c01355{font-family:ff2_c01355;line-height:1.001000;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_c01355{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_c01355{vertical-align:0.000000px;}
.ls0_c01355{letter-spacing:0.000000px;}
.sc__c01355{text-shadow:none;}
.sc0_c01355{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__c01355{-webkit-text-stroke:0px transparent;}
.sc0_c01355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01355{word-spacing:-0.071730px;}
.ws3_c01355{word-spacing:0.000000px;}
.ws0_c01355{word-spacing:23.312250px;}
.ws1_c01355{word-spacing:25.033770px;}
._2_c01355{margin-left:-35.147700px;}
._1_c01355{margin-left:-6.025320px;}
._3_c01355{margin-left:-3.664710px;}
._4_c01355{width:29.410770px;}
._0_c01355{width:1723.743630px;}
.fc0_c01355{color:rgb(0,0,0);}
.fs0_c01355{font-size:71.730000px;}
.y0_c01355{bottom:0.000000px;}
.y3_c01355{bottom:143.650500px;}
.y2_c01355{bottom:1140.615000px;}
.y1_c01355{bottom:1145.148000px;}
.h2_c01355{height:53.797500px;}
.h1_c01355{height:1263.750000px;}
.h0_c01355{height:1264.110000px;}
.w0_c01355{width:893.869500px;}
.w1_c01355{width:894.000000px;}
.x0_c01355{left:0.000000px;}
.x1_c01355{left:126.336000px;}
.x2_c01355{left:127.558500px;}
.x3_c01355{left:229.657500px;}
@media print{
.v0_c01355{vertical-align:0.000000pt;}
.ls0_c01355{letter-spacing:0.000000pt;}
.ws2_c01355{word-spacing:-0.063760pt;}
.ws3_c01355{word-spacing:0.000000pt;}
.ws0_c01355{word-spacing:20.722000pt;}
.ws1_c01355{word-spacing:22.252240pt;}
._2_c01355{margin-left:-31.242400pt;}
._1_c01355{margin-left:-5.355840pt;}
._3_c01355{margin-left:-3.257520pt;}
._4_c01355{width:26.142907pt;}
._0_c01355{width:1532.216560pt;}
.fs0_c01355{font-size:63.760000pt;}
.y0_c01355{bottom:0.000000pt;}
.y3_c01355{bottom:127.689333pt;}
.y2_c01355{bottom:1013.880000pt;}
.y1_c01355{bottom:1017.909333pt;}
.h2_c01355{height:47.820000pt;}
.h1_c01355{height:1123.333333pt;}
.h0_c01355{height:1123.653333pt;}
.w0_c01355{width:794.550667pt;}
.w1_c01355{width:794.666667pt;}
.x0_c01355{left:0.000000pt;}
.x1_c01355{left:112.298667pt;}
.x2_c01355{left:113.385333pt;}
.x3_c01355{left:204.140000pt;}
}





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

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





.ff0_c01356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01356;src:url('chunks/assets/font_55ae06f7f2d4b6485d64e20b.woff2')format("woff");}.ff1_c01356{font-family:ff1_c01356;line-height:1.001000;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_c01356;src:url('chunks/assets/font_0613e50bac6a41bf04a44b38.woff2')format("woff");}.ff2_c01356{font-family:ff2_c01356;line-height:1.001000;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_c01356{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_c01356{vertical-align:0.000000px;}
.ls0_c01356{letter-spacing:0.000000px;}
.sc__c01356{text-shadow:none;}
.sc0_c01356{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__c01356{-webkit-text-stroke:0px transparent;}
.sc0_c01356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01356{word-spacing:-0.071730px;}
.ws3_c01356{word-spacing:0.000000px;}
.ws0_c01356{word-spacing:23.312250px;}
.ws1_c01356{word-spacing:25.033770px;}
._2_c01356{margin-left:-35.147700px;}
._4_c01356{margin-left:-28.692000px;}
._3_c01356{margin-left:-7.251210px;}
._1_c01356{margin-left:-6.025320px;}
._5_c01356{width:27.809250px;}
._0_c01356{width:1723.743630px;}
.fc0_c01356{color:rgb(0,0,0);}
.fs0_c01356{font-size:71.730000px;}
.y0_c01356{bottom:0.000000px;}
.y3_c01356{bottom:341.269500px;}
.y2_c01356{bottom:1140.615000px;}
.y1_c01356{bottom:1145.148000px;}
.h2_c01356{height:53.797500px;}
.h1_c01356{height:1263.750000px;}
.h0_c01356{height:1264.110000px;}
.w0_c01356{width:893.869500px;}
.w1_c01356{width:894.000000px;}
.x0_c01356{left:0.000000px;}
.x1_c01356{left:126.336000px;}
.x2_c01356{left:127.558500px;}
.x3_c01356{left:259.912500px;}
@media print{
.v0_c01356{vertical-align:0.000000pt;}
.ls0_c01356{letter-spacing:0.000000pt;}
.ws2_c01356{word-spacing:-0.063760pt;}
.ws3_c01356{word-spacing:0.000000pt;}
.ws0_c01356{word-spacing:20.722000pt;}
.ws1_c01356{word-spacing:22.252240pt;}
._2_c01356{margin-left:-31.242400pt;}
._4_c01356{margin-left:-25.504000pt;}
._3_c01356{margin-left:-6.445520pt;}
._1_c01356{margin-left:-5.355840pt;}
._5_c01356{width:24.719333pt;}
._0_c01356{width:1532.216560pt;}
.fs0_c01356{font-size:63.760000pt;}
.y0_c01356{bottom:0.000000pt;}
.y3_c01356{bottom:303.350667pt;}
.y2_c01356{bottom:1013.880000pt;}
.y1_c01356{bottom:1017.909333pt;}
.h2_c01356{height:47.820000pt;}
.h1_c01356{height:1123.333333pt;}
.h0_c01356{height:1123.653333pt;}
.w0_c01356{width:794.550667pt;}
.w1_c01356{width:794.666667pt;}
.x0_c01356{left:0.000000pt;}
.x1_c01356{left:112.298667pt;}
.x2_c01356{left:113.385333pt;}
.x3_c01356{left:231.033333pt;}
}





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

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





.ff0_c01357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01357;src:url('chunks/assets/font_1e854bed5f0107238cd9e546.woff2')format("woff");}.ff1_c01357{font-family:ff1_c01357;line-height:1.001000;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_c01357;src:url('chunks/assets/font_33dc07b3ed23902412434754.woff2')format("woff");}.ff2_c01357{font-family:ff2_c01357;line-height:1.001000;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_c01357{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_c01357{vertical-align:0.000000px;}
.ls0_c01357{letter-spacing:0.000000px;}
.sc__c01357{text-shadow:none;}
.sc0_c01357{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__c01357{-webkit-text-stroke:0px transparent;}
.sc0_c01357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01357{word-spacing:-0.071730px;}
.ws3_c01357{word-spacing:0.000000px;}
.ws0_c01357{word-spacing:23.312250px;}
.ws1_c01357{word-spacing:25.033770px;}
._2_c01357{margin-left:-3.715200px;}
._1_c01357{margin-left:-2.080170px;}
._3_c01357{width:3.586500px;}
._4_c01357{width:28.780770px;}
._0_c01357{width:1723.743630px;}
.fc0_c01357{color:rgb(0,0,0);}
.fs0_c01357{font-size:71.730000px;}
.y0_c01357{bottom:0.000000px;}
.y3_c01357{bottom:447.319500px;}
.y2_c01357{bottom:1140.615000px;}
.y1_c01357{bottom:1145.148000px;}
.h2_c01357{height:53.797500px;}
.h1_c01357{height:1263.750000px;}
.h0_c01357{height:1264.110000px;}
.w0_c01357{width:893.869500px;}
.w1_c01357{width:894.000000px;}
.x0_c01357{left:0.000000px;}
.x1_c01357{left:126.336000px;}
.x2_c01357{left:127.558500px;}
.x3_c01357{left:231.204000px;}
@media print{
.v0_c01357{vertical-align:0.000000pt;}
.ls0_c01357{letter-spacing:0.000000pt;}
.ws2_c01357{word-spacing:-0.063760pt;}
.ws3_c01357{word-spacing:0.000000pt;}
.ws0_c01357{word-spacing:20.722000pt;}
.ws1_c01357{word-spacing:22.252240pt;}
._2_c01357{margin-left:-3.302400pt;}
._1_c01357{margin-left:-1.849040pt;}
._3_c01357{width:3.188000pt;}
._4_c01357{width:25.582907pt;}
._0_c01357{width:1532.216560pt;}
.fs0_c01357{font-size:63.760000pt;}
.y0_c01357{bottom:0.000000pt;}
.y3_c01357{bottom:397.617333pt;}
.y2_c01357{bottom:1013.880000pt;}
.y1_c01357{bottom:1017.909333pt;}
.h2_c01357{height:47.820000pt;}
.h1_c01357{height:1123.333333pt;}
.h0_c01357{height:1123.653333pt;}
.w0_c01357{width:794.550667pt;}
.w1_c01357{width:794.666667pt;}
.x0_c01357{left:0.000000pt;}
.x1_c01357{left:112.298667pt;}
.x2_c01357{left:113.385333pt;}
.x3_c01357{left:205.514667pt;}
}





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

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





.ff0_c01358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01358;src:url('chunks/assets/font_e851e24610e4bfc76c1d953a.woff2')format("woff");}.ff1_c01358{font-family:ff1_c01358;line-height:1.001000;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_c01358;src:url('chunks/assets/font_52600c480b30642350d75f99.woff2')format("woff");}.ff2_c01358{font-family:ff2_c01358;line-height:1.001000;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_c01358{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_c01358{vertical-align:0.000000px;}
.ls0_c01358{letter-spacing:0.000000px;}
.sc__c01358{text-shadow:none;}
.sc0_c01358{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__c01358{-webkit-text-stroke:0px transparent;}
.sc0_c01358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01358{word-spacing:-0.071730px;}
.ws3_c01358{word-spacing:0.000000px;}
.ws0_c01358{word-spacing:23.312250px;}
.ws1_c01358{word-spacing:29.256810px;}
._1_c01358{margin-left:-2.080170px;}
._0_c01358{width:1723.743630px;}
.fc0_c01358{color:rgb(0,0,0);}
.fs0_c01358{font-size:71.730000px;}
.y0_c01358{bottom:0.000000px;}
.y3_c01358{bottom:116.899500px;}
.y2_c01358{bottom:1140.615000px;}
.y1_c01358{bottom:1145.148000px;}
.h2_c01358{height:53.797500px;}
.h1_c01358{height:1263.750000px;}
.h0_c01358{height:1264.110000px;}
.w0_c01358{width:893.869500px;}
.w1_c01358{width:894.000000px;}
.x0_c01358{left:0.000000px;}
.x1_c01358{left:126.336000px;}
.x2_c01358{left:127.558500px;}
.x3_c01358{left:287.482500px;}
@media print{
.v0_c01358{vertical-align:0.000000pt;}
.ls0_c01358{letter-spacing:0.000000pt;}
.ws2_c01358{word-spacing:-0.063760pt;}
.ws3_c01358{word-spacing:0.000000pt;}
.ws0_c01358{word-spacing:20.722000pt;}
.ws1_c01358{word-spacing:26.006053pt;}
._1_c01358{margin-left:-1.849040pt;}
._0_c01358{width:1532.216560pt;}
.fs0_c01358{font-size:63.760000pt;}
.y0_c01358{bottom:0.000000pt;}
.y3_c01358{bottom:103.910667pt;}
.y2_c01358{bottom:1013.880000pt;}
.y1_c01358{bottom:1017.909333pt;}
.h2_c01358{height:47.820000pt;}
.h1_c01358{height:1123.333333pt;}
.h0_c01358{height:1123.653333pt;}
.w0_c01358{width:794.550667pt;}
.w1_c01358{width:794.666667pt;}
.x0_c01358{left:0.000000pt;}
.x1_c01358{left:112.298667pt;}
.x2_c01358{left:113.385333pt;}
.x3_c01358{left:255.540000pt;}
}





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

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





.ff0_c01359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01359;src:url('chunks/assets/font_9913f6909d7da7de817aaffa.woff2')format("woff");}.ff1_c01359{font-family:ff1_c01359;line-height:1.001000;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_c01359;src:url('chunks/assets/font_e970517d43dff356298c4e82.woff2')format("woff");}.ff2_c01359{font-family:ff2_c01359;line-height:1.001000;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_c01359{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_c01359{vertical-align:0.000000px;}
.ls0_c01359{letter-spacing:0.000000px;}
.sc__c01359{text-shadow:none;}
.sc0_c01359{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__c01359{-webkit-text-stroke:0px transparent;}
.sc0_c01359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01359{word-spacing:-0.071730px;}
.ws3_c01359{word-spacing:0.000000px;}
.ws0_c01359{word-spacing:23.312250px;}
.ws1_c01359{word-spacing:25.033770px;}
._2_c01359{margin-left:-35.219430px;}
._1_c01359{margin-left:-5.953590px;}
._3_c01359{margin-left:-3.525480px;}
._4_c01359{width:30.849270px;}
._0_c01359{width:1723.743630px;}
.fc0_c01359{color:rgb(0,0,0);}
.fs0_c01359{font-size:71.730000px;}
.y0_c01359{bottom:0.000000px;}
.y3_c01359{bottom:167.226000px;}
.y2_c01359{bottom:1140.615000px;}
.y1_c01359{bottom:1145.148000px;}
.h2_c01359{height:53.797500px;}
.h1_c01359{height:1263.750000px;}
.h0_c01359{height:1264.110000px;}
.w0_c01359{width:893.869500px;}
.w1_c01359{width:894.000000px;}
.x0_c01359{left:0.000000px;}
.x1_c01359{left:126.336000px;}
.x2_c01359{left:127.558500px;}
.x3_c01359{left:252.565500px;}
@media print{
.v0_c01359{vertical-align:0.000000pt;}
.ls0_c01359{letter-spacing:0.000000pt;}
.ws2_c01359{word-spacing:-0.063760pt;}
.ws3_c01359{word-spacing:0.000000pt;}
.ws0_c01359{word-spacing:20.722000pt;}
.ws1_c01359{word-spacing:22.252240pt;}
._2_c01359{margin-left:-31.306160pt;}
._1_c01359{margin-left:-5.292080pt;}
._3_c01359{margin-left:-3.133760pt;}
._4_c01359{width:27.421573pt;}
._0_c01359{width:1532.216560pt;}
.fs0_c01359{font-size:63.760000pt;}
.y0_c01359{bottom:0.000000pt;}
.y3_c01359{bottom:148.645333pt;}
.y2_c01359{bottom:1013.880000pt;}
.y1_c01359{bottom:1017.909333pt;}
.h2_c01359{height:47.820000pt;}
.h1_c01359{height:1123.333333pt;}
.h0_c01359{height:1123.653333pt;}
.w0_c01359{width:794.550667pt;}
.w1_c01359{width:794.666667pt;}
.x0_c01359{left:0.000000pt;}
.x1_c01359{left:112.298667pt;}
.x2_c01359{left:113.385333pt;}
.x3_c01359{left:224.502667pt;}
}





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

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





.ff0_c01360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01360;src:url('chunks/assets/font_da65b6611d370ce6cd787aff.woff2')format("woff");}.ff1_c01360{font-family:ff1_c01360;line-height:1.001000;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_c01360;src:url('chunks/assets/font_ea6ae36a549460132f253eba.woff2')format("woff");}.ff2_c01360{font-family:ff2_c01360;line-height:1.001000;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_c01360{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_c01360{vertical-align:0.000000px;}
.ls0_c01360{letter-spacing:0.000000px;}
.sc__c01360{text-shadow:none;}
.sc0_c01360{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__c01360{-webkit-text-stroke:0px transparent;}
.sc0_c01360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01360{word-spacing:-0.071730px;}
.ws3_c01360{word-spacing:0.000000px;}
.ws0_c01360{word-spacing:23.312250px;}
.ws1_c01360{word-spacing:25.033770px;}
._2_c01360{margin-left:-33.210990px;}
._4_c01360{margin-left:-3.629370px;}
._1_c01360{margin-left:-2.151900px;}
._3_c01360{width:2.008440px;}
._5_c01360{width:26.122920px;}
._0_c01360{width:1723.743630px;}
.fc0_c01360{color:rgb(0,0,0);}
.fs0_c01360{font-size:71.730000px;}
.y0_c01360{bottom:0.000000px;}
.y3_c01360{bottom:124.950000px;}
.y2_c01360{bottom:1140.615000px;}
.y1_c01360{bottom:1145.148000px;}
.h2_c01360{height:53.797500px;}
.h1_c01360{height:1263.750000px;}
.h0_c01360{height:1264.110000px;}
.w0_c01360{width:893.869500px;}
.w1_c01360{width:894.000000px;}
.x0_c01360{left:0.000000px;}
.x1_c01360{left:126.336000px;}
.x2_c01360{left:127.558500px;}
.x3_c01360{left:180.486000px;}
@media print{
.v0_c01360{vertical-align:0.000000pt;}
.ls0_c01360{letter-spacing:0.000000pt;}
.ws2_c01360{word-spacing:-0.063760pt;}
.ws3_c01360{word-spacing:0.000000pt;}
.ws0_c01360{word-spacing:20.722000pt;}
.ws1_c01360{word-spacing:22.252240pt;}
._2_c01360{margin-left:-29.520880pt;}
._4_c01360{margin-left:-3.226107pt;}
._1_c01360{margin-left:-1.912800pt;}
._3_c01360{width:1.785280pt;}
._5_c01360{width:23.220373pt;}
._0_c01360{width:1532.216560pt;}
.fs0_c01360{font-size:63.760000pt;}
.y0_c01360{bottom:0.000000pt;}
.y3_c01360{bottom:111.066667pt;}
.y2_c01360{bottom:1013.880000pt;}
.y1_c01360{bottom:1017.909333pt;}
.h2_c01360{height:47.820000pt;}
.h1_c01360{height:1123.333333pt;}
.h0_c01360{height:1123.653333pt;}
.w0_c01360{width:794.550667pt;}
.w1_c01360{width:794.666667pt;}
.x0_c01360{left:0.000000pt;}
.x1_c01360{left:112.298667pt;}
.x2_c01360{left:113.385333pt;}
.x3_c01360{left:160.432000pt;}
}





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

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





.ff0_c01361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01361;src:url('chunks/assets/font_ca25850690fc399d0c959b3f.woff2')format("woff");}.ff1_c01361{font-family:ff1_c01361;line-height:1.001000;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_c01361;src:url('chunks/assets/font_17a3be864f3a415756ee8c56.woff2')format("woff");}.ff2_c01361{font-family:ff2_c01361;line-height:1.001000;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_c01361{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_c01361{vertical-align:0.000000px;}
.v1_c01361{vertical-align:18.132000px;}
.ls0_c01361{letter-spacing:0.000000px;}
.sc__c01361{text-shadow:none;}
.sc0_c01361{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__c01361{-webkit-text-stroke:0px transparent;}
.sc0_c01361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01361{word-spacing:-0.071730px;}
.ws3_c01361{word-spacing:0.000000px;}
.ws0_c01361{word-spacing:23.312250px;}
.ws1_c01361{word-spacing:25.105500px;}
._5_c01361{margin-left:-37.658250px;}
._3_c01361{margin-left:-35.865000px;}
._2_c01361{margin-left:-3.577650px;}
._4_c01361{width:1.793250px;}
._6_c01361{width:28.745280px;}
._1_c01361{width:32.008440px;}
._0_c01361{width:1723.743630px;}
.fc0_c01361{color:rgb(0,0,0);}
.fs0_c01361{font-size:71.730000px;}
.y0_c01361{bottom:0.000000px;}
.y3_c01361{bottom:209.335500px;}
.y2_c01361{bottom:1140.615000px;}
.y1_c01361{bottom:1145.148000px;}
.h2_c01361{height:53.797500px;}
.h3_c01361{height:71.929500px;}
.h1_c01361{height:1263.750000px;}
.h0_c01361{height:1264.110000px;}
.w0_c01361{width:893.869500px;}
.w1_c01361{width:894.000000px;}
.x0_c01361{left:0.000000px;}
.x1_c01361{left:126.336000px;}
.x2_c01361{left:127.558500px;}
.x3_c01361{left:196.455000px;}
.x4_c01361{left:370.329000px;}
@media print{
.v0_c01361{vertical-align:0.000000pt;}
.v1_c01361{vertical-align:16.117333pt;}
.ls0_c01361{letter-spacing:0.000000pt;}
.ws2_c01361{word-spacing:-0.063760pt;}
.ws3_c01361{word-spacing:0.000000pt;}
.ws0_c01361{word-spacing:20.722000pt;}
.ws1_c01361{word-spacing:22.316000pt;}
._5_c01361{margin-left:-33.474000pt;}
._3_c01361{margin-left:-31.880000pt;}
._2_c01361{margin-left:-3.180133pt;}
._4_c01361{width:1.594000pt;}
._6_c01361{width:25.551360pt;}
._1_c01361{width:28.451947pt;}
._0_c01361{width:1532.216560pt;}
.fs0_c01361{font-size:63.760000pt;}
.y0_c01361{bottom:0.000000pt;}
.y3_c01361{bottom:186.076000pt;}
.y2_c01361{bottom:1013.880000pt;}
.y1_c01361{bottom:1017.909333pt;}
.h2_c01361{height:47.820000pt;}
.h3_c01361{height:63.937333pt;}
.h1_c01361{height:1123.333333pt;}
.h0_c01361{height:1123.653333pt;}
.w0_c01361{width:794.550667pt;}
.w1_c01361{width:794.666667pt;}
.x0_c01361{left:0.000000pt;}
.x1_c01361{left:112.298667pt;}
.x2_c01361{left:113.385333pt;}
.x3_c01361{left:174.626667pt;}
.x4_c01361{left:329.181333pt;}
}





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

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





.ff0_c01362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01362;src:url('chunks/assets/font_f0430e2c5f3a88bdf61434fc.woff2')format("woff");}.ff1_c01362{font-family:ff1_c01362;line-height:1.001000;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_c01362;src:url('chunks/assets/font_91b1707b9e8ee5297eb943ec.woff2')format("woff");}.ff2_c01362{font-family:ff2_c01362;line-height:1.001000;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_c01362{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_c01362{vertical-align:0.000000px;}
.ls0_c01362{letter-spacing:0.000000px;}
.sc__c01362{text-shadow:none;}
.sc0_c01362{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__c01362{-webkit-text-stroke:0px transparent;}
.sc0_c01362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01362{word-spacing:-0.071730px;}
.ws3_c01362{word-spacing:0.000000px;}
.ws0_c01362{word-spacing:23.312250px;}
.ws1_c01362{word-spacing:25.033770px;}
._2_c01362{margin-left:-3.597780px;}
._1_c01362{margin-left:-2.080170px;}
._3_c01362{width:29.347020px;}
._0_c01362{width:1723.743630px;}
.fc0_c01362{color:rgb(0,0,0);}
.fs0_c01362{font-size:71.730000px;}
.y0_c01362{bottom:0.000000px;}
.y3_c01362{bottom:210.688500px;}
.y2_c01362{bottom:1140.615000px;}
.y1_c01362{bottom:1145.148000px;}
.h2_c01362{height:53.797500px;}
.h1_c01362{height:1263.750000px;}
.h0_c01362{height:1264.110000px;}
.w0_c01362{width:893.869500px;}
.w1_c01362{width:894.000000px;}
.x0_c01362{left:0.000000px;}
.x1_c01362{left:126.336000px;}
.x2_c01362{left:127.558500px;}
.x3_c01362{left:207.618000px;}
@media print{
.v0_c01362{vertical-align:0.000000pt;}
.ls0_c01362{letter-spacing:0.000000pt;}
.ws2_c01362{word-spacing:-0.063760pt;}
.ws3_c01362{word-spacing:0.000000pt;}
.ws0_c01362{word-spacing:20.722000pt;}
.ws1_c01362{word-spacing:22.252240pt;}
._2_c01362{margin-left:-3.198027pt;}
._1_c01362{margin-left:-1.849040pt;}
._3_c01362{width:26.086240pt;}
._0_c01362{width:1532.216560pt;}
.fs0_c01362{font-size:63.760000pt;}
.y0_c01362{bottom:0.000000pt;}
.y3_c01362{bottom:187.278667pt;}
.y2_c01362{bottom:1013.880000pt;}
.y1_c01362{bottom:1017.909333pt;}
.h2_c01362{height:47.820000pt;}
.h1_c01362{height:1123.333333pt;}
.h0_c01362{height:1123.653333pt;}
.w0_c01362{width:794.550667pt;}
.w1_c01362{width:794.666667pt;}
.x0_c01362{left:0.000000pt;}
.x1_c01362{left:112.298667pt;}
.x2_c01362{left:113.385333pt;}
.x3_c01362{left:184.549333pt;}
}





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

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





.ff0_c01363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01363;src:url('chunks/assets/font_338505d0719cc44a157b5360.woff2')format("woff");}.ff1_c01363{font-family:ff1_c01363;line-height:1.001000;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_c01363;src:url('chunks/assets/font_b8bc75b7ed5017d1e7359e51.woff2')format("woff");}.ff2_c01363{font-family:ff2_c01363;line-height:1.001000;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_c01363{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_c01363{vertical-align:0.000000px;}
.ls0_c01363{letter-spacing:0.000000px;}
.sc__c01363{text-shadow:none;}
.sc0_c01363{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__c01363{-webkit-text-stroke:0px transparent;}
.sc0_c01363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01363{word-spacing:-0.071730px;}
.ws3_c01363{word-spacing:0.000000px;}
.ws0_c01363{word-spacing:23.312250px;}
.ws1_c01363{word-spacing:24.962040px;}
._1_c01363{margin-left:-2.080170px;}
._2_c01363{width:29.153400px;}
._0_c01363{width:1723.743630px;}
.fc0_c01363{color:rgb(0,0,0);}
.fs0_c01363{font-size:71.730000px;}
.y0_c01363{bottom:0.000000px;}
.y3_c01363{bottom:318.588000px;}
.y2_c01363{bottom:1140.615000px;}
.y1_c01363{bottom:1145.148000px;}
.h2_c01363{height:53.797500px;}
.h1_c01363{height:1263.750000px;}
.h0_c01363{height:1264.110000px;}
.w0_c01363{width:893.869500px;}
.w1_c01363{width:894.000000px;}
.x0_c01363{left:0.000000px;}
.x1_c01363{left:126.336000px;}
.x2_c01363{left:127.558500px;}
.x3_c01363{left:230.433000px;}
@media print{
.v0_c01363{vertical-align:0.000000pt;}
.ls0_c01363{letter-spacing:0.000000pt;}
.ws2_c01363{word-spacing:-0.063760pt;}
.ws3_c01363{word-spacing:0.000000pt;}
.ws0_c01363{word-spacing:20.722000pt;}
.ws1_c01363{word-spacing:22.188480pt;}
._1_c01363{margin-left:-1.849040pt;}
._2_c01363{width:25.914133pt;}
._0_c01363{width:1532.216560pt;}
.fs0_c01363{font-size:63.760000pt;}
.y0_c01363{bottom:0.000000pt;}
.y3_c01363{bottom:283.189333pt;}
.y2_c01363{bottom:1013.880000pt;}
.y1_c01363{bottom:1017.909333pt;}
.h2_c01363{height:47.820000pt;}
.h1_c01363{height:1123.333333pt;}
.h0_c01363{height:1123.653333pt;}
.w0_c01363{width:794.550667pt;}
.w1_c01363{width:794.666667pt;}
.x0_c01363{left:0.000000pt;}
.x1_c01363{left:112.298667pt;}
.x2_c01363{left:113.385333pt;}
.x3_c01363{left:204.829333pt;}
}





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

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





.ff0_c01364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01364;src:url('chunks/assets/font_3edbcdff7f176f753b54dc5a.woff2')format("woff");}.ff1_c01364{font-family:ff1_c01364;line-height:1.001000;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_c01364;src:url('chunks/assets/font_7d09d27e52577385dca19635.woff2')format("woff");}.ff2_c01364{font-family:ff2_c01364;line-height:1.001000;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_c01364{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_c01364{vertical-align:0.000000px;}
.ls0_c01364{letter-spacing:0.000000px;}
.sc__c01364{text-shadow:none;}
.sc0_c01364{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__c01364{-webkit-text-stroke:0px transparent;}
.sc0_c01364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01364{word-spacing:-0.071730px;}
.ws3_c01364{word-spacing:0.000000px;}
.ws0_c01364{word-spacing:23.312250px;}
.ws1_c01364{word-spacing:25.033770px;}
._4_c01364{margin-left:-35.841420px;}
._2_c01364{margin-left:-33.210990px;}
._3_c01364{margin-left:-5.738400px;}
._1_c01364{margin-left:-2.151900px;}
._5_c01364{width:34.744890px;}
._0_c01364{width:1723.743630px;}
.fc0_c01364{color:rgb(0,0,0);}
.fs0_c01364{font-size:71.730000px;}
.y0_c01364{bottom:0.000000px;}
.y3_c01364{bottom:97.516500px;}
.y2_c01364{bottom:1140.615000px;}
.y1_c01364{bottom:1145.148000px;}
.h2_c01364{height:53.797500px;}
.h1_c01364{height:1263.750000px;}
.h0_c01364{height:1264.110000px;}
.w0_c01364{width:893.869500px;}
.w1_c01364{width:894.000000px;}
.x0_c01364{left:0.000000px;}
.x1_c01364{left:126.336000px;}
.x2_c01364{left:127.558500px;}
.x3_c01364{left:236.536500px;}
@media print{
.v0_c01364{vertical-align:0.000000pt;}
.ls0_c01364{letter-spacing:0.000000pt;}
.ws2_c01364{word-spacing:-0.063760pt;}
.ws3_c01364{word-spacing:0.000000pt;}
.ws0_c01364{word-spacing:20.722000pt;}
.ws1_c01364{word-spacing:22.252240pt;}
._4_c01364{margin-left:-31.859040pt;}
._2_c01364{margin-left:-29.520880pt;}
._3_c01364{margin-left:-5.100800pt;}
._1_c01364{margin-left:-1.912800pt;}
._5_c01364{width:30.884347pt;}
._0_c01364{width:1532.216560pt;}
.fs0_c01364{font-size:63.760000pt;}
.y0_c01364{bottom:0.000000pt;}
.y3_c01364{bottom:86.681333pt;}
.y2_c01364{bottom:1013.880000pt;}
.y1_c01364{bottom:1017.909333pt;}
.h2_c01364{height:47.820000pt;}
.h1_c01364{height:1123.333333pt;}
.h0_c01364{height:1123.653333pt;}
.w0_c01364{width:794.550667pt;}
.w1_c01364{width:794.666667pt;}
.x0_c01364{left:0.000000pt;}
.x1_c01364{left:112.298667pt;}
.x2_c01364{left:113.385333pt;}
.x3_c01364{left:210.254667pt;}
}





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

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





.ff0_c01365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01365;src:url('chunks/assets/font_bad0d5cc32e614ca1a380921.woff2')format("woff");}.ff1_c01365{font-family:ff1_c01365;line-height:1.001000;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_c01365;src:url('chunks/assets/font_a4294f6e6e63e604222ef565.woff2')format("woff");}.ff2_c01365{font-family:ff2_c01365;line-height:1.001000;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_c01365{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_c01365{vertical-align:0.000000px;}
.ls0_c01365{letter-spacing:0.000000px;}
.sc__c01365{text-shadow:none;}
.sc0_c01365{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__c01365{-webkit-text-stroke:0px transparent;}
.sc0_c01365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01365{word-spacing:-0.071730px;}
.ws3_c01365{word-spacing:0.000000px;}
.ws0_c01365{word-spacing:23.312250px;}
.ws1_c01365{word-spacing:25.033770px;}
._2_c01365{margin-left:-33.210990px;}
._3_c01365{margin-left:-5.738400px;}
._4_c01365{margin-left:-3.556920px;}
._1_c01365{margin-left:-2.151900px;}
._5_c01365{width:29.252190px;}
._0_c01365{width:1723.743630px;}
.fc0_c01365{color:rgb(0,0,0);}
.fs0_c01365{font-size:71.730000px;}
.y0_c01365{bottom:0.000000px;}
.y3_c01365{bottom:271.150500px;}
.y2_c01365{bottom:1140.615000px;}
.y1_c01365{bottom:1145.148000px;}
.h2_c01365{height:53.797500px;}
.h1_c01365{height:1263.750000px;}
.h0_c01365{height:1264.110000px;}
.w0_c01365{width:893.869500px;}
.w1_c01365{width:894.000000px;}
.x0_c01365{left:0.000000px;}
.x1_c01365{left:126.336000px;}
.x2_c01365{left:127.558500px;}
.x3_c01365{left:187.509000px;}
@media print{
.v0_c01365{vertical-align:0.000000pt;}
.ls0_c01365{letter-spacing:0.000000pt;}
.ws2_c01365{word-spacing:-0.063760pt;}
.ws3_c01365{word-spacing:0.000000pt;}
.ws0_c01365{word-spacing:20.722000pt;}
.ws1_c01365{word-spacing:22.252240pt;}
._2_c01365{margin-left:-29.520880pt;}
._3_c01365{margin-left:-5.100800pt;}
._4_c01365{margin-left:-3.161707pt;}
._1_c01365{margin-left:-1.912800pt;}
._5_c01365{width:26.001947pt;}
._0_c01365{width:1532.216560pt;}
.fs0_c01365{font-size:63.760000pt;}
.y0_c01365{bottom:0.000000pt;}
.y3_c01365{bottom:241.022667pt;}
.y2_c01365{bottom:1013.880000pt;}
.y1_c01365{bottom:1017.909333pt;}
.h2_c01365{height:47.820000pt;}
.h1_c01365{height:1123.333333pt;}
.h0_c01365{height:1123.653333pt;}
.w0_c01365{width:794.550667pt;}
.w1_c01365{width:794.666667pt;}
.x0_c01365{left:0.000000pt;}
.x1_c01365{left:112.298667pt;}
.x2_c01365{left:113.385333pt;}
.x3_c01365{left:166.674667pt;}
}





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

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





.ff0_c01366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01366;src:url('chunks/assets/font_edb346ba017d361f8bb108d6.woff2')format("woff");}.ff1_c01366{font-family:ff1_c01366;line-height:1.001000;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_c01366;src:url('chunks/assets/font_c3dfd600d862fa3e63d7c215.woff2')format("woff");}.ff2_c01366{font-family:ff2_c01366;line-height:1.001000;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_c01366{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_c01366{vertical-align:0.000000px;}
.ls0_c01366{letter-spacing:0.000000px;}
.sc__c01366{text-shadow:none;}
.sc0_c01366{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__c01366{-webkit-text-stroke:0px transparent;}
.sc0_c01366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01366{word-spacing:-0.071730px;}
.ws3_c01366{word-spacing:0.000000px;}
.ws0_c01366{word-spacing:23.312250px;}
.ws1_c01366{word-spacing:25.033770px;}
._1_c01366{margin-left:-3.649500px;}
._2_c01366{width:28.781790px;}
._0_c01366{width:1723.743630px;}
.fc0_c01366{color:rgb(0,0,0);}
.fs0_c01366{font-size:71.730000px;}
.y0_c01366{bottom:0.000000px;}
.y3_c01366{bottom:113.910000px;}
.y2_c01366{bottom:1140.615000px;}
.y1_c01366{bottom:1145.148000px;}
.h2_c01366{height:53.797500px;}
.h1_c01366{height:1263.750000px;}
.h0_c01366{height:1264.110000px;}
.w0_c01366{width:893.869500px;}
.w1_c01366{width:894.000000px;}
.x0_c01366{left:0.000000px;}
.x1_c01366{left:126.336000px;}
.x2_c01366{left:127.558500px;}
.x3_c01366{left:217.423500px;}
@media print{
.v0_c01366{vertical-align:0.000000pt;}
.ls0_c01366{letter-spacing:0.000000pt;}
.ws2_c01366{word-spacing:-0.063760pt;}
.ws3_c01366{word-spacing:0.000000pt;}
.ws0_c01366{word-spacing:20.722000pt;}
.ws1_c01366{word-spacing:22.252240pt;}
._1_c01366{margin-left:-3.244000pt;}
._2_c01366{width:25.583813pt;}
._0_c01366{width:1532.216560pt;}
.fs0_c01366{font-size:63.760000pt;}
.y0_c01366{bottom:0.000000pt;}
.y3_c01366{bottom:101.253333pt;}
.y2_c01366{bottom:1013.880000pt;}
.y1_c01366{bottom:1017.909333pt;}
.h2_c01366{height:47.820000pt;}
.h1_c01366{height:1123.333333pt;}
.h0_c01366{height:1123.653333pt;}
.w0_c01366{width:794.550667pt;}
.w1_c01366{width:794.666667pt;}
.x0_c01366{left:0.000000pt;}
.x1_c01366{left:112.298667pt;}
.x2_c01366{left:113.385333pt;}
.x3_c01366{left:193.265333pt;}
}





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

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





.ff0_c01367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01367;src:url('chunks/assets/font_21f40ed4913e500e0472f3d8.woff2')format("woff");}.ff1_c01367{font-family:ff1_c01367;line-height:1.001000;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_c01367;src:url('chunks/assets/font_195f967a81814b4fb9e77086.woff2')format("woff");}.ff2_c01367{font-family:ff2_c01367;line-height:1.001000;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_c01367{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_c01367{vertical-align:0.000000px;}
.ls0_c01367{letter-spacing:0.000000px;}
.sc__c01367{text-shadow:none;}
.sc0_c01367{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__c01367{-webkit-text-stroke:0px transparent;}
.sc0_c01367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01367{word-spacing:-0.071730px;}
.ws3_c01367{word-spacing:0.000000px;}
.ws0_c01367{word-spacing:23.312250px;}
.ws1_c01367{word-spacing:24.962040px;}
._1_c01367{width:30.828030px;}
._0_c01367{width:1723.743630px;}
.fc0_c01367{color:rgb(0,0,0);}
.fs0_c01367{font-size:71.730000px;}
.y0_c01367{bottom:0.000000px;}
.y3_c01367{bottom:152.229000px;}
.y2_c01367{bottom:1140.615000px;}
.y1_c01367{bottom:1145.148000px;}
.h2_c01367{height:53.797500px;}
.h1_c01367{height:1263.750000px;}
.h0_c01367{height:1264.110000px;}
.w0_c01367{width:893.869500px;}
.w1_c01367{width:894.000000px;}
.x0_c01367{left:0.000000px;}
.x1_c01367{left:126.336000px;}
.x2_c01367{left:127.558500px;}
.x3_c01367{left:247.537500px;}
@media print{
.v0_c01367{vertical-align:0.000000pt;}
.ls0_c01367{letter-spacing:0.000000pt;}
.ws2_c01367{word-spacing:-0.063760pt;}
.ws3_c01367{word-spacing:0.000000pt;}
.ws0_c01367{word-spacing:20.722000pt;}
.ws1_c01367{word-spacing:22.188480pt;}
._1_c01367{width:27.402693pt;}
._0_c01367{width:1532.216560pt;}
.fs0_c01367{font-size:63.760000pt;}
.y0_c01367{bottom:0.000000pt;}
.y3_c01367{bottom:135.314667pt;}
.y2_c01367{bottom:1013.880000pt;}
.y1_c01367{bottom:1017.909333pt;}
.h2_c01367{height:47.820000pt;}
.h1_c01367{height:1123.333333pt;}
.h0_c01367{height:1123.653333pt;}
.w0_c01367{width:794.550667pt;}
.w1_c01367{width:794.666667pt;}
.x0_c01367{left:0.000000pt;}
.x1_c01367{left:112.298667pt;}
.x2_c01367{left:113.385333pt;}
.x3_c01367{left:220.033333pt;}
}





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

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





.ff0_c01368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01368;src:url('chunks/assets/font_fc802549db4446238b12ba29.woff2')format("woff");}.ff1_c01368{font-family:ff1_c01368;line-height:1.001000;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_c01368{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_c01368{vertical-align:0.000000px;}
.ls0_c01368{letter-spacing:0.000000px;}
.sc__c01368{text-shadow:none;}
.sc0_c01368{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__c01368{-webkit-text-stroke:0px transparent;}
.sc0_c01368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01368{word-spacing:-0.071730px;}
.ws3_c01368{word-spacing:0.000000px;}
.ws0_c01368{word-spacing:23.312250px;}
.ws1_c01368{word-spacing:28.118160px;}
._2_c01368{margin-left:-35.291160px;}
._1_c01368{margin-left:-2.151900px;}
._0_c01368{width:1723.743630px;}
.fc0_c01368{color:rgb(0,0,0);}
.fs0_c01368{font-size:71.730000px;}
.y0_c01368{bottom:0.000000px;}
.y4_c01368{bottom:132.762000px;}
.y3_c01368{bottom:154.431000px;}
.y2_c01368{bottom:1140.615000px;}
.y1_c01368{bottom:1145.148000px;}
.h2_c01368{height:53.797500px;}
.h1_c01368{height:1263.750000px;}
.h0_c01368{height:1264.110000px;}
.w0_c01368{width:893.869500px;}
.w1_c01368{width:894.000000px;}
.x0_c01368{left:0.000000px;}
.x1_c01368{left:126.336000px;}
.x2_c01368{left:127.558500px;}
@media print{
.v0_c01368{vertical-align:0.000000pt;}
.ls0_c01368{letter-spacing:0.000000pt;}
.ws2_c01368{word-spacing:-0.063760pt;}
.ws3_c01368{word-spacing:0.000000pt;}
.ws0_c01368{word-spacing:20.722000pt;}
.ws1_c01368{word-spacing:24.993920pt;}
._2_c01368{margin-left:-31.369920pt;}
._1_c01368{margin-left:-1.912800pt;}
._0_c01368{width:1532.216560pt;}
.fs0_c01368{font-size:63.760000pt;}
.y0_c01368{bottom:0.000000pt;}
.y4_c01368{bottom:118.010667pt;}
.y3_c01368{bottom:137.272000pt;}
.y2_c01368{bottom:1013.880000pt;}
.y1_c01368{bottom:1017.909333pt;}
.h2_c01368{height:47.820000pt;}
.h1_c01368{height:1123.333333pt;}
.h0_c01368{height:1123.653333pt;}
.w0_c01368{width:794.550667pt;}
.w1_c01368{width:794.666667pt;}
.x0_c01368{left:0.000000pt;}
.x1_c01368{left:112.298667pt;}
.x2_c01368{left:113.385333pt;}
}





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

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





.ff0_c01369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01369;src:url('chunks/assets/font_95d3e3c6d907ba1cfd252a73.woff2')format("woff");}.ff1_c01369{font-family:ff1_c01369;line-height:1.001000;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_c01369;src:url('chunks/assets/font_aa2b325abcf2b91e7ef68371.woff2')format("woff");}.ff2_c01369{font-family:ff2_c01369;line-height:1.001000;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_c01369{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_c01369{vertical-align:0.000000px;}
.ls0_c01369{letter-spacing:0.000000px;}
.sc__c01369{text-shadow:none;}
.sc0_c01369{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__c01369{-webkit-text-stroke:0px transparent;}
.sc0_c01369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01369{word-spacing:-0.071730px;}
.ws3_c01369{word-spacing:0.000000px;}
.ws0_c01369{word-spacing:23.312250px;}
.ws1_c01369{word-spacing:25.033770px;}
._5_c01369{margin-left:-33.354450px;}
._2_c01369{margin-left:-5.810130px;}
._4_c01369{margin-left:-3.586500px;}
._1_c01369{margin-left:-2.151900px;}
._3_c01369{width:3.574050px;}
._6_c01369{width:23.426580px;}
._0_c01369{width:1723.743630px;}
.fc0_c01369{color:rgb(0,0,0);}
.fs0_c01369{font-size:71.730000px;}
.y0_c01369{bottom:0.000000px;}
.y3_c01369{bottom:167.226000px;}
.y2_c01369{bottom:1140.615000px;}
.y1_c01369{bottom:1145.148000px;}
.h2_c01369{height:53.797500px;}
.h1_c01369{height:1263.750000px;}
.h0_c01369{height:1264.110000px;}
.w0_c01369{width:893.869500px;}
.w1_c01369{width:894.000000px;}
.x0_c01369{left:0.000000px;}
.x1_c01369{left:126.336000px;}
.x2_c01369{left:127.558500px;}
.x3_c01369{left:131.634000px;}
@media print{
.v0_c01369{vertical-align:0.000000pt;}
.ls0_c01369{letter-spacing:0.000000pt;}
.ws2_c01369{word-spacing:-0.063760pt;}
.ws3_c01369{word-spacing:0.000000pt;}
.ws0_c01369{word-spacing:20.722000pt;}
.ws1_c01369{word-spacing:22.252240pt;}
._5_c01369{margin-left:-29.648400pt;}
._2_c01369{margin-left:-5.164560pt;}
._4_c01369{margin-left:-3.188000pt;}
._1_c01369{margin-left:-1.912800pt;}
._3_c01369{width:3.176933pt;}
._6_c01369{width:20.823627pt;}
._0_c01369{width:1532.216560pt;}
.fs0_c01369{font-size:63.760000pt;}
.y0_c01369{bottom:0.000000pt;}
.y3_c01369{bottom:148.645333pt;}
.y2_c01369{bottom:1013.880000pt;}
.y1_c01369{bottom:1017.909333pt;}
.h2_c01369{height:47.820000pt;}
.h1_c01369{height:1123.333333pt;}
.h0_c01369{height:1123.653333pt;}
.w0_c01369{width:794.550667pt;}
.w1_c01369{width:794.666667pt;}
.x0_c01369{left:0.000000pt;}
.x1_c01369{left:112.298667pt;}
.x2_c01369{left:113.385333pt;}
.x3_c01369{left:117.008000pt;}
}





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

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





.ff0_c01370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01370;src:url('chunks/assets/font_89a9f0b2e2b200231ac78977.woff2')format("woff");}.ff1_c01370{font-family:ff1_c01370;line-height:1.001000;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_c01370;src:url('chunks/assets/font_d2faef696ce3bd5466f3fcb4.woff2')format("woff");}.ff2_c01370{font-family:ff2_c01370;line-height:1.001000;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_c01370{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_c01370{vertical-align:0.000000px;}
.ls0_c01370{letter-spacing:0.000000px;}
.sc__c01370{text-shadow:none;}
.sc0_c01370{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__c01370{-webkit-text-stroke:0px transparent;}
.sc0_c01370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01370{word-spacing:-0.071730px;}
.ws3_c01370{word-spacing:0.000000px;}
.ws0_c01370{word-spacing:23.312250px;}
.ws1_c01370{word-spacing:25.033770px;}
._4_c01370{margin-left:-35.865000px;}
._3_c01370{margin-left:-34.071750px;}
._1_c01370{margin-left:-5.511480px;}
._5_c01370{margin-left:-3.586500px;}
._2_c01370{margin-left:-1.793250px;}
._6_c01370{width:27.794760px;}
._0_c01370{width:1723.743630px;}
.fc0_c01370{color:rgb(0,0,0);}
.fs0_c01370{font-size:71.730000px;}
.y0_c01370{bottom:0.000000px;}
.y3_c01370{bottom:341.578500px;}
.y2_c01370{bottom:1140.615000px;}
.y1_c01370{bottom:1145.148000px;}
.h2_c01370{height:53.797500px;}
.h1_c01370{height:1263.750000px;}
.h0_c01370{height:1264.110000px;}
.w0_c01370{width:893.869500px;}
.w1_c01370{width:894.000000px;}
.x0_c01370{left:0.000000px;}
.x1_c01370{left:126.336000px;}
.x2_c01370{left:127.558500px;}
.x3_c01370{left:160.960500px;}
@media print{
.v0_c01370{vertical-align:0.000000pt;}
.ls0_c01370{letter-spacing:0.000000pt;}
.ws2_c01370{word-spacing:-0.063760pt;}
.ws3_c01370{word-spacing:0.000000pt;}
.ws0_c01370{word-spacing:20.722000pt;}
.ws1_c01370{word-spacing:22.252240pt;}
._4_c01370{margin-left:-31.880000pt;}
._3_c01370{margin-left:-30.286000pt;}
._1_c01370{margin-left:-4.899093pt;}
._5_c01370{margin-left:-3.188000pt;}
._2_c01370{margin-left:-1.594000pt;}
._6_c01370{width:24.706453pt;}
._0_c01370{width:1532.216560pt;}
.fs0_c01370{font-size:63.760000pt;}
.y0_c01370{bottom:0.000000pt;}
.y3_c01370{bottom:303.625333pt;}
.y2_c01370{bottom:1013.880000pt;}
.y1_c01370{bottom:1017.909333pt;}
.h2_c01370{height:47.820000pt;}
.h1_c01370{height:1123.333333pt;}
.h0_c01370{height:1123.653333pt;}
.w0_c01370{width:794.550667pt;}
.w1_c01370{width:794.666667pt;}
.x0_c01370{left:0.000000pt;}
.x1_c01370{left:112.298667pt;}
.x2_c01370{left:113.385333pt;}
.x3_c01370{left:143.076000pt;}
}





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

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





.ff0_c01371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01371;src:url('chunks/assets/font_47d82a03c81a8817b615f739.woff2')format("woff");}.ff1_c01371{font-family:ff1_c01371;line-height:1.001000;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_c01371;src:url('chunks/assets/font_bccf96c1b1fbfea93498defa.woff2')format("woff");}.ff2_c01371{font-family:ff2_c01371;line-height:1.001000;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_c01371{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_c01371{vertical-align:0.000000px;}
.ls0_c01371{letter-spacing:0.000000px;}
.sc__c01371{text-shadow:none;}
.sc0_c01371{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__c01371{-webkit-text-stroke:0px transparent;}
.sc0_c01371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01371{word-spacing:-0.071730px;}
.ws3_c01371{word-spacing:0.000000px;}
.ws0_c01371{word-spacing:23.312250px;}
.ws1_c01371{word-spacing:25.033770px;}
._2_c01371{margin-left:-33.210990px;}
._3_c01371{margin-left:-5.308560px;}
._1_c01371{margin-left:-2.151900px;}
._4_c01371{width:33.227010px;}
._0_c01371{width:1723.743630px;}
.fc0_c01371{color:rgb(0,0,0);}
.fs0_c01371{font-size:71.730000px;}
.y0_c01371{bottom:0.000000px;}
.y3_c01371{bottom:225.312000px;}
.y2_c01371{bottom:1140.615000px;}
.y1_c01371{bottom:1145.148000px;}
.h2_c01371{height:53.797500px;}
.h1_c01371{height:1263.750000px;}
.h0_c01371{height:1264.110000px;}
.w0_c01371{width:893.869500px;}
.w1_c01371{width:894.000000px;}
.x0_c01371{left:0.000000px;}
.x1_c01371{left:126.336000px;}
.x2_c01371{left:127.558500px;}
.x3_c01371{left:175.758000px;}
@media print{
.v0_c01371{vertical-align:0.000000pt;}
.ls0_c01371{letter-spacing:0.000000pt;}
.ws2_c01371{word-spacing:-0.063760pt;}
.ws3_c01371{word-spacing:0.000000pt;}
.ws0_c01371{word-spacing:20.722000pt;}
.ws1_c01371{word-spacing:22.252240pt;}
._2_c01371{margin-left:-29.520880pt;}
._3_c01371{margin-left:-4.718720pt;}
._1_c01371{margin-left:-1.912800pt;}
._4_c01371{width:29.535120pt;}
._0_c01371{width:1532.216560pt;}
.fs0_c01371{font-size:63.760000pt;}
.y0_c01371{bottom:0.000000pt;}
.y3_c01371{bottom:200.277333pt;}
.y2_c01371{bottom:1013.880000pt;}
.y1_c01371{bottom:1017.909333pt;}
.h2_c01371{height:47.820000pt;}
.h1_c01371{height:1123.333333pt;}
.h0_c01371{height:1123.653333pt;}
.w0_c01371{width:794.550667pt;}
.w1_c01371{width:794.666667pt;}
.x0_c01371{left:0.000000pt;}
.x1_c01371{left:112.298667pt;}
.x2_c01371{left:113.385333pt;}
.x3_c01371{left:156.229333pt;}
}





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

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





.ff0_c01372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01372;src:url('chunks/assets/font_c8bd8c62523e3820f189afba.woff2')format("woff");}.ff1_c01372{font-family:ff1_c01372;line-height:1.001000;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_c01372;src:url('chunks/assets/font_495c4d2c83626932ba71431e.woff2')format("woff");}.ff2_c01372{font-family:ff2_c01372;line-height:1.001000;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_c01372{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_c01372{vertical-align:0.000000px;}
.ls0_c01372{letter-spacing:0.000000px;}
.sc__c01372{text-shadow:none;}
.sc0_c01372{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__c01372{-webkit-text-stroke:0px transparent;}
.sc0_c01372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01372{word-spacing:-0.071730px;}
.ws4_c01372{word-spacing:0.000000px;}
.ws0_c01372{word-spacing:23.312250px;}
.ws1_c01372{word-spacing:23.383980px;}
.ws2_c01372{word-spacing:25.033770px;}
._2_c01372{margin-left:-5.402190px;}
._3_c01372{margin-left:-3.586500px;}
._1_c01372{margin-left:-2.367090px;}
._4_c01372{width:31.147770px;}
._0_c01372{width:1723.743630px;}
.fc0_c01372{color:rgb(0,0,0);}
.fs0_c01372{font-size:71.730000px;}
.y0_c01372{bottom:0.000000px;}
.y3_c01372{bottom:231.301500px;}
.y2_c01372{bottom:1140.615000px;}
.y1_c01372{bottom:1145.148000px;}
.h2_c01372{height:53.797500px;}
.h1_c01372{height:1263.750000px;}
.h0_c01372{height:1264.110000px;}
.w0_c01372{width:893.869500px;}
.w1_c01372{width:894.000000px;}
.x0_c01372{left:0.000000px;}
.x1_c01372{left:126.336000px;}
.x2_c01372{left:127.558500px;}
.x3_c01372{left:216.856500px;}
@media print{
.v0_c01372{vertical-align:0.000000pt;}
.ls0_c01372{letter-spacing:0.000000pt;}
.ws3_c01372{word-spacing:-0.063760pt;}
.ws4_c01372{word-spacing:0.000000pt;}
.ws0_c01372{word-spacing:20.722000pt;}
.ws1_c01372{word-spacing:20.785760pt;}
.ws2_c01372{word-spacing:22.252240pt;}
._2_c01372{margin-left:-4.801947pt;}
._3_c01372{margin-left:-3.188000pt;}
._1_c01372{margin-left:-2.104080pt;}
._4_c01372{width:27.686907pt;}
._0_c01372{width:1532.216560pt;}
.fs0_c01372{font-size:63.760000pt;}
.y0_c01372{bottom:0.000000pt;}
.y3_c01372{bottom:205.601333pt;}
.y2_c01372{bottom:1013.880000pt;}
.y1_c01372{bottom:1017.909333pt;}
.h2_c01372{height:47.820000pt;}
.h1_c01372{height:1123.333333pt;}
.h0_c01372{height:1123.653333pt;}
.w0_c01372{width:794.550667pt;}
.w1_c01372{width:794.666667pt;}
.x0_c01372{left:0.000000pt;}
.x1_c01372{left:112.298667pt;}
.x2_c01372{left:113.385333pt;}
.x3_c01372{left:192.761333pt;}
}





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

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





.ff0_c01373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01373;src:url('chunks/assets/font_1a163cc6c1e704361b74716a.woff2')format("woff");}.ff1_c01373{font-family:ff1_c01373;line-height:1.001000;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_c01373;src:url('chunks/assets/font_1d28a68371397ed49b2c1fe6.woff2')format("woff");}.ff2_c01373{font-family:ff2_c01373;line-height:1.001000;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_c01373{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_c01373{vertical-align:0.000000px;}
.ls0_c01373{letter-spacing:0.000000px;}
.sc__c01373{text-shadow:none;}
.sc0_c01373{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__c01373{-webkit-text-stroke:0px transparent;}
.sc0_c01373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01373{word-spacing:-0.071730px;}
.ws4_c01373{word-spacing:0.000000px;}
.ws0_c01373{word-spacing:23.312250px;}
.ws1_c01373{word-spacing:23.342400px;}
.ws3_c01373{word-spacing:25.033770px;}
._3_c01373{margin-left:-28.692000px;}
._2_c01373{margin-left:-6.981990px;}
._1_c01373{margin-left:-2.151900px;}
._4_c01373{width:27.809250px;}
._0_c01373{width:1723.743630px;}
.fc0_c01373{color:rgb(0,0,0);}
.fs0_c01373{font-size:71.730000px;}
.y0_c01373{bottom:0.000000px;}
.y4_c01373{bottom:90.226500px;}
.y3_c01373{bottom:592.929000px;}
.y2_c01373{bottom:1140.615000px;}
.y1_c01373{bottom:1145.148000px;}
.h2_c01373{height:53.797500px;}
.h1_c01373{height:1263.750000px;}
.h0_c01373{height:1264.110000px;}
.w0_c01373{width:893.869500px;}
.w1_c01373{width:894.000000px;}
.x0_c01373{left:0.000000px;}
.x1_c01373{left:126.336000px;}
.x2_c01373{left:127.558500px;}
.x3_c01373{left:236.845500px;}
.x4_c01373{left:239.382000px;}
@media print{
.v0_c01373{vertical-align:0.000000pt;}
.ls0_c01373{letter-spacing:0.000000pt;}
.ws2_c01373{word-spacing:-0.063760pt;}
.ws4_c01373{word-spacing:0.000000pt;}
.ws0_c01373{word-spacing:20.722000pt;}
.ws1_c01373{word-spacing:20.748800pt;}
.ws3_c01373{word-spacing:22.252240pt;}
._3_c01373{margin-left:-25.504000pt;}
._2_c01373{margin-left:-6.206213pt;}
._1_c01373{margin-left:-1.912800pt;}
._4_c01373{width:24.719333pt;}
._0_c01373{width:1532.216560pt;}
.fs0_c01373{font-size:63.760000pt;}
.y0_c01373{bottom:0.000000pt;}
.y4_c01373{bottom:80.201333pt;}
.y3_c01373{bottom:527.048000pt;}
.y2_c01373{bottom:1013.880000pt;}
.y1_c01373{bottom:1017.909333pt;}
.h2_c01373{height:47.820000pt;}
.h1_c01373{height:1123.333333pt;}
.h0_c01373{height:1123.653333pt;}
.w0_c01373{width:794.550667pt;}
.w1_c01373{width:794.666667pt;}
.x0_c01373{left:0.000000pt;}
.x1_c01373{left:112.298667pt;}
.x2_c01373{left:113.385333pt;}
.x3_c01373{left:210.529333pt;}
.x4_c01373{left:212.784000pt;}
}





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

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





.ff0_c01374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01374;src:url('chunks/assets/font_72bc8cdecee6167c753cec2e.woff2')format("woff");}.ff1_c01374{font-family:ff1_c01374;line-height:1.001000;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_c01374;src:url('chunks/assets/font_27ae8a49b7db799b5dd3d908.woff2')format("woff");}.ff2_c01374{font-family:ff2_c01374;line-height:1.001000;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_c01374{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_c01374{vertical-align:0.000000px;}
.ls0_c01374{letter-spacing:0.000000px;}
.sc__c01374{text-shadow:none;}
.sc0_c01374{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__c01374{-webkit-text-stroke:0px transparent;}
.sc0_c01374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01374{word-spacing:-0.071730px;}
.ws3_c01374{word-spacing:0.000000px;}
.ws0_c01374{word-spacing:23.312250px;}
.ws1_c01374{word-spacing:25.033770px;}
._3_c01374{margin-left:-35.865000px;}
._2_c01374{margin-left:-3.389490px;}
._1_c01374{margin-left:-2.151900px;}
._4_c01374{width:28.754010px;}
._0_c01374{width:1723.743630px;}
.fc0_c01374{color:rgb(0,0,0);}
.fs0_c01374{font-size:71.730000px;}
.y0_c01374{bottom:0.000000px;}
.y3_c01374{bottom:562.168500px;}
.y2_c01374{bottom:1140.615000px;}
.y1_c01374{bottom:1145.148000px;}
.h2_c01374{height:53.797500px;}
.h1_c01374{height:1263.750000px;}
.h0_c01374{height:1264.110000px;}
.w0_c01374{width:893.869500px;}
.w1_c01374{width:894.000000px;}
.x0_c01374{left:0.000000px;}
.x1_c01374{left:126.336000px;}
.x2_c01374{left:127.558500px;}
.x3_c01374{left:174.813000px;}
@media print{
.v0_c01374{vertical-align:0.000000pt;}
.ls0_c01374{letter-spacing:0.000000pt;}
.ws2_c01374{word-spacing:-0.063760pt;}
.ws3_c01374{word-spacing:0.000000pt;}
.ws0_c01374{word-spacing:20.722000pt;}
.ws1_c01374{word-spacing:22.252240pt;}
._3_c01374{margin-left:-31.880000pt;}
._2_c01374{margin-left:-3.012880pt;}
._1_c01374{margin-left:-1.912800pt;}
._4_c01374{width:25.559120pt;}
._0_c01374{width:1532.216560pt;}
.fs0_c01374{font-size:63.760000pt;}
.y0_c01374{bottom:0.000000pt;}
.y3_c01374{bottom:499.705333pt;}
.y2_c01374{bottom:1013.880000pt;}
.y1_c01374{bottom:1017.909333pt;}
.h2_c01374{height:47.820000pt;}
.h1_c01374{height:1123.333333pt;}
.h0_c01374{height:1123.653333pt;}
.w0_c01374{width:794.550667pt;}
.w1_c01374{width:794.666667pt;}
.x0_c01374{left:0.000000pt;}
.x1_c01374{left:112.298667pt;}
.x2_c01374{left:113.385333pt;}
.x3_c01374{left:155.389333pt;}
}





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

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





.ff0_c01375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01375;src:url('chunks/assets/font_28b60496ffda2c0652273e29.woff2')format("woff");}.ff1_c01375{font-family:ff1_c01375;line-height:1.001000;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_c01375;src:url('chunks/assets/font_8c53535dfe5c7de0af44f11a.woff2')format("woff");}.ff2_c01375{font-family:ff2_c01375;line-height:1.001000;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_c01375{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_c01375{vertical-align:0.000000px;}
.ls0_c01375{letter-spacing:0.000000px;}
.sc__c01375{text-shadow:none;}
.sc0_c01375{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__c01375{-webkit-text-stroke:0px transparent;}
.sc0_c01375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01375{word-spacing:-0.071730px;}
.ws3_c01375{word-spacing:0.000000px;}
.ws0_c01375{word-spacing:23.312250px;}
.ws1_c01375{word-spacing:25.033770px;}
._2_c01375{margin-left:-33.210990px;}
._3_c01375{margin-left:-5.738400px;}
._1_c01375{margin-left:-2.151900px;}
._4_c01375{width:30.729690px;}
._0_c01375{width:1723.743630px;}
.fc0_c01375{color:rgb(0,0,0);}
.fs0_c01375{font-size:71.730000px;}
.y0_c01375{bottom:0.000000px;}
.y3_c01375{bottom:234.492000px;}
.y2_c01375{bottom:1140.615000px;}
.y1_c01375{bottom:1145.148000px;}
.h2_c01375{height:53.797500px;}
.h1_c01375{height:1263.750000px;}
.h0_c01375{height:1264.110000px;}
.w0_c01375{width:893.869500px;}
.w1_c01375{width:894.000000px;}
.x0_c01375{left:0.000000px;}
.x1_c01375{left:126.336000px;}
.x2_c01375{left:127.558500px;}
.x3_c01375{left:141.228000px;}
@media print{
.v0_c01375{vertical-align:0.000000pt;}
.ls0_c01375{letter-spacing:0.000000pt;}
.ws2_c01375{word-spacing:-0.063760pt;}
.ws3_c01375{word-spacing:0.000000pt;}
.ws0_c01375{word-spacing:20.722000pt;}
.ws1_c01375{word-spacing:22.252240pt;}
._2_c01375{margin-left:-29.520880pt;}
._3_c01375{margin-left:-5.100800pt;}
._1_c01375{margin-left:-1.912800pt;}
._4_c01375{width:27.315280pt;}
._0_c01375{width:1532.216560pt;}
.fs0_c01375{font-size:63.760000pt;}
.y0_c01375{bottom:0.000000pt;}
.y3_c01375{bottom:208.437333pt;}
.y2_c01375{bottom:1013.880000pt;}
.y1_c01375{bottom:1017.909333pt;}
.h2_c01375{height:47.820000pt;}
.h1_c01375{height:1123.333333pt;}
.h0_c01375{height:1123.653333pt;}
.w0_c01375{width:794.550667pt;}
.w1_c01375{width:794.666667pt;}
.x0_c01375{left:0.000000pt;}
.x1_c01375{left:112.298667pt;}
.x2_c01375{left:113.385333pt;}
.x3_c01375{left:125.536000pt;}
}





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

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





.ff0_c01376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01376;src:url('chunks/assets/font_931e84b25c6a78ccbfba6f69.woff2')format("woff");}.ff1_c01376{font-family:ff1_c01376;line-height:1.001000;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_c01376;src:url('chunks/assets/font_8915712da10150dffd289c90.woff2')format("woff");}.ff2_c01376{font-family:ff2_c01376;line-height:1.001000;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_c01376{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_c01376{vertical-align:0.000000px;}
.ls0_c01376{letter-spacing:0.000000px;}
.sc__c01376{text-shadow:none;}
.sc0_c01376{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__c01376{-webkit-text-stroke:0px transparent;}
.sc0_c01376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01376{word-spacing:-0.071730px;}
.ws3_c01376{word-spacing:0.000000px;}
.ws0_c01376{word-spacing:23.312250px;}
.ws1_c01376{word-spacing:28.725900px;}
._2_c01376{margin-left:-33.210990px;}
._3_c01376{margin-left:-5.738400px;}
._4_c01376{margin-left:-3.693570px;}
._1_c01376{margin-left:-2.151900px;}
._0_c01376{width:1723.743630px;}
.fc0_c01376{color:rgb(0,0,0);}
.fs0_c01376{font-size:71.730000px;}
.y0_c01376{bottom:0.000000px;}
.y3_c01376{bottom:413.676000px;}
.y2_c01376{bottom:1140.615000px;}
.y1_c01376{bottom:1145.148000px;}
.h2_c01376{height:53.797500px;}
.h1_c01376{height:1263.750000px;}
.h0_c01376{height:1264.110000px;}
.w0_c01376{width:893.869500px;}
.w1_c01376{width:894.000000px;}
.x0_c01376{left:0.000000px;}
.x1_c01376{left:126.336000px;}
.x2_c01376{left:127.558500px;}
.x3_c01376{left:236.695500px;}
@media print{
.v0_c01376{vertical-align:0.000000pt;}
.ls0_c01376{letter-spacing:0.000000pt;}
.ws2_c01376{word-spacing:-0.063760pt;}
.ws3_c01376{word-spacing:0.000000pt;}
.ws0_c01376{word-spacing:20.722000pt;}
.ws1_c01376{word-spacing:25.534133pt;}
._2_c01376{margin-left:-29.520880pt;}
._3_c01376{margin-left:-5.100800pt;}
._4_c01376{margin-left:-3.283173pt;}
._1_c01376{margin-left:-1.912800pt;}
._0_c01376{width:1532.216560pt;}
.fs0_c01376{font-size:63.760000pt;}
.y0_c01376{bottom:0.000000pt;}
.y3_c01376{bottom:367.712000pt;}
.y2_c01376{bottom:1013.880000pt;}
.y1_c01376{bottom:1017.909333pt;}
.h2_c01376{height:47.820000pt;}
.h1_c01376{height:1123.333333pt;}
.h0_c01376{height:1123.653333pt;}
.w0_c01376{width:794.550667pt;}
.w1_c01376{width:794.666667pt;}
.x0_c01376{left:0.000000pt;}
.x1_c01376{left:112.298667pt;}
.x2_c01376{left:113.385333pt;}
.x3_c01376{left:210.396000pt;}
}





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

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





.ff0_c01377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01377;src:url('chunks/assets/font_1522bc3eba88aca66e93b938.woff2')format("woff");}.ff1_c01377{font-family:ff1_c01377;line-height:1.001000;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_c01377;src:url('chunks/assets/font_70b2173096b946fefe79c6da.woff2')format("woff");}.ff2_c01377{font-family:ff2_c01377;line-height:1.001000;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_c01377{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_c01377{vertical-align:0.000000px;}
.ls0_c01377{letter-spacing:0.000000px;}
.sc__c01377{text-shadow:none;}
.sc0_c01377{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__c01377{-webkit-text-stroke:0px transparent;}
.sc0_c01377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01377{word-spacing:-0.071730px;}
.ws3_c01377{word-spacing:0.000000px;}
.ws0_c01377{word-spacing:23.312250px;}
.ws1_c01377{word-spacing:28.732800px;}
._2_c01377{margin-left:-33.210990px;}
._3_c01377{margin-left:-5.738400px;}
._1_c01377{margin-left:-2.151900px;}
._0_c01377{width:1723.743630px;}
.fc0_c01377{color:rgb(0,0,0);}
.fs0_c01377{font-size:71.730000px;}
.y0_c01377{bottom:0.000000px;}
.y3_c01377{bottom:124.900500px;}
.y2_c01377{bottom:1140.615000px;}
.y1_c01377{bottom:1145.148000px;}
.h2_c01377{height:53.797500px;}
.h1_c01377{height:1263.750000px;}
.h0_c01377{height:1264.110000px;}
.w0_c01377{width:893.869500px;}
.w1_c01377{width:894.000000px;}
.x0_c01377{left:0.000000px;}
.x1_c01377{left:126.336000px;}
.x2_c01377{left:127.558500px;}
.x3_c01377{left:239.653500px;}
@media print{
.v0_c01377{vertical-align:0.000000pt;}
.ls0_c01377{letter-spacing:0.000000pt;}
.ws2_c01377{word-spacing:-0.063760pt;}
.ws3_c01377{word-spacing:0.000000pt;}
.ws0_c01377{word-spacing:20.722000pt;}
.ws1_c01377{word-spacing:25.540267pt;}
._2_c01377{margin-left:-29.520880pt;}
._3_c01377{margin-left:-5.100800pt;}
._1_c01377{margin-left:-1.912800pt;}
._0_c01377{width:1532.216560pt;}
.fs0_c01377{font-size:63.760000pt;}
.y0_c01377{bottom:0.000000pt;}
.y3_c01377{bottom:111.022667pt;}
.y2_c01377{bottom:1013.880000pt;}
.y1_c01377{bottom:1017.909333pt;}
.h2_c01377{height:47.820000pt;}
.h1_c01377{height:1123.333333pt;}
.h0_c01377{height:1123.653333pt;}
.w0_c01377{width:794.550667pt;}
.w1_c01377{width:794.666667pt;}
.x0_c01377{left:0.000000pt;}
.x1_c01377{left:112.298667pt;}
.x2_c01377{left:113.385333pt;}
.x3_c01377{left:213.025333pt;}
}





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

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





.ff0_c01378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01378;src:url('chunks/assets/font_5dfde66fb190f53050eb7e72.woff2')format("woff");}.ff1_c01378{font-family:ff1_c01378;line-height:1.001000;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_c01378;src:url('chunks/assets/font_b3b4647cb6713494f7ff6cd3.woff2')format("woff");}.ff2_c01378{font-family:ff2_c01378;line-height:1.001000;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_c01378{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_c01378{vertical-align:0.000000px;}
.ls0_c01378{letter-spacing:0.000000px;}
.sc__c01378{text-shadow:none;}
.sc0_c01378{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__c01378{-webkit-text-stroke:0px transparent;}
.sc0_c01378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01378{word-spacing:-0.071730px;}
.ws5_c01378{word-spacing:0.000000px;}
.ws0_c01378{word-spacing:23.312250px;}
.ws3_c01378{word-spacing:23.383980px;}
.ws1_c01378{word-spacing:25.033770px;}
.ws4_c01378{word-spacing:28.735800px;}
._6_c01378{margin-left:-35.936730px;}
._4_c01378{margin-left:-33.210990px;}
._5_c01378{margin-left:-3.623640px;}
._3_c01378{margin-left:-2.295360px;}
._1_c01378{width:1.793250px;}
._2_c01378{width:27.818130px;}
._0_c01378{width:1723.743630px;}
.fc0_c01378{color:rgb(0,0,0);}
.fs0_c01378{font-size:71.730000px;}
.y0_c01378{bottom:0.000000px;}
.y4_c01378{bottom:89.730000px;}
.y3_c01378{bottom:693.117000px;}
.y2_c01378{bottom:1140.615000px;}
.y1_c01378{bottom:1145.148000px;}
.h2_c01378{height:53.797500px;}
.h1_c01378{height:1263.750000px;}
.h0_c01378{height:1264.110000px;}
.w0_c01378{width:893.869500px;}
.w1_c01378{width:894.000000px;}
.x0_c01378{left:0.000000px;}
.x1_c01378{left:126.336000px;}
.x2_c01378{left:127.558500px;}
.x3_c01378{left:274.543500px;}
.x4_c01378{left:275.877000px;}
@media print{
.v0_c01378{vertical-align:0.000000pt;}
.ls0_c01378{letter-spacing:0.000000pt;}
.ws2_c01378{word-spacing:-0.063760pt;}
.ws5_c01378{word-spacing:0.000000pt;}
.ws0_c01378{word-spacing:20.722000pt;}
.ws3_c01378{word-spacing:20.785760pt;}
.ws1_c01378{word-spacing:22.252240pt;}
.ws4_c01378{word-spacing:25.542933pt;}
._6_c01378{margin-left:-31.943760pt;}
._4_c01378{margin-left:-29.520880pt;}
._5_c01378{margin-left:-3.221013pt;}
._3_c01378{margin-left:-2.040320pt;}
._1_c01378{width:1.594000pt;}
._2_c01378{width:24.727227pt;}
._0_c01378{width:1532.216560pt;}
.fs0_c01378{font-size:63.760000pt;}
.y0_c01378{bottom:0.000000pt;}
.y4_c01378{bottom:79.760000pt;}
.y3_c01378{bottom:616.104000pt;}
.y2_c01378{bottom:1013.880000pt;}
.y1_c01378{bottom:1017.909333pt;}
.h2_c01378{height:47.820000pt;}
.h1_c01378{height:1123.333333pt;}
.h0_c01378{height:1123.653333pt;}
.w0_c01378{width:794.550667pt;}
.w1_c01378{width:794.666667pt;}
.x0_c01378{left:0.000000pt;}
.x1_c01378{left:112.298667pt;}
.x2_c01378{left:113.385333pt;}
.x3_c01378{left:244.038667pt;}
.x4_c01378{left:245.224000pt;}
}





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

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





.ff0_c01379{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01379;src:url('chunks/assets/font_a3a5dc04c64e2da1b44aa0bc.woff2')format("woff");}.ff1_c01379{font-family:ff1_c01379;line-height:1.001000;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_c01379;src:url('chunks/assets/font_adcaac408af4c5e795452e98.woff2')format("woff");}.ff2_c01379{font-family:ff2_c01379;line-height:1.001000;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_c01379{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_c01379{vertical-align:0.000000px;}
.ls0_c01379{letter-spacing:0.000000px;}
.sc__c01379{text-shadow:none;}
.sc0_c01379{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__c01379{-webkit-text-stroke:0px transparent;}
.sc0_c01379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01379{word-spacing:-0.071730px;}
.ws3_c01379{word-spacing:0.000000px;}
.ws0_c01379{word-spacing:23.312250px;}
.ws1_c01379{word-spacing:25.105500px;}
._2_c01379{margin-left:-35.147700px;}
._3_c01379{margin-left:-3.629700px;}
._1_c01379{width:1.793250px;}
._4_c01379{width:27.773550px;}
._0_c01379{width:1723.743630px;}
.fc0_c01379{color:rgb(0,0,0);}
.fs0_c01379{font-size:71.730000px;}
.y0_c01379{bottom:0.000000px;}
.y3_c01379{bottom:255.658500px;}
.y2_c01379{bottom:1140.615000px;}
.y1_c01379{bottom:1145.148000px;}
.h2_c01379{height:53.797500px;}
.h1_c01379{height:1263.750000px;}
.h0_c01379{height:1264.110000px;}
.w0_c01379{width:893.869500px;}
.w1_c01379{width:894.000000px;}
.x0_c01379{left:0.000000px;}
.x1_c01379{left:126.336000px;}
.x2_c01379{left:127.558500px;}
.x3_c01379{left:179.637000px;}
@media print{
.v0_c01379{vertical-align:0.000000pt;}
.ls0_c01379{letter-spacing:0.000000pt;}
.ws2_c01379{word-spacing:-0.063760pt;}
.ws3_c01379{word-spacing:0.000000pt;}
.ws0_c01379{word-spacing:20.722000pt;}
.ws1_c01379{word-spacing:22.316000pt;}
._2_c01379{margin-left:-31.242400pt;}
._3_c01379{margin-left:-3.226400pt;}
._1_c01379{width:1.594000pt;}
._4_c01379{width:24.687600pt;}
._0_c01379{width:1532.216560pt;}
.fs0_c01379{font-size:63.760000pt;}
.y0_c01379{bottom:0.000000pt;}
.y3_c01379{bottom:227.252000pt;}
.y2_c01379{bottom:1013.880000pt;}
.y1_c01379{bottom:1017.909333pt;}
.h2_c01379{height:47.820000pt;}
.h1_c01379{height:1123.333333pt;}
.h0_c01379{height:1123.653333pt;}
.w0_c01379{width:794.550667pt;}
.w1_c01379{width:794.666667pt;}
.x0_c01379{left:0.000000pt;}
.x1_c01379{left:112.298667pt;}
.x2_c01379{left:113.385333pt;}
.x3_c01379{left:159.677333pt;}
}





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

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





.ff0_c01380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01380;src:url('chunks/assets/font_80392914dc06389bec650aaa.woff2')format("woff");}.ff1_c01380{font-family:ff1_c01380;line-height:1.001000;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_c01380;src:url('chunks/assets/font_c6413a9b60d5fb073e8c7cce.woff2')format("woff");}.ff2_c01380{font-family:ff2_c01380;line-height:1.001000;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_c01380{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_c01380{vertical-align:0.000000px;}
.ls0_c01380{letter-spacing:0.000000px;}
.sc__c01380{text-shadow:none;}
.sc0_c01380{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__c01380{-webkit-text-stroke:0px transparent;}
.sc0_c01380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01380{word-spacing:-0.071730px;}
.ws3_c01380{word-spacing:0.000000px;}
.ws0_c01380{word-spacing:23.312250px;}
.ws1_c01380{word-spacing:27.763050px;}
._2_c01380{margin-left:-35.147700px;}
._4_c01380{margin-left:-3.658230px;}
._3_c01380{margin-left:-1.764720px;}
._1_c01380{width:1.793250px;}
._0_c01380{width:1723.743630px;}
.fc0_c01380{color:rgb(0,0,0);}
.fs0_c01380{font-size:71.730000px;}
.y0_c01380{bottom:0.000000px;}
.y3_c01380{bottom:130.989000px;}
.y2_c01380{bottom:1140.615000px;}
.y1_c01380{bottom:1145.148000px;}
.h2_c01380{height:53.797500px;}
.h1_c01380{height:1263.750000px;}
.h0_c01380{height:1264.110000px;}
.w0_c01380{width:893.869500px;}
.w1_c01380{width:894.000000px;}
.x0_c01380{left:0.000000px;}
.x1_c01380{left:126.336000px;}
.x2_c01380{left:127.558500px;}
.x3_c01380{left:241.954500px;}
@media print{
.v0_c01380{vertical-align:0.000000pt;}
.ls0_c01380{letter-spacing:0.000000pt;}
.ws2_c01380{word-spacing:-0.063760pt;}
.ws3_c01380{word-spacing:0.000000pt;}
.ws0_c01380{word-spacing:20.722000pt;}
.ws1_c01380{word-spacing:24.678267pt;}
._2_c01380{margin-left:-31.242400pt;}
._4_c01380{margin-left:-3.251760pt;}
._3_c01380{margin-left:-1.568640pt;}
._1_c01380{width:1.594000pt;}
._0_c01380{width:1532.216560pt;}
.fs0_c01380{font-size:63.760000pt;}
.y0_c01380{bottom:0.000000pt;}
.y3_c01380{bottom:116.434667pt;}
.y2_c01380{bottom:1013.880000pt;}
.y1_c01380{bottom:1017.909333pt;}
.h2_c01380{height:47.820000pt;}
.h1_c01380{height:1123.333333pt;}
.h0_c01380{height:1123.653333pt;}
.w0_c01380{width:794.550667pt;}
.w1_c01380{width:794.666667pt;}
.x0_c01380{left:0.000000pt;}
.x1_c01380{left:112.298667pt;}
.x2_c01380{left:113.385333pt;}
.x3_c01380{left:215.070667pt;}
}





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

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





.ff0_c01381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01381;src:url('chunks/assets/font_8b146a753bbad1172c1bc4cc.woff2')format("woff");}.ff1_c01381{font-family:ff1_c01381;line-height:1.001000;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_c01381;src:url('chunks/assets/font_668f7220785936074c93e83a.woff2')format("woff");}.ff2_c01381{font-family:ff2_c01381;line-height:1.001000;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_c01381{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_c01381{vertical-align:0.000000px;}
.ls0_c01381{letter-spacing:0.000000px;}
.sc__c01381{text-shadow:none;}
.sc0_c01381{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__c01381{-webkit-text-stroke:0px transparent;}
.sc0_c01381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01381{word-spacing:-0.071730px;}
.ws3_c01381{word-spacing:0.000000px;}
.ws0_c01381{word-spacing:23.312250px;}
.ws1_c01381{word-spacing:28.703310px;}
._2_c01381{margin-left:-3.653130px;}
._1_c01381{width:1.721520px;}
._0_c01381{width:1723.743630px;}
.fc0_c01381{color:rgb(0,0,0);}
.fs0_c01381{font-size:71.730000px;}
.y0_c01381{bottom:0.000000px;}
.y3_c01381{bottom:79.269000px;}
.y2_c01381{bottom:1140.615000px;}
.y1_c01381{bottom:1145.148000px;}
.h2_c01381{height:53.797500px;}
.h1_c01381{height:1263.750000px;}
.h0_c01381{height:1264.110000px;}
.w0_c01381{width:893.869500px;}
.w1_c01381{width:894.000000px;}
.x0_c01381{left:0.000000px;}
.x1_c01381{left:126.336000px;}
.x2_c01381{left:127.558500px;}
.x3_c01381{left:231.717000px;}
@media print{
.v0_c01381{vertical-align:0.000000pt;}
.ls0_c01381{letter-spacing:0.000000pt;}
.ws2_c01381{word-spacing:-0.063760pt;}
.ws3_c01381{word-spacing:0.000000pt;}
.ws0_c01381{word-spacing:20.722000pt;}
.ws1_c01381{word-spacing:25.514053pt;}
._2_c01381{margin-left:-3.247227pt;}
._1_c01381{width:1.530240pt;}
._0_c01381{width:1532.216560pt;}
.fs0_c01381{font-size:63.760000pt;}
.y0_c01381{bottom:0.000000pt;}
.y3_c01381{bottom:70.461333pt;}
.y2_c01381{bottom:1013.880000pt;}
.y1_c01381{bottom:1017.909333pt;}
.h2_c01381{height:47.820000pt;}
.h1_c01381{height:1123.333333pt;}
.h0_c01381{height:1123.653333pt;}
.w0_c01381{width:794.550667pt;}
.w1_c01381{width:794.666667pt;}
.x0_c01381{left:0.000000pt;}
.x1_c01381{left:112.298667pt;}
.x2_c01381{left:113.385333pt;}
.x3_c01381{left:205.970667pt;}
}





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

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





.ff0_c01382{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01382;src:url('chunks/assets/font_0691004d9cb3093b8df5922e.woff2')format("woff");}.ff1_c01382{font-family:ff1_c01382;line-height:1.001000;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_c01382;src:url('chunks/assets/font_ba803327a125bd4f81d31fff.woff2')format("woff");}.ff2_c01382{font-family:ff2_c01382;line-height:1.001000;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_c01382{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_c01382{vertical-align:0.000000px;}
.ls0_c01382{letter-spacing:0.000000px;}
.sc__c01382{text-shadow:none;}
.sc0_c01382{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__c01382{-webkit-text-stroke:0px transparent;}
.sc0_c01382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01382{word-spacing:-0.071730px;}
.ws3_c01382{word-spacing:0.000000px;}
.ws0_c01382{word-spacing:23.312250px;}
.ws1_c01382{word-spacing:28.737780px;}
._2_c01382{margin-left:-5.446380px;}
._1_c01382{width:1.721520px;}
._0_c01382{width:1723.743630px;}
.fc0_c01382{color:rgb(0,0,0);}
.fs0_c01382{font-size:71.730000px;}
.y0_c01382{bottom:0.000000px;}
.y3_c01382{bottom:159.529500px;}
.y2_c01382{bottom:1140.615000px;}
.y1_c01382{bottom:1145.148000px;}
.h2_c01382{height:53.797500px;}
.h1_c01382{height:1263.750000px;}
.h0_c01382{height:1264.110000px;}
.w0_c01382{width:893.869500px;}
.w1_c01382{width:894.000000px;}
.x0_c01382{left:0.000000px;}
.x1_c01382{left:126.336000px;}
.x2_c01382{left:127.558500px;}
.x3_c01382{left:247.305000px;}
@media print{
.v0_c01382{vertical-align:0.000000pt;}
.ls0_c01382{letter-spacing:0.000000pt;}
.ws2_c01382{word-spacing:-0.063760pt;}
.ws3_c01382{word-spacing:0.000000pt;}
.ws0_c01382{word-spacing:20.722000pt;}
.ws1_c01382{word-spacing:25.544693pt;}
._2_c01382{margin-left:-4.841227pt;}
._1_c01382{width:1.530240pt;}
._0_c01382{width:1532.216560pt;}
.fs0_c01382{font-size:63.760000pt;}
.y0_c01382{bottom:0.000000pt;}
.y3_c01382{bottom:141.804000pt;}
.y2_c01382{bottom:1013.880000pt;}
.y1_c01382{bottom:1017.909333pt;}
.h2_c01382{height:47.820000pt;}
.h1_c01382{height:1123.333333pt;}
.h0_c01382{height:1123.653333pt;}
.w0_c01382{width:794.550667pt;}
.w1_c01382{width:794.666667pt;}
.x0_c01382{left:0.000000pt;}
.x1_c01382{left:112.298667pt;}
.x2_c01382{left:113.385333pt;}
.x3_c01382{left:219.826667pt;}
}





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

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





.ff0_c01383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01383;src:url('chunks/assets/font_4c81748c7ad50b9e7f68da8b.woff2')format("woff");}.ff1_c01383{font-family:ff1_c01383;line-height:1.001000;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_c01383;src:url('chunks/assets/font_93e9e4c6aaa173da20c431ad.woff2')format("woff");}.ff2_c01383{font-family:ff2_c01383;line-height:1.001000;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_c01383{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_c01383{vertical-align:0.000000px;}
.ls0_c01383{letter-spacing:0.000000px;}
.sc__c01383{text-shadow:none;}
.sc0_c01383{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__c01383{-webkit-text-stroke:0px transparent;}
.sc0_c01383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01383{word-spacing:-0.071730px;}
.ws0_c01383{word-spacing:23.312250px;}
.ws1_c01383{word-spacing:25.033770px;}
._1_c01383{margin-left:-37.084410px;}
._2_c01383{margin-left:-3.486570px;}
._0_c01383{width:1.793250px;}
._3_c01383{width:28.776270px;}
.fc0_c01383{color:rgb(0,0,0);}
.fs0_c01383{font-size:71.730000px;}
.y0_c01383{bottom:0.000000px;}
.y1_c01383{bottom:606.534000px;}
.h2_c01383{height:53.797500px;}
.h1_c01383{height:1263.750000px;}
.h0_c01383{height:1264.110000px;}
.w0_c01383{width:893.869500px;}
.w1_c01383{width:894.000000px;}
.x0_c01383{left:0.000000px;}
.x1_c01383{left:262.387500px;}
@media print{
.v0_c01383{vertical-align:0.000000pt;}
.ls0_c01383{letter-spacing:0.000000pt;}
.ws2_c01383{word-spacing:-0.063760pt;}
.ws0_c01383{word-spacing:20.722000pt;}
.ws1_c01383{word-spacing:22.252240pt;}
._1_c01383{margin-left:-32.963920pt;}
._2_c01383{margin-left:-3.099173pt;}
._0_c01383{width:1.594000pt;}
._3_c01383{width:25.578907pt;}
.fs0_c01383{font-size:63.760000pt;}
.y0_c01383{bottom:0.000000pt;}
.y1_c01383{bottom:539.141333pt;}
.h2_c01383{height:47.820000pt;}
.h1_c01383{height:1123.333333pt;}
.h0_c01383{height:1123.653333pt;}
.w0_c01383{width:794.550667pt;}
.w1_c01383{width:794.666667pt;}
.x0_c01383{left:0.000000pt;}
.x1_c01383{left:233.233333pt;}
}





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

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





.ff0_c01384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01384;src:url('chunks/assets/font_c27008bb9b173db2c6b023c9.woff2')format("woff");}.ff1_c01384{font-family:ff1_c01384;line-height:1.001000;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_c01384;src:url('chunks/assets/font_81405f303b10d2c6b73ff496.woff2')format("woff");}.ff2_c01384{font-family:ff2_c01384;line-height:1.001000;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_c01384{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_c01384{vertical-align:0.000000px;}
.ls0_c01384{letter-spacing:0.000000px;}
.sc__c01384{text-shadow:none;}
.sc0_c01384{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__c01384{-webkit-text-stroke:0px transparent;}
.sc0_c01384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01384{word-spacing:-0.071730px;}
.ws4_c01384{word-spacing:0.000000px;}
.ws0_c01384{word-spacing:23.312250px;}
.ws1_c01384{word-spacing:23.383980px;}
.ws2_c01384{word-spacing:25.033770px;}
._2_c01384{margin-left:-37.084410px;}
._1_c01384{width:1.649790px;}
._3_c01384{width:28.685100px;}
._0_c01384{width:1723.743630px;}
.fc0_c01384{color:rgb(0,0,0);}
.fs0_c01384{font-size:71.730000px;}
.y0_c01384{bottom:0.000000px;}
.y3_c01384{bottom:117.202500px;}
.y2_c01384{bottom:1140.615000px;}
.y1_c01384{bottom:1145.148000px;}
.h2_c01384{height:53.797500px;}
.h1_c01384{height:1263.750000px;}
.h0_c01384{height:1264.110000px;}
.w0_c01384{width:893.869500px;}
.w1_c01384{width:894.000000px;}
.x0_c01384{left:0.000000px;}
.x1_c01384{left:126.336000px;}
.x2_c01384{left:127.558500px;}
.x3_c01384{left:256.404000px;}
@media print{
.v0_c01384{vertical-align:0.000000pt;}
.ls0_c01384{letter-spacing:0.000000pt;}
.ws3_c01384{word-spacing:-0.063760pt;}
.ws4_c01384{word-spacing:0.000000pt;}
.ws0_c01384{word-spacing:20.722000pt;}
.ws1_c01384{word-spacing:20.785760pt;}
.ws2_c01384{word-spacing:22.252240pt;}
._2_c01384{margin-left:-32.963920pt;}
._1_c01384{width:1.466480pt;}
._3_c01384{width:25.497867pt;}
._0_c01384{width:1532.216560pt;}
.fs0_c01384{font-size:63.760000pt;}
.y0_c01384{bottom:0.000000pt;}
.y3_c01384{bottom:104.180000pt;}
.y2_c01384{bottom:1013.880000pt;}
.y1_c01384{bottom:1017.909333pt;}
.h2_c01384{height:47.820000pt;}
.h1_c01384{height:1123.333333pt;}
.h0_c01384{height:1123.653333pt;}
.w0_c01384{width:794.550667pt;}
.w1_c01384{width:794.666667pt;}
.x0_c01384{left:0.000000pt;}
.x1_c01384{left:112.298667pt;}
.x2_c01384{left:113.385333pt;}
.x3_c01384{left:227.914667pt;}
}





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

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





.ff0_c01385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01385;src:url('chunks/assets/font_b11d9e703b6f0328788b8c3d.woff2')format("woff");}.ff1_c01385{font-family:ff1_c01385;line-height:1.001000;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_c01385;src:url('chunks/assets/font_c3cc2b4135a88136eb61241b.woff2')format("woff");}.ff2_c01385{font-family:ff2_c01385;line-height:1.001000;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_c01385{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_c01385{vertical-align:0.000000px;}
.ls0_c01385{letter-spacing:0.000000px;}
.sc__c01385{text-shadow:none;}
.sc0_c01385{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__c01385{-webkit-text-stroke:0px transparent;}
.sc0_c01385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01385{word-spacing:-0.071730px;}
.ws5_c01385{word-spacing:0.000000px;}
.ws0_c01385{word-spacing:23.312250px;}
.ws1_c01385{word-spacing:23.383980px;}
.ws4_c01385{word-spacing:24.962040px;}
.ws2_c01385{word-spacing:25.033770px;}
._1_c01385{margin-left:-6.240510px;}
._2_c01385{margin-left:-3.604680px;}
._3_c01385{width:28.757400px;}
._0_c01385{width:1723.743630px;}
.fc0_c01385{color:rgb(0,0,0);}
.fs0_c01385{font-size:71.730000px;}
.y0_c01385{bottom:0.000000px;}
.y4_c01385{bottom:126.822000px;}
.y3_c01385{bottom:633.741000px;}
.y2_c01385{bottom:1140.615000px;}
.y1_c01385{bottom:1145.148000px;}
.h2_c01385{height:53.797500px;}
.h1_c01385{height:1263.750000px;}
.h0_c01385{height:1264.110000px;}
.w0_c01385{width:893.869500px;}
.w1_c01385{width:894.000000px;}
.x0_c01385{left:0.000000px;}
.x1_c01385{left:126.336000px;}
.x2_c01385{left:127.558500px;}
.x3_c01385{left:189.262500px;}
.x4_c01385{left:254.605500px;}
@media print{
.v0_c01385{vertical-align:0.000000pt;}
.ls0_c01385{letter-spacing:0.000000pt;}
.ws3_c01385{word-spacing:-0.063760pt;}
.ws5_c01385{word-spacing:0.000000pt;}
.ws0_c01385{word-spacing:20.722000pt;}
.ws1_c01385{word-spacing:20.785760pt;}
.ws4_c01385{word-spacing:22.188480pt;}
.ws2_c01385{word-spacing:22.252240pt;}
._1_c01385{margin-left:-5.547120pt;}
._2_c01385{margin-left:-3.204160pt;}
._3_c01385{width:25.562133pt;}
._0_c01385{width:1532.216560pt;}
.fs0_c01385{font-size:63.760000pt;}
.y0_c01385{bottom:0.000000pt;}
.y4_c01385{bottom:112.730667pt;}
.y3_c01385{bottom:563.325333pt;}
.y2_c01385{bottom:1013.880000pt;}
.y1_c01385{bottom:1017.909333pt;}
.h2_c01385{height:47.820000pt;}
.h1_c01385{height:1123.333333pt;}
.h0_c01385{height:1123.653333pt;}
.w0_c01385{width:794.550667pt;}
.w1_c01385{width:794.666667pt;}
.x0_c01385{left:0.000000pt;}
.x1_c01385{left:112.298667pt;}
.x2_c01385{left:113.385333pt;}
.x3_c01385{left:168.233333pt;}
.x4_c01385{left:226.316000pt;}
}





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

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





.ff0_c01386{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01386;src:url('chunks/assets/font_97ca9aaf7c1c732da1d90030.woff2')format("woff");}.ff1_c01386{font-family:ff1_c01386;line-height:1.001000;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_c01386;src:url('chunks/assets/font_f7642691f1bc1b714d2d49ab.woff2')format("woff");}.ff2_c01386{font-family:ff2_c01386;line-height:1.001000;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_c01386{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_c01386{vertical-align:0.000000px;}
.ls0_c01386{letter-spacing:0.000000px;}
.sc__c01386{text-shadow:none;}
.sc0_c01386{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__c01386{-webkit-text-stroke:0px transparent;}
.sc0_c01386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01386{word-spacing:-0.071730px;}
.ws4_c01386{word-spacing:0.000000px;}
.ws0_c01386{word-spacing:23.312250px;}
.ws1_c01386{word-spacing:23.383980px;}
.ws2_c01386{word-spacing:25.033770px;}
._2_c01386{margin-left:-33.210990px;}
._4_c01386{margin-left:-28.692000px;}
._3_c01386{margin-left:-7.302990px;}
._1_c01386{margin-left:-2.295360px;}
._5_c01386{width:27.809250px;}
._0_c01386{width:1723.743630px;}
.fc0_c01386{color:rgb(0,0,0);}
.fs0_c01386{font-size:71.730000px;}
.y0_c01386{bottom:0.000000px;}
.y4_c01386{bottom:98.728500px;}
.y3_c01386{bottom:613.893000px;}
.y2_c01386{bottom:1140.615000px;}
.y1_c01386{bottom:1145.148000px;}
.h2_c01386{height:53.797500px;}
.h1_c01386{height:1263.750000px;}
.h0_c01386{height:1264.110000px;}
.w0_c01386{width:893.869500px;}
.w1_c01386{width:894.000000px;}
.x0_c01386{left:0.000000px;}
.x1_c01386{left:126.336000px;}
.x2_c01386{left:127.558500px;}
.x3_c01386{left:269.010000px;}
@media print{
.v0_c01386{vertical-align:0.000000pt;}
.ls0_c01386{letter-spacing:0.000000pt;}
.ws3_c01386{word-spacing:-0.063760pt;}
.ws4_c01386{word-spacing:0.000000pt;}
.ws0_c01386{word-spacing:20.722000pt;}
.ws1_c01386{word-spacing:20.785760pt;}
.ws2_c01386{word-spacing:22.252240pt;}
._2_c01386{margin-left:-29.520880pt;}
._4_c01386{margin-left:-25.504000pt;}
._3_c01386{margin-left:-6.491547pt;}
._1_c01386{margin-left:-2.040320pt;}
._5_c01386{width:24.719333pt;}
._0_c01386{width:1532.216560pt;}
.fs0_c01386{font-size:63.760000pt;}
.y0_c01386{bottom:0.000000pt;}
.y4_c01386{bottom:87.758667pt;}
.y3_c01386{bottom:545.682667pt;}
.y2_c01386{bottom:1013.880000pt;}
.y1_c01386{bottom:1017.909333pt;}
.h2_c01386{height:47.820000pt;}
.h1_c01386{height:1123.333333pt;}
.h0_c01386{height:1123.653333pt;}
.w0_c01386{width:794.550667pt;}
.w1_c01386{width:794.666667pt;}
.x0_c01386{left:0.000000pt;}
.x1_c01386{left:112.298667pt;}
.x2_c01386{left:113.385333pt;}
.x3_c01386{left:239.120000pt;}
}





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

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





.ff0_c01387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01387;src:url('chunks/assets/font_632c4a7ba7db39216d7c08ac.woff2')format("woff");}.ff1_c01387{font-family:ff1_c01387;line-height:1.001000;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_c01387;src:url('chunks/assets/font_939cc25f7e645f79252aed6e.woff2')format("woff");}.ff2_c01387{font-family:ff2_c01387;line-height:1.001000;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_c01387{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_c01387{vertical-align:0.000000px;}
.ls0_c01387{letter-spacing:0.000000px;}
.sc__c01387{text-shadow:none;}
.sc0_c01387{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__c01387{-webkit-text-stroke:0px transparent;}
.sc0_c01387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01387{word-spacing:-0.071730px;}
.ws5_c01387{word-spacing:0.000000px;}
.ws0_c01387{word-spacing:23.312250px;}
.ws1_c01387{word-spacing:23.383980px;}
.ws2_c01387{word-spacing:28.732800px;}
.ws4_c01387{word-spacing:29.265840px;}
._5_c01387{margin-left:-35.147700px;}
._2_c01387{margin-left:-33.210990px;}
._3_c01387{margin-left:-3.788220px;}
._1_c01387{margin-left:-2.295360px;}
._4_c01387{width:2.008440px;}
._0_c01387{width:1723.743630px;}
.fc0_c01387{color:rgb(0,0,0);}
.fs0_c01387{font-size:71.730000px;}
.y0_c01387{bottom:0.000000px;}
.y5_c01387{bottom:109.008000px;}
.y4_c01387{bottom:130.677000px;}
.y3_c01387{bottom:572.325000px;}
.y2_c01387{bottom:1140.615000px;}
.y1_c01387{bottom:1145.148000px;}
.h2_c01387{height:53.797500px;}
.h1_c01387{height:1263.750000px;}
.h0_c01387{height:1264.110000px;}
.w0_c01387{width:893.869500px;}
.w1_c01387{width:894.000000px;}
.x0_c01387{left:0.000000px;}
.x1_c01387{left:126.336000px;}
.x2_c01387{left:127.558500px;}
.x3_c01387{left:275.485500px;}
@media print{
.v0_c01387{vertical-align:0.000000pt;}
.ls0_c01387{letter-spacing:0.000000pt;}
.ws3_c01387{word-spacing:-0.063760pt;}
.ws5_c01387{word-spacing:0.000000pt;}
.ws0_c01387{word-spacing:20.722000pt;}
.ws1_c01387{word-spacing:20.785760pt;}
.ws2_c01387{word-spacing:25.540267pt;}
.ws4_c01387{word-spacing:26.014080pt;}
._5_c01387{margin-left:-31.242400pt;}
._2_c01387{margin-left:-29.520880pt;}
._3_c01387{margin-left:-3.367307pt;}
._1_c01387{margin-left:-2.040320pt;}
._4_c01387{width:1.785280pt;}
._0_c01387{width:1532.216560pt;}
.fs0_c01387{font-size:63.760000pt;}
.y0_c01387{bottom:0.000000pt;}
.y5_c01387{bottom:96.896000pt;}
.y4_c01387{bottom:116.157333pt;}
.y3_c01387{bottom:508.733333pt;}
.y2_c01387{bottom:1013.880000pt;}
.y1_c01387{bottom:1017.909333pt;}
.h2_c01387{height:47.820000pt;}
.h1_c01387{height:1123.333333pt;}
.h0_c01387{height:1123.653333pt;}
.w0_c01387{width:794.550667pt;}
.w1_c01387{width:794.666667pt;}
.x0_c01387{left:0.000000pt;}
.x1_c01387{left:112.298667pt;}
.x2_c01387{left:113.385333pt;}
.x3_c01387{left:244.876000pt;}
}





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

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





.ff0_c01388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01388;src:url('chunks/assets/font_08f9f38f0ed096d900c63aa2.woff2')format("woff");}.ff1_c01388{font-family:ff1_c01388;line-height:1.001000;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_c01388;src:url('chunks/assets/font_0ee2d60af60383eae7f30d25.woff2')format("woff");}.ff2_c01388{font-family:ff2_c01388;line-height:1.001000;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_c01388{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_c01388{vertical-align:0.000000px;}
.ls0_c01388{letter-spacing:0.000000px;}
.sc__c01388{text-shadow:none;}
.sc0_c01388{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__c01388{-webkit-text-stroke:0px transparent;}
.sc0_c01388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01388{word-spacing:-0.071730px;}
.ws4_c01388{word-spacing:0.000000px;}
.ws0_c01388{word-spacing:23.312250px;}
.ws1_c01388{word-spacing:23.383980px;}
.ws2_c01388{word-spacing:25.033770px;}
._2_c01388{margin-left:-3.586500px;}
._1_c01388{margin-left:-2.197080px;}
._3_c01388{width:27.831570px;}
._0_c01388{width:1723.743630px;}
.fc0_c01388{color:rgb(0,0,0);}
.fs0_c01388{font-size:71.730000px;}
.y0_c01388{bottom:0.000000px;}
.y3_c01388{bottom:184.323000px;}
.y2_c01388{bottom:1140.615000px;}
.y1_c01388{bottom:1145.148000px;}
.h2_c01388{height:53.797500px;}
.h1_c01388{height:1263.750000px;}
.h0_c01388{height:1264.110000px;}
.w0_c01388{width:893.869500px;}
.w1_c01388{width:894.000000px;}
.x0_c01388{left:0.000000px;}
.x1_c01388{left:126.336000px;}
.x2_c01388{left:127.558500px;}
.x3_c01388{left:236.548500px;}
@media print{
.v0_c01388{vertical-align:0.000000pt;}
.ls0_c01388{letter-spacing:0.000000pt;}
.ws3_c01388{word-spacing:-0.063760pt;}
.ws4_c01388{word-spacing:0.000000pt;}
.ws0_c01388{word-spacing:20.722000pt;}
.ws1_c01388{word-spacing:20.785760pt;}
.ws2_c01388{word-spacing:22.252240pt;}
._2_c01388{margin-left:-3.188000pt;}
._1_c01388{margin-left:-1.952960pt;}
._3_c01388{width:24.739173pt;}
._0_c01388{width:1532.216560pt;}
.fs0_c01388{font-size:63.760000pt;}
.y0_c01388{bottom:0.000000pt;}
.y3_c01388{bottom:163.842667pt;}
.y2_c01388{bottom:1013.880000pt;}
.y1_c01388{bottom:1017.909333pt;}
.h2_c01388{height:47.820000pt;}
.h1_c01388{height:1123.333333pt;}
.h0_c01388{height:1123.653333pt;}
.w0_c01388{width:794.550667pt;}
.w1_c01388{width:794.666667pt;}
.x0_c01388{left:0.000000pt;}
.x1_c01388{left:112.298667pt;}
.x2_c01388{left:113.385333pt;}
.x3_c01388{left:210.265333pt;}
}




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